diff --git a/CMakeLists.txt b/CMakeLists.txt
index 10019ef5c..f9db4765f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,144 +1,146 @@
 #===============================================================================
 # @file   CMakeLists.txt
 # @author Nicolas Richart <nicolas.richart@epfl.ch>
 # @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
 # @date   Fri Jun 11 09:46:59 2010
 #
 # @section LICENSE
 #
 # Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
 # Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
 #
 # Akantu is free  software: you can redistribute it and/or  modify it under the
 # terms  of the  GNU Lesser  General Public  License as  published by  the Free
 # Software Foundation, either version 3 of the License, or (at your option) any
 # later version.
 #
 # Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 # A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
 # details.
 #
 # You should  have received  a copy  of the GNU  Lesser General  Public License
 # along with Akantu. If not, see <http://www.gnu.org/licenses/>.
 #
 # @section DESCRIPTION
 #
 #===============================================================================
 
 #===============================================================================
 #                      _               _
 #                     | |             | |
 #                 __ _| | ____ _ _ __ | |_ _   _
 #                / _` | |/ / _` | '_ \| __| | | |
 #               | (_| |   < (_| | | | | |_| |_| |
 #                \__,_|_|\_\__,_|_| |_|\__|\__,_|
 #
 #===============================================================================
 
 #===============================================================================
 # CMake Project
 #===============================================================================
 cmake_minimum_required(VERSION 2.6)
 
 project(akantu)
 
 enable_language(CXX)
 
 #===============================================================================
 # Misc. config for cmake
 #===============================================================================
 set(AKANTU_CMAKE_DIR "${CMAKE_SOURCE_DIR}/cmake")
 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake")
 set(BUILD_SHARED_LIBS ON CACHE BOOL "Build shared libraries.")
 
 include(${AKANTU_CMAKE_DIR}/AkantuMacros.cmake)
 include(${AKANTU_CMAKE_DIR}/AkantuPackageSystem.cmake)
 
 #===============================================================================
 # Version Number
 #===============================================================================
 # AKANTU version number.  An even minor number corresponds to releases.
 set(AKANTU_MAJOR_VERSION 1)
 set(AKANTU_MINOR_VERSION 0)
 set(AKANTU_PATCH_VERSION 0)
 
 include(${AKANTU_CMAKE_DIR}/AkantuVersion.cmake)
 
 #===============================================================================
 # Options
 #===============================================================================
 # Debug
 option(AKANTU_DEBUG "Compiles akantu with the debug messages" ON)
 mark_as_advanced(AKANTU_DEBUG)
 
 add_cxx_flags("-Wall")
 
 if(NOT AKANTU_DEBUG)
   add_cxx_flags("-Wno-return-type")
   set(AKANTU_NDEBUG ON)
 else()
   remove_cxx_flags("-Wno-return-type")
 endif()
 
 #Profiling
 set(CMAKE_CXX_FLAGS_PROFILING "-g -pg" CACHE STRING "Flags used by the compiler during profiling builds")
 set(CMAKE_EXE_LINKER_FLAGS_PROFILING "-pg" CACHE STRING "Flags used by the linker during profiling builds")
 set(CMAKE_SHARED_LINKER_FLAGS_PROFILING "-pg" CACHE STRING "Flags used by the linker during profiling builds")
 mark_as_advanced(CMAKE_CXX_FLAGS_PROFILING)
 mark_as_advanced(CMAKE_EXE_LINKER_FLAGS_PROFILING)
 mark_as_advanced(CMAKE_SHARED_LINKER_FLAGS_PROFILING)
 
 include(${AKANTU_CMAKE_DIR}/AkantuDetermineCCompiler.cmake)
 
 #===============================================================================
 # Dependencies
 #===============================================================================
 find_package(Boost REQUIRED)
 if(Boost_FOUND)
   include_directories(${Boost_INCLUDE_DIRS})
 endif()
 
 add_all_packages(${CMAKE_SOURCE_DIR}/packages)
 
 ## meta option \todo better way to do it when multiple package give enable the
 ## same feature
 if(AKANTU_SCOTCH)
   set(AKANTU_PARTITIONER ON)
 else()
   set(AKANTU_PARTITIONER OFF)
 endif()
 
 if(AKANTU_MUMPS)
   set(AKANTU_SOLVER ON)
 else()
   set(AKANTU_SOLVER OFF)
 endif()
 
 #===============================================================================
 # Akantu library
 #===============================================================================
 add_subdirectory(src)
 
 #===============================================================================
 # Documentation
 #===============================================================================
 #Documentation
 option(AKANTU_DOCUMENTATION "Build source documentation using Doxygen." OFF)
 if(AKANTU_DOCUMENTATION)
   add_subdirectory(doc)
 endif()
 
 #===============================================================================
 # Tests
 #===============================================================================
 option(AKANTU_TESTS "Activate tests" OFF)
 if(AKANTU_TESTS)
+  enable_testing()
+  include(CTest)
   add_subdirectory(test)
 endif(AKANTU_TESTS)
 
 #===============================================================================
 # Install and Packaging
 #===============================================================================
 include(${AKANTU_CMAKE_DIR}/AkantuInstall.cmake)
 include(${AKANTU_CMAKE_DIR}/AkantuCPack.cmake)
diff --git a/cmake/AkantuPackageSystem.cmake b/cmake/AkantuPackageSystem.cmake
index f87163c84..ce02730f0 100644
--- a/cmake/AkantuPackageSystem.cmake
+++ b/cmake/AkantuPackageSystem.cmake
@@ -1,299 +1,304 @@
 #===============================================================================
 # @file   AkantuMacros.cmake
 # @author Nicolas Richart <nicolas.richart@epfl.ch>
 # @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
 # @date   Wed Feb  9 10:59:42 2011
 #
 # @brief  Set of macros used by akantu to handle the package system
 #
 # @section LICENSE
 #
 # Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
 # Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
 #
 # Akantu is free  software: you can redistribute it and/or  modify it under the
 # terms  of the  GNU Lesser  General Public  License as  published by  the Free
 # Software Foundation, either version 3 of the License, or (at your option) any
 # later version.
 #
 # Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 # A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
 # details.
 #
 # You should  have received  a copy  of the GNU  Lesser General  Public License
 # along with Akantu. If not, see <http://www.gnu.org/licenses/>.
 #
 #===============================================================================
 
 
 #===============================================================================
 # Package Management
 #===============================================================================
 
 set(PACKAGE_SYSTEM_PKG_PREFIX AKANTU_)
 set(PACKAGE_SYSTEM_OPT_PREFIX AKANTU_USE_)
 set(PACKAGE_SYSTEM_DESC_PREFIX AKANTU_DESC_)
 
 macro(package_pkg_name PKG PKG_NAME)
   string(TOUPPER ${PKG} _u_package)
   set(${PKG_NAME} ${PACKAGE_SYSTEM_PKG_PREFIX}${_u_package})
 endmacro()
 
 macro(package_opt_name PKG OPT_NAME)
   string(TOUPPER ${PKG} _u_package)
   set(${OPT_NAME} ${PACKAGE_SYSTEM_OPT_PREFIX}${_u_package})
 endmacro()
 
 macro(package_desc_name PKG DESC_NAME)
   string(TOUPPER ${PKG} _u_package)
   set(${DESC_NAME} ${PACKAGE_SYSTEM_DESC_PREFIX}${_u_package})
 endmacro()
 
 #===============================================================================
 macro(add_all_packages package_dir)
   akantu_message("add_all_packages: PKG DIR : ${package_dir}")
   file(GLOB _akantu_package_list "${package_dir}/*.cmake")
 
   foreach(_pkg ${_akantu_package_list})
     get_filename_component(_basename ${_pkg} NAME)
     string(REGEX REPLACE "\\.cmake" "" _option_name ${_basename})
     string(TOUPPER "${_option_name}" _option_name)
     list(APPEND PACKAGE_SYSTEM_PACKAGES_NAMES_LIST_ALL ${_option_name})
   endforeach()
 
   akantu_message("add_all_packages: PKG LIST : "${PACKAGE_SYSTEM_PACKAGES_NAMES_LIST_ALL})
 
   foreach(_pkg ${PACKAGE_SYSTEM_PACKAGES_NAMES_LIST_ALL})
     akantu_message("add_all_packages: including ${_pkg}")
     string(TOLOWER "${_pkg}" _pkg)
     include(${package_dir}/${_pkg}.cmake)
     package_pkg_name(${_pkg} _package_name)
     if (${_package_name})
       list(APPEND PACKAGE_SYSTEM_PACKAGES_ON ${_pkg})
     else (${_package_name})
       list(APPEND PACKAGE_SYSTEM_PACKAGES_OFF ${_pkg})
     endif()
 
-    foreach(_file ${${_pkg_name}_FILES})
+    foreach(_file ${${_package_name}_FILES})
       list(APPEND _release_all_file ${_file})
     endforeach()
   endforeach()
 
   akantu_message("add_all_packages: ON  PKG : ${PACKAGE_SYSTEM_PACKAGES_ON}")
   akantu_message("add_all_packages: ALL FILE LIST : ${_release_all_file}")
 
   #check if there are some file in the release that are not registered in a package
   file(GLOB_RECURSE _all_files RELATIVE ${CMAKE_SOURCE_DIR}/src "*.cc" "*.hh")
-  foreach(_file ${all_files})
-    if(NOT ${_file} MATCHES "test.*")
+
+  foreach(_file ${_all_files})
+    if(NOT ${_file} MATCHES "test.*" AND NOT ${_file} MATCHES "third-party")
       list(FIND _release_all_file ${_file} _index)
       if (_index EQUAL -1)
-        message("The file ${file} is not registered in any package.")
+	list(APPEND _missing_files_in_packages ${_file})
+        message("The file ${_file} is not registered in any package.")
         message("Please append the file in one of the files within directory ${CMAKE_SOURCE_DIR}/packages")
       endif()
     endif()
   endforeach()
-
-  #check if there are some file in the package list that are not on the current directory
-  foreach(file ${all_files})
-    list(FIND RELEASE_ALL_FILE ${file} index)
-    if (index EQUAL -1)
-      message("file ${file} is not registered in any package.")
-      message("Please append the file in one of the files within directory ${AKANTU_SOURCE_DIR}/packages")
+  if(_missing_files_in_packages)
+    message("A complete list of files missing in the packeges description can be found here: ${CMAKE_BINARY_DIR}/missing_files_in_packages")
+    if(EXISTS ${CMAKE_BINARY_DIR}/missing_files_in_packages)
+      file(REMOVE ${CMAKE_BINARY_DIR}/missing_files_in_packages)
     endif()
-  endforeach()
+    foreach(_file ${_missing_files_in_packages})
+      file(APPEND ${CMAKE_BINARY_DIR}/missing_files_in_packages "${_file}
+")
+    endforeach()
+  endif()
 
+
+  #check if there are some file in the package list that are not on the current directory
   foreach(_file ${_release_all_file})
     list(FIND _all_files ${_file} _index)
     if (_index EQUAL -1)
       message("The file ${_file} is registered in packages but is not present in the source directory.")
     endif()
   endforeach()
 
   #construct list of files for unactivated packages
   foreach(_pkg ${PACKAGE_SYSTEM_PACKAGES_OFF})
     package_pkg_name(${_pkg} _pkg_name)
     foreach(_file ${${_pkg_name}_FILES})
       #      string(REGEX REPLACE "\\/" "\\\\\\\\/" __file ${_file})
       akantu_message("add_all_packages: ${_file} ${__file}")
       #      list(APPEND _exclude_source_file "/${__file}/")
       list(APPEND AKANTU_EXCLUDE_SOURCE_FILE ${_file})
     endforeach()
   endforeach()
 
   #check dependencies
   foreach(_pkg ${PACKAGE_SYSTEM_PACKAGES_OFF})
     # differentiate the file types
     akantu_message("add_all_packages: DEPENDS PKG : ${_pkg}")
     akantu_message("add_all_packages: DEPENDS LST : ${${_pkg}_DEPENDS}")
     package_pkg_name(${_pkg} _pkg_name)
     if (NOT "${${_pkg_name}_DEB_DEPEND}" STREQUAL "")
       set(deb_depend "${deb_depend}, ${${_pkg}_DEB_DEPEND}")
     endif()
   endforeach()
   set(PACKAGE_SYSTEM_DEBIAN_PACKAGE_DEPENDS "${deb_depend}")
 endmacro()
 
 #===============================================================================
 macro(generate_source_list_from_packages source_dir source_files headers_files include_dirs)
   set(deb_depend "libc6")
 
   akantu_message("generate_source_list_from_packages: SRC DIR : ${source_dir}")
   foreach(_pkg ${PACKAGE_SYSTEM_PACKAGES_ON})
     # differentiate the file types
     package_pkg_name(${_pkg} _package_name)
     foreach(_file ${${_package_name}_FILES})
       if(${_file} MATCHES ".*inline.*\\.cc")
 #        list(APPEND ${_package_name}_inlines ${_file})
         list(APPEND ${_package_name}_headers ${_file})
       elseif(${_file} MATCHES ".*\\.hh")
         list(APPEND ${_package_name}_headers ${_file})
       else()
         list(APPEND ${_package_name}_srcs ${_file})
       endif()
     endforeach()
 
     # generates the include directory variable
     foreach(_file ${${_package_name}_headers})
       get_filename_component(_absolute_name ${_file} ABSOLUTE)
       get_filename_component(_include_dir ${_absolute_name} PATH)
       list(APPEND ${_package_name}_include_dirs ${_include_dir})
       list(REMOVE_DUPLICATES ${_package_name}_include_dirs)
     endforeach()
 
     # generate global lists for akantu to know what to build
     list(APPEND ${source_files} ${${_package_name}_srcs})
     list(APPEND ${headers_files} ${${_package_name}_headers})
     list(APPEND ${include_dirs}  ${${_package_name}_include_dirs})
 
     akantu_message("generate_source_list_from_packages: PKG ${_package_name} SRCS : ${${_package_name}_srcs}")
     akantu_message("generate_source_list_from_packages: PKG ${_package_name} HRDS : ${${_package_name}_headers}")
     akantu_message("generate_source_list_from_packages: PKG ${_package_name} INCS : ${${_package_name}_include_dirs}")
   endforeach()
 
   akantu_message("generate_source_list_from_packages: SRCS : ${${source_files}}")
   akantu_message("generate_source_list_from_packages: HRDS : ${${headers_files}}")
   akantu_message("generate_source_list_from_packages: INCS : ${${include_dirs}}")
 endmacro()
 
 #===============================================================================
 # macro to include optional packages
 macro(add_optional_package PACKAGE DESC DEFAULT)
   cmake_parse_arguments(_opt_pkg "" "LANGUAGE" "DEPENDS;PREFIX" ${ARGN})
 
   package_pkg_name (${PACKAGE} _pkg_name)
   package_opt_name (${PACKAGE} _option_name)
   package_desc_name(${PACKAGE} _desc_name)
 
   akantu_message("add_optional_package: Registering ${PACKAGE} ${DESC} -> ${_option_name}")
 
   if(_opt_pkg_PREFIX)
     set(_package_prefix ${_opt_pkg_PREFIX})
   else()
     string(TOUPPER ${PACKAGE} _u_package)
     set(_package_prefix ${_u_package})
   endif()
 
   set(${_desc_name} ${DESC})
   option(${_option_name} ${DESC} ${DEFAULT})
 
   if(${_option_name})
     if(_opt_pkg_LANGUAGE)
       foreach(_language ${_opt_pkg_LANGUAGE})
 	akantu_message("add_optional_package: Package ${PACKAGE} asked for language ${_language}")
 	enable_language(${_language})
       endforeach()
     endif()
 
     foreach(_dep ${_opt_pkg_DEPENDS})
       add_package_dependecies(${PACKAGE} ${_dep})
     endforeach()
 
     find_package(${PACKAGE} REQUIRED)
 
     foreach(_prefix ${_package_prefix})
       if(${_prefix}_FOUND)
 	list(APPEND AKANTU_DEFINITIONS ${_option_name})
 	if(DEFINED ${_prefix}_INCLUDE_DIR)
           list(APPEND AKANTU_EXTERNAL_LIB_INCLUDE_DIR ${${_prefix}_INCLUDE_DIR})
           set(${_pkg_name}_INCLUDE_DIR ${${_prefix}_INCLUDE_DIR})
 	else()
           list(APPEND AKANTU_EXTERNAL_LIB_INCLUDE_DIR ${${_prefix}_INCLUDE_PATH})
           set(${_pkg_name}_INCLUDE_DIR ${${_prefix}_INCLUDE_PATH})
 	endif()
 	list(APPEND AKANTU_EXTERNAL_LIBRARIES ${${_prefix}_LIBRARIES})
 	set(${_pkg_name}_LIBRARIES ${${_prefix}_LIBRARIES})
 	set(${_pkg_name} ON)
         string(TOUPPER ${PACKAGE} _u_package)
 	list(APPEND AKANTU_OPTION_LIST ${_u_package})
 	akantu_message("add_optional_package: Package ${PACKAGE} found!")
 	akantu_message("add_optional_package: Package ${PACKAGE} includes : ${${_pkg_name}_INCLUDE_DIR}")
 	akantu_message("add_optional_package: Package ${PACKAGE} libraries: ${${_pkg_name}_LIBRARIES}")
 	akantu_message("add_optional_package: option list: ${AKANTU_OPTION_LIST}")
       else(${_prefix}_FOUND)
 	akantu_message("add_optional_package: Package ${PACKAGE} not found!")
 	set(${_pkg_name} OFF)
       endif(${_prefix}_FOUND)
     endforeach()
   endif(${_option_name})
 endmacro()
 
 
 #===============================================================================
 macro(add_package_dependecies PKG DEP)
   package_pkg_name (${PKG} _opt_name)
   package_opt_name (${DEP} _dep_name)
   package_desc_name(${DEP} _var_dep_desc)
 
   akantu_message("add_package_dependecies: add dependence between ${_opt_name} and ${_dep_name}")
   set(_dep_desc ${_var_dep_desc})
 
   akantu_message("add_package_dependecies: ON dependencies of ${_dep_name} are: ${${_dep_name}_DEPS}")
   akantu_message("add_package_dependecies: saved value for ${_dep_name} is: ${${_dep_name}_OLD}")
   if(${_opt_name})
     if("${${_dep_name}_DEPS}" STREQUAL "")
       akantu_message("add_package_dependecies: Save dep state ${_dep_name}:${${_dep_name}}")
       set(${_dep_name}_OLD ${${_dep_name}} CACHE INTERNAL "${_dep_desc}" FORCE)
     endif()
 
     akantu_message("add_package_dependecies: force value to ON ${_dep_name}")
     set(${_dep_name} ON CACHE BOOL "${_dep_desc}" FORCE)
 
     list(FIND ${_dep_name}_DEPS ${_opt_name} pos)
     if(pos EQUAL -1)
       list(APPEND ${_dep_name}_DEPS ${_opt_name})
       set(${_dep_name}_DEPS ${${_dep_name}_DEPS} CACHE INTERNAL "Dependencies ON with package ${_dep_name}" FORCE)
     endif()
   else()
     list(LENGTH ${_dep_name}_DEPS len)
     list(FIND ${_dep_name}_DEPS ${_opt_name} pos)
     if((len EQUAL 1) AND (NOT pos EQUAL -1))
       akantu_message("add_package_dependecies: Restore state ${_dep_name}:${${_dep_name}} (${pos})")
       set(${_dep_name} ${${_dep_name}_OLD} CACHE BOOL "${_dep_desc}" FORCE)
       unset(${_dep_name}_OLD CACHE)
     endif()
 
     if(NOT pos EQUAL -1)
       list(REMOVE_AT ${_dep_name}_DEPS ${pos})
       set(${_dep_name}_DEPS ${${_dep_name}_DEPS} CACHE INTERNAL "Nb dependencies with package ${_dep_name}" FORCE)
     endif()
   endif()
 endmacro()
 
 #===============================================================================
 # macro to add meta packages
 macro(add_meta_package PKG DESC DEFAULT)
   akantu_message("add_meta_package: register meta option ${PKG} ${DESC} ${DEFAULT}")
   package_pkg_name (${PKG} _pkg_name)
   package_desc_name(${PKG} _desc_name)
 
   set(${_desc_name} ${DESC})
   option(${_pkg_name} ${DESC} ${DEFAULT})
 
   foreach(_dep ${ARGN})
     package_opt_name (${_dep} _dep_name)
     mark_as_advanced(${_dep_name})
     add_package_dependecies(${PKG} ${_dep})
   endforeach()
 endmacro()
\ No newline at end of file
diff --git a/cmake/AkantuTestAndExamples.cmake b/cmake/AkantuTestAndExamples.cmake
index 78a37eb42..0b324b14d 100644
--- a/cmake/AkantuTestAndExamples.cmake
+++ b/cmake/AkantuTestAndExamples.cmake
@@ -1,110 +1,205 @@
 #===============================================================================
 # @file   AkantuTestAndExamples.cmake
 # @author Nicolas Richart <nicolas.richart@epfl.ch>
 # @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
 # @date   Mon Oct 25 09:46:59 2010
 #
 # @section LICENSE
 #
 # Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
 # Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
 #
 # Akantu is free  software: you can redistribute it and/or  modify it under the
 # terms  of the  GNU Lesser  General Public  License as  published by  the Free
 # Software Foundation, either version 3 of the License, or (at your option) any
 # later version.
 #
 # Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 # A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
 # details.
 #
 # You should  have received  a copy  of the GNU  Lesser General  Public License
 # along with Akantu. If not, see <http://www.gnu.org/licenses/>.
 #
 # @section DESCRIPTION
 #
 #===============================================================================
 
 set(AKANTU_DIFF_SCRIPT ${AKANTU_CMAKE_DIR}/akantu_diff.sh)
 
 #===============================================================================
 macro(manage_test_and_example et_name desc build_all label)
   string(TOUPPER ${et_name} upper_name)
 
   option(AKANTU_BUILD${label}${upper_name} "${desc}")
   mark_as_advanced(AKANTU_BUILD_${upper_name})
 
   if(${build_all})
     set(AKANTU_BUILD${label}${upper_name}_OLD
       ${AKANTU_BUILD${label}${upper_name}}
       CACHE INTERNAL "${desc}" FORCE)
 
     set(AKANTU_BUILD${label}${upper_name} ON
       CACHE INTERNAL "${desc}" FORCE)
   else(${build_all})
     if(DEFINED AKANTU_BUILD${label}${upper_name}_OLD)
       set(AKANTU_BUILD${label}${upper_name}
 	${AKANTU_BUILD${label}${upper_name}_OLD}
 	CACHE BOOL "${desc}" FORCE)
 
       unset(AKANTU_BUILD${label}${upper_name}_OLD
 	CACHE)
     endif(DEFINED AKANTU_BUILD${label}${upper_name}_OLD)
   endif(${build_all})
 
   if(AKANTU_BUILD${label}${upper_name})
     add_subdirectory(${et_name})
   endif(AKANTU_BUILD${label}${upper_name})
 endmacro()
 
 #===============================================================================
 # Tests
 #===============================================================================
 if(AKANTU_TESTS)
   option(AKANTU_BUILD_ALL_TESTS "Build all tests")
 #  mark_as_advanced(AKANTU_BUILD_ALL_TESTS)
 endif(AKANTU_TESTS)
 
 #===============================================================================
 macro(register_test test_name)
   add_executable(${test_name} ${ARGN})
   target_link_libraries(${test_name} akantu ${AKANTU_EXTERNAL_LIBRARIES})
 
   if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${test_name}.sh)
     file(COPY ${test_name}.sh DESTINATION .)
   endif()
 
   if(EXISTS ${CMAKE_CURRENT_BINARY_DIR}/${test_name}.sh)
     add_test(${test_name} ${CMAKE_CURRENT_BINARY_DIR}/${test_name}.sh)
   elseif(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${test_name}.verified)
     add_test(${test_name} ${AKANTU_DIFF_SCRIPT} ${test_name} ${CMAKE_CURRENT_SOURCE_DIR}/${test_name}.verified)
   else()
     add_test(${test_name} ${CMAKE_CURRENT_BINARY_DIR}/${test_name})
   endif()
 endmacro()
 
 #===============================================================================
 macro(add_akantu_test test_name desc)
   manage_test_and_example(${test_name} ${desc} AKANTU_BUILD_ALL_TESTS _)
 endmacro()
 
 
 #===============================================================================
 # Examples
 #===============================================================================
 if(AKANTU_EXAMPLES)
   option(AKANTU_BUILD_ALL_EXAMPLES "Build all examples")
 #  mark_as_advanced(AKANTU_BUILD_ALL_EXAMPLES)
 endif(AKANTU_EXAMPLES)
 
 #===============================================================================
 macro(register_example example_name)
   add_executable(${example_name} ${ARGN})
   target_link_libraries(${example_name} akantu ${AKANTU_EXTERNAL_LIBRARIES})
 endmacro()
 
 #===============================================================================
 macro(add_example example_name desc)
   manage_test_and_example(${example_name} ${desc} AKANTU_BUILD_ALL_EXAMPLES _EXAMPLE_)
 endmacro()
+
+#===============================================================================
+macro(register_test_new test_name)
+  set(multi_variables
+    SOURCES FILES_TO_COPY DEPENDENCIES DIRECTORIES_TO_CREATE COMPILE_OPTIONS
+    )
+
+  cmake_parse_arguments(register_test
+    ""
+    "PACKAGE"
+    "${multi_variables}"
+    ${ARGN}
+    )
+
+  message("register_test_SOURCES :               ${register_test_SOURCES}")
+  message("register_test_FILES_TO_COPY :         ${register_test_FILES_TO_COPY}")
+  message("register_test_DIRECTORIES_TO_CREATE : ${register_test_DIRECTORIES_TO_CREATE}")
+  message("register_test_DEPENDENCIES :          ${register_test_DEPENDENCIES}")
+  message("register_test_COMPILE_OPTIONS :       ${register_test_COMPILE_OPTIONS}")
+  message("register_test_PACKAGE :               ${register_test_PACKAGE}")
+
+  if(register_test_PACKAGE)
+    package_pkg_name(${register_test_PACKAGE} _package_name)
+    list(FIND ${_package_name}_TESTS ${test_name} _ret)
+    if(_ret EQUAL -1)
+      list(APPEND ${_package_name}_TESTS ${test_name})
+    endif()
+  endif()
+
+  # check if the test should be activated
+  set(_activate_test 0)
+  foreach(_pkg ${PACKAGE_SYSTEM_PACKAGES_ON})
+    package_pkg_name(${_pkg} _package_name)
+    list(FIND ${_package_name}_TESTS ${test_name} _ret)
+    if(NOT _ret EQUAL -1)
+      set(_activate_test 1)
+    endif()
+  endforeach()
+
+  # check if the package is registered in at least a package
+  set(_present_in_packages 0)
+  foreach(_pkg ${PACKAGE_SYSTEM_PACKAGES_NAMES_LIST_ALL})
+    package_pkg_name(${_pkg} _package_name)
+    list(FIND ${_package_name}_TESTS ${test_name} _ret)
+    if(NOT _ret EQUAL -1)
+      set(_present_in_packages 1)
+    endif()
+  endforeach()
+
+  if(NOT _present_in_packages)
+    message("The test ${test_name} is not registered in any packages")
+  endif()
+
+  message("TEST  ${test_name} active: ${_activate_test}")
+  if(_activate_test)
+    add_executable(${test_name} ${register_test_SOURCES})
+    if(register_test_COMPILE_OPTIONS)
+      set_target_properties(${test_name}
+	PROPERTIES COMPILE_DEFINITIONS ${register_test_COMPILE_OPTIONS})
+    endif()
+    target_link_libraries(${test_name} akantu ${AKANTU_EXTERNAL_LIBRARIES})
+
+    if(_test_option_FILES_TO_COPY)
+      foreach(_file ${register_test_FILES_TO_COPY})
+	file(COPY ${_file} DESTINATION .)
+      endforeach()
+    endif()
+
+    if(register_test_DIRECTORIES_TO_CREATE)
+      foreach(_dir ${register_test_DIRECTORIES_TO_CREATE})
+	if(IS_ABSOLUTE ${dir})
+	  file(MAKE_DIRECTORY ${_dir})
+	else()
+  	  file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${_dir})
+	endif()
+      endforeach()
+    endif()
+
+    if(register_test_DEPENDENCIES)
+      foreach(dep ${register_test_DEPENDENCIES})
+	add_dependencies(${test_name} ${dep})
+	get_target_property(dep_in_ressources ${dep} RESSOURCES)
+      endforeach()
+    endif()
+
+    if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${test_name}.sh)
+      file(COPY ${test_name}.sh DESTINATION .)
+      add_test(${test_name} ${CMAKE_CURRENT_BINARY_DIR}/${test_name}.sh)
+    elseif(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${test_name}.verified)
+      add_test(${test_name} ${AKANTU_DIFF_SCRIPT} ${test_name} ${CMAKE_CURRENT_SOURCE_DIR}/${test_name}.verified)
+    else()
+      add_test(${test_name} ${CMAKE_CURRENT_BINARY_DIR}/${test_name})
+    endif()
+  endif()
+endmacro(register_test_new)
\ No newline at end of file
diff --git a/cmake/AkantuUse.cmake b/cmake/AkantuUse.cmake
index 222658e7f..92e0fe232 100644
--- a/cmake/AkantuUse.cmake
+++ b/cmake/AkantuUse.cmake
@@ -1,51 +1,50 @@
 #===============================================================================
 # @file   AkantuUse.cmake
 # @author Nicolas Richart <nicolas.richart@epfl.ch>
 # @date   Mon Nov 28 15:11:51 2011
 #
 # @brief  CMake file for the library
 #
 # @section LICENSE
 #
 # Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
 # Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
 #
 # Akantu is free  software: you can redistribute it and/or  modify it under the
 # terms  of the  GNU Lesser  General Public  License as  published by  the Free
 # Software Foundation, either version 3 of the License, or (at your option) any
 # later version.
 #
 # Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 # A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
 # details.
 #
 # You should  have received  a copy  of the GNU  Lesser General  Public License
 # along with Akantu. If not, see <http://www.gnu.org/licenses/>.
 #
 #===============================================================================
-
 macro(include_package_if_needed PACKAGE)
   string(TOUPPER ${PACKAGE} _package)
   if(AKANTU_USE_${_package})
     if(${PACKAGE} MATCHES BLAS)
       enable_language(Fortran)
     endif()
     find_package(${PACKAGE} REQUIRED)
     if(${_package}_FOUND)
       if(DEFINED ${_package}_INCLUDE_DIR)
         list(APPEND AKANTU_EXTRA_INCLUDE_DIR ${${_package}_INCLUDE_DIR})
       else()
         list(APPEND AKANTU_EXTRA_INCLUDE_DIR ${${_package}_INCLUDE_PATH})
       endif()
       list(APPEND AKANTU_EXTRA_LIBRARIES ${${_package}_LIBRARIES})
     endif()
   endif()
 endmacro()
 
 macro(find_akantu_dependencies)
   include_package_if_needed(MPI)
   include_package_if_needed(Mumps)
   include_package_if_needed(Scotch)
   include_package_if_needed(BLAS)
 endmacro()
\ No newline at end of file
diff --git a/cmake/FindGMSH.cmake b/cmake/FindGMSH.cmake
index e28924717..cc2b2f2c9 100644
--- a/cmake/FindGMSH.cmake
+++ b/cmake/FindGMSH.cmake
@@ -1,71 +1,72 @@
 #===============================================================================
 # @file   FindGMSH.cmake
 # @author Nicolas Richart <nicolas.richart@epfl.ch>
 # @date   Thu Oct 14 13:15:47 2010
 #
 # @brief  Find gmsh and delacre the add_mesh macro
 #
 # @section LICENSE
 #
 # Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
 # Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
 #
 # Akantu is free  software: you can redistribute it and/or  modify it under the
 # terms  of the  GNU Lesser  General Public  License as  published by  the Free
 # Software Foundation, either version 3 of the License, or (at your option) any
 # later version.
 #
 # Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 # A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
 # details.
 #
 # You should  have received  a copy  of the GNU  Lesser General  Public License
 # along with Akantu. If not, see <http://www.gnu.org/licenses/>.
 #
 #===============================================================================
 
 find_program(GMSH gmsh
   DOC "The mesh generetor gmsh")
 
 find_package(PackageHandleStandardArgs)
 find_package_handle_standard_args(GMSH DEFAULT_MSG GMSH)
 
 #===============================================================================
 macro(ADD_MESH MESH_TARGET GEO_FILE DIM ORDER)
   if(GMSH_FOUND)
     set(arguments
       ${MESH_TARGET} ${GEO_FILE} ${DIM} ${ORDER}
       ${ARGN}
       )
 
     cmake_parse_arguments(ADD_MESH
       ""
       "OUTPUT"
       ""
       ${arguments}
       )
 
     set(_geo_file ${CMAKE_CURRENT_SOURCE_DIR}/${GEO_FILE})
 
     if(ADD_MESH_OUTPUT)
       set(_msh_file ${CMAKE_CURRENT_BINARY_DIR}/${ADD_MESH_OUTPUT})
     else(ADD_MESH_OUTPUT)
       get_filename_component(_msh_file "${GEO_FILE}" NAME_WE)
       set(_msh_file ${CMAKE_CURRENT_BINARY_DIR}/${_msh_file}.msh)
     endif(ADD_MESH_OUTPUT)
 
     if(EXISTS ${_geo_file})
       add_custom_command(
 	OUTPUT ${_msh_file}
 	DEPENDS ${_geo_file}
 	COMMAND ${GMSH}
 	ARGS -${DIM} -order ${ORDER} -optimize -o ${_msh_file} ${_geo_file} 2>&1 > /dev/null
 	)
       add_custom_target(${MESH_TARGET}
 	DEPENDS ${_msh_file})
+      set_target_properties(${MESH_TARGET} PROPERTIES RESSOURCES ${_geo_file})
     else(EXISTS ${_geo_file})
       message(FATAL_ERROR "File ${_geo_file} not found")
     endif(EXISTS ${_geo_file})
   endif(GMSH_FOUND)
 endmacro(ADD_MESH)
diff --git a/packages/cohesive_element.cmake b/packages/cohesive_element.cmake
index b6c91f5df..8aab819c7 100644
--- a/packages/cohesive_element.cmake
+++ b/packages/cohesive_element.cmake
@@ -1,13 +1,41 @@
 option(AKANTU_COHESIVE_ELEMENT "Use cohesive_element package of Akantu" OFF)
 set(AKANTU_COHESIVE_ELEMENT_FILES
-#  model/solid_mechanics/materials/material_cohesive/material_cohesive.cc
-#  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_linear.cc
-#  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_bilinear.cc
-#  fem/shape_cohesive.cc
-#  fem/cohesive_element.cc
-#  fem/shape_cohesive.hh
-#  fem/cohesive_element.hh
-#  model/solid_mechanics/materials/material_cohesive/material_cohesive.hh
-#  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_linear.hh
-#  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_bilinear.hh
-)
\ No newline at end of file
+  model/solid_mechanics/materials/material_cohesive_includes.hh
+
+  fem/shape_cohesive.cc
+  fem/cohesive_element.cc
+  fem/shape_cohesive.hh
+  fem/cohesive_element.hh
+  fem/fem_template_cohesive.cc
+
+  fem/integrator_cohesive.hh
+  fem/integrator_cohesive_inline_impl.cc
+  fem/fem_template_inline_impl.cc
+  fem/shape_cohesive_inline_impl.cc
+
+  common/aka_common_inline_impl.cc
+  model/solid_mechanics/materials/material_cohesive/material_cohesive_inline_impl.cc
+  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_exponential_inline_impl.cc
+
+  model/solid_mechanics/solid_mechanics_model_cohesive.cc
+  model/solid_mechanics/materials/material_cohesive/material_cohesive.cc
+  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_linear.cc
+  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_bilinear.cc
+  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_linear_extrinsic.cc
+  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_exponential.cc
+  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_linear_exponential_extrinsic.cc
+
+  model/solid_mechanics/solid_mechanics_model_cohesive.hh
+  model/solid_mechanics/materials/material_cohesive/material_cohesive.hh
+  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_linear.hh
+  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_bilinear.hh
+  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_exponential.hh
+  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_linear_extrinsic.hh
+  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_linear_exponential_extrinsic.hh
+  model/solid_mechanics/materials/material_elastic.hh
+  model/solid_mechanics/materials/material_viscoelastic/material_standard_linear_solid_deviatoric.hh
+  )
+
+
+set(AKANTU_COHESIVE_ELEMENT_TESTS
+  )
\ No newline at end of file
diff --git a/packages/core.cmake b/packages/core.cmake
index 65b121371..3d055200a 100644
--- a/packages/core.cmake
+++ b/packages/core.cmake
@@ -1,190 +1,153 @@
 set(AKANTU_CORE ON CACHE INTERNAL "core package for Akantu" FORCE)
 
 set(AKANTU_CORE_FILES
   # source files
   common/aka_common.cc
   common/aka_error.cc
   common/aka_extern.cc
   common/aka_static_memory.cc
   common/aka_memory.cc
   common/aka_vector.cc
   common/aka_math.cc
   fem/shape_lagrange.cc
   fem/shape_linked.cc
-  fem/shape_cohesive.cc
   fem/integrator_gauss.cc
   fem/mesh.cc
   fem/fem.cc
   fem/element_class.cc
-  fem/cohesive_element.cc
   fem/fem_template.cc
   io/dumper/dumpable.hh
   model/model.cc
   model/solid_mechanics/solid_mechanics_model.cc
-  model/solid_mechanics/solid_mechanics_model_cohesive.cc
   model/solid_mechanics/solid_mechanics_model_mass.cc
   model/solid_mechanics/solid_mechanics_model_boundary.cc
   model/solid_mechanics/solid_mechanics_model_material.cc
   model/solid_mechanics/material.cc
   model/solid_mechanics/material_parameters.cc
-  model/solid_mechanics/materials/material_cohesive/material_cohesive.cc
-  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_linear.cc
-  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_bilinear.cc
-  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_linear_extrinsic.cc
-  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_exponential.cc
-  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_linear_exponential_extrinsic.cc
   model/solid_mechanics/materials/material_elastic.cc
-  model/solid_mechanics/materials/material_neohookean.cc
-  model/solid_mechanics/materials/material_elastic_orthotropic.cc
   model/solid_mechanics/materials/material_viscoelastic/material_standard_linear_solid_deviatoric.cc
-  model/solid_mechanics/materials/material_viscoelastic/material_stiffness_proportional.cc
-  model/solid_mechanics/materials/material_damage/material_damage.cc
-  model/solid_mechanics/materials/material_damage/material_marigo.cc
-  model/solid_mechanics/materials/material_damage/material_mazars.cc
-  model/solid_mechanics/materials/material_damage/material_damage_linear.cc
-  model/solid_mechanics/materials/material_damage/material_vreepeerlings.cc
   mesh_utils/mesh_io.cc
   mesh_utils/mesh_pbc.cc
   mesh_utils/mesh_io/mesh_io_msh.cc
   mesh_utils/mesh_io/mesh_io_msh_struct.cc
   mesh_utils/mesh_io/mesh_io_diana.cc
   mesh_utils/mesh_partition.cc
   mesh_utils/mesh_utils.cc
   solver/sparse_matrix.cc
   solver/solver.cc
   synchronizer/synchronizer_registry.cc
   synchronizer/synchronizer.cc
   synchronizer/distributed_synchronizer.cc
   synchronizer/pbc_synchronizer.cc
   synchronizer/data_accessor.cc
   synchronizer/static_communicator.cc
   synchronizer/grid_synchronizer.cc
   synchronizer/dof_synchronizer.cc
 
   #header files
-
   mesh_utils/mesh_io/mesh_io_msh.hh
   mesh_utils/mesh_io/mesh_io_msh_struct.hh
   mesh_utils/mesh_io/mesh_io_diana.hh
   mesh_utils/mesh_utils.hh
   mesh_utils/mesh_partition.hh
   mesh_utils/mesh_io.hh
   mesh_utils/mesh_partition/mesh_partition_scotch.hh
   solver/sparse_matrix.hh
   solver/solver.hh
   synchronizer/synchronizer.hh
   synchronizer/synchronizer_registry.hh
   synchronizer/static_communicator_dummy.hh
   synchronizer/static_communicator_inline_impl.hh
   synchronizer/distributed_synchronizer.hh
   synchronizer/pbc_synchronizer.hh
   synchronizer/static_communicator.hh
   synchronizer/dof_synchronizer.hh
   synchronizer/real_static_communicator.hh
   synchronizer/data_accessor.hh
   synchronizer/communication_buffer.hh
   synchronizer/grid_synchronizer.hh
   common/aka_grid.hh
   common/aka_grid_tmpl.hh
   common/aka_types.hh
   common/aka_static_memory.hh
   common/aka_static_memory_tmpl.hh
   common/aka_memory.hh
   common/aka_math.hh
   common/aka_math_tmpl.hh
   common/aka_csr.hh
   common/aka_error.hh
   common/aka_common.hh
   common/aka_vector.hh
   common/aka_vector_tmpl.hh
-#  common/aka_types_expression.hh
   common/aka_circular_vector.hh
+  common/aka_event_handler.hh
   fem/mesh.hh
   fem/fem.hh
   fem/by_element_type.hh
   fem/shape_functions.hh
   fem/shape_lagrange.hh
-  fem/shape_cohesive.hh
   fem/fem_template.hh
   fem/integrator_gauss.hh
   fem/integrator.hh
   fem/element_class.hh
-  fem/cohesive_element.hh
   fem/shape_linked.hh
   model/model.hh
   model/parser.hh
   model/parser_tmpl.hh
   model/structural_mechanics/structural_mechanics_model.hh
   model/integration_scheme/integration_scheme_2nd_order.hh
   model/integration_scheme/generalized_trapezoidal.hh
   model/integration_scheme/newmark-beta.hh
   model/integration_scheme/integration_scheme_1st_order.hh
-  model/solid_mechanics/materials/material_cohesive/material_cohesive.hh
-  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_linear.hh
-  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_bilinear.hh
-  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_exponential.hh
-  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_linear_extrinsic.hh
-  model/solid_mechanics/materials/material_cohesive/constitutive_laws/material_cohesive_linear_exponential_extrinsic.hh
-  model/solid_mechanics/materials/material_viscoelastic/material_standard_linear_solid_deviatoric.hh
-  model/solid_mechanics/materials/material_viscoelastic/material_stiffness_proportional.hh
-  model/solid_mechanics/materials/material_elastic.hh
-  model/solid_mechanics/materials/material_elastic_orthotropic.hh
-  model/solid_mechanics/materials/material_neohookean.hh
-  model/solid_mechanics/materials/material_damage/material_damage.hh
-  model/solid_mechanics/materials/material_damage/material_marigo.hh
-  model/solid_mechanics/materials/material_damage/material_mazars.hh
-  model/solid_mechanics/materials/material_damage/material_damage_linear.hh
-  model/solid_mechanics/materials/material_damage/material_vreepeerlings.hh
   model/solid_mechanics/solid_mechanics_model.hh
-  model/solid_mechanics/solid_mechanics_model_cohesive.hh
   model/solid_mechanics/solid_mechanics_model_tmpl.hh
   model/solid_mechanics/material.hh
   model/solid_mechanics/material_parameters.hh
   model/solid_mechanics/material_parameters_tmpl.hh
+  model/solid_mechanics/materials/material_elastic.hh
+  model/solid_mechanics/materials/material_viscoelastic/material_standard_linear_solid_deviatoric.hh
   model/heat_transfer/heat_transfer_model.hh
 
   #inline implementation files
   mesh_utils/mesh_utils_inline_impl.cc
   solver/sparse_matrix_inline_impl.cc
   solver/solver_inline_impl.cc
   synchronizer/dof_synchronizer_inline_impl.cc
   synchronizer/communication_buffer_inline_impl.cc
   common/aka_memory_inline_impl.cc
   common/aka_static_memory_inline_impl.cc
   common/aka_circular_vector_inline_impl.cc
   fem/integrator_gauss_inline_impl.cc
   fem/element_classes/element_class_triangle_3_inline_impl.cc
   fem/element_classes/element_class_segment_2_inline_impl.cc
   fem/element_classes/element_class_quadrangle_4_inline_impl.cc
   fem/element_classes/element_class_quadrangle_8_inline_impl.cc
   fem/element_classes/element_class_bernoulli_beam_2_inline_impl.cc
   fem/element_classes/element_class_hexahedron_8_inline_impl.cc
   fem/element_classes/element_class_triangle_6_inline_impl.cc
   fem/element_classes/element_class_tetrahedron_10_inline_impl.cc
   fem/element_classes/element_class_segment_3_inline_impl.cc
   fem/element_classes/element_class_tetrahedron_4_inline_impl.cc
   fem/shape_functions_inline_impl.cc
   fem/mesh_inline_impl.cc
   fem/element_class_inline_impl.cc
   fem/by_element_type_tmpl.hh
   fem/fem_inline_impl.cc
   fem/shape_linked_inline_impl.cc
   fem/shape_lagrange_inline_impl.cc
   model/model_inline_impl.cc
   model/integration_scheme/generalized_trapezoidal_inline_impl.cc
   model/integration_scheme/newmark-beta_inline_impl.cc
   model/solid_mechanics/solid_mechanics_model_inline_impl.cc
   model/solid_mechanics/materials/material_elastic_inline_impl.cc
-  model/solid_mechanics/materials/material_elastic_orthotropic_inline_impl.cc
-  model/solid_mechanics/materials/material_neohookean_inline_impl.cc
-  model/solid_mechanics/materials/material_damage/material_marigo_inline_impl.cc
-  model/solid_mechanics/materials/material_damage/material_mazars_inline_impl.cc
-  model/solid_mechanics/materials/material_damage/material_damage_linear_inline_impl.cc
-  model/solid_mechanics/materials/material_damage/material_vreepeerlings_inline_impl.cc
   model/solid_mechanics/material_inline_impl.cc
   model/parser_inline_impl.cc
   )
 
 set(AKANTU_CORE_DEB_DEPEND
   libboost-dev
   )
+
+set(AKANTU_CORE_TESTS
+  test_solid_mechanics_model_square
+  )
\ No newline at end of file
diff --git a/packages/damage_non_local.cmake b/packages/damage_non_local.cmake
index 98b74a769..77cb6b270 100644
--- a/packages/damage_non_local.cmake
+++ b/packages/damage_non_local.cmake
@@ -1,14 +1,23 @@
 option(AKANTU_DAMAGE_NON_LOCAL "Package for Non-local damage constitutives laws Akantu" OFF)
+
+add_package_dependecies(damage_non_local extra_materials)
+
 set(AKANTU_DAMAGE_NON_LOCAL_FILES
   model/solid_mechanics/materials/weight_function.cc
   model/solid_mechanics/materials/material_damage/material_vreepeerlings_non_local.cc
   model/solid_mechanics/materials/material_damage/material_mazars_non_local.cc
 
+  model/solid_mechanics/materials/material_non_local_includes.hh
   model/solid_mechanics/materials/weight_function.hh
   model/solid_mechanics/materials/material_damage/material_marigo_non_local.hh
   model/solid_mechanics/materials/material_damage/material_mazars_non_local.hh
   model/solid_mechanics/materials/material_damage/material_vreepeerlings_non_local.hh
 
   model/solid_mechanics/materials/material_non_local.hh
   model/solid_mechanics/materials/material_non_local_inline_impl.cc
+  model/solid_mechanics/materials/weight_function_tmpl.hh
+
+  model/solid_mechanics/materials/material_damage/material_marigo_non_local_inline_impl.cc
+  model/solid_mechanics/materials/material_damage/material_damage_non_local.hh
+  model/solid_mechanics/materials/material_damage/material_vreepeerlings_non_local_inline_impl.cc
   )
\ No newline at end of file
diff --git a/packages/extra_materials.cmake b/packages/extra_materials.cmake
new file mode 100644
index 000000000..436c50a62
--- /dev/null
+++ b/packages/extra_materials.cmake
@@ -0,0 +1,30 @@
+option(AKANTU_EXTRA_MATERIALS "Add the extra list of materials in Akantu" OFF)
+
+set(AKANTU_EXTRA_MATERIALS_FILES
+  model/solid_mechanics/materials/material_neohookean.cc
+  model/solid_mechanics/materials/material_elastic_orthotropic.cc
+  model/solid_mechanics/materials/material_viscoelastic/material_stiffness_proportional.cc
+  model/solid_mechanics/materials/material_damage/material_damage.cc
+  model/solid_mechanics/materials/material_damage/material_marigo.cc
+  model/solid_mechanics/materials/material_damage/material_mazars.cc
+  model/solid_mechanics/materials/material_damage/material_damage_linear.cc
+  model/solid_mechanics/materials/material_damage/material_vreepeerlings.cc
+
+  model/solid_mechanics/materials/material_extra_includes.hh
+  model/solid_mechanics/materials/material_viscoelastic/material_stiffness_proportional.hh
+  model/solid_mechanics/materials/material_elastic_orthotropic.hh
+  model/solid_mechanics/materials/material_neohookean.hh
+  model/solid_mechanics/materials/material_damage/material_damage.hh
+  model/solid_mechanics/materials/material_damage/material_marigo.hh
+  model/solid_mechanics/materials/material_damage/material_mazars.hh
+  model/solid_mechanics/materials/material_damage/material_damage_linear.hh
+  model/solid_mechanics/materials/material_damage/material_vreepeerlings.hh
+
+  model/solid_mechanics/materials/material_elastic_orthotropic_inline_impl.cc
+  model/solid_mechanics/materials/material_neohookean_inline_impl.cc
+  model/solid_mechanics/materials/material_damage/material_damage_inline_impl.cc
+  model/solid_mechanics/materials/material_damage/material_marigo_inline_impl.cc
+  model/solid_mechanics/materials/material_damage/material_mazars_inline_impl.cc
+  model/solid_mechanics/materials/material_damage/material_damage_linear_inline_impl.cc
+  model/solid_mechanics/materials/material_damage/material_vreepeerlings_inline_impl.cc
+  )
\ No newline at end of file
diff --git a/packages/heat_transfer.cmake b/packages/heat_transfer.cmake
index 9b0f549e3..e73ecf1a6 100644
--- a/packages/heat_transfer.cmake
+++ b/packages/heat_transfer.cmake
@@ -1,5 +1,5 @@
 option(AKANTU_HEAT_TRANSFER "Use Heat Transfer package of Akantu" OFF)
-set(AKANATU_HEAT_TRANSFER_FILES
+set(AKANTU_HEAT_TRANSFER_FILES
   model/heat_transfer/heat_transfer_model.cc
   model/heat_transfer/heat_transfer_model_inline_impl.cc
   )
diff --git a/src/common/aka_common.hh b/src/common/aka_common.hh
index 3c42fe625..f6802d08c 100644
--- a/src/common/aka_common.hh
+++ b/src/common/aka_common.hh
@@ -1,463 +1,471 @@
 /**
  * @file   aka_common.hh
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Fri Jun 11 09:48:06 2010
  *
  * @namespace akantu
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  * @section DESCRIPTION
  *
  * All common things to be included in the projects files
  *
  */
 
 /* -------------------------------------------------------------------------- */
 
 #ifndef __AKANTU_COMMON_HH__
 #define __AKANTU_COMMON_HH__
 
 /* -------------------------------------------------------------------------- */
 #include <list>
 #include <limits>
 
 /* -------------------------------------------------------------------------- */
 #define __BEGIN_AKANTU__ namespace akantu {
 #define __END_AKANTU__ }
 
 /* -------------------------------------------------------------------------- */
 #include "aka_config.hh"
 #include "aka_error.hh"
 /* -------------------------------------------------------------------------- */
 
 __BEGIN_AKANTU__
 
 /* -------------------------------------------------------------------------- */
 /* Common types                                                               */
 /* -------------------------------------------------------------------------- */
 
 typedef double Real;
 typedef unsigned int UInt;
 typedef unsigned long long UInt64;
 typedef signed int Int;
 
 typedef std::string ID;
 
 static const Real UINT_INIT_VALUE = 0;
 #ifdef AKANTU_NDEBUG
   static const Real REAL_INIT_VALUE = 0;
 #else
   static const Real REAL_INIT_VALUE = std::numeric_limits<Real>::quiet_NaN();
 #endif
 
 
 /* -------------------------------------------------------------------------- */
 /* Memory types                                                               */
 /* -------------------------------------------------------------------------- */
 
 typedef UInt MemoryID;
 
 /* -------------------------------------------------------------------------- */
 /* Mesh/FEM/Model types                                                       */
 /* -------------------------------------------------------------------------- */
 
 typedef UInt Surface;
 typedef std::pair<Surface, Surface> SurfacePair;
 typedef std::list< SurfacePair > SurfacePairList;
 
 /* -------------------------------------------------------------------------- */
 
 /// @boost sequence of element to loop on in global tasks
 #define AKANTU_REGULAR_ELEMENT_TYPE		\
   (_not_defined)				\
   (_segment_2)					\
   (_segment_3)					\
   (_triangle_3)					\
   (_triangle_6)					\
   (_tetrahedron_4)				\
   (_tetrahedron_10)				\
   (_quadrangle_4)				\
   (_quadrangle_8)				\
   (_hexahedron_8)                               \
   (_point)					\
   (_bernoulli_beam_2)
 
-#define AKANTU_COHESIVE_ELEMENT_TYPE		\
+#if defined(AKANTU_COHESIVE_ELEMENT)
+#  define AKANTU_COHESIVE_ELEMENT_TYPE		\
   (_cohesive_2d_4)				\
   (_cohesive_2d_6)
+#else
+#  define AKANTU_COHESIVE_ELEMENT_TYPE
+#endif
 
 #define AKANTU_ALL_ELEMENT_TYPE					\
   AKANTU_REGULAR_ELEMENT_TYPE AKANTU_COHESIVE_ELEMENT_TYPE
 
 /// @enum ElementType type of element potentially contained in a Mesh
 enum ElementType {
   _not_defined     = 0,
   _segment_2       = 1, /// first  order segment
   _segment_3       = 2, /// second order segment
   _triangle_3      = 3, /// first  order triangle
   _triangle_6      = 4, /// second order triangle
   _tetrahedron_4   = 5, /// first  order tetrahedron
   _tetrahedron_10  = 6, /// second order tetrahedron @remark not implemented yet
   _quadrangle_4,        /// first  order quadrangle
   _quadrangle_8,        /// second order quadrangle
   _hexahedron_8,        /// first  order hexahedron
   _point,               /// point only for some algorithm to be generic like mesh partitioning
   _bernoulli_beam_2,    /// bernoulli beam 2D
+#if defined(AKANTU_COHESIVE_ELEMENT)
   _cohesive_2d_4,       /// first order 2D cohesive
   _cohesive_2d_6,       /// second order 2D cohesive
+#endif
   _max_element_type
 };
 
 enum ElementKind {
   _ek_not_defined,
   _ek_regular,
   _ek_cohesive
 };
 
 
 /// enum AnalysisMethod type of solving method used to solve the equation of motion
 enum AnalysisMethod {
   _static,
   _implicit_dynamic,
   _explicit_dynamic
 };
 
 /// myfunction(double * position, double * stress/force, double * normal, unsigned int material_id)
 typedef void (*BoundaryFunction)(double *,double *, double*, unsigned int);
 
 /// @enum BoundaryFunctionType type of function passed for boundary conditions
 enum BoundaryFunctionType {
   _bft_stress,
   _bft_traction
 };
 
 /// @enum SparseMatrixType type of sparse matrix used
 enum SparseMatrixType {
   _unsymmetric,
   _symmetric
 };
 
 /* -------------------------------------------------------------------------- */
 /* Contact                                                                    */
 /* -------------------------------------------------------------------------- */
 typedef ID ContactID;
 typedef ID ContactSearchID;
 typedef ID ContactNeighborStructureID;
 
 enum ContactType {
   _ct_not_defined = 0,
   _ct_2d_expli    = 1,
   _ct_3d_expli    = 2,
   _ct_rigid       = 3
 };
 
 enum ContactSearchType {
   _cst_not_defined = 0,
   _cst_2d_expli    = 1,
   _cst_expli       = 2
 };
 
 enum ContactNeighborStructureType {
   _cnst_not_defined  = 0,
   _cnst_regular_grid = 1,
   _cnst_2d_grid = 2
 };
 
 /* -------------------------------------------------------------------------- */
 /* Friction                                                                   */
 /* -------------------------------------------------------------------------- */
 typedef ID FrictionID;
 
 /* -------------------------------------------------------------------------- */
 /* Ghosts handling                                                            */
 /* -------------------------------------------------------------------------- */
 
 typedef ID SynchronizerID;
 
 /// @enum CommunicatorType type of communication method to use
 enum CommunicatorType {
   _communicator_mpi,
   _communicator_dummy
 };
 
 /// @enum SynchronizationTag type of synchronizations
 enum SynchronizationTag {
   /// SolidMechanicsModel tags
   _gst_smm_mass,                  /// synchronization of the SolidMechanicsModel.mass
   _gst_smm_for_strain,            /// synchronization of the SolidMechanicsModel.current_position
   _gst_smm_boundary,              /// synchronization of the boundary, forces, velocities and displacement
   _gst_smm_uv,                    /// synchronization of the nodal velocities and displacement
   _gst_smm_res,                   /// synchronization of the nodal residual
   _gst_smm_init_mat,              /// synchronization of the data to initialize materials
   _gst_smm_stress,
   /// HeatTransfer tags
   _gst_htm_capacity,              /// synchronization of the nodal heat capacity
   _gst_htm_temperature,           /// synchronization of the nodal temperature
   _gst_htm_gradient_temperature,  /// synchronization of the element gradient temperature
   /// Material non local
   _gst_mnl_for_average,           /// synchronization of data to average in non local material
   _gst_mnl_weight,                /// synchronization of data for the weight computations
   /// Test tag
   _gst_test
 };
 
 /// @enum GhostType type of ghost
 enum GhostType {
   _not_ghost,
   _ghost,
   _casper  // not used but a real cute ghost
 };
 
 /// @enum SynchronizerOperation reduce operation that the synchronizer can perform
 enum SynchronizerOperation {
   _so_sum,
   _so_min,
   _so_max,
   _so_null
 };
 
 
 /* -------------------------------------------------------------------------- */
 /* Global defines                                                             */
 /* -------------------------------------------------------------------------- */
 #define AKANTU_MIN_ALLOCATION 2000
 
 #define AKANTU_INDENT " "
 #define AKANTU_INCLUDE_INLINE_IMPL
 
 /* -------------------------------------------------------------------------- */
 template<class T>
 struct is_scalar {
   enum{ value = false };
 };
 
 #define AKANTU_SPECIFY_IS_SCALAR(type)		\
   template<>					\
   struct is_scalar<type> {			\
     enum { value = true };			\
   }
 
 
 AKANTU_SPECIFY_IS_SCALAR(Real);
 AKANTU_SPECIFY_IS_SCALAR(UInt);
 AKANTU_SPECIFY_IS_SCALAR(Int);
 AKANTU_SPECIFY_IS_SCALAR(bool);
 
 template < typename T1, typename T2 >
 struct is_same {
   enum { value = false };      // is_same represents a bool.
 };
 
 template < typename T >
 struct is_same<T, T> {
   enum { value = true };
 };
 
 /* -------------------------------------------------------------------------- */
 #define AKANTU_SET_MACRO(name, variable, type)	\
   inline void set##name (type variable) {	\
     this->variable = variable;			\
   }
 
 #define AKANTU_GET_MACRO(name, variable, type)	\
   inline type get##name () const {		\
     return variable;				\
   }
 
 #define AKANTU_GET_MACRO_NOT_CONST(name, variable, type)	\
   inline type get##name () {					\
     return variable;						\
   }
 
 #define AKANTU_GET_MACRO_BY_ELEMENT_TYPE_CONST(name, variable, type)	\
   inline const Vector<type> &						\
   get##name (const ::akantu::ElementType & el_type,			\
 	     const GhostType & ghost_type = _not_ghost) const {		\
     AKANTU_DEBUG_IN();							\
 									\
     AKANTU_DEBUG_OUT();							\
     return variable(el_type, ghost_type);				\
   }
 
 #define AKANTU_GET_MACRO_BY_ELEMENT_TYPE(name, variable, type)		\
   inline Vector<type> &							\
   get##name (const ::akantu::ElementType & el_type,			\
 	     const GhostType & ghost_type = _not_ghost) {		\
     AKANTU_DEBUG_IN();							\
 									\
     AKANTU_DEBUG_OUT();							\
     return variable(el_type, ghost_type);				\
   }
 
 
 
 
 /* -------------------------------------------------------------------------- */
 //! standard output stream operator for ElementType
 inline std::ostream & operator <<(std::ostream & stream, ElementType type)
 {
   switch(type)
     {
     case _segment_2        : stream << "_segment_2"       ; break;
     case _segment_3        : stream << "_segment_3"       ; break;
     case _triangle_3       : stream << "_triangle_3"      ; break;
     case _triangle_6       : stream << "_triangle_6"      ; break;
     case _tetrahedron_4    : stream << "_tetrahedron_4"   ; break;
     case _tetrahedron_10   : stream << "_tetrahedron_10"  ; break;
     case _quadrangle_4     : stream << "_quadrangle_4"    ; break;
     case _quadrangle_8     : stream << "_quadrangle_8"    ; break;
     case _hexahedron_8     : stream << "_hexahedron_8"    ; break;
     case _bernoulli_beam_2 : stream << "_bernoulli_beam_2"; break;
+#if defined(AKANTU_COHESIVE_ELEMENT)
     case _cohesive_2d_4    : stream << "_cohesive_2d_4"   ; break;
     case _cohesive_2d_6    : stream << "_cohesive_2d_6"   ; break;
+#endif
     case _not_defined      : stream << "_not_defined"     ; break;
     case _max_element_type : stream << "ElementType(" << (int) type << ")"; break;
     case _point            : stream << "point"; break;
     }
   return stream;
 }
 
 /// standard output stream operator for GhostType
 inline std::ostream & operator <<(std::ostream & stream, GhostType type)
 {
   switch(type)
     {
     case _not_ghost : stream << "not_ghost"; break;
     case _ghost     : stream << "ghost"    ; break;
     case _casper    : stream << "Casper the friendly ghost"; break;
     }
   return stream;
 }
 
 /// standard output stream operator for SynchronizationTag
 inline std::ostream & operator <<(std::ostream & stream, SynchronizationTag type)
 {
   switch(type)
     {
     case _gst_smm_mass                 : stream << "_gst_smm_mass"                ; break;
     case _gst_smm_for_strain	       : stream << "_gst_smm_for_strain"	  ; break;
     case _gst_smm_boundary	       : stream << "_gst_smm_boundary"	      	  ; break;
     case _gst_smm_uv		       : stream << "_gst_smm_uv"		  ; break;
     case _gst_smm_res		       : stream << "_gst_smm_res"		  ; break;
     case _gst_smm_init_mat	       : stream << "_gst_smm_init_mat"	      	  ; break;
     case _gst_smm_stress	       : stream << "_gst_smm_stress"	      	  ; break;
     case _gst_htm_capacity	       : stream << "_gst_htm_capacity" 	      	  ; break;
     case _gst_htm_temperature	       : stream << "_gst_htm_temperature" 	  ; break;
     case _gst_htm_gradient_temperature : stream << "_gst_htm_gradient_temperature"; break;
     case _gst_mnl_for_average	       : stream << "_gst_mnl_for_average"	  ; break;
     case _gst_mnl_weight               : stream << "_gst_mnl_weight"       	  ; break;
     case _gst_test                     : stream << "_gst_test"                    ; break;
     }
   return stream;
 }
 
 /* -------------------------------------------------------------------------- */
 void initialize(int & argc, char ** & argv);
 
 /* -------------------------------------------------------------------------- */
 void finalize ();
 
 /* -------------------------------------------------------------------------- */
 /*
  * For intel compiler annoying remark
  */
 #if defined(__INTEL_COMPILER)
 /// remark #981: operands are evaluated in unspecified order
 #pragma warning ( disable : 981 )
 
 /// remark #383: value copied to temporary, reference to temporary used
 #pragma warning ( disable : 383 )
 
 #endif //defined(__INTEL_COMPILER)
 
 /* -------------------------------------------------------------------------- */
 /* string manipulation                                                        */
 /* -------------------------------------------------------------------------- */
 inline std::string to_lower(const std::string & str);
 /* -------------------------------------------------------------------------- */
 inline std::string trim(const std::string & to_trim);
 
 __END_AKANTU__
 
 #include "aka_common_inline_impl.cc"
 
 /* -------------------------------------------------------------------------- */
 // BOOST PART: TOUCH ONLY IF YOU KNOW WHAT YOU ARE DOING
 #include <boost/preprocessor.hpp>
 
 #define AKANTU_EXCLUDE_ELEMENT_TYPE(type)			\
   AKANTU_DEBUG_ERROR("Type (" << type << ") not handled by this function")
 
 #define AKANTU_BOOST_CASE_MACRO(r,macro,type)	\
   case type : { macro(type); break; }
 
 #define AKANTU_BOOST_ELEMENT_SWITCH(macro1, list1, macro2, list2)	\
   do {									\
     switch(type) {							\
       BOOST_PP_SEQ_FOR_EACH(AKANTU_BOOST_CASE_MACRO, macro1, list1)	\
       BOOST_PP_SEQ_FOR_EACH(AKANTU_BOOST_CASE_MACRO, macro2, list2)	\
     case _max_element_type:  {						\
       AKANTU_DEBUG_ERROR("Wrong type : " << type);			\
       break;								\
     }									\
     }									\
   } while(0)
 
 
 #define AKANTU_BOOST_ALL_ELEMENT_SWITCH(macro1)				\
   do {									\
     switch(type) {							\
       BOOST_PP_SEQ_FOR_EACH(AKANTU_BOOST_CASE_MACRO, macro1, AKANTU_ALL_ELEMENT_TYPE) \
     case _max_element_type:  {						\
       AKANTU_DEBUG_ERROR("Wrong type : " << type);			\
       break;								\
     }									\
     }									\
   } while(0)
 
 #define AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(macro)			\
   AKANTU_BOOST_ELEMENT_SWITCH(macro,					\
 			      AKANTU_REGULAR_ELEMENT_TYPE,		\
 			      AKANTU_EXCLUDE_ELEMENT_TYPE,		\
 			      AKANTU_COHESIVE_ELEMENT_TYPE)
 
 #define AKANTU_BOOST_COHESIVE_ELEMENT_SWITCH(macro)			\
   AKANTU_BOOST_ELEMENT_SWITCH(macro,					\
 			      AKANTU_COHESIVE_ELEMENT_TYPE,		\
 			      AKANTU_EXCLUDE_ELEMENT_TYPE,		\
 			      AKANTU_REGULAR_ELEMENT_TYPE)
 
 #define AKANTU_BOOST_LIST_MACRO(r,macro,type)	\
   macro(type)
 
 #define AKANTU_BOOST_ELEMENT_LIST(macro,list)			\
   BOOST_PP_SEQ_FOR_EACH(AKANTU_BOOST_LIST_MACRO,macro,list)
 
 #define AKANTU_BOOST_ALL_ELEMENT_LIST(macro)	\
   AKANTU_BOOST_ELEMENT_LIST(macro, AKANTU_ALL_ELEMENT_TYPE)
 
 #define AKANTU_BOOST_REGULAR_ELEMENT_LIST(macro)	\
   AKANTU_BOOST_ELEMENT_LIST(macro, AKANTU_REGULAR_ELEMENT_TYPE)
 
 #define AKANTU_BOOST_COHESIVE_ELEMENT_LIST(macro)	\
   AKANTU_BOOST_ELEMENT_LIST(macro, AKANTU_COHESIVE_ELEMENT_TYPE)
 
 
 #endif /* __AKANTU_COMMON_HH__ */
diff --git a/src/fem/element_class.cc b/src/fem/element_class.cc
index 5ba15583e..813f3888c 100644
--- a/src/fem/element_class.cc
+++ b/src/fem/element_class.cc
@@ -1,299 +1,300 @@
 /**
  * @file   element_class.cc
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Tue Jul 20 10:12:44 2010
  *
  * @brief  Common part of element_classes
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 #include "element_class.hh"
 /* -------------------------------------------------------------------------- */
 
 __BEGIN_AKANTU__
 
 /* -------------------------------------------------------------------------- */
 template<ElementType type> ElementKind ElementClass<type>::kind             = _ek_regular;
 template<ElementType type> UInt ElementClass<type>::nb_nodes_per_element    = 0;
 template<ElementType type> ElementType ElementClass<type>::p1_element_type  = _not_defined;
 template<ElementType type> UInt ElementClass<type>::nb_quadrature_points    = 0;
 template<ElementType type> UInt ElementClass<type>::spatial_dimension       = 0;
 template<ElementType type> ElementType ElementClass<type>::facet_type       = _not_defined;
 template<ElementType type> UInt ElementClass<type>::nb_shape_functions      = 1;
 
 
 template<> ElementKind ElementClass<_not_defined>::kind             = _ek_regular;
 template<> UInt ElementClass<_not_defined>::nb_nodes_per_element    = 0;
 template<> ElementType ElementClass<_not_defined>::p1_element_type  = _not_defined;
 template<> UInt ElementClass<_not_defined>::nb_quadrature_points    = 0;
 template<> UInt ElementClass<_not_defined>::spatial_dimension       = 0;
 template<> ElementType ElementClass<_not_defined>::facet_type       = _not_defined;
 template<> UInt ElementClass<_not_defined>::nb_shape_functions      = 1;
 template<> Real ElementClass<_not_defined>::quad[]                  = {};
 template<> UInt ElementClass<_not_defined>::nb_facets               = 0;
 template<> UInt * ElementClass<_not_defined>::facet_connectivity[]  = {};
 template<> Real ElementClass<_not_defined>::gauss_integration_weights[] = {2.};
 
 /* -------------------------------------------------------------------------- */
 /* Element Kind                                                               */
 /* -------------------------------------------------------------------------- */
 template<> ElementKind ElementClass<_segment_2       >::kind = _ek_regular;
 template<> ElementKind ElementClass<_segment_3       >::kind = _ek_regular;
 template<> ElementKind ElementClass<_triangle_3      >::kind = _ek_regular;
 template<> ElementKind ElementClass<_triangle_6      >::kind = _ek_regular;
 template<> ElementKind ElementClass<_tetrahedron_4   >::kind = _ek_regular;
 template<> ElementKind ElementClass<_tetrahedron_10  >::kind = _ek_regular;
 template<> ElementKind ElementClass<_quadrangle_4    >::kind = _ek_regular;
 template<> ElementKind ElementClass<_quadrangle_8    >::kind = _ek_regular;
 template<> ElementKind ElementClass<_hexahedron_8    >::kind = _ek_regular;
 template<> ElementKind ElementClass<_point           >::kind = _ek_regular;
 template<> ElementKind ElementClass<_bernoulli_beam_2>::kind = _ek_regular;
 /* -------------------------------------------------------------------------- */
+#if defined(AKANTU_COHESIVE_ELEMENT)
 template<> ElementKind ElementClass<_cohesive_2d_4   >::kind = _ek_cohesive;
 template<> ElementKind ElementClass<_cohesive_2d_6   >::kind = _ek_cohesive;
-
+#endif
 /* -------------------------------------------------------------------------- */
 /* Regular Elements                                                           */
 /* -------------------------------------------------------------------------- */
 
 /* -------------------------------------------------------------------------- */
 template<> UInt ElementClass<_point>::nb_shape_functions       = 1;
 template<> UInt ElementClass<_point>::nb_nodes_per_element     = 1;
 template<> ElementType ElementClass<_point>::p1_element_type   = _point;
 template<> UInt ElementClass<_point>::nb_quadrature_points     = 1;
 template<> Real ElementClass<_point>::quad[]                   = {0};
 template<> ElementType ElementClass<_point>::facet_type        = _not_defined;
 template<> UInt ElementClass<_point>::spatial_dimension        = 0;
 template<> UInt ElementClass<_point>::nb_facets                = 0;
 template<> UInt * ElementClass<_point>::facet_connectivity[]   = {};
 
 /* -------------------------------------------------------------------------- */
 template<> UInt ElementClass<_segment_2>::nb_shape_functions      = 1;
 template<> UInt ElementClass<_segment_2>::nb_nodes_per_element    = 2;
 template<> ElementType ElementClass<_segment_2>::p1_element_type  = _segment_2;
 template<> UInt ElementClass<_segment_2>::nb_quadrature_points    = 1;
 template<> Real ElementClass<_segment_2>::quad[]                  = {0};
 template<> UInt ElementClass<_segment_2>::spatial_dimension       = 1;
 template<> UInt ElementClass<_segment_2>::nb_facets               = 2;
 template<> ElementType ElementClass<_segment_2>::facet_type       = _point;
 template<> UInt ElementClass<_segment_2>::vec_facet_connectivity[]= {0,
 								     1};
 template<> UInt * ElementClass<_segment_2>::facet_connectivity[]  = {&vec_facet_connectivity[0],
 								     &vec_facet_connectivity[1]};
 
 /* -------------------------------------------------------------------------- */
 template<> UInt ElementClass<_segment_3>::nb_shape_functions      = 1;
 template<> UInt ElementClass<_segment_3>::nb_nodes_per_element    = 3;
 template<> ElementType ElementClass<_segment_3>::p1_element_type  = _segment_2;
 template<> UInt ElementClass<_segment_3>::nb_quadrature_points    = 2;
 template<> Real ElementClass<_segment_3>::quad[]                  = {-1./sqrt(3.), 1./sqrt(3.)};
 template<> UInt ElementClass<_segment_3>::spatial_dimension       = 1;
 template<> UInt ElementClass<_segment_3>::nb_facets               = 2;
 template<> ElementType ElementClass<_segment_3>::facet_type       = _point;
 template<> UInt ElementClass<_segment_3>::vec_facet_connectivity[]= {0,
 								     1};
 template<> UInt * ElementClass<_segment_3>::facet_connectivity[]  = {&vec_facet_connectivity[0],
 								     &vec_facet_connectivity[1]};
 /* -------------------------------------------------------------------------- */
 template<> UInt ElementClass<_triangle_3>::nb_shape_functions      = 1;
 template<> UInt ElementClass<_triangle_3>::nb_nodes_per_element    = 3;
 template<> ElementType ElementClass<_triangle_3>::p1_element_type  = _triangle_3;
 template<> UInt ElementClass<_triangle_3>::nb_quadrature_points    = 1;
 template<> Real ElementClass<_triangle_3>::quad[]                  = {1./3., 1./3.};
 template<> UInt ElementClass<_triangle_3>::spatial_dimension       = 2;
 template<> UInt ElementClass<_triangle_3>::nb_facets               = 3;
 template<> ElementType ElementClass<_triangle_3>::facet_type       = _segment_2;
 template<> UInt ElementClass<_triangle_3>::vec_facet_connectivity[]= {0, 1,
 								      1, 2,
 								      2, 0};
 template<> UInt * ElementClass<_triangle_3>::facet_connectivity[]  = {&vec_facet_connectivity[0],
 								      &vec_facet_connectivity[2],
 								      &vec_facet_connectivity[4]};
 /* -------------------------------------------------------------------------- */
 template<> UInt ElementClass<_triangle_6>::nb_shape_functions      = 1;
 template<> UInt ElementClass<_triangle_6>::nb_nodes_per_element    = 6;
 template<> ElementType ElementClass<_triangle_6>::p1_element_type  = _triangle_3;
 template<> UInt ElementClass<_triangle_6>::nb_quadrature_points    = 3;
 template<> Real ElementClass<_triangle_6>::quad[]                  = {1./6., 1./6.,
 								      2./3., 1./6.,
 								      1./6., 2./3.};
 template<> UInt ElementClass<_triangle_6>::spatial_dimension       = 2;
 template<> UInt ElementClass<_triangle_6>::nb_facets               = 3;
 template<> ElementType ElementClass<_triangle_6>::facet_type       = _segment_3;
 template<> UInt ElementClass<_triangle_6>::vec_facet_connectivity[]= {0, 1, 3,
 								      1, 2, 4,
 								      2, 0, 5};
 template<> UInt * ElementClass<_triangle_6>::facet_connectivity[]  = {&vec_facet_connectivity[0],
 								      &vec_facet_connectivity[3],
 								      &vec_facet_connectivity[6]};
 /* -------------------------------------------------------------------------- */
 template<> UInt ElementClass<_tetrahedron_4>::nb_shape_functions      = 1;
 template<> UInt ElementClass<_tetrahedron_4>::nb_nodes_per_element    = 4;
 template<> ElementType ElementClass<_tetrahedron_4>::p1_element_type  = _tetrahedron_4;
 template<> UInt ElementClass<_tetrahedron_4>::nb_quadrature_points    = 1;
 template<> Real ElementClass<_tetrahedron_4>::quad[]                  = {1./4., 1./4., 1./4.};
 template<> UInt ElementClass<_tetrahedron_4>::spatial_dimension       = 3;
 template<> UInt ElementClass<_tetrahedron_4>::nb_facets               = 4;
 template<> ElementType ElementClass<_tetrahedron_4>::facet_type       = _triangle_3;
 template<> UInt ElementClass<_tetrahedron_4>::vec_facet_connectivity[]= {0, 2, 1,
 									 1, 2, 3,
 									 2, 0, 3,
 									 0, 1, 3};
 template<> UInt * ElementClass<_tetrahedron_4>::facet_connectivity[]  = {&vec_facet_connectivity[0],
 									 &vec_facet_connectivity[3],
 									 &vec_facet_connectivity[6],
 									 &vec_facet_connectivity[9]};
 /* -------------------------------------------------------------------------- */
 template<> UInt ElementClass<_tetrahedron_10>::nb_shape_functions      = 1;
 template<> UInt ElementClass<_tetrahedron_10>::nb_nodes_per_element    = 10;
 template<> ElementType ElementClass<_tetrahedron_10>::p1_element_type  = _tetrahedron_4;
 template<> UInt ElementClass<_tetrahedron_10>::nb_quadrature_points    = 4;
 template<> Real ElementClass<_tetrahedron_10>::quad[] = {0.1381966011250, 0.1381966011250, 0.1381966011250,  // a = (5-sqrt(5))/20
                                                          0.5854101966250, 0.1381966011250, 0.1381966011250,  // b = (5+3*sqrt(5))/20
                                                          0.1381966011250, 0.5854101966250, 0.1381966011250,
                                                          0.1381966011250, 0.1381966011250, 0.5854101966250};
 template<> UInt ElementClass<_tetrahedron_10>::spatial_dimension       = 3;
 template<> UInt ElementClass<_tetrahedron_10>::nb_facets               = 4;
 template<> ElementType ElementClass<_tetrahedron_10>::facet_type       = _triangle_6;
 template<> UInt ElementClass<_tetrahedron_10>::vec_facet_connectivity[]= {0, 2, 1, 6, 5, 4,
 									  1, 2, 3, 5, 9, 8,
 									  2, 0, 3, 6, 7, 9,
 									  0, 1, 3, 4, 8, 7};
 template<> UInt * ElementClass<_tetrahedron_10>::facet_connectivity[]  = {&vec_facet_connectivity[0],
 									  &vec_facet_connectivity[6],
 									  &vec_facet_connectivity[12],
 									  &vec_facet_connectivity[18]};
 /* -------------------------------------------------------------------------- */
 template<> UInt ElementClass<_quadrangle_4>::nb_shape_functions      = 1;
 template<> UInt ElementClass<_quadrangle_4>::nb_nodes_per_element    = 4;
 template<> ElementType ElementClass<_quadrangle_4>::p1_element_type  = _quadrangle_4;
 template<> UInt ElementClass<_quadrangle_4>::nb_quadrature_points    = 4;
 //template<> Real ElementClass<_quadrangle_4>::quad[]                  = {0, 0};
 template<> Real ElementClass<_quadrangle_4>::quad[]                  = {-1./std::sqrt(3), -1./sqrt(3),
 									 1./sqrt(3), -1./sqrt(3),
 									 1./sqrt(3),  1./sqrt(3),
 									-1./sqrt(3),  1./sqrt(3)};
 template<> UInt ElementClass<_quadrangle_4>::spatial_dimension       = 2;
 template<> UInt ElementClass<_quadrangle_4>::nb_facets               = 4;
 template<> ElementType ElementClass<_quadrangle_4>::facet_type       = _segment_2;
 template<> UInt ElementClass<_quadrangle_4>::vec_facet_connectivity[]= {0, 1,
 									1, 2,
 									2, 3,
                                                                         3, 0};
 template<> UInt * ElementClass<_quadrangle_4>::facet_connectivity[]  = {&vec_facet_connectivity[0],
 									&vec_facet_connectivity[2],
 									&vec_facet_connectivity[4],
 									&vec_facet_connectivity[6]};
 /* -------------------------------------------------------------------------- */
 template<> UInt ElementClass<_quadrangle_8>::nb_shape_functions      = 1;
 template<> UInt ElementClass<_quadrangle_8>::nb_nodes_per_element    = 8;
 template<> ElementType ElementClass<_quadrangle_8>::p1_element_type  = _quadrangle_8;
 template<> UInt ElementClass<_quadrangle_8>::nb_quadrature_points    = 9;
 template<> Real ElementClass<_quadrangle_8>::quad[]                  = {          0.,           0.,
 									 sqrt(3./5.),  sqrt(3./5.),
 									-sqrt(3./5.),  sqrt(3./5.),
 									-sqrt(3./5.), -sqrt(3./5.),
 									 sqrt(3./5.), -sqrt(3./5.),
 									          0.,  sqrt(3./5.),
 									-sqrt(3./5.),           0.,
 										  0., -sqrt(3./5.),
 									 sqrt(3./5.),           0.};
 template<> UInt ElementClass<_quadrangle_8>::spatial_dimension       = 2;
 template<> UInt ElementClass<_quadrangle_8>::nb_facets               = 4;
 template<> ElementType ElementClass<_quadrangle_8>::facet_type       = _segment_3;
 template<> UInt ElementClass<_quadrangle_8>::vec_facet_connectivity[]= {0, 1, 4,
  									1, 2, 5,
  									2, 3, 6,
 									3, 0, 7};
 template<> UInt * ElementClass<_quadrangle_8>::facet_connectivity[]  = {vec_facet_connectivity + 0,
  									vec_facet_connectivity + 3,
  									vec_facet_connectivity + 6,
  									vec_facet_connectivity + 9};
 /* -------------------------------------------------------------------------- */
 template<> UInt ElementClass<_hexahedron_8>::nb_shape_functions      = 1;
 template<> UInt ElementClass<_hexahedron_8>::nb_nodes_per_element    = 8;
 template<> ElementType ElementClass<_hexahedron_8>::p1_element_type  = _hexahedron_8;
 template<> UInt ElementClass<_hexahedron_8>::nb_quadrature_points    = 8;
 template<> Real ElementClass<_hexahedron_8>::quad[]                  = {-1./sqrt(3.), -1./sqrt(3.), -1./sqrt(3.),
  									 1./sqrt(3.), -1./sqrt(3.), -1./sqrt(3.),
 									 1./sqrt(3.),  1./sqrt(3.), -1./sqrt(3.),
  									-1./sqrt(3.),  1./sqrt(3.), -1./sqrt(3.),
  									-1./sqrt(3.), -1./sqrt(3.),  1./sqrt(3.),
 									 1./sqrt(3.), -1./sqrt(3.),  1./sqrt(3.),
 									 1./sqrt(3.),  1./sqrt(3.),  1./sqrt(3.),
  									-1./sqrt(3.),  1./sqrt(3.),  1./sqrt(3.)};
 template<> UInt ElementClass<_hexahedron_8>::spatial_dimension       = 3;
 template<> UInt ElementClass<_hexahedron_8>::nb_facets               = 6;
 template<> ElementType ElementClass<_hexahedron_8>::facet_type       = _quadrangle_4;
 template<> UInt ElementClass<_hexahedron_8>::vec_facet_connectivity[]= {0, 1, 2, 3,
 									0, 1, 5, 4,
 									1, 2, 6, 5,
 									2, 3, 7, 6,
 									3, 0, 4, 7,
 									4, 5, 6, 7};
 template<> UInt * ElementClass<_hexahedron_8>::facet_connectivity[]  = {&vec_facet_connectivity[0],
 									&vec_facet_connectivity[4],
 									&vec_facet_connectivity[8],
 									&vec_facet_connectivity[12],
 									&vec_facet_connectivity[16],
 									&vec_facet_connectivity[20]};
 /* -------------------------------------------------------------------------- */
 
 /* -------------------------------------------------------------------------- */
 /* Structural elements                                                        */
 /* -------------------------------------------------------------------------- */
 template<> UInt ElementClass<_bernoulli_beam_2>::nb_nodes_per_element    = 2;
 template<> ElementType ElementClass<_bernoulli_beam_2>::p1_element_type  = _bernoulli_beam_2;
 template<> UInt ElementClass<_bernoulli_beam_2>::nb_quadrature_points    = 2;
 template<> Real ElementClass<_bernoulli_beam_2>::quad[]                  = {-1/sqrt(3), 0,
 									     1/sqrt(3), 0};
 template<> UInt ElementClass<_bernoulli_beam_2>::spatial_dimension       = 2;
 template<> UInt ElementClass<_bernoulli_beam_2>::nb_facets               = 2;
 template<> ElementType ElementClass<_bernoulli_beam_2>::facet_type       = _point;
 template<> UInt ElementClass<_bernoulli_beam_2>::vec_facet_connectivity[]= {0,
 									    1};
 template<> UInt * ElementClass<_bernoulli_beam_2>::facet_connectivity[]  = {&vec_facet_connectivity[0],
 									    &vec_facet_connectivity[1]};
 template<> UInt ElementClass<_bernoulli_beam_2>::nb_shape_functions      = 5;
 /* -------------------------------------------------------------------------- */
 
 /* -------------------------------------------------------------------------- */
 /* Gauss integration                                                          */
 /* -------------------------------------------------------------------------- */
 template<> Real ElementClass<_segment_2       >::gauss_integration_weights[] = {2.};
 template<> Real ElementClass<_segment_3       >::gauss_integration_weights[] = {1., 1.};
 template<> Real ElementClass<_triangle_3      >::gauss_integration_weights[] = {1./2.};
 template<> Real ElementClass<_triangle_6      >::gauss_integration_weights[] = {1./6., 1./6., 1./6.};
 template<> Real ElementClass<_tetrahedron_4   >::gauss_integration_weights[] = {1./6.};
 template<> Real ElementClass<_tetrahedron_10  >::gauss_integration_weights[] = {1./24., 1./24., 1./24., 1./24.};
 template<> Real ElementClass<_quadrangle_4    >::gauss_integration_weights[] = {1., 1., 1., 1.};
 template<> Real ElementClass<_quadrangle_8    >::gauss_integration_weights[] = {64./81.,
 										25./81., 25./81., 25./81., 25./81.,
 										40./81., 40./81., 40./81., 40./81.};
 template<> Real ElementClass<_hexahedron_8    >::gauss_integration_weights[] = {1., 1., 1., 1.,
 					      				      1., 1., 1., 1.};
 template<> Real ElementClass<_point           >::gauss_integration_weights[] = {1.};
 template<> Real ElementClass<_bernoulli_beam_2>::gauss_integration_weights[] = {1., 1.};
 
 
 __END_AKANTU__
 
diff --git a/src/fem/fem_template.cc b/src/fem/fem_template.cc
index 73a811e84..5660aee43 100644
--- a/src/fem/fem_template.cc
+++ b/src/fem/fem_template.cc
@@ -1,963 +1,789 @@
 /**
  * @file   fem_template.cc
  * @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Fri Feb 11 11:37:47 2011
  *
  * @brief  implementation of the generic FEMTemplate class
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 #include "integrator_gauss.hh"
 #include "fem.hh"
 #include "aka_common.hh"
 #include "shape_lagrange.hh"
 #include "shape_linked.hh"
-#include "shape_cohesive.hh"
-#include "integrator_cohesive.hh"
+#if defined(AKANTU_COHESIVE_ELEMENT)
+#  include "shape_cohesive.hh"
+#  include "integrator_cohesive.hh"
+#endif
 /* -------------------------------------------------------------------------- */
 
 
 __BEGIN_AKANTU__
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 FEMTemplate<Integ,Shape>::FEMTemplate(Mesh & mesh, UInt spatial_dimension,
 				      ID id, MemoryID memory_id) :
   FEM(mesh,spatial_dimension,id,memory_id),
   integrator(mesh, id, memory_id),
   shape_functions(mesh, id, memory_id)
 {
 }
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 FEMTemplate<Integ,Shape>::~FEMTemplate()
 {
 }
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 void FEMTemplate<Integ,Shape>::gradientOnQuadraturePoints(const Vector<Real> &u,
 							  Vector<Real> &nablauq,
 							  const UInt nb_degree_of_freedom,
 							  const ElementType & type,
 							  const GhostType & ghost_type,
 							  const Vector<UInt> * filter_elements) const {
   AKANTU_DEBUG_IN();
 
 #ifndef AKANTU_NDEBUG
 //   std::stringstream sstr; sstr << ghost_type;
 //   AKANTU_DEBUG_ASSERT(sstr.str() == nablauq.getTag(),
 // 		      "The vector " << nablauq.getID() << " is not taged " << ghost_type);
   UInt nb_element = mesh->getNbElement(type, ghost_type);
   if(filter_elements != NULL) nb_element = filter_elements->getSize();
 
   UInt element_dimension = mesh->getSpatialDimension(type);
   UInt nb_points         = shape_functions.getControlPoints(type, ghost_type).getSize();
 
   AKANTU_DEBUG_ASSERT(u.getSize() == mesh->getNbNodes(),
 		      "The vector u(" << u.getID()
 		      << ") has not the good size.");
   AKANTU_DEBUG_ASSERT(u.getNbComponent() == nb_degree_of_freedom ,
 		      "The vector u(" << u.getID()
 		      << ") has not the good number of component.");
 
   AKANTU_DEBUG_ASSERT(nablauq.getNbComponent()
 		      == nb_degree_of_freedom * element_dimension,
 		      "The vector nablauq(" << nablauq.getID()
 		      << ") has not the good number of component.");
 
   AKANTU_DEBUG_ASSERT(nablauq.getSize() == nb_element * nb_points,
 		      "The vector nablauq(" << nablauq.getID()
 		      << ") has not the good size.");
 #endif
 
 #define COMPUTE_GRADIENT(type)						\
     if (element_dimension == ElementClass<type>::getSpatialDimension()) \
       shape_functions.template gradientOnControlPoints<type>(u,		\
 							     nablauq,	\
 							     nb_degree_of_freedom, \
 							     ghost_type, \
 							     filter_elements);
     AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(COMPUTE_GRADIENT);
 #undef COMPUTE_GRADIENT
 
   AKANTU_DEBUG_OUT();
 }
 
-/* -------------------------------------------------------------------------- */
-template <>
-void FEMTemplate<IntegratorCohesive<IntegratorGauss>,ShapeCohesive<ShapeLagrange> >::
-					       initShapeFunctions(const GhostType & ghost_type) {
-  AKANTU_DEBUG_IN();
-
-  UInt spatial_dimension = mesh->getSpatialDimension();
-  Mesh::type_iterator it  = mesh->firstType(element_dimension, ghost_type, _ek_cohesive);
-  Mesh::type_iterator end = mesh->lastType(element_dimension, ghost_type, _ek_cohesive);
-  for(; it != end; ++it) {
-    ElementType type = *it;
-
-#define INIT_SHAPE_FUNCTIONS(type)					\
-    integrator.computeQuadraturePoints<type>(ghost_type);		\
-    integrator.								\
-      precomputeJacobiansOnQuadraturePoints<type>(ghost_type);		\
-    integrator.								\
-      checkJacobians<type>(ghost_type);					\
-    const Vector<Real> & control_points =				\
-      integrator.getQuadraturePoints<type>(ghost_type);			\
-    shape_functions.							\
-      setControlPointsByType<type>(control_points, ghost_type);		\
-    shape_functions.							\
-      precomputeShapesOnControlPoints<type>(ghost_type);		\
-    if (element_dimension == spatial_dimension)				\
-      shape_functions.							\
-     	precomputeShapeDerivativesOnControlPoints<type>(ghost_type);
-
-    AKANTU_BOOST_COHESIVE_ELEMENT_SWITCH(INIT_SHAPE_FUNCTIONS);
-#undef INIT_SHAPE_FUNCTIONS
-  }
-  AKANTU_DEBUG_OUT();
-}
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 void FEMTemplate<Integ,Shape>::initShapeFunctions(const GhostType & ghost_type) {
   AKANTU_DEBUG_IN();
 
   UInt spatial_dimension = mesh->getSpatialDimension();
   Mesh::type_iterator it  = mesh->firstType(element_dimension, ghost_type);
   Mesh::type_iterator end = mesh->lastType(element_dimension, ghost_type);
   for(; it != end; ++it) {
     ElementType type = *it;
 
 #define INIT_SHAPE_FUNCTIONS(type)					\
     integrator.template computeQuadraturePoints<type>(ghost_type);	\
     integrator.								\
       template precomputeJacobiansOnQuadraturePoints<type>(ghost_type);	\
     integrator.								\
       template checkJacobians<type>(ghost_type);			\
     const Vector<Real> & control_points =				\
       integrator.template getQuadraturePoints<type>(ghost_type);	\
     shape_functions.							\
       template setControlPointsByType<type>(control_points, ghost_type); \
     shape_functions.							\
       template precomputeShapesOnControlPoints<type>(ghost_type);	\
     if (element_dimension == spatial_dimension)				\
       shape_functions.							\
 	template precomputeShapeDerivativesOnControlPoints<type>(ghost_type);
 
     AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(INIT_SHAPE_FUNCTIONS);
 #undef INIT_SHAPE_FUNCTIONS
   }
   AKANTU_DEBUG_OUT();
 }
 
 
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 void FEMTemplate<Integ,Shape>::integrate(const Vector<Real> & f,
 				       Vector<Real> &intf,
 				       UInt nb_degree_of_freedom,
 				       const ElementType & type,
 				       const GhostType & ghost_type,
 				       const Vector<UInt> * filter_elements) const{
 
 #ifndef AKANTU_NDEBUG
 //   std::stringstream sstr; sstr << ghost_type;
 //   AKANTU_DEBUG_ASSERT(sstr.str() == nablauq.getTag(),
 // 		      "The vector " << nablauq.getID() << " is not taged " << ghost_type);
   UInt nb_element = mesh->getNbElement(type, ghost_type);
   if(filter_elements != NULL) nb_element = filter_elements->getSize();
 
   UInt nb_quadrature_points  = getNbQuadraturePoints(type);
 
   AKANTU_DEBUG_ASSERT(f.getSize() == nb_element * nb_quadrature_points,
 		      "The vector f(" << f.getID() << " size " << f.getSize()
 		      << ") has not the good size (" << nb_element << ").");
   AKANTU_DEBUG_ASSERT(f.getNbComponent() == nb_degree_of_freedom ,
 		      "The vector f(" << f.getID()
 		      << ") has not the good number of component.");
   AKANTU_DEBUG_ASSERT(intf.getNbComponent() == nb_degree_of_freedom,
 		      "The vector intf(" << intf.getID()
 		      << ") has not the good number of component.");
   AKANTU_DEBUG_ASSERT(intf.getSize() == nb_element,
 		      "The vector intf(" << intf.getID()
 		      << ") has not the good size.");
 #endif
 
 #define INTEGRATE(type)					    \
   integrator.template integrate<type>(f,		    \
 				      intf,		    \
 				      nb_degree_of_freedom, \
 				      ghost_type,	    \
 				      filter_elements);
 
     AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(INTEGRATE);
 #undef INTEGRATE
 }
 
 /* -------------------------------------------------------------------------- */
 
 
 template <typename Integ, typename Shape>
 Real FEMTemplate<Integ,Shape>::integrate(const Vector<Real> & f,
 				       const ElementType & type,
 				       const GhostType & ghost_type,
 				       const Vector<UInt> * filter_elements) const{
   AKANTU_DEBUG_IN();
 
 #ifndef AKANTU_NDEBUG
 //   std::stringstream sstr; sstr << ghost_type;
 //   AKANTU_DEBUG_ASSERT(sstr.str() == nablauq.getTag(),
 // 		      "The vector " << nablauq.getID() << " is not taged " << ghost_type);
   UInt nb_element = mesh->getNbElement(type, ghost_type);
   if(filter_elements != NULL) nb_element = filter_elements->getSize();
 
   UInt nb_quadrature_points  = getNbQuadraturePoints(type, ghost_type);
 
   AKANTU_DEBUG_ASSERT(f.getSize() == nb_element * nb_quadrature_points,
 		      "The vector f(" << f.getID()
 		      << ") has not the good size. (" << f.getSize() << "!=" << nb_quadrature_points * nb_element << ")");
   AKANTU_DEBUG_ASSERT(f.getNbComponent() == 1,
 		      "The vector f(" << f.getID()
 		      << ") has not the good number of component.");
 #endif
 
   Real integral = 0.;
 
 #define INTEGRATE(type)							\
   integral = integrator.template integrate<type>(f,			\
 						 ghost_type,		\
 						 filter_elements);
 
   AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(INTEGRATE);
 #undef INTEGRATE
 
   AKANTU_DEBUG_OUT();
   return integral;
 }
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 Real FEMTemplate<Integ,Shape>::integrate(const types::RVector & f,
 					 const ElementType & type,
-					 UInt index, 
+					 UInt index,
 					 const GhostType & ghost_type) const{
 
 
   Real res = 0.;
-  
+
 #define INTEGRATE(type)							\
   res = integrator.template integrate<type>(f,				\
 					    index,			\
 					    ghost_type);
-  
+
   AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(INTEGRATE);
 #undef INTEGRATE
-  
+
   return res;
 }
 
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 void FEMTemplate<Integ,Shape>::integrateOnQuadraturePoints(const Vector<Real> & f,
 							   Vector<Real> &intf,
 							   UInt nb_degree_of_freedom,
 							   const ElementType & type,
 							   const GhostType & ghost_type,
 							   const Vector<UInt> * filter_elements) const{
 
 #ifndef AKANTU_NDEBUG
 //   std::stringstream sstr; sstr << ghost_type;
 //   AKANTU_DEBUG_ASSERT(sstr.str() == nablauq.getTag(),
 // 		      "The vector " << nablauq.getID() << " is not taged " << ghost_type);
   UInt nb_element = mesh->getNbElement(type, ghost_type);
   if(filter_elements != NULL) nb_element = filter_elements->getSize();
 
   UInt nb_quadrature_points  = getNbQuadraturePoints(type);
 
   AKANTU_DEBUG_ASSERT(f.getSize() == nb_element * nb_quadrature_points,
 		      "The vector f(" << f.getID() << " size " << f.getSize()
 		      << ") has not the good size (" << nb_element << ").");
   AKANTU_DEBUG_ASSERT(f.getNbComponent() == nb_degree_of_freedom ,
 		      "The vector f(" << f.getID()
 		      << ") has not the good number of component.");
   AKANTU_DEBUG_ASSERT(intf.getNbComponent() == nb_degree_of_freedom,
 		      "The vector intf(" << intf.getID()
 		      << ") has not the good number of component.");
   AKANTU_DEBUG_ASSERT(intf.getSize() == nb_element * nb_quadrature_points,
 		      "The vector intf(" << intf.getID()
 		      << ") has not the good size.");
 #endif
 
 #define INTEGRATE(type)							\
   integrator.template integrateOnQuadraturePoints<type>(f,		\
 							intf,		\
 							nb_degree_of_freedom, \
 							ghost_type,	\
 							filter_elements);
 
     AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(INTEGRATE);
 #undef INTEGRATE
 }
 
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 void FEMTemplate<Integ,Shape>::interpolateOnQuadraturePoints(const Vector<Real> &u,
 							   Vector<Real> &uq,
 							   UInt nb_degree_of_freedom,
 							   const ElementType & type,
 							   const GhostType & ghost_type,
 							   const Vector<UInt> * filter_elements) const{
 
   AKANTU_DEBUG_IN();
 
 
 #ifndef AKANTU_NDEBUG
 //   std::stringstream sstr; sstr << ghost_type;
 //   AKANTU_DEBUG_ASSERT(sstr.str() == nablauq.getTag(),
 // 		      "The vector " << nablauq.getID() << " is not taged " << ghost_type);
   UInt nb_element = mesh->getNbElement(type, ghost_type);
   if(filter_elements != NULL) nb_element = filter_elements->getSize();
 
   UInt nb_points         = shape_functions.getControlPoints(type, ghost_type).getSize();
 
   AKANTU_DEBUG_ASSERT(u.getSize() == mesh->getNbNodes(),
 		      "The vector u(" << u.getID()
 		      << ") has not the good size.");
   AKANTU_DEBUG_ASSERT(u.getNbComponent() == nb_degree_of_freedom ,
 		      "The vector u(" << u.getID()
 		      << ") has not the good number of component.");
 
   AKANTU_DEBUG_ASSERT(uq.getNbComponent() == nb_degree_of_freedom,
 		      "The vector uq(" << uq.getID()
 		      << ") has not the good number of component.");
   AKANTU_DEBUG_ASSERT(uq.getSize() == nb_element * nb_points,
 		      "The vector uq(" << uq.getID()
 		      << ") has not the good size.");
 #endif
 
 
 #define INTERPOLATE(type)						\
   shape_functions.template interpolateOnControlPoints<type>(u,		\
 							    uq,		\
 							    nb_degree_of_freedom, \
 							    ghost_type, \
 							    filter_elements);
 
   AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(INTERPOLATE);
 #undef INTERPOLATE
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 void FEMTemplate<Integ,Shape>::computeNormalsOnControlPoints(const GhostType & ghost_type) {
   AKANTU_DEBUG_IN();
 
   computeNormalsOnControlPoints(mesh->getNodes(),
 				ghost_type);
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 void FEMTemplate<Integ,Shape>::computeNormalsOnControlPoints(const Vector<Real> & field,
 							     const GhostType & ghost_type) {
   AKANTU_DEBUG_IN();
 
   if (ghost_type == _ghost) { AKANTU_DEBUG_TO_IMPLEMENT(); }
 
   //  Real * coord = mesh->getNodes().values;
   UInt spatial_dimension = mesh->getSpatialDimension();
 
   //allocate the normal arrays
   mesh->initByElementTypeVector(normals_on_quad_points, spatial_dimension, element_dimension);
 
   //loop over the type to build the normals
   Mesh::type_iterator it  = mesh->firstType(element_dimension, ghost_type);
   Mesh::type_iterator end = mesh->lastType(element_dimension, ghost_type);
   for(; it != end; ++it) {
     Vector<Real> & normals_on_quad = normals_on_quad_points(*it, ghost_type);
     computeNormalsOnControlPoints(field, normals_on_quad, *it, ghost_type);
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 void FEMTemplate<Integ,Shape>::computeNormalsOnControlPoints(const Vector<Real> & field,
 							     Vector<Real> & normal,
 							     const ElementType & type,
 							     const GhostType & ghost_type) const {
   AKANTU_DEBUG_IN();
 
   if (ghost_type == _ghost) { AKANTU_DEBUG_TO_IMPLEMENT(); }
 
   UInt spatial_dimension = mesh->getSpatialDimension();
   UInt nb_nodes_per_element           = Mesh::getNbNodesPerElement(type);
   UInt nb_quad_points = getQuadraturePoints(type, ghost_type).getSize();
   UInt * elem_val = mesh->getConnectivity(type, ghost_type).storage();
   UInt nb_element = mesh->getConnectivity(type, ghost_type).getSize();
 
   normal.resize(nb_element * nb_quad_points);
   Real * normals_on_quad_val  =  normal.storage();
 
     /* ---------------------------------------------------------------------- */
 #define COMPUTE_NORMALS_ON_QUAD(type)					\
   do {									\
     const Vector<Real> & quads =					\
       integrator. template getQuadraturePoints<type>(ghost_type);	\
     UInt nb_points = quads.getSize();					\
     Real local_coord[spatial_dimension * nb_nodes_per_element];		\
     for (UInt elem = 0; elem < nb_element; ++elem) {			\
       mesh->extractNodalValuesFromElement(field,			\
 					  local_coord,			\
 					  elem_val+elem*nb_nodes_per_element, \
 					  nb_nodes_per_element,		\
 					  spatial_dimension);		\
       									\
       ElementClass<type>::computeNormalsOnQuadPoint(local_coord,	\
 						    spatial_dimension,	\
 						    normals_on_quad_val); \
       normals_on_quad_val += spatial_dimension*nb_points;	 	\
     }									\
   } while(0)
   /* ---------------------------------------------------------------------- */
 
   AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(COMPUTE_NORMALS_ON_QUAD);
 #undef COMPUTE_NORMALS_ON_QUAD
 
   AKANTU_DEBUG_OUT();
 }
 
 
-/* -------------------------------------------------------------------------- */
-/* compatibility functions */
-/* -------------------------------------------------------------------------- */
-
-template <>
-inline UInt FEMTemplate<IntegratorCohesive<IntegratorGauss>,ShapeCohesive<ShapeLagrange> >
-::getNbQuadraturePoints(const ElementType & type,
-			const GhostType & ghost_type) const {
-  AKANTU_DEBUG_IN();
-
-  UInt nb_quad_points = 0;
-
-#define GET_NB_QUAD(type)						\
-  nb_quad_points =							\
-    integrator. getQuadraturePoints<type>(ghost_type).getSize();
-
-  //  AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(GET_NB_QUAD);
-  AKANTU_BOOST_COHESIVE_ELEMENT_SWITCH(GET_NB_QUAD);
-#undef GET_NB_QUAD
-
-  AKANTU_DEBUG_OUT();
-  return nb_quad_points;
-}
-
-/* -------------------------------------------------------------------------- */
-
-template <>
-Real FEMTemplate<IntegratorCohesive<IntegratorGauss>,ShapeCohesive<ShapeLagrange> >::integrate(const Vector<Real> & f,
-											       const ElementType & type,
-											       const GhostType & ghost_type,
-											       const Vector<UInt> * filter_elements) const{
-  AKANTU_DEBUG_IN();
-
-#ifndef AKANTU_NDEBUG
-//   std::stringstream sstr; sstr << ghost_type;
-//   AKANTU_DEBUG_ASSERT(sstr.str() == nablauq.getTag(),
-// 		      "The vector " << nablauq.getID() << " is not taged " << ghost_type);
-  UInt nb_element = mesh->getNbElement(type, ghost_type);
-  if(filter_elements != NULL) nb_element = filter_elements->getSize();
-
-  UInt nb_quadrature_points  = getNbQuadraturePoints(type);
-
-  AKANTU_DEBUG_ASSERT(f.getSize() == nb_element * nb_quadrature_points,
-		      "The vector f(" << f.getID()
-		      << ") has not the good size.");
-  AKANTU_DEBUG_ASSERT(f.getNbComponent() == 1,
-		      "The vector f(" << f.getID()
-		      << ") has not the good number of component.");
-#endif
-
-  Real integral = 0.;
-
-#define INTEGRATE(type)							\
-  integral = integrator. integrate<type>(f,				\
-						 ghost_type,		\
-						 filter_elements);
-
-  AKANTU_BOOST_COHESIVE_ELEMENT_SWITCH(INTEGRATE);
-#undef INTEGRATE
-
-  AKANTU_DEBUG_OUT();
-  return integral;
-}
-
-/* -------------------------------------------------------------------------- */
-template <>
-void FEMTemplate<IntegratorCohesive<IntegratorGauss>,ShapeCohesive<ShapeLagrange> >
-::integrate(const Vector<Real> & f,
-	    Vector<Real> &intf,
-	    UInt nb_degree_of_freedom,
-	    const ElementType & type,
-	    const GhostType & ghost_type,
-	    const Vector<UInt> * filter_elements) const{
-
-#ifndef AKANTU_NDEBUG
-//   std::stringstream sstr; sstr << ghost_type;
-//   AKANTU_DEBUG_ASSERT(sstr.str() == nablauq.getTag(),
-// 		      "The vector " << nablauq.getID() << " is not taged " << ghost_type);
-  UInt nb_element = mesh->getNbElement(type, ghost_type);
-  if(filter_elements != NULL) nb_element = filter_elements->getSize();
-
-  UInt nb_quadrature_points  = getNbQuadraturePoints(type);
-
-  AKANTU_DEBUG_ASSERT(f.getSize() == nb_element * nb_quadrature_points,
-		      "The vector f(" << f.getID() << " size " << f.getSize()
-		      << ") has not the good size (" << nb_element << ").");
-  AKANTU_DEBUG_ASSERT(f.getNbComponent() == nb_degree_of_freedom ,
-		      "The vector f(" << f.getID()
-		      << ") has not the good number of component.");
-  AKANTU_DEBUG_ASSERT(intf.getNbComponent() == nb_degree_of_freedom,
-		      "The vector intf(" << intf.getID()
-		      << ") has not the good number of component.");
-  AKANTU_DEBUG_ASSERT(intf.getSize() == nb_element,
-		      "The vector intf(" << intf.getID()
-		      << ") has not the good size.");
-#endif
-
-#define INTEGRATE(type)					    \
-  integrator. integrate<type>(f,			    \
-			      intf,			    \
-			      nb_degree_of_freedom,	    \
-			      ghost_type,		    \
-			      filter_elements);
-
-  //    AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(INTEGRATE);
-  AKANTU_BOOST_COHESIVE_ELEMENT_SWITCH(INTEGRATE);
-#undef INTEGRATE
-}
-
-
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 inline UInt FEMTemplate<Integ,Shape>::getNbQuadraturePoints(const ElementType & type,
 							    const GhostType & ghost_type) const {
   AKANTU_DEBUG_IN();
 
   UInt nb_quad_points = 0;
 
 #define GET_NB_QUAD(type)						\
   nb_quad_points =							\
     integrator. template getQuadraturePoints<type>(ghost_type).getSize();
 
   AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(GET_NB_QUAD);
 #undef GET_NB_QUAD
 
   AKANTU_DEBUG_OUT();
   return nb_quad_points;
 }
 
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 inline const Vector<Real> & FEMTemplate<Integ,Shape>::getShapes(const ElementType & type,
 								const GhostType & ghost_type) const {
   AKANTU_DEBUG_IN();
   const Vector<Real> * ret = NULL;
 
 #define GET_SHAPES(type)						\
   ret = &(shape_functions.getShapes(type, ghost_type));
 
   AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(GET_SHAPES);
 #undef GET_SHAPES
 
   AKANTU_DEBUG_OUT();
   return *ret;
 }
-/* -------------------------------------------------------------------------- */
-template <>
-inline const Vector<Real> & FEMTemplate<IntegratorCohesive<IntegratorGauss>,ShapeCohesive<ShapeLagrange> >
-::getShapes(const ElementType & type,
-	    const GhostType & ghost_type) const {
-  AKANTU_DEBUG_IN();
-  const Vector<Real> * ret = NULL;
-
-#define GET_SHAPES(type)						\
-  ret = &(shape_functions.getShapes(type, ghost_type));
-
-  //  AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(GET_SHAPES);
-  AKANTU_BOOST_COHESIVE_ELEMENT_SWITCH(GET_SHAPES);
-#undef GET_SHAPES
-
-  AKANTU_DEBUG_OUT();
-  return *ret;
-}
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 inline const Vector<Real> & FEMTemplate<Integ,Shape>::getShapesDerivatives(const ElementType & type,
 									   const GhostType & ghost_type,
 									   __attribute__((unused)) UInt id) const {
   AKANTU_DEBUG_IN();
   const Vector<Real> * ret = NULL;
 
 #define GET_SHAPES(type)						\
   ret = &(shape_functions.getShapesDerivatives(type, ghost_type));
 
   AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(GET_SHAPES);
 #undef GET_SHAPES
 
   AKANTU_DEBUG_OUT();
   return *ret;
 }
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 inline const Vector<Real> & FEMTemplate<Integ,Shape>::getQuadraturePoints(const ElementType & type,
 									  const GhostType & ghost_type) const {
   AKANTU_DEBUG_IN();
   const Vector<Real> * ret = NULL;
 
 #define GET_QUADS(type)						\
   ret = &(integrator. template getQuadraturePoints<type>(ghost_type));
 
   AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(GET_QUADS);
 #undef GET_QUADS
 
     AKANTU_DEBUG_OUT();
   return *ret;
 }
 
 
 /* -------------------------------------------------------------------------- */
 /* Matrix lumping functions                                                   */
 /* -------------------------------------------------------------------------- */
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 void FEMTemplate<Integ,Shape>::assembleFieldLumped(const Vector<Real> & field_1,
 						   UInt nb_degree_of_freedom,
 						   Vector<Real> & lumped,
 						   const Vector<Int> & equation_number,
 						   ElementType type,
 						   const GhostType & ghost_type) const {
   AKANTU_DEBUG_IN();
 
 #define ASSEMBLE_LUMPED(type)					\
   assembleLumpedTemplate<type>(field_1, nb_degree_of_freedom,lumped, equation_number,ghost_type)
 
   AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(ASSEMBLE_LUMPED);;
 
 #undef ASSEMBLE_LUMPED
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 template <>
 inline const Vector<Real> &
 FEMTemplate<IntegratorGauss, ShapeLinked>::getShapesDerivatives(const ElementType & type,
 								const GhostType & ghost_type,
 								UInt id) const {
   AKANTU_DEBUG_IN();
   const Vector<Real> * ret = NULL;
 
 #define GET_SHAPES(type)						\
   ret = &(shape_functions.getShapesDerivatives(type, ghost_type, id));
 
   AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(GET_SHAPES);
 #undef GET_SHAPES
 
   AKANTU_DEBUG_OUT();
   return *ret;
 }
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 void FEMTemplate<Integ,Shape>::assembleFieldMatrix(const Vector<Real> & field_1,
 						   UInt nb_degree_of_freedom,
 						   SparseMatrix & matrix,
 						   ElementType type,
 						   const GhostType & ghost_type) const {
   AKANTU_DEBUG_IN();
 
 #define ASSEMBLE_MATRIX(type)					\
   assembleFieldMatrix<type>(field_1, nb_degree_of_freedom,	\
 			    matrix,				\
 			    ghost_type)
 
   AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(ASSEMBLE_MATRIX);;
 
 #undef ASSEMBLE_MATRIX
 
   AKANTU_DEBUG_OUT();
 }
 
 
 
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 template <ElementType type>
 void FEMTemplate<Integ,Shape>::assembleLumpedTemplate(const Vector<Real> & field_1,
 						      UInt nb_degree_of_freedom,
 						      Vector<Real> & lumped,
 						      const Vector<Int> & equation_number,
 						      const GhostType & ghost_type) const {
   this->template assembleLumpedRowSum<type>(field_1, nb_degree_of_freedom,lumped, equation_number,ghost_type);
 }
 
 /* -------------------------------------------------------------------------- */
 //template <typename Integ, typename Shape>
 template <>
 template <>
 void FEMTemplate<IntegratorGauss,ShapeLagrange>::
 assembleLumpedTemplate<_triangle_6>(const Vector<Real> & field_1,
 				    UInt nb_degree_of_freedom,
 				    Vector<Real> & lumped,
 				    const Vector<Int> & equation_number,
 				    const GhostType & ghost_type) const {
   assembleLumpedDiagonalScaling<_triangle_6>(field_1, nb_degree_of_freedom,lumped, equation_number,ghost_type);
 }
 
 /* -------------------------------------------------------------------------- */
 template <>
 template <>
 void FEMTemplate<IntegratorGauss,ShapeLagrange>::
 assembleLumpedTemplate<_tetrahedron_10>(const Vector<Real> & field_1,
 					UInt nb_degree_of_freedom,
 					Vector<Real> & lumped,
 					const Vector<Int> & equation_number,
 					const GhostType & ghost_type) const {
   assembleLumpedDiagonalScaling<_tetrahedron_10>(field_1, nb_degree_of_freedom,lumped, equation_number,ghost_type);
 }
 
 /* -------------------------------------------------------------------------- */
 template <>
 template <>
 void
 FEMTemplate<IntegratorGauss,ShapeLagrange>::assembleLumpedTemplate<_quadrangle_8>(const Vector<Real> & field_1,
 										  UInt nb_degree_of_freedom,
 										  Vector<Real> & lumped,
 										  const Vector<Int> & equation_number,
 										  const GhostType & ghost_type) const {
   assembleLumpedDiagonalScaling<_quadrangle_8>(field_1, nb_degree_of_freedom,lumped, equation_number, ghost_type);
 }
 
 
 /* -------------------------------------------------------------------------- */
 /**
  * @f$ \tilde{M}_{i} = \sum_j M_{ij} = \sum_j \int \rho \varphi_i \varphi_j dV = \int \rho \varphi_i dV @f$
  */
 template <typename Integ, typename Shape>
 template <ElementType type>
 void FEMTemplate<Integ,Shape>::assembleLumpedRowSum(const Vector<Real> & field_1,
 						    UInt nb_degree_of_freedom,
 						    Vector<Real> & lumped,
 						    const Vector<Int> & equation_number,
 						    const GhostType & ghost_type) const {
   AKANTU_DEBUG_IN();
 
   UInt shapes_size = ElementClass<type>::getShapeSize();
 
   Vector<Real> * field_times_shapes = new Vector<Real>(0, 1);//shapes_size);
   shape_functions.template fieldTimesShapes<type>(field_1, *field_times_shapes, ghost_type);
 
   UInt nb_element = mesh->getNbElement(type, ghost_type);
   Vector<Real> * int_field_times_shapes = new Vector<Real>(nb_element, shapes_size,
 							   "inte_rho_x_shapes");
   integrator.template integrate<type>(*field_times_shapes, *int_field_times_shapes,
 				      shapes_size, ghost_type, NULL);
   delete field_times_shapes;
 
   int_field_times_shapes->extendComponentsInterlaced(nb_degree_of_freedom,1);
   assembleVector(*int_field_times_shapes, lumped, equation_number,nb_degree_of_freedom, type, ghost_type);
   delete int_field_times_shapes;
 
   AKANTU_DEBUG_OUT();
 }
 
 
 /* -------------------------------------------------------------------------- */
 /**
  * @f$ \tilde{M}_{i} = c * M_{ii} = \int_{V_e} \rho dV @f$
  */
 template <typename Integ, typename Shape>
 template <ElementType type>
 void FEMTemplate<Integ,Shape>::assembleLumpedDiagonalScaling(const Vector<Real> & field_1,
 							     UInt nb_degree_of_freedom,
 							     Vector<Real> & lumped,
 							     const Vector<Int> & equation_number,
 							     const GhostType & ghost_type) const {
   AKANTU_DEBUG_IN();
 
   UInt nb_nodes_per_element_p1 = Mesh::getNbNodesPerElement(Mesh::getP1ElementType(type));
   UInt nb_nodes_per_element    = Mesh::getNbNodesPerElement(type);
   UInt nb_quadrature_points    = integrator.template getQuadraturePoints<type>(ghost_type).getSize();
 
   UInt nb_element = field_1.getSize() / nb_quadrature_points;
 
   Real corner_factor = 0;
   Real mid_factor    = 0;
 
   if(type == _triangle_6) {
     corner_factor = 1./12.;
     mid_factor    = 1./4.;
   }
 
   if (type == _tetrahedron_10) {
     corner_factor = 1./32.;
     mid_factor    = 7./48.;
   }
 
   if (type == _quadrangle_8) {
     corner_factor = 1./36.;
     mid_factor    = 8./36.;
   }
 
 
   if (nb_element == 0) {
     AKANTU_DEBUG_OUT();
     return;
   }
 
   /// compute @f$ \int \rho dV = \rho V @f$ for each element
   Vector<Real> * int_field_1 = new Vector<Real>(field_1.getSize(), 1,
 					      "inte_rho_x_1");
   integrator.template integrate<type>(field_1, *int_field_1, 1, ghost_type, NULL);
 
   /// distribute the mass of the element to the nodes
   Vector<Real> * lumped_per_node = new Vector<Real>(nb_element, nb_nodes_per_element, "mass_per_node");
   Real * int_field_1_val = int_field_1->values;
   Real * lumped_per_node_val = lumped_per_node->values;
 
   for (UInt e = 0; e < nb_element; ++e) {
     Real lmass = *int_field_1_val * corner_factor;
     for (UInt n = 0; n < nb_nodes_per_element_p1; ++n)
       *lumped_per_node_val++ = lmass; /// corner points
 
     lmass = *int_field_1_val * mid_factor;
     for (UInt n = nb_nodes_per_element_p1; n < nb_nodes_per_element; ++n)
       *lumped_per_node_val++ = lmass; /// mid points
 
     int_field_1_val++;
   }
   delete int_field_1;
 
   lumped_per_node->extendComponentsInterlaced(nb_degree_of_freedom,1);
   assembleVector(*lumped_per_node, lumped, equation_number, nb_degree_of_freedom, type, ghost_type);
   delete lumped_per_node;
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 /**
  * @f$ \tilde{M}_{i} = \sum_j M_{ij} = \sum_j \int \rho \varphi_i \varphi_j dV = \int \rho \varphi_i dV @f$
  */
 template <typename Integ, typename Shape>
 template <ElementType type>
 void FEMTemplate<Integ,Shape>::assembleFieldMatrix(const Vector<Real> & field_1,
 						   UInt nb_degree_of_freedom,
 						   SparseMatrix & matrix,
 						   const GhostType & ghost_type) const {
   AKANTU_DEBUG_IN();
 
   UInt vect_size   = field_1.getSize();
   UInt shapes_size = ElementClass<type>::getShapeSize();
   UInt lmat_size   = nb_degree_of_freedom * shapes_size;
 
   const Vector<Real> & shapes = shape_functions.getShapes(type,ghost_type);
   Vector<Real> * modified_shapes = new Vector<Real>(vect_size, lmat_size * nb_degree_of_freedom);
   modified_shapes->clear();
   Vector<Real> * local_mat = new Vector<Real>(vect_size, lmat_size * lmat_size);
 
   Vector<Real>::iterator<types::RMatrix> shape_vect  = modified_shapes->begin(nb_degree_of_freedom, lmat_size);
   Real * sh  = shapes.values;
   for(UInt q = 0; q < vect_size; ++q) {
     Real * msh = shape_vect->storage();
     for (UInt d = 0; d < nb_degree_of_freedom; ++d) {
       Real * msh_tmp = msh + d * (lmat_size + 1);
       for (UInt s = 0; s < shapes_size; ++s) {
 	*msh_tmp = sh[s];
 	msh_tmp += nb_degree_of_freedom;
       }
     }
     ++shape_vect;
     sh += shapes_size;
   }
 
   shape_vect  = modified_shapes->begin(nb_degree_of_freedom, lmat_size);
   Vector<Real>::iterator<types::RMatrix> lmat = local_mat->begin(lmat_size, lmat_size);
   Real * field_val = field_1.values;
 
   for(UInt q = 0; q < vect_size; ++q) {
     (*lmat).mul<true, false>(*shape_vect, *shape_vect, *field_val);
     ++lmat; ++shape_vect; ++field_val;
   }
 
   delete modified_shapes;
 
   UInt nb_element = mesh->getNbElement(type, ghost_type);
   Vector<Real> * int_field_times_shapes = new Vector<Real>(nb_element, lmat_size * lmat_size,
 							   "inte_rho_x_shapes");
   integrator.template integrate<type>(*local_mat, *int_field_times_shapes,
 				      lmat_size * lmat_size, ghost_type, NULL);
   delete local_mat;
 
   assembleMatrix(*int_field_times_shapes, matrix, nb_degree_of_freedom, type, ghost_type);
   delete int_field_times_shapes;
 
   AKANTU_DEBUG_OUT();
 }
 
-
-/* -------------------------------------------------------------------------- */
-template <>
-void FEMTemplate< IntegratorCohesive<IntegratorGauss>, ShapeCohesive<ShapeLagrange> >::
-gradientOnQuadraturePoints(__attribute__((unused)) const Vector<Real> &u,
-			   __attribute__((unused)) Vector<Real> &nablauq,
-			   __attribute__((unused)) const UInt nb_degree_of_freedom,
-			   __attribute__((unused)) const ElementType & type,
-			   __attribute__((unused)) const GhostType & ghost_type,
-			   __attribute__((unused)) const Vector<UInt> * filter_elements) const {
-  AKANTU_DEBUG_TO_IMPLEMENT();
-}
-
 /* -------------------------------------------------------------------------- */
 /* template instanciation                                                     */
 /* -------------------------------------------------------------------------- */
-
 template class FEMTemplate<IntegratorGauss,ShapeLagrange>;
 template class FEMTemplate<IntegratorGauss,ShapeLinked>;
-template class FEMTemplate< IntegratorCohesive<IntegratorGauss>, ShapeCohesive<ShapeLagrange> >;
 
 __END_AKANTU__
diff --git a/src/fem/fem_template.hh b/src/fem/fem_template.hh
index c73a23ecd..596884eea 100644
--- a/src/fem/fem_template.hh
+++ b/src/fem/fem_template.hh
@@ -1,260 +1,262 @@
 /**
  * @file   fem_template.hh
  * @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
  * @date   Thu Feb 10 10:55:21 2011
  *
  * @brief  templated class that calls integration and shape objects
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 #ifndef __AKANTU_FEM_TEMPLATE_HH__
 #define __AKANTU_FEM_TEMPLATE_HH__
 
 /* -------------------------------------------------------------------------- */
 #include "fem.hh"
 #include "integrator.hh"
 #include "shape_functions.hh"
 #include "shape_lagrange.hh"
-#include "shape_cohesive.hh"
 #include "shape_linked.hh"
 #include "integrator_gauss.hh"
-#include "integrator_cohesive.hh"
 /* -------------------------------------------------------------------------- */
 
 __BEGIN_AKANTU__
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 class FEMTemplate : public FEM{
   /* ------------------------------------------------------------------------ */
   /* Constructors/Destructors                                                 */
   /* ------------------------------------------------------------------------ */
 public:
 
   FEMTemplate(Mesh & mesh, UInt spatial_dimension = 0,
 	      ID id = "fem", MemoryID memory_id = 0);
 
   virtual ~FEMTemplate();
 
   /* ------------------------------------------------------------------------ */
   /* Methods                                                                  */
   /* ------------------------------------------------------------------------ */
 public:
 
   /// pre-compute all the shape functions, their derivatives and the jacobians
   void initShapeFunctions(const GhostType & ghost_type = _not_ghost);
 
   /* ------------------------------------------------------------------------ */
   /* Integration method bridges                                               */
   /* ------------------------------------------------------------------------ */
 
   /// integrate f for all elements of type "type"
   void integrate(const Vector<Real> & f,
 		 Vector<Real> &intf,
 		 UInt nb_degree_of_freedom,
    		 const ElementType & type,
    		 const GhostType & ghost_type = _not_ghost,
    		 const Vector<UInt> * filter_elements = NULL) const;
 
   /// integrate a scalar value on all elements of type "type"
   Real integrate(const Vector<Real> & f,
    		 const ElementType & type,
    		 const GhostType & ghost_type = _not_ghost,
    		 const Vector<UInt> * filter_elements = NULL) const;
 
   /// integrate one element scalar value on all elements of type "type"
   virtual Real integrate(const types::RVector & f,
 			 const ElementType & type,
 			 UInt index, const GhostType & ghost_type = _not_ghost) const;
 
 
   /// integrate partially around a quadrature point (@f$ intf_q = f_q * J_q * w_q @f$)
   void integrateOnQuadraturePoints(const Vector<Real> & f,
 				   Vector<Real> &intf,
 				   UInt nb_degree_of_freedom,
 				   const ElementType & type,
 				   const GhostType & ghost_type = _not_ghost,
 				   const Vector<UInt> * filter_elements = NULL) const;
 
 
   /// get the number of quadrature points
   UInt getNbQuadraturePoints(const ElementType & type,
 			     const GhostType & ghost_type = _not_ghost) const;
 
   /// get shapes precomputed
   const Vector<Real> & getShapes(const ElementType & type,
 				 const GhostType & ghost_type = _not_ghost) const;
 
   /// get the derivatives of shapes
   const Vector<Real> & getShapesDerivatives(const ElementType & type,
 					    const GhostType & ghost_type = _not_ghost,
 					    UInt id=0) const;
 
   /// get quadrature points
   const Vector<Real> & getQuadraturePoints(const ElementType & type,
 					   const GhostType & ghost_type = _not_ghost) const;
 
 
   /* ------------------------------------------------------------------------ */
   /* Shape method bridges                                                     */
   /* ------------------------------------------------------------------------ */
 
 
   void gradientOnQuadraturePoints(const Vector<Real> &u,
 				  Vector<Real> &nablauq,
 				  const UInt nb_degree_of_freedom,
 				  const ElementType & type,
 				  const GhostType & ghost_type = _not_ghost,
 				  const Vector<UInt> * filter_elements = NULL) const;
 
   void interpolateOnQuadraturePoints(const Vector<Real> &u,
 				     Vector<Real> &uq,
 				     UInt nb_degree_of_freedom,
 				     const ElementType & type,
 				     const GhostType & ghost_type = _not_ghost,
 				     const Vector<UInt> * filter_elements = NULL) const;
 
   /// find natural coords from real coords provided an element
   void inverseMap(const types::RVector & real_coords,
 		  UInt element,
 		  const ElementType & type,
 		  types::RVector & natural_coords,
 		  const GhostType & ghost_type = _not_ghost) const;
 
   /// return true if the coordinates provided are inside the element, false otherwise
   inline bool contains(const types::RVector & real_coords,
 		       UInt element,
 		       const ElementType & type,
 		       const GhostType & ghost_type = _not_ghost) const;
 
   /// compute the shape on a provided point
   inline void computeShapes(const types::RVector & real_coords,
 			    UInt element,
 			    const ElementType & type,
 			    types::RVector & shapes,
 			    const GhostType & ghost_type = _not_ghost) const;
 
 
 
   /* ------------------------------------------------------------------------ */
   /* Other methods                                                            */
   /* ------------------------------------------------------------------------ */
 
   /// pre-compute normals on control points
   void computeNormalsOnControlPoints(const GhostType & ghost_type = _not_ghost);
   void computeNormalsOnControlPoints(const Vector<Real> & field,
 				     const GhostType & ghost_type = _not_ghost);
   void computeNormalsOnControlPoints(const Vector<Real> & field,
 				     Vector<Real> & normal,
 				     const ElementType & type,
 				     const GhostType & ghost_type = _not_ghost) const;
 
 
   /// function to print the contain of the class
   //  virtual void printself(std::ostream & stream, int indent = 0) const{};
 
   void assembleFieldLumped(const Vector<Real> & field_1,
 			   UInt nb_degree_of_freedom,
 			   Vector<Real> & lumped,
 			   const Vector<Int> & equation_number,
 			   ElementType type,
 			   const GhostType & ghost_type = _not_ghost) const;
 
   void assembleFieldMatrix(const Vector<Real> & field,
 			   UInt nb_degree_of_freedom,
 			   SparseMatrix & matrix,
 			   ElementType type,
 			   const GhostType & ghost_type = _not_ghost) const;
 
 
 private:
 
   template <ElementType type>
   void assembleLumpedTemplate(const Vector<Real> & field_1,
 			      UInt nb_degree_of_freedom,
 			      Vector<Real> & lumped,
 			      const Vector<Int> & equation_number,
 			      const GhostType & ghost_type) const;
 
   /// @f$ \tilde{M}_{i} = \sum_j M_{ij} = \sum_j \int \rho \varphi_i \varphi_j dV = \int \rho \varphi_i dV @f$
   template <ElementType type>
   void assembleLumpedRowSum(const Vector<Real> & field_1,
 			    UInt nb_degree_of_freedom,
 			    Vector<Real> & lumped,
 			    const Vector<Int> & equation_number,
 			    const GhostType & ghost_type) const;
 
   /// @f$ \tilde{M}_{i} = c * M_{ii} = \int_{V_e} \rho dV @f$
   template <ElementType type>
   void assembleLumpedDiagonalScaling(const Vector<Real> & field_1,
 				     UInt nb_degree_of_freedom,
 				     Vector<Real> & lumped,
 				     const Vector<Int> & equation_number,
 				     const GhostType & ghost_type) const;
 
   template <ElementType type>
   void assembleFieldMatrix(const Vector<Real> & field,
 			   UInt nb_degree_of_freedom,
 			   SparseMatrix & matrix,
 			   const GhostType & ghost_type) const;
 
 
   /* ------------------------------------------------------------------------ */
   /* Accessors                                                                */
   /* ------------------------------------------------------------------------ */
 public:
 
   const ShapeFunctions & getShapeFunctionsInterface() const { return shape_functions; };
   const Shape & getShapeFunctions() const { return shape_functions; };
 
   const Integrator & getIntegratorInterface() const { return integrator; };
   const Integ & getIntegrator() const { return integrator; };
 
   /* ------------------------------------------------------------------------ */
   /* Class Members                                                            */
   /* ------------------------------------------------------------------------ */
 private:
 
   Integ integrator;
   Shape shape_functions;
 
 };
 
 
 /* -------------------------------------------------------------------------- */
 /* inline functions                                                           */
 /* -------------------------------------------------------------------------- */
 
 #include "fem_template_inline_impl.cc"
 
 /// standard output stream operator
 
 // inline std::ostream & operator <<(std::ostream & stream, const FEMTemplate & _this)
 // {
 //   _this.printself(stream);
 //   return stream;
 // }
 
 
 __END_AKANTU__
 
+#if defined(AKANTU_COHESIVE_ELEMENT)
+#  include "shape_cohesive.hh"
+#  include "integrator_cohesive.hh"
+#endif
 
 #endif /* __AKANTU_FEM_TEMPLATE_HH__ */
diff --git a/src/fem/fem_template_cohesive.cc b/src/fem/fem_template_cohesive.cc
new file mode 100644
index 000000000..6a3c64a5f
--- /dev/null
+++ b/src/fem/fem_template_cohesive.cc
@@ -0,0 +1,243 @@
+/**
+ * @file   fem_template_cohesive.cc
+ * @author Nicolas Richart <nicolas.richart@epfl.ch>
+ * @date   Wed Oct 31 09:06:00 2012
+ *
+ * @brief  Specialization for cohesive element
+ *
+ * @section LICENSE
+ *
+ * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
+ * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
+ *
+ * Akantu is free  software: you can redistribute it and/or  modify it under the
+ * terms  of the  GNU Lesser  General Public  License as  published by  the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
+ * details.
+ *
+ * You should  have received  a copy  of the GNU  Lesser General  Public License
+ * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+/* -------------------------------------------------------------------------- */
+#include "fem_template.hh"
+#include "shape_cohesive.hh"
+#include "integrator_cohesive.hh"
+
+/* -------------------------------------------------------------------------- */
+template <>
+inline void FEMTemplate<IntegratorCohesive<IntegratorGauss>,ShapeCohesive<ShapeLagrange> >
+::inverseMap(__attribute__((unused)) const types::RVector & real_coords,
+	     __attribute__((unused)) UInt element,
+	     __attribute__((unused)) const ElementType & type,
+	     __attribute__((unused)) types::RVector & natural_coords,
+	     __attribute__((unused)) const GhostType & ghost_type) const{
+  AKANTU_DEBUG_TO_IMPLEMENT();
+}
+
+/* -------------------------------------------------------------------------- */
+template <>
+inline bool FEMTemplate<IntegratorCohesive<IntegratorGauss>,ShapeCohesive<ShapeLagrange> >
+::contains(__attribute__((unused)) const types::RVector & real_coords,
+	   __attribute__((unused)) UInt element,
+	   __attribute__((unused)) const ElementType & type,
+	   __attribute__((unused)) const GhostType & ghost_type) const{
+
+  AKANTU_DEBUG_TO_IMPLEMENT();
+}
+
+/* -------------------------------------------------------------------------- */
+template <>
+inline void FEMTemplate<IntegratorCohesive<IntegratorGauss>,ShapeCohesive<ShapeLagrange> >
+::computeShapes(__attribute__((unused)) const types::RVector & real_coords,
+		__attribute__((unused)) UInt element,
+		__attribute__((unused)) const ElementType & type,
+		__attribute__((unused)) types::RVector & shapes,
+		__attribute__((unused)) const GhostType & ghost_type) const{
+  AKANTU_DEBUG_TO_IMPLEMENT();
+}
+
+
+/* -------------------------------------------------------------------------- */
+/* -------------------------------------------------------------------------- */
+template <>
+void FEMTemplate<IntegratorCohesive<IntegratorGauss>,ShapeCohesive<ShapeLagrange> >::
+					       initShapeFunctions(const GhostType & ghost_type) {
+  AKANTU_DEBUG_IN();
+
+  UInt spatial_dimension = mesh->getSpatialDimension();
+  Mesh::type_iterator it  = mesh->firstType(element_dimension, ghost_type, _ek_cohesive);
+  Mesh::type_iterator end = mesh->lastType(element_dimension, ghost_type, _ek_cohesive);
+  for(; it != end; ++it) {
+    ElementType type = *it;
+
+#define INIT_SHAPE_FUNCTIONS(type)					\
+    integrator.computeQuadraturePoints<type>(ghost_type);		\
+    integrator.								\
+      precomputeJacobiansOnQuadraturePoints<type>(ghost_type);		\
+    integrator.								\
+      checkJacobians<type>(ghost_type);					\
+    const Vector<Real> & control_points =				\
+      integrator.getQuadraturePoints<type>(ghost_type);			\
+    shape_functions.							\
+      setControlPointsByType<type>(control_points, ghost_type);		\
+    shape_functions.							\
+      precomputeShapesOnControlPoints<type>(ghost_type);		\
+    if (element_dimension == spatial_dimension)				\
+      shape_functions.							\
+     	precomputeShapeDerivativesOnControlPoints<type>(ghost_type);
+
+    AKANTU_BOOST_COHESIVE_ELEMENT_SWITCH(INIT_SHAPE_FUNCTIONS);
+#undef INIT_SHAPE_FUNCTIONS
+  }
+  AKANTU_DEBUG_OUT();
+}
+
+
+/* -------------------------------------------------------------------------- */
+/* compatibility functions */
+/* -------------------------------------------------------------------------- */
+template <>
+inline UInt FEMTemplate<IntegratorCohesive<IntegratorGauss>,ShapeCohesive<ShapeLagrange> >
+::getNbQuadraturePoints(const ElementType & type,
+			const GhostType & ghost_type) const {
+  AKANTU_DEBUG_IN();
+
+  UInt nb_quad_points = 0;
+
+#define GET_NB_QUAD(type)						\
+  nb_quad_points =							\
+    integrator. getQuadraturePoints<type>(ghost_type).getSize();
+
+  //  AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(GET_NB_QUAD);
+  AKANTU_BOOST_COHESIVE_ELEMENT_SWITCH(GET_NB_QUAD);
+#undef GET_NB_QUAD
+
+  AKANTU_DEBUG_OUT();
+  return nb_quad_points;
+}
+
+/* -------------------------------------------------------------------------- */
+template <>
+Real FEMTemplate<IntegratorCohesive<IntegratorGauss>,ShapeCohesive<ShapeLagrange> >::integrate(const Vector<Real> & f,
+											       const ElementType & type,
+											       const GhostType & ghost_type,
+											       const Vector<UInt> * filter_elements) const{
+  AKANTU_DEBUG_IN();
+
+#ifndef AKANTU_NDEBUG
+//   std::stringstream sstr; sstr << ghost_type;
+//   AKANTU_DEBUG_ASSERT(sstr.str() == nablauq.getTag(),
+// 		      "The vector " << nablauq.getID() << " is not taged " << ghost_type);
+  UInt nb_element = mesh->getNbElement(type, ghost_type);
+  if(filter_elements != NULL) nb_element = filter_elements->getSize();
+
+  UInt nb_quadrature_points  = getNbQuadraturePoints(type);
+
+  AKANTU_DEBUG_ASSERT(f.getSize() == nb_element * nb_quadrature_points,
+		      "The vector f(" << f.getID()
+		      << ") has not the good size.");
+  AKANTU_DEBUG_ASSERT(f.getNbComponent() == 1,
+		      "The vector f(" << f.getID()
+		      << ") has not the good number of component.");
+#endif
+
+  Real integral = 0.;
+
+#define INTEGRATE(type)							\
+  integral = integrator. integrate<type>(f,				\
+						 ghost_type,		\
+						 filter_elements);
+
+  AKANTU_BOOST_COHESIVE_ELEMENT_SWITCH(INTEGRATE);
+#undef INTEGRATE
+
+  AKANTU_DEBUG_OUT();
+  return integral;
+}
+
+/* -------------------------------------------------------------------------- */
+template <>
+void FEMTemplate<IntegratorCohesive<IntegratorGauss>,ShapeCohesive<ShapeLagrange> >
+::integrate(const Vector<Real> & f,
+	    Vector<Real> &intf,
+	    UInt nb_degree_of_freedom,
+	    const ElementType & type,
+	    const GhostType & ghost_type,
+	    const Vector<UInt> * filter_elements) const{
+
+#ifndef AKANTU_NDEBUG
+//   std::stringstream sstr; sstr << ghost_type;
+//   AKANTU_DEBUG_ASSERT(sstr.str() == nablauq.getTag(),
+// 		      "The vector " << nablauq.getID() << " is not taged " << ghost_type);
+  UInt nb_element = mesh->getNbElement(type, ghost_type);
+  if(filter_elements != NULL) nb_element = filter_elements->getSize();
+
+  UInt nb_quadrature_points  = getNbQuadraturePoints(type);
+
+  AKANTU_DEBUG_ASSERT(f.getSize() == nb_element * nb_quadrature_points,
+		      "The vector f(" << f.getID() << " size " << f.getSize()
+		      << ") has not the good size (" << nb_element << ").");
+  AKANTU_DEBUG_ASSERT(f.getNbComponent() == nb_degree_of_freedom ,
+		      "The vector f(" << f.getID()
+		      << ") has not the good number of component.");
+  AKANTU_DEBUG_ASSERT(intf.getNbComponent() == nb_degree_of_freedom,
+		      "The vector intf(" << intf.getID()
+		      << ") has not the good number of component.");
+  AKANTU_DEBUG_ASSERT(intf.getSize() == nb_element,
+		      "The vector intf(" << intf.getID()
+		      << ") has not the good size.");
+#endif
+
+#define INTEGRATE(type)					    \
+  integrator. integrate<type>(f,			    \
+			      intf,			    \
+			      nb_degree_of_freedom,	    \
+			      ghost_type,		    \
+			      filter_elements);
+
+  //    AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(INTEGRATE);
+  AKANTU_BOOST_COHESIVE_ELEMENT_SWITCH(INTEGRATE);
+#undef INTEGRATE
+}
+
+/* -------------------------------------------------------------------------- */
+template <>
+inline const Vector<Real> & FEMTemplate<IntegratorCohesive<IntegratorGauss>,ShapeCohesive<ShapeLagrange> >
+::getShapes(const ElementType & type,
+	    const GhostType & ghost_type) const {
+  AKANTU_DEBUG_IN();
+  const Vector<Real> * ret = NULL;
+
+#define GET_SHAPES(type)						\
+  ret = &(shape_functions.getShapes(type, ghost_type));
+
+  //  AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(GET_SHAPES);
+  AKANTU_BOOST_COHESIVE_ELEMENT_SWITCH(GET_SHAPES);
+#undef GET_SHAPES
+
+  AKANTU_DEBUG_OUT();
+  return *ret;
+}
+
+/* -------------------------------------------------------------------------- */
+template <>
+void FEMTemplate< IntegratorCohesive<IntegratorGauss>, ShapeCohesive<ShapeLagrange> >::
+gradientOnQuadraturePoints(__attribute__((unused)) const Vector<Real> &u,
+			   __attribute__((unused)) Vector<Real> &nablauq,
+			   __attribute__((unused)) const UInt nb_degree_of_freedom,
+			   __attribute__((unused)) const ElementType & type,
+			   __attribute__((unused)) const GhostType & ghost_type,
+			   __attribute__((unused)) const Vector<UInt> * filter_elements) const {
+  AKANTU_DEBUG_TO_IMPLEMENT();
+}
+
+/* -------------------------------------------------------------------------- */
+/* -------------------------------------------------------------------------- */
+template class FEMTemplate< IntegratorCohesive<IntegratorGauss>, ShapeCohesive<ShapeLagrange> >;
diff --git a/src/fem/fem_template_inline_impl.cc b/src/fem/fem_template_inline_impl.cc
index 2a960a684..6c5ba62b6 100644
--- a/src/fem/fem_template_inline_impl.cc
+++ b/src/fem/fem_template_inline_impl.cc
@@ -1,166 +1,126 @@
 /**
  * @file   fem_template_inline_impl.cc
  * @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
  * @date   Tue May 22 11:21:40 2012
  *
- * @brief  
+ * @brief
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 
 template <typename Integ, typename Shape>
 inline void FEMTemplate<Integ,Shape>::inverseMap(const types::RVector & real_coords,
 						 UInt element,
 						 const ElementType & type,
 						 types::RVector & natural_coords,
 						 const GhostType & ghost_type) const{
- 
+
   AKANTU_DEBUG_IN();
 
 #define INVERSE_MAP(type) \
   shape_functions.template inverseMap<type>(real_coords,element,natural_coords,ghost_type);
 
   AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(INVERSE_MAP);
 
 #undef INVERSE_MAP
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 
-template <>
-inline void FEMTemplate<IntegratorCohesive<IntegratorGauss>,ShapeCohesive<ShapeLagrange> >
-::inverseMap(__attribute__((unused)) const types::RVector & real_coords,
-	     __attribute__((unused)) UInt element,
-	     __attribute__((unused)) const ElementType & type,
-	     __attribute__((unused)) types::RVector & natural_coords,
-	     __attribute__((unused)) const GhostType & ghost_type) const{
-  AKANTU_DEBUG_TO_IMPLEMENT();
-}
-
-/* -------------------------------------------------------------------------- */
-
-template <>
-inline void FEMTemplate<IntegratorGauss,ShapeLinked >
-::inverseMap(__attribute__((unused)) const types::RVector & real_coords,
-	     __attribute__((unused)) UInt element,
-	     __attribute__((unused)) const ElementType & type,
-	     __attribute__((unused)) types::RVector & natural_coords,
-	     __attribute__((unused)) const GhostType & ghost_type) const{
-  
-  AKANTU_DEBUG_TO_IMPLEMENT();
-}
-
-/* -------------------------------------------------------------------------- */
-
 template <typename Integ, typename Shape>
 inline bool FEMTemplate<Integ,Shape>::contains(const types::RVector & real_coords,
 					       UInt element,
 					       const ElementType & type,
 					       const GhostType & ghost_type) const{
- 
+
   AKANTU_DEBUG_IN();
 
   bool contain = false;
 
 #define CONTAINS(type)							\
-  contain = shape_functions.template contains<type>(real_coords,element,ghost_type); 
-    
+  contain = shape_functions.template contains<type>(real_coords,element,ghost_type);
+
   AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(CONTAINS);
 
 #undef CONTAINS
 
   AKANTU_DEBUG_OUT();
   return contain;
 }
-/* -------------------------------------------------------------------------- */
-
-template <>
-inline bool FEMTemplate<IntegratorCohesive<IntegratorGauss>,ShapeCohesive<ShapeLagrange> >
-::contains(__attribute__((unused)) const types::RVector & real_coords,
-	   __attribute__((unused)) UInt element,
-	   __attribute__((unused)) const ElementType & type,
-	   __attribute__((unused)) const GhostType & ghost_type) const{
-  
-  AKANTU_DEBUG_TO_IMPLEMENT();
-}
-
-/* -------------------------------------------------------------------------- */
-
-template <>
-inline bool FEMTemplate<IntegratorGauss,ShapeLinked >
-::contains(__attribute__((unused)) const types::RVector & real_coords,
-	   __attribute__((unused)) UInt element,
-	   __attribute__((unused)) const ElementType & type,
-	   __attribute__((unused)) const GhostType & ghost_type) const{
-  
-  AKANTU_DEBUG_TO_IMPLEMENT();
-}
-
 
 /* -------------------------------------------------------------------------- */
 template <typename Integ, typename Shape>
 inline void FEMTemplate<Integ,Shape>::computeShapes(const types::RVector & real_coords,
 						    UInt element,
 						    const ElementType & type,
 						    types::RVector & shapes,
 						    const GhostType & ghost_type) const{
- 
+
   AKANTU_DEBUG_IN();
 
 #define COMPUTE_SHAPES(type) \
   shape_functions.template computeShapes<type>(real_coords,element,shapes,ghost_type);
 
   AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(COMPUTE_SHAPES);
 
 #undef COMPUTE_SHAPES
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
+template <>
+inline bool FEMTemplate<IntegratorGauss,ShapeLinked >
+::contains(__attribute__((unused)) const types::RVector & real_coords,
+	   __attribute__((unused)) UInt element,
+	   __attribute__((unused)) const ElementType & type,
+	   __attribute__((unused)) const GhostType & ghost_type) const{
 
+  AKANTU_DEBUG_TO_IMPLEMENT();
+}
+
+/* -------------------------------------------------------------------------- */
 template <>
-inline void FEMTemplate<IntegratorCohesive<IntegratorGauss>,ShapeCohesive<ShapeLagrange> >
+inline void FEMTemplate<IntegratorGauss,ShapeLinked >
 ::computeShapes(__attribute__((unused)) const types::RVector & real_coords,
 		__attribute__((unused)) UInt element,
 		__attribute__((unused)) const ElementType & type,
 		__attribute__((unused)) types::RVector & shapes,
 		__attribute__((unused)) const GhostType & ghost_type) const{
-  
   AKANTU_DEBUG_TO_IMPLEMENT();
 }
 
 /* -------------------------------------------------------------------------- */
-
 template <>
 inline void FEMTemplate<IntegratorGauss,ShapeLinked >
-::computeShapes(__attribute__((unused)) const types::RVector & real_coords,
-		__attribute__((unused)) UInt element,
-		__attribute__((unused)) const ElementType & type,
-		__attribute__((unused)) types::RVector & shapes,
-		__attribute__((unused)) const GhostType & ghost_type) const{
-  
+::inverseMap(__attribute__((unused)) const types::RVector & real_coords,
+	     __attribute__((unused)) UInt element,
+	     __attribute__((unused)) const ElementType & type,
+	     __attribute__((unused)) types::RVector & natural_coords,
+	     __attribute__((unused)) const GhostType & ghost_type) const{
+
   AKANTU_DEBUG_TO_IMPLEMENT();
 }
 
+/* -------------------------------------------------------------------------- */
diff --git a/src/fem/mesh.hh b/src/fem/mesh.hh
index b37520257..3f566a055 100644
--- a/src/fem/mesh.hh
+++ b/src/fem/mesh.hh
@@ -1,596 +1,599 @@
 /**
  * @file   mesh.hh
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Wed Jun 16 11:53:53 2010
  *
  * @brief  the class representing the meshes
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 #ifndef __AKANTU_MESH_HH__
 #define __AKANTU_MESH_HH__
 
 /* -------------------------------------------------------------------------- */
 #include "aka_common.hh"
 #include "aka_memory.hh"
 #include "aka_vector.hh"
 #include "element_class.hh"
 #include "by_element_type.hh"
 #include "aka_event_handler.hh"
 
 /* -------------------------------------------------------------------------- */
 #include <set>
 /* -------------------------------------------------------------------------- */
 
 __BEGIN_AKANTU__
 
 /* -------------------------------------------------------------------------- */
 /* Element                                                                    */
 /* -------------------------------------------------------------------------- */
 class Element {
 public:
   Element(ElementType type = _not_defined, UInt element = 0,
 	  GhostType ghost_type = _not_ghost, ElementKind kind = _ek_regular) :
     type(type), element(element),
     ghost_type(ghost_type), kind(kind) {};
 
   Element(const Element & element) {
     this->type    = element.type;
     this->element = element.element;
     this->ghost_type = element.ghost_type;
     this->kind = element.kind;
   }
 
   inline bool operator==(const Element & elem) const {
     return ((element == elem.element)
 	    && (type == elem.type)
 	    && (ghost_type == elem.ghost_type)
 	    && (kind == elem.kind));
   }
 
   inline bool operator!=(const Element & elem) const {
     return ((element != elem.element)
 	    || (type != elem.type)
 	    || (ghost_type != elem.ghost_type)
 	    || (kind != elem.kind));
   }
 
   bool operator<(const Element& rhs) const {
     bool res = ((this->kind < rhs.kind) ||
 		((this->kind == rhs.kind) &&
 		 ((this->ghost_type < rhs.ghost_type) ||
 		  ((this->ghost_type == rhs.ghost_type) &&
 		   ((this->type < rhs.type) ||
 		    ((this->type == rhs.type) &&
 		     (this->element < rhs.element)))))));
     return res;
   }
 
   virtual ~Element() {};
 
   /// function to print the containt of the class
   virtual void printself(std::ostream & stream, int indent = 0) const;
 public:
   ElementType type;
   UInt element;
   GhostType ghost_type;
   ElementKind kind;
 };
 
 struct CompElementLess {
   bool operator() (const Element& lhs, const Element& rhs) const {
     return lhs < rhs;
   }
 };
 
 extern const Element ElementNull;
 
 
 
 /* -------------------------------------------------------------------------- */
 /* -------------------------------------------------------------------------- */
 /* Mesh modifications events                                              */
 /* -------------------------------------------------------------------------- */
 template<class Entity>
 class MeshEvent {
 public:
   const Vector<Entity> & getList() const { return list; }
   Vector<Entity> & getList() { return list; }
 protected:
   Vector<Entity> list;
 };
 
 
 
 class Mesh;
 
 class NewNodesEvent : public MeshEvent<UInt> { };
 class RemovedNodesEvent : public MeshEvent<UInt> {
 public:
   inline RemovedNodesEvent(const Mesh & mesh);
   AKANTU_GET_MACRO_NOT_CONST(NewNumbering, new_numbering, Vector<UInt> &);
   AKANTU_GET_MACRO(NewNumbering, new_numbering, const Vector<UInt> &);
 private:
   Vector<UInt> new_numbering;
 };
 
 class NewElementsEvent : public MeshEvent<Element> { };
 class RemovedElementsEvent : public MeshEvent<Element> {
 public:
   inline RemovedElementsEvent(const Mesh & mesh);
   AKANTU_GET_MACRO(NewNumbering, new_numbering, const ByElementTypeUInt &);
   AKANTU_GET_MACRO_NOT_CONST(NewNumbering, new_numbering, ByElementTypeUInt &);
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE(NewNumbering, new_numbering, UInt);
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE_CONST(NewNumbering, new_numbering, UInt);
 protected:
   ByElementTypeUInt new_numbering;
 };
 
 /* -------------------------------------------------------------------------- */
 
 class MeshEventHandler {
 public:
   virtual ~MeshEventHandler() {};
   /* ------------------------------------------------------------------------ */
   /* Internal code                                                            */
   /* ------------------------------------------------------------------------ */
-public:
+protected:
   inline void sendEvent(const NewNodesEvent & event)     { onNodesAdded  (event.getList()); }
   inline void sendEvent(const RemovedNodesEvent & event) { onNodesRemoved(event.getList(),
 									  event.getNewNumbering()); }
 
   inline void sendEvent(const NewElementsEvent & event)     { onElementsAdded  (event.getList()); }
   inline void sendEvent(const RemovedElementsEvent & event) { onElementsRemoved(event.getList(),
 										event.getNewNumbering()); }
 
+  template<class EventHandler>
+  friend class EventHandlerManager;
+
   /* ------------------------------------------------------------------------ */
   /* Interface                                                                */
   /* ------------------------------------------------------------------------ */
 public:
   virtual void onNodesAdded  (__attribute__((unused)) const Vector<UInt> & nodes_list) {  }
   virtual void onNodesRemoved(__attribute__((unused)) const Vector<UInt> & nodes_list,
 			      __attribute__((unused)) const Vector<UInt> & new_numbering) {  }
 
 
   virtual void onElementsAdded  (__attribute__((unused)) const Vector<Element> & elements_list) { }
   virtual void onElementsRemoved(__attribute__((unused)) const Vector<Element> & elements_list,
 				 __attribute__((unused)) const ByElementTypeUInt & new_numbering) { }
 };
 
 /* -------------------------------------------------------------------------- */
 /* Mesh                                                                       */
 /* -------------------------------------------------------------------------- */
 
 /**
  * @class  Mesh this  contain the  coordinates of  the nodes  in  the Mesh.nodes
  * Vector,  and the  connectivity. The  connectivity  are stored  in by  element
  * types.
  *
  * To  know  all  the  element  types   present  in  a  mesh  you  can  get  the
  * Mesh::ConnectivityTypeList
  *
  * In order to loop on all element you have to loop on all types like this :
  * @code
   Mesh::type_iterator it = mesh.firstType(dim, ghost_type);
   Mesh::type_iterator end = mesh.lastType(dim, ghost_type);
 
   for(; it != end; ++it) {
     UInt nb_element  = mesh.getNbElement(*it);
     const Vector<UInt> & conn = mesh.getConnectivity(*it);
 
     for(UInt e = 0; e < nb_element; ++e) {
        ...
     }
   }
   @endcode
  */
 class Mesh : protected Memory, public EventHandlerManager<MeshEventHandler> {
   /* ------------------------------------------------------------------------ */
   /* Constructors/Destructors                                                 */
   /* ------------------------------------------------------------------------ */
 public:
 
   /// constructor that create nodes coordinates array
   Mesh(UInt spatial_dimension,
        const ID & id = "mesh",
        const MemoryID & memory_id = 0);
 
   /// constructor that use an existing nodes coordinates array, by knowing its ID
   Mesh(UInt spatial_dimension,
        const ID & nodes_id,
        const ID & id = "mesh",
        const MemoryID & memory_id = 0);
 
   /**
    * constructor that use an existing nodes coordinates
    * array, by getting the vector of coordinates
    */
   Mesh(UInt spatial_dimension,
        Vector<Real> & nodes,
        const ID & id = "mesh",
        const MemoryID & memory_id = 0);
 
 
   virtual ~Mesh();
 
   /// @typedef ConnectivityTypeList list of the types present in a Mesh
   typedef std::set<ElementType> ConnectivityTypeList;
 
   //  typedef Vector<Real> * NormalsMap[_max_element_type];
 
 private:
   /// initialize the connectivity to NULL and other stuff
   void init();
 
   /* ------------------------------------------------------------------------ */
   /* Methods                                                                  */
   /* ------------------------------------------------------------------------ */
 public:
 
   /// function to print the containt of the class
   virtual void printself(std::ostream & stream, int indent = 0) const;
 
   /// function that computes the bounding box (fills xmin, xmax)
   void computeBoundingBox();
 
   /// init a by-element-type real vector with provided ids
   template<typename T>
   void initByElementTypeVector(ByElementTypeVector<T> & v,
  			       UInt nb_component,
 			       UInt spatial_dimension,
 			       const bool & flag_nb_node_per_elem_multiply = false,
 			       ElementKind element_kind = _ek_regular,
 			       bool size_to_nb_element = false) const; /// @todo: think about nicer way to do it
 
   /// extract coordinates of nodes from an element
   template<typename T>
   inline void extractNodalValuesFromElement(const Vector<T> & nodal_values,
 					    T * elemental_values,
 					    UInt * connectivity,
 					    UInt n_nodes,
 					    UInt nb_degree_of_freedom) const;
 
   /// extract coordinates of nodes from a reversed element
   inline void extractNodalCoordinatesFromPBCElement(Real * local_coords,
 						    UInt * connectivity,
 						    UInt n_nodes);
 
   /// convert a element to a linearized element
   inline UInt elementToLinearized(const Element & elem);
 
   /// convert a linearized element to an element
   inline Element linearizedToElement (UInt linearized_element);
 
   /// update the types offsets array for the conversions
   inline void updateTypesOffsets(const GhostType & ghost_type);
 
   /// add a Vector of connectivity for the type <type>.
   inline void addConnectivityType(const ElementType & type);
 
   /* ------------------------------------------------------------------------ */
   template <class Event>
   inline void sendEvent(Event & event) {
     if(event.getList().getSize() != 0)
       EventHandlerManager<MeshEventHandler>::sendEvent<Event>(event);
   }
 
   /* ------------------------------------------------------------------------ */
   template<typename T>
   inline void removeNodesFromVector(Vector<T> & vect, const Vector<UInt> & new_numbering);
 
 
   /* ------------------------------------------------------------------------ */
   /* Accessors                                                                */
   /* ------------------------------------------------------------------------ */
 public:
   AKANTU_GET_MACRO(ID, id, const ID &);
 
   /// get the spatial dimension of the mesh = number of component of the coordinates
   AKANTU_GET_MACRO(SpatialDimension, spatial_dimension, UInt);
 
   /// get the nodes Vector aka coordinates
   AKANTU_GET_MACRO(Nodes, *nodes, const Vector<Real> &);
   AKANTU_GET_MACRO_NOT_CONST(Nodes, *nodes, Vector<Real> &);
 
   /// get the number of nodes
   AKANTU_GET_MACRO(NbNodes, nodes->getSize(), UInt);
 
   /// get the Vector of global ids of the nodes (only used in parallel)
   AKANTU_GET_MACRO(GlobalNodesIds, *nodes_global_ids, const Vector<UInt> &);
 
   /// get the global id of a node
   inline UInt getNodeGlobalId(UInt local_id) const;
 
   /// get the global number of nodes
   inline UInt getNbGlobalNodes() const;
 
   /// get the nodes type Vector
   AKANTU_GET_MACRO(NodesType, *nodes_type, const Vector<Int> &);
   inline Int getNodeType(UInt local_id) const;
 
   /// say if a node is a pure ghost node
   inline bool isPureGhostNode(UInt n) const;
 
   /// say if a node is pur local or master node
   inline bool isLocalOrMasterNode(UInt n) const;
 
   inline bool isLocalNode(UInt n) const;
   inline bool isMasterNode(UInt n) const;
   inline bool isSlaveNode(UInt n) const;
 
   AKANTU_GET_MACRO(XMin, lower_bounds[0], Real);
   AKANTU_GET_MACRO(YMin, lower_bounds[1], Real);
   AKANTU_GET_MACRO(ZMin, lower_bounds[2], Real);
   AKANTU_GET_MACRO(XMax, upper_bounds[0], Real);
   AKANTU_GET_MACRO(YMax, upper_bounds[1], Real);
   AKANTU_GET_MACRO(ZMax, upper_bounds[2], Real);
 
   inline void getLowerBounds(Real * lower) const;
   inline void getUpperBounds(Real * upper) const;
 
   inline void getLocalLowerBounds(Real * lower) const;
   inline void getLocalUpperBounds(Real * upper) const;
 
   /// get the number of surfaces
   AKANTU_GET_MACRO(NbSurfaces, nb_surfaces, UInt);
 
   /// get the connectivity Vector for a given type
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE_CONST(Connectivity, connectivities, UInt);
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE(Connectivity, connectivities, UInt);
   AKANTU_GET_MACRO(Connectivities, connectivities, const ByElementTypeVector<UInt> &);
 
   /// @todo take out this set, if mesh can read surface id
   /// set the number of surfaces
   AKANTU_SET_MACRO(NbSurfaces, nb_surfaces, UInt);
 
   /// get the number of element of a type in the mesh
   inline UInt getNbElement(const ElementType & type, const GhostType & ghost_type = _not_ghost) const;
 
   // /// get the number of ghost element of a type in the mesh
   // inline UInt getNbGhostElement(const ElementType & type) const;
 
   /// get the connectivity list either for the elements or the ghost elements
   inline const ConnectivityTypeList & getConnectivityTypeList(const GhostType & ghost_type = _not_ghost) const;
 
   /// compute the barycenter of a given element
   inline void getBarycenter(UInt element, const ElementType & type, Real * barycenter,
 			    GhostType ghost_type = _not_ghost) const;
 
   /// get the element connected to a subelement
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE_CONST(ElementToSubelement, element_to_subelement, Vector<Element>);
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE(ElementToSubelement, element_to_subelement, Vector<Element>);
 
   /// get the subelement connected to an element
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE_CONST(SubelementToElement, subelement_to_element, Element);
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE(SubelementToElement, subelement_to_element, Element);
 
   /// get the surface values of facets
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE_CONST(SurfaceID, surface_id, UInt);
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE(SurfaceID, surface_id, UInt);
 
   /// set the int data to the surface id vectors
   void setSurfaceIDsFromIntData(const std::string & data_name);
 
   inline const Vector<UInt> & getUIntData(const ElementType & el_type,
 					  const std::string & data_name,
 					  const GhostType & ghost_type = _not_ghost) const;
 
   /* ------------------------------------------------------------------------ */
   /* Wrappers on ElementClass functions                                       */
   /* ------------------------------------------------------------------------ */
 public:
   /// get the number of nodes per element for a given element type
   static inline UInt getNbNodesPerElement(const ElementType & type);
 
   /// get the number of nodes per element for a given element type considered as
   /// a first order element
   static inline ElementType getP1ElementType(const ElementType & type);
 
   /// get the kind of the element type
   static inline ElementKind getKind(const ElementType & type);
 
   /// get spatial dimension of a type of element
   static inline UInt getSpatialDimension(const ElementType & type);
 
   /// get number of facets of a given element type
   static inline UInt getNbFacetsPerElement(const ElementType & type);
 
   /// get local connectivity of a facet for a given facet type
   static inline UInt ** getFacetLocalConnectivity(const ElementType & type);
 
   /// get the type of the surface element associated to a given element
   static inline ElementType getFacetElementType(const ElementType & type);
 
   /// get the pointer to the list of elements for a given type
   inline Vector<UInt> * getReversedElementsPBCPointer(const ElementType & type);
 
 
   /* ------------------------------------------------------------------------ */
   /* Element type Iterator                                                    */
   /* ------------------------------------------------------------------------ */
   typedef ByElementTypeUInt::type_iterator type_iterator;
 
   inline type_iterator firstType(UInt dim = 0,
 				 GhostType ghost_type = _not_ghost,
 				 ElementKind kind = _ek_regular) const {
     return connectivities.firstType(dim, ghost_type, kind);
   }
 
   inline type_iterator lastType(UInt dim = 0,
 				GhostType ghost_type = _not_ghost,
 				ElementKind kind = _ek_regular) const {
     return connectivities.lastType(dim, ghost_type, kind);
   }
 
 
   /* ------------------------------------------------------------------------ */
   /* Private methods for friends                                              */
   /* ------------------------------------------------------------------------ */
 private:
   friend class MeshIOMSH;
   friend class MeshIOMSHStruct;
   friend class MeshIODiana;
   friend class MeshUtils;
   friend class DistributedSynchronizer;
 
   AKANTU_GET_MACRO(NodesPointer, nodes, Vector<Real> *);
 
   /// get a pointer to the nodes_global_ids Vector<UInt> and create it if necessary
   inline Vector<UInt> * getNodesGlobalIdsPointer();
 
   /// get a pointer to the nodes_type Vector<Int> and create it if necessary
   inline Vector<Int> * getNodesTypePointer();
 
   /// get a pointer to the connectivity Vector for the given type and create it if necessary
   inline Vector<UInt> * getConnectivityPointer(const ElementType & type,
 					       const GhostType & ghost_type = _not_ghost);
 
   // inline Vector<Real> * getNormalsPointer(ElementType type) const;
 
   /// get a pointer to the surface_id Vector for the given type and create it if necessary
   inline Vector<UInt> * getSurfaceIDPointer(const ElementType & type, const GhostType & ghost_type = _not_ghost);
 
   /// get the UIntDataMap for a given ElementType
   inline UIntDataMap & getUIntDataMap(const ElementType & el_type,
 				      const GhostType & ghost_type = _not_ghost);
 
   /// get the IntDataMap pointer (modifyable) for a given ElementType
   inline Vector<UInt> * getUIntDataPointer(const ElementType & el_type,
 					   const std::string & data_name,
 					   const GhostType & ghost_type = _not_ghost);
 
   /// get a pointer to the element_to_subelement Vector for the given type and create it if necessary
   inline Vector<Vector<Element> > * getElementToSubelementPointer(const ElementType & type,
 								  const GhostType & ghost_type = _not_ghost);
 
   /// get a pointer to the subelement_to_element Vector for the given type and create it if necessary
   inline Vector<Element > * getSubelementToElementPointer(const ElementType & type,
 							  const GhostType & ghost_type = _not_ghost);
 
   /* ------------------------------------------------------------------------ */
   /* Class Members                                                            */
   /* ------------------------------------------------------------------------ */
 private:
 
   /// id of the mesh
   ID id;
 
   /// array of the nodes coordinates
   Vector<Real> * nodes;
 
   /// global node ids
   Vector<UInt> * nodes_global_ids;
 
   /// node type,  -3 pure ghost, -2  master for the  node, -1 normal node,  i in
   /// [0-N] slave node and master is proc i
   Vector<Int> * nodes_type;
 
   /// global number of nodes;
   UInt nb_global_nodes;
 
   /// boolean to know if the nodes have to be deleted with the mesh or not
   bool created_nodes;
 
   /// all class of elements present in this mesh (for heterogenous meshes)
   ByElementTypeUInt connectivities;
 
   /// map to normals for all class of elements present in this mesh
   ByElementTypeReal normals;
 
   /// list of all existing types in the mesh
   ConnectivityTypeList type_set;
 
   /// the spatial dimension of this mesh
   UInt spatial_dimension;
 
   /// types offsets
   Vector<UInt> types_offsets;
 
   /// list of all existing types in the mesh
   ConnectivityTypeList ghost_type_set;
   /// ghost types offsets
   Vector<UInt> ghost_types_offsets;
 
   /// number of surfaces present in this mesh
   UInt nb_surfaces;
 
   /// surface id of the surface elements in this mesh
   ByElementTypeUInt surface_id;
 
   /// min of coordinates
   Real lower_bounds[3];
   /// max of coordinates
   Real upper_bounds[3];
   /// size covered by the mesh on each direction
   Real size[3];
 
   /// local min of coordinates
   Real local_lower_bounds[3];
   /// local max of coordinates
   Real local_upper_bounds[3];
 
   /// List of elements connected to subelements
   ByElementTypeVector<Vector<Element> > element_to_subelement;
 
   /// List of subelements connected to elements
   ByElementTypeVector<Element > subelement_to_element;
 
   // /// list of elements that are reversed due to pbc
   // ByElementTypeUInt reversed_elements_pbc;
   // /// direction in which pbc are to be applied
   // UInt pbc_directions[3];
 
   /// list of the vectors corresponding to tags in the mesh
   ByElementTypeUIntDataMap uint_data;
 
 };
 
 /* -------------------------------------------------------------------------- */
 /* Inline functions                                                           */
 /* -------------------------------------------------------------------------- */
 
 /// standard output stream operator
 inline std::ostream & operator <<(std::ostream & stream, const Element & _this)
 {
   _this.printself(stream);
   return stream;
 }
 
 #if defined (AKANTU_INCLUDE_INLINE_IMPL)
 #  include "mesh_inline_impl.cc"
 #endif
 
 #include "by_element_type_tmpl.hh"
 
 
 /// standard output stream operator
 inline std::ostream & operator <<(std::ostream & stream, const Mesh & _this)
 {
   _this.printself(stream);
   return stream;
 }
 
 
 __END_AKANTU__
 
 
 #endif /* __AKANTU_MESH_HH__ */
diff --git a/src/fem/mesh_inline_impl.cc b/src/fem/mesh_inline_impl.cc
index 06b64470a..f096368c9 100644
--- a/src/fem/mesh_inline_impl.cc
+++ b/src/fem/mesh_inline_impl.cc
@@ -1,549 +1,550 @@
 /**
  * @file   mesh_inline_impl.cc
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Wed Jul 14 23:58:08 2010
  *
  * @brief  Implementation of the inline functions of the mesh class
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
-__END_AKANTU__
-
-#include "cohesive_element.hh"
 
+__END_AKANTU__
+#if defined(AKANTU_COHESIVE_ELEMENT)
+#  include "cohesive_element.hh"
+#endif
 __BEGIN_AKANTU__
 
 /* -------------------------------------------------------------------------- */
 inline RemovedNodesEvent::RemovedNodesEvent(const Mesh & mesh) :
   new_numbering(mesh.getNbNodes(), 1, "new_numbering") {
 }
 
 /* -------------------------------------------------------------------------- */
 inline RemovedElementsEvent::RemovedElementsEvent(const Mesh & mesh) :
   new_numbering("new_numbering", mesh.getID()) {
 }
 
 /* -------------------------------------------------------------------------- */
 template <>
 inline void Mesh::sendEvent<RemovedElementsEvent>(RemovedElementsEvent & event) {
   if(event.getList().getSize() != 0) {
     connectivities.onElementsRemoved(event.getNewNumbering());
 
     EventHandlerManager<MeshEventHandler>::sendEvent(event);
   }
 }
 
 /* -------------------------------------------------------------------------- */
 template <>
 inline void Mesh::sendEvent<RemovedNodesEvent>(RemovedNodesEvent & event) {
   if(created_nodes)    removeNodesFromVector(*nodes           , event.getNewNumbering());
   if(nodes_global_ids) removeNodesFromVector(*nodes_global_ids, event.getNewNumbering());
   if(nodes_type)       removeNodesFromVector(*nodes_type      , event.getNewNumbering());
 
   EventHandlerManager<MeshEventHandler>::sendEvent(event);
 }
 
 /* -------------------------------------------------------------------------- */
 template<typename T>
 inline void Mesh::removeNodesFromVector(Vector<T> & vect, const Vector<UInt> & new_numbering) {
   Vector<T> tmp(vect.getSize(), vect.getNbComponent());
   UInt nb_component = vect.getNbComponent();
   UInt new_nb_nodes = 0;
   for (UInt i = 0; i < new_numbering.getSize(); ++i) {
     UInt new_i = new_numbering(i);
     if(new_i != UInt(-1)) {
       memcpy(tmp.storage() + new_i * nb_component,
 	     vect.storage() + i * nb_component,
 	     nb_component * sizeof(T));
       ++new_nb_nodes;
     }
   }
 
   tmp.resize(new_nb_nodes);
   vect.copy(tmp);
 }
 
 /* -------------------------------------------------------------------------- */
 inline UInt Mesh::elementToLinearized(const Element & elem) {
   AKANTU_DEBUG_ASSERT(elem.type < _max_element_type &&
 		      elem.element < types_offsets.values[elem.type+1],
 		      "The element " << elem
 		      << "does not exists in the mesh " << id);
 
   return types_offsets.values[elem.type] + elem.element;
 }
 
 /* -------------------------------------------------------------------------- */
 inline Element Mesh::linearizedToElement (UInt linearized_element) {
 
   UInt t;
 
   for (t = _not_defined;
        t != _max_element_type && linearized_element >= types_offsets(t);
        ++t);
 
   AKANTU_DEBUG_ASSERT(t != _max_element_type,
    		      "The linearized element " << linearized_element
    		      << "does not exists in the mesh " << id);
 
   --t;
   return Element(ElementType(t), linearized_element - types_offsets.values[t]);
 }
 
 /* -------------------------------------------------------------------------- */
 inline void Mesh::updateTypesOffsets(const GhostType & ghost_type) {
   types_offsets.clear();
   type_iterator it   = firstType(0, ghost_type);
   type_iterator last = lastType(0, ghost_type);
 
   for (; it != last; ++it)
     types_offsets(*it) = connectivities(*it, ghost_type).getSize();
 
   for (UInt t = _not_defined + 1; t < _max_element_type; ++t)
     types_offsets(t) += types_offsets(t - 1);
   for (UInt t = _max_element_type; t > _not_defined; --t)
     types_offsets(t) = types_offsets(t - 1);
   types_offsets(0) = 0;
 }
 
 /* -------------------------------------------------------------------------- */
 inline const Mesh::ConnectivityTypeList & Mesh::getConnectivityTypeList(const GhostType & ghost_type) const {
   if (ghost_type == _not_ghost)
     return type_set;
   else
     return ghost_type_set;
 }
 
 /* -------------------------------------------------------------------------- */
 inline Vector<UInt> * Mesh::getNodesGlobalIdsPointer() {
   AKANTU_DEBUG_IN();
   if(nodes_global_ids == NULL) {
     std::stringstream sstr; sstr << id << ":nodes_global_ids";
     nodes_global_ids = &(alloc<UInt>(sstr.str(), nodes->getSize(), 1));
   }
   AKANTU_DEBUG_OUT();
   return nodes_global_ids;
 }
 
 /* -------------------------------------------------------------------------- */
 inline Vector<Int> * Mesh::getNodesTypePointer() {
   AKANTU_DEBUG_IN();
   if(nodes_type == NULL) {
     std::stringstream sstr; sstr << id << ":nodes_type";
     nodes_type = &(alloc<Int>(sstr.str(), nodes->getSize(), 1, -1));
   }
   AKANTU_DEBUG_OUT();
   return nodes_type;
 }
 
 /* -------------------------------------------------------------------------- */
 inline Vector<UInt> * Mesh::getConnectivityPointer(const ElementType & type,
 						   const GhostType & ghost_type) {
   AKANTU_DEBUG_IN();
 
   Vector<UInt> * tmp;
   if(!connectivities.exists(type, ghost_type)) {
     UInt nb_nodes_per_element = Mesh::getNbNodesPerElement(type);
 
     tmp = &(connectivities.alloc(0, nb_nodes_per_element,
 				 type, ghost_type));
 
     AKANTU_DEBUG_INFO("The connectivity vector for the type "
 		      << type << " created");
 
     if (ghost_type == _not_ghost) type_set.insert(type);
     else ghost_type_set.insert(type);
 
     updateTypesOffsets(ghost_type);
   } else {
     tmp = &connectivities(type, ghost_type);
   }
 
   AKANTU_DEBUG_OUT();
   return tmp;
 }
 
 /* -------------------------------------------------------------------------- */
 inline Vector<UInt> * Mesh::getSurfaceIDPointer(const ElementType & type, const GhostType & ghost_type) {
   AKANTU_DEBUG_IN();
 
   Vector<UInt> * tmp;
   if(!surface_id.exists(type, ghost_type)) {
     tmp = &(surface_id.alloc(0, 1, type, ghost_type));
     AKANTU_DEBUG_INFO("The surface id vector for the type "
 		      << type << " created");
   } else {
     tmp = &(surface_id(type, ghost_type));
   }
 
   AKANTU_DEBUG_OUT();
   return tmp;
 }
 
 /* -------------------------------------------------------------------------- */
 inline Vector<Vector<Element> > * Mesh::getElementToSubelementPointer(const ElementType & type, const GhostType & ghost_type) {
   AKANTU_DEBUG_IN();
 
   Vector<Vector<Element> > * tmp;
   if(!element_to_subelement.exists(type, ghost_type)) {
     tmp = &(element_to_subelement.alloc(0, 1, type, ghost_type));
 
     AKANTU_DEBUG_INFO("The element_to_subelement vector for the type "
 		      << type << " created");
   } else {
     tmp = &(element_to_subelement(type, ghost_type));
   }
 
   AKANTU_DEBUG_OUT();
   return tmp;
 }
 
 /* -------------------------------------------------------------------------- */
 inline Vector<Element > * Mesh::getSubelementToElementPointer(const ElementType & type, const GhostType & ghost_type) {
   AKANTU_DEBUG_IN();
 
   Vector<Element > * tmp;
   if(!subelement_to_element.exists(type, ghost_type)) {
 
     UInt nb_facets = getNbFacetsPerElement(type);
 
     tmp = &(subelement_to_element.alloc(0, nb_facets, type, ghost_type));
 
     AKANTU_DEBUG_INFO("The subelement_to_element vector for the type "
 		      << type << " created");
   } else {
     tmp = &(subelement_to_element(type, ghost_type));
   }
 
   AKANTU_DEBUG_OUT();
   return tmp;
 }
 
 /* -------------------------------------------------------------------------- */
 inline Vector<UInt> * Mesh::getUIntDataPointer(const ElementType & el_type,
 					       const std::string & data_name,
 					       const GhostType & ghost_type) {
   //  AKANTU_DEBUG_IN();
 
   Vector<UInt> * data;
   // if(!uint_data.exists(el_type, ghost_type)){
   //   uint_data(UIntDataMap(), el_type, ghost_type);
   // }
   UIntDataMap & map = uint_data(el_type, ghost_type);
   UIntDataMap::iterator it = map.find(data_name);
   if(it == map.end()) {
     data = new Vector<UInt>(0, 1, data_name);
     map[data_name] = data;
   } else {
     data = it->second;
   }
 
   //  AKANTU_DEBUG_OUT();
   return data;
 }
 
 /* -------------------------------------------------------------------------- */
 inline const Vector<UInt> & Mesh::getUIntData(const ElementType & el_type,
 					      const std::string & data_name,
 					      const GhostType & ghost_type) const {
   AKANTU_DEBUG_IN();
 
   const UIntDataMap & map = uint_data(el_type, ghost_type);
   UIntDataMap::const_iterator it = map.find(data_name);
 
   AKANTU_DEBUG_ASSERT(it != map.end(),
 		      "No data named " << data_name << " in the mesh " << id);
 
   AKANTU_DEBUG_OUT();
   return *(it->second);
 }
 
 /* -------------------------------------------------------------------------- */
 inline UIntDataMap & Mesh::getUIntDataMap(const ElementType & el_type,
 					  const GhostType & ghost_type) {
   // AKANTU_DEBUG_ASSERT(uint_data.exists(el_type, ghost_type),
   // 		      "No UIntDataMap for the type (" << ghost_type << ":" << el_type << ")");
   return uint_data(el_type, ghost_type);
 }
 
 /* -------------------------------------------------------------------------- */
 inline UInt Mesh::getNbElement(const ElementType & type,
 			       const GhostType & ghost_type) const {
   AKANTU_DEBUG_IN();
 
   try {
     const Vector<UInt> & conn = connectivities(type, ghost_type);
     AKANTU_DEBUG_OUT();
     return conn.getSize();
   } catch (...) {
     AKANTU_DEBUG_OUT();
     return 0;
   }
 }
 
 /* -------------------------------------------------------------------------- */
 inline void Mesh::getBarycenter(UInt element, const ElementType & type,
 				Real * barycenter,
 				GhostType ghost_type) const {
   AKANTU_DEBUG_IN();
 
   UInt * conn_val = getConnectivity(type, ghost_type).values;
   UInt nb_nodes_per_element = getNbNodesPerElement(type);
 
   Real local_coord[spatial_dimension * nb_nodes_per_element];
 
   UInt offset = element * nb_nodes_per_element;
   for (UInt n = 0; n < nb_nodes_per_element; ++n) {
     memcpy(local_coord + n * spatial_dimension,
 	   nodes->storage() + conn_val[offset + n] * spatial_dimension,
 	   spatial_dimension*sizeof(Real));
   }
 
   Math::barycenter(local_coord, nb_nodes_per_element, spatial_dimension, barycenter);
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 inline UInt Mesh::getNbNodesPerElement(const ElementType & type) {
   AKANTU_DEBUG_IN();
 
   UInt nb_nodes_per_element = 0;
 #define GET_NB_NODES_PER_ELEMENT(type)					\
   nb_nodes_per_element = ElementClass<type>::getNbNodesPerElement()
 
 #define GET_NB_NODES_PER_ELEMENT_COHESIVE(type)				\
   nb_nodes_per_element = CohesiveElement<type>::getNbNodesPerElement()
 
   AKANTU_BOOST_ELEMENT_SWITCH(GET_NB_NODES_PER_ELEMENT,
 			      AKANTU_REGULAR_ELEMENT_TYPE,
 			      GET_NB_NODES_PER_ELEMENT_COHESIVE,
 			      AKANTU_COHESIVE_ELEMENT_TYPE);
 
 #undef GET_NB_NODES_PER_ELEMENT
 #undef GET_NB_NODES_PER_ELEMENT_COHESIVE
 
   AKANTU_DEBUG_OUT();
   return nb_nodes_per_element;
 }
 
 /* -------------------------------------------------------------------------- */
 inline ElementType Mesh::getP1ElementType(const ElementType & type) {
   AKANTU_DEBUG_IN();
 
   ElementType element_p1 = _not_defined;
 #define GET_ELEMENT_P1(type)				\
   element_p1 = ElementClass<type>::getP1ElementType()
 
   AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(GET_ELEMENT_P1);
 #undef GET_NB_NODES_PER_ELEMENT_P1
 
   AKANTU_DEBUG_OUT();
   return element_p1;
 }
 
 /* -------------------------------------------------------------------------- */
 inline ElementKind Mesh::getKind(const ElementType & type) {
   AKANTU_DEBUG_IN();
 
   ElementKind kind = _ek_not_defined;
 #define GET_KIND(type)				\
   kind = ElementClass<type>::getKind()
 
   AKANTU_BOOST_ELEMENT_SWITCH(GET_KIND,
 			      AKANTU_REGULAR_ELEMENT_TYPE,
 			      GET_KIND,
 			      AKANTU_COHESIVE_ELEMENT_TYPE);
 #undef GET_KIND
 
   AKANTU_DEBUG_OUT();
   return kind;
 }
 
 /* -------------------------------------------------------------------------- */
 inline UInt Mesh::getSpatialDimension(const ElementType & type) {
   AKANTU_DEBUG_IN();
 
   UInt spatial_dimension = 0;
 #define GET_SPATIAL_DIMENSION(type)				\
   spatial_dimension = ElementClass<type>::getSpatialDimension()
 
 #define GET_SPATIAL_DIMENSION_COHESIVE(type)				\
   spatial_dimension = CohesiveElement<type>::getSpatialDimension()
 
 
   AKANTU_BOOST_ELEMENT_SWITCH(GET_SPATIAL_DIMENSION,
 			      AKANTU_REGULAR_ELEMENT_TYPE,
 			      GET_SPATIAL_DIMENSION_COHESIVE,
 			      AKANTU_COHESIVE_ELEMENT_TYPE);
 #undef GET_SPATIAL_DIMENSION
 #undef GET_SPATIAL_DIMENSION_COHESIVE
 
   AKANTU_DEBUG_OUT();
   return spatial_dimension;
 }
 
 /* -------------------------------------------------------------------------- */
 inline ElementType Mesh::getFacetElementType(const ElementType & type) {
   AKANTU_DEBUG_IN();
 
   ElementType surface_type = _not_defined;
 #define GET_FACET_TYPE(type)					\
   surface_type = ElementClass<type>::getFacetElementType()
 
 #define GET_FACET_TYPE_COHESIVE(type)				\
   surface_type = CohesiveElement<type>::getFacetElementType()
 
 
   AKANTU_BOOST_ELEMENT_SWITCH(GET_FACET_TYPE,
 			      AKANTU_REGULAR_ELEMENT_TYPE,
 			      GET_FACET_TYPE_COHESIVE,
 			      AKANTU_COHESIVE_ELEMENT_TYPE);
 #undef GET_FACET_TYPE
 #undef GET_FACET_TYPE_COHESIVE
 
   AKANTU_DEBUG_OUT();
   return surface_type;
 }
 
 /* -------------------------------------------------------------------------- */
 inline UInt Mesh::getNbFacetsPerElement(const ElementType & type) {
   AKANTU_DEBUG_IN();
 
   UInt n_facet = 0;
 #define GET_NB_FACET(type)				\
   n_facet = ElementClass<type>::getNbFacetsPerElement()
 
 #define GET_NB_FACET_COHESIVE(type)			\
   n_facet = CohesiveElement<type>::getNbFacetsPerElement()
 
 
   AKANTU_BOOST_ELEMENT_SWITCH(GET_NB_FACET,
 			      AKANTU_REGULAR_ELEMENT_TYPE,
 			      GET_NB_FACET_COHESIVE,
 			      AKANTU_COHESIVE_ELEMENT_TYPE);
 #undef GET_NB_FACET
 #undef GET_NB_FACET_COHESIVE
 
   AKANTU_DEBUG_OUT();
   return n_facet;
 }
 
 
 /* -------------------------------------------------------------------------- */
 inline UInt ** Mesh::getFacetLocalConnectivity(const ElementType & type) {
   AKANTU_DEBUG_IN();
 
   UInt ** facet_conn = NULL;
 #define GET_FACET_CON(type)						\
   facet_conn = ElementClass<type>::getFacetLocalConnectivityPerElement()
 
 #define GET_FACET_CON_COHESIVE(type)					\
   facet_conn = CohesiveElement<type>::getFacetLocalConnectivityPerElement()
 
   AKANTU_BOOST_ELEMENT_SWITCH(GET_FACET_CON,
 			      AKANTU_REGULAR_ELEMENT_TYPE,
 			      GET_FACET_CON_COHESIVE,
 			      AKANTU_COHESIVE_ELEMENT_TYPE);
 
 #undef GET_FACET_CON
 #undef GET_FACET_CON_COHESIVE
 
   AKANTU_DEBUG_OUT();
   return facet_conn;
 }
 
 /* -------------------------------------------------------------------------- */
 template<typename T>
 inline void Mesh::extractNodalValuesFromElement(const Vector<T> & nodal_values,
 						T * local_coord,
 						UInt * connectivity,
 						UInt n_nodes,
 						UInt nb_degree_of_freedom) const {
   for (UInt n = 0; n < n_nodes; ++n) {
     memcpy(local_coord + n * nb_degree_of_freedom,
 	   nodal_values.storage() + connectivity[n] * nb_degree_of_freedom,
 	   nb_degree_of_freedom * sizeof(T));
   }
 }
 
 /* -------------------------------------------------------------------------- */
 #define DECLARE_GET_BOUND(Var, var)                               \
   inline void Mesh::get##Var##Bounds(Real * var) const {          \
     for (UInt i = 0; i < spatial_dimension; ++i) {                \
       var[i] = var##_bounds[i];                                   \
     }                                                             \
   }                                                               \
 
 DECLARE_GET_BOUND(Lower, lower)
 DECLARE_GET_BOUND(Upper, upper)
 
 DECLARE_GET_BOUND(LocalLower, local_lower)
 DECLARE_GET_BOUND(LocalUpper, local_upper)
 
 #undef DECLARE_GET_BOUND
 
 /* -------------------------------------------------------------------------- */
 inline void Mesh::addConnectivityType(const ElementType & type){
   getConnectivityPointer(type);
 }
 
 /* -------------------------------------------------------------------------- */
 inline bool Mesh::isPureGhostNode(UInt n) const {
   return nodes_type ? (*nodes_type)(n) == -3 : false;
 }
 
 /* -------------------------------------------------------------------------- */
 inline bool Mesh::isLocalOrMasterNode(UInt n) const {
   return nodes_type ? (*nodes_type)(n) == -2 || (*nodes_type)(n) == -1 : true;
 }
 
 
 /* -------------------------------------------------------------------------- */
 inline bool Mesh::isLocalNode(UInt n) const {
   return nodes_type ? (*nodes_type)(n) == -1 : true;
 }
 
 /* -------------------------------------------------------------------------- */
 inline bool Mesh::isMasterNode(UInt n) const {
   return nodes_type ? (*nodes_type)(n) == -2 : false;
 }
 
 /* -------------------------------------------------------------------------- */
 inline bool Mesh::isSlaveNode(UInt n) const {
   return nodes_type ? (*nodes_type)(n) >= 0 : false;
 }
 
 
 /* -------------------------------------------------------------------------- */
 inline UInt Mesh::getNodeGlobalId(UInt local_id) const {
   return nodes_global_ids ? (*nodes_global_ids)(local_id) : local_id;
 }
 
 /* -------------------------------------------------------------------------- */
 inline UInt Mesh::getNbGlobalNodes() const {
   return nodes_global_ids ? nb_global_nodes : nodes->getSize();
 }
 
 /* -------------------------------------------------------------------------- */
 inline Int Mesh::getNodeType(UInt local_id) const {
   return nodes_type ? (*nodes_type)(local_id) : -1;
 }
diff --git a/src/io/dumper/dumper_iohelper.hh b/src/io/dumper/dumper_iohelper.hh
index 13976c53e..7307674a8 100644
--- a/src/io/dumper/dumper_iohelper.hh
+++ b/src/io/dumper/dumper_iohelper.hh
@@ -1,174 +1,205 @@
 /**
  * @file   dumper_iohelper.hh
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Wed Oct 24 13:20:16 2012
  *
  * @brief  Define the akantu dumper interface for IOhelper dumpers
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 #ifndef __AKANTU_DUMPER_IOHELPER_HH__
 #define __AKANTU_DUMPER_IOHELPER_HH__
 
 #include "aka_common.hh"
 #include "aka_types.hh"
 #include "mesh.hh"
 
 
 #include <io_helper.hh>
 
 __BEGIN_AKANTU__
 
 class DumperIOHelper {
   /* ------------------------------------------------------------------------ */
   /* Constructors/Destructors                                                 */
   /* ------------------------------------------------------------------------ */
 public:
   DumperIOHelper();
   virtual ~DumperIOHelper();
 
   /* ------------------------------------------------------------------------ */
   /* Methods                                                                  */
   /* ------------------------------------------------------------------------ */
 public:
   class Field;
 
   void registerMesh(const Mesh & mesh, UInt spatial_dimension = 0,
 		    const GhostType & ghost_type = _not_ghost,
 		    const ElementKind & element_kind = _ek_not_defined);
   void registerField(const std::string & field_id, Field * field);
   void unRegisterField(const std::string & field_id);
 
   void dump();
 
   /* ------------------------------------------------------------------------ */
   /* Accessors                                                                */
   /* ------------------------------------------------------------------------ */
 public:
   AKANTU_GET_MACRO(Dumper, *dumper, iohelper::Dumper &)
 
   static iohelper::ElemType getIOHelperType(ElementType type);
 protected:
   template <ElementType type> static iohelper::ElemType getIOHelperType();
 
 public:
   /* ------------------------------------------------------------------------ */
   /* Field descriptors                                                        */
   /* ------------------------------------------------------------------------ */
   /// Field interface
   class Field {
   public:
     Field() : padding_n(0), padding_m(0) {}
     virtual ~Field() {};
     virtual void registerToDumper(const std::string & id, iohelper::Dumper & dupmer) = 0;
     virtual void setPadding(UInt n, UInt m = 1) {
       padding_n = n;
       padding_m = m;
     }
   protected:
     UInt padding_n, padding_m;
   };
 
 
   /* ------------------------------------------------------------------------ */
   template<class T, template<class> class R>
   class iterator_helper;
 
+  template<class T, template<class> class R>
+  class PaddingHelper;
+
   /* ------------------------------------------------------------------------ */
   /* Nodal field wrapper */
   template<typename T, template<typename> class return_type = types::Vector>
   class NodalField;
 
   /* ------------------------------------------------------------------------ */
   /* Generic class used as interface for the others */
   template<typename i_type, typename d_type,
 	   template<typename> class ret_type, class daughter>
   class element_iterator;
 
   template<typename i_type, typename d_type,
 	   template<typename> class ret_type, class daughter>
   class quadrature_point_iterator;
 
   template<typename T, class iterator_type,
 	   template<typename> class ret_type>
   class GenericElementalField;
 
   template<typename T, class iterator_type,
 	   template<typename> class ret_type>
   class GenericQuadraturePointsField;
 
   /* ------------------------------------------------------------------------ */
   /* Elemental Fields wrapper */
   class element_type_field_iterator;
+  class element_partition_field_iterator;
 
   template<typename T, template<class> class ret_type>
   class elemental_field_iterator;
 
   class ElementTypeField;
 
+  class ElementPartitionField;
+
   template<typename T, template<typename> class ret_type = types::Vector>
   class ElementalField;
 
   /* ------------------------------------------------------------------------ */
   /* Material Field wrapper */
+  template<typename T,
+	   template<class> class ret_type,
+	   template<typename, template<class> class> class padding_helper_type,
+	   template<typename, template<class> class> class int_iterator>
+  class generic_internal_material_field_iterator;
+
   template<typename T, template<class> class ret_type>
   class internal_material_field_iterator;
 
-  template<typename T, template<class> class ret_type = types::Vector>
+  template<typename T, template<class> class ret_type>
+  class material_stress_field_iterator;
+
+  template<typename T, template<class> class ret_type>
+  class material_strain_field_iterator;
+
+  template<typename T, template<class> class ret_type = types::Vector,
+	   template<typename, template<class> class> class iterator_type = internal_material_field_iterator>
   class InternalMaterialField;
 
+  template<class T, template<class> class R>
+  class MaterialPaddingHelper;
+
+  template<class T, template<class> class R>
+  class StressPaddingHelper;
+
+  template<class T, template<class> class R>
+  class StrainPaddingHelper;
+
   /* ------------------------------------------------------------------------ */
   /* Field homogenizing wrapper */
   template<typename T, class Container, template<class> class sub_type>
   class PaddingHomogenizingFunctor;
 
   template<typename T, class Container, template<class> class sub_type>
   class AvgHomogenizingFunctor;
 
-  template<typename T, template< typename, template<class> class> class Container,
+  template<typename T, template< typename,
+				 template<class> class,
+				 template<typename, template<class> class> class > class Container,
 	   template<typename, class, template<class> class> class Funct = AvgHomogenizingFunctor,
-	   template<typename> class ret_type = types::Vector>
+	   template<typename> class ret_type = types::Vector,
+	   template<typename, template<class> class> class sub_iterator = internal_material_field_iterator>
   class HomogenizedField;
 
   /* ------------------------------------------------------------------------ */
   /* Class Members                                                            */
   /* ------------------------------------------------------------------------ */
 protected:
   /// internal iohelper::Dumper
   iohelper::Dumper * dumper;
 
   typedef std::map<std::string, Field *> Fields;
   /// list of registered fields to dump
   Fields fields;
 
   /// dump counter
   UInt count;
 
   /// filename
   std::string filename;
 };
 
 #include "dumper_iohelper_tmpl.hh"
 
 __END_AKANTU__
 
 #endif /* __AKANTU_DUMPER_IOHELPER_HH__ */
diff --git a/src/io/dumper/dumper_iohelper_tmpl.hh b/src/io/dumper/dumper_iohelper_tmpl.hh
index d5332d67d..49c56ba8f 100644
--- a/src/io/dumper/dumper_iohelper_tmpl.hh
+++ b/src/io/dumper/dumper_iohelper_tmpl.hh
@@ -1,64 +1,94 @@
 /**
  * @file   dumper_iohelper_tmpl.hh
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Wed Oct 24 13:35:18 2012
  *
  * @brief  implementation of the DumperIOHelper class
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 
 
 /* -------------------------------------------------------------------------- */
 template<class T, template<class> class R>
 class DumperIOHelper::iterator_helper {
   typedef typename Vector<T>::template const_iterator< R<T> > internal_iterator;
 public:
-  static internal_iterator begin(const Vector<T> & vect, UInt n, UInt m, UInt size) {
+  static internal_iterator begin(const Vector<T> & vect, UInt m, UInt n, UInt size) {
     return vect.begin_reinterpret(n*m, size);
   }
 
-  static internal_iterator end(const Vector<T> & vect, UInt n, UInt m, UInt size) {
+  static internal_iterator end(const Vector<T> & vect, UInt m, UInt n, UInt size) {
     return vect.end_reinterpret(n*m, size);
   }
 };
 
 
 template<class T>
 class DumperIOHelper::iterator_helper<T, types::Matrix> {
   typedef typename Vector<T>::template const_iterator< types::Matrix<T> > internal_iterator;
 public:
-  static internal_iterator begin(const Vector<T> & vect, UInt n, UInt m, UInt size) {
-    return vect.begin_reinterpret(n, m, size);
+  static internal_iterator begin(const Vector<T> & vect, UInt m, UInt n, UInt size) {
+    return vect.begin_reinterpret(m, n, size);
   }
 
-  static internal_iterator end(const Vector<T> & vect, UInt n, UInt m, UInt size) {
-    return vect.end_reinterpret(n, m, size);
+  static internal_iterator end(const Vector<T> & vect, UInt m, UInt n, UInt size) {
+    return vect.end_reinterpret(m, n, size);
+  }
+};
+
+
+/* -------------------------------------------------------------------------- */
+template<class T, template<class> class R>
+class DumperIOHelper::PaddingHelper {
+public:
+  inline R<T> pad(const R<T> & in,
+		  __attribute__((unused)) UInt padding_m,
+		  __attribute__((unused)) UInt padding_n,
+		  __attribute__((unused)) UInt nb_data) {
+    return in; // trick due to the fact that IOHelper padds the vectors (avoid a copy of data)
+  }
+};
+
+template<class T>
+class DumperIOHelper::PaddingHelper<T, types::Matrix> {
+public:
+  inline types::Matrix<T> pad(const types::Matrix<T> & in, UInt padding_m, UInt padding_n, UInt nb_data) {
+    if(padding_m <= in.rows() && padding_n*nb_data <= in.cols())
+      return in;
+    else {
+      types::Matrix<T> ret(padding_m, padding_n * nb_data);
+      for (UInt d = 0; d < nb_data; ++d)
+	for (UInt i = 0; i < in.rows(); ++i)
+	  for (UInt j = 0; j < in.cols() / nb_data; ++j)
+	    ret(i, j + d * padding_n) = in(i, j + d * in.cols());
+      return ret;
+    }
   }
 };
 
 
 #include "dumper_iohelper_tmpl_nodal_field.hh"
 
 #include "dumper_iohelper_tmpl_elemental_field.hh"
 #include "dumper_iohelper_tmpl_quadrature_points_field.hh"
 
diff --git a/src/io/dumper/dumper_iohelper_tmpl_elemental_field.hh b/src/io/dumper/dumper_iohelper_tmpl_elemental_field.hh
index de0cd1adb..b26021c2e 100644
--- a/src/io/dumper/dumper_iohelper_tmpl_elemental_field.hh
+++ b/src/io/dumper/dumper_iohelper_tmpl_elemental_field.hh
@@ -1,381 +1,406 @@
 /**
  * @file   dumper_iohelper_tmpl_elemental_field.hh
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Thu Oct 25 14:40:43 2012
  *
  * @brief  description of elemental fields
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
+
+__END_AKANTU__
+#include "static_communicator.hh"
+__BEGIN_AKANTU__
+
 /* -------------------------------------------------------------------------- */
 template<typename i_type, typename d_type,
 	 template<typename> class ret_type, class daughter>
 class DumperIOHelper::element_iterator : iohelper::iterator< d_type, daughter,
 							     ret_type<d_type> > {
 public:
   typedef i_type              it_type;
   typedef d_type              data_type;
   typedef ret_type<data_type> return_type;
   typedef ByElementTypeVector<it_type> field_type;
   typedef typename Vector<it_type>::template const_iterator< ret_type<it_type> > internal_iterator;
 public:
   element_iterator(const field_type & field,
 		   UInt n,
 		   const typename field_type::type_iterator & t_it,
 		   const typename field_type::type_iterator & t_it_end,
 		   const internal_iterator & it,
 		   ElementType element_type,
 		   const GhostType ghost_type = _not_ghost) : field(field),
 							      n(n),
 							      padding_n(0),
 							      padding_m(0),
 							      itn(0), itm(0),
 							      tit(t_it),
 							      tit_end(t_it_end),
 							      vit(it),
 							      ghost_type(ghost_type) {
     UInt nb_data = getNbDataPerElem(element_type);
     const Vector<it_type> & vect = field(element_type, ghost_type);
     UInt size = vect.getSize() / nb_data;
     UInt ln = n;
     if(n == 0) ln = vect.getNbComponent();
     vit_end   = iterator_helper<it_type, ret_type>::end(vect, ln, vect.getNbComponent() / ln * nb_data, size);
   }
 
 public:
   bool operator!=(const daughter & it) const {
     return (ghost_type != ghost_type) || (tit != it.tit || (vit != it.vit));
   }
 
   daughter & operator++() {
     ++vit;
     if(vit == vit_end) {
       ++tit;
       if(tit != tit_end) {
 	UInt nb_data = getNbDataPerElem(*tit);
 	const Vector<it_type> & vect = field(*tit, ghost_type);
 	UInt size = vect.getSize() / nb_data;
 	UInt ln = n, lm;
 	if(n == 0) ln = vect.getNbComponent();
 	if(itn != 0) ln = itn;
 	if(itm != 0) lm = itm;
 	else lm = vect.getNbComponent() / ln * nb_data;
 	vit     = iterator_helper<it_type, ret_type>::begin(vect, ln, lm, size);
 	vit_end = iterator_helper<it_type, ret_type>::end  (vect, ln, lm, size);
       }
     }
     return *(static_cast<daughter *>(this));
   };
 
   ElementType getType() { return *tit; }
 
   void setPadding(UInt n, UInt m) {
     padding_n = n;
     padding_m = m;
   }
 
   // small trick for the material iterator
   void setItSize(UInt n, UInt m) { itn = n; itm = m; }
 
 protected:
   virtual UInt getNbDataPerElem(const ElementType & type) { return 1; }
 
 protected:
   const field_type & field;
   UInt n, padding_n, padding_m;
   UInt itn, itm;
   typename field_type::type_iterator tit;
   typename field_type::type_iterator tit_end;
   internal_iterator vit;
   internal_iterator vit_end;
   const GhostType ghost_type;
 };
 
 
 /* -------------------------------------------------------------------------- */
 template<typename T, template<class> class ret_type>
 class DumperIOHelper::elemental_field_iterator : public element_iterator< T, T, ret_type,
 									  elemental_field_iterator<T, ret_type> > {
 public:
   typedef element_iterator< T, T, ret_type,
 			    elemental_field_iterator<T, ret_type> > parent;
   typedef typename parent::it_type     it_type;
   typedef typename parent::data_type   data_type;
   typedef typename parent::return_type return_type;
   typedef typename parent::field_type  field_type;
   typedef typename parent::internal_iterator internal_iterator;
 public:
   elemental_field_iterator(const field_type & field,
 			   UInt n,
 			   const typename field_type::type_iterator & t_it,
 			   const typename field_type::type_iterator & t_it_end,
 			   const internal_iterator & it,
 			   ElementType element_type,
 			   const GhostType ghost_type = _not_ghost) :
     parent(field, n, t_it, t_it_end, it, element_type, ghost_type) { }
 
   return_type operator*(){
-    return *this->vit;
-  }
-};
-
-/* specialization for matrix */
-template<typename T>
-class DumperIOHelper::elemental_field_iterator<T, types::Matrix> : public element_iterator< T, T, types::Matrix,
-											    elemental_field_iterator<T, types::Matrix> > {
-public:
-  typedef element_iterator< T, T, types::Matrix,
-			    elemental_field_iterator<T, types::Matrix> > parent;
-  typedef typename parent::it_type     it_type;
-  typedef typename parent::data_type   data_type;
-  typedef typename parent::return_type return_type;
-  typedef typename parent::field_type  field_type;
-  typedef typename parent::internal_iterator internal_iterator;
-public:
-  elemental_field_iterator(const field_type & field,
-			   UInt n,
-			   const typename field_type::type_iterator & t_it,
-			   const typename field_type::type_iterator & t_it_end,
-			   const internal_iterator & it,
-			   ElementType element_type,
-			   const GhostType ghost_type = _not_ghost) :
-    parent(field, n, t_it, t_it_end, it, element_type, ghost_type) { }
-
-  return_type operator*(){
-    types::Matrix<T> & ret = *this->vit;
-    if(this->padding_n <= ret.rows() || this->padding_m <= ret.cols())
-      return *this->vit;
-    else {
-      UInt nb_data = getNbDataPerElem(*this->tit);
-      types::Matrix<T> tmp(this->padding_n, this->padding_m * nb_data);
-      for (UInt d = 0; d < nb_data; ++d)
-	for (UInt i = 0; i < ret.rows(); ++i)
-	  for (UInt j = 0; j < ret.cols(); ++j)
-	    tmp(i, j + d * this->padding_m) = ret(i, j + d * ret->cols);
-      return tmp;
-    }
+    return padding_helper.pad(*this->vit, this->padding_m, this->padding_n, this->getNbDataPerElem(*this->tit));
   }
+private:
+  PaddingHelper<T, ret_type> padding_helper;
 };
 
 /* -------------------------------------------------------------------------- */
 class DumperIOHelper::element_type_field_iterator : public element_iterator<UInt, iohelper::ElemType,
 									    types::Vector,
 									    element_type_field_iterator> {
 public:
   typedef element_iterator<UInt, iohelper::ElemType,
 			   types::Vector, element_type_field_iterator> parent;
 
   typedef typename parent::it_type     it_type;
   typedef typename parent::data_type   data_type;
   typedef typename parent::return_type return_type;
   typedef typename parent::field_type  field_type;
   typedef typename parent::internal_iterator internal_iterator;
 public:
   element_type_field_iterator(const field_type & field,
 			      UInt n,
 			      const typename field_type::type_iterator & t_it,
 			      const typename field_type::type_iterator & t_it_end,
 			      const internal_iterator & it,
 			      ElementType element_type,
 			      const GhostType ghost_type = _not_ghost) :
     parent(field, n, t_it, t_it_end, it, element_type, ghost_type) { }
 
   return_type operator*() {
     data_type type = DumperIOHelper::getIOHelperType(*tit);
     return return_type(1, type);
   }
 };
 
+
+/* -------------------------------------------------------------------------- */
+class DumperIOHelper::element_partition_field_iterator : public element_iterator<UInt, UInt,
+										 types::Vector,
+										 element_partition_field_iterator> {
+public:
+  typedef element_iterator<UInt, UInt,
+			   types::Vector, element_partition_field_iterator> parent;
+
+  typedef typename parent::it_type     it_type;
+  typedef typename parent::data_type   data_type;
+  typedef typename parent::return_type return_type;
+  typedef typename parent::field_type  field_type;
+  typedef typename parent::internal_iterator internal_iterator;
+public:
+  element_partition_field_iterator(const field_type & field,
+				   UInt n,
+				   const typename field_type::type_iterator & t_it,
+				   const typename field_type::type_iterator & t_it_end,
+				   const internal_iterator & it,
+				   ElementType element_type,
+				   const GhostType ghost_type = _not_ghost) :
+    parent(field, n, t_it, t_it_end, it, element_type, ghost_type) {
+    prank = StaticCommunicator::getStaticCommunicator().whoAmI();
+  }
+
+  return_type operator*() {
+    return return_type(1, prank);
+  }
+protected:
+  UInt prank;
+};
+
 /* -------------------------------------------------------------------------- */
 /* Fields type description                                                    */
 /* -------------------------------------------------------------------------- */
 template<typename T, class iterator_type, template<class> class ret_type>
 class DumperIOHelper::GenericElementalField : public Field {
 public:
   GenericElementalField(const ByElementTypeVector<T> & field,
 			UInt spatial_dimension = 0,
 			GhostType ghost_type = _not_ghost,
 			ElementKind element_kind = _ek_not_defined) :
     field(field), spatial_dimension(spatial_dimension),
     ghost_type(ghost_type), element_kind(element_kind), n(0), itn(0) {
     UInt nb_component;
     homogeneous = checkHomogeneity(field, nb_component, nb_total_element);
     if(homogeneous && n == 0) n = nb_component;
   }
 
   GenericElementalField(const ByElementTypeVector<T> & field,
 			UInt n,
 			UInt spatial_dimension = 0,
 			GhostType ghost_type = _not_ghost,
 			ElementKind element_kind = _ek_not_defined) :
     field(field), spatial_dimension(spatial_dimension),
     ghost_type(ghost_type), element_kind(element_kind), n(n), itn(0) {
     UInt nb_component;
     homogeneous = checkHomogeneity(field, nb_component, nb_total_element);
     if(!homogeneous) AKANTU_DEBUG_ERROR("This constructor cannot be used on non homogeneous data.");
   }
 
   typedef iterator_type iterator;
   typedef typename iterator::internal_iterator internal_iterator;
   typedef typename ByElementTypeVector<T>::type_iterator type_iterator;
   /* ------------------------------------------------------------------------ */
   virtual iterator begin() {
     type_iterator tit = field.firstType(spatial_dimension, ghost_type, element_kind);
     type_iterator end = field.lastType(spatial_dimension, ghost_type, element_kind);
 
     const Vector<T> & vect = field(*tit, ghost_type);
     UInt nb_data = getNbDataPerElem(*tit);
     UInt nb_component = vect.getNbComponent();
     UInt size = vect.getSize() / nb_data;
     UInt ln = nb_component;
     if(itn != 0) ln = itn;
 
     internal_iterator it = iterator_helper<T, ret_type>::begin(vect, ln, nb_component / ln * nb_data, size);
     iterator rit = iterator(field, n, tit, end, it, *tit, ghost_type);
     rit.setPadding(padding_n, padding_m);
     return rit;
   }
 
   virtual iterator end  () {
     type_iterator tit = field.firstType(spatial_dimension, ghost_type, element_kind);
     type_iterator end = field.lastType(spatial_dimension, ghost_type, element_kind);
 
     ElementType type = *tit;
     for (; tit != end; ++tit) type = *tit;
 
     const Vector<T> & vect = field(type, ghost_type);
     UInt nb_data = getNbDataPerElem(type);
     UInt nb_component = vect.getNbComponent();
     UInt size = vect.getSize() / nb_data;
     UInt ln = nb_component;
     if(itn != 0 ) ln = itn;
     internal_iterator it = iterator_helper<T, ret_type>::end(vect, ln, nb_component / ln * nb_data, size);
     iterator rit =  iterator(field, n, end, end, it, type, ghost_type);
     rit.setPadding(padding_n, padding_m);
     return rit;
 
   }
 
   virtual void registerToDumper(const std::string & id, iohelper::Dumper & dupmer) {
     dupmer.addElemDataField(id, *this);
   };
 
   bool isHomogeneous() { return homogeneous; }
   virtual UInt getDim() {
     if(padding_n && padding_m)
       return padding_m*padding_n;
     else return n;
   }
   UInt size() { return nb_total_element; }
 
 protected:
   virtual UInt getNbDataPerElem(const ElementType & type) { return 1; }
 
   virtual bool checkHomogeneity(const ByElementTypeVector<T> & field_to_check,
 				UInt & nb_comp, UInt & nb_elem) {
     type_iterator tit = field_to_check.firstType(spatial_dimension, ghost_type, element_kind);
     type_iterator end = field_to_check.lastType(spatial_dimension, ghost_type, element_kind);
     nb_elem = 0;
     nb_comp = 0;
     UInt nb_data = getNbDataPerElem(*tit);
 
     bool homogen = true;
     if(tit != end) {
       nb_comp = field_to_check(*tit, ghost_type).getNbComponent() * nb_data;
       for(;tit != end; ++tit) {
 	const Vector<T> & vect = field_to_check(*tit, ghost_type);
 	UInt nb_data_cur = getNbDataPerElem(*tit);
 	UInt nb_element = vect.getSize() / nb_data_cur;
 	UInt nb_comp_cur = vect.getNbComponent() * nb_data_cur;
 	if(homogen && nb_comp != nb_comp_cur) homogen = false;
 	nb_elem += nb_element;
       }
 
       if(!homogen) nb_comp = 0;
     }
 
     return homogen;
   }
 
 protected:
   const ByElementTypeVector<T> & field;
   UInt nb_total_element;
   UInt spatial_dimension;
   GhostType ghost_type;
   ElementKind element_kind;
   bool homogeneous;
   UInt n, itn;
 };
 
 /* -------------------------------------------------------------------------- */
 template<typename T, template<typename> class ret_type>
 class DumperIOHelper::ElementalField : public GenericElementalField<T, elemental_field_iterator<T, ret_type>, ret_type> {
 public:
   typedef elemental_field_iterator<T, ret_type> iterator;
 
   ElementalField(const ByElementTypeVector<T> & field,
 		 UInt spatial_dimension = 0,
 		 GhostType ghost_type = _not_ghost,
 		 ElementKind element_kind = _ek_not_defined) :
     GenericElementalField<T, iterator, ret_type>(field, spatial_dimension,
 						 ghost_type, element_kind) { }
 };
 
 template<typename T>
 class DumperIOHelper::ElementalField<T, types::Matrix> : public GenericElementalField<T, elemental_field_iterator<T, types::Matrix>, types::Matrix> {
 public:
   typedef elemental_field_iterator<T, types::Matrix> iterator;
 
   ElementalField(const ByElementTypeVector<T> & field,
 		 UInt n,
 		 UInt spatial_dimension = 0,
 		 GhostType ghost_type = _not_ghost,
 		 ElementKind element_kind = _ek_not_defined) :
     GenericElementalField<T, iterator, types::Matrix>(field, n, spatial_dimension,
 						      ghost_type, element_kind) { }
 };
 
 /* -------------------------------------------------------------------------- */
 class DumperIOHelper::ElementTypeField : public GenericElementalField<UInt,
 								      element_type_field_iterator,
 								      types::Vector> {
 public:
   typedef element_type_field_iterator iterator;
 private:
   typedef GenericElementalField<UInt, iterator, types::Vector> parent;
 public:
   /* ------------------------------------------------------------------------ */
   ElementTypeField(const Mesh & mesh,
 		   UInt spatial_dimension = 0,
 		   GhostType ghost_type = _not_ghost,
 		   ElementKind element_kind = _ek_not_defined) :
     parent(mesh.getConnectivities(), spatial_dimension, ghost_type, element_kind) {
     homogeneous = true;
   }
 
   virtual void registerToDumper(__attribute__((unused)) const std::string & id,
 			   iohelper::Dumper & dupmer) {
     dupmer.addElemDataField("element_type", *this);
   }
 
   UInt getDim() { return 1; }
 };
+
+
+/* -------------------------------------------------------------------------- */
+class DumperIOHelper::ElementPartitionField : public GenericElementalField<UInt,
+									   element_partition_field_iterator,
+									   types::Vector> {
+public:
+  typedef element_partition_field_iterator iterator;
+private:
+  typedef GenericElementalField<UInt, iterator, types::Vector> parent;
+public:
+  /* ------------------------------------------------------------------------ */
+  ElementPartitionField(const Mesh & mesh,
+			UInt spatial_dimension = 0,
+			GhostType ghost_type = _not_ghost,
+			ElementKind element_kind = _ek_not_defined) :
+    parent(mesh.getConnectivities(), spatial_dimension, ghost_type, element_kind) {
+    homogeneous = true;
+  }
+
+  UInt getDim() { return 1; }
+};
+
diff --git a/src/io/dumper/dumper_iohelper_tmpl_homogenizing_field.hh b/src/io/dumper/dumper_iohelper_tmpl_homogenizing_field.hh
index 88970881e..c8679f77e 100644
--- a/src/io/dumper/dumper_iohelper_tmpl_homogenizing_field.hh
+++ b/src/io/dumper/dumper_iohelper_tmpl_homogenizing_field.hh
@@ -1,219 +1,220 @@
 /**
  * @file   dumper_iohelper_tmpl_homogenizing_field.hh
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Thu Oct 25 14:42:24 2012
  *
  * @brief  description of field homogenizing field
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 
 __END_AKANTU__
 
 #include "solid_mechanics_model.hh"
 
 __BEGIN_AKANTU__
 
 
 /* -------------------------------------------------------------------------- */
 /* Homogenizing containers                                                    */
 /* -------------------------------------------------------------------------- */
 template<typename T, class Container, template<class> class sub_type>
 class DumperIOHelper::PaddingHomogenizingFunctor {
 public:
   PaddingHomogenizingFunctor(Container & cont) : cont(cont){
   }
 
 
   UInt getNbComponent() {
     typename Container::iterator it  = cont.begin();
     typename Container::iterator end = cont.end();
     UInt nb_comp = 0;
     for (; it != end; ++it) nb_comp = std::max(nb_comp, (*it).size());
     return nb_comp;
   }
 
   sub_type<T> operator()(const sub_type<T> & vect, __attribute__((unused)) const ElementType & type) {
     return vect;
   }
 
 protected:
   Container & cont;
 };
 
 /* -------------------------------------------------------------------------- */
 template<typename T, class Container, template<class> class sub_type>
 class DumperIOHelper::AvgHomogenizingFunctor {
 public:
   AvgHomogenizingFunctor(Container & cont) : cont(cont){
   }
 
   UInt getNbComponent() {
     typename Container::iterator it  = cont.begin();
     typename Container::iterator end = cont.end();
     UInt nb_comp = 0;
     UInt i = 0;
     for (; it != end; ++it) {
       ElementType type = it.getType();
       UInt nb_quad = cont.getFEM().getNbQuadraturePoints(type);
       nb_comp = std::max(nb_comp, (*it).size() / nb_quad);
       ++i;
     }
     return nb_comp;
   }
 
   sub_type<T> operator()(const sub_type<T> & vect, const ElementType & type) {
     UInt nb_quad = cont.getFEM().getNbQuadraturePoints(type);
     if(nb_quad == 1) {
       return vect;
     } else {
       UInt s = vect.size() / nb_quad;
       sub_type<T> v(s);
       for (UInt i = 0; i < s; ++i) {
 	for (UInt q = 0; q < nb_quad; ++q) {
 	  v[i] += vect[i + q*s] / Real(nb_quad);
 	}
       }
       return v;
     }
   }
 
 protected:
   Container & cont;
 };
 
 /* specialization */
 template<typename T, class Container>
 class DumperIOHelper::AvgHomogenizingFunctor<T, Container, types::Matrix> {
 public:
   AvgHomogenizingFunctor(Container & cont) : cont(cont){
   }
 
   UInt getNbComponent() {
     typename Container::iterator it  = cont.begin();
     typename Container::iterator end = cont.end();
     UInt nb_comp = 0;
     UInt i = 0;
     for (; it != end; ++it) {
       ElementType type = it.getType();
       UInt nb_quad = cont.getFEM().getNbQuadraturePoints(type);
       nb_comp = std::max(nb_comp, (*it).size() / nb_quad);
       ++i;
     }
     return nb_comp;
   }
 
   types::Matrix<T> operator()(const types::Matrix<T> & vect,
 			      const ElementType & type) {
     UInt nb_quad = cont.getFEM().getNbQuadraturePoints(type);
     if(nb_quad == 1) {
       return vect;
     } else {
-      UInt n = vect.rows();
-      UInt m = vect.cols() / nb_quad;
-      types::Matrix<T> v(n, m);
-      for (UInt i = 0; i < n; ++i)
-	for (UInt j = 0; j < m; ++j)
-	  for (UInt q = 0; q < nb_quad; ++q)
-	    v(i, j) += vect(i, j + q*m) / Real(nb_quad);
+      UInt m = vect.rows();
+      UInt n = vect.cols() / nb_quad;
+      types::Matrix<T> v(m, n);
+      for (UInt q = 0; q < nb_quad; ++q)
+	for (UInt i = 0; i < m; ++i)
+	  for (UInt j = 0; j < n; ++j)
+	    v(i, j) += vect(i, j + q*n) / Real(nb_quad);
       return v;
     }
   }
 
 protected:
   Container & cont;
 };
 
 /* -------------------------------------------------------------------------- */
 /* -------------------------------------------------------------------------- */
-template<typename T, template< typename, template<class> class> class Container,
+template<typename T, template< typename, template<class> class, template<typename, template<class> class> class> class Container,
 	 template<typename, class, template<class> class> class Funct,
-	 template<typename> class ret_type>
+	 template<typename> class ret_type,
+	 template<typename, template<class> class> class int_sub_iterator>
 class DumperIOHelper::HomogenizedField : public Field {
 protected:
-  typedef typename Container<T, ret_type>::iterator sub_iterator;
-  typedef Funct<T, Container<T, ret_type>, ret_type> Functor;
+  typedef typename Container<T, ret_type, int_sub_iterator>::iterator sub_iterator;
+  typedef Funct<T, Container<T, ret_type, int_sub_iterator>, ret_type> Functor;
 public:
   class iterator {
   public:
     iterator(const sub_iterator & it, Functor & func) : it(it), func(func) {}
 
     bool operator!=(const iterator & it) { return it.it != this->it; }
     iterator operator++() { ++this->it; return *this; }
 
     ret_type<T> operator*() {
       return func(*it, it.getType());
     }
 
   protected:
     sub_iterator it;
     Functor & func;
   };
 
   HomogenizedField(const SolidMechanicsModel & model,
 		   const std::string & field_id,
 		   UInt spatial_dimension = 0,
 		   GhostType ghost_type = _not_ghost,
 		   ElementKind element_kind = _ek_not_defined) :
     cont(model, field_id, spatial_dimension, ghost_type, element_kind),
     funct(cont) {
     nb_component = funct.getNbComponent();
   }
 
   HomogenizedField(const SolidMechanicsModel & model,
 		   const std::string & field_id,
 		   UInt n,
 		   UInt spatial_dimension = 0,
 		   GhostType ghost_type = _not_ghost,
 		   ElementKind element_kind = _ek_not_defined) :
     cont(model, field_id, n, spatial_dimension, ghost_type, element_kind),
     funct(cont) {
     nb_component = funct.getNbComponent();
   }
 
   iterator begin() { return iterator(cont.begin(), funct); }
   iterator end  () { return iterator(cont.end(),   funct); }
 
   virtual void registerToDumper(const std::string & id,
 				iohelper::Dumper & dupmer) {
     dupmer.addElemDataField(id, *this);
   }
 
   UInt getDim() { 
     if(padding_n && padding_m)
       return padding_m*padding_n;
     else return nb_component;
   }
 
   UInt size() { return cont.size(); }
 
   UInt isHomogeneous() { return true; }
 
   void setPadding(UInt n, UInt m = 1) {
     Field::setPadding(n, m);
     cont.setPadding(n, m);
   }
 protected:
-  Container<T, ret_type> cont;
+  Container<T, ret_type, int_sub_iterator> cont;
   Functor funct;
   UInt nb_component;
 };
diff --git a/src/io/dumper/dumper_iohelper_tmpl_material_internal_field.hh b/src/io/dumper/dumper_iohelper_tmpl_material_internal_field.hh
index d702daddb..fedb33e4a 100644
--- a/src/io/dumper/dumper_iohelper_tmpl_material_internal_field.hh
+++ b/src/io/dumper/dumper_iohelper_tmpl_material_internal_field.hh
@@ -1,225 +1,364 @@
 /**
  * @file   dumper_iohelper_tmpl_material_internal_field.hh
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Thu Oct 25 14:41:17 2012
  *
  * @brief  description of material internal field
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
+
+/* -------------------------------------------------------------------------- */
+/* -------------------------------------------------------------------------- */
+template<class T, template<class> class R>
+class DumperIOHelper::MaterialPaddingHelper : public PaddingHelper<T, R> {
+public:
+  MaterialPaddingHelper(const SolidMechanicsModel & model) : model(model) { }
+
+  inline R<T> pad(const R<T> & in, UInt padding_m, UInt padding_n, UInt nb_data, UInt material_id) {
+    return PaddingHelper<T, R>::pad(in, padding_m, padding_n, nb_data);
+  }
+
+protected:
+  const SolidMechanicsModel & model;
+};
+
+/* -------------------------------------------------------------------------- */
+template<class T, template<class> class R>
+class DumperIOHelper::StressPaddingHelper : public MaterialPaddingHelper<T, R> {
+public:
+  StressPaddingHelper(const SolidMechanicsModel & model) : MaterialPaddingHelper<T, R>(model) {
+    AKANTU_DEBUG_ERROR("This class exists only to pad stress (types::Matrix<Real>) to 3D");
+  }
+
+  inline R<T> pad(const R<T> & in, UInt padding_m, UInt padding_n, UInt nb_data, UInt material_id) {}
+protected:
+  const Material & material;
+};
+
+
+template<>
+class DumperIOHelper::StressPaddingHelper<Real,
+					  types::Matrix> : public MaterialPaddingHelper<Real,
+											types::Matrix> {
+public:
+  StressPaddingHelper(const SolidMechanicsModel & model) :
+  MaterialPaddingHelper<Real, types::Matrix>(model) { }
+
+  inline types::Matrix<Real> pad(const types::Matrix<Real> & in,
+				 UInt padding_m, UInt padding_n, UInt nb_data,
+				 UInt material_id) {
+    if(padding_m <= in.rows() && padding_n * nb_data <= in.cols())
+      return in;
+    else {
+      AKANTU_DEBUG_ASSERT(padding_m == 3 && padding_n == 3, "This function can only pad to 3D");
+      types::Matrix<Real> stress =
+	MaterialPaddingHelper<Real, types::Matrix>::pad(in, 3, 3, nb_data, material_id);
+      if(in.rows() == 2 && in.cols() == 2 * nb_data) {
+	const Material & material = model.getMaterial(material_id);
+	bool plane_strain = !material.getParam<bool>("Plane_Stress");
+	if(plane_strain) {
+	  Real nu = material.getParam<Real>("nu");
+	  for (UInt d = 0; d < nb_data; ++d) {
+	    stress(2, 2 + 3*d) = nu * (stress(0, 0 + 3*d) + stress(1, 1 + 3*d));
+	  }
+	}
+      }
+      return stress;
+    }
+  }
+};
+
+/* -------------------------------------------------------------------------- */
+template<class T, template<class> class R>
+class DumperIOHelper::StrainPaddingHelper : public MaterialPaddingHelper<T, R> {
+public:
+  StrainPaddingHelper(const SolidMechanicsModel & model) : MaterialPaddingHelper<T, R>(model) {
+    AKANTU_DEBUG_ERROR("This class exists only to pad strain (types::Matrix<Real>) to 3D");
+  }
+
+  inline R<T> pad(const R<T> & in, UInt padding_m, UInt padding_n, UInt nb_data, UInt material_id) {}
+};
+
+
+template<>
+class DumperIOHelper::StrainPaddingHelper<Real, types::Matrix> : public MaterialPaddingHelper<Real, types::Matrix> {
+public:
+  StrainPaddingHelper(const SolidMechanicsModel & model) :
+  MaterialPaddingHelper<Real, types::Matrix>(model) { }
+
+  inline types::Matrix<Real> pad(const types::Matrix<Real> & in,
+				 UInt padding_m, UInt padding_n, UInt nb_data,
+				 UInt material_id) {
+    if(padding_m <= in.rows() && padding_n * nb_data <= in.cols())
+      return in;
+    else {
+      AKANTU_DEBUG_ASSERT(padding_m == 3 && padding_n == 3, "This function can only pad to 3D");
+      types::Matrix<Real> strain =
+	MaterialPaddingHelper<Real, types::Matrix>::pad(in, 3, 3, nb_data, material_id);
+      if(in.rows() == 2 && in.cols() == 2 * nb_data) {
+	const Material & material = model.getMaterial(material_id);
+	bool plane_stress = material.getParam<bool>("Plane_Stress");
+	if(plane_stress) {
+	  Real nu = material.getParam<Real>("nu");
+	  for (UInt d = 0; d < nb_data; ++d) {
+	    strain(2, 2 + 3*d) = nu / (nu - 1) * (strain(0, 0 + 3*d) + strain(1, 1 + 3*d));
+	  }
+	}
+      }
+      return strain;
+    }
+  }
+};
+
+
 /* -------------------------------------------------------------------------- */
 /* Element material field iterator/container                                  */
 /* -------------------------------------------------------------------------- */
-template<typename T, template<class> class ret_type>
-class DumperIOHelper::internal_material_field_iterator : public quadrature_point_iterator< UInt, T, ret_type,
-											   internal_material_field_iterator<T, ret_type> > {
+template<typename T,
+	 template<class> class ret_type,
+	 template<typename, template<class> class> class padding_helper_type,
+	 template<typename, template<class> class> class int_iterator>
+class DumperIOHelper::generic_internal_material_field_iterator : public quadrature_point_iterator< UInt, T, ret_type,
+												   int_iterator<T, ret_type> > {
 public:
-  typedef quadrature_point_iterator<UInt, T, ret_type, internal_material_field_iterator<T, ret_type> > parent;
+  typedef quadrature_point_iterator<UInt, T, ret_type, int_iterator<T, ret_type> > parent;
   typedef typename parent::it_type     it_type;
   typedef typename parent::data_type   data_type;
   typedef typename parent::return_type return_type;
   typedef typename parent::field_type  field_type;
   typedef typename parent::internal_iterator internal_iterator;
   typedef typename Vector<T>::template const_iterator< ret_type<T> > internal_material_iterator;
 public:
-  internal_material_field_iterator(const field_type & element_material,
-				   UInt n,
-				   const typename field_type::type_iterator & t_it,
-				   const typename field_type::type_iterator & t_it_end,
-				   const internal_iterator & it,
-				   ElementType element_type,
-				   const GhostType ghost_type = _not_ghost) :
+  generic_internal_material_field_iterator(const field_type & element_material,
+					   UInt n,
+					   const typename field_type::type_iterator & t_it,
+					   const typename field_type::type_iterator & t_it_end,
+					   const internal_iterator & it,
+					   ElementType element_type,
+					   const GhostType ghost_type = _not_ghost) :
     parent(element_material, 2, t_it, t_it_end,
-	   it, element_type, ghost_type), out_n(n) { }
+	   it, element_type, ghost_type),
+    out_n(n), model(NULL), padding_helper(NULL) { }
+
+  ~generic_internal_material_field_iterator() { delete padding_helper; }
+
+  generic_internal_material_field_iterator(const generic_internal_material_field_iterator & it) : parent(it) {
+    out_n = it.out_n;
+    field_id = it.field_id;
+    if(it.model) {
+      model = it.model;
+      padding_helper = new padding_helper_type<T, ret_type>(*model);
+    }
+  }
 
   return_type operator*() {
     const ret_type<UInt> & material_id = *this->vit;
     UInt nb_data = this->fem->getNbQuadraturePoints(*this->tit);
     try {
       const Vector<T> & vect =
-	model->getMaterial(material_id(1)).getVector(field_id,
+	model->getMaterial(material_id[1]).getVector(field_id,
 						     *this->tit,
 						     this->ghost_type);
       internal_material_iterator it
 	= iterator_helper<T, ret_type>::begin(vect, out_n,
 					      vect.getNbComponent() / out_n * nb_data,
 					      vect.getSize() / nb_data);
-      it += material_id(0);
+      it += material_id[0];
 
-      return *it;
+      return padding_helper->pad(*it, this->padding_m, this->padding_n, nb_data, material_id[1]);
     } catch (...) {
       return return_type();
     }
   }
 
-  void setModel(const SolidMechanicsModel & model) { this->model = &model; }
+  void setModel(const SolidMechanicsModel & model) {
+    this->model = &model;
+    this->padding_helper = new padding_helper_type<T, ret_type>(model);
+  }
   void setFieldID(const std::string & field_id) { this->field_id = field_id; }
 
 protected:
   virtual UInt getNbDataPerElem(const ElementType & type) { return 1; }
 protected:
+  UInt out_n;
   const SolidMechanicsModel * model;
   std::string field_id;
-  UInt out_n;
+  padding_helper_type<T, ret_type> * padding_helper;
 };
 
-/* specialization */
-template<typename T>
-class DumperIOHelper::internal_material_field_iterator<T, types::Matrix> : public quadrature_point_iterator< UInt, T, types::Matrix,
-											   internal_material_field_iterator<T, types::Matrix> > {
+/* -------------------------------------------------------------------------- */
+template<typename T, template<class> class ret_type>
+class DumperIOHelper::internal_material_field_iterator :
+  public generic_internal_material_field_iterator<T, ret_type,
+						  MaterialPaddingHelper,
+						  internal_material_field_iterator> {
 public:
-  typedef quadrature_point_iterator<UInt, T, types::Matrix, internal_material_field_iterator<T, types::Matrix> > parent;
+  typedef generic_internal_material_field_iterator<T, ret_type, MaterialPaddingHelper,
+						   internal_material_field_iterator> parent;
   typedef typename parent::it_type     it_type;
   typedef typename parent::data_type   data_type;
   typedef typename parent::return_type return_type;
   typedef typename parent::field_type  field_type;
   typedef typename parent::internal_iterator internal_iterator;
-  typedef typename Vector<T>::template const_iterator< types::Matrix<T> > internal_material_iterator;
+  typedef typename Vector<T>::template const_iterator< ret_type<T> > internal_material_iterator;
 public:
   internal_material_field_iterator(const field_type & element_material,
 				   UInt n,
 				   const typename field_type::type_iterator & t_it,
 				   const typename field_type::type_iterator & t_it_end,
 				   const internal_iterator & it,
 				   ElementType element_type,
 				   const GhostType ghost_type = _not_ghost) :
-    parent(element_material, 2, t_it, t_it_end,
-	   it, element_type, ghost_type), out_n(n) { }
-
-  types::Matrix<T> operator*() {
-    const types::Matrix<UInt> & material_id = *this->vit;
-    UInt nb_data = this->fem->getNbQuadraturePoints(*this->tit);
-    try {
-      const Vector<T> & vect =
-	model->getMaterial(material_id(1, 0)).getVector(field_id,
-							*this->tit,
-							this->ghost_type);
-      UInt ln = out_n;
-      if(out_n == 0) ln = vect.getNbComponent();
-      internal_material_iterator it
-	= iterator_helper<T, types::Matrix>::begin(vect, ln, vect.getNbComponent() / ln * nb_data,
-						   vect.getSize() / nb_data);
-      it += material_id(0, 0);
-
-      const types::Matrix<T> & ret = *it;
-      if(this->padding_n <= ret.rows() || this->padding_m <= ret.cols())
-	return ret;
-      else {
-	types::Matrix<T> tmp(this->padding_n, this->padding_m * nb_data);
-	for (UInt d = 0; d < nb_data; ++d)
-	  for (UInt i = 0; i < ret.rows(); ++i)
-	    for (UInt j = 0; j < ret.cols(); ++j)
-	      tmp(i, j + d * this->padding_m) = ret(i, j + d * ret.cols());
-	return tmp;
-      }
-    } catch (...) {
-      return types::Matrix<T>();
-    }
-  }
-
-  void setModel(const SolidMechanicsModel & model) { this->model = &model; }
-  void setFieldID(const std::string & field_id) { this->field_id = field_id; }
+    parent(element_material, n, t_it, t_it_end,
+	   it, element_type, ghost_type) {  }
+};
 
-protected:
-  virtual UInt getNbDataPerElem(const ElementType & type) { return 1; }
-protected:
-  const SolidMechanicsModel * model;
-  std::string field_id;
-  UInt out_n;
+/* -------------------------------------------------------------------------- */
+template<typename T, template<class> class ret_type>
+class DumperIOHelper::material_stress_field_iterator :
+  public generic_internal_material_field_iterator<T, ret_type, StressPaddingHelper,
+						  material_stress_field_iterator> {
+public:
+  typedef generic_internal_material_field_iterator<T, ret_type, StressPaddingHelper,
+						   material_stress_field_iterator> parent;
+  typedef typename parent::it_type     it_type;
+  typedef typename parent::data_type   data_type;
+  typedef typename parent::return_type return_type;
+  typedef typename parent::field_type  field_type;
+  typedef typename parent::internal_iterator internal_iterator;
+  typedef typename Vector<T>::template const_iterator< ret_type<T> > internal_material_iterator;
+public:
+  material_stress_field_iterator(const field_type & element_material,
+				 UInt n,
+				 const typename field_type::type_iterator & t_it,
+				 const typename field_type::type_iterator & t_it_end,
+				 const internal_iterator & it,
+				 ElementType element_type,
+				 const GhostType ghost_type = _not_ghost) :
+    parent(element_material, n, t_it, t_it_end,
+	   it, element_type, ghost_type) { }
 };
 
 /* -------------------------------------------------------------------------- */
 template<typename T, template<class> class ret_type>
+class DumperIOHelper::material_strain_field_iterator :
+  public generic_internal_material_field_iterator<T, ret_type, StrainPaddingHelper,
+						  material_strain_field_iterator> {
+public:
+  typedef generic_internal_material_field_iterator<T, ret_type, StrainPaddingHelper,
+						   material_strain_field_iterator> parent;
+  typedef typename parent::it_type     it_type;
+  typedef typename parent::data_type   data_type;
+  typedef typename parent::return_type return_type;
+  typedef typename parent::field_type  field_type;
+  typedef typename parent::internal_iterator internal_iterator;
+  typedef typename Vector<T>::template const_iterator< ret_type<T> > internal_material_iterator;
+public:
+  material_strain_field_iterator(const field_type & element_material,
+				 UInt n,
+				 const typename field_type::type_iterator & t_it,
+				 const typename field_type::type_iterator & t_it_end,
+				 const internal_iterator & it,
+				 ElementType element_type,
+				 const GhostType ghost_type = _not_ghost) :
+    parent(element_material, n, t_it, t_it_end,
+	   it, element_type, ghost_type) { }
+};
+
+/* -------------------------------------------------------------------------- */
+template<typename T, template<class> class ret_type,
+	 template<typename, template<class> class> class iterator_type>
 class DumperIOHelper::InternalMaterialField : public GenericQuadraturePointsField<UInt,
-								  internal_material_field_iterator<T, ret_type>,
+								  iterator_type<T, ret_type>,
 								  ret_type> {
 public:
-  typedef internal_material_field_iterator<T, ret_type> iterator;
+  typedef iterator_type<T, ret_type> iterator;
 private:
   typedef GenericQuadraturePointsField<UInt, iterator, ret_type> parent;
 public:
   /* ------------------------------------------------------------------------ */
   InternalMaterialField(const SolidMechanicsModel & model,
 			const std::string & field_id,
 			UInt spatial_dimension = 0,
 			GhostType ghost_type = _not_ghost,
 			ElementKind element_kind = _ek_not_defined) :
     parent(model.getFEM(), model.getElementIndexByMaterial(), spatial_dimension, ghost_type, element_kind),
     model(model), field_id(field_id) {
     init();
   }
 
   InternalMaterialField(const SolidMechanicsModel & model,
 			const std::string & field_id,
 			UInt n,
 			UInt spatial_dimension = 0,
 			GhostType ghost_type = _not_ghost,
 			ElementKind element_kind = _ek_not_defined) :
     parent(model.getFEM(), model.getElementIndexByMaterial(), n, spatial_dimension, ghost_type, element_kind),
     model(model), field_id(field_id) {
     init();
   }
 
   virtual iterator begin() {
     iterator it = parent::begin();
     it.setItSize(2,1);
     it.setModel(model);
     it.setFieldID(field_id);
     return it;
   }
 
   virtual iterator end  () {
     iterator it = parent::end();
     it.setItSize(2,1);
     it.setModel(model);
     it.setFieldID(field_id);
     return it;
   }
 
 protected:
   void init() {
     typename ByElementTypeVector<UInt>::type_iterator tit =
       this->field.firstType(this->spatial_dimension, this->ghost_type, this->element_kind);
     typename ByElementTypeVector<UInt>::type_iterator end =
       this->field.lastType (this->spatial_dimension, this->ghost_type, this->element_kind);
 
     UInt nb_materials = model.getNbMaterials();
     bool found = false;
     for(;tit != end; ++tit) {
       //      UInt nb_quad = this->fem.getNbQuadraturePoints(*tit);
       for (UInt ma = 0; ma < nb_materials; ++ma) {
 	const Material & mat = model.getMaterial(ma);
 	try {
 	  const Vector<Real> & vect __attribute__((unused)) = mat.getVector(field_id, *tit, this->ghost_type);
 	  found = true;
 	} catch (...) { };
       }
     }
 
     if(!found) AKANTU_DEBUG_ERROR("The field " << field_id << " does not exists in any materials");
   }
 
   virtual UInt getNbDataPerElem(const ElementType & type) { return 1; }
 
 protected:
   const SolidMechanicsModel & model;
   std::string field_id;
 };
diff --git a/src/model/solid_mechanics/material.cc b/src/model/solid_mechanics/material.cc
index 0ae408306..a2016b352 100644
--- a/src/model/solid_mechanics/material.cc
+++ b/src/model/solid_mechanics/material.cc
@@ -1,985 +1,985 @@
 /**
  * @file   material.cc
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Tue Jul 27 11:43:41 2010
  *
  * @brief  Implementation of the common part of the material class
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 #include "material.hh"
 #include "solid_mechanics_model.hh"
 #include "sparse_matrix.hh"
 #include "dof_synchronizer.hh"
 
 /* -------------------------------------------------------------------------- */
 
 
 __BEGIN_AKANTU__
 
 /* -------------------------------------------------------------------------- */
 Material::Material(SolidMechanicsModel & model, const ID & id) :
   Memory(model.getMemoryID()),
   id(id),
   name(""),
   model(&model),
   stress("stress", id),
   strain("strain", id),
   element_filter("element_filter", id),
   //  potential_energy_vector(false),
   potential_energy("potential_energy", id),
   is_non_local(false),
   interpolation_inverse_coordinates("interpolation inverse coordinates", id),
   interpolation_points_matrices("interpolation points matrices", id),
   is_init(false) {
   AKANTU_DEBUG_IN();
 
   registerParam("rho",  rho,                 0., ParamAccessType(_pat_parsable | _pat_modifiable), "Density");
   registerParam("id",   this->id,                _pat_readable);
   registerParam("name", name,     std::string(), ParamAccessType(_pat_parsable | _pat_readable));
 
   spatial_dimension = this->model->getSpatialDimension();
 
   /// allocate strain stress for local elements
   initInternalVector(strain, spatial_dimension * spatial_dimension);
   initInternalVector(stress, spatial_dimension * spatial_dimension);
 
   /// for each connectivity types allocate the element filer array of the material
   initInternalVector(element_filter, 1, true);
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 Material::~Material() {
   AKANTU_DEBUG_IN();
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 bool Material::parseParam(const std::string & key, const std::string & value,
 			__attribute__ ((unused)) const ID & id) {
   try {
     params.parseParam(key, value);
   } catch(...) { return false; }
   return true;
 }
 /* -------------------------------------------------------------------------- */
 void Material::initMaterial() {
   AKANTU_DEBUG_IN();
 
   resizeInternalVector(stress);
   resizeInternalVector(strain);
 
   is_init = true;
 
   AKANTU_DEBUG_OUT();
 }
 /* -------------------------------------------------------------------------- */
 template<typename T>
 void Material::initInternalVector(ByElementTypeVector<T> & vect,
 				  UInt nb_component,
 				  bool temporary,
 				  ElementKind element_kind) {
   AKANTU_DEBUG_IN();
 
   model->getFEM().getMesh().initByElementTypeVector(vect,
 						    nb_component,
 						    spatial_dimension,
 						    false,
 						    element_kind);
 
   if(!temporary)
     registerInternal(vect);
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 template<> void Material::registerInternal<Real>(ByElementTypeVector<Real> & vect) {
   internal_vectors_real[vect.getID()] = &vect;
 }
 template<> void Material::registerInternal<UInt>(ByElementTypeVector<UInt> & vect) {
   internal_vectors_uint[vect.getID()] = &vect;
 }
 
 
 /* -------------------------------------------------------------------------- */
 template<typename T>
 void Material::resizeInternalVector(ByElementTypeVector<T> & by_el_type_vect,
 				    ElementKind element_kind) const {
   AKANTU_DEBUG_IN();
 
   FEM * fem = & model->getFEM();
 
   if (element_kind == _ek_cohesive)
       fem = & model->getFEM("CohesiveFEM");
 
   const Mesh & mesh = fem->getMesh();
   for(UInt g = _not_ghost; g <= _ghost; ++g) {
     GhostType gt = (GhostType) g;
 
     Mesh::type_iterator it  = mesh.firstType(spatial_dimension, gt, element_kind);
     Mesh::type_iterator end = mesh.lastType(spatial_dimension, gt, element_kind);
     for(; it != end; ++it) {
       const Vector<UInt> & elem_filter = element_filter(*it, gt);
 
       UInt nb_element           = elem_filter.getSize();
       UInt nb_quadrature_points = fem->getNbQuadraturePoints(*it, gt);
       UInt new_size = nb_element * nb_quadrature_points;
 
       Vector<T> & vect = by_el_type_vect(*it, gt);
       vect.resize(new_size);
     }
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 /**
  * Compute  the  residual  by  assembling  @f$\int_{e}  \sigma_e  \frac{\partial
  * \varphi}{\partial X} dX @f$
  *
  * @param[in] displacements nodes displacements
  * @param[in] ghost_type compute the residual for _ghost or _not_ghost element
  */
 void Material::updateResidual(GhostType ghost_type) {
   AKANTU_DEBUG_IN();
 
   computeAllStresses(ghost_type);
 
   assembleResidual(ghost_type);
 
   AKANTU_DEBUG_OUT();
 }
 
 
 /* -------------------------------------------------------------------------- */
 void Material::assembleResidual(GhostType ghost_type) {
   AKANTU_DEBUG_IN();
 
   UInt spatial_dimension = model->getSpatialDimension();
 
   Vector<Real> & residual = const_cast<Vector<Real> &>(model->getResidual());
 
   Mesh & mesh = model->getFEM().getMesh();
   Mesh::type_iterator it = mesh.firstType(spatial_dimension, ghost_type);
   Mesh::type_iterator last_type = mesh.lastType(spatial_dimension, ghost_type);
   for(; it != last_type; ++it) {
     const Vector<Real> & shapes_derivatives = model->getFEM().getShapesDerivatives(*it, ghost_type);
 
     Vector<UInt> & elem_filter = element_filter(*it, ghost_type);
 
     UInt size_of_shapes_derivatives = shapes_derivatives.getNbComponent();
     UInt nb_nodes_per_element       = Mesh::getNbNodesPerElement(*it);
     UInt nb_quadrature_points       = model->getFEM().getNbQuadraturePoints(*it, ghost_type);
 
     UInt nb_element = elem_filter.getSize();
 
     /// compute @f$\sigma \frac{\partial \varphi}{\partial X}@f$ by @f$\mathbf{B}^t \mathbf{\sigma}_q@f$
     Vector<Real> * sigma_dphi_dx =
       new Vector<Real>(nb_element*nb_quadrature_points, size_of_shapes_derivatives, "sigma_x_dphi_/_dX");
 
     Real * shapesd           = shapes_derivatives.storage();
     Real * shapesd_val;
     UInt * elem_filter_val   = elem_filter.storage();
 
     Vector<Real> * shapesd_filtered =
       new Vector<Real>(nb_element*nb_quadrature_points, size_of_shapes_derivatives, "filtered shapesd");
     Real * shapesd_filtered_val = shapesd_filtered->values;
 
     for (UInt el = 0; el < nb_element; ++el) {
       shapesd_val = shapesd + elem_filter_val[el] * size_of_shapes_derivatives * nb_quadrature_points;
       memcpy(shapesd_filtered_val, shapesd_val,
 	     size_of_shapes_derivatives * nb_quadrature_points * sizeof(Real));
       shapesd_filtered_val += size_of_shapes_derivatives * nb_quadrature_points;
     }
 
     Vector<Real> & stress_vect = stress(*it, ghost_type);
     // Vector<Real>::iterator<types::Matrix> sigma = stress_vect.begin(spatial_dimension, spatial_dimension);
     // Vector<Real>::iterator<types::Matrix> sigma_end = stress_vect.end(spatial_dimension, spatial_dimension);
     // Vector<Real>::iterator<types::Matrix> nabla_B = shapesd_filtered->begin(nb_nodes_per_element, spatial_dimension);
     // Vector<Real>::iterator<types::Matrix> sigma_dphi_dx_it = sigma_dphi_dx->begin(nb_nodes_per_element, spatial_dimension);
 
     // for (; sigma != sigma_end; ++sigma, ++nabla_B, ++sigma_dphi_dx_it) {
     //   sigma_dphi_dx_it->mul<true,false>(*nabla_B, *sigma);
     // }
 
     Math::matrix_matrixt(nb_nodes_per_element, spatial_dimension, spatial_dimension,
 			 *shapesd_filtered,
 			 stress_vect,
 			 *sigma_dphi_dx);
 
     delete shapesd_filtered;
 
     /**
      * compute @f$\int \sigma  * \frac{\partial \varphi}{\partial X}dX@f$ by  @f$ \sum_q \mathbf{B}^t
      * \mathbf{\sigma}_q \overline w_q J_q@f$
      */
     Vector<Real> * int_sigma_dphi_dx = new Vector<Real>(nb_element, nb_nodes_per_element * spatial_dimension,
 							"int_sigma_x_dphi_/_dX");
 
     model->getFEM().integrate(*sigma_dphi_dx, *int_sigma_dphi_dx,
 			      size_of_shapes_derivatives,
 			      *it, ghost_type,
 			      &elem_filter);
     delete sigma_dphi_dx;
 
     /// assemble
     model->getFEM().assembleVector(*int_sigma_dphi_dx, residual,
 				   model->getDOFSynchronizer().getLocalDOFEquationNumbers(),
 				   residual.getNbComponent(),
 				   *it, ghost_type, &elem_filter, -1);
     delete int_sigma_dphi_dx;
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 /**
  * Compute  the  stress from the strain
  *
  * @param[in] current_position nodes postition + displacements
  * @param[in] ghost_type compute the residual for _ghost or _not_ghost element
  */
 void Material::computeAllStresses(GhostType ghost_type) {
   AKANTU_DEBUG_IN();
 
   resizeInternalVector(stress);
   resizeInternalVector(strain);
 
   UInt spatial_dimension = model->getSpatialDimension();
 
   Mesh::type_iterator it = model->getFEM().getMesh().firstType(spatial_dimension, ghost_type);
   Mesh::type_iterator last_type = model->getFEM().getMesh().lastType(spatial_dimension, ghost_type);
 
   for(; it != last_type; ++it) {
     Vector<UInt> & elem_filter = element_filter(*it, ghost_type);
     Vector<Real> & strain_vect = strain(*it, ghost_type);
 
     /// compute @f$\nabla u@f$
     model->getFEM().gradientOnQuadraturePoints(model->getDisplacement(), strain_vect,
 					       spatial_dimension,
 					       *it, ghost_type, &elem_filter);
 
     /// compute @f$\mathbf{\sigma}_q@f$ from @f$\nabla u@f$
     computeStress(*it, ghost_type);
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void Material::setToSteadyState(GhostType ghost_type) {
   AKANTU_DEBUG_IN();
 
   const Vector<Real> & displacement = model->getDisplacement();
 
   resizeInternalVector(strain);
 
   UInt spatial_dimension = model->getSpatialDimension();
 
   Mesh::type_iterator it = model->getFEM().getMesh().firstType(spatial_dimension, ghost_type);
   Mesh::type_iterator last_type = model->getFEM().getMesh().lastType(spatial_dimension, ghost_type);
 
   for(; it != last_type; ++it) {
     Vector<UInt> & elem_filter = element_filter(*it, ghost_type);
     Vector<Real> & strain_vect = strain(*it, ghost_type);
 
     /// compute @f$\nabla u@f$
     model->getFEM().gradientOnQuadraturePoints(displacement, strain_vect,
 					      spatial_dimension,
 					      *it, ghost_type, &elem_filter);
 
     setToSteadyState(*it, ghost_type);
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 
 /* -------------------------------------------------------------------------- */
 /**
  * Compute  the stiffness  matrix by  assembling @f$\int_{\omega}  B^t  \times D
  * \times B d\omega @f$
  *
  * @param[in] current_position nodes postition + displacements
  * @param[in] ghost_type compute the residual for _ghost or _not_ghost element
  */
 void Material::assembleStiffnessMatrix(GhostType ghost_type) {
   AKANTU_DEBUG_IN();
 
   UInt spatial_dimension = model->getSpatialDimension();
 
   Mesh & mesh = model->getFEM().getMesh();
   Mesh::type_iterator it = mesh.firstType(spatial_dimension, ghost_type);
   Mesh::type_iterator last_type = mesh.lastType(spatial_dimension, ghost_type);
   for(; it != last_type; ++it) {
     switch(spatial_dimension) {
     case 1: { assembleStiffnessMatrix<1>(*it, ghost_type); break; }
     case 2: { assembleStiffnessMatrix<2>(*it, ghost_type); break; }
     case 3: { assembleStiffnessMatrix<3>(*it, ghost_type); break; }
     }
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 template<UInt dim>
 void Material::assembleStiffnessMatrix(const ElementType & type,
 				       GhostType ghost_type) {
   AKANTU_DEBUG_IN();
 
   SparseMatrix & K = const_cast<SparseMatrix &>(model->getStiffnessMatrix());
 
   const Vector<Real> & shapes_derivatives = model->getFEM().getShapesDerivatives(type,ghost_type);
 
   Vector<UInt> & elem_filter = element_filter(type, ghost_type);
   Vector<Real> & strain_vect = strain(type, ghost_type);
 
   UInt nb_element                 = elem_filter.getSize();
   UInt nb_nodes_per_element       = Mesh::getNbNodesPerElement(type);
   UInt nb_quadrature_points       = model->getFEM().getNbQuadraturePoints(type, ghost_type);
 
   strain_vect.resize(nb_quadrature_points * nb_element);
 
   model->getFEM().gradientOnQuadraturePoints(model->getDisplacement(), strain_vect,
 					     dim, type, ghost_type, &elem_filter);
 
   UInt tangent_size = getTangentStiffnessVoigtSize(dim);
 
   Vector<Real> * tangent_stiffness_matrix =
     new Vector<Real>(nb_element*nb_quadrature_points, tangent_size * tangent_size,
 		     "tangent_stiffness_matrix");
 
   tangent_stiffness_matrix->clear();
 
   computeTangentModuli(type, *tangent_stiffness_matrix, ghost_type);
 
 
   Vector<Real> * shapes_derivatives_filtered = new Vector<Real>(nb_element * nb_quadrature_points,
 								dim * nb_nodes_per_element,
 								"shapes derivatives filtered");
 
 
   Vector<Real>::const_iterator<types::RMatrix> shapes_derivatives_it = shapes_derivatives.begin(spatial_dimension,
 											       nb_nodes_per_element);
 
   Vector<Real>::iterator<types::RMatrix> shapes_derivatives_filtered_it  = shapes_derivatives_filtered->begin(spatial_dimension,
 													     nb_nodes_per_element);
   UInt * elem_filter_val = elem_filter.storage();
   for (UInt e = 0; e < nb_element; ++e, ++elem_filter_val)
     for (UInt q = 0; q < nb_quadrature_points; ++q, ++shapes_derivatives_filtered_it)
       *shapes_derivatives_filtered_it = shapes_derivatives_it[*elem_filter_val * nb_quadrature_points + q];
 
   /// compute @f$\mathbf{B}^t * \mathbf{D} * \mathbf{B}@f$
   UInt bt_d_b_size = dim * nb_nodes_per_element;
 
   Vector<Real> * bt_d_b = new Vector<Real>(nb_element * nb_quadrature_points,
 					   bt_d_b_size * bt_d_b_size,
 					   "B^t*D*B");
 
   types::RMatrix B(tangent_size, dim * nb_nodes_per_element);
   types::RMatrix Bt_D(dim * nb_nodes_per_element, tangent_size);
 
   shapes_derivatives_filtered_it = shapes_derivatives_filtered->begin(nb_nodes_per_element, spatial_dimension);
 
   Vector<Real>::iterator<types::RMatrix> Bt_D_B_it = bt_d_b->begin(dim*nb_nodes_per_element,
 								  dim*nb_nodes_per_element);
 
   Vector<Real>::iterator<types::RMatrix> D_it  = tangent_stiffness_matrix->begin(tangent_size,
 										tangent_size);
   Vector<Real>::iterator<types::RMatrix> D_end = tangent_stiffness_matrix->end  (tangent_size,
 										tangent_size);
 
 
   for(; D_it != D_end; ++D_it, ++Bt_D_B_it, ++shapes_derivatives_filtered_it) {
     types::RMatrix & D = *D_it;
     types::RMatrix & Bt_D_B = *Bt_D_B_it;
 
     transferBMatrixToSymVoigtBMatrix<dim>(*shapes_derivatives_filtered_it, B, nb_nodes_per_element);
     Bt_D.mul<true, false>(B, D);
     Bt_D_B.mul<false, false>(Bt_D, B);
   }
 
   delete tangent_stiffness_matrix;
   delete shapes_derivatives_filtered;
 
   /// compute @f$ k_e = \int_e \mathbf{B}^t * \mathbf{D} * \mathbf{B}@f$
   Vector<Real> * K_e = new Vector<Real>(nb_element,
 					bt_d_b_size * bt_d_b_size,
 					"K_e");
 
   model->getFEM().integrate(*bt_d_b, *K_e,
 			    bt_d_b_size * bt_d_b_size,
 			    type, ghost_type,
 			    &elem_filter);
 
   delete bt_d_b;
 
   model->getFEM().assembleMatrix(*K_e, K, spatial_dimension, type, ghost_type, &elem_filter);
   delete K_e;
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void Material::computeAllStressesFromTangentModuli(GhostType ghost_type) {
   AKANTU_DEBUG_IN();
 
   UInt spatial_dimension = model->getSpatialDimension();
 
   Mesh & mesh = model->getFEM().getMesh();
   Mesh::type_iterator it = mesh.firstType(spatial_dimension, ghost_type);
   Mesh::type_iterator last_type = mesh.lastType(spatial_dimension, ghost_type);
   for(; it != last_type; ++it) {
     switch(spatial_dimension) {
     case 1: { computeAllStressesFromTangentModuli<1>(*it, ghost_type); break; }
     case 2: { computeAllStressesFromTangentModuli<2>(*it, ghost_type); break; }
     case 3: { computeAllStressesFromTangentModuli<3>(*it, ghost_type); break; }
     }
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 
 /* -------------------------------------------------------------------------- */
 template<UInt dim>
 void Material::computeAllStressesFromTangentModuli(const ElementType & type,
                                                    GhostType ghost_type) {
   AKANTU_DEBUG_IN();
 
   const Vector<Real> & shapes_derivatives = model->getFEM().getShapesDerivatives(type, ghost_type);
   Vector<UInt> & elem_filter = element_filter(type, ghost_type);
   Vector<Real> & strain_vect = strain(type, ghost_type);
 
   UInt nb_element                 = elem_filter.getSize();
   UInt nb_nodes_per_element       = Mesh::getNbNodesPerElement(type);
   UInt nb_quadrature_points       = model->getFEM().getNbQuadraturePoints(type, ghost_type);
 
   const Vector<UInt> & connectivity = model->getFEM().getMesh().getConnectivity(type, ghost_type);
 
   strain_vect.resize(nb_quadrature_points * nb_element);
 
   Vector<Real> & u = model->getDisplacement();
 
   model->getFEM().gradientOnQuadraturePoints(u, strain_vect,
 					     dim, type, ghost_type, &elem_filter);
 
   UInt tangent_moduli_size = getTangentStiffnessVoigtSize(dim);
 
   Vector<Real> * tangent_moduli_tensors =
     new Vector<Real>(nb_element*nb_quadrature_points, tangent_moduli_size * tangent_moduli_size,
 		     "tangent_moduli_tensors");
 
   tangent_moduli_tensors->clear();
   computeTangentModuli(type, *tangent_moduli_tensors, ghost_type);
 
   Vector<Real> * shapes_derivatives_filtered = new Vector<Real>(nb_element * nb_quadrature_points,
 								dim * nb_nodes_per_element,
 								"shapes derivatives filtered");
 
   Vector<Real>::const_iterator<types::RMatrix> shapes_derivatives_it = shapes_derivatives.begin(spatial_dimension,
 											       nb_nodes_per_element);
 
   Vector<Real>::iterator<types::RMatrix> shapes_derivatives_filtered_it  = shapes_derivatives_filtered->begin(spatial_dimension,
 													     nb_nodes_per_element);
 
-  Vector<Real> filtered_u(nb_element * nb_nodes_per_element, spatial_dimension);
+  Vector<Real> filtered_u(nb_element, nb_nodes_per_element * spatial_dimension);
 
   UInt * elem_filter_val = elem_filter.storage();
   Real * filtered_u_it = filtered_u.storage();
 
   for (UInt e = 0; e < nb_element; ++e, ++elem_filter_val) {
     UInt el = *elem_filter_val;
     for (UInt n = 0; n < nb_nodes_per_element; ++n) {
       for (UInt s = 0; s < spatial_dimension; ++s, ++filtered_u_it) {
         *filtered_u_it = u(connectivity(el,n), s);
       }
     }
 
     for (UInt q = 0; q < nb_quadrature_points; ++q, ++shapes_derivatives_filtered_it)
       *shapes_derivatives_filtered_it = shapes_derivatives_it[el * nb_quadrature_points + q];
   }
 
   /// compute @f$\mathbf{D} \mathbf{B} \mathbf{u}@f$
   shapes_derivatives_filtered_it = shapes_derivatives_filtered->begin(nb_nodes_per_element, spatial_dimension);
 
   Vector<Real>::iterator<types::RMatrix> D_it  = tangent_moduli_tensors->begin(tangent_moduli_size,
                                                                                tangent_moduli_size);
-  Vector<Real>::iterator<types::RMatrix> D_end = tangent_moduli_tensors->end  (tangent_moduli_size,
-                                                                               tangent_moduli_size);
   Vector<Real>::iterator<types::RMatrix> sigma_it  = stress(type, ghost_type).begin(spatial_dimension,
                                                                                     spatial_dimension);
-  Vector<Real>::iterator<types::RVector> u_it = filtered_u.begin(spatial_dimension);
-
-  types::RMatrix B(tangent_moduli_size, spatial_dimension);
-  types::RVector Bu(spatial_dimension);
-  types::RVector DBu(spatial_dimension);
-
-  for(; D_it != D_end; ++D_it, ++u_it, ++shapes_derivatives_filtered_it) {
-    types::RVector & u = *u_it;
-    types::RMatrix & sigma = *sigma_it;
-    types::RMatrix & D = *D_it;
-
-    transferBMatrixToSymVoigtBMatrix<dim>(*shapes_derivatives_filtered_it, B, nb_nodes_per_element);
-
-    Bu.mul<false>(B, u);
-    DBu.mul<false>(D, Bu);
-
-    // Voigt notation to full symmetric tensor
-    for (UInt i = 0; i < dim; ++i) sigma(i, i) = DBu(i);
-    if(dim == 2) {
-      sigma(0,1) = sigma(1,0) = DBu(2);
-    } else if(dim == 3) {
-      sigma(1,2) = sigma(2,1) = DBu(3);
-      sigma(0,2) = sigma(2,0) = DBu(4);
-      sigma(0,1) = sigma(1,0) = DBu(5);
+  Vector<Real>::iterator<types::RVector> u_it = filtered_u.begin(spatial_dimension * nb_nodes_per_element);
+
+  types::RMatrix B(tangent_moduli_size, spatial_dimension * nb_nodes_per_element);
+  types::RVector Bu(tangent_moduli_size);
+  types::RVector DBu(tangent_moduli_size);
+
+  for (UInt e = 0; e < nb_element; ++e, ++u_it) {
+    for (UInt q = 0; q < nb_quadrature_points; ++q, ++D_it, ++shapes_derivatives_filtered_it, ++sigma_it) {
+      types::RVector & u = *u_it;
+      types::RMatrix & sigma = *sigma_it;
+      types::RMatrix & D = *D_it;
+
+      transferBMatrixToSymVoigtBMatrix<dim>(*shapes_derivatives_filtered_it, B, nb_nodes_per_element);
+
+      Bu.mul<false>(B, u);
+      DBu.mul<false>(D, Bu);
+
+      // Voigt notation to full symmetric tensor
+      for (UInt i = 0; i < dim; ++i) sigma(i, i) = DBu(i);
+      if(dim == 2) {
+	sigma(0,1) = sigma(1,0) = DBu(2);
+      } else if(dim == 3) {
+	sigma(1,2) = sigma(2,1) = DBu(3);
+	sigma(0,2) = sigma(2,0) = DBu(4);
+	sigma(0,1) = sigma(1,0) = DBu(5);
+      }
     }
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 
 
 /* -------------------------------------------------------------------------- */
 void Material::computePotentialEnergy(ElementType el_type, GhostType ghost_type) {
   AKANTU_DEBUG_IN();
 
   if(ghost_type != _not_ghost) return;
   Real * epot = potential_energy(el_type, ghost_type).storage();
 
   MATERIAL_STRESS_QUADRATURE_POINT_LOOP_BEGIN(el_type, ghost_type);
 
   computePotentialEnergyOnQuad(grad_u, sigma, *epot);
   epot++;
 
   MATERIAL_STRESS_QUADRATURE_POINT_LOOP_END;
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void Material::computePotentialEnergyByElement() {
   AKANTU_DEBUG_IN();
 
   Mesh & mesh = model->getFEM().getMesh();
   Mesh::type_iterator it = mesh.firstType(spatial_dimension);
   Mesh::type_iterator last_type = mesh.lastType(spatial_dimension);
   for(; it != last_type; ++it) {
 
     if(!potential_energy.exists(*it, _not_ghost)) {
       UInt nb_element = element_filter(*it, _not_ghost).getSize();
       UInt nb_quadrature_points = model->getFEM().getNbQuadraturePoints(*it, _not_ghost);
 
       potential_energy.alloc(nb_element * nb_quadrature_points, 1,
 			     *it, _not_ghost);
     }
 
     computePotentialEnergy(*it);
   }
 
   AKANTU_DEBUG_OUT();
 }
 /* -------------------------------------------------------------------------- */
 
 void Material::computePotentialEnergyByElement(ElementType type, UInt index,
 					       types::RVector & epot_on_quad_points){
 
   Vector<Real>::iterator<types::RMatrix> strain_it =			
     this->strain(type).begin(spatial_dimension,		
 			     spatial_dimension);		
   Vector<Real>::iterator<types::RMatrix> strain_end =			
     this->strain(type).begin(spatial_dimension,		
 			     spatial_dimension);		
   Vector<Real>::iterator<types::RMatrix> stress_it =			
     this->stress(type).begin(spatial_dimension,		
 			     spatial_dimension);		
   
   UInt nb_quadrature_points = model->getFEM().getNbQuadraturePoints(type);
 
   strain_it  += index*nb_quadrature_points;
   strain_end += (index+1)*nb_quadrature_points;
   stress_it  += index*nb_quadrature_points;
   
   Real * epot_quad = epot_on_quad_points.storage();
 
   for(;strain_it != strain_end; ++strain_it, ++stress_it, ++ epot_quad) {		
     types::RMatrix & __attribute__((unused)) grad_u = *strain_it;	
     types::RMatrix & __attribute__((unused)) sigma  = *stress_it;
     computePotentialEnergyOnQuad(grad_u,sigma,*epot_quad);
   }
 }
 
 /* -------------------------------------------------------------------------- */
 Real Material::getPotentialEnergy() {
   AKANTU_DEBUG_IN();
   Real epot = 0.;
 
   computePotentialEnergyByElement();
 
   /// integrate the potential energy for each type of elements
   Mesh & mesh = model->getFEM().getMesh();
   Mesh::type_iterator it = mesh.firstType(spatial_dimension);
   Mesh::type_iterator last_type = mesh.lastType(spatial_dimension);
   for(; it != last_type; ++it) {
 
     epot += model->getFEM().integrate(potential_energy(*it, _not_ghost), *it,
 				      _not_ghost, &element_filter(*it, _not_ghost));
   }
 
   AKANTU_DEBUG_OUT();
   return epot;
 }
 /* -------------------------------------------------------------------------- */
 
 Real Material::getPotentialEnergy(ElementType & type, UInt index) {
   AKANTU_DEBUG_IN();
   Real epot = 0.;
 
   types::RVector epot_on_quad_points(model->getFEM().getNbQuadraturePoints(type));
  
   computePotentialEnergyByElement(type,index,epot_on_quad_points);
 
   epot = model->getFEM().integrate(epot_on_quad_points, type, element_filter(type)(index));
 
   AKANTU_DEBUG_OUT();
   return epot;
 }
 
 
 /* -------------------------------------------------------------------------- */
 Real Material::getEnergy(std::string type) {
   AKANTU_DEBUG_IN();
   if(type == "potential") return getPotentialEnergy();
   AKANTU_DEBUG_OUT();
   return 0.;
 }
 
 /* -------------------------------------------------------------------------- */
 
 Real Material::getEnergy(std::string energy_id, ElementType type, UInt index) {
   AKANTU_DEBUG_IN();
   if(energy_id == "potential") return getPotentialEnergy(type,index);
   AKANTU_DEBUG_OUT();
   return 0.;
 }
 
 /* -------------------------------------------------------------------------- */
 void Material::computeQuadraturePointsCoordinates(ByElementTypeReal & quadrature_points_coordinates, const GhostType & ghost_type) const {
   AKANTU_DEBUG_IN();
 
   const Mesh & mesh = model->getFEM().getMesh();
 
   Vector<Real> nodes_coordinates(mesh.getNodes(), true);
   nodes_coordinates += model->getDisplacement();
 
   Mesh::type_iterator it = mesh.firstType(spatial_dimension, ghost_type);
   Mesh::type_iterator last_type = mesh.lastType(spatial_dimension, ghost_type);
   for(; it != last_type; ++it) {
     const Vector<UInt> & elem_filter = element_filter(*it, ghost_type);
 
     UInt nb_element  = elem_filter.getSize();
     UInt nb_tot_quad = model->getFEM().getNbQuadraturePoints(*it, ghost_type) * nb_element;
 
     Vector<Real> & quads = quadrature_points_coordinates(*it, ghost_type);
     quads.resize(nb_tot_quad);
 
     model->getFEM().interpolateOnQuadraturePoints(nodes_coordinates,
 						  quads, spatial_dimension,
 						  *it, ghost_type, &elem_filter);
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void Material::initElementalFieldInterpolation(ByElementTypeReal & interpolation_points_coordinates) {
   AKANTU_DEBUG_IN();
   const Mesh & mesh = model->getFEM().getMesh();
 
   ByElementTypeReal quadrature_points_coordinates("quadrature_points_coordinates_tmp_nl", id);
   mesh.initByElementTypeVector(quadrature_points_coordinates, spatial_dimension, 0);
   computeQuadraturePointsCoordinates(quadrature_points_coordinates, _not_ghost);
   computeQuadraturePointsCoordinates(quadrature_points_coordinates, _ghost);
 
   Mesh::type_iterator it   = mesh.firstType(spatial_dimension);
   Mesh::type_iterator last = mesh.lastType(spatial_dimension);
   for (; it != last; ++it) {
     UInt nb_element = mesh.getNbElement(*it);
     if (nb_element == 0) continue;
     ElementType type = *it;
 #define AKANTU_INIT_INTERPOLATE_ELEMENTAL_FIELD(type)			\
     initElementalFieldInterpolation<type>(quadrature_points_coordinates(type), \
 					  interpolation_points_coordinates(type))
 
     AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(AKANTU_INIT_INTERPOLATE_ELEMENTAL_FIELD);
 #undef AKANTU_INIT_INTERPOLATE_ELEMENTAL_FIELD
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 template <ElementType type>
 void Material::initElementalFieldInterpolation(const Vector<Real> & quad_coordinates,
 					       const Vector<Real> & interpolation_points_coordinates) {
   AKANTU_DEBUG_IN();
   UInt size_inverse_coords = getSizeElementalFieldInterpolationCoodinates<type>();
 
   Vector<UInt> & elem_fil = element_filter(type);
   UInt nb_element = elem_fil.getSize();
   UInt nb_quad_per_element = model->getFEM().getNbQuadraturePoints(type);
 
   UInt nb_interpolation_points = interpolation_points_coordinates.getSize();
   AKANTU_DEBUG_ASSERT(nb_interpolation_points % nb_element == 0,
 		      "Can't interpolate elemental field on elements, the coordinates vector has a wrong size");
   UInt nb_interpolation_points_per_elem = nb_interpolation_points / nb_element;
 
   if(!interpolation_inverse_coordinates.exists(type))
     interpolation_inverse_coordinates.alloc(nb_element,
 					    size_inverse_coords*size_inverse_coords,
 					    type);
 
   if(!interpolation_points_matrices.exists(type))
     interpolation_points_matrices.alloc(nb_element,
 					nb_interpolation_points_per_elem * size_inverse_coords,
 					type);
 
   Vector<Real> & interp_inv_coord = interpolation_inverse_coordinates(type);
   Vector<Real> & interp_points_mat = interpolation_points_matrices(type);
 
   types::RMatrix quad_coord_matrix(size_inverse_coords, size_inverse_coords);
 
   Vector<Real>::const_iterator<types::RMatrix> quad_coords_it =
     quad_coordinates.begin_reinterpret(nb_quad_per_element,
 				       spatial_dimension,
 				       nb_element);
 
   Vector<Real>::const_iterator<types::RMatrix> points_coords_it =
     interpolation_points_coordinates.begin_reinterpret(nb_interpolation_points_per_elem,
 						       spatial_dimension,
 						       nb_element);
 
   Vector<Real>::iterator<types::RMatrix> inv_quad_coord_it =
     interp_inv_coord.begin(size_inverse_coords, size_inverse_coords);
 
   Vector<Real>::iterator<types::RMatrix> inv_points_mat_it =
     interp_points_mat.begin(nb_interpolation_points_per_elem, size_inverse_coords);
 
   /// loop over the elements of the current material and element type
   for (UInt el = 0; el < nb_element; ++el) {
     /// matrix containing the quadrature points coordinates
     const types::RMatrix & quad_coords = *quad_coords_it;
     /// matrix to store the matrix inversion result
     types::RMatrix & inv_quad_coord_matrix = *inv_quad_coord_it;
 
     /// insert the quad coordinates in a matrix compatible with the interpolation
     buildElementalFieldInterpolationCoodinates<type>(quad_coords,
 						     quad_coord_matrix);
 
     /// invert the interpolation matrix
     inv_quad_coord_matrix.inverse(quad_coord_matrix);
 
 
     /// matrix containing the interpolation points coordinates
     const types::RMatrix & points_coords = *points_coords_it;
     /// matrix to store the interpolation points coordinates
     /// compatible with these functions
     types::RMatrix & inv_points_coord_matrix = *inv_points_mat_it;
 
     /// insert the quad coordinates in a matrix compatible with the interpolation
     buildElementalFieldInterpolationCoodinates<type>(points_coords,
 						     inv_points_coord_matrix);
 
 
     ++inv_quad_coord_it;
     ++inv_points_mat_it;
     ++quad_coords_it;
     ++points_coords_it;
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void Material::interpolateStress(const ElementType type,
 				 Vector<Real> & result) {
   AKANTU_DEBUG_IN();
 
 #define INTERPOLATE_ELEMENTAL_FIELD(type)				\
   interpolateElementalField<type>(stress(type),				\
 				  result)				\
 
   AKANTU_BOOST_REGULAR_ELEMENT_SWITCH(INTERPOLATE_ELEMENTAL_FIELD);
 #undef INTERPOLATE_ELEMENTAL_FIELD
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 template <ElementType type>
 void Material::interpolateElementalField(const Vector<Real> & field,
 					 Vector<Real> & result) {
   AKANTU_DEBUG_IN();
 
   Vector<UInt> & elem_fil = element_filter(type);
   UInt nb_element = elem_fil.getSize();
   UInt nb_quad_per_element = model->getFEM().getNbQuadraturePoints(type);
   UInt size_inverse_coords = getSizeElementalFieldInterpolationCoodinates<type>();
 
   types::RMatrix coefficients(nb_quad_per_element, field.getNbComponent());
 
   const Vector<Real> & interp_inv_coord = interpolation_inverse_coordinates(type);
   const Vector<Real> & interp_points_coord = interpolation_points_matrices(type);
 
   UInt nb_interpolation_points_per_elem = interp_points_coord.getNbComponent() / size_inverse_coords;
 
   Vector<Real>::const_iterator<types::RMatrix> field_it
     = field.begin_reinterpret(nb_quad_per_element,
 			      field.getNbComponent(),
 			      nb_element);
 
   Vector<Real>::const_iterator<types::RMatrix> interpolation_points_coordinates_it =
     interp_points_coord.begin(nb_interpolation_points_per_elem, size_inverse_coords);
 
   Vector<Real>::iterator<types::RMatrix> result_it
     = result.begin_reinterpret(nb_interpolation_points_per_elem,
 			       field.getNbComponent(),
 			       nb_element);
 
   Vector<Real>::const_iterator<types::RMatrix> inv_quad_coord_it =
     interp_inv_coord.begin(size_inverse_coords, size_inverse_coords);
 
   /// loop over the elements of the current material and element type
   for (UInt el = 0; el < nb_element;
        ++el, ++field_it, ++result_it,
 	 ++inv_quad_coord_it, ++interpolation_points_coordinates_it) {
     /**
      * matrix containing the inversion of the quadrature points'
      * coordinates
      */
     const types::RMatrix & inv_quad_coord_matrix = *inv_quad_coord_it;
 
     /**
      * multiply it by the field values over quadrature points to get
      * the interpolation coefficients
      */
     coefficients.mul<false, false>(inv_quad_coord_matrix, *field_it);
 
     /// matrix containing the points' coordinates
     const types::RMatrix & coord = *interpolation_points_coordinates_it;
 
     /// multiply the coordinates matrix by the coefficients matrix and store the result
     (*result_it).mul<false, false>(coord, coefficients);
   }
 
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 
 const Vector<Real> & Material::getVector(const ID & vect_id, const ElementType & type, const GhostType & ghost_type) const {
   std::stringstream sstr;
   std::string ghost_id = "";
   if (ghost_type == _ghost) ghost_id = ":ghost";
   sstr << id << ":" << vect_id << ":" << type << ghost_id;
 
   ID fvect_id = sstr.str();
   try {
     return Memory::getVector<Real>(fvect_id);
   } catch(debug::Exception & e) {
     AKANTU_EXCEPTION("The material " << name << "(" <<id << ") does not contain a vector " << vect_id << "(" << fvect_id << ") [" << e << "]");
   }
 }
 
 /* -------------------------------------------------------------------------- */
 Vector<Real> & Material::getVector(const ID & vect_id, const ElementType & type, const GhostType & ghost_type) {
   std::stringstream sstr;
   std::string ghost_id = "";
   if (ghost_type == _ghost) ghost_id = ":ghost";
   sstr << id << ":" << vect_id << ":" << type << ghost_id;
 
   ID fvect_id = sstr.str();
   try {
     return Memory::getVector<Real>(fvect_id);
   } catch(debug::Exception & e) {
     AKANTU_EXCEPTION("The material " << name << "(" <<id << ") does not contain a vector " << vect_id << "(" << fvect_id << ") [" << e << "]");
   }
 }
 
 /* -------------------------------------------------------------------------- */
 void Material::printself(std::ostream & stream, int indent) const {
   std::string space;
   for(Int i = 0; i < indent; i++, space += AKANTU_INDENT);
 
   std::string type = id.substr(id.find_last_of(":") + 1);
 
   stream << space << "Material " << type << " [" << std::endl;
   params.printself(stream, indent);
   stream << space << "]" << std::endl;
 }
 
 
 /* -------------------------------------------------------------------------- */
 template void Material::initInternalVector<Real>(ByElementTypeVector<Real> & vect,
 						 UInt nb_component,
 						 bool temporary,
 						 ElementKind element_kind);
 
 template void Material::initInternalVector<UInt>(ByElementTypeVector<UInt> & vect,
 						 UInt nb_component,
 						 bool temporary,
 						 ElementKind element_kind);
 
 template void Material::initInternalVector<Int>(ByElementTypeVector<Int> & vect,
 						UInt nb_component,
 						bool temporary,
 						ElementKind element_kind);
 
 template void Material::initInternalVector<bool>(ByElementTypeVector<bool> & vect,
 						 UInt nb_component,
 						 bool temporary,
 						 ElementKind element_kind);
 
 
 template void Material::resizeInternalVector<Real>(ByElementTypeVector<Real> & vect,
 						   ElementKind element_kind) const;
 
 template void Material::resizeInternalVector<UInt>(ByElementTypeVector<UInt> & vect,
 						   ElementKind element_kind) const;
 
 template void Material::resizeInternalVector<Int>(ByElementTypeVector<Int> & vect,
 						  ElementKind element_kind) const;
 
 template void Material::resizeInternalVector<bool>(ByElementTypeVector<bool> & vect,
 						   ElementKind element_kind) const;
 
 
 __END_AKANTU__
diff --git a/src/model/solid_mechanics/material.hh b/src/model/solid_mechanics/material.hh
index b32604489..7986855b3 100644
--- a/src/model/solid_mechanics/material.hh
+++ b/src/model/solid_mechanics/material.hh
@@ -1,566 +1,504 @@
 /**
  * @file   material.hh
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Fri Jul 23 09:06:29 2010
  *
  * @brief  Mother class for all materials
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 #include "aka_common.hh"
 #include "aka_memory.hh"
 #include "parser.hh"
 #include "data_accessor.hh"
 #include "material_parameters.hh"
 
 /* -------------------------------------------------------------------------- */
 
 #ifndef __AKANTU_MATERIAL_HH__
 #define __AKANTU_MATERIAL_HH__
 
 /* -------------------------------------------------------------------------- */
 namespace akantu {
   class Model;
   class SolidMechanicsModel;
   class CommunicationBuffer;
 }
 
 __BEGIN_AKANTU__
 
 /**
  * Interface of all materials
  * Prerequisites for a new material
  * - inherit from this class
  * - implement the following methods:
  * \code
  *  virtual Real getStableTimeStep(Real h, const Element & element = ElementNull);
  *
  *  virtual void computeStress(ElementType el_type,
  *                             GhostType ghost_type = _not_ghost);
  *
  *  virtual void computeTangentStiffness(const ElementType & el_type,
  *                                       Vector<Real> & tangent_matrix,
  *                                       GhostType ghost_type = _not_ghost);
  * \endcode
  *
  */
 class Material : protected Memory, public DataAccessor, public Parsable, public MeshEventHandler {
   /* ------------------------------------------------------------------------ */
   /* Constructors/Destructors                                                 */
   /* ------------------------------------------------------------------------ */
 public:
 
   Material(SolidMechanicsModel & model, const ID & id = "");
   virtual ~Material();
 
   /* ------------------------------------------------------------------------ */
   /* Methods                                                                  */
   /* ------------------------------------------------------------------------ */
 public:
 
   /// register a material parameter
   template<class T>
   void registerParam(std::string name, T & variable, T default_value,
 		     ParamAccessType type,
 		     std::string description = "");
 
   template<class T>
   void registerParam(std::string name, T & variable, ParamAccessType type,
 		     std::string description = "");
 
 
   template<typename T>
   void registerInternal(__attribute__((unused)) ByElementTypeVector<T> & vect) { AKANTU_DEBUG_TO_IMPLEMENT(); }
 
   /// read parameter from file
   virtual bool parseParam(const std::string & key, const std::string & value,
 			  const ID & id);
 
   /// function called to update the internal parameters when the modifiable
   /// parameters are modified
   virtual void updateInternalParameters() {}
 
   /// initialize the material computed parameter
   virtual void initMaterial();
 
   /// compute the residual for this material
   virtual void updateResidual(GhostType ghost_type = _not_ghost);
 
   /// assemble the residual for this material
   void assembleResidual(GhostType ghost_type);
 
   /// compute the stresses for this material
   virtual void computeAllStresses(GhostType ghost_type = _not_ghost);
   virtual void computeAllNonLocalStresses(__attribute__((unused)) GhostType ghost_type = _not_ghost) {};
   virtual void computeAllStressesFromTangentModuli(GhostType ghost_type = _not_ghost);
 
   /// set material to steady state
   void setToSteadyState(GhostType ghost_type = _not_ghost);
 
   /// compute the stiffness matrix
   virtual void assembleStiffnessMatrix(GhostType ghost_type);
 
   /// compute the stable time step for an element of size h
   virtual Real getStableTimeStep(__attribute__((unused)) Real h,
 				 __attribute__((unused)) const Element & element = ElementNull)  {
     AKANTU_DEBUG_TO_IMPLEMENT();
   }
 
   /// compute the p-wave speed in the material
   virtual Real getPushWaveSpeed() const { AKANTU_DEBUG_TO_IMPLEMENT(); };
 
   /// compute the s-wave speed in the material
   virtual Real getShearWaveSpeed() const { AKANTU_DEBUG_TO_IMPLEMENT(); };
 
   /// add an element to the local mesh filter
   inline UInt addElement(const ElementType & type,
 			 UInt element,
 			 const GhostType & ghost_type);
 
   /// function to print the contain of the class
   virtual void printself(std::ostream & stream, int indent = 0) const;
 
   /**
    * interpolate stress on given positions for each element by means
    * of a geometrical interpolation on quadrature points
    */
   virtual void interpolateStress(const ElementType type,
 				 Vector<Real> & result);
 
   /**
    * function to initialize the elemental field interpolation
    * function by inverting the quadrature points' coordinates
    */
   virtual void initElementalFieldInterpolation(ByElementTypeReal & interpolation_points_coordinates);
 
 protected:
 
   /// constitutive law
   virtual void computeStress(__attribute__((unused)) ElementType el_type,
 			     __attribute__((unused)) GhostType ghost_type = _not_ghost)  {
     AKANTU_DEBUG_TO_IMPLEMENT();
   }
 
 
   template<UInt dim>
   void computeAllStressesFromTangentModuli(const ElementType & type, GhostType ghost_type);
 
   /// set the material to steady state (to be implemented for materials that need it)
   virtual void setToSteadyState(__attribute__((unused)) ElementType el_type,
 				__attribute__((unused)) GhostType ghost_type = _not_ghost) {}
 
   /// compute the tangent stiffness matrix
   virtual void computeTangentModuli(__attribute__((unused)) const ElementType & el_type,
 				    __attribute__((unused)) Vector<Real> & tangent_matrix,
 				    __attribute__((unused)) GhostType ghost_type = _not_ghost) {
     AKANTU_DEBUG_TO_IMPLEMENT();
   }
 
   /// compute the potential energy
   virtual void computePotentialEnergy(ElementType el_type,
 				      GhostType ghost_type = _not_ghost);
 
   template<UInt dim>
   void assembleStiffnessMatrix(const ElementType & type,
 			       GhostType ghost_type);
 
   /// transfer the B matrix to a Voigt notation B matrix
   template<UInt dim>
   inline void transferBMatrixToSymVoigtBMatrix(const types::RMatrix & B,
 					       types::RMatrix & Bvoigt,
 					       UInt nb_nodes_per_element) const;
 
   inline UInt getTangentStiffnessVoigtSize(UInt spatial_dimension) const;
 
 
   /// compute the potential energy by element
   void computePotentialEnergyByElement();
 
   /// compute the coordinates of the quadrature points
   void computeQuadraturePointsCoordinates(ByElementTypeReal & quadrature_points_coordinates,
 					  const GhostType & ghost_type) const;
 
   /// interpolate an elemental field on given points for each element
   template <ElementType type>
   void interpolateElementalField(const Vector<Real> & field,
 				 Vector<Real> & result);
 
   /// template function to initialize the elemental field interpolation
   template <ElementType type>
   void initElementalFieldInterpolation(const Vector<Real> & quad_coordinates,
 				       const Vector<Real> & interpolation_points_coordinates);
 
   /// build the coordinate matrix for the interpolation on elemental field
   template <ElementType type>
   inline void buildElementalFieldInterpolationCoodinates(const types::RMatrix & coordinates,
 							 types::RMatrix & coordMatrix);
 
   /// get the size of the coordiante matrix used in the interpolation
   template <ElementType type>
   inline UInt getSizeElementalFieldInterpolationCoodinates();
 
 
   /* ------------------------------------------------------------------------ */
   /* Function for all materials                                               */
   /* ------------------------------------------------------------------------ */
 
 protected:
   /// compute the potential energy for a quadrature point
   inline void computePotentialEnergyOnQuad(types::RMatrix & grad_u,
 					   types::RMatrix & sigma,
 					   Real & epot);
 
   /// compute the potential energy for an element
   virtual void computePotentialEnergyByElement(ElementType type, UInt index,
 					       types::RVector & epot_on_quad_points);
 
 protected:
   /// allocate an internal vector
   template<typename T>
   void initInternalVector(ByElementTypeVector<T> & vect,
 			  UInt nb_component,
 			  bool temporary = false,
 			  ElementKind element_kind = _ek_regular);
 
 public:
   /// resize an internal vector
   template<typename T>
   void resizeInternalVector(ByElementTypeVector<T> & vect,
 			    ElementKind element_kind = _ek_regular) const;
 
   /* ------------------------------------------------------------------------ */
   template<UInt dim>
   inline void gradUToF(const types::RMatrix & grad_u, types::RMatrix & F);
   inline void rightCauchy(const types::RMatrix & F, types::RMatrix & C);
   inline void leftCauchy (const types::RMatrix & F, types::RMatrix & B);
   /* ------------------------------------------------------------------------ */
   /* DataAccessor inherited members                                           */
   /* ------------------------------------------------------------------------ */
 public:
 
   virtual inline UInt getNbDataForElements(const Vector<Element> & elements,
 					   SynchronizationTag tag) const;
 
   virtual inline void packElementData(CommunicationBuffer & buffer,
 				      const Vector<Element> & elements,
 				      SynchronizationTag tag) const;
 
   virtual inline void unpackElementData(CommunicationBuffer & buffer,
 					const Vector<Element> & elements,
 					SynchronizationTag tag);
 
   template<typename T>
   inline void packElementDataHelper(const ByElementTypeVector<T> & data_to_pack,
 				    CommunicationBuffer & buffer,
 				    const Vector<Element> & elements) const;
 
   template<typename T>
   inline void unpackElementDataHelper(ByElementTypeVector<T> & data_to_unpack,
 				      CommunicationBuffer & buffer,
 				      const Vector<Element> & elements) const;
 
 protected:
   template<typename T, bool pack_helper>
   inline void packUnpackElementDataHelper(ByElementTypeVector<T> & data_to_pack,
 					  CommunicationBuffer & buffer,
 					  const Vector<Element> & elements) const;
 public:
   inline UInt getNbQuadraturePoints(const Vector<Element> & elements) const;
 
 public:
   /* ------------------------------------------------------------------------ */
   virtual inline void onElementsAdded(const Vector<Element> & element_list);
 
   virtual inline void onElementsRemoved(const Vector<Element> & element_list,
 					const ByElementTypeUInt & new_numbering);
 
 protected:
   template<typename T>
   void removeQuadraturePointsFromVectors(ByElementTypeVector<T> & data,
 					 const ByElementTypeUInt & new_numbering);
 
   /* ------------------------------------------------------------------------ */
   /* Accessors                                                                */
   /* ------------------------------------------------------------------------ */
 public:
   AKANTU_GET_MACRO(Model, *model, const SolidMechanicsModel &)
 
   AKANTU_GET_MACRO(ID, id, const ID &);
   AKANTU_GET_MACRO(Rho, rho, Real);
   AKANTU_SET_MACRO(Rho, rho, Real);
 
   /// return the potential energy for the subset of elements contained by the material 
   Real getPotentialEnergy();
   /// return the potential energy for the provided element
   Real getPotentialEnergy(ElementType & type, UInt index);
 
   /// return the energy (identified by id) for the subset of elements contained by the material 
   virtual Real getEnergy(std::string energy_id);
   /// return the energy (identified by id) for the provided element
   virtual Real getEnergy(std::string energy_id, ElementType type, UInt index);
 
 
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE_CONST(ElementFilter, element_filter, UInt);
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE_CONST(Strain, strain, Real);
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE_CONST(Stress, stress, Real);
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE_CONST(PotentialEnergy, potential_energy, Real);
 
   bool isNonLocal() const { return is_non_local; }
 
   const Vector<Real> & getVector(const ID & id, const ElementType & type, const GhostType & ghost_type = _not_ghost) const;
   Vector<Real> & getVector(const ID & id, const ElementType & type, const GhostType & ghost_type = _not_ghost);
 
   template<typename T>
   inline T getParam(const ID & param) const;
 
   template<typename T>
   inline void setParam(const ID & param, T value);
 
 protected:
 
   bool isInit() const { return is_init; }
 
   /* ------------------------------------------------------------------------ */
   /* Class Members                                                            */
   /* ------------------------------------------------------------------------ */
 protected:
   /// id of the material
   ID id;
 
   /// material name
   std::string name;
 
   /// The model to witch the material belong
   SolidMechanicsModel * model;
 
   /// density : rho
   Real rho;
 
   /// stresses arrays ordered by element types
   ByElementTypeReal stress;
 
   /// strains arrays ordered by element types
   ByElementTypeReal strain;
 
   /// list of element handled by the material
   ByElementTypeUInt element_filter;
 
   /// is the vector for potential energy initialized
   //  bool potential_energy_vector;
 
   /// potential energy by element
   ByElementTypeReal potential_energy;
 
   /// tell if using in non local mode or not
   bool is_non_local;
 
   /// spatial dimension
   UInt spatial_dimension;
 
   /// elemental field interpolation coordinates
   ByElementTypeReal interpolation_inverse_coordinates;
 
   /// elemental field interpolation points
   ByElementTypeReal interpolation_points_matrices;
 
   /// list of the paramters
   MaterialParameters params;
 
 private:
   /// boolean to know if the material has been initialized
   bool is_init;
 
   std::map<ID, ByElementTypeReal *> internal_vectors_real;
   std::map<ID, ByElementTypeUInt *> internal_vectors_uint;
 };
 
 /* -------------------------------------------------------------------------- */
 /* inline functions                                                           */
 /* -------------------------------------------------------------------------- */
 
 #if defined (AKANTU_INCLUDE_INLINE_IMPL)
 #  include "material_inline_impl.cc"
 #endif
 
 /// standard output stream operator
 inline std::ostream & operator <<(std::ostream & stream, const Material & _this)
 {
   _this.printself(stream);
   return stream;
 }
 
 __END_AKANTU__
 
 /* -------------------------------------------------------------------------- */
 /* Auto loop                                                                  */
 /* -------------------------------------------------------------------------- */
 
 #define MATERIAL_STRESS_QUADRATURE_POINT_LOOP_BEGIN(el_type, ghost_type) \
   Vector<Real>::iterator<types::RMatrix> strain_it =			\
     this->strain(el_type, ghost_type).begin(spatial_dimension,		\
 					    spatial_dimension);		\
   Vector<Real>::iterator<types::RMatrix> strain_end =			\
     this->strain(el_type, ghost_type).end(spatial_dimension,		\
 					  spatial_dimension);		\
   Vector<Real>::iterator<types::RMatrix> stress_it =			\
     this->stress(el_type, ghost_type).begin(spatial_dimension,		\
 					    spatial_dimension);		\
   									\
   for(;strain_it != strain_end; ++strain_it, ++stress_it) {		\
     types::RMatrix & __attribute__((unused)) grad_u = *strain_it;	\
     types::RMatrix & __attribute__((unused)) sigma  = *stress_it
 
 #define MATERIAL_STRESS_QUADRATURE_POINT_LOOP_END			\
   }									\
 
 
 #define MATERIAL_TANGENT_QUADRATURE_POINT_LOOP_BEGIN(tangent_mat)	\
   Vector<Real>::iterator<types::RMatrix> strain_it =			\
     this->strain(el_type, ghost_type).begin(spatial_dimension,		\
 					    spatial_dimension);		\
   Vector<Real>::iterator<types::RMatrix> strain_end =			\
     this->strain(el_type, ghost_type).end(spatial_dimension,		\
 					  spatial_dimension);		\
   									\
   UInt tangent_size =							\
     this->getTangentStiffnessVoigtSize(spatial_dimension);		\
   Vector<Real>::iterator<types::RMatrix> tangent_it =			\
     tangent_mat.begin(tangent_size,					\
 		      tangent_size);					\
   									\
   for(;strain_it != strain_end; ++strain_it, ++tangent_it) {		\
     types::RMatrix & __attribute__((unused)) grad_u  = *strain_it;	\
     types::RMatrix & tangent = *tangent_it
 
 
 #define MATERIAL_TANGENT_QUADRATURE_POINT_LOOP_END			\
   }
 
 
 /* -------------------------------------------------------------------------- */
-/* Material list                                                              */
-/* -------------------------------------------------------------------------- */
-#define AKANTU_CORE_MATERIAL_LIST					\
-  ((2, (elastic            , MaterialElastic                      )))	\
-  ((2, (elastic_orthotropic, MaterialElasticOrthotropic           )))	\
-  ((2, (neohookean         , MaterialNeohookean                   )))	\
-  ((2, (sls_deviatoric     , MaterialStandardLinearSolidDeviatoric)))	\
-  ((2, (ve_stiffness_prop  , MaterialStiffnessProportional        )))
-
-
-#define AKANTU_COHESIVE_MATERIAL_LIST					\
-  ((2, (cohesive_bilinear      , MaterialCohesiveBilinear     )))	\
-  ((2, (cohesive_linear        , MaterialCohesiveLinear       )))	\
-  ((2, (cohesive_linear_extrinsic, MaterialCohesiveLinearExtrinsic )))	\
-  ((2, (cohesive_linear_exponential_extrinsic, MaterialCohesiveLinearExponentialExtrinsic ))) \
-  ((2, (cohesive_exponential   , MaterialCohesiveExponential  )))
-
-
-#define  AKANTU_DAMAGE_MATERIAL_LIST					\
-  ((2, (damage_linear          , MaterialDamageLinear         )))	\
-  ((2, (marigo                 , MaterialMarigo               )))	\
-  ((2, (mazars                 , MaterialMazars               )))	\
-  ((2, (vreepeerlings          , MaterialVreePeerlings        )))
-
-#ifdef AKANTU_DAMAGE_NON_LOCAL
-#define AKANTU_MATERIAL_WEIGHT_FUNCTION_TMPL_LIST			\
-  ((stress_wf, StressBasedWeightFunction  ))				\
-  ((damage_wf, DamagedWeightFunction      ))				\
-  ((remove_wf, RemoveDamagedWeightFunction))				\
-  ((base_wf,   BaseWeightFunction         ))
-
-
-#define AKANTU_MATERIAL_VREEPEERLINGS_WEIGHT_FUNCTION_TMPL_LIST		\
-  AKANTU_MATERIAL_WEIGHT_FUNCTION_TMPL_LIST				\
-  ((removed_damrate_wf, RemoveDamagedWithDamageRateWeightFunction))
-
-#define AKANTU_DAMAGE_NON_LOCAL_MATERIAL_LIST				\
-  ((3, (marigo_non_local       , MaterialMarigoNonLocal,		\
-	AKANTU_MATERIAL_WEIGHT_FUNCTION_TMPL_LIST)))			\
-  ((2, (mazars_non_local       , MaterialMazarsNonLocal       )))	\
-  ((3, (vreepeerlings_non_local, MaterialVreePeerlingsNonLocal,		\
-	AKANTU_MATERIAL_VREEPEERLINGS_WEIGHT_FUNCTION_TMPL_LIST)))
-
-#else
-#  define AKANTU_DAMAGE_NON_LOCAL_MATERIAL_LIST
-#endif
-
-#define AKANTU_MATERIAL_LIST			\
-  AKANTU_CORE_MATERIAL_LIST			\
-  AKANTU_COHESIVE_MATERIAL_LIST			\
-  AKANTU_DAMAGE_MATERIAL_LIST			\
-  AKANTU_DAMAGE_NON_LOCAL_MATERIAL_LIST
-
-
 #define INSTANSIATE_MATERIAL(mat_name)			\
   template class mat_name<1>;				\
   template class mat_name<2>;				\
   template class mat_name<3>
 
-#if defined(__INTEL_COMPILER)
-#pragma warning ( push )
-/* warning #654: overloaded virtual function
-   "akantu::Material::computeStress" is only partially overridden in
-   class "akantu::Material*" */
-
-#pragma warning ( disable : 654 )
-#endif //defined(__INTEL_COMPILER)
-
+/* -------------------------------------------------------------------------- */
+/* Material list                                                              */
 /* -------------------------------------------------------------------------- */
 // elastic materials
 #include "material_elastic.hh"
-#include "material_neohookean.hh"
-#include "material_elastic_orthotropic.hh"
 
 // visco-elastic materials
-#include "material_stiffness_proportional.hh"
 #include "material_standard_linear_solid_deviatoric.hh"
 
+#define AKANTU_CORE_MATERIAL_LIST					\
+  ((2, (elastic            , MaterialElastic                      )))	\
+  ((2, (sls_deviatoric     , MaterialStandardLinearSolidDeviatoric)))
 
-// damage materials
-#include "material_damage.hh"
-#include "material_marigo.hh"
-#include "material_mazars.hh"
-#include "material_damage_linear.hh"
-#include "material_vreepeerlings.hh"
 
-#if defined(AKANTU_DAMAGE_NON_LOCAL)
-#  include "material_marigo_non_local.hh"
-#  include "material_mazars_non_local.hh"
-#  include "material_vreepeerlings_non_local.hh"
+#if defined(AKANTU_EXTRA_MATERIALS)
+#  include "material_extra_includes.hh"
+#else
+#  define AKANTU_EXTRA_MATERIAL_LIST
 #endif
 
-// cohesive materials
-#include "material_cohesive.hh"
-#include "material_cohesive_linear.hh"
-#include "material_cohesive_bilinear.hh"
-#include "material_cohesive_linear_extrinsic.hh"
-#include "material_cohesive_exponential.hh"
-#include "material_cohesive_linear_exponential_extrinsic.hh"
+#if defined(AKANTU_COHESIVE_ELEMENT)
+#  include "material_cohesive_includes.hh"
+#else
+#  define AKANTU_COHESIVE_MATERIAL_LIST
+#endif
 
+#if defined(AKANTU_DAMAGE_NON_LOCAL)
+#  include "material_non_local_includes.hh"
+#else
+#  define AKANTU_DAMAGE_NON_LOCAL_MATERIAL_LIST
+#endif
 
-#if defined(__INTEL_COMPILER)
-#pragma warning ( pop )
-#endif //defined(__INTEL_COMPILER)
+#define AKANTU_MATERIAL_LIST			\
+  AKANTU_CORE_MATERIAL_LIST			\
+  AKANTU_EXTRA_MATERIAL_LIST			\
+  AKANTU_COHESIVE_MATERIAL_LIST			\
+  AKANTU_DAMAGE_NON_LOCAL_MATERIAL_LIST
 
 
 #endif /* __AKANTU_MATERIAL_HH__ */
diff --git a/src/model/solid_mechanics/material_inline_impl.cc b/src/model/solid_mechanics/material_inline_impl.cc
index b41be60ca..42ceb8d05 100644
--- a/src/model/solid_mechanics/material_inline_impl.cc
+++ b/src/model/solid_mechanics/material_inline_impl.cc
@@ -1,471 +1,459 @@
 /**
  * @file   material_inline_impl.cc
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Tue Jul 27 11:57:43 2010
  *
  * @brief  Implementation of the inline functions of the class material
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 __END_AKANTU__
 
 #include "solid_mechanics_model.hh"
 #include <iostream>
 
 __BEGIN_AKANTU__
 
 
 /* -------------------------------------------------------------------------- */
 inline UInt Material::addElement(const ElementType & type,
 				 UInt element,
 				 const GhostType & ghost_type) {
   element_filter(type, ghost_type).push_back(element);
   return element_filter(type, ghost_type).getSize()-1;
 }
 
 /* -------------------------------------------------------------------------- */
 inline UInt Material::getTangentStiffnessVoigtSize(UInt dim) const {
   return (dim * (dim - 1) / 2 + dim);
 }
 /* -------------------------------------------------------------------------- */
 template<UInt dim>
 inline void Material::gradUToF(const types::RMatrix & grad_u,
 			       types::RMatrix & F) {
   UInt size_F = F.size();
 
   AKANTU_DEBUG_ASSERT(F.size() >= grad_u.size() && grad_u.size() == dim,
 		      "The dimension of the tensor F should be greater or equal to the dimension of the tensor grad_u.");
 
   for (UInt i = 0; i < dim; ++i)
     for (UInt j = 0; j < dim; ++j)
       F(i, j) = grad_u(i, j);
 
   for (UInt i = 0; i < size_F; ++i) F(i, i) += 1;
 }
 
 /* -------------------------------------------------------------------------- */
 inline void Material::rightCauchy(const types::RMatrix & F,
 				  types::RMatrix & C) {
   C.mul<true, false>(F, F);
 }
 
 /* -------------------------------------------------------------------------- */
 inline void Material::leftCauchy(const types::RMatrix & F,
 				 types::RMatrix & B) {
   B.mul<false, true>(F, F);
 }
 
 /* -------------------------------------------------------------------------- */
 inline void Material::computePotentialEnergyOnQuad(types::RMatrix & grad_u,
 						   types::RMatrix & sigma,
 						   Real & epot) {
   epot = 0.;
   for (UInt i = 0; i < spatial_dimension; ++i)
     for (UInt j = 0; j < spatial_dimension; ++j)
       epot += sigma(i, j) * grad_u(i, j);
 
   epot *= .5;
 }
 
 /* -------------------------------------------------------------------------- */
 template<UInt dim>
 inline void Material::transferBMatrixToSymVoigtBMatrix(const types::RMatrix & B,
 						       types::RMatrix & Bvoigt,
 						       UInt nb_nodes_per_element) const {
   Bvoigt.clear();
 
   for (UInt i = 0; i < dim; ++i)
     for (UInt n = 0; n < nb_nodes_per_element; ++n)
       Bvoigt(i, i + n*dim) = B(n, i);
 
   if(dim == 2) {
     ///in 2D, fill the @f$ [\frac{\partial N_i}{\partial x}, \frac{\partial N_i}{\partial y}]@f$ row
     for (UInt n = 0; n < nb_nodes_per_element; ++n) {
       Bvoigt(2, 1 + n*2) = B(n, 0);
       Bvoigt(2, 0 + n*2) = B(n, 1);
     }
   }
 
 
   if(dim == 3) {
     for (UInt n = 0; n < nb_nodes_per_element; ++n) {
       Real dndx = B(n, 0);
       Real dndy = B(n, 1);
       Real dndz = B(n, 2);
 
       ///in 3D, fill the @f$ [0, \frac{\partial N_i}{\partial y}, \frac{N_i}{\partial z}]@f$ row
       Bvoigt(3, 1 + n*3) = dndz;
       Bvoigt(3, 2 + n*3) = dndy;
 
       ///in 3D, fill the @f$ [\frac{\partial N_i}{\partial x}, 0, \frac{N_i}{\partial z}]@f$ row
       Bvoigt(4, 0 + n*3) = dndz;
       Bvoigt(4, 2 + n*3) = dndx;
 
       ///in 3D, fill the @f$ [\frac{\partial N_i}{\partial x}, \frac{N_i}{\partial y}, 0]@f$ row
       Bvoigt(5, 0 + n*3) = dndy;
       Bvoigt(5, 1 + n*3) = dndx;
     }
   }
 }
 
 /* -------------------------------------------------------------------------- */
 template<ElementType type>
 inline void Material::buildElementalFieldInterpolationCoodinates(__attribute__((unused)) const types::RMatrix & coordinates,
 								 __attribute__((unused)) types::RMatrix & coordMatrix) {
   AKANTU_DEBUG_TO_IMPLEMENT();
 }
 
 /* -------------------------------------------------------------------------- */
 template<>
 inline void Material::buildElementalFieldInterpolationCoodinates<_triangle_3>(const types::RMatrix & coordinates,
 									      types::RMatrix & coordMatrix) {
 
   for (UInt i = 0; i < coordinates.rows(); ++i)
     coordMatrix(i, 0) = 1;
 }
 
 /* -------------------------------------------------------------------------- */
 template<>
 inline void Material::buildElementalFieldInterpolationCoodinates<_triangle_6>(const types::RMatrix & coordinates,
 									      types::RMatrix & coordMatrix) {
 
   UInt nb_quadrature_points = model->getFEM().getNbQuadraturePoints(_triangle_6);
 
   for (UInt i = 0; i < coordinates.rows(); ++i) {
     coordMatrix(i, 0) = 1;
     for (UInt j = 1; j < nb_quadrature_points; ++j)
       coordMatrix(i, j) = coordinates(i, j-1);
   }
 }
 
 /**
  * @todo Write a more efficient interpolation for quadrangles by
  * dropping unnecessary quadrature points
- * 
+ *
  */
 
 /* -------------------------------------------------------------------------- */
 template<>
 inline void Material::buildElementalFieldInterpolationCoodinates<_quadrangle_4>(const types::RMatrix & coordinates,
 										types::RMatrix & coordMatrix) {
 
   for (UInt i = 0; i < coordinates.rows(); ++i) {
     Real x = coordinates(i, 0);
     Real y = coordinates(i, 1);
 
     coordMatrix(i, 0) = 1;
     coordMatrix(i, 1) = x;
     coordMatrix(i, 2) = y;
     coordMatrix(i, 3) = x * y;
   }
 }
 
 /* -------------------------------------------------------------------------- */
 template<>
 inline void Material::buildElementalFieldInterpolationCoodinates<_quadrangle_8>(const types::RMatrix & coordinates,
 										types::RMatrix & coordMatrix) {
 
   for (UInt i = 0; i < coordinates.rows(); ++i) {
 
     UInt j = 0;
     Real x = coordinates(i, 0);
     Real y = coordinates(i, 1);
 
     for (UInt e = 0; e <= 2; ++e) {
       for (UInt n = 0; n <= 2; ++n) {
 	coordMatrix(i, j) = std::pow(x, e) * std::pow(y, n);
 	++j;
       }
     }
 
   }
 }
 
 /* -------------------------------------------------------------------------- */
 template<ElementType type>
 inline UInt Material::getSizeElementalFieldInterpolationCoodinates() {
   return model->getFEM().getNbQuadraturePoints(type);
 }
 
 /* -------------------------------------------------------------------------- */
 template<typename T>
 void Material::registerParam(std::string name, T & variable, T default_value,
 			     ParamAccessType type,
 			     std::string description) {
   AKANTU_DEBUG_IN();
   params.registerParam<T>(name, variable, default_value, type, description);
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 template<typename T>
 void Material::registerParam(std::string name, T & variable, ParamAccessType type,
 			     std::string description) {
   AKANTU_DEBUG_IN();
   params.registerParam<T>(name, variable, type, description);
   AKANTU_DEBUG_OUT();
 }
 
 
 /* -------------------------------------------------------------------------- */
 inline UInt Material::getNbDataForElements(const Vector<Element> & elements,
 					   SynchronizationTag tag) const {
-  //UInt nb_quadrature_points = model->getFEM().getNbQuadraturePoints(element.type);
-  //UInt size = 0;
   if(tag == _gst_smm_stress) {
     return spatial_dimension * spatial_dimension * sizeof(Real) * this->getNbQuadraturePoints(elements);
   }
   return 0;
 }
 
 /* -------------------------------------------------------------------------- */
 inline void Material::packElementData(CommunicationBuffer & buffer,
 				      const Vector<Element> & elements,
 				      SynchronizationTag tag) const {
   if(tag == _gst_smm_stress) {
     packElementDataHelper(stress, buffer, elements);
-    // UInt nb_quadrature_points = model->getFEM().getNbQuadraturePoints(element.type);
-    // Vector<Real>::const_iterator<types::RMatrix> stress_it = stress(element.type, _not_ghost).begin(spatial_dimension, spatial_dimension);
-    // stress_it += element.element * nb_quadrature_points;
-    // for (UInt q = 0; q < nb_quadrature_points; ++q, ++stress_it)
-    //   buffer << *stress_it;
   }
 }
 
 /* -------------------------------------------------------------------------- */
 inline void Material::unpackElementData(CommunicationBuffer & buffer,
 					const Vector<Element> & elements,
 					SynchronizationTag tag) {
   if(tag == _gst_smm_stress) {
     unpackElementDataHelper(stress, buffer, elements);
-    // UInt nb_quadrature_points = model->getFEM().getNbQuadraturePoints(element.type);
-    // Vector<Real>::iterator<types::Matrix> stress_it = stress(element.type, _ghost).begin(spatial_dimension, spatial_dimension);
-    // stress_it += element.element * nb_quadrature_points;
-    // for (UInt q = 0; q < nb_quadrature_points; ++q, ++stress_it)
-    //   buffer >> *stress_it;
   }
 }
 
 /* -------------------------------------------------------------------------- */
 inline UInt Material::getNbQuadraturePoints(const Vector<Element> & elements) const {
   UInt nb_quad = 0;
   Vector<Element>::const_iterator<Element> it  = elements.begin();
   Vector<Element>::const_iterator<Element> end = elements.end();
   for (; it != end; ++it) {
     const Element & el = *it;
     nb_quad += this->model->getFEM().getNbQuadraturePoints(el.type, el.ghost_type);
   }
   return nb_quad;
 }
 
 /* -------------------------------------------------------------------------- */
 template<typename T>
 inline void Material::packElementDataHelper(const ByElementTypeVector<T> & data_to_pack,
 					    CommunicationBuffer & buffer,
 					    const Vector<Element> & elements) const {
   packUnpackElementDataHelper<T, true>(const_cast<ByElementTypeVector<T> &>(data_to_pack),
 				       buffer,
 				       elements);
 }
 
 /* -------------------------------------------------------------------------- */
 template<typename T>
 inline void Material::unpackElementDataHelper(ByElementTypeVector<T> & data_to_unpack,
 					      CommunicationBuffer & buffer,
 					      const Vector<Element> & elements) const {
   packUnpackElementDataHelper<T, false>(data_to_unpack, buffer, elements);
 }
 
 /* -------------------------------------------------------------------------- */
 template<typename T, bool pack_helper>
 inline void Material::packUnpackElementDataHelper(ByElementTypeVector<T> & data_to_pack,
 						  CommunicationBuffer & buffer,
 						  const Vector<Element> & element) const {
   ElementType current_element_type = _not_defined;
   GhostType current_ghost_type = _casper;
   UInt nb_quad_per_elem = 0;
   UInt nb_component = 0;
 
   Vector<T> * vect = NULL;
   Vector<UInt> * element_index_material = NULL;
 
   Vector<Element>::const_iterator<Element> it  = element.begin();
   Vector<Element>::const_iterator<Element> end = element.end();
   for (; it != end; ++it) {
     const Element & el = *it;
     if(el.type != current_element_type || el.ghost_type != current_ghost_type) {
       current_element_type = el.type;
       current_ghost_type   = el.ghost_type;
 
       vect = &data_to_pack(el.type, el.ghost_type);
       element_index_material = &(this->model->getElementIndexByMaterial(current_element_type, current_ghost_type));
 
       nb_quad_per_elem = this->model->getFEM().getNbQuadraturePoints(el.type, el.ghost_type);
       nb_component = vect->getNbComponent();
     }
 
     UInt el_id = (*element_index_material)(el.element, 0);
     types::Vector<T> data(vect->storage() + el_id * nb_component * nb_quad_per_elem,
 			  nb_component * nb_quad_per_elem);
     if(pack_helper)
       buffer << data;
     else
       buffer >> data;
   }
 }
 
 /* -------------------------------------------------------------------------- */
 template <typename T>
 inline T Material::getParam(const ID & param) const {
   try {
     return params.get<T>(param);
   } catch (...) {
     AKANTU_EXCEPTION("No parameter " << param << " in the material " << id);
   }
 }
 
 /* -------------------------------------------------------------------------- */
 template <typename T>
 inline void Material::setParam(const ID & param, T value) {
   try {
     params.set<T>(param, value);
   } catch(...) {
     AKANTU_EXCEPTION("No parameter " << param << " in the material " << id);
   }
   updateInternalParameters();
 }
 
 
 /* -------------------------------------------------------------------------- */
 template<typename T>
 void Material::removeQuadraturePointsFromVectors(ByElementTypeVector<T> & data,
 						 const ByElementTypeUInt & new_numbering) {
   for(UInt g = _not_ghost; g <= _ghost; ++g) {
     GhostType gt = (GhostType) g;
     ByElementTypeVector<UInt>::type_iterator it  = new_numbering.firstType(0, gt, _ek_not_defined);
     ByElementTypeVector<UInt>::type_iterator end = new_numbering.lastType(0, gt, _ek_not_defined);
     for (; it != end; ++it) {
       ElementType type = *it;
       if(data.exists(type, gt)){
 	const Vector<UInt> & renumbering = new_numbering(type, gt);
 
 	Vector<T> & vect = data(type, gt);
 
 	UInt nb_quad_per_elem = this->model->getFEM().getNbQuadraturePoints(type, gt);
 	UInt nb_component = vect.getNbComponent();
 
 	Vector<T> tmp(renumbering.getSize()*nb_quad_per_elem, nb_component);
 	UInt new_size = 0;
 	for (UInt i = 0; i < vect.getSize(); ++i) {
 	  UInt new_i = renumbering(i);
 	  if(new_i != UInt(-1)) {
 	    memcpy(tmp.storage() + new_i * nb_component * nb_quad_per_elem,
 		   vect.storage() + i * nb_component * nb_quad_per_elem,
 		   nb_component * nb_quad_per_elem * sizeof(T));
 	    ++new_size;
 	  }
 	}
 	tmp.resize(new_size * nb_quad_per_elem);
 	vect.copy(tmp);
       }
     }
   }
 }
 
 /* -------------------------------------------------------------------------- */
 inline void Material::onElementsAdded(__attribute__((unused)) const Vector<Element> & element_list) {
   for (std::map<ID, ByElementTypeReal *>::iterator it = internal_vectors_real.begin();
        it != internal_vectors_real.end();
        ++it) {
     resizeInternalVector(*(it->second));
   }
 
   for (std::map<ID, ByElementTypeUInt *>::iterator it = internal_vectors_uint.begin();
        it != internal_vectors_uint.end();
        ++it) {
     resizeInternalVector(*(it->second));
   }
 }
 
 /* -------------------------------------------------------------------------- */
 inline void Material::onElementsRemoved(const Vector<Element> & element_list, const ByElementTypeUInt & new_numbering) {
   UInt my_num = model->getInternalIndexFromID(id);
 
   ByElementTypeUInt material_local_new_numbering("remove mat filter elem", id);
 
   Vector<Element>::const_iterator<Element> el_begin = element_list.begin();
   Vector<Element>::const_iterator<Element> el_end   = element_list.end();
 
   for(UInt g = _not_ghost; g <= _ghost; ++g) {
     GhostType gt = (GhostType) g;
     ByElementTypeVector<UInt>::type_iterator it  = new_numbering.firstType(0, gt, _ek_not_defined);
     ByElementTypeVector<UInt>::type_iterator end = new_numbering.lastType(0, gt, _ek_not_defined);
     for (; it != end; ++it) {
       ElementType type = *it;
       if(element_filter.exists(type, gt)){
 	Vector<UInt> & elem_filter = element_filter(type, gt);
 
 	Vector<UInt> & element_index_material = model->getElementIndexByMaterial(type, gt);
 	element_index_material.resize(model->getFEM().getMesh().getNbElement(type, gt)); // all materials will resize of the same size...
 
 	if(!material_local_new_numbering.exists(type, gt))
 	  material_local_new_numbering.alloc(elem_filter.getSize(), 1, type, gt);
 
 	Vector<UInt> & mat_renumbering = material_local_new_numbering(type, gt);
 	const Vector<UInt> & renumbering = new_numbering(type, gt);
 	Vector<UInt> elem_filter_tmp;
 	UInt ni = 0;
 	Element el;
 	el.type = type;
 	el.ghost_type = gt;
 	for (UInt i = 0; i < elem_filter.getSize(); ++i) {
 	  el.element = elem_filter(i);
 	  if(std::find(el_begin, el_end, el) == el_end) {
 	    UInt new_el = renumbering(el.element);
 	    AKANTU_DEBUG_ASSERT(new_el != UInt(-1), "A not removed element as been badly renumbered");
 	    elem_filter_tmp.push_back(new_el);
 	    mat_renumbering(i) = ni;
 	    element_index_material(new_el, 0) = ni;
 	    element_index_material(new_el, 1) = my_num;
 	    ++ni;
 	  } else {
 	    mat_renumbering(i) = UInt(-1);
 	  }
 	}
 
 	elem_filter.resize(elem_filter_tmp.getSize());
 	elem_filter.copy(elem_filter);
       }
     }
   }
 
   for (std::map<ID, ByElementTypeReal *>::iterator it = internal_vectors_real.begin();
        it != internal_vectors_real.end();
        ++it) {
     this->removeQuadraturePointsFromVectors(*(it->second), material_local_new_numbering);
   }
 
   for (std::map<ID, ByElementTypeUInt *>::iterator it = internal_vectors_uint.begin();
        it != internal_vectors_uint.end();
        ++it) {
     this->removeQuadraturePointsFromVectors(*(it->second), material_local_new_numbering);
   }
 }
diff --git a/src/model/solid_mechanics/materials/material_non_local.cc b/src/model/solid_mechanics/materials/material_cohesive_includes.hh
similarity index 55%
rename from src/model/solid_mechanics/materials/material_non_local.cc
rename to src/model/solid_mechanics/materials/material_cohesive_includes.hh
index c43c51dfc..1864718e8 100644
--- a/src/model/solid_mechanics/materials/material_non_local.cc
+++ b/src/model/solid_mechanics/materials/material_cohesive_includes.hh
@@ -1,41 +1,42 @@
 /**
- * @file   material_non_local.cc
+ * @file   material_cohesive_includes.hh
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
- * @date   Tue Aug  2 11:21:58 2011
+ * @date   Tue Oct 30 15:32:47 2012
  *
- * @brief  implementation of the common parts for Non local materials
+ * @brief  List of includes for cohesive elements
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
-#include "material_non_local.hh"
-#include "solid_mechanics_model.hh"
-#include "fem.hh"
-
-
-
-/* -------------------------------------------------------------------------- */
-
-__BEGIN_AKANTU__
-
-
-__END_AKANTU__
 
+#include "material_cohesive.hh"
+#include "material_cohesive_linear.hh"
+#include "material_cohesive_bilinear.hh"
+#include "material_cohesive_linear_extrinsic.hh"
+#include "material_cohesive_exponential.hh"
+#include "material_cohesive_linear_exponential_extrinsic.hh"
+
+#define AKANTU_COHESIVE_MATERIAL_LIST					\
+  ((2, (cohesive_bilinear      , MaterialCohesiveBilinear     )))	\
+  ((2, (cohesive_linear        , MaterialCohesiveLinear       )))	\
+  ((2, (cohesive_linear_extrinsic, MaterialCohesiveLinearExtrinsic )))	\
+  ((2, (cohesive_linear_exponential_extrinsic, MaterialCohesiveLinearExponentialExtrinsic ))) \
+  ((2, (cohesive_exponential   , MaterialCohesiveExponential  )))
diff --git a/src/model/solid_mechanics/materials/material_elastic.cc b/src/model/solid_mechanics/materials/material_elastic.cc
index 37dd6852f..ed1c08db6 100644
--- a/src/model/solid_mechanics/materials/material_elastic.cc
+++ b/src/model/solid_mechanics/materials/material_elastic.cc
@@ -1,111 +1,111 @@
 /**
  * @file   material_elastic.cc
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Tue Jul 27 11:53:52 2010
  *
  * @brief  Specialization of the material class for the elastic material
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 #include "material_elastic.hh"
 #include "solid_mechanics_model.hh"
 
 __BEGIN_AKANTU__
 
 /* -------------------------------------------------------------------------- */
 template<UInt spatial_dimension>
 MaterialElastic<spatial_dimension>::MaterialElastic(SolidMechanicsModel & model, const ID & id)  :
   Material(model, id) {
   AKANTU_DEBUG_IN();
 
   this->registerParam("E"           ,E           , 0.   , ParamAccessType(_pat_parsable | _pat_modifiable), "Young's modulus"        );
   this->registerParam("nu"          ,nu          , 0.5  , ParamAccessType(_pat_parsable | _pat_modifiable), "Poisson's ratio"        );
-  this->registerParam("Plane_Stress",plane_stress, false, _pat_parsable, "Is plane stress"        );
+  this->registerParam("Plane_Stress",plane_stress, false, ParamAccessType(_pat_parsable | _pat_readable)  , "Is plane stress"        );
   this->registerParam("lambda"      ,lambda             , _pat_readable, "First Lamé coefficient" );
   this->registerParam("mu"          ,mu                 , _pat_readable, "Second Lamé coefficient");
   this->registerParam("kapa"        ,kpa                , _pat_readable, "Bulk coefficient"       );
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 template<UInt spatial_dimension>
 void MaterialElastic<spatial_dimension>::initMaterial() {
   AKANTU_DEBUG_IN();
   Material::initMaterial();
   if (spatial_dimension == 1) nu = 0.;
   updateInternalParameters();
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 template<UInt spatial_dimension>
 void MaterialElastic<spatial_dimension>::updateInternalParameters() {
   lambda   = nu * E / ((1 + nu) * (1 - 2*nu));
   mu       = E / (2 * (1 + nu));
 
   if(plane_stress) lambda = nu * E / ((1 + nu)*(1 - nu));
 
   kpa      = lambda + 2./3. * mu;
 }
 
 /* -------------------------------------------------------------------------- */
 template<UInt spatial_dimension>
 void MaterialElastic<spatial_dimension>::computeStress(ElementType el_type, GhostType ghost_type) {
   AKANTU_DEBUG_IN();
   MATERIAL_STRESS_QUADRATURE_POINT_LOOP_BEGIN(el_type, ghost_type);
   computeStressOnQuad(grad_u, sigma);
   MATERIAL_STRESS_QUADRATURE_POINT_LOOP_END;
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 template<UInt spatial_dimension>
 void MaterialElastic<spatial_dimension>::computeTangentModuli(__attribute__((unused)) const ElementType & el_type,
 							      Vector<Real> & tangent_matrix,
 							      __attribute__((unused)) GhostType ghost_type) {
   AKANTU_DEBUG_IN();
 
   MATERIAL_TANGENT_QUADRATURE_POINT_LOOP_BEGIN(tangent_matrix);
   computeTangentModuliOnQuad(tangent);
   MATERIAL_TANGENT_QUADRATURE_POINT_LOOP_END;
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 template<UInt spatial_dimension>
 Real MaterialElastic<spatial_dimension>::getPushWaveSpeed() const {
   return sqrt((lambda + 2*mu)/rho);
 }
 
 /* -------------------------------------------------------------------------- */
 template<UInt spatial_dimension>
 Real MaterialElastic<spatial_dimension>::getShearWaveSpeed() const {
   return sqrt(mu/rho);
 }
 
 /* -------------------------------------------------------------------------- */
 
 INSTANSIATE_MATERIAL(MaterialElastic);
 
 __END_AKANTU__
diff --git a/src/model/solid_mechanics/materials/material_elastic_inline_impl.cc b/src/model/solid_mechanics/materials/material_elastic_inline_impl.cc
index dd36c7219..da65eebfd 100644
--- a/src/model/solid_mechanics/materials/material_elastic_inline_impl.cc
+++ b/src/model/solid_mechanics/materials/material_elastic_inline_impl.cc
@@ -1,95 +1,101 @@
 /**
  * @file   material_elastic_inline_impl.cc
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Tue Jul 27 11:57:43 2010
  *
  * @brief  Implementation of the inline functions of the material elastic
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 
 
 /* -------------------------------------------------------------------------- */
 template<UInt spatial_dimension>
 inline void MaterialElastic<spatial_dimension>::computeStressOnQuad(const types::RMatrix & grad_u,
 								    types::RMatrix & sigma) {
   Real trace = grad_u.trace();/// trace = (\nabla u)_{kk}
 
   /// \sigma_{ij} = \lambda * (\nabla u)_{kk} * \delta_{ij} + \mu * (\nabla u_{ij} + \nabla u_{ji})
   for (UInt i = 0; i < spatial_dimension; ++i) {
     for (UInt j = 0; j < spatial_dimension; ++j) {
       sigma(i, j) =  (i == j)*lambda*trace + mu*(grad_u(i, j) + grad_u(j, i));
     }
   }
 
 }
 
 /* -------------------------------------------------------------------------- */
 template<>
 inline void MaterialElastic<1>::computeStressOnQuad(const types::RMatrix & grad_u,
 						    types::RMatrix & sigma) {
   sigma(0, 0) =  E*grad_u(0, 0);
 }
 
 
 /* -------------------------------------------------------------------------- */
 template<UInt spatial_dimension>
-void MaterialElastic<spatial_dimension>::computeTangentModuliOnQuad(types::RMatrix & tangent) {
+inline void MaterialElastic<spatial_dimension>::computeTangentModuliOnQuad(types::RMatrix & tangent) {
   UInt n = tangent.cols();
 
   //Real Ep = E/((1+nu)*(1-2*nu));
   Real Miiii = lambda + 2*mu;
   Real Miijj = lambda;
   Real Mijij = mu;
 
   if(spatial_dimension == 1)
     tangent(0, 0) = E;
   else
     tangent(0, 0) = Miiii;
 
   // test of dimension should by optimized out by the compiler due to the template
   if(spatial_dimension >= 2) {
     tangent(1, 1) = Miiii;
     tangent(0, 1) = Miijj;
     tangent(1, 0) = Miijj;
 
     tangent(n - 1, n - 1) = Mijij;
   }
 
   if(spatial_dimension == 3) {
     tangent(2, 2) = Miiii;
     tangent(0, 2) = Miijj;
     tangent(1, 2) = Miijj;
     tangent(2, 0) = Miijj;
     tangent(2, 1) = Miijj;
 
     tangent(3, 3) = Mijij;
     tangent(4, 4) = Mijij;
   }
 }
 
+/* -------------------------------------------------------------------------- */
+template<>
+inline void MaterialElastic<1>::computeTangentModuliOnQuad(types::RMatrix & tangent) {
+  tangent(0, 0) = E;
+}
+
 /* -------------------------------------------------------------------------- */
 template<UInt spatial_dimension>
 inline Real MaterialElastic<spatial_dimension>::getStableTimeStep(Real h,
 								  __attribute__ ((unused)) const Element & element) {
   return (h/getPushWaveSpeed());
 }
diff --git a/src/solver/solver.cc b/src/model/solid_mechanics/materials/material_extra_includes.hh
similarity index 51%
copy from src/solver/solver.cc
copy to src/model/solid_mechanics/materials/material_extra_includes.hh
index c9fc46ebd..109bd589c 100644
--- a/src/solver/solver.cc
+++ b/src/model/solid_mechanics/materials/material_extra_includes.hh
@@ -1,55 +1,52 @@
 /**
- * @file   solver.cc
+ * @file   material_extra_includes.hh
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
- * @date   Wed Nov 17 16:19:27 2010
+ * @date   Tue Oct 30 15:35:33 2012
  *
- * @brief  Solver interface class
+ * @brief  Extra list of materials
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
-#include "solver.hh"
 
-/* -------------------------------------------------------------------------- */
-
-__BEGIN_AKANTU__
-
-SolverOptions _solver_no_options(true);
-
-/* -------------------------------------------------------------------------- */
-Solver::Solver(SparseMatrix & matrix,
-	       const ID & id,
-	       const MemoryID & memory_id) :
-  Memory(memory_id), id(id), matrix(&matrix), is_matrix_allocated(false), mesh(NULL) {
-  AKANTU_DEBUG_IN();
-
-
-  AKANTU_DEBUG_OUT();
-}
-
-/* -------------------------------------------------------------------------- */
-Solver::~Solver() {
-  AKANTU_DEBUG_IN();
-
-  AKANTU_DEBUG_OUT();
-}
-
-__END_AKANTU__
+// damage materials
+#include "material_damage.hh"
+#include "material_marigo.hh"
+#include "material_mazars.hh"
+#include "material_damage_linear.hh"
+#include "material_vreepeerlings.hh"
+
+// visco-elastic materials
+#include "material_stiffness_proportional.hh"
+
+// elastic materials
+#include "material_elastic_orthotropic.hh"
+#include "material_neohookean.hh"
+
+
+#define  AKANTU_EXTRA_MATERIAL_LIST					\
+  ((2, (damage_linear      , MaterialDamageLinear         )))		\
+  ((2, (marigo             , MaterialMarigo               )))		\
+  ((2, (mazars             , MaterialMazars               )))		\
+  ((2, (vreepeerlings      , MaterialVreePeerlings        )))		\
+  ((2, (ve_stiffness_prop  , MaterialStiffnessProportional)))		\
+  ((2, (elastic_orthotropic, MaterialElasticOrthotropic   )))		\
+  ((2, (neohookean         , MaterialNeohookean           )))
diff --git a/src/model/solid_mechanics/materials/material_non_local_includes.hh b/src/model/solid_mechanics/materials/material_non_local_includes.hh
new file mode 100644
index 000000000..49dc78d3f
--- /dev/null
+++ b/src/model/solid_mechanics/materials/material_non_local_includes.hh
@@ -0,0 +1,49 @@
+/**
+ * @file   material_non_local_includes.hh
+ * @author Nicolas Richart <nicolas.richart@epfl.ch>
+ * @date   Tue Oct 30 15:36:08 2012
+ *
+ * @brief  Non local materials includes
+ *
+ * @section LICENSE
+ *
+ * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
+ * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
+ *
+ * Akantu is free  software: you can redistribute it and/or  modify it under the
+ * terms  of the  GNU Lesser  General Public  License as  published by  the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
+ * details.
+ *
+ * You should  have received  a copy  of the GNU  Lesser General  Public License
+ * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+/* -------------------------------------------------------------------------- */
+#  include "material_marigo_non_local.hh"
+#  include "material_mazars_non_local.hh"
+#  include "material_vreepeerlings_non_local.hh"
+
+#define AKANTU_MATERIAL_WEIGHT_FUNCTION_TMPL_LIST			\
+  ((stress_wf, StressBasedWeightFunction  ))				\
+  ((damage_wf, DamagedWeightFunction      ))				\
+  ((remove_wf, RemoveDamagedWeightFunction))				\
+  ((base_wf,   BaseWeightFunction         ))
+
+
+#define AKANTU_MATERIAL_VREEPEERLINGS_WEIGHT_FUNCTION_TMPL_LIST		\
+  AKANTU_MATERIAL_WEIGHT_FUNCTION_TMPL_LIST				\
+  ((removed_damrate_wf, RemoveDamagedWithDamageRateWeightFunction))
+
+#define AKANTU_DAMAGE_NON_LOCAL_MATERIAL_LIST				\
+  ((3, (marigo_non_local       , MaterialMarigoNonLocal,		\
+	AKANTU_MATERIAL_WEIGHT_FUNCTION_TMPL_LIST)))			\
+  ((2, (mazars_non_local       , MaterialMazarsNonLocal       )))	\
+  ((3, (vreepeerlings_non_local, MaterialVreePeerlingsNonLocal,		\
+	AKANTU_MATERIAL_VREEPEERLINGS_WEIGHT_FUNCTION_TMPL_LIST)))
diff --git a/src/model/solid_mechanics/solid_mechanics_model.cc b/src/model/solid_mechanics/solid_mechanics_model.cc
index 06530ca9b..58310ef89 100644
--- a/src/model/solid_mechanics/solid_mechanics_model.cc
+++ b/src/model/solid_mechanics/solid_mechanics_model.cc
@@ -1,1356 +1,1393 @@
 /**
  * @file   solid_mechanics_model.cc
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Thu Jul 22 14:35:38 2010
  *
  * @brief  Implementation of the SolidMechanicsModel class
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 #include "aka_math.hh"
 #include "aka_common.hh"
 #include "solid_mechanics_model.hh"
 #include "integration_scheme_2nd_order.hh"
 
 #include "static_communicator.hh"
 
 #include "dof_synchronizer.hh"
 
 
 #ifdef AKANTU_USE_MUMPS
 #include "solver_mumps.hh"
 #endif
 /* -------------------------------------------------------------------------- */
 
 
 __BEGIN_AKANTU__
 
 
 /* -------------------------------------------------------------------------- */
 /**
  * A solid mechanics model need a mesh  and a dimension to be created. the model
  * by it  self can not  do a lot,  the good init  functions should be  called in
  * order to configure the model depending on what we want to do.
  *
  * @param  mesh mesh  representing  the model  we  want to  simulate
  * @param dim spatial  dimension of the problem, if dim =  0 (default value) the
  * dimension of the problem is assumed to be the on of the mesh
  * @param id an id to identify the model
  */
 SolidMechanicsModel::SolidMechanicsModel(Mesh & mesh,
 					 UInt dim,
 					 const ID & id,
 					 const MemoryID & memory_id) :
   Model(id, memory_id), Dumpable<DumperParaview>(id),
   time_step(NAN), f_m2a(1.0),
   mass_matrix(NULL),
   velocity_damping_matrix(NULL),
   stiffness_matrix(NULL),
   jacobian_matrix(NULL),
   element_material("element_material", id),
   element_index_by_material("element index by material", id),
   integrator(NULL),
   increment_flag(false), solver(NULL),
   spatial_dimension(dim),
   mesh(mesh) {
   AKANTU_DEBUG_IN();
 
   createSynchronizerRegistry(this);
 
   if (spatial_dimension == 0) spatial_dimension = mesh.getSpatialDimension();
   registerFEMObject<MyFEMType>("SolidMechanicsFEM", mesh, spatial_dimension);
 
   this->displacement = NULL;
   this->mass         = NULL;
   this->velocity     = NULL;
   this->acceleration = NULL;
   this->force        = NULL;
   this->residual     = NULL;
   this->boundary     = NULL;
 
   this->increment    = NULL;
   this->increment_acceleration = NULL;
 
   this->dof_synchronizer = NULL;
 
   materials.clear();
 
   mesh.registerEventHandler(*this);
 
   addDumpMesh(mesh);
 
   AKANTU_DEBUG_OUT();
 }
 
 
 
 /* -------------------------------------------------------------------------- */
 SolidMechanicsModel::~SolidMechanicsModel() {
   AKANTU_DEBUG_IN();
 
   std::vector<Material *>::iterator mat_it;
   for(mat_it = materials.begin(); mat_it != materials.end(); ++mat_it) {
     delete *mat_it;
   }
   materials.clear();
 
   delete integrator;
 
   if(solver) delete solver;
   if(mass_matrix) delete mass_matrix;
   if(velocity_damping_matrix) delete velocity_damping_matrix;
 
   if(stiffness_matrix && stiffness_matrix != jacobian_matrix)
     delete stiffness_matrix;
 
   if(jacobian_matrix) delete jacobian_matrix;
 
   if(dof_synchronizer) delete dof_synchronizer;
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 /* Initialisation                                                             */
 /* -------------------------------------------------------------------------- */
 /**
  * This function groups  many of the initialization in on  function. For most of
  * basics  case the  function should  be  enough. The  functions initialize  the
  * model, the internal  vectors, set them to 0, and  depending on the parameters
  * it also initialize the explicit or implicit solver.
  *
  * @param material_file the  file containing the materials to  use
  * @param method the analysis method wanted.  See the akantu::AnalysisMethod for
  * the different possibilites
  */
 void SolidMechanicsModel::initFull(std::string material_file,
 				   AnalysisMethod analysis_method) {
   method = analysis_method;
 
   // initialize the model
   initModel();
 
   // initialize the vectors
   initVectors();
 
   // set the initial condition to 0
   force->clear();
   velocity->clear();
   acceleration->clear();
   displacement->clear();
 
   // initialize pcb
   if(pbc_pair.size()!=0)
     initPBC();
 
   // initialize the time integration schemes
   switch(method) {
   case _explicit_dynamic:
     initExplicit();
     break;
   case _implicit_dynamic:
     initImplicit(true);
     break;
   case _static:
     initImplicit(false);
     break;
   }
 
   // initialize the materials
   if(material_file != "") {
     readMaterials(material_file);
     initMaterials();
   }
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::initParallel(MeshPartition * partition,
 				       DataAccessor * data_accessor) {
   AKANTU_DEBUG_IN();
 
   if (data_accessor == NULL) data_accessor = this;
   Synchronizer & synch_parallel = createParallelSynch(partition,data_accessor);
 
   synch_registry->registerSynchronizer(synch_parallel,_gst_smm_mass);
   //  synch_registry->registerSynchronizer(synch_parallel,_gst_smm_for_strain);
   synch_registry->registerSynchronizer(synch_parallel,_gst_smm_stress);
   synch_registry->registerSynchronizer(synch_parallel,_gst_smm_boundary);
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::initFEMBoundary(bool create_surface) {
 
   if(create_surface)
     MeshUtils::buildFacets(mesh);
 
   FEM & fem_boundary = getFEMBoundary();
   fem_boundary.initShapeFunctions();
   fem_boundary.computeNormalsOnControlPoints();
 }
 
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::initExplicit() {
   AKANTU_DEBUG_IN();
 
   method = _explicit_dynamic;
 
   if (integrator) delete integrator;
   integrator = new CentralDifference();
 
   UInt nb_nodes = acceleration->getSize();
   UInt nb_degree_of_freedom = acceleration->getNbComponent();
 
   std::stringstream sstr; sstr << id << ":increment_acceleration";
   increment_acceleration = &(alloc<Real>(sstr.str(), nb_nodes, nb_degree_of_freedom, Real()));
 
   AKANTU_DEBUG_OUT();
 }
 
 
 /* -------------------------------------------------------------------------- */
 /**
  * Allocate all the needed vectors. By  default their are not necessarily set to
  * 0
  *
  */
 void SolidMechanicsModel::initVectors() {
   AKANTU_DEBUG_IN();
 
   UInt nb_nodes = mesh.getNbNodes();
   std::stringstream sstr_disp; sstr_disp << id << ":displacement";
   std::stringstream sstr_mass; sstr_mass << id << ":mass";
   std::stringstream sstr_velo; sstr_velo << id << ":velocity";
   std::stringstream sstr_acce; sstr_acce << id << ":acceleration";
   std::stringstream sstr_forc; sstr_forc << id << ":force";
   std::stringstream sstr_resi; sstr_resi << id << ":residual";
   std::stringstream sstr_boun; sstr_boun << id << ":boundary";
 
   displacement = &(alloc<Real>(sstr_disp.str(), nb_nodes, spatial_dimension, REAL_INIT_VALUE));
   mass         = &(alloc<Real>(sstr_mass.str(), nb_nodes, spatial_dimension, 0));
   velocity     = &(alloc<Real>(sstr_velo.str(), nb_nodes, spatial_dimension, REAL_INIT_VALUE));
   acceleration = &(alloc<Real>(sstr_acce.str(), nb_nodes, spatial_dimension, REAL_INIT_VALUE));
   force        = &(alloc<Real>(sstr_forc.str(), nb_nodes, spatial_dimension, REAL_INIT_VALUE));
   residual     = &(alloc<Real>(sstr_resi.str(), nb_nodes, spatial_dimension, REAL_INIT_VALUE));
   boundary     = &(alloc<bool>(sstr_boun.str(), nb_nodes, spatial_dimension, false));
 
   std::stringstream sstr_curp; sstr_curp << id << ":current_position";
   current_position = &(alloc<Real>(sstr_curp.str(), 0, spatial_dimension, REAL_INIT_VALUE));
 
   for(UInt g = _not_ghost; g <= _ghost; ++g) {
     GhostType gt = (GhostType) g;
     Mesh::type_iterator it  = mesh.firstType(spatial_dimension, gt, _ek_not_defined);
     Mesh::type_iterator end = mesh.lastType(spatial_dimension, gt, _ek_not_defined);
     for(; it != end; ++it) {
       UInt nb_element = mesh.getNbElement(*it, gt);
       element_material.alloc(nb_element, 1, *it, gt);
     }
   }
 
   dof_synchronizer = new DOFSynchronizer(mesh, spatial_dimension);
   dof_synchronizer->initLocalDOFEquationNumbers();
   dof_synchronizer->initGlobalDOFEquationNumbers();
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 /**
  * Initialize the model,basically it  pre-compute the shapes, shapes derivatives
  * and jacobian
  *
  */
 void SolidMechanicsModel::initModel() {
   /// \todo add  the current position  as a parameter to  initShapeFunctions for
   /// large deformation
   getFEM().initShapeFunctions(_not_ghost);
   getFEM().initShapeFunctions(_ghost);
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::initPBC() {
   Model::initPBC();
   registerPBCSynchronizer();
 
   // as long as there are ones on the diagonal of the matrix, we can put boudandary true for slaves
   std::map<UInt, UInt>::iterator it = pbc_pair.begin();
   std::map<UInt, UInt>::iterator end = pbc_pair.end();
   UInt dim = mesh.getSpatialDimension();
   while(it != end) {
     for (UInt i=0; i<dim; ++i)
       (*boundary)((*it).first,i) = true;
     ++it;
   }
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::registerPBCSynchronizer(){
   PBCSynchronizer * synch = new PBCSynchronizer(pbc_pair);
   synch_registry->registerSynchronizer(*synch, _gst_smm_uv);
   synch_registry->registerSynchronizer(*synch, _gst_smm_mass);
   synch_registry->registerSynchronizer(*synch, _gst_smm_res);
   changeLocalEquationNumberforPBC(pbc_pair, mesh.getSpatialDimension());
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::updateCurrentPosition() {
   AKANTU_DEBUG_IN();
   UInt nb_nodes = mesh.getNbNodes();
 
   current_position->resize(nb_nodes);
   Real * current_position_val = current_position->values;
   Real * position_val         = mesh.getNodes().values;
   Real * displacement_val     = displacement->values;
 
   /// compute current_position = initial_position + displacement
   memcpy(current_position_val, position_val, nb_nodes*spatial_dimension*sizeof(Real));
   for (UInt n = 0; n < nb_nodes*spatial_dimension; ++n) {
     *current_position_val++ += *displacement_val++;
   }
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::initializeUpdateResidualData() {
   AKANTU_DEBUG_IN();
   UInt nb_nodes = mesh.getNbNodes();
   residual->resize(nb_nodes);
 
   /// copy the forces in residual for boundary conditions
   memcpy(residual->values, force->values, nb_nodes*spatial_dimension*sizeof(Real));
 
   updateCurrentPosition();
 
   AKANTU_DEBUG_OUT();
 }
 
 
 /* -------------------------------------------------------------------------- */
 /* Explicit scheme                                                            */
 /* -------------------------------------------------------------------------- */
 
 /* -------------------------------------------------------------------------- */
 /**
  * This function compute  the second member of the motion  equation.  That is to
  * say the sum of forces @f$ r = F_{ext} - F_{int} @f$. @f$ F_{ext} @f$ is given
  * by the  user in  the force  vector, and @f$  F_{int} @f$  is computed  as @f$
  * F_{int} = \int_{\Omega} N \sigma d\Omega@f$
  *
  */
 void SolidMechanicsModel::updateResidual(bool need_initialize) {
   AKANTU_DEBUG_IN();
 
   // f = f_ext - f_int
 
   // f = f_ext
   if (need_initialize) initializeUpdateResidualData();
 
   if (method == _explicit_dynamic) {
     // f -= fint
     // start synchronization
     synch_registry->asynchronousSynchronize(_gst_smm_uv);
     synch_registry->waitEndSynchronize(_gst_smm_uv);
 
     // communicate the displacement
     // synch_registry->asynchronousSynchronize(_gst_smm_for_strain);
 
     std::vector<Material *>::iterator mat_it;
 
     // call update residual on each local elements
     for(mat_it = materials.begin(); mat_it != materials.end(); ++mat_it) {
       Material & mat = **mat_it;
       mat.computeAllStresses(_not_ghost);
     }
 
 #ifdef AKANTU_DAMAGE_NON_LOCAL
     /* ------------------------------------------------------------------------ */
     /* Computation of the non local part */
     synch_registry->asynchronousSynchronize(_gst_mnl_for_average);
 
     for(mat_it = materials.begin(); mat_it != materials.end(); ++mat_it) {
       Material & mat = **mat_it;
       mat.computeAllNonLocalStresses(_not_ghost);
     }
 
     synch_registry->waitEndSynchronize(_gst_mnl_for_average);
 
     for(mat_it = materials.begin(); mat_it != materials.end(); ++mat_it) {
       Material & mat = **mat_it;
       mat.computeAllNonLocalStresses(_ghost);
     }
 #endif
 
     /* ------------------------------------------------------------------------ */
     /* assembling the forces internal */
     // communicate the strain
     synch_registry->asynchronousSynchronize(_gst_smm_stress);
 
     for(mat_it = materials.begin(); mat_it != materials.end(); ++mat_it) {
       Material & mat = **mat_it;
       mat.assembleResidual(_not_ghost);
     }
 
     // finalize communications
     synch_registry->waitEndSynchronize(_gst_smm_stress);
     //  synch_registry->waitEndSynchronize(_gst_smm_for_strain);
 
     for(mat_it = materials.begin(); mat_it != materials.end(); ++mat_it) {
       Material & mat = **mat_it;
       mat.assembleResidual(_ghost);
     }
   } else {
     Vector<Real> * Ku = new Vector<Real>(*displacement, true, "Ku");
     *Ku *= *stiffness_matrix;
     *residual -= *Ku;
 
     //   updateSupportReaction();
 
     delete Ku;
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::computeStresses() {
   if (method == _explicit_dynamic) {
     // start synchronization
     synch_registry->asynchronousSynchronize(_gst_smm_uv);
     synch_registry->waitEndSynchronize(_gst_smm_uv);
 
     // compute stresses on all local elements for each materials
     std::vector<Material *>::iterator mat_it;
     for(mat_it = materials.begin(); mat_it != materials.end(); ++mat_it) {
       Material & mat = **mat_it;
       mat.computeAllStresses(_not_ghost);
     }
 
 
     /* ------------------------------------------------------------------------ */
 #ifdef AKANTU_DAMAGE_NON_LOCAL
     /* Computation of the non local part */
     synch_registry->asynchronousSynchronize(_gst_mnl_for_average);
 
     for(mat_it = materials.begin(); mat_it != materials.end(); ++mat_it) {
       Material & mat = **mat_it;
       mat.computeAllNonLocalStresses(_not_ghost);
     }
 
     synch_registry->waitEndSynchronize(_gst_mnl_for_average);
 
     for(mat_it = materials.begin(); mat_it != materials.end(); ++mat_it) {
       Material & mat = **mat_it;
       mat.computeAllNonLocalStresses(_ghost);
     }
 #endif
   } else {
     std::vector<Material *>::iterator mat_it;
     for(mat_it = materials.begin(); mat_it != materials.end(); ++mat_it) {
       Material & mat = **mat_it;
       mat.computeAllStressesFromTangentModuli(_not_ghost);
     }
   }
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::updateResidualInternal() {
   AKANTU_DEBUG_IN();
 
   // f = f_ext - f_int - Ma - Cv = r - Ma - Cv;
 
   if(method != _static) {
     // f -= Ma
     if(mass_matrix) {
       // if full mass_matrix
       Vector<Real> * Ma = new Vector<Real>(*acceleration, true, "Ma");
       *Ma *= *mass_matrix;
       /// \todo check unit conversion for implicit dynamics
       //      *Ma /= f_m2a
       *residual -= *Ma;
       delete Ma;
     } else {
       // else lumped mass
       UInt nb_nodes = acceleration->getSize();
       UInt nb_degree_of_freedom = acceleration->getNbComponent();
 
       Real * mass_val     = mass->values;
       Real * accel_val    = acceleration->values;
       Real * res_val      = residual->values;
       bool * boundary_val = boundary->values;
 
       for (UInt n = 0; n < nb_nodes * nb_degree_of_freedom; ++n) {
 	if(!(*boundary_val)) {
 	  *res_val -= *accel_val * *mass_val /f_m2a;
 	}
 	boundary_val++;
 	res_val++;
 	mass_val++;
 	accel_val++;
       }
     }
 
     // f -= Cv
     if(velocity_damping_matrix) {
       Vector<Real> * Cv = new Vector<Real>(*velocity);
       *Cv *= *velocity_damping_matrix;
       *residual -= *Cv;
       delete Cv;
     }
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::updateAcceleration() {
   AKANTU_DEBUG_IN();
 
   updateResidualInternal();
 
   if(method == _explicit_dynamic && !mass_matrix) {
     /* residual = residual_{n+1} - M * acceleration_n therefore
        solution = increment acceleration not acceleration */
     solveLumped(*increment_acceleration,
 		*mass,
 		*residual,
 		*boundary,
 		f_m2a);
   } else {
     solveDynamic<NewmarkBeta::_acceleration_corrector>(*increment_acceleration);
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::solveLumped(Vector<Real> & x,
 				      const Vector<Real> & A,
 				      const Vector<Real> & b,
 				      const Vector<bool> & boundary,
 				      Real alpha) {
   Real * A_val = A.storage();
   Real * b_val = b.storage();
   Real * x_val = x.storage();
   bool * boundary_val = boundary.storage();
 
   UInt nb_degrees_of_freedom = x.getSize() * x.getNbComponent();
 
   for (UInt n = 0; n < nb_degrees_of_freedom; ++n) {
     if(!(*boundary_val)) {
       *x_val = alpha * (*b_val / *A_val);
     }
     x_val++;
     A_val++;
     b_val++;
     boundary_val++;
   }
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::explicitPred() {
   AKANTU_DEBUG_IN();
 
   if(increment_flag) {
     memcpy(increment->values,
 	   displacement->values,
 	   displacement->getSize()*displacement->getNbComponent()*sizeof(Real));
   }
 
   AKANTU_DEBUG_ASSERT(integrator,"itegrator should have been allocated: "
 		      << "have called initExplicit ? "
 		      << "or initImplicit ?");
 
   integrator->integrationSchemePred(time_step,
 				    *displacement,
 				    *velocity,
 				    *acceleration,
 				    *boundary);
 
   if(increment_flag) {
     Real * inc_val = increment->values;
     Real * dis_val = displacement->values;
     UInt nb_nodes = displacement->getSize();
 
     for (UInt n = 0; n < nb_nodes; ++n) {
       *inc_val = *dis_val - *inc_val;
       inc_val++;
       dis_val++;
     }
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::explicitCorr() {
   AKANTU_DEBUG_IN();
 
   integrator->integrationSchemeCorrAccel(time_step,
 					 *displacement,
 					 *velocity,
 					 *acceleration,
 					 *boundary,
 					 *increment_acceleration);
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 /* Implicit scheme                                                            */
 /* -------------------------------------------------------------------------- */
 
 /* -------------------------------------------------------------------------- */
 /**
  * Initialize the solver and create the sparse matrices needed.
  *
  */
 void SolidMechanicsModel::initSolver(__attribute__((unused)) SolverOptions & options) {
 #if !defined(AKANTU_USE_MUMPS) // or other solver in the future \todo add AKANTU_HAS_SOLVER in CMake
   AKANTU_DEBUG_ERROR("You should at least activate one solver.");
 #else
   UInt nb_global_node = mesh.getNbGlobalNodes();
 
   std::stringstream sstr; sstr << id << ":jacobian_matrix";
   jacobian_matrix = new SparseMatrix(nb_global_node * spatial_dimension, _symmetric,
 					 spatial_dimension, sstr.str(), memory_id);
   //  dof_synchronizer->initGlobalDOFEquationNumbers();
   jacobian_matrix->buildProfile(mesh, *dof_synchronizer);
 
 #ifdef AKANTU_USE_MUMPS
   std::stringstream sstr_solv; sstr_solv << id << ":solver";
   solver = new SolverMumps(*jacobian_matrix, sstr_solv.str());
 
   dof_synchronizer->initScatterGatherCommunicationScheme();
 #else
   AKANTU_DEBUG_ERROR("You should at least activate one solver.");
 #endif //AKANTU_USE_MUMPS
 
   solver->initialize(options);
 #endif //AKANTU_HAS_SOLVER
 }
 
 
 /* -------------------------------------------------------------------------- */
 /**
  * Initialize the implicit solver, either for dynamic or static cases,
  *
  * @param dynamic
  */
 void SolidMechanicsModel::initImplicit(bool dynamic, SolverOptions & solver_options) {
   AKANTU_DEBUG_IN();
 
   method = dynamic ? _implicit_dynamic : _static;
 
   initSolver(solver_options);
 
   if(method == _implicit_dynamic) {
     if(integrator) delete integrator;
     integrator = new TrapezoidalRule2();
   }
 
   std::stringstream sstr; sstr << id << ":stiffness_matrix";
   stiffness_matrix = new SparseMatrix(*jacobian_matrix, sstr.str(), memory_id);
   // } else {
   //   stiffness_matrix = jacobian_matrix;
   // }
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::initialAcceleration() {
   AKANTU_DEBUG_IN();
 
   AKANTU_DEBUG_INFO("Solving Ma = f");
 
   Solver * acc_solver = NULL;
 
   std::stringstream sstr; sstr << id << ":tmp_mass_matrix";
   SparseMatrix * tmp_mass = new SparseMatrix(*mass_matrix, sstr.str(), memory_id);
 
 #ifdef AKANTU_USE_MUMPS
   std::stringstream sstr_solver; sstr << id << ":solver_mass_matrix";
   acc_solver = new SolverMumps(*mass_matrix, sstr_solver.str());
 
   dof_synchronizer->initScatterGatherCommunicationScheme();
 #else
   AKANTU_DEBUG_ERROR("You should at least activate one solver.");
 #endif //AKANTU_USE_MUMPS
 
   acc_solver->initialize();
 
   tmp_mass->applyBoundary(*boundary);
 
   acc_solver->setRHS(*residual);
   acc_solver->solve(*acceleration);
 
   delete acc_solver;
   delete tmp_mass;
 
   AKANTU_DEBUG_OUT();
 }
 
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::assembleStiffnessMatrix() {
   AKANTU_DEBUG_IN();
 
   stiffness_matrix->clear();
 
   // call compute stiffness matrix on each local elements
   std::vector<Material *>::iterator mat_it;
   for(mat_it = materials.begin(); mat_it != materials.end(); ++mat_it) {
     (*mat_it)->assembleStiffnessMatrix(_not_ghost);
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::solveDynamic() {
   AKANTU_DEBUG_IN();
 
   AKANTU_DEBUG_ASSERT(stiffness_matrix != NULL,
 		      "You should first initialize the implicit solver and assemble the stiffness matrix");
   AKANTU_DEBUG_ASSERT(mass_matrix != NULL,
 		      "You should first initialize the implicit solver and assemble the mass matrix");
 
   if(!increment) setIncrementFlagOn();
 
   updateResidualInternal();
 
   solveDynamic<NewmarkBeta::_displacement_corrector>(*increment);
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::solveStatic() {
   AKANTU_DEBUG_IN();
 
   AKANTU_DEBUG_INFO("Solving Ku = f");
   AKANTU_DEBUG_ASSERT(stiffness_matrix != NULL,
 		      "You should first initialize the implicit solver and assemble the stiffness matrix");
 
   UInt nb_nodes = displacement->getSize();
   UInt nb_degree_of_freedom = displacement->getNbComponent();
 
   //  if(method != _static)
   jacobian_matrix->copyContent(*stiffness_matrix);
 
   jacobian_matrix->applyBoundary(*boundary);
 
   solver->setRHS(*residual);
 
   if(!increment) setIncrementFlagOn();
 
   solver->solve(*increment);
 
   Real * increment_val     = increment->values;
   Real * displacement_val  = displacement->values;
   bool * boundary_val      = boundary->values;
 
   for (UInt n = 0; n < nb_nodes * nb_degree_of_freedom; ++n) {
     if(!(*boundary_val)) {
       *displacement_val += *increment_val;
     }
 
     displacement_val++;
     boundary_val++;
     increment_val++;
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 bool SolidMechanicsModel::testConvergenceIncrement(Real tolerance) {
   Real error;
   bool tmp = testConvergenceIncrement(tolerance, error);
 
   AKANTU_DEBUG_INFO("Norm of increment : " << error);
 
   return tmp;
 }
 
 /* -------------------------------------------------------------------------- */
 bool SolidMechanicsModel::testConvergenceIncrement(Real tolerance, Real & error) {
   AKANTU_DEBUG_IN();
 
   UInt nb_nodes = displacement->getSize();
   UInt nb_degree_of_freedom = displacement->getNbComponent();
 
   error = 0;
   Real norm[2] = {0., 0.};
   Real * increment_val    = increment->storage();
   bool * boundary_val     = boundary->storage();
   Real * displacement_val = displacement->storage();
 
   for (UInt n = 0; n < nb_nodes; ++n) {
     bool is_local_node = mesh.isLocalOrMasterNode(n);
     for (UInt d = 0; d < nb_degree_of_freedom; ++d) {
       if(!(*boundary_val) && is_local_node) {
 	norm[0] += *increment_val * *increment_val;
 	norm[1] += *displacement_val * *displacement_val;
       }
       boundary_val++;
       increment_val++;
       displacement_val++;
     }
   }
 
   StaticCommunicator::getStaticCommunicator().allReduce(norm, 2, _so_sum);
 
   norm[0] = sqrt(norm[0]);
   norm[1] = sqrt(norm[1]);
   AKANTU_DEBUG_ASSERT(!Math::isnan(norm[0]), "Something goes wrong in the solve phase");
 
 
   AKANTU_DEBUG_OUT();
   error = norm[0] / norm[1];
   return (error < tolerance);
 }
 
 /* -------------------------------------------------------------------------- */
 bool SolidMechanicsModel::testConvergenceResidual(Real tolerance) {
   Real error;
   bool tmp = testConvergenceResidual(tolerance, error);
 
   AKANTU_DEBUG_INFO("Norm of residual : " << error);
 
   return tmp;
 }
 
 /* -------------------------------------------------------------------------- */
 bool SolidMechanicsModel::testConvergenceResidual(Real tolerance, Real & norm) {
   AKANTU_DEBUG_IN();
 
   UInt nb_nodes = residual->getSize();
 
   norm = 0;
   Real * residual_val = residual->values;
   bool * boundary_val = boundary->values;
 
   for (UInt n = 0; n < nb_nodes; ++n) {
     bool is_local_node = mesh.isLocalOrMasterNode(n);
     if(is_local_node) {
       for (UInt d = 0; d < spatial_dimension; ++d) {
 	if(!(*boundary_val)) {
 	  norm += *residual_val * *residual_val;
 	}
 	boundary_val++;
 	residual_val++;
       }
     } else {
       boundary_val += spatial_dimension;
       residual_val += spatial_dimension;
     }
   }
 
   StaticCommunicator::getStaticCommunicator().allReduce(&norm, 1, _so_sum);
 
   norm = sqrt(norm);
 
   AKANTU_DEBUG_ASSERT(!Math::isnan(norm), "Something goes wrong in the solve phase");
 
   AKANTU_DEBUG_OUT();
   return (norm < tolerance);
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::implicitPred() {
   AKANTU_DEBUG_IN();
 
   integrator->integrationSchemePred(time_step,
 				    *displacement,
 				    *velocity,
 				    *acceleration,
 				    *boundary);
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::implicitCorr() {
   AKANTU_DEBUG_IN();
 
   integrator->integrationSchemeCorrDispl(time_step,
 					 *displacement,
 					 *velocity,
 					 *acceleration,
 					 *boundary,
 					 *increment);
 
   AKANTU_DEBUG_OUT();
 }
 
 
 /* -------------------------------------------------------------------------- */
 /* Information                                                                */
 /* -------------------------------------------------------------------------- */
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::synchronizeBoundaries() {
   AKANTU_DEBUG_IN();
   AKANTU_DEBUG_ASSERT(synch_registry,"Synchronizer registry was not initialized."
 		      << " Did you call initParallel?");
   synch_registry->synchronize(_gst_smm_boundary);
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::synchronizeResidual() {
   AKANTU_DEBUG_IN();
   AKANTU_DEBUG_ASSERT(synch_registry,"Synchronizer registry was not initialized."
 		      << " Did you call initPBC?");
   synch_registry->synchronize(_gst_smm_res);
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::setIncrementFlagOn() {
   AKANTU_DEBUG_IN();
 
   if(!increment) {
     UInt nb_nodes = mesh.getNbNodes();
     std::stringstream sstr_inc; sstr_inc << id << ":increment";
     increment = &(alloc<Real>(sstr_inc.str(), nb_nodes, spatial_dimension, 0));
   }
 
   increment_flag = true;
 
   AKANTU_DEBUG_OUT();
 }
 
 
 
 /* -------------------------------------------------------------------------- */
 Real SolidMechanicsModel::getStableTimeStep() {
   AKANTU_DEBUG_IN();
 
   Real min_dt = getStableTimeStep(_not_ghost);
 
   /// reduction min over all processors
   StaticCommunicator::getStaticCommunicator().allReduce(&min_dt, 1, _so_min);
 
   AKANTU_DEBUG_OUT();
   return min_dt;
 }
 
 /* -------------------------------------------------------------------------- */
 Real SolidMechanicsModel::getStableTimeStep(const GhostType & ghost_type) {
   AKANTU_DEBUG_IN();
 
   Material ** mat_val = &(materials.at(0));
   Real min_dt = std::numeric_limits<Real>::max();
 
   Real * coord    = mesh.getNodes().values;
   Real * disp_val = displacement->values;
 
   Element elem;
   elem.ghost_type = ghost_type;
 
   Mesh::type_iterator it  = mesh.firstType(spatial_dimension, ghost_type);
   Mesh::type_iterator end = mesh.lastType(spatial_dimension, ghost_type);
   for(; it != end; ++it) {
     elem.type = *it;
     UInt nb_nodes_per_element = mesh.getNbNodesPerElement(*it);
     UInt nb_element           = mesh.getNbElement(*it);
 
     UInt * conn         = mesh.getConnectivity(*it, ghost_type).storage();
     UInt * elem_mat_val = element_material(*it, ghost_type).storage();
 
     Real * u = new Real[nb_nodes_per_element*spatial_dimension];
 
     for (UInt el = 0; el < nb_element; ++el) {
       UInt el_offset  = el * nb_nodes_per_element;
       elem.element = el;
       for (UInt n = 0; n < nb_nodes_per_element; ++n) {
 	UInt offset_conn = conn[el_offset + n] * spatial_dimension;
 	memcpy(u + n * spatial_dimension,
 	       coord + offset_conn,
 	       spatial_dimension * sizeof(Real));
 
 	for (UInt i = 0; i < spatial_dimension; ++i) {
 	  u[n * spatial_dimension + i] += disp_val[offset_conn + i];
 	}
       }
 
       Real el_size    = getFEM().getElementInradius(u, *it);
       Real el_dt      = mat_val[elem_mat_val[el]]->getStableTimeStep(el_size, elem);
       min_dt = min_dt > el_dt ? el_dt : min_dt;
     }
 
     delete [] u;
   }
 
   AKANTU_DEBUG_OUT();
   return min_dt;
 }
 
 /* -------------------------------------------------------------------------- */
 Real SolidMechanicsModel::getPotentialEnergy() {
   AKANTU_DEBUG_IN();
   Real energy = 0.;
 
   /// call update residual on each local elements
   std::vector<Material *>::iterator mat_it;
   for(mat_it = materials.begin(); mat_it != materials.end(); ++mat_it) {
     energy += (*mat_it)->getPotentialEnergy();
   }
 
   /// reduction sum over all processors
   StaticCommunicator::getStaticCommunicator().allReduce(&energy, 1, _so_sum);
 
   AKANTU_DEBUG_OUT();
   return energy;
 }
 
 
 /* -------------------------------------------------------------------------- */
 Real SolidMechanicsModel::getKineticEnergy() {
   AKANTU_DEBUG_IN();
 
   Real ekin = 0.;
 
   UInt nb_nodes = mesh.getNbNodes();
 
   Real * vel_val  = velocity->values;
   Real * mass_val = mass->values;
 
   for (UInt n = 0; n < nb_nodes; ++n) {
     Real mv2 = 0;
     bool is_local_node = mesh.isLocalOrMasterNode(n);
     bool is_not_pbc_slave_node = !getIsPBCSlaveNode(n);
     bool count_node = is_local_node && is_not_pbc_slave_node;
     for (UInt i = 0; i < spatial_dimension; ++i) {
       mv2 += count_node * *vel_val * *vel_val * *mass_val;
 
       vel_val++;
       mass_val++;
     }
     ekin += mv2;
   }
 
   StaticCommunicator::getStaticCommunicator().allReduce(&ekin, 1, _so_sum);
 
   AKANTU_DEBUG_OUT();
   return ekin * .5;
 }
 
 /* -------------------------------------------------------------------------- */
 Real SolidMechanicsModel::getExternalWork() {
   AKANTU_DEBUG_IN();
 
   Real * velo = velocity->storage();
   Real * forc = force->storage();
   Real * resi = residual->storage();
   bool * boun = boundary->storage();
 
   Real work = 0.;
 
   UInt nb_nodes = mesh.getNbNodes();
 
   for (UInt n = 0; n < nb_nodes; ++n) {
     bool is_local_node = mesh.isLocalOrMasterNode(n);
     bool is_not_pbc_slave_node = !getIsPBCSlaveNode(n);
     bool count_node = is_local_node && is_not_pbc_slave_node;
 
     for (UInt i = 0; i < spatial_dimension; ++i) {
       if(*boun)
 	work -= count_node * *resi * *velo * time_step;
       else
 	work += count_node * *forc * *velo * time_step;
 
       ++velo;
       ++forc;
       ++resi;
       ++boun;
     }
   }
 
   StaticCommunicator::getStaticCommunicator().allReduce(&work, 1, _so_sum);
 
   AKANTU_DEBUG_OUT();
   return work;
 }
 
 /* -------------------------------------------------------------------------- */
 Real SolidMechanicsModel::getEnergy(const std::string & id) {
   AKANTU_DEBUG_IN();
 
   if (id == "kinetic") {
     return getKineticEnergy();
   } else if (id == "external work"){
     return getExternalWork();
   }
 
   Real energy = 0.;
   std::vector<Material *>::iterator mat_it;
   for(mat_it = materials.begin(); mat_it != materials.end(); ++mat_it) {
     energy += (*mat_it)->getEnergy(id);
   }
 
   /// reduction sum over all processors
   StaticCommunicator::getStaticCommunicator().allReduce(&energy, 1, _so_sum);
 
   AKANTU_DEBUG_OUT();
   return energy;
 }
 /* -------------------------------------------------------------------------- */
-Real SolidMechanicsModel::getEnergy(const std::string & energy_id, 
-				    ElementType & type, 
+Real SolidMechanicsModel::getEnergy(const std::string & energy_id,
+				    ElementType & type,
 				    UInt index){
   AKANTU_DEBUG_IN();
 
   std::vector<Material *>::iterator mat_it;
   types::Vector<UInt> mat = element_index_by_material(type,_not_ghost).begin(2)[index];
   Real energy = materials[mat(1)]->getEnergy(energy_id,type,mat(0));
 
   AKANTU_DEBUG_OUT();
   return energy;
 }
 
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::onNodesAdded(const Vector<UInt> & nodes_list) {
   AKANTU_DEBUG_IN();
   UInt nb_nodes = mesh.getNbNodes();
 
   if(displacement) displacement->resize(nb_nodes);
   if(mass        ) mass        ->resize(nb_nodes);
   if(velocity    ) velocity    ->resize(nb_nodes);
   if(acceleration) acceleration->resize(nb_nodes);
   if(force       ) force       ->resize(nb_nodes);
   if(residual    ) residual    ->resize(nb_nodes);
   if(boundary    ) boundary    ->resize(nb_nodes);
 
   if(increment_acceleration) increment_acceleration->resize(nb_nodes);
   if(increment) increment->resize(nb_nodes);
 
   delete dof_synchronizer;
   dof_synchronizer = new DOFSynchronizer(mesh, spatial_dimension);
   dof_synchronizer->initLocalDOFEquationNumbers();
   dof_synchronizer->initGlobalDOFEquationNumbers();
 
   std::vector<Material *>::iterator mat_it;
   for(mat_it = materials.begin(); mat_it != materials.end(); ++mat_it) {
     (*mat_it)->onNodesAdded(nodes_list);
   }
 
   if(method != _explicit_dynamic) AKANTU_DEBUG_TO_IMPLEMENT();
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::onElementsAdded(const Vector<Element> & element_list) {
   AKANTU_DEBUG_IN();
 
   getFEM().initShapeFunctions(_not_ghost);
   getFEM().initShapeFunctions(_ghost);
 
   Vector<Element>::const_iterator<Element> it  = element_list.begin();
   Vector<Element>::const_iterator<Element> end = element_list.end();
 
   /// \todo have rules to choose the correct material
   Material & mat = *materials[0];
 
   for (; it != end; ++it) {
     const Element & elem = *it;
     element_material(elem.type, elem.ghost_type).push_back(UInt(0));
 
     UInt mat_index = mat.addElement(elem.type, elem.element, elem.ghost_type);
     UInt id[2];
     id[0] = mat_index; id[1] = 0;
     element_index_by_material(elem.type, elem.ghost_type).push_back(id);
   }
 
   std::vector<Material *>::iterator mat_it;
   for(mat_it = materials.begin(); mat_it != materials.end(); ++mat_it) {
     (*mat_it)->onElementsAdded(element_list);
   }
 
   if(method != _explicit_dynamic) AKANTU_DEBUG_TO_IMPLEMENT();
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::onElementsRemoved(const Vector<Element> & element_list,
 					    const ByElementTypeUInt & new_numbering) {
   std::cout << "NbNodes before purify " <<  mesh.getNbNodes() << std::endl;
   //  MeshUtils::purifyMesh(mesh);
   std::cout << "NbNodes after purify " <<  mesh.getNbNodes() << std::endl;
 
   getFEM().initShapeFunctions(_not_ghost);
   getFEM().initShapeFunctions(_ghost);
 
   std::vector<Material *>::iterator mat_it;
   for(mat_it = materials.begin(); mat_it != materials.end(); ++mat_it) {
     (*mat_it)->onElementsRemoved(element_list, new_numbering);
   }
 
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::onNodesRemoved(const Vector<UInt> & element_list,
 					 const Vector<UInt> & new_numbering) {
   std::cout << "NbNodes in u before purify " <<  displacement->getSize() << " " << element_list.getSize() << " " << mesh.getNbNodes() << std::endl;
   if(displacement) mesh.removeNodesFromVector(*displacement, new_numbering);
   std::cout << "NbNodes in u after purify " <<  displacement->getSize() << std::endl;
   if(mass        ) mesh.removeNodesFromVector(*mass        , new_numbering);
   if(velocity    ) mesh.removeNodesFromVector(*velocity    , new_numbering);
   if(acceleration) mesh.removeNodesFromVector(*acceleration, new_numbering);
   if(force       ) mesh.removeNodesFromVector(*force       , new_numbering);
   if(residual    ) mesh.removeNodesFromVector(*residual    , new_numbering);
   if(boundary    ) mesh.removeNodesFromVector(*boundary    , new_numbering);
 
   if(increment_acceleration) mesh.removeNodesFromVector(*increment_acceleration, new_numbering);
   if(increment)              mesh.removeNodesFromVector(*increment             , new_numbering);
 
   delete dof_synchronizer;
   dof_synchronizer = new DOFSynchronizer(mesh, spatial_dimension);
   dof_synchronizer->initLocalDOFEquationNumbers();
   dof_synchronizer->initGlobalDOFEquationNumbers();
 }
 
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::addDumpField(const std::string & field_id) {
 #ifdef AKANTU_USE_IOHELPER
 #define ADD_FIELD(field, type)						\
   addDumpFieldToDumper(BOOST_PP_STRINGIZE(field),			\
 		       new DumperIOHelper::NodalField<type>(*field))
 
   if(field_id == "displacement")      { ADD_FIELD(displacement, Real); }
   else if(field_id == "mass"        ) { ADD_FIELD(mass        , Real); }
   else if(field_id == "velocity"    ) { ADD_FIELD(velocity    , Real); }
   else if(field_id == "acceleration") { ADD_FIELD(acceleration, Real); }
   else if(field_id == "force"       ) { ADD_FIELD(force       , Real); }
   else if(field_id == "residual"    ) { ADD_FIELD(residual    , Real); }
   else if(field_id == "boundary"    ) { ADD_FIELD(boundary    , bool); }
+  else if(field_id == "partition"   ) {
+    addDumpFieldToDumper(field_id,
+			 new DumperIOHelper::ElementPartitionField(mesh,
+								   spatial_dimension,
+								   _not_ghost,
+								   _ek_regular));
+  }
   else if(field_id == "element_index_by_material") {
     addDumpFieldToDumper(field_id,
 			 new DumperIOHelper::ElementalField<UInt>(element_index_by_material,
 								  spatial_dimension,
 								  _not_ghost,
 								  _ek_regular));
   } else {
     addDumpFieldToDumper(field_id,
 			 new DumperIOHelper::HomogenizedField<Real,
 							      DumperIOHelper::InternalMaterialField>(*this,
 												     field_id,
 												     spatial_dimension,
 												     _not_ghost,
 												     _ek_regular));
   }
 #undef ADD_FIELD
 #endif
 }
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::addDumpFieldVector(const std::string & field_id) {
 #ifdef AKANTU_USE_IOHELPER
 #define ADD_FIELD(field, type)						\
   DumperIOHelper::Field * f = new DumperIOHelper::NodalField<type,	\
 							     types::Vector>(*field, \
 									    spatial_dimension); \
   f->setPadding(3);							\
   addDumpFieldToDumper(BOOST_PP_STRINGIZE(field), f)
 
   if(field_id == "displacement")      { ADD_FIELD(displacement, Real); }
   else if(field_id == "mass"        ) { ADD_FIELD(mass        , Real); }
   else if(field_id == "velocity"    ) { ADD_FIELD(velocity    , Real); }
   else if(field_id == "acceleration") { ADD_FIELD(acceleration, Real); }
   else if(field_id == "force"       ) { ADD_FIELD(force       , Real); }
   else if(field_id == "residual"    ) { ADD_FIELD(residual    , Real); }
   else {
     typedef DumperIOHelper::HomogenizedField<Real,
 					     DumperIOHelper::InternalMaterialField> Field;
     Field * field = new Field(*this,
 			      field_id,
 			      spatial_dimension,
 			      spatial_dimension,
 			      _not_ghost,
 			      _ek_regular);
     field->setPadding(3);
     addDumpFieldToDumper(field_id, field);
   }
 #undef ADD_FIELD
 #endif
 };
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::addDumpFieldTensor(const std::string & field_id) {
 #ifdef AKANTU_USE_IOHELPER
-  typedef DumperIOHelper::HomogenizedField<Real,
-					   DumperIOHelper::InternalMaterialField,
-					   DumperIOHelper::AvgHomogenizingFunctor,
-					   types::Matrix> Field;
-
-  Field * field = new Field(*this,
-			    field_id,
-			    spatial_dimension,
-			    spatial_dimension,
-			    _not_ghost,
-			    _ek_regular);
-  field->setPadding(3, 3);
-  addDumpFieldToDumper(field_id, field);
+  if(field_id == "stress") {
+    typedef DumperIOHelper::HomogenizedField<Real,
+					     DumperIOHelper::InternalMaterialField,
+					     DumperIOHelper::AvgHomogenizingFunctor,
+					     types::Matrix,
+					     DumperIOHelper::material_stress_field_iterator> Field;
+    Field * field = new Field(*this,
+			      field_id,
+			      spatial_dimension,
+			      spatial_dimension,
+			      _not_ghost,
+			      _ek_regular);
+    field->setPadding(3, 3);
+    addDumpFieldToDumper(field_id, field);
+  } else if(field_id == "strain") {
+    typedef DumperIOHelper::HomogenizedField<Real,
+					     DumperIOHelper::InternalMaterialField,
+					     DumperIOHelper::AvgHomogenizingFunctor,
+					     types::Matrix,
+					     DumperIOHelper::material_strain_field_iterator> Field;
+    Field * field = new Field(*this,
+			      field_id,
+			      spatial_dimension,
+			      spatial_dimension,
+			      _not_ghost,
+			      _ek_regular);
+    field->setPadding(3, 3);
+    addDumpFieldToDumper(field_id, field);
+  } else {
+    typedef DumperIOHelper::HomogenizedField<Real,
+					     DumperIOHelper::InternalMaterialField,
+					     DumperIOHelper::AvgHomogenizingFunctor,
+					     types::Matrix> Field;
+
+    Field * field = new Field(*this,
+			      field_id,
+			      spatial_dimension,
+			      spatial_dimension,
+			      _not_ghost,
+			      _ek_regular);
+    field->setPadding(3, 3);
+    addDumpFieldToDumper(field_id, field);
+  }
 #endif
 };
 
 
 /* -------------------------------------------------------------------------- */
 void SolidMechanicsModel::printself(std::ostream & stream, int indent) const {
   std::string space;
   for(Int i = 0; i < indent; i++, space += AKANTU_INDENT);
 
   stream << space << "Solid Mechanics Model [" << std::endl;
   stream << space << " + id                : " << id << std::endl;
   stream << space << " + spatial dimension : " << spatial_dimension << std::endl;
   stream << space << " + fem [" << std::endl;
   getFEM().printself(stream, indent + 2);
   stream << space << AKANTU_INDENT << "]" << std::endl;
   stream << space << " + nodals information [" << std::endl;
   displacement->printself(stream, indent + 2);
   mass        ->printself(stream, indent + 2);
   velocity    ->printself(stream, indent + 2);
   acceleration->printself(stream, indent + 2);
   force       ->printself(stream, indent + 2);
   residual    ->printself(stream, indent + 2);
   boundary    ->printself(stream, indent + 2);
   stream << space << AKANTU_INDENT << "]" << std::endl;
 
   stream << space << " + connectivity type information [" << std::endl;
   element_material.printself(stream, indent + 2);
   stream << space << AKANTU_INDENT << "]" << std::endl;
 
   stream << space << "]" << std::endl;
 }
 
 /* -------------------------------------------------------------------------- */
 
 
 __END_AKANTU__
diff --git a/src/model/solid_mechanics/solid_mechanics_model.hh b/src/model/solid_mechanics/solid_mechanics_model.hh
index 6a0c59c24..c595704b9 100644
--- a/src/model/solid_mechanics/solid_mechanics_model.hh
+++ b/src/model/solid_mechanics/solid_mechanics_model.hh
@@ -1,597 +1,594 @@
 /**
  * @file   solid_mechanics_model.hh
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date[creation]            Thu Jul 22 11:51:06 2010
  * @date[last modification]   Thu Oct 14 14:00:06 2010
  *
  * @brief  Model of Solid Mechanics
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 
 #ifndef __AKANTU_SOLID_MECHANICS_MODEL_HH__
 #define __AKANTU_SOLID_MECHANICS_MODEL_HH__
 
 
 /* -------------------------------------------------------------------------- */
 #include <fstream>
 /* -------------------------------------------------------------------------- */
 
 /* -------------------------------------------------------------------------- */
 #include "aka_common.hh"
 #include "model.hh"
 #include "data_accessor.hh"
 #include "integrator_gauss.hh"
 #include "shape_lagrange.hh"
-#include "integrator_cohesive.hh"
-#include "shape_cohesive.hh"
 #include "aka_types.hh"
 #include "integration_scheme_2nd_order.hh"
 #include "solver.hh"
 #include "dumpable.hh"
 
 /* -------------------------------------------------------------------------- */
 namespace akantu {
   class Material;
   class IntegrationScheme2ndOrder;
   class Contact;
   class SparseMatrix;
 }
 
 __BEGIN_AKANTU__
 
 class SolidMechanicsModel : public Model, public DataAccessor, public MeshEventHandler, public Dumpable<DumperParaview> {
 
   /* ------------------------------------------------------------------------ */
   /* Constructors/Destructors                                                 */
   /* ------------------------------------------------------------------------ */
 public:
 
   typedef FEMTemplate<IntegratorGauss,ShapeLagrange> MyFEMType;
-  typedef FEMTemplate< IntegratorCohesive<IntegratorGauss>, ShapeCohesive<ShapeLagrange> > MyFEMCohesiveType;
 
   SolidMechanicsModel(Mesh & mesh,
 		      UInt spatial_dimension = 0,
 		      const ID & id = "solid_mechanics_model",
 		      const MemoryID & memory_id = 0);
 
   virtual ~SolidMechanicsModel();
 
   /* ------------------------------------------------------------------------ */
   /* Methods                                                                  */
   /* ------------------------------------------------------------------------ */
 public:
 
   /// initialize completely the model
   virtual void initFull(std::string material_file,
 			AnalysisMethod method = _explicit_dynamic);
 
   /// initialize the fem object needed for boundary conditions
   void initFEMBoundary(bool create_surface = true);
 
   /// register the tags associated with the parallel synchronizer
   void initParallel(MeshPartition * partition, DataAccessor * data_accessor=NULL);
 
   /// allocate all vectors
   void initVectors();
 
   /// initialize all internal arrays for materials
   void initMaterials();
 
   /// initialize the model
   virtual void initModel();
 
   /// init PBC synchronizer
   void initPBC();
 
   /// function to print the containt of the class
   virtual void printself(std::ostream & stream, int indent = 0) const;
 
   /* ------------------------------------------------------------------------ */
   /* PBC                                                                      */
   /* ------------------------------------------------------------------------ */
 public:
 
   /// change the equation number for proper assembly when using PBC
   void changeEquationNumberforPBC(std::map<UInt,UInt> & pbc_pair);
 
   /// synchronize Residual for output
   void synchronizeResidual();
 
 protected:
 
   /// register PBC synchronizer
   void registerPBCSynchronizer();
 
   /* ------------------------------------------------------------------------ */
   /* Explicit                                                                 */
   /* ------------------------------------------------------------------------ */
 public:
   /// initialize the stuff for the explicit scheme
   void initExplicit();
 
   /// initialize the array needed by updateResidual (residual, current_position)
   void initializeUpdateResidualData();
 
   /// update the current position vector
   void updateCurrentPosition();
 
   /// assemble the residual for the explicit scheme
   void updateResidual(bool need_initialize = true);
 
   /**
    * \brief compute the acceleration from the residual
    * this function is the explicit equivalent to solveDynamic in implicit
    * In the case of lumped mass just divide the residual by the mass
    * In the case of not lumped mass call solveDynamic<_acceleration_corrector>
    */
   void updateAcceleration();
 
   /// Solve the system @f[ A x = \alpha b @f] with A a lumped matrix
   void solveLumped(Vector<Real> & x, 
 		   const Vector<Real> & A,
 		   const Vector<Real> & b,
 		   const Vector<bool> & boundary,
 		   Real alpha);
 
   /// explicit integration predictor
   void explicitPred();
 
   /// explicit integration corrector
   void explicitCorr();
 
   /* ------------------------------------------------------------------------ */
   /* Implicit                                                                 */
   /* ------------------------------------------------------------------------ */
 public:
 
   /// initialize the solver and the jacobian_matrix (called by initImplicit)
   void initSolver(SolverOptions & options = _solver_no_options);
 
   /// initialize the stuff for the implicit solver
   void initImplicit(bool dynamic = false,
                     SolverOptions & solver_options = _solver_no_options);
 
   /// solve Ma = f to get the initial acceleration
   void initialAcceleration();
 
   /// assemble the stiffness matrix
   void assembleStiffnessMatrix();
 
   /// solve @f[ A\delta u = f_ext - f_int @f] in displacement
   void solveDynamic();
 
   /// solve Ku = f
   void solveStatic();
 
   /// test the convergence (norm of increment)
   bool testConvergenceIncrement(Real tolerance);
   bool testConvergenceIncrement(Real tolerance, Real & error);
 
   /// test the convergence (norm of residual)
   bool testConvergenceResidual(Real tolerance);
   bool testConvergenceResidual(Real tolerance, Real & error);
 
   /// implicit time integration predictor
   void implicitPred();
 
   /// implicit time integration corrector
   void implicitCorr();
 
 protected:
   /// finish the computation of residual to solve in increment
   void updateResidualInternal();
 
   /// compute the support reaction and store it in force
   void updateSupportReaction();
 
   /// compute A and solve @f[ A\delta u = f_ext - f_int @f]
   template<NewmarkBeta::IntegrationSchemeCorrectorType type>
   void solveDynamic(Vector<Real> & increment);
 
   /* ------------------------------------------------------------------------ */
   /* Explicit/Implicit                                                        */
   /* ------------------------------------------------------------------------ */
 public:
   /// compute the stresses
   void computeStresses();
 
   /* ------------------------------------------------------------------------ */
   /* Boundaries (solid_mechanics_model_boundary.cc)                           */
   /* ------------------------------------------------------------------------ */
 public:
   class SurfaceLoadFunctor {
   public:
     virtual void traction(__attribute__ ((unused)) const types::Vector<Real> & position,
 			  __attribute__ ((unused)) types::Vector<Real> & traction,
 			  __attribute__ ((unused)) const types::Vector<Real> & normal,
 			  __attribute__ ((unused)) Surface surface_id) {
       AKANTU_DEBUG_TO_IMPLEMENT();
     }
 
     virtual void stress(__attribute__ ((unused)) const types::Vector<Real> & position,
 			__attribute__ ((unused)) types::RMatrix & stress,
 			__attribute__ ((unused)) const types::Vector<Real> & normal,
 			__attribute__ ((unused)) Surface surface_id) {
       AKANTU_DEBUG_TO_IMPLEMENT();
     }
   };
 
   /// compute force vector from a function(x,y,z) that describe stresses
   void computeForcesFromFunction(BoundaryFunction in_function,
 				 BoundaryFunctionType function_type) __attribute__((deprecated));
 
   template<class Functor>
   void computeForcesFromFunction(Functor & functor, BoundaryFunctionType function_type);
 
   /// integrate a force on the boundary by providing a stress tensor
   void computeForcesByStressTensor(const Vector<Real> & stresses,
 				   const ElementType & type,
 				   const GhostType & ghost_type);
 
   /// integrate a force on the boundary by providing a traction vector
   void computeForcesByTractionVector(const Vector<Real> & tractions,
 				     const ElementType & type,
 				     const GhostType & ghost_type);
 
   /// synchronize the ghost element boundaries values
   void synchronizeBoundaries();
 
   /* ------------------------------------------------------------------------ */
   /* Materials (solid_mechanics_model_material.cc)                            */
   /* ------------------------------------------------------------------------ */
 public:
   /// register a material in the dynamic database
   Material & registerNewMaterial(const ID & mat_type,
 				 const std::string & opt_param = "");
 
   template <typename M>
   Material & registerNewCustomMaterial(const ID & mat_type,
 				       const std::string & opt_param = "");
   /// read the material files to instantiate all the materials
   void readMaterials(const std::string & filename);
 
   /// read a custom material with a keyword and class as template
   template <typename M>
   UInt readCustomMaterial(const std::string & filename,
 				const std::string & keyword);
 
   /// Use a UIntData in the mesh to specify the material to use per element
   void setMaterialIDsFromIntData(const std::string & data_name);
 
   /* ------------------------------------------------------------------------ */
   /* Mass (solid_mechanics_model_mass.cc)                                     */
   /* ------------------------------------------------------------------------ */
 public:
 
   /// assemble the lumped mass matrix
   void assembleMassLumped();
 
   /// assemble the mass matrix
   void assembleMass();
 
 
 protected:
   /// assemble the lumped mass matrix for local and ghost elements
   void assembleMassLumped(GhostType ghost_type);
 
   void assembleMass(GhostType ghost_type);
 
   /// fill a vector of rho
   void computeRho(Vector<Real> & rho,
 		  ElementType type,
 		  GhostType ghost_type);
 
 
   /* ------------------------------------------------------------------------ */
   /* Data Accessor inherited members                                          */
   /* ------------------------------------------------------------------------ */
 public:
 
   inline virtual UInt getNbDataForElements(const Vector<Element> & elements,
 					   SynchronizationTag tag) const;
 
   inline virtual void packElementData(CommunicationBuffer & buffer,
 				      const Vector<Element> & elements,
 				      SynchronizationTag tag) const;
 
   inline virtual void unpackElementData(CommunicationBuffer & buffer,
 					const Vector<Element> & elements,
 					SynchronizationTag tag);
 
   inline virtual UInt getNbDataToPack(SynchronizationTag tag) const;
   inline virtual UInt getNbDataToUnpack(SynchronizationTag tag) const;
 
   inline virtual void packData(CommunicationBuffer & buffer,
 			       const UInt index,
 			       SynchronizationTag tag) const;
 
   inline virtual void unpackData(CommunicationBuffer & buffer,
 				 const UInt index,
 				 SynchronizationTag tag);
 
 protected:
   inline void splitElementByMaterial(const Vector<Element> & elements,
 				     Vector<Element> * elements_per_mat) const;
 
 
   template<typename T>
   inline void packElementDataHelper(Vector<T> & data_to_pack,
 				    CommunicationBuffer & buffer,
 				    const Vector<Element> & element) const;
 
   /* -------------------------------------------------------------------------- */
   template<typename T>
   inline void unpackElementDataHelper(Vector<T> & data_to_unpack,
 				      CommunicationBuffer & buffer,
 				      const Vector<Element> & element) const;
 
   /* -------------------------------------------------------------------------- */
   template<typename T, bool pack_helper>
   inline void packUnpackElementDataHelper(Vector<T> & data,
 					  CommunicationBuffer & buffer,
 					  const Vector<Element> & element) const;
 
   /* ------------------------------------------------------------------------ */
   /* Mesh Event Handler inherited members                                     */
   /* ------------------------------------------------------------------------ */
 protected:
   virtual void onNodesAdded  (const Vector<UInt> & nodes_list);
   virtual void onNodesRemoved(const Vector<UInt> & element_list,
 			      const Vector<UInt> & new_numbering);
 
   virtual void onElementsAdded  (const Vector<Element> & nodes_list);
   virtual void onElementsRemoved(const Vector<Element> & element_list,
 				 const ByElementTypeUInt & new_numbering);
 
 public:
   virtual void addDumpField(const std::string & field_id);
   virtual void addDumpFieldVector(const std::string & field_id);
   virtual void addDumpFieldTensor(const std::string & field_id);
 
   /* ------------------------------------------------------------------------ */
   /* Accessors                                                                */
   /* ------------------------------------------------------------------------ */
 public:
 
   /// return the dimension of the system space
   AKANTU_GET_MACRO(SpatialDimension, spatial_dimension, UInt);
 
   /// get the current value of the time step
   AKANTU_GET_MACRO(TimeStep, time_step, Real);
   /// set the value of the time step
   AKANTU_SET_MACRO(TimeStep, time_step, Real);
 
   /// get the value of the conversion from forces/ mass to acceleration
   AKANTU_GET_MACRO(F_M2A, f_m2a, Real);
   /// set the value of the conversion from forces/ mass to acceleration
   AKANTU_SET_MACRO(F_M2A, f_m2a, Real);
 
   /// get the SolidMechanicsModel::displacement vector
   AKANTU_GET_MACRO(Displacement,    *displacement,           Vector<Real> &);
   /// get the SolidMechanicsModel::current_position vector \warn only consistent
   /// after a call to SolidMechanicsModel::updateCurrentPosition
   AKANTU_GET_MACRO(CurrentPosition, *current_position, const Vector<Real> &);
   /// get  the SolidMechanicsModel::increment  vector \warn  only  consistent if
   /// SolidMechanicsModel::setIncrementFlagOn has been called before
   AKANTU_GET_MACRO(Increment,       *increment,              Vector<Real> &);
   /// get the lumped SolidMechanicsModel::mass vector
   AKANTU_GET_MACRO(Mass,            *mass,                   Vector<Real> &);
   /// get the SolidMechanicsModel::velocity vector
   AKANTU_GET_MACRO(Velocity,        *velocity,               Vector<Real> &);
   /// get    the    SolidMechanicsModel::acceleration    vector,   updated    by
   /// SolidMechanicsModel::updateAcceleration
   AKANTU_GET_MACRO(Acceleration,    *acceleration,           Vector<Real> &);
   /// get the SolidMechanicsModel::force vector (boundary forces)
   AKANTU_GET_MACRO(Force,           *force,                  Vector<Real> &);
   /// get     the    SolidMechanicsModel::residual    vector,     computed    by
   /// SolidMechanicsModel::updateResidual
   AKANTU_GET_MACRO(Residual,        *residual,               Vector<Real> &);
   /// get the SolidMechanicsModel::boundary vector
   AKANTU_GET_MACRO(Boundary,        *boundary,               Vector<bool> &);
   /// get the SolidMechnicsModel::incrementAcceleration vector
   AKANTU_GET_MACRO(IncrementAcceleration, *increment_acceleration, Vector<Real> &);
 
   /// get the value of the SolidMechanicsModel::increment_flag
   AKANTU_GET_MACRO(IncrementFlag, increment_flag, bool);
 
   /// get  the SolidMechanicsModel::element_material  vector corresponding  to a
   /// given akantu::ElementType
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE_CONST(ElementMaterial, element_material, UInt);
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE(ElementMaterial, element_material, UInt);
   AKANTU_GET_MACRO(ElementMaterial, element_material, const ByElementTypeVector<UInt> &);
 
   /// vectors containing local material element index for each global element index
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE_CONST(ElementIndexByMaterial, element_index_by_material, UInt);
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE(ElementIndexByMaterial, element_index_by_material, UInt);
   AKANTU_GET_MACRO(ElementIndexByMaterial, element_index_by_material, const ByElementTypeVector<UInt> &);
 
   /// get a particular material
   inline Material & getMaterial(UInt mat_index);
   inline const Material & getMaterial(UInt mat_index) const;
 
   /// give the number of materials
   inline UInt getNbMaterials() const { return materials.size(); };
 
   /// give the material internal index from its id
   Int getInternalIndexFromID(const ID & id) const;
 
   /// compute the stable time step
   Real getStableTimeStep();
 
   /// compute the potential energy
   Real getPotentialEnergy();
 
   /// compute the kinetic energy
   Real getKineticEnergy();
 
   /// compute the external work (for impose displacement, the velocity should be given too)
   Real getExternalWork();
 
   /// get the energies
   Real getEnergy(const std::string & energy_id);
 
   /// compute the energy for energy
   Real getEnergy(const std::string & energy_id, ElementType & type, UInt index);
 
   /// set the Contact object
   AKANTU_SET_MACRO(Contact, contact, Contact *);
 
   /**
    * @brief set the SolidMechanicsModel::increment_flag  to on, the activate the
    * update of the SolidMechanicsModel::increment vector
    */
   void setIncrementFlagOn();
 
   /// get the stiffness matrix
   AKANTU_GET_MACRO(StiffnessMatrix, *stiffness_matrix, SparseMatrix &);
 
   /// get the mass matrix
   AKANTU_GET_MACRO(MassMatrix, *mass_matrix, SparseMatrix &);
 
   inline FEM & getFEMBoundary(std::string name = "");
 
   /// get integrator
   AKANTU_GET_MACRO(Integrator, *integrator, const IntegrationScheme2ndOrder &);
 
   /// get access to the internal solver
   AKANTU_GET_MACRO(Solver, *solver, Solver &);
 
 protected:
   /// compute the stable time step
   Real getStableTimeStep(const GhostType & ghost_type);
 
   /* ------------------------------------------------------------------------ */
   /* Class Members                                                            */
   /* ------------------------------------------------------------------------ */
 protected:
 
   /// time step
   Real time_step;
 
   /// conversion coefficient form force/mass to acceleration
   Real f_m2a;
 
   /// displacements array
   Vector<Real> * displacement;
 
   /// lumped mass array
   Vector<Real> * mass;
 
   /// velocities array
   Vector<Real> * velocity;
 
   /// accelerations array
   Vector<Real> * acceleration;
 
   /// accelerations array
   Vector<Real> * increment_acceleration;
 
   /// forces array
   Vector<Real> * force;
 
   /// residuals array
   Vector<Real> * residual;
 
   /// boundaries array
   Vector<bool> * boundary;
 
   /// array of current position used during update residual
   Vector<Real> * current_position;
 
   /// mass matrix
   SparseMatrix * mass_matrix;
 
   /// velocity damping matrix
   SparseMatrix * velocity_damping_matrix;
 
   /// stiffness matrix
   SparseMatrix * stiffness_matrix;
 
   /// jacobian matrix @f[A = cM + dD + K@f] with @f[c = \frac{1}{\beta \Delta t^2}, d = \frac{\gamma}{\beta \Delta t} @f]
   SparseMatrix * jacobian_matrix;
 
   /// materials of all elements
   ByElementTypeUInt element_material;
 
   /// vectors containing local material element index for each global element index
   ByElementTypeUInt element_index_by_material;
 
   /// list of used materials
   std::vector<Material *> materials;
 
   /// integration scheme of second order used
   IntegrationScheme2ndOrder * integrator;
 
   /// increment of displacement
   Vector<Real> * increment;
 
   /// flag defining if the increment must be computed or not
   bool increment_flag;
 
   /// solver for implicit
   Solver * solver;
 
   /// object to resolve the contact
   Contact * contact;
 
   /// the spatial dimension
   UInt spatial_dimension;
 
   /// Mesh
   Mesh & mesh;
 
   AnalysisMethod method;
 };
 
 __END_AKANTU__
 
 /* -------------------------------------------------------------------------- */
 /* inline functions                                                           */
 /* -------------------------------------------------------------------------- */
 #include "parser.hh"
 #include "material.hh"
 
 __BEGIN_AKANTU__
 
 
 #ifdef AKANTU_USE_IOHELPER
 #  include "dumper_iohelper_tmpl_homogenizing_field.hh"
 #  include "dumper_iohelper_tmpl_material_internal_field.hh"
 #endif
 
 #include "solid_mechanics_model_tmpl.hh"
 
 #if defined (AKANTU_INCLUDE_INLINE_IMPL)
 #  include "solid_mechanics_model_inline_impl.cc"
 #endif
 
 /// standard output stream operator
 inline std::ostream & operator <<(std::ostream & stream, const SolidMechanicsModel & _this)
 {
   _this.printself(stream);
   return stream;
 }
 
 __END_AKANTU__
 
 #endif /* __AKANTU_SOLID_MECHANICS_MODEL_HH__ */
diff --git a/src/model/solid_mechanics/solid_mechanics_model_cohesive.hh b/src/model/solid_mechanics/solid_mechanics_model_cohesive.hh
index 7b19b25ec..ee7ba1300 100644
--- a/src/model/solid_mechanics/solid_mechanics_model_cohesive.hh
+++ b/src/model/solid_mechanics/solid_mechanics_model_cohesive.hh
@@ -1,237 +1,238 @@
 /**
  * @file   solid_mechanics_model_cohesive.hh
  * @author Marco Vocialta <marco.vocialta@epfl.ch>
  * @date   Thu Apr 19 10:34:00 2012
  *
  * @brief  Solid mechanics model for cohesive elements
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 #include "solid_mechanics_model.hh"
-
+#include "integrator_cohesive.hh"
+#include "shape_cohesive.hh"
 /* -------------------------------------------------------------------------- */
 
 #ifndef __AKANTU_SOLID_MECHANICS_MODEL_COHESIVE_HH__
 #define __AKANTU_SOLID_MECHANICS_MODEL_COHESIVE_HH__
 
 __BEGIN_AKANTU__
 
 class SolidMechanicsModelCohesive : public SolidMechanicsModel {
   /* ------------------------------------------------------------------------ */
   /* Constructors/Destructors                                                 */
   /* ------------------------------------------------------------------------ */
 public:
 
   typedef FEMTemplate< IntegratorCohesive<IntegratorGauss>, ShapeCohesive<ShapeLagrange> > MyFEMCohesiveType;
 
   SolidMechanicsModelCohesive(Mesh & mesh,
 			      UInt spatial_dimension = 0,
 			      const ID & id = "solid_mechanics_model_cohesive",
 			      const MemoryID & memory_id = 0);
 
   //  virtual ~SolidMechanicsModelCohesive();
 
   /* ------------------------------------------------------------------------ */
   /* Methods                                                                  */
   /* ------------------------------------------------------------------------ */
 public:
 
   /// assemble the residual for the explicit scheme
   void updateResidual(bool need_initialize = true);
 
   /// function to print the contain of the class
   virtual void printself(std::ostream & stream, int indent = 0) const;
 
   /// function to perform a stress check on each facet and insert
   /// cohesive elements if needed
   void checkCohesiveStress();
 
   /// function to insert cohesive elements on the selected facets
   void insertCohesiveElements(const Vector<UInt> & facet_insertion);
 
   /// function to insert cohesive elements on the selected facets by specifying
   /// the material
   void insertCohesiveElements(const Vector<UInt> & facet_insertion,
 			      const Vector<UInt> & facet_material);
 
 
   /// initialize completely the model
   void initFull(std::string material_file,
                 AnalysisMethod method = _explicit_dynamic);
 
   /// initialize completely the model for extrinsic elements
   void initExtrinsic();
 
   /// initialize the model
   void initModel();
 
   /// initialize cohesive material
   void initCohesiveMaterial();
 
   /// build fragments and compute their data (mass, velocity..)
   void computeFragmentsData();
 
 private:
 
   /// function to double a given facet and update the list of doubled
   /// nodes
   void doubleFacet(Element & facet, Vector<UInt> & doubled_nodes,
 		   Vector<UInt> & doubled_facets);
 
   /// function to double a subfacet given start and end index for
   /// local facet_to_subfacet vector, and update the list of doubled
   /// nodes
   void doubleSubfacet(const Element & subfacet, UInt start, UInt end,
 		      Vector<UInt> & doubled_nodes);
 
   /// double middle nodes if facets are _segment_3
   void doubleMiddleNode(Vector<UInt> & doubled_nodes,
 			const Vector<UInt> & doubled_facets);
 
   /// function to update nodal parameters for doubled nodes
   void updateDoubledNodes(const Vector<UInt> & doubled_nodes);
 
   /// build fragments list
   void buildFragmentsList();
 
   /// compute fragments' mass and velocity
   void computeFragmentsMV();
 
   /* ------------------------------------------------------------------------ */
   /* Accessors                                                                */
   /* ------------------------------------------------------------------------ */
 public:
 
   /// get the cohesive element type
   AKANTU_GET_MACRO(CohesiveElementType, type_cohesive, ElementType);
 
   /// get the cohesive index
   AKANTU_GET_MACRO(CohesiveIndex, cohesive_index, UInt);
 
   /// get the facet type
   AKANTU_GET_MACRO(FacetType, type_facet, ElementType);
 
   /// get the facet mesh
   AKANTU_GET_MACRO(MeshFacets, mesh_facets, const Mesh &);
 
   /// get the sigma limit vector for automatic insertion
   AKANTU_GET_MACRO(SigmaLimit, sigma_lim, const Vector<Real> &);
   AKANTU_GET_MACRO_NOT_CONST(SigmaLimit, sigma_lim, Vector<Real> &);
 
   /// get the facets check vector
   AKANTU_GET_MACRO_NOT_CONST(FacetsCheck, facets_check, Vector<bool> &);
 
   /// get the stress on facets vector
   AKANTU_GET_MACRO(StressOnFacets, facet_stress, const Vector<Real> &);
 
   /// get the number of fragments
   AKANTU_GET_MACRO(NbFragment, nb_fragment, UInt);
 
   /// get the fragment_to_element vectors
   AKANTU_GET_MACRO_BY_ELEMENT_TYPE_CONST(FragmentToElement, fragment_to_element, UInt);
 
   /// get mass for each fragment
   AKANTU_GET_MACRO(FragmentsMass, fragment_mass, const Vector<Real> &);
 
   /// get average velocity for each fragment
   AKANTU_GET_MACRO(FragmentsVelocity, fragment_velocity, const Vector<Real> &);
 
   /// get the center of mass coordinates for each fragment
   AKANTU_GET_MACRO(FragmentsCenter, fragment_center, const Vector<Real> &);
 
   /// THIS HAS TO BE CHANGED
   AKANTU_GET_MACRO(Tangents, tangents, const Vector<Real> &);
 
   /* ------------------------------------------------------------------------ */
   /* Class Members                                                            */
   /* ------------------------------------------------------------------------ */
 private:
 
   /// cohesive element type
   ElementType type_cohesive;
 
   /// facet type
   ElementType type_facet;
 
   /// cohesive material index in materials vector
   UInt cohesive_index;
 
   /// mesh containing facets and their data structures
   Mesh mesh_facets;
 
   /// vector containing a sigma limit for automatic insertion
   Vector<Real> sigma_lim;
 
   /// vector containing facets in which cohesive elements can be automatically inserted
   Vector<bool> facets_check;
 
   /// @todo store tangents when normals are computed:
   Vector<Real> tangents;
 
   /// list of stresses on facet quadrature points for every element
   ByElementTypeReal stress_on_facet;
 
   /// already counted facets in stress check
   Vector<bool> facet_stress_count;
 
   /// stress on facets on the two sides by quadrature point
   Vector<Real> facet_stress;
 
   /// list of facets connected to each cohesive element
   Vector<UInt> facets_to_cohesive_el;
 
   /// fragment number for each element
   ByElementTypeUInt fragment_to_element;
 
   /// number of fragments
   UInt nb_fragment;
 
   /// mass for each fragment
   Vector<Real> fragment_mass;
 
   /// average velocity for each fragment
   Vector<Real> fragment_velocity;
 
   /// center of mass coordinates for each element
   Vector<Real> fragment_center;
 
 };
 
 
 /* -------------------------------------------------------------------------- */
 /* inline functions                                                           */
 /* -------------------------------------------------------------------------- */
 
 //#include "solid_mechanics_model_cohesive_inline_impl.cc"
 
 /// standard output stream operator
 inline std::ostream & operator <<(std::ostream & stream, const SolidMechanicsModelCohesive & _this)
 {
   _this.printself(stream);
   return stream;
 }
 
 
 __END_AKANTU__
 
 
 #endif /* __AKANTU_SOLID_MECHANICS_MODEL_COHESIVE_HH__ */
diff --git a/src/solver/solver.cc b/src/solver/solver.cc
index c9fc46ebd..819334a67 100644
--- a/src/solver/solver.cc
+++ b/src/solver/solver.cc
@@ -1,55 +1,56 @@
 /**
  * @file   solver.cc
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Wed Nov 17 16:19:27 2010
  *
  * @brief  Solver interface class
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 #include "solver.hh"
 
 /* -------------------------------------------------------------------------- */
 
 __BEGIN_AKANTU__
 
 SolverOptions _solver_no_options(true);
 
 /* -------------------------------------------------------------------------- */
 Solver::Solver(SparseMatrix & matrix,
 	       const ID & id,
 	       const MemoryID & memory_id) :
-  Memory(memory_id), id(id), matrix(&matrix), is_matrix_allocated(false), mesh(NULL) {
+  Memory(memory_id), id(id), matrix(&matrix), is_matrix_allocated(false), mesh(NULL),
+  communicator(StaticCommunicator::getStaticCommunicator()){
   AKANTU_DEBUG_IN();
 
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 Solver::~Solver() {
   AKANTU_DEBUG_IN();
 
   AKANTU_DEBUG_OUT();
 }
 
 __END_AKANTU__
diff --git a/src/solver/solver.hh b/src/solver/solver.hh
index dda05bd64..659af58c2 100644
--- a/src/solver/solver.hh
+++ b/src/solver/solver.hh
@@ -1,136 +1,136 @@
 /**
  * @file   solver.hh
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Mon Oct  4 20:27:42 2010
  *
  * @brief  interface for solvers
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 
 #ifndef __AKANTU_SOLVER_HH__
 #define __AKANTU_SOLVER_HH__
 
 /* -------------------------------------------------------------------------- */
 #include "aka_common.hh"
 #include "aka_memory.hh"
 #include "aka_vector.hh"
 #include "sparse_matrix.hh"
 #include "mesh.hh"
 #include "static_communicator.hh"
 
 /* -------------------------------------------------------------------------- */
 
 __BEGIN_AKANTU__
 
 class SolverOptions {
 public:
   SolverOptions(bool no_option = false) : no_option(no_option) { }
 
   virtual void niceFunctionWhichDoesNothing() {
     AKANTU_DEBUG_ERROR("Nothing!!! (of course)");
   };
 private:
   bool no_option;
 };
 
 extern SolverOptions _solver_no_options;
 
 class Solver : protected Memory {
   /* ------------------------------------------------------------------------ */
   /* Constructors/Destructors                                                 */
   /* ------------------------------------------------------------------------ */
 public:
 
   Solver(SparseMatrix & matrix,
 	 const ID & id = "solver",
 	 const MemoryID & memory_id = 0);
 
   virtual ~Solver();
 
   /* ------------------------------------------------------------------------ */
   /* Methods                                                                  */
   /* ------------------------------------------------------------------------ */
 public:
 
   /// initialize the solver
   virtual void initialize(SolverOptions & options = _solver_no_options) = 0;
 
   /// solve
   virtual void solve(Vector<Real> & solution) = 0;
   virtual void solve() = 0;
 
   virtual void setRHS(Vector<Real> & rhs) = 0;
 
   /// function to print the contain of the class
   //  virtual void printself(std::ostream & stream, int indent = 0) const;
 
   /* ------------------------------------------------------------------------ */
   /* Accessors                                                                */
   /* ------------------------------------------------------------------------ */
 public:
 
   AKANTU_GET_MACRO(RHS, *rhs, Vector<Real> &);
 
 
   /* ------------------------------------------------------------------------ */
   /* Class Members                                                            */
   /* ------------------------------------------------------------------------ */
 protected:
   /// id of thr Solver
   ID id;
 
   /// the matrix
   SparseMatrix * matrix;
 
   /// is sparse matrix allocated
   bool is_matrix_allocated;
 
   /// the right hand side
   Vector<Real> * rhs;
 
   /// mesh
   const Mesh * mesh;
 
   /// pointer to the communicator
-  StaticCommunicator * communicator;
+  StaticCommunicator & communicator;
 };
 
 
 /* -------------------------------------------------------------------------- */
 /* inline functions                                                           */
 /* -------------------------------------------------------------------------- */
 
 #if defined (AKANTU_INCLUDE_INLINE_IMPL)
 #  include "solver_inline_impl.cc"
 #endif
 
 /// standard output stream operator
 // inline std::ostream & operator <<(std::ostream & stream, const Solver & _this)
 // {
 //   _this.printself(stream);
 //   return stream;
 // }
 
 __END_AKANTU__
 
 #endif /* __AKANTU_SOLVER_HH__ */
diff --git a/src/solver/solver_mumps.cc b/src/solver/solver_mumps.cc
index 46b9493d5..76de88c18 100644
--- a/src/solver/solver_mumps.cc
+++ b/src/solver/solver_mumps.cc
@@ -1,284 +1,307 @@
 /**
  * @file   solver_mumps.cc
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Wed Nov 17 17:32:27 2010
  *
  * @brief  implem of SolverMumps class
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  * @section DESCRIPTION
  *
  * @subsection Ctrl_param Control parameters
  *
  * ICNTL(1),
  * ICNTL(2),
  * ICNTL(3) : output streams for error, diagnostics, and global messages
  *
  * ICNTL(4) : verbose level : 0 no message - 4 all messages
  *
  * ICNTL(5) : type of matrix, 0 assembled, 1 elementary
  *
  * ICNTL(6) : control  the permutation and scaling(default 7)  see mumps doc for
  * more information
  *
  * ICNTL(7) : determine  the pivot  order (default  7) see  mumps doc  for more
  * information
  *
  * ICNTL(8) : describe the scaling method used
  *
  * ICNTL(9) : 1 solve A x = b, 0 solve At x = b
  *
  * ICNTL(10) : number of iterative refinement when NRHS = 1
  *
  * ICNTL(11) : > 0 return statistics
  *
  * ICNTL(12) : only used for SYM = 2, ordering strategy
  *
  * ICNTL(13) :
  *
  * ICNTL(14) : percentage of increase of the estimated working space
  *
  * ICNTL(15-17) : not used
  *
  * ICNTL(18) : only  used if ICNTL(5) = 0, 0 matrix  centralized, 1 structure on
  * host and mumps  give the mapping, 2 structure on  host and distributed matrix
  * for facto, 3 distributed matrix
  *
  * ICNTL(19) : > 0, Shur complement returned
  *
  * ICNTL(20) : 0 rhs dense, 1 rhs sparse
  *
  * ICNTL(21) : 0 solution in rhs, 1 solution distributed in ISOL_loc and SOL_loc
  * allocated by user
  *
  * ICNTL(22) : 0 in-core, 1 out-of-core
  *
  * ICNTL(23) : maximum memory allocatable by mumps pre proc
  *
  * ICNTL(24) : controls the detection of "null pivot rows"
  *
  * ICNTL(25) :
  *
  * ICNTL(26) :
  *
  * ICNTL(27) :
  *
  * ICNTL(28) : 0 automatic choice, 1 sequential analysis, 2 parallel analysis
  *
  * ICNTL(29) : 0 automatic choice, 1 PT-Scotch, 2 ParMetis
  */
 
 /* -------------------------------------------------------------------------- */
 #ifdef AKANTU_USE_MPI
 #include "static_communicator_mpi.hh"
 #endif
 
 #include "solver_mumps.hh"
 #include "dof_synchronizer.hh"
 
 __BEGIN_AKANTU__
 
 /* -------------------------------------------------------------------------- */
 SolverMumps::SolverMumps(SparseMatrix & matrix,
 			 const ID & id,
 			 const MemoryID & memory_id) :
-  Solver(matrix, id, memory_id), rhs_is_local(true) {
+  Solver(matrix, id, memory_id), is_mumps_data_initialized(false), rhs_is_local(true) {
   AKANTU_DEBUG_IN();
 
 #ifdef AKANTU_USE_MPI
   parallel_method = SolverMumpsOptions::_fully_distributed;
 #else //AKANTU_USE_MPI
   parallel_method = SolverMumpsOptions::_master_slave_distributed;
 #endif //AKANTU_USE_MPI
 
-  //  UInt nb_degree_of_freedom = matrix.getNbDegreOfFreedom();
+  CommunicatorEventHandler & comm_event_handler = *this;
 
-  //  std::stringstream sstr; sstr << id << ":sparse_matrix";
-  //  matrix = new SparseMatrix(mesh, sparse_matrix_type, nb_degree_of_freedom, sstr_mat.str(), memory_id);
+  communicator.registerEventHandler(comm_event_handler);
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 SolverMumps::~SolverMumps() {
   AKANTU_DEBUG_IN();
 
-  mumps_data.job = _smj_destroy; // destroy
-  dmumps_c(&mumps_data);
+  AKANTU_DEBUG_OUT();
+}
+
+/* -------------------------------------------------------------------------- */
+void SolverMumps::destroyMumpsData() {
+  AKANTU_DEBUG_IN();
+
+  if(is_mumps_data_initialized) {
+    mumps_data.job = _smj_destroy; // destroy
+    dmumps_c(&mumps_data);
+    is_mumps_data_initialized = false;
+  }
 
   AKANTU_DEBUG_OUT();
 }
 
+/* -------------------------------------------------------------------------- */
+void SolverMumps::onCommunicatorFinalize(const StaticCommunicator & comm) {
+  AKANTU_DEBUG_IN();
+
+  try{
+    const StaticCommunicatorMPI & comm_mpi =
+      dynamic_cast<const StaticCommunicatorMPI &>(comm.getRealStaticCommunicator());
+    if(mumps_data.comm_fortran == MPI_Comm_c2f(comm_mpi.getMPICommunicator()))
+      destroyMumpsData();
+  } catch(...) {}
+
+  AKANTU_DEBUG_OUT();
+};
+
 /* -------------------------------------------------------------------------- */
 void SolverMumps::initMumpsData(SolverMumpsOptions::ParallelMethod parallel_method) {
   switch(parallel_method) {
   case SolverMumpsOptions::_fully_distributed:
       icntl(18) = 3; //fully distributed
       icntl(28) = 0; //automatic choice
 
       mumps_data.nz_loc  = matrix->getNbNonZero();
       mumps_data.irn_loc = matrix->getIRN().values;
       mumps_data.jcn_loc = matrix->getJCN().values;
       break;
   case SolverMumpsOptions::_master_slave_distributed:
     if(prank == 0) {
       mumps_data.nz  = matrix->getNbNonZero();
       mumps_data.irn = matrix->getIRN().values;
       mumps_data.jcn = matrix->getJCN().values;
     } else {
       mumps_data.nz  = 0;
       mumps_data.irn = NULL;
       mumps_data.jcn = NULL;
 
       icntl(18) = 0; //centralized
       icntl(28) = 0; //sequential analysis
     }
     break;
   }
 }
 
 /* -------------------------------------------------------------------------- */
 void SolverMumps::initialize(SolverOptions & options) {
   AKANTU_DEBUG_IN();
-  
+
   mumps_data.par = 1;
 
   if(SolverMumpsOptions * opt = dynamic_cast<SolverMumpsOptions *>(&options)) {
     if(opt->parallel_method == SolverMumpsOptions::_master_slave_distributed) {
       mumps_data.par = 0;
     }
   }
 
   mumps_data.sym = 2 * (matrix->getSparseMatrixType() == _symmetric);
-  communicator = &StaticCommunicator::getStaticCommunicator();
-  prank = communicator->whoAmI();
+  prank = communicator.whoAmI();
 #ifdef AKANTU_USE_MPI
-  mumps_data.comm_fortran = MPI_Comm_c2f(dynamic_cast<const StaticCommunicatorMPI &>(communicator->getRealStaticCommunicator()).getMPICommunicator());
+  mumps_data.comm_fortran = MPI_Comm_c2f(dynamic_cast<const StaticCommunicatorMPI &>(communicator.getRealStaticCommunicator()).getMPICommunicator());
 #endif
 
   if(AKANTU_DEBUG_TEST(dblTrace)) {
     icntl(1) = 2;
     icntl(2) = 2;
     icntl(3) = 2;
     icntl(4) = 4;
   }
 
   mumps_data.job = _smj_initialize; //initialize
   dmumps_c(&mumps_data);
+  is_mumps_data_initialized = true;
 
   /* ------------------------------------------------------------------------ */
   UInt size = matrix->getSize();
 
   if(prank == 0) {
     std::stringstream sstr_rhs; sstr_rhs << id << ":rhs";
     rhs = &(alloc<Real>(sstr_rhs.str(), size, 1, REAL_INIT_VALUE));
   } else {
     rhs = NULL;
   }
 
   /// No outputs
   icntl(1) = 0;
   icntl(2) = 0;
   icntl(3) = 0;
   icntl(4) = 0;
   mumps_data.nz_alloc = 0;
 
   if (AKANTU_DEBUG_TEST(dblDump)) icntl(4) = 4;
 
   mumps_data.n   = size;
 
   if(AKANTU_DEBUG_TEST(dblDump)) {
     strcpy(mumps_data.write_problem, "mumps_matrix.mtx");
   }
 
   /* ------------------------------------------------------------------------ */
   // Default Scaling
   icntl(8) = 77;
 
   icntl(5) = 0; // Assembled matrix
-  
+
   SolverMumpsOptions * opt = dynamic_cast<SolverMumpsOptions *>(&options);
   if(opt)
     parallel_method = opt->parallel_method;
 
   initMumpsData(parallel_method);
 
   mumps_data.job = _smj_analyze; //analyze
   dmumps_c(&mumps_data);
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void SolverMumps::setRHS(Vector<Real> & rhs) {
   if(prank == 0) {
     matrix->getDOFSynchronizer().gather(rhs, 0, this->rhs);
   } else {
     matrix->getDOFSynchronizer().gather(rhs, 0);
   }
 }
 
 /* -------------------------------------------------------------------------- */
 void SolverMumps::solve() {
   AKANTU_DEBUG_IN();
 
   if(parallel_method == SolverMumpsOptions::_fully_distributed)
     mumps_data.a_loc  = matrix->getA().values;
   else
     if(prank == 0) {
       mumps_data.a  = matrix->getA().values;
     }
 
   if(prank == 0) {
     mumps_data.rhs = rhs->values;
   }
 
   /// Default centralized dense second member
   icntl(20) = 0;
   icntl(21) = 0;
 
   mumps_data.job = _smj_factorize_solve; //solve
   dmumps_c(&mumps_data);
 
   AKANTU_DEBUG_ASSERT(info(1) != -10, "Singular matrix");
   AKANTU_DEBUG_ASSERT(info(1) == 0,
 		      "Error in mumps during solve process, check mumps user guide INFO(1) ="
 		      << info(1));
 
   AKANTU_DEBUG_OUT();
 }
 
 /* -------------------------------------------------------------------------- */
 void SolverMumps::solve(Vector<Real> & solution) {
   AKANTU_DEBUG_IN();
 
   solve();
 
   if(prank == 0) {
     matrix->getDOFSynchronizer().scatter(solution, 0, this->rhs);
   } else {
     matrix->getDOFSynchronizer().scatter(solution, 0);
   }
 
   AKANTU_DEBUG_OUT();
 }
 
 
 __END_AKANTU__
diff --git a/src/solver/solver_mumps.hh b/src/solver/solver_mumps.hh
index 3b3bc5ec2..9db0c7b7b 100644
--- a/src/solver/solver_mumps.hh
+++ b/src/solver/solver_mumps.hh
@@ -1,157 +1,163 @@
 /**
  * @file   solver_mumps.hh
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Wed Nov 17 17:28:56 2010
  *
  * @brief  Solver class implementation for the mumps solver
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
-
-
 #ifndef __AKANTU_SOLVER_MUMPS_HH__
 #define __AKANTU_SOLVER_MUMPS_HH__
 #include <dmumps_c.h>
 
 #include "solver.hh"
+#include "static_communicator.hh"
 
 __BEGIN_AKANTU__
 
 class SolverMumpsOptions : public SolverOptions {
 public:
   enum ParallelMethod {
     _fully_distributed,
     _master_slave_distributed
   };
 
   SolverMumpsOptions(ParallelMethod parallel_method = _fully_distributed) :
     SolverOptions(),
     parallel_method(parallel_method) { }
 
   virtual void niceFunctionWhichDoesNothing() { 
     SolverOptions::niceFunctionWhichDoesNothing();
     AKANTU_DEBUG_ERROR("Nothing!!! (TWICE)"); };
 
 private:
   friend class SolverMumps;
   ParallelMethod parallel_method;
 };
 
-class SolverMumps : public Solver {
+class SolverMumps : public Solver, public CommunicatorEventHandler {
   /* ------------------------------------------------------------------------ */
   /* Constructors/Destructors                                                 */
   /* ------------------------------------------------------------------------ */
 public:
 
   SolverMumps(SparseMatrix & sparse_matrix,
 	      const ID & id = "solver_mumps",
 	      const MemoryID & memory_id = 0);
 
   virtual ~SolverMumps();
 
   /* ------------------------------------------------------------------------ */
   /* Methods                                                                  */
   /* ------------------------------------------------------------------------ */
 public:
 
   /// build the profile and do the analysis part
   void initialize(SolverOptions & options = _solver_no_options);
 
   void initializeSlave(SolverOptions & options = _solver_no_options);
 
 
   /// factorize and solve the system
   void solve(Vector<Real> & solution);
   void solve();
 
   void solveSlave();
 
   virtual void setRHS(Vector<Real> & rhs);
 
   /// function to print the contain of the class
   //  virtual void printself(std::ostream & stream, int indent = 0) const;
 
+  virtual void onCommunicatorFinalize(const StaticCommunicator & communicator);
+
 private:
 
+  void destroyMumpsData();
+
   inline Int & icntl(UInt i) {
     return mumps_data.icntl[i - 1];
   }
 
   inline Int & info(UInt i) {
     return mumps_data.info[i - 1];
   }
 
   void initMumpsData(SolverMumpsOptions::ParallelMethod parallel_method);
 
   /* ------------------------------------------------------------------------ */
   /* Accessors                                                                */
   /* ------------------------------------------------------------------------ */
 public:
 
   /* ------------------------------------------------------------------------ */
   /* Class Members                                                            */
   /* ------------------------------------------------------------------------ */
 private:
 
   /// mumps data
   DMUMPS_STRUC_C mumps_data;
 
+  /// specify if the mumps_data are initialized or not
+  bool is_mumps_data_initialized;
+
   UInt prank;
 
   /* ------------------------------------------------------------------------ */
   /* Local types                                                              */
   /* ------------------------------------------------------------------------ */
 private:
   SolverMumpsOptions::ParallelMethod parallel_method;
 
   bool rhs_is_local;
 
   enum SolverMumpsJob {
     _smj_initialize = -1,
     _smj_analyze = 1,
     _smj_factorize = 2,
     _smj_solve = 3,
     _smj_analyze_factorize = 4,
     _smj_factorize_solve = 5,
     _smj_complete = 6, // analyze, factorize, solve
     _smj_destroy = -2
   };
 };
 
 
 /* -------------------------------------------------------------------------- */
 /* inline functions                                                           */
 /* -------------------------------------------------------------------------- */
 
 //#include "solver_mumps_inline_impl.cc"
 
 /// standard output stream operator
 // inline std::ostream & operator <<(std::ostream & stream, const SolverMumps & _this)
 // {
 //   _this.printself(stream);
 //   return stream;
 // }
 
 
 __END_AKANTU__
 
 #endif /* __AKANTU_SOLVER_MUMPS_HH__ */
diff --git a/src/synchronizer/static_communicator.hh b/src/synchronizer/static_communicator.hh
index 96597d76a..187e65202 100644
--- a/src/synchronizer/static_communicator.hh
+++ b/src/synchronizer/static_communicator.hh
@@ -1,174 +1,198 @@
 /**
  * @file   static_communicator.hh
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Thu Aug 19 15:34:09 2010
  *
  * @brief  Class handling the parallel communications
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 
 #ifndef __AKANTU_STATIC_COMMUNICATOR_HH__
 #define __AKANTU_STATIC_COMMUNICATOR_HH__
 
 /* -------------------------------------------------------------------------- */
 #include "aka_common.hh"
+#include "aka_event_handler.hh"
+
 /* -------------------------------------------------------------------------- */
 
 /* -------------------------------------------------------------------------- */
 #define AKANTU_COMMUNICATOR_LIST_0 BOOST_PP_SEQ_NIL
 
 #include "static_communicator_dummy.hh"
 #define AKANTU_COMMUNICATOR_LIST_1					\
   BOOST_PP_SEQ_PUSH_BACK(AKANTU_COMMUNICATOR_LIST_0,			\
 			 (_communicator_dummy,	(StaticCommunicatorDummy, BOOST_PP_NIL)))
 
 #if defined(AKANTU_USE_MPI)
 #  include "static_communicator_mpi.hh"
 #  define AKANTU_COMMUNICATOR_LIST_ALL					\
   BOOST_PP_SEQ_PUSH_BACK(AKANTU_COMMUNICATOR_LIST_1,			\
 			 (_communicator_mpi, (StaticCommunicatorMPI, BOOST_PP_NIL)))
 #else
 #  define AKANTU_COMMUNICATOR_LIST_ALL	AKANTU_COMMUNICATOR_LIST_1
 #endif // AKANTU_COMMUNICATOR_LIST
 
 #include "real_static_communicator.hh"
 
 /* -------------------------------------------------------------------------- */
 
 __BEGIN_AKANTU__
 
 class RealStaticCommunicator;
 
-class StaticCommunicator {
+struct FinalizeCommunicatorEvent {
+  FinalizeCommunicatorEvent(const StaticCommunicator & comm) : communicator(comm) {}
+  const StaticCommunicator & communicator;
+};
+
+class CommunicatorEventHandler {
+public:
+  virtual ~CommunicatorEventHandler() {}
+  virtual void onCommunicatorFinalize(const StaticCommunicator & communicator) { };
+protected:
+  inline void sendEvent(const FinalizeCommunicatorEvent & event) { onCommunicatorFinalize(event.communicator); }
+
+  template<class EventHandler>
+  friend class EventHandlerManager;
+};
+
+
+class StaticCommunicator : public EventHandlerManager<CommunicatorEventHandler>{
   /* ------------------------------------------------------------------------ */
   /* Constructors/Destructors                                                 */
   /* ------------------------------------------------------------------------ */
 protected:
   StaticCommunicator(int & argc, char ** & argv,
 		     CommunicatorType type = _communicator_mpi);
 
 public:
-  virtual ~StaticCommunicator() { delete real_static_communicator; };
+  virtual ~StaticCommunicator() {
+    FinalizeCommunicatorEvent event(*this);
+    this->sendEvent(event);
+
+    delete real_static_communicator;
+  };
 
   /* ------------------------------------------------------------------------ */
   /* Methods                                                                  */
   /* ------------------------------------------------------------------------ */
 public:
 
   /* ------------------------------------------------------------------------ */
   /* Point to Point                                                           */
   /* ------------------------------------------------------------------------ */
   template<typename T> inline void send(T * buffer, Int size,
 					Int receiver, Int tag);
   template<typename T> inline void receive(T * buffer, Int size,
 					   Int sender, Int tag);
 
   template<typename T> inline CommunicationRequest * asyncSend(T * buffer,
 							       Int size,
 							       Int receiver,
 							       Int tag);
   template<typename T> inline CommunicationRequest * asyncReceive(T * buffer,
 								  Int size,
 								  Int sender,
 								  Int tag);
 
   template<typename T> inline void probe(Int sender, Int tag,
                                          CommunicationStatus & status);
 
   /* ------------------------------------------------------------------------ */
   /* Collectives                                                              */
   /* ------------------------------------------------------------------------ */
   template<typename T> inline void allReduce(T * values, Int nb_values,
 					     const SynchronizerOperation & op);
 
   template<typename T> inline void allGather(T * values, Int nb_values);
   template<typename T> inline void allGatherV(T * values, Int * nb_values);
 
   template<typename T> inline void gather(T * values, Int nb_values,
 					  Int root = 0);
   template<typename T> inline void gatherV(T * values, Int * nb_values,
 					   Int root = 0);
   template<typename T> inline void broadcast(T * values, Int nb_values,
 					     Int root = 0);
 
   inline void barrier();
 
   /* ------------------------------------------------------------------------ */
   /* Request handling                                                         */
   /* ------------------------------------------------------------------------ */
   inline bool testRequest(CommunicationRequest * request);
 
   inline void wait(CommunicationRequest * request);
   inline void waitAll(std::vector<CommunicationRequest *> & requests);
 
   inline void freeCommunicationRequest(CommunicationRequest * request);
   inline void freeCommunicationRequest(std::vector<CommunicationRequest *> & requests);
 
   /* ------------------------------------------------------------------------ */
   /* Accessors                                                                */
   /* ------------------------------------------------------------------------ */
 public:
   virtual Int getNbProc() const { return real_static_communicator->psize; };
   virtual Int whoAmI() const { return real_static_communicator->prank; };
 
   AKANTU_GET_MACRO(RealStaticCommunicator, *real_static_communicator, const RealStaticCommunicator &);
 
   static StaticCommunicator & getStaticCommunicator(CommunicatorType type = _communicator_mpi);
 
   static StaticCommunicator & getStaticCommunicator(int & argc, char ** & argv,
 						    CommunicatorType type = _communicator_mpi);
 
   static bool isInstantiated() { return is_instantiated; };
 
   /* ------------------------------------------------------------------------ */
   /* Class Members                                                            */
   /* ------------------------------------------------------------------------ */
 private:
   static bool is_instantiated;
 
   static StaticCommunicator * static_communicator;
 
   RealStaticCommunicator * real_static_communicator;
 
   CommunicatorType real_type;
 };
 
 /* -------------------------------------------------------------------------- */
 /* inline functions                                                           */
 /* -------------------------------------------------------------------------- */
 
 #include "static_communicator_inline_impl.hh"
 
 /* -------------------------------------------------------------------------- */
 /* Inline Functions VectorBase                                                */
 /* -------------------------------------------------------------------------- */
 inline std::ostream & operator<<(std::ostream & stream, const CommunicationRequest & _this)
 {
   _this.printself(stream);
   return stream;
 }
 
 
 __END_AKANTU__
 
 #endif /* __AKANTU_STATIC_COMMUNICATOR_HH__ */
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index fc88cc864..cab9c358a 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -1,56 +1,55 @@
 #===============================================================================
 # @file   CMakeLists.txt
 # @author Nicolas Richart <nicolas.richart@epfl.ch>
 # @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
 # @date   Fri Jun 11 09:46:59 2010
 #
 # @section LICENSE
 #
 # Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
 # Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
 #
 # Akantu is free  software: you can redistribute it and/or  modify it under the
 # terms  of the  GNU Lesser  General Public  License as  published by  the Free
 # Software Foundation, either version 3 of the License, or (at your option) any
 # later version.
 #
 # Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 # A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
 # details.
 #
 # You should  have received  a copy  of the GNU  Lesser General  Public License
 # along with Akantu. If not, see <http://www.gnu.org/licenses/>.
 #
 # @section DESCRIPTION
 #
 #===============================================================================
-
-INCLUDE(${AKANTU_CMAKE_DIR}/AkantuTestAndExamples.cmake)
+include(${AKANTU_CMAKE_DIR}/AkantuTestAndExamples.cmake)
 
 include_directories(
   ${AKANTU_INCLUDE_DIRS}
   ${AKANTU_EXTERNAL_LIB_INCLUDE_DIR}
   )
 
 find_package(GMSH REQUIRED)
 
 #===============================================================================
 # List of tests
 #===============================================================================
 add_akantu_test(test_common "Test the common part of Akantu")
 add_akantu_test(test_static_memory "Test static memory")
 add_akantu_test(test_fem "Test finite element functionalties")
 add_akantu_test(test_mesh_utils "Test mesh utils")
 add_akantu_test(test_model "Test model objects")
 add_akantu_test(test_solver "Test solver function")
 
 if(AKANTU_CONTACT)
   #add_akantu_test(test_contact_neighbor_structure "Test contact neighbor structure")
   add_akantu_test(test_surface_extraction "Test mesh utils surface extraction")
 endif(AKANTU_CONTACT)
 
 if(AKANTU_MPI)
   add_akantu_test(test_synchronizer "Test synchronizers")
 endif(AKANTU_MPI)
 
diff --git a/test/test_fem/CMakeLists.txt b/test/test_fem/CMakeLists.txt
index 80d1b7021..1f0e8ffc1 100644
--- a/test/test_fem/CMakeLists.txt
+++ b/test/test_fem/CMakeLists.txt
@@ -1,78 +1,61 @@
 #===============================================================================
 # @file   CMakeLists.txt
 # @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
 # @date   Fri Jun 11 09:46:59 2010
 #
 # @section LICENSE
 #
 # Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
 # Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
 #
 # Akantu is free  software: you can redistribute it and/or  modify it under the
 # terms  of the  GNU Lesser  General Public  License as  published by  the Free
 # Software Foundation, either version 3 of the License, or (at your option) any
 # later version.
 #
 # Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 # A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
 # details.
 #
 # You should  have received  a copy  of the GNU  Lesser General  Public License
 # along with Akantu. If not, see <http://www.gnu.org/licenses/>.
 #
 # @section DESCRIPTION
 #
 #===============================================================================
 
 #===============================================================================
-#register_test(test_interpolate_bernoulli_beam_2 test_interpolate_bernoulli_beam_2.cc)
-
+macro(register_fem_test operation type)
+  set(_target test_${operation}_${_type})
+  register_test_new(${_target}
+    SOURCES test_${operation}.cc
+    FILES_TO_COPY _${type}.msh
+    COMPILE_OPTIONS TYPE=_${_type}
+    PACKAGE core
+    )
+endmacro()
 #===============================================================================
+
 set(LIST_TYPES
   segment_2
   segment_3
   triangle_3
   triangle_6
   quadrangle_4
   quadrangle_8
   tetrahedron_4
   tetrahedron_10
   hexahedron_8
   )
 
-add_mesh(test_fem_segment_2_mesh      line.geo              1 1 OUTPUT _segment_2.msh)
-add_mesh(test_fem_segment_3_mesh      line.geo              1 2 OUTPUT _segment_3.msh)
-add_mesh(test_fem_triangle_3_mesh     square.geo            2 1 OUTPUT _triangle_3.msh)
-add_mesh(test_fem_triangle_6_mesh     square.geo            2 2 OUTPUT _triangle_6.msh)
-add_mesh(test_fem_quadrangle_4_mesh   square_structured.geo 2 1 OUTPUT _quadrangle_4.msh)
-add_mesh(test_fem_quadrangle_8_mesh   square_structured.geo 2 2 OUTPUT _quadrangle_8.msh)
-add_mesh(test_fem_tetrahedron_4_mesh  cube.geo              3 1 OUTPUT _tetrahedron_4.msh)
-add_mesh(test_fem_tetrahedron_10_mesh cube.geo              3 2 OUTPUT _tetrahedron_10.msh)
-add_mesh(test_fem_hexahedron_8_mesh   hexa_structured.geo   3 1 OUTPUT _hexahedron_8.msh)
-
-
-macro(register_fem_test operation type)
-  set(_target test_${operation}_${_type})
-  register_test(${_target} test_${operation}.cc)
-  set_target_properties(${_target}
-    PROPERTIES COMPILE_DEFINITIONS TYPE=_${_type})
-  if(NOT EXISTS _${_type}.msh)
-    add_dependencies(${_target} test_fem_${_type}_mesh)
-  endif()
-endmacro()
-
-
 foreach(_type ${LIST_TYPES})
   register_fem_test(interpolate ${_type})
   register_fem_test(gradient    ${_type})
   register_fem_test(integrate   ${_type})
   register_fem_test(inverse_map ${_type})
-
-  if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${_type}.msh)
-    file(COPY _${_type}.msh DESTINATION .)
-  endif()
 endforeach()
 
+#register_test(test_interpolate_bernoulli_beam_2 test_interpolate_bernoulli_beam_2.cc)
 #add_mesh(test_fem_circle_1_mesh circle.geo 2 1 OUTPUT circle1.msh)
 #add_mesh(test_fem_circle_2_mesh circle.geo 2 2 OUTPUT circle2.msh)
diff --git a/test/test_fem/test_gradient_hexahedron_8.verified b/test/test_fem/test_gradient_hexahedron_8.verified
index e16d81de0..09f92324b 100644
--- a/test/test_fem/test_gradient_hexahedron_8.verified
+++ b/test/test_fem/test_gradient_hexahedron_8.verified
@@ -1,181 +1,181 @@
 Epsilon : 1e-12
 FEM [
  + id                : my_fem
  + element dimension : 3
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 125
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.25, 0.75, 1}, {0.25, 0.5, 1}, {0.25, 0.25, 1}, {0.5, 0.75, 1}, {0.5, 0.5, 1}, {0.5, 0.25, 1}, {0.75, 0.75, 1}, {0.75, 0.5, 1}, {0.75, 0.25, 1}, {0.75, 1, 0.25}, {0.75, 1, 0.5}, {0.75, 1, 0.75}, {0.5, 1, 0.25}, {0.5, 1, 0.5}, {0.5, 1, 0.75}, {0.25, 1, 0.25}, {0.25, 1, 0.5}, {0.25, 1, 0.75}, {0.25, 0, 0.75}, {0.25, 0, 0.5}, {0.25, 0, 0.25}, {0.5, 0, 0.75}, {0.5, 0, 0.5}, {0.5, 0, 0.25}, {0.75, 0, 0.75}, {0.75, 0, 0.5}, {0.75, 0, 0.25}, {0.75, 0.75, 0}, {0.75, 0.5, 0}, {0.75, 0.25, 0}, {0.5, 0.75, 0}, {0.5, 0.5, 0}, {0.5, 0.25, 0}, {0.25, 0.75, 0}, {0.25, 0.5, 0}, {0.25, 0.25, 0}, {0, 0.75, 0.25}, {0, 0.5, 0.25}, {0, 0.25, 0.25}, {0, 0.75, 0.5}, {0, 0.5, 0.5}, {0, 0.25, 0.5}, {0, 0.75, 0.75}, {0, 0.5, 0.75}, {0, 0.25, 0.75}, {1, 0.75, 0.75}, {1, 0.75, 0.5}, {1, 0.75, 0.25}, {1, 0.5, 0.75}, {1, 0.5, 0.5}, {1, 0.5, 0.25}, {1, 0.25, 0.75}, {1, 0.25, 0.5}, {1, 0.25, 0.25}, {0.75, 0.75, 0.75}, {0.5, 0.75, 0.75}, {0.25, 0.75, 0.75}, {0.75, 0.75, 0.5}, {0.5, 0.75, 0.5}, {0.25, 0.75, 0.5}, {0.75, 0.75, 0.25}, {0.5, 0.75, 0.25}, {0.25, 0.75, 0.25}, {0.75, 0.5, 0.75}, {0.5, 0.5, 0.75}, {0.25, 0.5, 0.75}, {0.75, 0.5, 0.5}, {0.5, 0.5, 0.5}, {0.25, 0.5, 0.5}, {0.75, 0.5, 0.25}, {0.5, 0.5, 0.25}, {0.25, 0.5, 0.25}, {0.75, 0.25, 0.75}, {0.5, 0.25, 0.75}, {0.25, 0.25, 0.75}, {0.75, 0.25, 0.5}, {0.5, 0.25, 0.5}, {0.25, 0.25, 0.5}, {0.75, 0.25, 0.25}, {0.5, 0.25, 0.25}, {0.25, 0.25, 0.25}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 48
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
        ]
-        (not_ghost:quadrangle_4) [
+        (not_ghost:_quadrangle_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_4
+        + id             : mesh:connectivities:_quadrangle_4
         + size           : 96
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{6, 8, 44, 35}, {35, 44, 45, 36}, {36, 45, 46, 37}, {37, 46, 23, 4}, {8, 9, 47, 44}, {44, 47, 48, 45}, {45, 48, 49, 46}, {46, 49, 24, 23}, {9, 10, 50, 47}, {47, 50, 51, 48}, {48, 51, 52, 49}, {49, 52, 25, 24}, {10, 7, 38, 50}, {50, 38, 39, 51}, {51, 39, 40, 52}, {52, 40, 5, 25}, {3, 14, 53, 13}, {13, 53, 54, 12}, {12, 54, 55, 11}, {11, 55, 10, 7}, {14, 15, 56, 53}, {53, 56, 57, 54}, {54, 57, 58, 55}, {55, 58, 9, 10}, {15, 16, 59, 56}, {56, 59, 60, 57}, {57, 60, 61, 58}, {58, 61, 8, 9}, {16, 2, 17, 59}, {59, 17, 18, 60}, {60, 18, 19, 61}, {61, 19, 6, 8}, {4, 23, 62, 22}, {22, 62, 63, 21}, {21, 63, 64, 20}, {20, 64, 31, 0}, {23, 24, 65, 62}, {62, 65, 66, 63}, {63, 66, 67, 64}, {64, 67, 30, 31}, {24, 25, 68, 65}, {65, 68, 69, 66}, {66, 69, 70, 67}, {67, 70, 29, 30}, {25, 5, 26, 68}, {68, 26, 27, 69}, {69, 27, 28, 70}, {70, 28, 1, 29}, {3, 14, 71, 41}, {41, 71, 72, 42}, {42, 72, 73, 43}, {43, 73, 29, 1}, {14, 15, 74, 71}, {71, 74, 75, 72}, {72, 75, 76, 73}, {73, 76, 30, 29}, {15, 16, 77, 74}, {74, 77, 78, 75}, {75, 78, 79, 76}, {76, 79, 31, 30}, {16, 2, 32, 77}, {77, 32, 33, 78}, {78, 33, 34, 79}, {79, 34, 0, 31}, {2, 17, 80, 32}, {32, 80, 81, 33}, {33, 81, 82, 34}, {34, 82, 20, 0}, {17, 18, 83, 80}, {80, 83, 84, 81}, {81, 84, 85, 82}, {82, 85, 21, 20}, {18, 19, 86, 83}, {83, 86, 87, 84}, {84, 87, 88, 85}, {85, 88, 22, 21}, {19, 6, 35, 86}, {86, 35, 36, 87}, {87, 36, 37, 88}, {88, 37, 4, 22}, {7, 38, 89, 11}, {11, 89, 90, 12}, {12, 90, 91, 13}, {13, 91, 41, 3}, {38, 39, 92, 89}, {89, 92, 93, 90}, {90, 93, 94, 91}, {91, 94, 42, 41}, {39, 40, 95, 92}, {92, 95, 96, 93}, {93, 96, 97, 94}, {94, 97, 43, 42}, {40, 5, 26, 95}, {95, 26, 27, 96}, {96, 27, 28, 97}, {97, 28, 1, 43}}
        ]
-        (not_ghost:hexahedron_8) [
+        (not_ghost:_hexahedron_8) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:hexahedron_8
+        + id             : mesh:connectivities:_hexahedron_8
         + size           : 64
         + nb_component   : 8
         + allocated size : 2000
         + memory size    : 62kB
         + values         : {{89, 38, 7, 11, 98, 50, 10, 55}, {98, 50, 10, 55, 99, 47, 9, 58}, {99, 47, 9, 58, 100, 44, 8, 61}, {100, 44, 8, 61, 86, 35, 6, 19}, {90, 89, 11, 12, 101, 98, 55, 54}, {101, 98, 55, 54, 102, 99, 58, 57}, {102, 99, 58, 57, 103, 100, 61, 60}, {103, 100, 61, 60, 83, 86, 19, 18}, {91, 90, 12, 13, 104, 101, 54, 53}, {104, 101, 54, 53, 105, 102, 57, 56}, {105, 102, 57, 56, 106, 103, 60, 59}, {106, 103, 60, 59, 80, 83, 18, 17}, {41, 91, 13, 3, 71, 104, 53, 14}, {71, 104, 53, 14, 74, 105, 56, 15}, {74, 105, 56, 15, 77, 106, 59, 16}, {77, 106, 59, 16, 32, 80, 17, 2}, {92, 39, 38, 89, 107, 51, 50, 98}, {107, 51, 50, 98, 108, 48, 47, 99}, {108, 48, 47, 99, 109, 45, 44, 100}, {109, 45, 44, 100, 87, 36, 35, 86}, {93, 92, 89, 90, 110, 107, 98, 101}, {110, 107, 98, 101, 111, 108, 99, 102}, {111, 108, 99, 102, 112, 109, 100, 103}, {112, 109, 100, 103, 84, 87, 86, 83}, {94, 93, 90, 91, 113, 110, 101, 104}, {113, 110, 101, 104, 114, 111, 102, 105}, {114, 111, 102, 105, 115, 112, 103, 106}, {115, 112, 103, 106, 81, 84, 83, 80}, {42, 94, 91, 41, 72, 113, 104, 71}, {72, 113, 104, 71, 75, 114, 105, 74}, {75, 114, 105, 74, 78, 115, 106, 77}, {78, 115, 106, 77, 33, 81, 80, 32}, {95, 40, 39, 92, 116, 52, 51, 107}, {116, 52, 51, 107, 117, 49, 48, 108}, {117, 49, 48, 108, 118, 46, 45, 109}, {118, 46, 45, 109, 88, 37, 36, 87}, {96, 95, 92, 93, 119, 116, 107, 110}, {119, 116, 107, 110, 120, 117, 108, 111}, {120, 117, 108, 111, 121, 118, 109, 112}, {121, 118, 109, 112, 85, 88, 87, 84}, {97, 96, 93, 94, 122, 119, 110, 113}, {122, 119, 110, 113, 123, 120, 111, 114}, {123, 120, 111, 114, 124, 121, 112, 115}, {124, 121, 112, 115, 82, 85, 84, 81}, {43, 97, 94, 42, 73, 122, 113, 72}, {73, 122, 113, 72, 76, 123, 114, 75}, {76, 123, 114, 75, 79, 124, 115, 78}, {79, 124, 115, 78, 34, 82, 81, 33}, {26, 5, 40, 95, 68, 25, 52, 116}, {68, 25, 52, 116, 65, 24, 49, 117}, {65, 24, 49, 117, 62, 23, 46, 118}, {62, 23, 46, 118, 22, 4, 37, 88}, {27, 26, 95, 96, 69, 68, 116, 119}, {69, 68, 116, 119, 66, 65, 117, 120}, {66, 65, 117, 120, 63, 62, 118, 121}, {63, 62, 118, 121, 21, 22, 88, 85}, {28, 27, 96, 97, 70, 69, 119, 122}, {70, 69, 119, 122, 67, 66, 120, 123}, {67, 66, 120, 123, 64, 63, 121, 124}, {64, 63, 121, 124, 20, 21, 85, 82}, {1, 28, 97, 43, 29, 70, 122, 73}, {29, 70, 122, 73, 30, 67, 123, 76}, {30, 67, 123, 76, 31, 64, 124, 79}, {31, 64, 124, 79, 0, 20, 82, 34}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 125
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.25, 0.75, 1}, {0.25, 0.5, 1}, {0.25, 0.25, 1}, {0.5, 0.75, 1}, {0.5, 0.5, 1}, {0.5, 0.25, 1}, {0.75, 0.75, 1}, {0.75, 0.5, 1}, {0.75, 0.25, 1}, {0.75, 1, 0.25}, {0.75, 1, 0.5}, {0.75, 1, 0.75}, {0.5, 1, 0.25}, {0.5, 1, 0.5}, {0.5, 1, 0.75}, {0.25, 1, 0.25}, {0.25, 1, 0.5}, {0.25, 1, 0.75}, {0.25, 0, 0.75}, {0.25, 0, 0.5}, {0.25, 0, 0.25}, {0.5, 0, 0.75}, {0.5, 0, 0.5}, {0.5, 0, 0.25}, {0.75, 0, 0.75}, {0.75, 0, 0.5}, {0.75, 0, 0.25}, {0.75, 0.75, 0}, {0.75, 0.5, 0}, {0.75, 0.25, 0}, {0.5, 0.75, 0}, {0.5, 0.5, 0}, {0.5, 0.25, 0}, {0.25, 0.75, 0}, {0.25, 0.5, 0}, {0.25, 0.25, 0}, {0, 0.75, 0.25}, {0, 0.5, 0.25}, {0, 0.25, 0.25}, {0, 0.75, 0.5}, {0, 0.5, 0.5}, {0, 0.25, 0.5}, {0, 0.75, 0.75}, {0, 0.5, 0.75}, {0, 0.25, 0.75}, {1, 0.75, 0.75}, {1, 0.75, 0.5}, {1, 0.75, 0.25}, {1, 0.5, 0.75}, {1, 0.5, 0.5}, {1, 0.5, 0.25}, {1, 0.25, 0.75}, {1, 0.25, 0.5}, {1, 0.25, 0.25}, {0.75, 0.75, 0.75}, {0.5, 0.75, 0.75}, {0.25, 0.75, 0.75}, {0.75, 0.75, 0.5}, {0.5, 0.75, 0.5}, {0.25, 0.75, 0.5}, {0.75, 0.75, 0.25}, {0.5, 0.75, 0.25}, {0.25, 0.75, 0.25}, {0.75, 0.5, 0.75}, {0.5, 0.5, 0.75}, {0.25, 0.5, 0.75}, {0.75, 0.5, 0.5}, {0.5, 0.5, 0.5}, {0.25, 0.5, 0.5}, {0.75, 0.5, 0.25}, {0.5, 0.5, 0.25}, {0.25, 0.5, 0.25}, {0.75, 0.25, 0.75}, {0.5, 0.25, 0.75}, {0.25, 0.25, 0.75}, {0.75, 0.25, 0.5}, {0.5, 0.25, 0.5}, {0.25, 0.25, 0.5}, {0.75, 0.25, 0.25}, {0.5, 0.25, 0.25}, {0.25, 0.25, 0.25}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 48
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
        ]
-        (not_ghost:quadrangle_4) [
+        (not_ghost:_quadrangle_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_4
+        + id             : mesh:connectivities:_quadrangle_4
         + size           : 96
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{6, 8, 44, 35}, {35, 44, 45, 36}, {36, 45, 46, 37}, {37, 46, 23, 4}, {8, 9, 47, 44}, {44, 47, 48, 45}, {45, 48, 49, 46}, {46, 49, 24, 23}, {9, 10, 50, 47}, {47, 50, 51, 48}, {48, 51, 52, 49}, {49, 52, 25, 24}, {10, 7, 38, 50}, {50, 38, 39, 51}, {51, 39, 40, 52}, {52, 40, 5, 25}, {3, 14, 53, 13}, {13, 53, 54, 12}, {12, 54, 55, 11}, {11, 55, 10, 7}, {14, 15, 56, 53}, {53, 56, 57, 54}, {54, 57, 58, 55}, {55, 58, 9, 10}, {15, 16, 59, 56}, {56, 59, 60, 57}, {57, 60, 61, 58}, {58, 61, 8, 9}, {16, 2, 17, 59}, {59, 17, 18, 60}, {60, 18, 19, 61}, {61, 19, 6, 8}, {4, 23, 62, 22}, {22, 62, 63, 21}, {21, 63, 64, 20}, {20, 64, 31, 0}, {23, 24, 65, 62}, {62, 65, 66, 63}, {63, 66, 67, 64}, {64, 67, 30, 31}, {24, 25, 68, 65}, {65, 68, 69, 66}, {66, 69, 70, 67}, {67, 70, 29, 30}, {25, 5, 26, 68}, {68, 26, 27, 69}, {69, 27, 28, 70}, {70, 28, 1, 29}, {3, 14, 71, 41}, {41, 71, 72, 42}, {42, 72, 73, 43}, {43, 73, 29, 1}, {14, 15, 74, 71}, {71, 74, 75, 72}, {72, 75, 76, 73}, {73, 76, 30, 29}, {15, 16, 77, 74}, {74, 77, 78, 75}, {75, 78, 79, 76}, {76, 79, 31, 30}, {16, 2, 32, 77}, {77, 32, 33, 78}, {78, 33, 34, 79}, {79, 34, 0, 31}, {2, 17, 80, 32}, {32, 80, 81, 33}, {33, 81, 82, 34}, {34, 82, 20, 0}, {17, 18, 83, 80}, {80, 83, 84, 81}, {81, 84, 85, 82}, {82, 85, 21, 20}, {18, 19, 86, 83}, {83, 86, 87, 84}, {84, 87, 88, 85}, {85, 88, 22, 21}, {19, 6, 35, 86}, {86, 35, 36, 87}, {87, 36, 37, 88}, {88, 37, 4, 22}, {7, 38, 89, 11}, {11, 89, 90, 12}, {12, 90, 91, 13}, {13, 91, 41, 3}, {38, 39, 92, 89}, {89, 92, 93, 90}, {90, 93, 94, 91}, {91, 94, 42, 41}, {39, 40, 95, 92}, {92, 95, 96, 93}, {93, 96, 97, 94}, {94, 97, 43, 42}, {40, 5, 26, 95}, {95, 26, 27, 96}, {96, 27, 28, 97}, {97, 28, 1, 43}}
        ]
-        (not_ghost:hexahedron_8) [
+        (not_ghost:_hexahedron_8) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:hexahedron_8
+        + id             : mesh:connectivities:_hexahedron_8
         + size           : 64
         + nb_component   : 8
         + allocated size : 2000
         + memory size    : 62kB
         + values         : {{89, 38, 7, 11, 98, 50, 10, 55}, {98, 50, 10, 55, 99, 47, 9, 58}, {99, 47, 9, 58, 100, 44, 8, 61}, {100, 44, 8, 61, 86, 35, 6, 19}, {90, 89, 11, 12, 101, 98, 55, 54}, {101, 98, 55, 54, 102, 99, 58, 57}, {102, 99, 58, 57, 103, 100, 61, 60}, {103, 100, 61, 60, 83, 86, 19, 18}, {91, 90, 12, 13, 104, 101, 54, 53}, {104, 101, 54, 53, 105, 102, 57, 56}, {105, 102, 57, 56, 106, 103, 60, 59}, {106, 103, 60, 59, 80, 83, 18, 17}, {41, 91, 13, 3, 71, 104, 53, 14}, {71, 104, 53, 14, 74, 105, 56, 15}, {74, 105, 56, 15, 77, 106, 59, 16}, {77, 106, 59, 16, 32, 80, 17, 2}, {92, 39, 38, 89, 107, 51, 50, 98}, {107, 51, 50, 98, 108, 48, 47, 99}, {108, 48, 47, 99, 109, 45, 44, 100}, {109, 45, 44, 100, 87, 36, 35, 86}, {93, 92, 89, 90, 110, 107, 98, 101}, {110, 107, 98, 101, 111, 108, 99, 102}, {111, 108, 99, 102, 112, 109, 100, 103}, {112, 109, 100, 103, 84, 87, 86, 83}, {94, 93, 90, 91, 113, 110, 101, 104}, {113, 110, 101, 104, 114, 111, 102, 105}, {114, 111, 102, 105, 115, 112, 103, 106}, {115, 112, 103, 106, 81, 84, 83, 80}, {42, 94, 91, 41, 72, 113, 104, 71}, {72, 113, 104, 71, 75, 114, 105, 74}, {75, 114, 105, 74, 78, 115, 106, 77}, {78, 115, 106, 77, 33, 81, 80, 32}, {95, 40, 39, 92, 116, 52, 51, 107}, {116, 52, 51, 107, 117, 49, 48, 108}, {117, 49, 48, 108, 118, 46, 45, 109}, {118, 46, 45, 109, 88, 37, 36, 87}, {96, 95, 92, 93, 119, 116, 107, 110}, {119, 116, 107, 110, 120, 117, 108, 111}, {120, 117, 108, 111, 121, 118, 109, 112}, {121, 118, 109, 112, 85, 88, 87, 84}, {97, 96, 93, 94, 122, 119, 110, 113}, {122, 119, 110, 113, 123, 120, 111, 114}, {123, 120, 111, 114, 124, 121, 112, 115}, {124, 121, 112, 115, 82, 85, 84, 81}, {43, 97, 94, 42, 73, 122, 113, 72}, {73, 122, 113, 72, 76, 123, 114, 75}, {76, 123, 114, 75, 79, 124, 115, 78}, {79, 124, 115, 78, 34, 82, 81, 33}, {26, 5, 40, 95, 68, 25, 52, 116}, {68, 25, 52, 116, 65, 24, 49, 117}, {65, 24, 49, 117, 62, 23, 46, 118}, {62, 23, 46, 118, 22, 4, 37, 88}, {27, 26, 95, 96, 69, 68, 116, 119}, {69, 68, 116, 119, 66, 65, 117, 120}, {66, 65, 117, 120, 63, 62, 118, 121}, {63, 62, 118, 121, 21, 22, 88, 85}, {28, 27, 96, 97, 70, 69, 119, 122}, {70, 69, 119, 122, 67, 66, 120, 123}, {67, 66, 120, 123, 64, 63, 121, 124}, {64, 63, 121, 124, 20, 21, 85, 82}, {1, 28, 97, 43, 29, 70, 122, 73}, {29, 70, 122, 73, 30, 67, 123, 76}, {30, 67, 123, 76, 31, 64, 124, 79}, {31, 64, 124, 79, 0, 20, 82, 34}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 8
   Vector<unsigned int> [
-   + id             : mesh:connectivities:hexahedron_8
+   + id             : mesh:connectivities:_hexahedron_8
    + size           : 64
    + nb_component   : 8
    + allocated size : 2000
    + memory size    : 62kB
    + values         : {{89, 38, 7, 11, 98, 50, 10, 55}, {98, 50, 10, 55, 99, 47, 9, 58}, {99, 47, 9, 58, 100, 44, 8, 61}, {100, 44, 8, 61, 86, 35, 6, 19}, {90, 89, 11, 12, 101, 98, 55, 54}, {101, 98, 55, 54, 102, 99, 58, 57}, {102, 99, 58, 57, 103, 100, 61, 60}, {103, 100, 61, 60, 83, 86, 19, 18}, {91, 90, 12, 13, 104, 101, 54, 53}, {104, 101, 54, 53, 105, 102, 57, 56}, {105, 102, 57, 56, 106, 103, 60, 59}, {106, 103, 60, 59, 80, 83, 18, 17}, {41, 91, 13, 3, 71, 104, 53, 14}, {71, 104, 53, 14, 74, 105, 56, 15}, {74, 105, 56, 15, 77, 106, 59, 16}, {77, 106, 59, 16, 32, 80, 17, 2}, {92, 39, 38, 89, 107, 51, 50, 98}, {107, 51, 50, 98, 108, 48, 47, 99}, {108, 48, 47, 99, 109, 45, 44, 100}, {109, 45, 44, 100, 87, 36, 35, 86}, {93, 92, 89, 90, 110, 107, 98, 101}, {110, 107, 98, 101, 111, 108, 99, 102}, {111, 108, 99, 102, 112, 109, 100, 103}, {112, 109, 100, 103, 84, 87, 86, 83}, {94, 93, 90, 91, 113, 110, 101, 104}, {113, 110, 101, 104, 114, 111, 102, 105}, {114, 111, 102, 105, 115, 112, 103, 106}, {115, 112, 103, 106, 81, 84, 83, 80}, {42, 94, 91, 41, 72, 113, 104, 71}, {72, 113, 104, 71, 75, 114, 105, 74}, {75, 114, 105, 74, 78, 115, 106, 77}, {78, 115, 106, 77, 33, 81, 80, 32}, {95, 40, 39, 92, 116, 52, 51, 107}, {116, 52, 51, 107, 117, 49, 48, 108}, {117, 49, 48, 108, 118, 46, 45, 109}, {118, 46, 45, 109, 88, 37, 36, 87}, {96, 95, 92, 93, 119, 116, 107, 110}, {119, 116, 107, 110, 120, 117, 108, 111}, {120, 117, 108, 111, 121, 118, 109, 112}, {121, 118, 109, 112, 85, 88, 87, 84}, {97, 96, 93, 94, 122, 119, 110, 113}, {122, 119, 110, 113, 123, 120, 111, 114}, {123, 120, 111, 114, 124, 121, 112, 115}, {124, 121, 112, 115, 82, 85, 84, 81}, {43, 97, 94, 42, 73, 122, 113, 72}, {73, 122, 113, 72, 76, 123, 114, 75}, {76, 123, 114, 75, 79, 124, 115, 78}, {79, 124, 115, 78, 34, 82, 81, 33}, {26, 5, 40, 95, 68, 25, 52, 116}, {68, 25, 52, 116, 65, 24, 49, 117}, {65, 24, 49, 117, 62, 23, 46, 118}, {62, 23, 46, 118, 22, 4, 37, 88}, {27, 26, 95, 96, 69, 68, 116, 119}, {69, 68, 116, 119, 66, 65, 117, 120}, {66, 65, 117, 120, 63, 62, 118, 121}, {63, 62, 118, 121, 21, 22, 88, 85}, {28, 27, 96, 97, 70, 69, 119, 122}, {70, 69, 119, 122, 67, 66, 120, 123}, {67, 66, 120, 123, 64, 63, 121, 124}, {64, 63, 121, 124, 20, 21, 85, 82}, {1, 28, 97, 43, 29, 70, 122, 73}, {29, 70, 122, 73, 30, 67, 123, 76}, {30, 67, 123, 76, 31, 64, 124, 79}, {31, 64, 124, 79, 0, 20, 82, 34}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:quadrangle_4
+   + id             : mesh:connectivities:_quadrangle_4
    + size           : 96
    + nb_component   : 4
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{6, 8, 44, 35}, {35, 44, 45, 36}, {36, 45, 46, 37}, {37, 46, 23, 4}, {8, 9, 47, 44}, {44, 47, 48, 45}, {45, 48, 49, 46}, {46, 49, 24, 23}, {9, 10, 50, 47}, {47, 50, 51, 48}, {48, 51, 52, 49}, {49, 52, 25, 24}, {10, 7, 38, 50}, {50, 38, 39, 51}, {51, 39, 40, 52}, {52, 40, 5, 25}, {3, 14, 53, 13}, {13, 53, 54, 12}, {12, 54, 55, 11}, {11, 55, 10, 7}, {14, 15, 56, 53}, {53, 56, 57, 54}, {54, 57, 58, 55}, {55, 58, 9, 10}, {15, 16, 59, 56}, {56, 59, 60, 57}, {57, 60, 61, 58}, {58, 61, 8, 9}, {16, 2, 17, 59}, {59, 17, 18, 60}, {60, 18, 19, 61}, {61, 19, 6, 8}, {4, 23, 62, 22}, {22, 62, 63, 21}, {21, 63, 64, 20}, {20, 64, 31, 0}, {23, 24, 65, 62}, {62, 65, 66, 63}, {63, 66, 67, 64}, {64, 67, 30, 31}, {24, 25, 68, 65}, {65, 68, 69, 66}, {66, 69, 70, 67}, {67, 70, 29, 30}, {25, 5, 26, 68}, {68, 26, 27, 69}, {69, 27, 28, 70}, {70, 28, 1, 29}, {3, 14, 71, 41}, {41, 71, 72, 42}, {42, 72, 73, 43}, {43, 73, 29, 1}, {14, 15, 74, 71}, {71, 74, 75, 72}, {72, 75, 76, 73}, {73, 76, 30, 29}, {15, 16, 77, 74}, {74, 77, 78, 75}, {75, 78, 79, 76}, {76, 79, 31, 30}, {16, 2, 32, 77}, {77, 32, 33, 78}, {78, 33, 34, 79}, {79, 34, 0, 31}, {2, 17, 80, 32}, {32, 80, 81, 33}, {33, 81, 82, 34}, {34, 82, 20, 0}, {17, 18, 83, 80}, {80, 83, 84, 81}, {81, 84, 85, 82}, {82, 85, 21, 20}, {18, 19, 86, 83}, {83, 86, 87, 84}, {84, 87, 88, 85}, {85, 88, 22, 21}, {19, 6, 35, 86}, {86, 35, 36, 87}, {87, 36, 37, 88}, {88, 37, 4, 22}, {7, 38, 89, 11}, {11, 89, 90, 12}, {12, 90, 91, 13}, {13, 91, 41, 3}, {38, 39, 92, 89}, {89, 92, 93, 90}, {90, 93, 94, 91}, {91, 94, 42, 41}, {39, 40, 95, 92}, {92, 95, 96, 93}, {93, 96, 97, 94}, {94, 97, 43, 42}, {40, 5, 26, 95}, {95, 26, 27, 96}, {96, 27, 28, 97}, {97, 28, 1, 43}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_2
+   + id             : mesh:connectivities:_segment_2
    + size           : 48
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 125
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.25, 0.75, 1}, {0.25, 0.5, 1}, {0.25, 0.25, 1}, {0.5, 0.75, 1}, {0.5, 0.5, 1}, {0.5, 0.25, 1}, {0.75, 0.75, 1}, {0.75, 0.5, 1}, {0.75, 0.25, 1}, {0.75, 1, 0.25}, {0.75, 1, 0.5}, {0.75, 1, 0.75}, {0.5, 1, 0.25}, {0.5, 1, 0.5}, {0.5, 1, 0.75}, {0.25, 1, 0.25}, {0.25, 1, 0.5}, {0.25, 1, 0.75}, {0.25, 0, 0.75}, {0.25, 0, 0.5}, {0.25, 0, 0.25}, {0.5, 0, 0.75}, {0.5, 0, 0.5}, {0.5, 0, 0.25}, {0.75, 0, 0.75}, {0.75, 0, 0.5}, {0.75, 0, 0.25}, {0.75, 0.75, 0}, {0.75, 0.5, 0}, {0.75, 0.25, 0}, {0.5, 0.75, 0}, {0.5, 0.5, 0}, {0.5, 0.25, 0}, {0.25, 0.75, 0}, {0.25, 0.5, 0}, {0.25, 0.25, 0}, {0, 0.75, 0.25}, {0, 0.5, 0.25}, {0, 0.25, 0.25}, {0, 0.75, 0.5}, {0, 0.5, 0.5}, {0, 0.25, 0.5}, {0, 0.75, 0.75}, {0, 0.5, 0.75}, {0, 0.25, 0.75}, {1, 0.75, 0.75}, {1, 0.75, 0.5}, {1, 0.75, 0.25}, {1, 0.5, 0.75}, {1, 0.5, 0.5}, {1, 0.5, 0.25}, {1, 0.25, 0.75}, {1, 0.25, 0.5}, {1, 0.25, 0.25}, {0.75, 0.75, 0.75}, {0.5, 0.75, 0.75}, {0.25, 0.75, 0.75}, {0.75, 0.75, 0.5}, {0.5, 0.75, 0.5}, {0.25, 0.75, 0.5}, {0.75, 0.75, 0.25}, {0.5, 0.75, 0.25}, {0.25, 0.75, 0.25}, {0.75, 0.5, 0.75}, {0.5, 0.5, 0.75}, {0.25, 0.5, 0.75}, {0.75, 0.5, 0.5}, {0.5, 0.5, 0.5}, {0.25, 0.5, 0.5}, {0.75, 0.5, 0.25}, {0.5, 0.5, 0.25}, {0.25, 0.5, 0.25}, {0.75, 0.25, 0.75}, {0.5, 0.25, 0.75}, {0.25, 0.25, 0.75}, {0.75, 0.25, 0.5}, {0.5, 0.25, 0.5}, {0.25, 0.25, 0.5}, {0.75, 0.25, 0.25}, {0.5, 0.25, 0.25}, {0.25, 0.25, 0.25}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:hexahedron_8
+   + id             : my_fem:jacobians:_hexahedron_8
    + size           : 512
    + nb_component   : 1
    + allocated size : 512
    + memory size    : 4kB
    + values         : {{0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:hexahedron_8
+   + id             : my_fem:quadrature_points:_hexahedron_8
    + size           : 8
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{-0.57735, -0.57735, -0.57735}, {0.57735, -0.57735, -0.57735}, {0.57735, 0.57735, -0.57735}, {-0.57735, 0.57735, -0.57735}, {-0.57735, -0.57735, 0.57735}, {0.57735, -0.57735, 0.57735}, {0.57735, 0.57735, 0.57735}, {-0.57735, 0.57735, 0.57735}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:hexahedron_8
+   + id             : my_fem:shapes:_hexahedron_8
    + size           : 512
    + nb_component   : 8
    + allocated size : 512
    + memory size    : 32kB
    + values         : {{0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:hexahedron_8
+   + id             : my_fem:shapes_derivatives:_hexahedron_8
    + size           : 512
    + nb_component   : 24
    + allocated size : 512
    + memory size    : 96kB
    + values         : {{2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}}
   ]
   + total size  : 3.4e+02kB
  ]
  + total size  : 3.4e+02kB
 ]
 
 Vector<double> [
  + id             : grad_on_quad
  + size           : 512
  + nb_component   : 6
  + allocated size : 512
  + memory size    : 24kB
  + values         : {{13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}}
 ]
 
diff --git a/test/test_fem/test_gradient_quadrangle_4.verified b/test/test_fem/test_gradient_quadrangle_4.verified
index cfedb8cda..0d84b0472 100644
--- a/test/test_fem/test_gradient_quadrangle_4.verified
+++ b/test/test_fem/test_gradient_quadrangle_4.verified
@@ -1,155 +1,155 @@
 Epsilon : 1e-12
 FEM [
  + id                : my_fem
  + element dimension : 2
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 9
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 8
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
        ]
-        (not_ghost:quadrangle_4) [
+        (not_ghost:_quadrangle_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_4
+        + id             : mesh:connectivities:_quadrangle_4
         + size           : 4
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{2, 6, 8, 5}, {5, 8, 4, 1}, {6, 3, 7, 8}, {8, 7, 0, 4}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 9
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 8
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
        ]
-        (not_ghost:quadrangle_4) [
+        (not_ghost:_quadrangle_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_4
+        + id             : mesh:connectivities:_quadrangle_4
         + size           : 4
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{2, 6, 8, 5}, {5, 8, 4, 1}, {6, 3, 7, 8}, {8, 7, 0, 4}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 7
   Vector<unsigned int> [
-   + id             : mesh:connectivities:quadrangle_4
+   + id             : mesh:connectivities:_quadrangle_4
    + size           : 4
    + nb_component   : 4
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{2, 6, 8, 5}, {5, 8, 4, 1}, {6, 3, 7, 8}, {8, 7, 0, 4}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_2
+   + id             : mesh:connectivities:_segment_2
    + size           : 8
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 9
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:quadrangle_4
+   + id             : my_fem:jacobians:_quadrangle_4
    + size           : 16
    + nb_component   : 1
    + allocated size : 16
    + memory size    : 0.12kB
    + values         : {{0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:quadrangle_4
+   + id             : my_fem:quadrature_points:_quadrangle_4
    + size           : 4
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{-0.57735, -0.57735}, {0.57735, -0.57735}, {0.57735, 0.57735}, {-0.57735, 0.57735}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:quadrangle_4
+   + id             : my_fem:shapes:_quadrangle_4
    + size           : 16
    + nb_component   : 4
    + allocated size : 16
    + memory size    : 0.5kB
    + values         : {{0.622008, 0.166667, 0.0446582, 0.166667}, {0.166667, 0.622008, 0.166667, 0.0446582}, {0.0446582, 0.166667, 0.622008, 0.166667}, {0.166667, 0.0446582, 0.166667, 0.622008}, {0.622008, 0.166667, 0.0446582, 0.166667}, {0.166667, 0.622008, 0.166667, 0.0446582}, {0.0446582, 0.166667, 0.622008, 0.166667}, {0.166667, 0.0446582, 0.166667, 0.622008}, {0.622008, 0.166667, 0.0446582, 0.166667}, {0.166667, 0.622008, 0.166667, 0.0446582}, {0.0446582, 0.166667, 0.622008, 0.166667}, {0.166667, 0.0446582, 0.166667, 0.622008}, {0.622008, 0.166667, 0.0446582, 0.166667}, {0.166667, 0.622008, 0.166667, 0.0446582}, {0.0446582, 0.166667, 0.622008, 0.166667}, {0.166667, 0.0446582, 0.166667, 0.622008}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:quadrangle_4
+   + id             : my_fem:shapes_derivatives:_quadrangle_4
    + size           : 16
    + nb_component   : 8
    + allocated size : 16
    + memory size    : 1kB
    + values         : {{1.57735, 1.57735, -1.57735, 0.42265, -0.42265, -0.42265, 0.42265, -1.57735}, {1.57735, 0.42265, -1.57735, 1.57735, -0.42265, -1.57735, 0.42265, -0.42265}, {0.42265, 0.42265, -0.42265, 1.57735, -1.57735, -1.57735, 1.57735, -0.42265}, {0.42265, 1.57735, -0.42265, 0.42265, -1.57735, -0.42265, 1.57735, -1.57735}, {1.57735, 1.57735, -1.57735, 0.42265, -0.42265, -0.42265, 0.42265, -1.57735}, {1.57735, 0.42265, -1.57735, 1.57735, -0.42265, -1.57735, 0.42265, -0.42265}, {0.42265, 0.42265, -0.42265, 1.57735, -1.57735, -1.57735, 1.57735, -0.42265}, {0.42265, 1.57735, -0.42265, 0.42265, -1.57735, -0.42265, 1.57735, -1.57735}, {1.57735, 1.57735, -1.57735, 0.42265, -0.42265, -0.42265, 0.42265, -1.57735}, {1.57735, 0.42265, -1.57735, 1.57735, -0.42265, -1.57735, 0.42265, -0.42265}, {0.42265, 0.42265, -0.42265, 1.57735, -1.57735, -1.57735, 1.57735, -0.42265}, {0.42265, 1.57735, -0.42265, 0.42265, -1.57735, -0.42265, 1.57735, -1.57735}, {1.57735, 1.57735, -1.57735, 0.42265, -0.42265, -0.42265, 0.42265, -1.57735}, {1.57735, 0.42265, -1.57735, 1.57735, -0.42265, -1.57735, 0.42265, -0.42265}, {0.42265, 0.42265, -0.42265, 1.57735, -1.57735, -1.57735, 1.57735, -0.42265}, {0.42265, 1.57735, -0.42265, 0.42265, -1.57735, -0.42265, 1.57735, -1.57735}}
   ]
   + total size  : 1.1e+02kB
  ]
  + total size  : 1.1e+02kB
 ]
 
 Vector<double> [
  + id             : grad_on_quad
  + size           : 16
  + nb_component   : 4
  + allocated size : 16
  + memory size    : 0.5kB
  + values         : {{13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}}
 ]
 
diff --git a/test/test_fem/test_gradient_quadrangle_8.verified b/test/test_fem/test_gradient_quadrangle_8.verified
index 0c65168e8..dc6c96dbc 100644
--- a/test/test_fem/test_gradient_quadrangle_8.verified
+++ b/test/test_fem/test_gradient_quadrangle_8.verified
@@ -1,129 +1,129 @@
 Epsilon : 1e-12
 FEM [
  + id                : my_fem
  + element dimension : 2
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 21
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.5, 0.75}, {0.75, 0.5}, {0.5, 0.25}, {0.25, 0.5}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:quadrangle_8) [
+        (not_ghost:_quadrangle_8) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_8
+        + id             : mesh:connectivities:_quadrangle_8
         + size           : 4
         + nb_component   : 8
         + allocated size : 2000
         + memory size    : 62kB
         + values         : {{2, 10, 16, 7, 11, 17, 18, 9}, {7, 16, 4, 1, 18, 19, 6, 8}, {10, 3, 13, 16, 12, 14, 20, 17}, {16, 13, 0, 4, 20, 15, 5, 19}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 21
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.5, 0.75}, {0.75, 0.5}, {0.5, 0.25}, {0.25, 0.5}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:quadrangle_8) [
+        (not_ghost:_quadrangle_8) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_8
+        + id             : mesh:connectivities:_quadrangle_8
         + size           : 4
         + nb_component   : 8
         + allocated size : 2000
         + memory size    : 62kB
         + values         : {{2, 10, 16, 7, 11, 17, 18, 9}, {7, 16, 4, 1, 18, 19, 6, 8}, {10, 3, 13, 16, 12, 14, 20, 17}, {16, 13, 0, 4, 20, 15, 5, 19}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 6
   Vector<unsigned int> [
-   + id             : mesh:connectivities:quadrangle_8
+   + id             : mesh:connectivities:_quadrangle_8
    + size           : 4
    + nb_component   : 8
    + allocated size : 2000
    + memory size    : 62kB
    + values         : {{2, 10, 16, 7, 11, 17, 18, 9}, {7, 16, 4, 1, 18, 19, 6, 8}, {10, 3, 13, 16, 12, 14, 20, 17}, {16, 13, 0, 4, 20, 15, 5, 19}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 21
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.5, 0.75}, {0.75, 0.5}, {0.5, 0.25}, {0.25, 0.5}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:quadrangle_8
+   + id             : my_fem:jacobians:_quadrangle_8
    + size           : 36
    + nb_component   : 1
    + allocated size : 36
    + memory size    : 0.28kB
    + values         : {{0.0493827}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0493827}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0493827}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0493827}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0308642}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:quadrangle_8
+   + id             : my_fem:quadrature_points:_quadrangle_8
    + size           : 9
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0, 0}, {0.774597, 0.774597}, {-0.774597, 0.774597}, {-0.774597, -0.774597}, {0.774597, -0.774597}, {0, 0.774597}, {-0.774597, 0}, {0, -0.774597}, {0.774597, 0}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:quadrangle_8
+   + id             : my_fem:shapes:_quadrangle_8
    + size           : 36
    + nb_component   : 8
    + allocated size : 36
    + memory size    : 2.2kB
    + values         : {{-0.25, -0.25, -0.25, -0.25, 0.5, 0.5, 0.5, 0.5}, {-0.032379, -0.1, 0.432379, -0.1, 0.0450807, 0.354919, 0.354919, 0.0450807}, {-0.1, -0.032379, -0.1, 0.432379, 0.0450807, 0.0450807, 0.354919, 0.354919}, {0.432379, -0.1, -0.032379, -0.1, 0.354919, 0.0450807, 0.0450807, 0.354919}, {-0.1, 0.432379, -0.1, -0.032379, 0.354919, 0.354919, 0.0450807, 0.0450807}, {-0.1, -0.1, -0.1, -0.1, 0.112702, 0.2, 0.887298, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.112702, 0.2, 0.887298}, {-0.1, -0.1, -0.1, -0.1, 0.887298, 0.2, 0.112702, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.887298, 0.2, 0.112702}, {-0.25, -0.25, -0.25, -0.25, 0.5, 0.5, 0.5, 0.5}, {-0.032379, -0.1, 0.432379, -0.1, 0.0450807, 0.354919, 0.354919, 0.0450807}, {-0.1, -0.032379, -0.1, 0.432379, 0.0450807, 0.0450807, 0.354919, 0.354919}, {0.432379, -0.1, -0.032379, -0.1, 0.354919, 0.0450807, 0.0450807, 0.354919}, {-0.1, 0.432379, -0.1, -0.032379, 0.354919, 0.354919, 0.0450807, 0.0450807}, {-0.1, -0.1, -0.1, -0.1, 0.112702, 0.2, 0.887298, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.112702, 0.2, 0.887298}, {-0.1, -0.1, -0.1, -0.1, 0.887298, 0.2, 0.112702, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.887298, 0.2, 0.112702}, {-0.25, -0.25, -0.25, -0.25, 0.5, 0.5, 0.5, 0.5}, {-0.032379, -0.1, 0.432379, -0.1, 0.0450807, 0.354919, 0.354919, 0.0450807}, {-0.1, -0.032379, -0.1, 0.432379, 0.0450807, 0.0450807, 0.354919, 0.354919}, {0.432379, -0.1, -0.032379, -0.1, 0.354919, 0.0450807, 0.0450807, 0.354919}, {-0.1, 0.432379, -0.1, -0.032379, 0.354919, 0.354919, 0.0450807, 0.0450807}, {-0.1, -0.1, -0.1, -0.1, 0.112702, 0.2, 0.887298, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.112702, 0.2, 0.887298}, {-0.1, -0.1, -0.1, -0.1, 0.887298, 0.2, 0.112702, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.887298, 0.2, 0.112702}, {-0.25, -0.25, -0.25, -0.25, 0.5, 0.5, 0.5, 0.5}, {-0.032379, -0.1, 0.432379, -0.1, 0.0450807, 0.354919, 0.354919, 0.0450807}, {-0.1, -0.032379, -0.1, 0.432379, 0.0450807, 0.0450807, 0.354919, 0.354919}, {0.432379, -0.1, -0.032379, -0.1, 0.354919, 0.0450807, 0.0450807, 0.354919}, {-0.1, 0.432379, -0.1, -0.032379, 0.354919, 0.354919, 0.0450807, 0.0450807}, {-0.1, -0.1, -0.1, -0.1, 0.112702, 0.2, 0.887298, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.112702, 0.2, 0.887298}, {-0.1, -0.1, -0.1, -0.1, 0.887298, 0.2, 0.112702, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.887298, 0.2, 0.112702}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:quadrangle_8
+   + id             : my_fem:shapes_derivatives:_quadrangle_8
    + size           : 36
    + nb_component   : 16
    + allocated size : 36
    + memory size    : 4.5kB
    + values         : {{0, 0, 0, 0, 0, 0, 0, 0, 2.36611e-12, 2, -2, 1.88161e-12, -2.36611e-12, -2, 2, -1.88161e-12}, {-0.52379, -0.52379, -0.174597, -1.3746, -4.12379, -4.12379, -1.3746, -0.174597, 0.698387, 0.8, -0.8, 5.49839, 5.49839, -0.8, 0.8, 0.698387}, {0.174597, -1.3746, 0.52379, -0.52379, 1.3746, -0.174597, 4.12379, -4.12379, -0.698387, 0.8, -0.8, 0.698387, -5.49839, -0.8, 0.8, 5.49839}, {4.12379, 4.12379, 1.3746, 0.174597, 0.52379, 0.52379, 0.174597, 1.3746, -5.49839, 0.8, -0.8, -0.698387, -0.698387, -0.8, 0.8, -5.49839}, {-1.3746, 0.174597, -4.12379, 4.12379, -0.174597, 1.3746, -0.52379, 0.52379, 5.49839, 0.8, -0.8, -5.49839, 0.698387, -0.8, 0.8, -0.698387}, {-0.174597, -1.54919, 0.174597, -1.54919, -1.3746, -1.54919, 1.3746, -1.54919, 4.19886e-12, 2, -0.8, 3.09839, -4.19886e-12, -2, 0.8, 3.09839}, {1.54919, 1.3746, 1.54919, -0.174597, 1.54919, 0.174597, 1.54919, -1.3746, -3.09839, 0.8, -2, 3.39506e-13, -3.09839, -0.8, 2, -3.39506e-13}, {1.3746, 1.54919, -1.3746, 1.54919, 0.174597, 1.54919, -0.174597, 1.54919, 5.33573e-13, 2, -0.8, -3.09839, -5.33573e-13, -2, 0.8, -3.09839}, {-1.54919, -0.174597, -1.54919, 1.3746, -1.54919, -1.3746, -1.54919, 0.174597, 3.09839, 0.8, -2, 4.0048e-12, 3.09839, -0.8, 2, -4.0048e-12}, {0, 0, 0, 0, 0, 0, 0, 0, 2.07689e-12, 2, -2, 2.36611e-12, -2.07689e-12, -2, 2, -2.36611e-12}, {-0.52379, -0.52379, -0.174597, -1.3746, -4.12379, -4.12379, -1.3746, -0.174597, 0.698387, 0.8, -0.8, 5.49839, 5.49839, -0.8, 0.8, 0.698387}, {0.174597, -1.3746, 0.52379, -0.52379, 1.3746, -0.174597, 4.12379, -4.12379, -0.698387, 0.8, -0.8, 0.698387, -5.49839, -0.8, 0.8, 5.49839}, {4.12379, 4.12379, 1.3746, 0.174597, 0.52379, 0.52379, 0.174597, 1.3746, -5.49839, 0.8, -0.8, -0.698387, -0.698387, -0.8, 0.8, -5.49839}, {-1.3746, 0.174597, -4.12379, 4.12379, -0.174597, 1.3746, -0.52379, 0.52379, 5.49839, 0.8, -0.8, -5.49839, 0.698387, -0.8, 0.8, -0.698387}, {-0.174597, -1.54919, 0.174597, -1.54919, -1.3746, -1.54919, 1.3746, -1.54919, 4.17666e-13, 2, -0.8, 3.09839, -4.17666e-13, -2, 0.8, 3.09839}, {1.54919, 1.3746, 1.54919, -0.174597, 1.54919, 0.174597, 1.54919, -1.3746, -3.09839, 0.8, -2, 5.33573e-13, -3.09839, -0.8, 2, -5.33573e-13}, {1.3746, 1.54919, -1.3746, 1.54919, 0.174597, 1.54919, -0.174597, 1.54919, 4.08307e-12, 2, -0.8, -3.09839, -4.08307e-12, -2, 0.8, -3.09839}, {-1.54919, -0.174597, -1.54919, 1.3746, -1.54919, -1.3746, -1.54919, 0.174597, 3.09839, 0.8, -2, 4.19864e-12, 3.09839, -0.8, 2, -4.19864e-12}, {0, 0, 0, 0, 0, 0, 0, 0, 1.88161e-12, 2, -2, 2.36589e-12, -1.88161e-12, -2, 2, -2.36589e-12}, {-0.52379, -0.52379, -0.174597, -1.3746, -4.12379, -4.12379, -1.3746, -0.174597, 0.698387, 0.8, -0.8, 5.49839, 5.49839, -0.8, 0.8, 0.698387}, {0.174597, -1.3746, 0.52379, -0.52379, 1.3746, -0.174597, 4.12379, -4.12379, -0.698387, 0.8, -0.8, 0.698387, -5.49839, -0.8, 0.8, 5.49839}, {4.12379, 4.12379, 1.3746, 0.174597, 0.52379, 0.52379, 0.174597, 1.3746, -5.49839, 0.8, -0.8, -0.698387, -0.698387, -0.8, 0.8, -5.49839}, {-1.3746, 0.174597, -4.12379, 4.12379, -0.174597, 1.3746, -0.52379, 0.52379, 5.49839, 0.8, -0.8, -5.49839, 0.698387, -0.8, 0.8, -0.698387}, {-0.174597, -1.54919, 0.174597, -1.54919, -1.3746, -1.54919, 1.3746, -1.54919, 4.0048e-12, 2, -0.8, 3.09839, -4.0048e-12, -2, 0.8, 3.09839}, {1.54919, 1.3746, 1.54919, -0.174597, 1.54919, 0.174597, 1.54919, -1.3746, -3.09839, 0.8, -2, 4.19864e-12, -3.09839, -0.8, 2, -4.19864e-12}, {1.3746, 1.54919, -1.3746, 1.54919, 0.174597, 1.54919, -0.174597, 1.54919, 3.39284e-13, 2, -0.8, -3.09839, -3.39284e-13, -2, 0.8, -3.09839}, {-1.54919, -0.174597, -1.54919, 1.3746, -1.54919, -1.3746, -1.54919, 0.174597, 3.09839, 0.8, -2, 5.3324e-13, 3.09839, -0.8, 2, -5.3324e-13}, {0, 0, 0, 0, 0, 0, 0, 0, 2.36589e-12, 2, -2, 2.07689e-12, -2.36589e-12, -2, 2, -2.07689e-12}, {-0.52379, -0.52379, -0.174597, -1.3746, -4.12379, -4.12379, -1.3746, -0.174597, 0.698387, 0.8, -0.8, 5.49839, 5.49839, -0.8, 0.8, 0.698387}, {0.174597, -1.3746, 0.52379, -0.52379, 1.3746, -0.174597, 4.12379, -4.12379, -0.698387, 0.8, -0.8, 0.698387, -5.49839, -0.8, 0.8, 5.49839}, {4.12379, 4.12379, 1.3746, 0.174597, 0.52379, 0.52379, 0.174597, 1.3746, -5.49839, 0.8, -0.8, -0.698387, -0.698387, -0.8, 0.8, -5.49839}, {-1.3746, 0.174597, -4.12379, 4.12379, -0.174597, 1.3746, -0.52379, 0.52379, 5.49839, 0.8, -0.8, -5.49839, 0.698387, -0.8, 0.8, -0.698387}, {-0.174597, -1.54919, 0.174597, -1.54919, -1.3746, -1.54919, 1.3746, -1.54919, 5.3324e-13, 2, -0.8, 3.09839, -5.3324e-13, -2, 0.8, 3.09839}, {1.54919, 1.3746, 1.54919, -0.174597, 1.54919, 0.174597, 1.54919, -1.3746, -3.09839, 0.8, -2, 4.08307e-12, -3.09839, -0.8, 2, -4.08307e-12}, {1.3746, 1.54919, -1.3746, 1.54919, 0.174597, 1.54919, -0.174597, 1.54919, 4.19864e-12, 2, -0.8, -3.09839, -4.19864e-12, -2, 0.8, -3.09839}, {-1.54919, -0.174597, -1.54919, 1.3746, -1.54919, -1.3746, -1.54919, 0.174597, 3.09839, 0.8, -2, 4.17666e-13, 3.09839, -0.8, 2, -4.17666e-13}}
   ]
   + total size  : 1.3e+02kB
  ]
  + total size  : 1.3e+02kB
 ]
 
 Vector<double> [
  + id             : grad_on_quad
  + size           : 36
  + nb_component   : 4
  + allocated size : 36
  + memory size    : 1.1kB
  + values         : {{13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}}
 ]
 
diff --git a/test/test_fem/test_gradient_segment_2.verified b/test/test_fem/test_gradient_segment_2.verified
index 2d46153b0..653b719f5 100644
--- a/test/test_fem/test_gradient_segment_2.verified
+++ b/test/test_fem/test_gradient_segment_2.verified
@@ -1,129 +1,129 @@
 Epsilon : 1e-12
 FEM [
  + id                : my_fem
  + element dimension : 1
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 1
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 11
      + nb_component   : 1
      + allocated size : 2000
      + memory size    : 16kB
      + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 10
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 2}, {2, 3}, {3, 4}, {4, 5}, {5, 6}, {6, 7}, {7, 8}, {8, 9}, {9, 10}, {10, 1}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 1
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 11
      + nb_component   : 1
      + allocated size : 2000
      + memory size    : 16kB
      + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 10
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 2}, {2, 3}, {3, 4}, {4, 5}, {5, 6}, {6, 7}, {7, 8}, {8, 9}, {9, 10}, {10, 1}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 6
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_2
+   + id             : mesh:connectivities:_segment_2
    + size           : 10
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0, 2}, {2, 3}, {3, 4}, {4, 5}, {5, 6}, {6, 7}, {7, 8}, {8, 9}, {9, 10}, {10, 1}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 11
    + nb_component   : 1
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:segment_2
+   + id             : my_fem:jacobians:_segment_2
    + size           : 10
    + nb_component   : 1
    + allocated size : 10
    + memory size    : 0.078kB
    + values         : {{0.1}, {0.1}, {0.1}, {0.1}, {0.1}, {0.1}, {0.1}, {0.1}, {0.1}, {0.1}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:segment_2
+   + id             : my_fem:quadrature_points:_segment_2
    + size           : 1
    + nb_component   : 1
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:segment_2
+   + id             : my_fem:shapes:_segment_2
    + size           : 10
    + nb_component   : 2
    + allocated size : 10
    + memory size    : 0.16kB
    + values         : {{0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:segment_2
+   + id             : my_fem:shapes_derivatives:_segment_2
    + size           : 10
    + nb_component   : 2
    + allocated size : 10
    + memory size    : 0.16kB
    + values         : {{-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}}
   ]
   + total size  : 47kB
  ]
  + total size  : 47kB
 ]
 
 Vector<double> [
  + id             : grad_on_quad
  + size           : 10
  + nb_component   : 2
  + allocated size : 10
  + memory size    : 0.16kB
  + values         : {{13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}}
 ]
 
diff --git a/test/test_fem/test_gradient_segment_3.verified b/test/test_fem/test_gradient_segment_3.verified
index 359c2b023..61868b83a 100644
--- a/test/test_fem/test_gradient_segment_3.verified
+++ b/test/test_fem/test_gradient_segment_3.verified
@@ -1,129 +1,129 @@
 Epsilon : 1e-12
 FEM [
  + id                : my_fem
  + element dimension : 1
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 1
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 21
      + nb_component   : 1
      + allocated size : 2000
      + memory size    : 16kB
      + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}, {0.05}, {0.15}, {0.25}, {0.35}, {0.45}, {0.55}, {0.65}, {0.75}, {0.85}, {0.95}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 10
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{0, 2, 11}, {2, 3, 12}, {3, 4, 13}, {4, 5, 14}, {5, 6, 15}, {6, 7, 16}, {7, 8, 17}, {8, 9, 18}, {9, 10, 19}, {10, 1, 20}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 1
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 21
      + nb_component   : 1
      + allocated size : 2000
      + memory size    : 16kB
      + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}, {0.05}, {0.15}, {0.25}, {0.35}, {0.45}, {0.55}, {0.65}, {0.75}, {0.85}, {0.95}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 10
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{0, 2, 11}, {2, 3, 12}, {3, 4, 13}, {4, 5, 14}, {5, 6, 15}, {6, 7, 16}, {7, 8, 17}, {8, 9, 18}, {9, 10, 19}, {10, 1, 20}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 6
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_3
+   + id             : mesh:connectivities:_segment_3
    + size           : 10
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 23kB
    + values         : {{0, 2, 11}, {2, 3, 12}, {3, 4, 13}, {4, 5, 14}, {5, 6, 15}, {6, 7, 16}, {7, 8, 17}, {8, 9, 18}, {9, 10, 19}, {10, 1, 20}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 21
    + nb_component   : 1
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}, {0.05}, {0.15}, {0.25}, {0.35}, {0.45}, {0.55}, {0.65}, {0.75}, {0.85}, {0.95}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:segment_3
+   + id             : my_fem:jacobians:_segment_3
    + size           : 20
    + nb_component   : 1
    + allocated size : 20
    + memory size    : 0.16kB
    + values         : {{0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:segment_3
+   + id             : my_fem:quadrature_points:_segment_3
    + size           : 2
    + nb_component   : 1
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{-0.57735}, {0.57735}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:segment_3
+   + id             : my_fem:shapes:_segment_3
    + size           : 20
    + nb_component   : 3
    + allocated size : 20
    + memory size    : 0.47kB
    + values         : {{0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:segment_3
+   + id             : my_fem:shapes_derivatives:_segment_3
    + size           : 20
    + nb_component   : 3
    + allocated size : 20
    + memory size    : 0.47kB
    + values         : {{-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}}
   ]
   + total size  : 56kB
  ]
  + total size  : 56kB
 ]
 
 Vector<double> [
  + id             : grad_on_quad
  + size           : 20
  + nb_component   : 2
  + allocated size : 20
  + memory size    : 0.31kB
  + values         : {{13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}, {13, 11}}
 ]
 
diff --git a/test/test_fem/test_gradient_tetrahedron_10.verified b/test/test_fem/test_gradient_tetrahedron_10.verified
index 5fe6920d9..0c4b91561 100644
--- a/test/test_fem/test_gradient_tetrahedron_10.verified
+++ b/test/test_fem/test_gradient_tetrahedron_10.verified
@@ -1,181 +1,181 @@
 Epsilon : 1e-12
 FEM [
  + id                : my_fem
  + element dimension : 3
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 722
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {0.125, 1, 1}, {0.375, 1, 1}, {0.625, 1, 1}, {0.875, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {1, 1, 0.875}, {1, 1, 0.625}, {1, 1, 0.375}, {1, 1, 0.125}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0.875, 1, 0}, {0.625, 1, 0}, {0.375, 1, 0}, {0.125, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 1, 0.125}, {0, 1, 0.375}, {0, 1, 0.625}, {0, 1, 0.875}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0, 0, 0.125}, {0, 0, 0.375}, {0, 0, 0.625}, {0, 0, 0.875}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {0.125, 0, 1}, {0.375, 0, 1}, {0.625, 0, 1}, {0.875, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {1, 0, 0.875}, {1, 0, 0.625}, {1, 0, 0.375}, {1, 0, 0.125}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0.875, 0, 0}, {0.625, 0, 0}, {0.375, 0, 0}, {0.125, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.875, 0}, {0, 0.625, 0}, {0, 0.375, 0}, {0, 0.125, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {0, 0.875, 1}, {0, 0.625, 1}, {0, 0.375, 1}, {0, 0.125, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.875, 1}, {1, 0.625, 1}, {1, 0.375, 1}, {1, 0.125, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {1, 0.875, 0}, {1, 0.625, 0}, {1, 0.375, 0}, {1, 0.125, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.234692, 0.610874, 1}, {0.095431, 0.625135, 1}, {0.139261, 0.735739, 1}, {0.264261, 0.860739, 1}, {0.375, 0.904691, 1}, {0.389261, 0.76543, 1}, {0.860739, 0.735739, 1}, {0.904569, 0.625135, 1}, {0.765308, 0.610874, 1}, {0.264261, 0.139383, 1}, {0.389261, 0.234962, 1}, {0.375, 0.0955798, 1}, {0.610739, 0.76543, 1}, {0.625, 0.904691, 1}, {0.735739, 0.860739, 1}, {0.095431, 0.375135, 1}, {0.234692, 0.389518, 1}, {0.139261, 0.264383, 1}, {0.625, 0.0955798, 1}, {0.610739, 0.234962, 1}, {0.735739, 0.139383, 1}, {0.860739, 0.264383, 1}, {0.765308, 0.389518, 1}, {0.904569, 0.375135, 1}, {0.095431, 0.500135, 1}, {0.904569, 0.500135, 1}, {0.5, 0.904691, 1}, {0.5, 0.0955798, 1}, {0.389261, 0.611834, 1}, {0.345431, 0.501231, 1}, {0.5, 0.655786, 1}, {0.610739, 0.611834, 1}, {0.389261, 0.390478, 1}, {0.654569, 0.501231, 1}, {0.5, 0.346675, 1}, {0.610739, 0.390478, 1}, {0.0709532, 0.804047, 1}, {0.210214, 0.789786, 1}, {0.195953, 0.929047, 1}, {0.789786, 0.789786, 1}, {0.929047, 0.804047, 1}, {0.195953, 0.0709735, 1}, {0.210214, 0.210356, 1}, {0.804047, 0.929047, 1}, {0.0709532, 0.195973, 1}, {0.789786, 0.210356, 1}, {0.804047, 0.0709735, 1}, {0.929047, 0.195973, 1}, {0.0709532, 0.0709735, 1}, {0.0709532, 0.929047, 1}, {0.929047, 0.929047, 1}, {0.929047, 0.0709735, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.904569, 1, 0.625}, {0.765308, 1, 0.610739}, {0.860739, 1, 0.735739}, {0.625, 1, 0.095431}, {0.610739, 1, 0.234692}, {0.735739, 1, 0.139261}, {0.375, 1, 0.904569}, {0.389261, 1, 0.765308}, {0.264261, 1, 0.860739}, {0.095431, 1, 0.375}, {0.234692, 1, 0.389261}, {0.139261, 1, 0.264261}, {0.735739, 1, 0.860739}, {0.610739, 1, 0.765308}, {0.625, 1, 0.904569}, {0.139261, 1, 0.735739}, {0.234692, 1, 0.610739}, {0.095431, 1, 0.625}, {0.860739, 1, 0.264261}, {0.765308, 1, 0.389261}, {0.904569, 1, 0.375}, {0.264261, 1, 0.139261}, {0.389261, 1, 0.234692}, {0.375, 1, 0.095431}, {0.5, 1, 0.095431}, {0.904569, 1, 0.5}, {0.095431, 1, 0.5}, {0.5, 1, 0.904569}, {0.654569, 1, 0.5}, {0.610739, 1, 0.610739}, {0.610739, 1, 0.389261}, {0.5, 1, 0.345431}, {0.389261, 1, 0.389261}, {0.5, 1, 0.654569}, {0.389261, 1, 0.610739}, {0.345431, 1, 0.5}, {0.789786, 1, 0.789786}, {0.929047, 1, 0.804047}, {0.789786, 1, 0.210214}, {0.804047, 1, 0.0709532}, {0.210214, 1, 0.789786}, {0.195953, 1, 0.929047}, {0.210214, 1, 0.210214}, {0.0709532, 1, 0.195953}, {0.804047, 1, 0.929047}, {0.0709532, 1, 0.804047}, {0.929047, 1, 0.195953}, {0.195953, 1, 0.0709532}, {0.0709532, 1, 0.0709532}, {0.929047, 1, 0.0709532}, {0.0709532, 1, 0.929047}, {0.929047, 1, 0.929047}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.904691, 0, 0.625}, {0.76543, 0, 0.610739}, {0.860739, 0, 0.735739}, {0.625135, 0, 0.095431}, {0.610874, 0, 0.234692}, {0.735739, 0, 0.139261}, {0.375135, 0, 0.904569}, {0.389518, 0, 0.765308}, {0.264383, 0, 0.860739}, {0.0955798, 0, 0.375}, {0.234962, 0, 0.389261}, {0.139383, 0, 0.264261}, {0.735739, 0, 0.860739}, {0.610874, 0, 0.765308}, {0.625135, 0, 0.904569}, {0.139383, 0, 0.735739}, {0.234962, 0, 0.610739}, {0.0955798, 0, 0.625}, {0.860739, 0, 0.264261}, {0.76543, 0, 0.389261}, {0.904691, 0, 0.375}, {0.264383, 0, 0.139261}, {0.389518, 0, 0.234692}, {0.375135, 0, 0.095431}, {0.500135, 0, 0.095431}, {0.904691, 0, 0.5}, {0.0955798, 0, 0.5}, {0.500135, 0, 0.904569}, {0.655786, 0, 0.5}, {0.611834, 0, 0.610739}, {0.611834, 0, 0.389261}, {0.501231, 0, 0.345431}, {0.390478, 0, 0.389261}, {0.501231, 0, 0.654569}, {0.390478, 0, 0.610739}, {0.346675, 0, 0.5}, {0.789786, 0, 0.789786}, {0.929047, 0, 0.804047}, {0.789786, 0, 0.210214}, {0.804047, 0, 0.0709532}, {0.210356, 0, 0.789786}, {0.195973, 0, 0.929047}, {0.210356, 0, 0.210214}, {0.0709735, 0, 0.195953}, {0.804047, 0, 0.929047}, {0.0709735, 0, 0.804047}, {0.929047, 0, 0.195953}, {0.195973, 0, 0.0709532}, {0.0709735, 0, 0.0709532}, {0.929047, 0, 0.0709532}, {0.0709735, 0, 0.929047}, {0.929047, 0, 0.929047}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0.860739, 0.735739, 0}, {0.765308, 0.610739, 0}, {0.904569, 0.625, 0}, {0.625, 0.904569, 0}, {0.610739, 0.765308, 0}, {0.735739, 0.860739, 0}, {0.735739, 0.139261, 0}, {0.610739, 0.234692, 0}, {0.625, 0.095431, 0}, {0.095431, 0.625, 0}, {0.234692, 0.610739, 0}, {0.139261, 0.735739, 0}, {0.264261, 0.860739, 0}, {0.389261, 0.765308, 0}, {0.375, 0.904569, 0}, {0.904569, 0.375, 0}, {0.765308, 0.389261, 0}, {0.860739, 0.264261, 0}, {0.139261, 0.264261, 0}, {0.234692, 0.389261, 0}, {0.095431, 0.375, 0}, {0.375, 0.095431, 0}, {0.389261, 0.234692, 0}, {0.264261, 0.139261, 0}, {0.904569, 0.5, 0}, {0.5, 0.904569, 0}, {0.5, 0.095431, 0}, {0.095431, 0.5, 0}, {0.5, 0.654569, 0}, {0.610739, 0.610739, 0}, {0.654569, 0.5, 0}, {0.389261, 0.610739, 0}, {0.610739, 0.389261, 0}, {0.345431, 0.5, 0}, {0.5, 0.345431, 0}, {0.389261, 0.389261, 0}, {0.789786, 0.789786, 0}, {0.804047, 0.929047, 0}, {0.929047, 0.804047, 0}, {0.804047, 0.0709532, 0}, {0.789786, 0.210214, 0}, {0.210214, 0.789786, 0}, {0.0709532, 0.804047, 0}, {0.929047, 0.195953, 0}, {0.195953, 0.929047, 0}, {0.210214, 0.210214, 0}, {0.195953, 0.0709532, 0}, {0.0709532, 0.195953, 0}, {0.929047, 0.0709532, 0}, {0.0709532, 0.929047, 0}, {0.929047, 0.929047, 0}, {0.0709532, 0.0709532, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {0, 0.735739, 0.139261}, {0, 0.610739, 0.234692}, {0, 0.625, 0.095431}, {0, 0.904569, 0.375}, {0, 0.765308, 0.389261}, {0, 0.860739, 0.264261}, {0, 0.625, 0.904569}, {0, 0.610739, 0.765308}, {0, 0.735739, 0.860739}, {0, 0.139261, 0.264261}, {0, 0.234692, 0.389261}, {0, 0.095431, 0.375}, {0, 0.860739, 0.735739}, {0, 0.765308, 0.610739}, {0, 0.904569, 0.625}, {0, 0.375, 0.095431}, {0, 0.389261, 0.234692}, {0, 0.264261, 0.139261}, {0, 0.095431, 0.625}, {0, 0.234692, 0.610739}, {0, 0.139261, 0.735739}, {0, 0.264261, 0.860739}, {0, 0.389261, 0.765308}, {0, 0.375, 0.904569}, {0, 0.5, 0.095431}, {0, 0.5, 0.904569}, {0, 0.904569, 0.5}, {0, 0.095431, 0.5}, {0, 0.610739, 0.389261}, {0, 0.5, 0.345431}, {0, 0.654569, 0.5}, {0, 0.610739, 0.610739}, {0, 0.389261, 0.389261}, {0, 0.5, 0.654569}, {0, 0.345431, 0.5}, {0, 0.389261, 0.610739}, {0, 0.804047, 0.0709532}, {0, 0.789786, 0.210214}, {0, 0.929047, 0.195953}, {0, 0.789786, 0.789786}, {0, 0.804047, 0.929047}, {0, 0.0709532, 0.195953}, {0, 0.210214, 0.210214}, {0, 0.929047, 0.804047}, {0, 0.195953, 0.0709532}, {0, 0.210214, 0.789786}, {0, 0.0709532, 0.804047}, {0, 0.195953, 0.929047}, {0, 0.0709532, 0.0709532}, {0, 0.929047, 0.0709532}, {0, 0.929047, 0.929047}, {0, 0.0709532, 0.929047}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {1, 0.860678, 0.735678}, {1, 0.76518, 0.610611}, {1, 0.904501, 0.624932}, {1, 0.624932, 0.904501}, {1, 0.610611, 0.76518}, {1, 0.735678, 0.860678}, {1, 0.0953701, 0.624939}, {1, 0.234631, 0.610678}, {1, 0.139261, 0.735739}, {1, 0.735739, 0.139261}, {1, 0.610678, 0.234631}, {1, 0.624939, 0.0953701}, {1, 0.904501, 0.374932}, {1, 0.76524, 0.389193}, {1, 0.860739, 0.264261}, {1, 0.264261, 0.860739}, {1, 0.389193, 0.76524}, {1, 0.374932, 0.904501}, {1, 0.374939, 0.0953701}, {1, 0.3892, 0.234631}, {1, 0.264261, 0.139261}, {1, 0.139261, 0.264261}, {1, 0.234631, 0.3892}, {1, 0.0953701, 0.374939}, {1, 0.904501, 0.499932}, {1, 0.499932, 0.904501}, {1, 0.0953701, 0.499939}, {1, 0.499939, 0.0953701}, {1, 0.610131, 0.610131}, {1, 0.499385, 0.653954}, {1, 0.653954, 0.499385}, {1, 0.610191, 0.388713}, {1, 0.388713, 0.610191}, {1, 0.499391, 0.344822}, {1, 0.344822, 0.499391}, {1, 0.388713, 0.388713}, {1, 0.929037, 0.804037}, {1, 0.789715, 0.789715}, {1, 0.804037, 0.929037}, {1, 0.210214, 0.789786}, {1, 0.0709532, 0.804047}, {1, 0.804047, 0.0709532}, {1, 0.789786, 0.210214}, {1, 0.195953, 0.929047}, {1, 0.929047, 0.195953}, {1, 0.0709532, 0.195953}, {1, 0.210214, 0.210214}, {1, 0.195953, 0.0709532}, {1, 0.0709532, 0.929047}, {1, 0.929047, 0.0709532}, {1, 0.929037, 0.929037}, {1, 0.0709532, 0.0709532}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}, {0.403787, 0.502163, 0.604301}, {0.59395, 0.335588, 0.588613}, {0.57425, 0.502163, 0.604301}, {0.533055, 0.519268, 0.479373}, {0.723218, 0.352693, 0.463685}, {0.552756, 0.352693, 0.463685}, {0.907719, 0.227933, 0.0932632}, {0.768458, 0.242194, 0.0932632}, {0.812288, 0.352933, 0.0932632}, {0.462839, 0.167794, 0.544306}, {0.592107, 0.184899, 0.419378}, {0.423487, 0.335588, 0.41815}, {0.552756, 0.352693, 0.293222}, {0.462839, 0.167794, 0.373844}, {0.610874, 0.139383, 0.904569}, {0.500135, 0.0955798, 0.904569}, {0.141927, 0.0709532, 0.0709532}, {0.0709735, 0.0709532, 0.141906}, {0.0709532, 0.141906, 0.0709532}, {0.307175, 0.417794, 0.123844}, {0.351005, 0.307055, 0.123844}, {0.095431, 0.5, 0.095431}, {0.139261, 0.389261, 0.095431}, {0.211744, 0.417794, 0.219275}, {0.633302, 0.167794, 0.544306}, {0.907719, 0.173886, 0.164216}, {0.907719, 0.242194, 0.232524}, {0.0709532, 0.210234, 0.860739}, {0.141927, 0.0709735, 0.929047}, {0.0709735, 0.139261, 0.789786}, {0.0709735, 0.0709532, 0.858094}, {0.0709532, 0.141927, 0.929047}, {0.210336, 0.0709735, 0.860739}, {0.139383, 0.139261, 0.721478}, {0.742945, 0.167794, 0.655045}, {0.786897, 0.167794, 0.544306}, {0.904691, 0.139261, 0.610739}, {0.882206, 0.307055, 0.655045}, {0.860739, 0.139261, 0.721478}, {0.442043, 0.585464, 0.809994}, {0.461744, 0.418889, 0.794306}, {0.632206, 0.418889, 0.794306}, {0.907719, 0.352872, 0.188633}, {0.836765, 0.173886, 0.0932632}, {0.549357, 0.674254, 0.636624}, {0.73952, 0.678141, 0.450474}, {0.57425, 0.672625, 0.433838}, {0.723218, 0.523156, 0.293222}, {0.698326, 0.524784, 0.496008}, {0.721478, 0.860739, 0.860739}, {0.610739, 0.904691, 0.860739}, {0.0709735, 0.139261, 0.210214}, {0.882206, 0.263164, 0.544245}, {0.882206, 0.417246, 0.543759}, {0.768458, 0.102933, 0.232524}, {0.907719, 0.102933, 0.218263}, {0.836765, 0.102933, 0.164216}, {0.73952, 0.507679, 0.620936}, {0.929047, 0.929037, 0.858083}, {0.403787, 0.672625, 0.433838}, {0.59395, 0.676512, 0.247688}, {0.552756, 0.523156, 0.293222}, {0.307175, 0.417929, 0.794306}, {0.351005, 0.307176, 0.794306}, {0.095431, 0.904569, 0.5}, {0.500135, 0.095431, 0.095431}, {0.858094, 0.929047, 0.929047}, {0.5, 0.904691, 0.904569}, {0.929047, 0.858083, 0.929037}, {0.423487, 0.50605, 0.41815}, {0.904569, 0.904501, 0.499932}, {0.139261, 0.860739, 0.278522}, {0.139261, 0.904569, 0.389261}, {0.351005, 0.838256, 0.263105}, {0.211744, 0.742825, 0.373844}, {0.211744, 0.698995, 0.263105}, {0.141906, 0.929047, 0.929047}, {0.210214, 0.860739, 0.929047}, {0.904569, 0.500068, 0.904501}, {0.745703, 0.184899, 0.419378}, {0.904691, 0.0953701, 0.499939}, {0.841012, 0.280269, 0.419318}, {0.607314, 0.59098, 0.82663}, {0.461879, 0.167794, 0.698875}, {0.572483, 0.167794, 0.655045}, {0.882206, 0.417726, 0.698808}, {0.0709532, 0.789786, 0.139261}, {0.139261, 0.721478, 0.139261}, {0.882206, 0.588195, 0.219214}, {0.841012, 0.434839, 0.264749}, {0.882206, 0.587709, 0.373296}, {0.841012, 0.434352, 0.418831}, {0.389261, 0.904569, 0.139261}, {0.5, 0.904569, 0.095431}, {0.389383, 0.095431, 0.139261}, {0.278522, 0.860739, 0.139261}, {0.287474, 0.834369, 0.559994}, {0.331304, 0.834369, 0.670734}, {0.192043, 0.695108, 0.670734}, {0.139261, 0.860739, 0.721478}, {0.095431, 0.860739, 0.610739}, {0.139261, 0.278644, 0.860739}, {0.278644, 0.139383, 0.860739}, {0.139261, 0.389383, 0.904569}, {0.192043, 0.584369, 0.559994}, {0.192043, 0.584369, 0.714563}, {0.211744, 0.417794, 0.698875}, {0.211744, 0.417794, 0.544306}, {0.0955798, 0.139261, 0.610739}, {0.351005, 0.698995, 0.123844}, {0.461744, 0.742825, 0.123844}, {0.461744, 0.838256, 0.219275}, {0.929047, 0.141906, 0.0709532}, {0.858094, 0.929047, 0.0709532}, {0.0955798, 0.095431, 0.5}, {0.307323, 0.167794, 0.544306}, {0.211744, 0.263225, 0.544306}, {0.211744, 0.307055, 0.655045}, {0.461744, 0.263225, 0.123844}, {0.351126, 0.167794, 0.263105}, {0.278644, 0.139261, 0.139261}, {0.461879, 0.167794, 0.219275}, {0.929047, 0.929047, 0.141906}, {0.860739, 0.860678, 0.721417}, {0.904569, 0.860678, 0.610678}, {0.442043, 0.834369, 0.559994}, {0.718053, 0.839885, 0.687369}, {0.857314, 0.700563, 0.687308}, {0.761883, 0.839885, 0.57663}, {0.857314, 0.744386, 0.576562}, {0.904569, 0.499939, 0.0953701}, {0.786775, 0.588256, 0.123844}, {0.745581, 0.434899, 0.169378}, {0.701751, 0.32416, 0.169378}, {0.748731, 0.287832, 0.262642}, {0.857314, 0.589817, 0.731131}, {0.857314, 0.589337, 0.576082}, {0.572483, 0.307055, 0.123844}, {0.461744, 0.417794, 0.123844}, {0.591012, 0.434899, 0.169378}, {0.929047, 0.858094, 0.0709532}, {0.882206, 0.713256, 0.123844}, {0.882206, 0.767303, 0.194797}, {0.882206, 0.698995, 0.263105}, {0.351126, 0.167794, 0.433567}, {0.351126, 0.167794, 0.655045}, {0.211744, 0.417794, 0.373844}, {0.423487, 0.50605, 0.247688}, {0.211744, 0.588256, 0.373844}, {0.929047, 0.0709532, 0.141906}, {0.287474, 0.584504, 0.809994}, {0.929047, 0.0709532, 0.858094}, {0.192043, 0.738938, 0.559994}, {0.461744, 0.838256, 0.373844}, {0.632206, 0.838256, 0.373844}, {0.139261, 0.210214, 0.0709532}, {0.210234, 0.139261, 0.0709532}, {0.789786, 0.0709735, 0.860739}, {0.721478, 0.139383, 0.860739}, {0.610739, 0.904569, 0.139261}, {0.721478, 0.860739, 0.139261}, {0.0709532, 0.929047, 0.141906}, {0.095431, 0.500135, 0.904569}, {0.442043, 0.834369, 0.714563}, {0.461744, 0.263374, 0.794306}, {0.860739, 0.278644, 0.860739}, {0.929047, 0.210234, 0.860739}, {0.211744, 0.307055, 0.263105}, {0.139261, 0.610739, 0.095431}, {0.211744, 0.588256, 0.219275}, {0.632206, 0.588256, 0.123844}, {0.461744, 0.588256, 0.123844}, {0.139383, 0.139261, 0.278522}, {0.139261, 0.278522, 0.139261}, {0.607314, 0.839885, 0.57663}, {0.904569, 0.610813, 0.860678}, {0.0709532, 0.858094, 0.929047}, {0.331304, 0.695108, 0.809994}, {0.139261, 0.721478, 0.860739}, {0.278522, 0.860739, 0.860739}, {0.0709532, 0.929047, 0.858094}, {0.718053, 0.700624, 0.82663}, {0.860739, 0.721417, 0.860678}, {0.761883, 0.59002, 0.82663}, {0.742945, 0.307176, 0.794306}, {0.786775, 0.417929, 0.794306}, {0.860739, 0.929037, 0.789776}, {0.389261, 0.904691, 0.860739}, {0.307175, 0.588256, 0.123844}, {0.789786, 0.860739, 0.0709532}, {0.0709532, 0.858094, 0.0709532}, {0.742945, 0.838256, 0.263105}, {0.632206, 0.742825, 0.123844}, {0.742945, 0.698995, 0.123844}, {0.841012, 0.32416, 0.308639}, {0.610874, 0.139261, 0.095431}, {0.782719, 0.102933, 0.0932632}, {0.860739, 0.789776, 0.929037}, {0.929047, 0.141927, 0.929047}, {0.811253, 0.838256, 0.194797}, {0.858094, 0.0709735, 0.929047}, {0.607314, 0.839885, 0.731199}, {0.607314, 0.744576, 0.82663}, {0.442043, 0.73906, 0.809994}, {0.389383, 0.0955798, 0.860739}, {0.141906, 0.929047, 0.0709532}, {0.0709532, 0.860739, 0.210214}, {0.929047, 0.860739, 0.210214}, {0.860739, 0.860739, 0.278522}, {0.139383, 0.095431, 0.389261}, {0.211744, 0.263225, 0.373844}, {0.139261, 0.789786, 0.929047}, {0.789786, 0.929047, 0.860739}, {0.904691, 0.139261, 0.389261}, {0.701751, 0.184899, 0.308639}, {0.929047, 0.139261, 0.789786}, {0.786775, 0.838256, 0.373844}, {0.875, 0.0709532, 0.0709532}, {0.210214, 0.929047, 0.139261}, {0.572483, 0.838256, 0.263105}, {0.591147, 0.184899, 0.264809}, {0.904569, 0.389396, 0.860739}, {0.572483, 0.307176, 0.794306}, {0.331304, 0.834369, 0.449255}, {0.139261, 0.929047, 0.789786}, {0.860739, 0.789786, 0.0709532}, {0.904569, 0.860739, 0.389261}, {0.139261, 0.610739, 0.904569}, {0.812409, 0.102933, 0.343263}, {0.657854, 0.102933, 0.188694}, {0.857314, 0.700624, 0.465891}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 48
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{6, 8, 11}, {8, 9, 12}, {9, 10, 13}, {10, 7, 14}, {7, 15, 18}, {15, 16, 19}, {16, 17, 20}, {17, 3, 21}, {3, 22, 25}, {22, 23, 26}, {23, 24, 27}, {24, 2, 28}, {2, 29, 32}, {29, 30, 33}, {30, 31, 34}, {31, 6, 35}, {0, 36, 39}, {36, 37, 40}, {37, 38, 41}, {38, 4, 42}, {4, 43, 46}, {43, 44, 47}, {44, 45, 48}, {45, 5, 49}, {5, 50, 53}, {50, 51, 54}, {51, 52, 55}, {52, 1, 56}, {1, 57, 60}, {57, 58, 61}, {58, 59, 62}, {59, 0, 63}, {2, 64, 67}, {64, 65, 68}, {65, 66, 69}, {66, 0, 70}, {6, 71, 74}, {71, 72, 75}, {72, 73, 76}, {73, 4, 77}, {7, 78, 81}, {78, 79, 82}, {79, 80, 83}, {80, 5, 84}, {3, 85, 88}, {85, 86, 89}, {86, 87, 90}, {87, 1, 91}}
        ]
-        (not_ghost:triangle_6) [
+        (not_ghost:_triangle_6) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_6
+        + id             : mesh:connectivities:_triangle_6
         + size           : 240
         + nb_component   : 6
         + allocated size : 2000
         + memory size    : 47kB
         + values         : {{93, 97, 71, 105, 106, 107}, {93, 8, 98, 108, 109, 110}, {94, 78, 99, 111, 112, 113}, {43, 95, 100, 114, 115, 116}, {94, 98, 10, 117, 118, 119}, {73, 97, 95, 120, 121, 122}, {45, 100, 96, 123, 124, 125}, {80, 96, 99, 126, 127, 128}, {71, 97, 72, 106, 129, 75}, {78, 79, 99, 82, 130, 112}, {8, 9, 98, 12, 131, 109}, {43, 100, 44, 116, 132, 47}, {72, 97, 73, 129, 120, 76}, {9, 10, 98, 13, 118, 131}, {79, 80, 99, 83, 128, 130}, {44, 100, 45, 132, 123, 48}, {93, 92, 97, 133, 134, 105}, {93, 98, 92, 110, 135, 133}, {94, 92, 98, 136, 135, 117}, {92, 95, 97, 137, 121, 134}, {94, 99, 92, 113, 138, 136}, {92, 100, 95, 139, 115, 137}, {92, 99, 96, 138, 127, 140}, {92, 96, 100, 140, 124, 139}, {93, 71, 101, 107, 141, 142}, {93, 101, 8, 142, 143, 108}, {94, 102, 78, 144, 145, 111}, {43, 103, 95, 146, 147, 114}, {94, 10, 102, 119, 148, 144}, {73, 95, 103, 122, 147, 149}, {45, 96, 104, 125, 150, 151}, {80, 104, 96, 152, 150, 126}, {4, 73, 103, 77, 149, 153}, {6, 101, 71, 154, 141, 74}, {7, 102, 10, 155, 148, 14}, {7, 78, 102, 81, 145, 155}, {6, 8, 101, 11, 143, 154}, {5, 104, 80, 156, 152, 84}, {4, 103, 43, 153, 146, 46}, {5, 45, 104, 49, 151, 156}, {15, 162, 158, 170, 171, 172}, {22, 163, 159, 173, 174, 175}, {8, 164, 160, 176, 177, 178}, {29, 165, 161, 179, 180, 181}, {10, 158, 164, 182, 183, 184}, {31, 160, 165, 185, 186, 187}, {17, 159, 162, 188, 189, 190}, {24, 161, 163, 191, 192, 193}, {22, 23, 163, 26, 194, 173}, {15, 16, 162, 19, 195, 170}, {29, 30, 165, 33, 196, 179}, {8, 9, 164, 12, 197, 176}, {16, 17, 162, 20, 190, 195}, {23, 24, 163, 27, 193, 194}, {9, 10, 164, 13, 184, 197}, {30, 31, 165, 34, 187, 196}, {158, 162, 157, 171, 198, 199}, {159, 157, 162, 200, 198, 189}, {159, 163, 157, 174, 201, 200}, {161, 157, 163, 202, 201, 192}, {158, 157, 164, 199, 203, 183}, {160, 164, 157, 177, 203, 204}, {160, 157, 165, 204, 205, 186}, {161, 165, 157, 180, 205, 202}, {15, 158, 167, 172, 206, 207}, {22, 159, 166, 175, 208, 209}, {8, 160, 169, 178, 210, 211}, {29, 161, 168, 181, 212, 213}, {10, 167, 158, 214, 206, 182}, {31, 169, 160, 215, 210, 185}, {17, 166, 159, 216, 208, 188}, {24, 168, 161, 217, 212, 191}, {2, 168, 24, 218, 217, 28}, {3, 166, 17, 219, 216, 21}, {6, 169, 31, 220, 215, 35}, {7, 167, 10, 221, 214, 14}, {7, 15, 167, 18, 207, 221}, {3, 22, 166, 25, 209, 219}, {6, 8, 169, 11, 211, 220}, {2, 29, 168, 32, 213, 218}, {50, 227, 223, 235, 236, 237}, {57, 228, 224, 238, 239, 240}, {43, 229, 225, 241, 242, 243}, {36, 230, 226, 244, 245, 246}, {45, 223, 229, 247, 248, 249}, {38, 225, 230, 250, 251, 252}, {52, 224, 227, 253, 254, 255}, {59, 226, 228, 256, 257, 258}, {57, 58, 228, 61, 259, 238}, {50, 51, 227, 54, 260, 235}, {36, 37, 230, 40, 261, 244}, {43, 44, 229, 47, 262, 241}, {51, 52, 227, 55, 255, 260}, {58, 59, 228, 62, 258, 259}, {44, 45, 229, 48, 249, 262}, {37, 38, 230, 41, 252, 261}, {223, 227, 222, 236, 263, 264}, {224, 222, 227, 265, 263, 254}, {224, 228, 222, 239, 266, 265}, {222, 228, 226, 266, 257, 267}, {223, 222, 229, 264, 268, 248}, {222, 225, 229, 269, 242, 268}, {222, 230, 225, 270, 251, 269}, {222, 226, 230, 267, 245, 270}, {50, 223, 232, 237, 271, 272}, {57, 224, 231, 240, 273, 274}, {43, 225, 234, 243, 275, 276}, {36, 226, 233, 246, 277, 278}, {45, 232, 223, 279, 271, 247}, {38, 234, 225, 280, 275, 250}, {52, 231, 224, 281, 273, 253}, {59, 233, 226, 282, 277, 256}, {0, 233, 59, 283, 282, 63}, {1, 231, 52, 284, 281, 56}, {4, 234, 38, 285, 280, 42}, {5, 232, 45, 286, 279, 49}, {5, 50, 232, 53, 272, 286}, {1, 57, 231, 60, 274, 284}, {4, 43, 234, 46, 276, 285}, {0, 36, 233, 39, 278, 283}, {85, 288, 292, 300, 301, 302}, {22, 293, 288, 303, 304, 305}, {57, 290, 294, 306, 307, 308}, {64, 295, 289, 309, 310, 311}, {24, 289, 293, 312, 313, 314}, {87, 292, 290, 315, 316, 317}, {66, 291, 295, 318, 319, 320}, {59, 294, 291, 321, 322, 323}, {85, 292, 86, 302, 324, 89}, {22, 23, 293, 26, 325, 303}, {57, 294, 58, 308, 326, 61}, {64, 65, 295, 68, 327, 309}, {86, 292, 87, 324, 315, 90}, {23, 24, 293, 27, 314, 325}, {65, 66, 295, 69, 320, 327}, {58, 294, 59, 326, 321, 62}, {288, 293, 287, 304, 328, 329}, {288, 287, 292, 329, 330, 301}, {289, 287, 293, 331, 328, 313}, {290, 292, 287, 316, 330, 332}, {289, 295, 287, 310, 333, 331}, {290, 287, 294, 332, 334, 307}, {291, 294, 287, 322, 334, 335}, {291, 287, 295, 335, 333, 319}, {22, 288, 296, 305, 336, 337}, {85, 296, 288, 338, 336, 300}, {57, 298, 290, 339, 340, 306}, {64, 289, 297, 311, 341, 342}, {87, 290, 298, 317, 340, 343}, {24, 297, 289, 344, 341, 312}, {59, 291, 299, 323, 345, 346}, {66, 299, 291, 347, 345, 318}, {1, 87, 298, 91, 343, 348}, {2, 297, 24, 349, 344, 28}, {3, 296, 85, 350, 338, 88}, {3, 22, 296, 25, 337, 350}, {1, 298, 57, 348, 339, 60}, {2, 64, 297, 67, 342, 349}, {0, 59, 299, 63, 346, 351}, {0, 299, 66, 351, 347, 70}, {64, 353, 357, 365, 366, 367}, {29, 358, 353, 368, 369, 370}, {71, 359, 354, 371, 372, 373}, {36, 355, 360, 374, 375, 376}, {31, 354, 358, 377, 378, 379}, {66, 357, 355, 380, 381, 382}, {38, 360, 356, 383, 384, 385}, {73, 356, 359, 386, 387, 388}, {64, 357, 65, 367, 389, 68}, {71, 72, 359, 75, 390, 371}, {29, 30, 358, 33, 391, 368}, {36, 360, 37, 376, 392, 40}, {65, 357, 66, 389, 380, 69}, {30, 31, 358, 34, 379, 391}, {72, 73, 359, 76, 388, 390}, {37, 360, 38, 392, 383, 41}, {353, 352, 357, 393, 394, 366}, {353, 358, 352, 369, 395, 393}, {354, 352, 358, 396, 395, 378}, {355, 357, 352, 381, 394, 397}, {354, 359, 352, 372, 398, 396}, {355, 352, 360, 397, 399, 375}, {356, 352, 359, 400, 398, 387}, {356, 360, 352, 384, 399, 400}, {64, 361, 353, 401, 402, 365}, {29, 353, 361, 370, 402, 403}, {71, 354, 362, 373, 404, 405}, {36, 363, 355, 406, 407, 374}, {31, 362, 354, 408, 404, 377}, {66, 355, 363, 382, 407, 409}, {38, 356, 364, 385, 410, 411}, {73, 364, 356, 412, 410, 386}, {0, 66, 363, 70, 409, 413}, {2, 361, 64, 414, 401, 67}, {6, 362, 31, 415, 408, 35}, {6, 71, 362, 74, 405, 415}, {2, 29, 361, 32, 403, 414}, {4, 364, 73, 416, 412, 77}, {0, 363, 36, 413, 406, 39}, {4, 38, 364, 42, 411, 416}, {15, 418, 423, 430, 431, 432}, {78, 422, 418, 433, 434, 435}, {50, 424, 420, 436, 437, 438}, {85, 419, 425, 439, 440, 441}, {17, 423, 419, 442, 443, 444}, {80, 420, 422, 445, 446, 447}, {87, 425, 421, 448, 449, 450}, {52, 421, 424, 451, 452, 453}, {15, 423, 16, 432, 454, 19}, {78, 79, 422, 82, 455, 433}, {50, 51, 424, 54, 456, 436}, {85, 425, 86, 441, 457, 89}, {79, 80, 422, 83, 447, 455}, {16, 423, 17, 454, 442, 20}, {86, 425, 87, 457, 448, 90}, {51, 52, 424, 55, 453, 456}, {417, 418, 422, 458, 434, 459}, {417, 423, 418, 460, 431, 458}, {419, 423, 417, 443, 460, 461}, {420, 417, 422, 462, 459, 446}, {419, 417, 425, 461, 463, 440}, {420, 424, 417, 437, 464, 462}, {421, 417, 424, 465, 464, 452}, {421, 425, 417, 449, 463, 465}, {15, 426, 418, 466, 467, 430}, {78, 418, 426, 435, 467, 468}, {50, 420, 428, 438, 469, 470}, {85, 427, 419, 471, 472, 439}, {80, 428, 420, 473, 469, 445}, {17, 419, 427, 444, 472, 474}, {52, 429, 421, 475, 476, 451}, {87, 421, 429, 450, 476, 477}, {5, 428, 80, 478, 473, 84}, {3, 17, 427, 21, 474, 479}, {7, 78, 426, 81, 468, 480}, {7, 426, 15, 480, 466, 18}, {5, 50, 428, 53, 470, 478}, {3, 427, 85, 479, 471, 88}, {1, 429, 52, 481, 475, 56}, {1, 87, 429, 91, 477, 481}}
        ]
-        (not_ghost:tetrahedron_10) [
+        (not_ghost:_tetrahedron_10) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:tetrahedron_10
+        + id             : mesh:connectivities:_tetrahedron_10
         + size           : 341
         + nb_component   : 10
         + allocated size : 2000
         + memory size    : 78kB
         + values         : {{484, 483, 485, 489, 491, 493, 492, 496, 494, 495}, {87, 290, 490, 292, 317, 498, 497, 315, 316, 499}, {222, 484, 489, 486, 500, 496, 501, 504, 502, 503}, {96, 229, 45, 100, 505, 249, 125, 124, 506, 123}, {59, 0, 233, 299, 63, 283, 282, 346, 351, 507}, {0, 363, 233, 299, 413, 508, 283, 351, 509, 507}, {486, 295, 291, 357, 510, 319, 511, 514, 512, 513}, {484, 222, 489, 485, 500, 501, 496, 492, 515, 495}, {87, 429, 421, 490, 477, 476, 450, 497, 516, 517}, {103, 356, 234, 364, 518, 520, 519, 522, 410, 521}, {356, 103, 234, 225, 518, 519, 520, 524, 523, 275}, {43, 103, 225, 234, 146, 523, 243, 276, 519, 275}, {223, 227, 485, 420, 236, 526, 525, 529, 527, 528}, {483, 92, 484, 485, 530, 531, 491, 493, 532, 492}, {87, 421, 425, 490, 450, 449, 448, 497, 517, 533}, {298, 87, 290, 490, 343, 317, 340, 534, 497, 498}, {482, 483, 488, 489, 535, 537, 536, 539, 494, 538}, {94, 10, 158, 98, 119, 182, 540, 117, 118, 541}, {355, 363, 233, 36, 407, 508, 542, 374, 406, 278}, {485, 420, 424, 417, 528, 437, 543, 544, 462, 464}, {231, 224, 52, 490, 273, 253, 281, 547, 545, 546}, {483, 482, 485, 489, 535, 548, 493, 494, 539, 495}, {167, 15, 7, 426, 207, 18, 221, 549, 466, 480}, {483, 487, 488, 489, 550, 551, 537, 494, 552, 538}, {484, 92, 97, 95, 531, 134, 553, 554, 137, 121}, {29, 165, 30, 358, 179, 196, 33, 368, 555, 391}, {228, 294, 58, 59, 556, 326, 259, 258, 321, 62}, {102, 10, 7, 167, 148, 14, 155, 557, 214, 221}, {9, 10, 98, 164, 13, 118, 131, 197, 184, 558}, {78, 102, 7, 426, 145, 155, 81, 468, 559, 480}, {483, 484, 487, 489, 491, 560, 550, 494, 496, 552}, {16, 423, 162, 17, 454, 561, 195, 20, 442, 190}, {353, 161, 358, 487, 562, 563, 369, 566, 564, 565}, {93, 101, 8, 169, 142, 143, 108, 568, 567, 211}, {78, 422, 79, 99, 433, 455, 82, 112, 569, 130}, {485, 227, 489, 424, 526, 570, 495, 543, 571, 572}, {482, 92, 483, 485, 573, 530, 535, 548, 532, 493}, {223, 222, 229, 484, 264, 268, 248, 575, 500, 574}, {422, 420, 485, 417, 446, 528, 576, 459, 462, 544}, {64, 297, 353, 289, 342, 577, 365, 311, 341, 578}, {101, 6, 8, 169, 154, 11, 143, 567, 220, 211}, {425, 488, 489, 417, 579, 538, 580, 463, 581, 582}, {163, 161, 24, 293, 192, 191, 193, 584, 583, 314}, {228, 294, 59, 226, 556, 321, 258, 257, 585, 256}, {161, 289, 24, 293, 586, 312, 191, 583, 313, 314}, {165, 483, 160, 354, 587, 588, 186, 591, 589, 590}, {103, 356, 95, 225, 518, 592, 147, 523, 524, 593}, {356, 95, 359, 73, 592, 594, 387, 386, 122, 388}, {352, 483, 359, 484, 595, 596, 398, 598, 491, 597}, {103, 43, 4, 234, 146, 46, 153, 519, 276, 285}, {230, 356, 38, 225, 599, 385, 252, 251, 524, 250}, {161, 289, 293, 487, 586, 313, 583, 564, 600, 601}, {161, 487, 293, 163, 564, 601, 583, 192, 602, 584}, {429, 87, 298, 490, 477, 343, 603, 516, 497, 534}, {364, 38, 234, 4, 411, 280, 521, 416, 42, 285}, {22, 296, 3, 166, 337, 350, 25, 209, 604, 219}, {230, 37, 360, 36, 261, 392, 605, 244, 40, 376}, {356, 230, 360, 484, 599, 605, 384, 608, 606, 607}, {22, 23, 293, 163, 26, 325, 303, 173, 194, 584}, {294, 486, 291, 226, 609, 511, 322, 585, 610, 611}, {294, 228, 486, 226, 556, 612, 609, 585, 257, 610}, {3, 17, 166, 427, 21, 216, 219, 479, 474, 613}, {364, 103, 4, 234, 522, 153, 416, 521, 519, 285}, {158, 15, 418, 162, 172, 430, 614, 171, 170, 615}, {15, 423, 418, 162, 432, 431, 430, 170, 561, 615}, {157, 483, 160, 165, 616, 588, 204, 205, 587, 186}, {482, 158, 418, 162, 617, 614, 618, 619, 171, 615}, {423, 482, 418, 162, 620, 618, 431, 561, 619, 615}, {425, 488, 292, 489, 579, 622, 621, 580, 538, 623}, {290, 489, 490, 292, 624, 625, 498, 316, 623, 499}, {222, 223, 485, 484, 264, 525, 515, 500, 575, 492}, {363, 0, 66, 299, 413, 70, 409, 509, 351, 347}, {482, 422, 485, 417, 626, 576, 548, 627, 459, 544}, {486, 290, 287, 489, 628, 332, 629, 503, 624, 630}, {296, 3, 166, 427, 350, 219, 604, 631, 479, 613}, {489, 290, 287, 292, 624, 332, 630, 623, 316, 330}, {488, 85, 427, 419, 632, 471, 633, 634, 439, 472}, {425, 488, 419, 85, 579, 634, 440, 441, 632, 439}, {15, 16, 423, 162, 19, 454, 432, 170, 195, 561}, {65, 64, 357, 295, 68, 367, 389, 327, 309, 512}, {222, 484, 486, 226, 500, 502, 504, 267, 635, 610}, {356, 484, 95, 225, 608, 554, 592, 524, 636, 593}, {352, 484, 486, 487, 598, 502, 637, 639, 560, 638}, {230, 222, 484, 225, 270, 500, 606, 251, 269, 636}, {294, 228, 58, 57, 556, 259, 326, 308, 238, 61}, {352, 483, 484, 487, 595, 491, 598, 639, 550, 560}, {23, 163, 24, 293, 194, 193, 27, 325, 584, 314}, {429, 231, 1, 52, 640, 284, 481, 475, 281, 56}, {228, 222, 486, 226, 266, 504, 612, 257, 267, 610}, {482, 422, 417, 418, 626, 459, 627, 618, 434, 458}, {489, 425, 490, 292, 580, 533, 625, 623, 621, 499}, {483, 92, 97, 484, 530, 134, 641, 491, 531, 553}, {50, 232, 5, 428, 272, 286, 53, 470, 642, 478}, {483, 165, 358, 354, 587, 555, 643, 589, 591, 378}, {157, 483, 487, 488, 616, 550, 644, 645, 537, 551}, {425, 488, 417, 419, 579, 581, 463, 440, 634, 461}, {222, 230, 484, 226, 270, 606, 500, 267, 245, 635}, {299, 363, 233, 291, 509, 508, 507, 345, 646, 647}, {103, 356, 73, 95, 518, 386, 149, 147, 592, 122}, {229, 44, 45, 100, 262, 48, 249, 506, 132, 123}, {356, 230, 38, 360, 599, 252, 385, 384, 605, 383}, {104, 223, 45, 96, 648, 247, 151, 150, 649, 125}, {22, 159, 293, 288, 175, 650, 303, 305, 651, 304}, {352, 356, 360, 484, 400, 384, 399, 598, 608, 607}, {2, 361, 168, 29, 414, 652, 218, 32, 403, 213}, {484, 483, 359, 97, 491, 596, 597, 553, 641, 653}, {483, 157, 160, 164, 616, 204, 588, 654, 203, 177}, {92, 484, 100, 95, 531, 655, 139, 137, 554, 115}, {223, 420, 96, 104, 529, 656, 649, 648, 657, 150}, {85, 425, 292, 86, 441, 621, 302, 89, 457, 324}, {355, 352, 486, 357, 397, 637, 658, 381, 394, 514}, {353, 289, 487, 357, 578, 600, 566, 366, 659, 660}, {66, 295, 357, 291, 320, 512, 380, 318, 319, 513}, {488, 487, 287, 489, 551, 662, 661, 538, 552, 630}, {486, 294, 287, 290, 609, 334, 629, 628, 307, 332}, {227, 223, 485, 222, 236, 525, 526, 263, 264, 515}, {355, 486, 226, 291, 658, 610, 663, 664, 511, 611}, {43, 103, 95, 225, 146, 147, 114, 243, 523, 593}, {356, 230, 484, 225, 599, 606, 608, 524, 251, 636}, {64, 295, 289, 357, 309, 310, 311, 367, 512, 659}, {157, 482, 162, 158, 665, 619, 198, 199, 617, 171}, {223, 229, 45, 96, 248, 249, 247, 649, 505, 125}, {222, 229, 484, 225, 268, 574, 500, 269, 242, 636}, {422, 78, 418, 99, 433, 435, 434, 569, 112, 666}, {422, 80, 79, 99, 447, 83, 455, 569, 128, 130}, {159, 22, 293, 163, 175, 303, 650, 174, 173, 584}, {101, 362, 71, 6, 667, 405, 141, 154, 415, 74}, {93, 483, 354, 160, 668, 589, 669, 670, 588, 590}, {355, 486, 291, 357, 658, 511, 664, 381, 514, 513}, {362, 101, 169, 6, 667, 567, 671, 415, 154, 220}, {94, 482, 418, 99, 672, 618, 673, 113, 674, 666}, {488, 482, 489, 417, 536, 539, 538, 581, 627, 582}, {484, 356, 95, 359, 608, 592, 554, 597, 387, 594}, {363, 355, 233, 291, 407, 542, 508, 646, 664, 647}, {485, 92, 96, 99, 532, 140, 675, 676, 138, 127}, {78, 94, 418, 99, 111, 673, 435, 112, 113, 666}, {92, 483, 97, 93, 530, 641, 134, 133, 668, 105}, {484, 95, 97, 359, 554, 121, 553, 597, 594, 653}, {72, 71, 97, 359, 75, 106, 129, 390, 371, 653}, {94, 482, 99, 92, 672, 674, 113, 136, 573, 138}, {102, 167, 7, 426, 557, 221, 155, 559, 549, 480}, {10, 164, 158, 98, 184, 183, 182, 118, 558, 541}, {482, 422, 99, 485, 626, 569, 674, 548, 576, 676}, {15, 158, 426, 167, 172, 677, 466, 207, 206, 549}, {92, 482, 99, 485, 573, 674, 138, 532, 548, 676}, {158, 15, 426, 418, 172, 466, 677, 614, 430, 467}, {38, 356, 234, 225, 385, 520, 280, 250, 524, 275}, {94, 482, 158, 418, 672, 617, 540, 673, 618, 614}, {364, 356, 234, 38, 410, 520, 521, 411, 385, 280}, {93, 160, 8, 98, 670, 178, 108, 110, 678, 109}, {355, 233, 226, 36, 542, 277, 663, 374, 278, 246}, {160, 93, 8, 169, 670, 108, 178, 210, 568, 211}, {227, 223, 50, 420, 236, 237, 235, 527, 529, 438}, {363, 0, 233, 36, 413, 283, 508, 406, 39, 278}, {486, 295, 287, 291, 510, 333, 629, 511, 319, 335}, {59, 294, 291, 226, 321, 322, 323, 256, 585, 611}, {66, 363, 299, 291, 409, 509, 347, 318, 646, 345}, {486, 352, 487, 357, 637, 639, 638, 514, 394, 660}, {295, 486, 487, 357, 510, 638, 679, 512, 514, 660}, {296, 22, 288, 166, 337, 305, 336, 604, 209, 680}, {361, 64, 2, 297, 401, 67, 414, 681, 342, 349}, {95, 97, 359, 73, 121, 653, 594, 122, 120, 388}, {423, 482, 417, 418, 620, 627, 460, 431, 618, 458}, {65, 295, 357, 66, 327, 512, 389, 69, 320, 380}, {97, 72, 359, 73, 129, 390, 653, 120, 76, 388}, {420, 223, 96, 485, 529, 649, 656, 528, 525, 675}, {159, 488, 293, 288, 682, 683, 650, 651, 684, 304}, {31, 165, 160, 354, 187, 186, 185, 377, 591, 590}, {484, 486, 487, 489, 502, 638, 560, 496, 503, 552}, {486, 295, 487, 287, 510, 679, 638, 629, 333, 662}, {59, 233, 226, 291, 282, 277, 256, 323, 647, 611}, {233, 355, 226, 291, 542, 663, 277, 647, 664, 611}, {425, 421, 489, 490, 449, 685, 580, 533, 517, 625}, {288, 488, 292, 85, 684, 622, 301, 300, 632, 302}, {421, 425, 489, 417, 449, 580, 685, 465, 463, 582}, {294, 228, 57, 290, 556, 238, 308, 307, 686, 306}, {165, 31, 358, 354, 187, 379, 555, 591, 377, 378}, {103, 356, 364, 73, 518, 410, 522, 149, 386, 412}, {352, 483, 358, 354, 595, 643, 395, 396, 589, 378}, {22, 159, 288, 166, 175, 651, 305, 209, 208, 680}, {356, 352, 359, 484, 400, 398, 387, 608, 598, 597}, {64, 361, 353, 297, 401, 402, 365, 342, 681, 577}, {355, 66, 357, 291, 382, 380, 381, 664, 318, 513}, {487, 486, 287, 489, 638, 629, 662, 552, 503, 630}, {298, 57, 490, 290, 339, 687, 534, 340, 306, 498}, {31, 362, 169, 6, 408, 671, 215, 35, 415, 220}, {488, 425, 292, 85, 579, 621, 622, 632, 441, 302}, {483, 352, 359, 354, 595, 398, 596, 589, 396, 372}, {94, 78, 418, 426, 111, 435, 673, 688, 468, 467}, {229, 43, 44, 100, 241, 47, 262, 506, 116, 132}, {31, 165, 358, 30, 187, 555, 379, 34, 196, 391}, {429, 231, 52, 490, 640, 281, 475, 516, 547, 546}, {94, 102, 78, 426, 144, 145, 111, 688, 559, 468}, {421, 429, 52, 490, 476, 475, 451, 517, 516, 546}, {364, 103, 73, 4, 522, 149, 412, 416, 153, 77}, {420, 227, 424, 50, 527, 571, 437, 438, 235, 436}, {104, 80, 5, 428, 152, 84, 156, 689, 473, 478}, {227, 51, 52, 424, 260, 55, 255, 571, 456, 453}, {487, 289, 293, 287, 600, 313, 601, 662, 331, 328}, {166, 159, 288, 488, 208, 651, 680, 690, 682, 684}, {289, 161, 353, 487, 586, 562, 578, 600, 564, 566}, {482, 485, 489, 417, 548, 495, 539, 627, 544, 582}, {50, 227, 424, 51, 235, 571, 436, 54, 260, 456}, {488, 489, 287, 292, 538, 630, 661, 622, 623, 330}, {482, 483, 157, 488, 535, 616, 665, 536, 537, 645}, {80, 420, 104, 96, 445, 657, 152, 126, 656, 150}, {232, 104, 45, 5, 691, 151, 279, 286, 156, 49}, {288, 488, 287, 292, 684, 661, 329, 301, 622, 330}, {295, 289, 487, 287, 310, 600, 679, 333, 331, 662}, {157, 161, 163, 487, 202, 192, 201, 644, 564, 602}, {483, 482, 164, 98, 535, 692, 654, 694, 693, 558}, {3, 296, 85, 427, 350, 338, 88, 479, 631, 471}, {92, 483, 93, 98, 530, 668, 133, 135, 694, 110}, {95, 484, 100, 225, 554, 655, 115, 593, 636, 695}, {231, 224, 490, 57, 273, 545, 547, 274, 240, 687}, {64, 289, 353, 357, 311, 578, 365, 367, 659, 366}, {2, 297, 24, 168, 349, 344, 28, 218, 696, 217}, {361, 297, 168, 353, 681, 696, 652, 402, 577, 697}, {353, 161, 168, 29, 562, 212, 697, 370, 181, 213}, {289, 295, 487, 357, 310, 679, 600, 659, 512, 660}, {352, 353, 487, 357, 393, 566, 639, 394, 366, 660}, {361, 353, 168, 29, 402, 697, 652, 403, 370, 213}, {484, 229, 100, 225, 574, 506, 655, 636, 242, 695}, {104, 223, 232, 45, 648, 271, 691, 151, 247, 279}, {160, 164, 8, 98, 177, 176, 178, 678, 558, 109}, {164, 9, 8, 98, 197, 12, 176, 558, 131, 109}, {165, 161, 358, 29, 180, 563, 555, 179, 181, 368}, {297, 361, 168, 2, 681, 652, 696, 349, 414, 218}, {161, 353, 358, 29, 562, 369, 563, 181, 370, 368}, {230, 37, 38, 360, 261, 41, 252, 605, 392, 383}, {43, 95, 100, 225, 114, 115, 116, 243, 593, 695}, {420, 80, 104, 428, 445, 152, 657, 469, 473, 689}, {232, 104, 5, 428, 691, 156, 286, 642, 689, 478}, {59, 299, 233, 291, 346, 507, 282, 323, 345, 647}, {355, 363, 66, 291, 407, 409, 382, 664, 646, 318}, {158, 94, 418, 426, 540, 673, 614, 677, 688, 467}, {87, 429, 298, 1, 477, 603, 343, 91, 481, 348}, {420, 227, 485, 424, 527, 526, 528, 437, 571, 543}, {482, 422, 418, 99, 626, 434, 618, 674, 569, 666}, {229, 43, 100, 225, 241, 116, 506, 242, 243, 695}, {294, 486, 287, 291, 609, 629, 334, 322, 511, 335}, {17, 166, 419, 159, 216, 698, 444, 188, 208, 699}, {419, 166, 17, 427, 698, 216, 444, 472, 613, 474}, {166, 488, 419, 159, 690, 634, 698, 208, 682, 699}, {419, 488, 166, 427, 634, 690, 698, 472, 633, 613}, {160, 98, 483, 164, 678, 694, 588, 177, 558, 654}, {483, 98, 160, 93, 694, 678, 588, 668, 110, 670}, {226, 360, 486, 355, 700, 701, 610, 663, 375, 658}, {360, 36, 226, 230, 376, 246, 700, 605, 244, 245}, {226, 36, 360, 355, 246, 376, 700, 663, 374, 375}, {93, 169, 362, 101, 568, 671, 702, 142, 567, 667}, {93, 362, 71, 101, 702, 405, 107, 142, 667, 141}, {71, 362, 93, 354, 405, 702, 107, 373, 404, 669}, {489, 424, 417, 485, 572, 464, 582, 495, 543, 544}, {417, 424, 489, 421, 464, 572, 582, 465, 452, 685}, {102, 10, 158, 94, 148, 182, 703, 144, 119, 540}, {158, 10, 102, 167, 182, 148, 703, 206, 214, 557}, {102, 158, 426, 94, 703, 677, 559, 144, 540, 688}, {426, 158, 102, 167, 677, 703, 559, 549, 206, 557}, {421, 489, 227, 424, 685, 570, 704, 452, 572, 571}, {52, 421, 227, 424, 451, 704, 255, 453, 452, 571}, {489, 227, 222, 224, 570, 263, 501, 705, 254, 265}, {489, 222, 227, 485, 501, 263, 570, 495, 515, 526}, {87, 425, 292, 490, 448, 621, 315, 497, 533, 499}, {292, 425, 87, 86, 621, 448, 315, 324, 457, 90}, {104, 420, 232, 223, 657, 706, 691, 648, 529, 271}, {104, 232, 420, 428, 691, 706, 657, 689, 642, 469}, {232, 420, 50, 223, 706, 438, 272, 271, 529, 237}, {232, 50, 420, 428, 272, 438, 706, 642, 470, 469}, {226, 484, 360, 230, 635, 607, 700, 245, 606, 605}, {226, 360, 484, 486, 700, 607, 635, 610, 701, 502}, {486, 360, 352, 355, 701, 399, 637, 658, 375, 397}, {352, 360, 486, 484, 399, 701, 637, 598, 607, 502}, {162, 488, 157, 159, 707, 645, 198, 189, 682, 200}, {157, 488, 162, 482, 645, 707, 198, 665, 536, 619}, {490, 57, 429, 231, 687, 708, 516, 547, 274, 640}, {429, 57, 490, 298, 708, 687, 516, 603, 339, 534}, {57, 1, 429, 231, 60, 481, 708, 274, 284, 640}, {429, 1, 57, 298, 481, 60, 708, 603, 348, 339}, {158, 98, 482, 94, 541, 693, 617, 540, 117, 672}, {482, 98, 158, 164, 693, 541, 617, 692, 558, 183}, {353, 297, 161, 289, 577, 709, 562, 578, 341, 586}, {353, 161, 297, 168, 562, 709, 577, 697, 212, 696}, {161, 297, 24, 289, 709, 344, 191, 586, 341, 312}, {161, 24, 297, 168, 191, 344, 709, 212, 217, 696}, {159, 293, 487, 163, 650, 601, 710, 174, 584, 602}, {487, 293, 159, 488, 601, 650, 710, 551, 683, 682}, {159, 487, 157, 163, 710, 644, 200, 174, 602, 201}, {157, 487, 159, 488, 644, 710, 200, 645, 551, 682}, {290, 228, 486, 294, 686, 612, 628, 307, 556, 609}, {290, 486, 228, 489, 628, 612, 686, 624, 503, 711}, {485, 99, 420, 422, 676, 712, 528, 576, 569, 446}, {420, 99, 485, 96, 712, 676, 528, 656, 127, 675}, {99, 80, 420, 422, 128, 445, 712, 569, 447, 446}, {420, 80, 99, 96, 445, 128, 712, 656, 126, 127}, {96, 484, 229, 100, 713, 574, 505, 124, 655, 506}, {92, 96, 484, 485, 140, 713, 531, 532, 675, 492}, {92, 484, 96, 100, 531, 713, 140, 139, 655, 124}, {161, 358, 483, 165, 563, 643, 714, 180, 555, 587}, {483, 358, 161, 487, 643, 563, 714, 550, 565, 564}, {161, 483, 157, 165, 714, 616, 202, 180, 587, 205}, {157, 483, 161, 487, 616, 714, 202, 644, 550, 564}, {362, 31, 160, 354, 408, 185, 715, 404, 377, 590}, {160, 31, 362, 169, 185, 408, 715, 210, 215, 671}, {362, 160, 93, 354, 715, 670, 702, 404, 590, 669}, {93, 160, 362, 169, 670, 715, 702, 568, 210, 671}, {482, 164, 157, 483, 692, 203, 665, 535, 654, 616}, {157, 164, 482, 158, 203, 692, 665, 199, 183, 617}, {228, 489, 222, 224, 711, 501, 266, 239, 705, 265}, {222, 489, 228, 486, 501, 711, 266, 504, 503, 612}, {288, 166, 427, 296, 680, 613, 716, 336, 604, 631}, {288, 427, 166, 488, 716, 613, 680, 684, 633, 690}, {85, 288, 427, 296, 300, 716, 471, 338, 336, 631}, {85, 427, 288, 488, 471, 716, 300, 632, 633, 684}, {484, 223, 96, 229, 575, 649, 713, 574, 248, 505}, {484, 96, 223, 485, 713, 649, 575, 492, 675, 525}, {488, 293, 287, 487, 683, 328, 661, 551, 601, 662}, {287, 293, 488, 288, 328, 683, 661, 329, 304, 684}, {419, 488, 162, 159, 634, 707, 717, 699, 682, 189}, {162, 419, 17, 423, 717, 444, 190, 561, 443, 442}, {17, 419, 162, 159, 444, 717, 190, 188, 699, 189}, {482, 98, 92, 94, 693, 135, 573, 672, 117, 136}, {92, 98, 482, 483, 135, 693, 573, 530, 694, 535}, {358, 487, 352, 353, 565, 639, 395, 369, 566, 393}, {352, 487, 358, 483, 639, 565, 395, 595, 550, 643}, {359, 483, 93, 97, 596, 668, 718, 653, 641, 105}, {359, 93, 483, 354, 718, 668, 596, 372, 669, 589}, {71, 359, 93, 97, 371, 718, 107, 106, 653, 105}, {71, 93, 359, 354, 107, 718, 371, 373, 669, 372}, {52, 490, 227, 421, 546, 719, 255, 451, 517, 704}, {227, 490, 52, 224, 719, 546, 255, 254, 545, 253}, {490, 489, 227, 421, 625, 570, 719, 517, 685, 704}, {227, 489, 490, 224, 570, 625, 719, 254, 705, 545}, {57, 490, 228, 224, 687, 720, 238, 240, 545, 239}, {228, 490, 57, 290, 720, 687, 238, 686, 498, 306}, {490, 489, 228, 224, 625, 711, 720, 545, 705, 239}, {228, 489, 490, 290, 711, 625, 720, 686, 624, 498}, {162, 419, 482, 488, 717, 721, 619, 707, 634, 536}, {482, 419, 162, 423, 721, 717, 619, 620, 443, 561}, {419, 417, 482, 488, 461, 627, 721, 634, 581, 536}, {482, 417, 419, 423, 627, 461, 721, 620, 460, 443}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 722
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {0.125, 1, 1}, {0.375, 1, 1}, {0.625, 1, 1}, {0.875, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {1, 1, 0.875}, {1, 1, 0.625}, {1, 1, 0.375}, {1, 1, 0.125}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0.875, 1, 0}, {0.625, 1, 0}, {0.375, 1, 0}, {0.125, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 1, 0.125}, {0, 1, 0.375}, {0, 1, 0.625}, {0, 1, 0.875}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0, 0, 0.125}, {0, 0, 0.375}, {0, 0, 0.625}, {0, 0, 0.875}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {0.125, 0, 1}, {0.375, 0, 1}, {0.625, 0, 1}, {0.875, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {1, 0, 0.875}, {1, 0, 0.625}, {1, 0, 0.375}, {1, 0, 0.125}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0.875, 0, 0}, {0.625, 0, 0}, {0.375, 0, 0}, {0.125, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.875, 0}, {0, 0.625, 0}, {0, 0.375, 0}, {0, 0.125, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {0, 0.875, 1}, {0, 0.625, 1}, {0, 0.375, 1}, {0, 0.125, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.875, 1}, {1, 0.625, 1}, {1, 0.375, 1}, {1, 0.125, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {1, 0.875, 0}, {1, 0.625, 0}, {1, 0.375, 0}, {1, 0.125, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.234692, 0.610874, 1}, {0.095431, 0.625135, 1}, {0.139261, 0.735739, 1}, {0.264261, 0.860739, 1}, {0.375, 0.904691, 1}, {0.389261, 0.76543, 1}, {0.860739, 0.735739, 1}, {0.904569, 0.625135, 1}, {0.765308, 0.610874, 1}, {0.264261, 0.139383, 1}, {0.389261, 0.234962, 1}, {0.375, 0.0955798, 1}, {0.610739, 0.76543, 1}, {0.625, 0.904691, 1}, {0.735739, 0.860739, 1}, {0.095431, 0.375135, 1}, {0.234692, 0.389518, 1}, {0.139261, 0.264383, 1}, {0.625, 0.0955798, 1}, {0.610739, 0.234962, 1}, {0.735739, 0.139383, 1}, {0.860739, 0.264383, 1}, {0.765308, 0.389518, 1}, {0.904569, 0.375135, 1}, {0.095431, 0.500135, 1}, {0.904569, 0.500135, 1}, {0.5, 0.904691, 1}, {0.5, 0.0955798, 1}, {0.389261, 0.611834, 1}, {0.345431, 0.501231, 1}, {0.5, 0.655786, 1}, {0.610739, 0.611834, 1}, {0.389261, 0.390478, 1}, {0.654569, 0.501231, 1}, {0.5, 0.346675, 1}, {0.610739, 0.390478, 1}, {0.0709532, 0.804047, 1}, {0.210214, 0.789786, 1}, {0.195953, 0.929047, 1}, {0.789786, 0.789786, 1}, {0.929047, 0.804047, 1}, {0.195953, 0.0709735, 1}, {0.210214, 0.210356, 1}, {0.804047, 0.929047, 1}, {0.0709532, 0.195973, 1}, {0.789786, 0.210356, 1}, {0.804047, 0.0709735, 1}, {0.929047, 0.195973, 1}, {0.0709532, 0.0709735, 1}, {0.0709532, 0.929047, 1}, {0.929047, 0.929047, 1}, {0.929047, 0.0709735, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.904569, 1, 0.625}, {0.765308, 1, 0.610739}, {0.860739, 1, 0.735739}, {0.625, 1, 0.095431}, {0.610739, 1, 0.234692}, {0.735739, 1, 0.139261}, {0.375, 1, 0.904569}, {0.389261, 1, 0.765308}, {0.264261, 1, 0.860739}, {0.095431, 1, 0.375}, {0.234692, 1, 0.389261}, {0.139261, 1, 0.264261}, {0.735739, 1, 0.860739}, {0.610739, 1, 0.765308}, {0.625, 1, 0.904569}, {0.139261, 1, 0.735739}, {0.234692, 1, 0.610739}, {0.095431, 1, 0.625}, {0.860739, 1, 0.264261}, {0.765308, 1, 0.389261}, {0.904569, 1, 0.375}, {0.264261, 1, 0.139261}, {0.389261, 1, 0.234692}, {0.375, 1, 0.095431}, {0.5, 1, 0.095431}, {0.904569, 1, 0.5}, {0.095431, 1, 0.5}, {0.5, 1, 0.904569}, {0.654569, 1, 0.5}, {0.610739, 1, 0.610739}, {0.610739, 1, 0.389261}, {0.5, 1, 0.345431}, {0.389261, 1, 0.389261}, {0.5, 1, 0.654569}, {0.389261, 1, 0.610739}, {0.345431, 1, 0.5}, {0.789786, 1, 0.789786}, {0.929047, 1, 0.804047}, {0.789786, 1, 0.210214}, {0.804047, 1, 0.0709532}, {0.210214, 1, 0.789786}, {0.195953, 1, 0.929047}, {0.210214, 1, 0.210214}, {0.0709532, 1, 0.195953}, {0.804047, 1, 0.929047}, {0.0709532, 1, 0.804047}, {0.929047, 1, 0.195953}, {0.195953, 1, 0.0709532}, {0.0709532, 1, 0.0709532}, {0.929047, 1, 0.0709532}, {0.0709532, 1, 0.929047}, {0.929047, 1, 0.929047}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.904691, 0, 0.625}, {0.76543, 0, 0.610739}, {0.860739, 0, 0.735739}, {0.625135, 0, 0.095431}, {0.610874, 0, 0.234692}, {0.735739, 0, 0.139261}, {0.375135, 0, 0.904569}, {0.389518, 0, 0.765308}, {0.264383, 0, 0.860739}, {0.0955798, 0, 0.375}, {0.234962, 0, 0.389261}, {0.139383, 0, 0.264261}, {0.735739, 0, 0.860739}, {0.610874, 0, 0.765308}, {0.625135, 0, 0.904569}, {0.139383, 0, 0.735739}, {0.234962, 0, 0.610739}, {0.0955798, 0, 0.625}, {0.860739, 0, 0.264261}, {0.76543, 0, 0.389261}, {0.904691, 0, 0.375}, {0.264383, 0, 0.139261}, {0.389518, 0, 0.234692}, {0.375135, 0, 0.095431}, {0.500135, 0, 0.095431}, {0.904691, 0, 0.5}, {0.0955798, 0, 0.5}, {0.500135, 0, 0.904569}, {0.655786, 0, 0.5}, {0.611834, 0, 0.610739}, {0.611834, 0, 0.389261}, {0.501231, 0, 0.345431}, {0.390478, 0, 0.389261}, {0.501231, 0, 0.654569}, {0.390478, 0, 0.610739}, {0.346675, 0, 0.5}, {0.789786, 0, 0.789786}, {0.929047, 0, 0.804047}, {0.789786, 0, 0.210214}, {0.804047, 0, 0.0709532}, {0.210356, 0, 0.789786}, {0.195973, 0, 0.929047}, {0.210356, 0, 0.210214}, {0.0709735, 0, 0.195953}, {0.804047, 0, 0.929047}, {0.0709735, 0, 0.804047}, {0.929047, 0, 0.195953}, {0.195973, 0, 0.0709532}, {0.0709735, 0, 0.0709532}, {0.929047, 0, 0.0709532}, {0.0709735, 0, 0.929047}, {0.929047, 0, 0.929047}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0.860739, 0.735739, 0}, {0.765308, 0.610739, 0}, {0.904569, 0.625, 0}, {0.625, 0.904569, 0}, {0.610739, 0.765308, 0}, {0.735739, 0.860739, 0}, {0.735739, 0.139261, 0}, {0.610739, 0.234692, 0}, {0.625, 0.095431, 0}, {0.095431, 0.625, 0}, {0.234692, 0.610739, 0}, {0.139261, 0.735739, 0}, {0.264261, 0.860739, 0}, {0.389261, 0.765308, 0}, {0.375, 0.904569, 0}, {0.904569, 0.375, 0}, {0.765308, 0.389261, 0}, {0.860739, 0.264261, 0}, {0.139261, 0.264261, 0}, {0.234692, 0.389261, 0}, {0.095431, 0.375, 0}, {0.375, 0.095431, 0}, {0.389261, 0.234692, 0}, {0.264261, 0.139261, 0}, {0.904569, 0.5, 0}, {0.5, 0.904569, 0}, {0.5, 0.095431, 0}, {0.095431, 0.5, 0}, {0.5, 0.654569, 0}, {0.610739, 0.610739, 0}, {0.654569, 0.5, 0}, {0.389261, 0.610739, 0}, {0.610739, 0.389261, 0}, {0.345431, 0.5, 0}, {0.5, 0.345431, 0}, {0.389261, 0.389261, 0}, {0.789786, 0.789786, 0}, {0.804047, 0.929047, 0}, {0.929047, 0.804047, 0}, {0.804047, 0.0709532, 0}, {0.789786, 0.210214, 0}, {0.210214, 0.789786, 0}, {0.0709532, 0.804047, 0}, {0.929047, 0.195953, 0}, {0.195953, 0.929047, 0}, {0.210214, 0.210214, 0}, {0.195953, 0.0709532, 0}, {0.0709532, 0.195953, 0}, {0.929047, 0.0709532, 0}, {0.0709532, 0.929047, 0}, {0.929047, 0.929047, 0}, {0.0709532, 0.0709532, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {0, 0.735739, 0.139261}, {0, 0.610739, 0.234692}, {0, 0.625, 0.095431}, {0, 0.904569, 0.375}, {0, 0.765308, 0.389261}, {0, 0.860739, 0.264261}, {0, 0.625, 0.904569}, {0, 0.610739, 0.765308}, {0, 0.735739, 0.860739}, {0, 0.139261, 0.264261}, {0, 0.234692, 0.389261}, {0, 0.095431, 0.375}, {0, 0.860739, 0.735739}, {0, 0.765308, 0.610739}, {0, 0.904569, 0.625}, {0, 0.375, 0.095431}, {0, 0.389261, 0.234692}, {0, 0.264261, 0.139261}, {0, 0.095431, 0.625}, {0, 0.234692, 0.610739}, {0, 0.139261, 0.735739}, {0, 0.264261, 0.860739}, {0, 0.389261, 0.765308}, {0, 0.375, 0.904569}, {0, 0.5, 0.095431}, {0, 0.5, 0.904569}, {0, 0.904569, 0.5}, {0, 0.095431, 0.5}, {0, 0.610739, 0.389261}, {0, 0.5, 0.345431}, {0, 0.654569, 0.5}, {0, 0.610739, 0.610739}, {0, 0.389261, 0.389261}, {0, 0.5, 0.654569}, {0, 0.345431, 0.5}, {0, 0.389261, 0.610739}, {0, 0.804047, 0.0709532}, {0, 0.789786, 0.210214}, {0, 0.929047, 0.195953}, {0, 0.789786, 0.789786}, {0, 0.804047, 0.929047}, {0, 0.0709532, 0.195953}, {0, 0.210214, 0.210214}, {0, 0.929047, 0.804047}, {0, 0.195953, 0.0709532}, {0, 0.210214, 0.789786}, {0, 0.0709532, 0.804047}, {0, 0.195953, 0.929047}, {0, 0.0709532, 0.0709532}, {0, 0.929047, 0.0709532}, {0, 0.929047, 0.929047}, {0, 0.0709532, 0.929047}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {1, 0.860678, 0.735678}, {1, 0.76518, 0.610611}, {1, 0.904501, 0.624932}, {1, 0.624932, 0.904501}, {1, 0.610611, 0.76518}, {1, 0.735678, 0.860678}, {1, 0.0953701, 0.624939}, {1, 0.234631, 0.610678}, {1, 0.139261, 0.735739}, {1, 0.735739, 0.139261}, {1, 0.610678, 0.234631}, {1, 0.624939, 0.0953701}, {1, 0.904501, 0.374932}, {1, 0.76524, 0.389193}, {1, 0.860739, 0.264261}, {1, 0.264261, 0.860739}, {1, 0.389193, 0.76524}, {1, 0.374932, 0.904501}, {1, 0.374939, 0.0953701}, {1, 0.3892, 0.234631}, {1, 0.264261, 0.139261}, {1, 0.139261, 0.264261}, {1, 0.234631, 0.3892}, {1, 0.0953701, 0.374939}, {1, 0.904501, 0.499932}, {1, 0.499932, 0.904501}, {1, 0.0953701, 0.499939}, {1, 0.499939, 0.0953701}, {1, 0.610131, 0.610131}, {1, 0.499385, 0.653954}, {1, 0.653954, 0.499385}, {1, 0.610191, 0.388713}, {1, 0.388713, 0.610191}, {1, 0.499391, 0.344822}, {1, 0.344822, 0.499391}, {1, 0.388713, 0.388713}, {1, 0.929037, 0.804037}, {1, 0.789715, 0.789715}, {1, 0.804037, 0.929037}, {1, 0.210214, 0.789786}, {1, 0.0709532, 0.804047}, {1, 0.804047, 0.0709532}, {1, 0.789786, 0.210214}, {1, 0.195953, 0.929047}, {1, 0.929047, 0.195953}, {1, 0.0709532, 0.195953}, {1, 0.210214, 0.210214}, {1, 0.195953, 0.0709532}, {1, 0.0709532, 0.929047}, {1, 0.929047, 0.0709532}, {1, 0.929037, 0.929037}, {1, 0.0709532, 0.0709532}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}, {0.403787, 0.502163, 0.604301}, {0.59395, 0.335588, 0.588613}, {0.57425, 0.502163, 0.604301}, {0.533055, 0.519268, 0.479373}, {0.723218, 0.352693, 0.463685}, {0.552756, 0.352693, 0.463685}, {0.907719, 0.227933, 0.0932632}, {0.768458, 0.242194, 0.0932632}, {0.812288, 0.352933, 0.0932632}, {0.462839, 0.167794, 0.544306}, {0.592107, 0.184899, 0.419378}, {0.423487, 0.335588, 0.41815}, {0.552756, 0.352693, 0.293222}, {0.462839, 0.167794, 0.373844}, {0.610874, 0.139383, 0.904569}, {0.500135, 0.0955798, 0.904569}, {0.141927, 0.0709532, 0.0709532}, {0.0709735, 0.0709532, 0.141906}, {0.0709532, 0.141906, 0.0709532}, {0.307175, 0.417794, 0.123844}, {0.351005, 0.307055, 0.123844}, {0.095431, 0.5, 0.095431}, {0.139261, 0.389261, 0.095431}, {0.211744, 0.417794, 0.219275}, {0.633302, 0.167794, 0.544306}, {0.907719, 0.173886, 0.164216}, {0.907719, 0.242194, 0.232524}, {0.0709532, 0.210234, 0.860739}, {0.141927, 0.0709735, 0.929047}, {0.0709735, 0.139261, 0.789786}, {0.0709735, 0.0709532, 0.858094}, {0.0709532, 0.141927, 0.929047}, {0.210336, 0.0709735, 0.860739}, {0.139383, 0.139261, 0.721478}, {0.742945, 0.167794, 0.655045}, {0.786897, 0.167794, 0.544306}, {0.904691, 0.139261, 0.610739}, {0.882206, 0.307055, 0.655045}, {0.860739, 0.139261, 0.721478}, {0.442043, 0.585464, 0.809994}, {0.461744, 0.418889, 0.794306}, {0.632206, 0.418889, 0.794306}, {0.907719, 0.352872, 0.188633}, {0.836765, 0.173886, 0.0932632}, {0.549357, 0.674254, 0.636624}, {0.73952, 0.678141, 0.450474}, {0.57425, 0.672625, 0.433838}, {0.723218, 0.523156, 0.293222}, {0.698326, 0.524784, 0.496008}, {0.721478, 0.860739, 0.860739}, {0.610739, 0.904691, 0.860739}, {0.0709735, 0.139261, 0.210214}, {0.882206, 0.263164, 0.544245}, {0.882206, 0.417246, 0.543759}, {0.768458, 0.102933, 0.232524}, {0.907719, 0.102933, 0.218263}, {0.836765, 0.102933, 0.164216}, {0.73952, 0.507679, 0.620936}, {0.929047, 0.929037, 0.858083}, {0.403787, 0.672625, 0.433838}, {0.59395, 0.676512, 0.247688}, {0.552756, 0.523156, 0.293222}, {0.307175, 0.417929, 0.794306}, {0.351005, 0.307176, 0.794306}, {0.095431, 0.904569, 0.5}, {0.500135, 0.095431, 0.095431}, {0.858094, 0.929047, 0.929047}, {0.5, 0.904691, 0.904569}, {0.929047, 0.858083, 0.929037}, {0.423487, 0.50605, 0.41815}, {0.904569, 0.904501, 0.499932}, {0.139261, 0.860739, 0.278522}, {0.139261, 0.904569, 0.389261}, {0.351005, 0.838256, 0.263105}, {0.211744, 0.742825, 0.373844}, {0.211744, 0.698995, 0.263105}, {0.141906, 0.929047, 0.929047}, {0.210214, 0.860739, 0.929047}, {0.904569, 0.500068, 0.904501}, {0.745703, 0.184899, 0.419378}, {0.904691, 0.0953701, 0.499939}, {0.841012, 0.280269, 0.419318}, {0.607314, 0.59098, 0.82663}, {0.461879, 0.167794, 0.698875}, {0.572483, 0.167794, 0.655045}, {0.882206, 0.417726, 0.698808}, {0.0709532, 0.789786, 0.139261}, {0.139261, 0.721478, 0.139261}, {0.882206, 0.588195, 0.219214}, {0.841012, 0.434839, 0.264749}, {0.882206, 0.587709, 0.373296}, {0.841012, 0.434352, 0.418831}, {0.389261, 0.904569, 0.139261}, {0.5, 0.904569, 0.095431}, {0.389383, 0.095431, 0.139261}, {0.278522, 0.860739, 0.139261}, {0.287474, 0.834369, 0.559994}, {0.331304, 0.834369, 0.670734}, {0.192043, 0.695108, 0.670734}, {0.139261, 0.860739, 0.721478}, {0.095431, 0.860739, 0.610739}, {0.139261, 0.278644, 0.860739}, {0.278644, 0.139383, 0.860739}, {0.139261, 0.389383, 0.904569}, {0.192043, 0.584369, 0.559994}, {0.192043, 0.584369, 0.714563}, {0.211744, 0.417794, 0.698875}, {0.211744, 0.417794, 0.544306}, {0.0955798, 0.139261, 0.610739}, {0.351005, 0.698995, 0.123844}, {0.461744, 0.742825, 0.123844}, {0.461744, 0.838256, 0.219275}, {0.929047, 0.141906, 0.0709532}, {0.858094, 0.929047, 0.0709532}, {0.0955798, 0.095431, 0.5}, {0.307323, 0.167794, 0.544306}, {0.211744, 0.263225, 0.544306}, {0.211744, 0.307055, 0.655045}, {0.461744, 0.263225, 0.123844}, {0.351126, 0.167794, 0.263105}, {0.278644, 0.139261, 0.139261}, {0.461879, 0.167794, 0.219275}, {0.929047, 0.929047, 0.141906}, {0.860739, 0.860678, 0.721417}, {0.904569, 0.860678, 0.610678}, {0.442043, 0.834369, 0.559994}, {0.718053, 0.839885, 0.687369}, {0.857314, 0.700563, 0.687308}, {0.761883, 0.839885, 0.57663}, {0.857314, 0.744386, 0.576562}, {0.904569, 0.499939, 0.0953701}, {0.786775, 0.588256, 0.123844}, {0.745581, 0.434899, 0.169378}, {0.701751, 0.32416, 0.169378}, {0.748731, 0.287832, 0.262642}, {0.857314, 0.589817, 0.731131}, {0.857314, 0.589337, 0.576082}, {0.572483, 0.307055, 0.123844}, {0.461744, 0.417794, 0.123844}, {0.591012, 0.434899, 0.169378}, {0.929047, 0.858094, 0.0709532}, {0.882206, 0.713256, 0.123844}, {0.882206, 0.767303, 0.194797}, {0.882206, 0.698995, 0.263105}, {0.351126, 0.167794, 0.433567}, {0.351126, 0.167794, 0.655045}, {0.211744, 0.417794, 0.373844}, {0.423487, 0.50605, 0.247688}, {0.211744, 0.588256, 0.373844}, {0.929047, 0.0709532, 0.141906}, {0.287474, 0.584504, 0.809994}, {0.929047, 0.0709532, 0.858094}, {0.192043, 0.738938, 0.559994}, {0.461744, 0.838256, 0.373844}, {0.632206, 0.838256, 0.373844}, {0.139261, 0.210214, 0.0709532}, {0.210234, 0.139261, 0.0709532}, {0.789786, 0.0709735, 0.860739}, {0.721478, 0.139383, 0.860739}, {0.610739, 0.904569, 0.139261}, {0.721478, 0.860739, 0.139261}, {0.0709532, 0.929047, 0.141906}, {0.095431, 0.500135, 0.904569}, {0.442043, 0.834369, 0.714563}, {0.461744, 0.263374, 0.794306}, {0.860739, 0.278644, 0.860739}, {0.929047, 0.210234, 0.860739}, {0.211744, 0.307055, 0.263105}, {0.139261, 0.610739, 0.095431}, {0.211744, 0.588256, 0.219275}, {0.632206, 0.588256, 0.123844}, {0.461744, 0.588256, 0.123844}, {0.139383, 0.139261, 0.278522}, {0.139261, 0.278522, 0.139261}, {0.607314, 0.839885, 0.57663}, {0.904569, 0.610813, 0.860678}, {0.0709532, 0.858094, 0.929047}, {0.331304, 0.695108, 0.809994}, {0.139261, 0.721478, 0.860739}, {0.278522, 0.860739, 0.860739}, {0.0709532, 0.929047, 0.858094}, {0.718053, 0.700624, 0.82663}, {0.860739, 0.721417, 0.860678}, {0.761883, 0.59002, 0.82663}, {0.742945, 0.307176, 0.794306}, {0.786775, 0.417929, 0.794306}, {0.860739, 0.929037, 0.789776}, {0.389261, 0.904691, 0.860739}, {0.307175, 0.588256, 0.123844}, {0.789786, 0.860739, 0.0709532}, {0.0709532, 0.858094, 0.0709532}, {0.742945, 0.838256, 0.263105}, {0.632206, 0.742825, 0.123844}, {0.742945, 0.698995, 0.123844}, {0.841012, 0.32416, 0.308639}, {0.610874, 0.139261, 0.095431}, {0.782719, 0.102933, 0.0932632}, {0.860739, 0.789776, 0.929037}, {0.929047, 0.141927, 0.929047}, {0.811253, 0.838256, 0.194797}, {0.858094, 0.0709735, 0.929047}, {0.607314, 0.839885, 0.731199}, {0.607314, 0.744576, 0.82663}, {0.442043, 0.73906, 0.809994}, {0.389383, 0.0955798, 0.860739}, {0.141906, 0.929047, 0.0709532}, {0.0709532, 0.860739, 0.210214}, {0.929047, 0.860739, 0.210214}, {0.860739, 0.860739, 0.278522}, {0.139383, 0.095431, 0.389261}, {0.211744, 0.263225, 0.373844}, {0.139261, 0.789786, 0.929047}, {0.789786, 0.929047, 0.860739}, {0.904691, 0.139261, 0.389261}, {0.701751, 0.184899, 0.308639}, {0.929047, 0.139261, 0.789786}, {0.786775, 0.838256, 0.373844}, {0.875, 0.0709532, 0.0709532}, {0.210214, 0.929047, 0.139261}, {0.572483, 0.838256, 0.263105}, {0.591147, 0.184899, 0.264809}, {0.904569, 0.389396, 0.860739}, {0.572483, 0.307176, 0.794306}, {0.331304, 0.834369, 0.449255}, {0.139261, 0.929047, 0.789786}, {0.860739, 0.789786, 0.0709532}, {0.904569, 0.860739, 0.389261}, {0.139261, 0.610739, 0.904569}, {0.812409, 0.102933, 0.343263}, {0.657854, 0.102933, 0.188694}, {0.857314, 0.700624, 0.465891}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 48
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{6, 8, 11}, {8, 9, 12}, {9, 10, 13}, {10, 7, 14}, {7, 15, 18}, {15, 16, 19}, {16, 17, 20}, {17, 3, 21}, {3, 22, 25}, {22, 23, 26}, {23, 24, 27}, {24, 2, 28}, {2, 29, 32}, {29, 30, 33}, {30, 31, 34}, {31, 6, 35}, {0, 36, 39}, {36, 37, 40}, {37, 38, 41}, {38, 4, 42}, {4, 43, 46}, {43, 44, 47}, {44, 45, 48}, {45, 5, 49}, {5, 50, 53}, {50, 51, 54}, {51, 52, 55}, {52, 1, 56}, {1, 57, 60}, {57, 58, 61}, {58, 59, 62}, {59, 0, 63}, {2, 64, 67}, {64, 65, 68}, {65, 66, 69}, {66, 0, 70}, {6, 71, 74}, {71, 72, 75}, {72, 73, 76}, {73, 4, 77}, {7, 78, 81}, {78, 79, 82}, {79, 80, 83}, {80, 5, 84}, {3, 85, 88}, {85, 86, 89}, {86, 87, 90}, {87, 1, 91}}
        ]
-        (not_ghost:triangle_6) [
+        (not_ghost:_triangle_6) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_6
+        + id             : mesh:connectivities:_triangle_6
         + size           : 240
         + nb_component   : 6
         + allocated size : 2000
         + memory size    : 47kB
         + values         : {{93, 97, 71, 105, 106, 107}, {93, 8, 98, 108, 109, 110}, {94, 78, 99, 111, 112, 113}, {43, 95, 100, 114, 115, 116}, {94, 98, 10, 117, 118, 119}, {73, 97, 95, 120, 121, 122}, {45, 100, 96, 123, 124, 125}, {80, 96, 99, 126, 127, 128}, {71, 97, 72, 106, 129, 75}, {78, 79, 99, 82, 130, 112}, {8, 9, 98, 12, 131, 109}, {43, 100, 44, 116, 132, 47}, {72, 97, 73, 129, 120, 76}, {9, 10, 98, 13, 118, 131}, {79, 80, 99, 83, 128, 130}, {44, 100, 45, 132, 123, 48}, {93, 92, 97, 133, 134, 105}, {93, 98, 92, 110, 135, 133}, {94, 92, 98, 136, 135, 117}, {92, 95, 97, 137, 121, 134}, {94, 99, 92, 113, 138, 136}, {92, 100, 95, 139, 115, 137}, {92, 99, 96, 138, 127, 140}, {92, 96, 100, 140, 124, 139}, {93, 71, 101, 107, 141, 142}, {93, 101, 8, 142, 143, 108}, {94, 102, 78, 144, 145, 111}, {43, 103, 95, 146, 147, 114}, {94, 10, 102, 119, 148, 144}, {73, 95, 103, 122, 147, 149}, {45, 96, 104, 125, 150, 151}, {80, 104, 96, 152, 150, 126}, {4, 73, 103, 77, 149, 153}, {6, 101, 71, 154, 141, 74}, {7, 102, 10, 155, 148, 14}, {7, 78, 102, 81, 145, 155}, {6, 8, 101, 11, 143, 154}, {5, 104, 80, 156, 152, 84}, {4, 103, 43, 153, 146, 46}, {5, 45, 104, 49, 151, 156}, {15, 162, 158, 170, 171, 172}, {22, 163, 159, 173, 174, 175}, {8, 164, 160, 176, 177, 178}, {29, 165, 161, 179, 180, 181}, {10, 158, 164, 182, 183, 184}, {31, 160, 165, 185, 186, 187}, {17, 159, 162, 188, 189, 190}, {24, 161, 163, 191, 192, 193}, {22, 23, 163, 26, 194, 173}, {15, 16, 162, 19, 195, 170}, {29, 30, 165, 33, 196, 179}, {8, 9, 164, 12, 197, 176}, {16, 17, 162, 20, 190, 195}, {23, 24, 163, 27, 193, 194}, {9, 10, 164, 13, 184, 197}, {30, 31, 165, 34, 187, 196}, {158, 162, 157, 171, 198, 199}, {159, 157, 162, 200, 198, 189}, {159, 163, 157, 174, 201, 200}, {161, 157, 163, 202, 201, 192}, {158, 157, 164, 199, 203, 183}, {160, 164, 157, 177, 203, 204}, {160, 157, 165, 204, 205, 186}, {161, 165, 157, 180, 205, 202}, {15, 158, 167, 172, 206, 207}, {22, 159, 166, 175, 208, 209}, {8, 160, 169, 178, 210, 211}, {29, 161, 168, 181, 212, 213}, {10, 167, 158, 214, 206, 182}, {31, 169, 160, 215, 210, 185}, {17, 166, 159, 216, 208, 188}, {24, 168, 161, 217, 212, 191}, {2, 168, 24, 218, 217, 28}, {3, 166, 17, 219, 216, 21}, {6, 169, 31, 220, 215, 35}, {7, 167, 10, 221, 214, 14}, {7, 15, 167, 18, 207, 221}, {3, 22, 166, 25, 209, 219}, {6, 8, 169, 11, 211, 220}, {2, 29, 168, 32, 213, 218}, {50, 227, 223, 235, 236, 237}, {57, 228, 224, 238, 239, 240}, {43, 229, 225, 241, 242, 243}, {36, 230, 226, 244, 245, 246}, {45, 223, 229, 247, 248, 249}, {38, 225, 230, 250, 251, 252}, {52, 224, 227, 253, 254, 255}, {59, 226, 228, 256, 257, 258}, {57, 58, 228, 61, 259, 238}, {50, 51, 227, 54, 260, 235}, {36, 37, 230, 40, 261, 244}, {43, 44, 229, 47, 262, 241}, {51, 52, 227, 55, 255, 260}, {58, 59, 228, 62, 258, 259}, {44, 45, 229, 48, 249, 262}, {37, 38, 230, 41, 252, 261}, {223, 227, 222, 236, 263, 264}, {224, 222, 227, 265, 263, 254}, {224, 228, 222, 239, 266, 265}, {222, 228, 226, 266, 257, 267}, {223, 222, 229, 264, 268, 248}, {222, 225, 229, 269, 242, 268}, {222, 230, 225, 270, 251, 269}, {222, 226, 230, 267, 245, 270}, {50, 223, 232, 237, 271, 272}, {57, 224, 231, 240, 273, 274}, {43, 225, 234, 243, 275, 276}, {36, 226, 233, 246, 277, 278}, {45, 232, 223, 279, 271, 247}, {38, 234, 225, 280, 275, 250}, {52, 231, 224, 281, 273, 253}, {59, 233, 226, 282, 277, 256}, {0, 233, 59, 283, 282, 63}, {1, 231, 52, 284, 281, 56}, {4, 234, 38, 285, 280, 42}, {5, 232, 45, 286, 279, 49}, {5, 50, 232, 53, 272, 286}, {1, 57, 231, 60, 274, 284}, {4, 43, 234, 46, 276, 285}, {0, 36, 233, 39, 278, 283}, {85, 288, 292, 300, 301, 302}, {22, 293, 288, 303, 304, 305}, {57, 290, 294, 306, 307, 308}, {64, 295, 289, 309, 310, 311}, {24, 289, 293, 312, 313, 314}, {87, 292, 290, 315, 316, 317}, {66, 291, 295, 318, 319, 320}, {59, 294, 291, 321, 322, 323}, {85, 292, 86, 302, 324, 89}, {22, 23, 293, 26, 325, 303}, {57, 294, 58, 308, 326, 61}, {64, 65, 295, 68, 327, 309}, {86, 292, 87, 324, 315, 90}, {23, 24, 293, 27, 314, 325}, {65, 66, 295, 69, 320, 327}, {58, 294, 59, 326, 321, 62}, {288, 293, 287, 304, 328, 329}, {288, 287, 292, 329, 330, 301}, {289, 287, 293, 331, 328, 313}, {290, 292, 287, 316, 330, 332}, {289, 295, 287, 310, 333, 331}, {290, 287, 294, 332, 334, 307}, {291, 294, 287, 322, 334, 335}, {291, 287, 295, 335, 333, 319}, {22, 288, 296, 305, 336, 337}, {85, 296, 288, 338, 336, 300}, {57, 298, 290, 339, 340, 306}, {64, 289, 297, 311, 341, 342}, {87, 290, 298, 317, 340, 343}, {24, 297, 289, 344, 341, 312}, {59, 291, 299, 323, 345, 346}, {66, 299, 291, 347, 345, 318}, {1, 87, 298, 91, 343, 348}, {2, 297, 24, 349, 344, 28}, {3, 296, 85, 350, 338, 88}, {3, 22, 296, 25, 337, 350}, {1, 298, 57, 348, 339, 60}, {2, 64, 297, 67, 342, 349}, {0, 59, 299, 63, 346, 351}, {0, 299, 66, 351, 347, 70}, {64, 353, 357, 365, 366, 367}, {29, 358, 353, 368, 369, 370}, {71, 359, 354, 371, 372, 373}, {36, 355, 360, 374, 375, 376}, {31, 354, 358, 377, 378, 379}, {66, 357, 355, 380, 381, 382}, {38, 360, 356, 383, 384, 385}, {73, 356, 359, 386, 387, 388}, {64, 357, 65, 367, 389, 68}, {71, 72, 359, 75, 390, 371}, {29, 30, 358, 33, 391, 368}, {36, 360, 37, 376, 392, 40}, {65, 357, 66, 389, 380, 69}, {30, 31, 358, 34, 379, 391}, {72, 73, 359, 76, 388, 390}, {37, 360, 38, 392, 383, 41}, {353, 352, 357, 393, 394, 366}, {353, 358, 352, 369, 395, 393}, {354, 352, 358, 396, 395, 378}, {355, 357, 352, 381, 394, 397}, {354, 359, 352, 372, 398, 396}, {355, 352, 360, 397, 399, 375}, {356, 352, 359, 400, 398, 387}, {356, 360, 352, 384, 399, 400}, {64, 361, 353, 401, 402, 365}, {29, 353, 361, 370, 402, 403}, {71, 354, 362, 373, 404, 405}, {36, 363, 355, 406, 407, 374}, {31, 362, 354, 408, 404, 377}, {66, 355, 363, 382, 407, 409}, {38, 356, 364, 385, 410, 411}, {73, 364, 356, 412, 410, 386}, {0, 66, 363, 70, 409, 413}, {2, 361, 64, 414, 401, 67}, {6, 362, 31, 415, 408, 35}, {6, 71, 362, 74, 405, 415}, {2, 29, 361, 32, 403, 414}, {4, 364, 73, 416, 412, 77}, {0, 363, 36, 413, 406, 39}, {4, 38, 364, 42, 411, 416}, {15, 418, 423, 430, 431, 432}, {78, 422, 418, 433, 434, 435}, {50, 424, 420, 436, 437, 438}, {85, 419, 425, 439, 440, 441}, {17, 423, 419, 442, 443, 444}, {80, 420, 422, 445, 446, 447}, {87, 425, 421, 448, 449, 450}, {52, 421, 424, 451, 452, 453}, {15, 423, 16, 432, 454, 19}, {78, 79, 422, 82, 455, 433}, {50, 51, 424, 54, 456, 436}, {85, 425, 86, 441, 457, 89}, {79, 80, 422, 83, 447, 455}, {16, 423, 17, 454, 442, 20}, {86, 425, 87, 457, 448, 90}, {51, 52, 424, 55, 453, 456}, {417, 418, 422, 458, 434, 459}, {417, 423, 418, 460, 431, 458}, {419, 423, 417, 443, 460, 461}, {420, 417, 422, 462, 459, 446}, {419, 417, 425, 461, 463, 440}, {420, 424, 417, 437, 464, 462}, {421, 417, 424, 465, 464, 452}, {421, 425, 417, 449, 463, 465}, {15, 426, 418, 466, 467, 430}, {78, 418, 426, 435, 467, 468}, {50, 420, 428, 438, 469, 470}, {85, 427, 419, 471, 472, 439}, {80, 428, 420, 473, 469, 445}, {17, 419, 427, 444, 472, 474}, {52, 429, 421, 475, 476, 451}, {87, 421, 429, 450, 476, 477}, {5, 428, 80, 478, 473, 84}, {3, 17, 427, 21, 474, 479}, {7, 78, 426, 81, 468, 480}, {7, 426, 15, 480, 466, 18}, {5, 50, 428, 53, 470, 478}, {3, 427, 85, 479, 471, 88}, {1, 429, 52, 481, 475, 56}, {1, 87, 429, 91, 477, 481}}
        ]
-        (not_ghost:tetrahedron_10) [
+        (not_ghost:_tetrahedron_10) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:tetrahedron_10
+        + id             : mesh:connectivities:_tetrahedron_10
         + size           : 341
         + nb_component   : 10
         + allocated size : 2000
         + memory size    : 78kB
         + values         : {{484, 483, 485, 489, 491, 493, 492, 496, 494, 495}, {87, 290, 490, 292, 317, 498, 497, 315, 316, 499}, {222, 484, 489, 486, 500, 496, 501, 504, 502, 503}, {96, 229, 45, 100, 505, 249, 125, 124, 506, 123}, {59, 0, 233, 299, 63, 283, 282, 346, 351, 507}, {0, 363, 233, 299, 413, 508, 283, 351, 509, 507}, {486, 295, 291, 357, 510, 319, 511, 514, 512, 513}, {484, 222, 489, 485, 500, 501, 496, 492, 515, 495}, {87, 429, 421, 490, 477, 476, 450, 497, 516, 517}, {103, 356, 234, 364, 518, 520, 519, 522, 410, 521}, {356, 103, 234, 225, 518, 519, 520, 524, 523, 275}, {43, 103, 225, 234, 146, 523, 243, 276, 519, 275}, {223, 227, 485, 420, 236, 526, 525, 529, 527, 528}, {483, 92, 484, 485, 530, 531, 491, 493, 532, 492}, {87, 421, 425, 490, 450, 449, 448, 497, 517, 533}, {298, 87, 290, 490, 343, 317, 340, 534, 497, 498}, {482, 483, 488, 489, 535, 537, 536, 539, 494, 538}, {94, 10, 158, 98, 119, 182, 540, 117, 118, 541}, {355, 363, 233, 36, 407, 508, 542, 374, 406, 278}, {485, 420, 424, 417, 528, 437, 543, 544, 462, 464}, {231, 224, 52, 490, 273, 253, 281, 547, 545, 546}, {483, 482, 485, 489, 535, 548, 493, 494, 539, 495}, {167, 15, 7, 426, 207, 18, 221, 549, 466, 480}, {483, 487, 488, 489, 550, 551, 537, 494, 552, 538}, {484, 92, 97, 95, 531, 134, 553, 554, 137, 121}, {29, 165, 30, 358, 179, 196, 33, 368, 555, 391}, {228, 294, 58, 59, 556, 326, 259, 258, 321, 62}, {102, 10, 7, 167, 148, 14, 155, 557, 214, 221}, {9, 10, 98, 164, 13, 118, 131, 197, 184, 558}, {78, 102, 7, 426, 145, 155, 81, 468, 559, 480}, {483, 484, 487, 489, 491, 560, 550, 494, 496, 552}, {16, 423, 162, 17, 454, 561, 195, 20, 442, 190}, {353, 161, 358, 487, 562, 563, 369, 566, 564, 565}, {93, 101, 8, 169, 142, 143, 108, 568, 567, 211}, {78, 422, 79, 99, 433, 455, 82, 112, 569, 130}, {485, 227, 489, 424, 526, 570, 495, 543, 571, 572}, {482, 92, 483, 485, 573, 530, 535, 548, 532, 493}, {223, 222, 229, 484, 264, 268, 248, 575, 500, 574}, {422, 420, 485, 417, 446, 528, 576, 459, 462, 544}, {64, 297, 353, 289, 342, 577, 365, 311, 341, 578}, {101, 6, 8, 169, 154, 11, 143, 567, 220, 211}, {425, 488, 489, 417, 579, 538, 580, 463, 581, 582}, {163, 161, 24, 293, 192, 191, 193, 584, 583, 314}, {228, 294, 59, 226, 556, 321, 258, 257, 585, 256}, {161, 289, 24, 293, 586, 312, 191, 583, 313, 314}, {165, 483, 160, 354, 587, 588, 186, 591, 589, 590}, {103, 356, 95, 225, 518, 592, 147, 523, 524, 593}, {356, 95, 359, 73, 592, 594, 387, 386, 122, 388}, {352, 483, 359, 484, 595, 596, 398, 598, 491, 597}, {103, 43, 4, 234, 146, 46, 153, 519, 276, 285}, {230, 356, 38, 225, 599, 385, 252, 251, 524, 250}, {161, 289, 293, 487, 586, 313, 583, 564, 600, 601}, {161, 487, 293, 163, 564, 601, 583, 192, 602, 584}, {429, 87, 298, 490, 477, 343, 603, 516, 497, 534}, {364, 38, 234, 4, 411, 280, 521, 416, 42, 285}, {22, 296, 3, 166, 337, 350, 25, 209, 604, 219}, {230, 37, 360, 36, 261, 392, 605, 244, 40, 376}, {356, 230, 360, 484, 599, 605, 384, 608, 606, 607}, {22, 23, 293, 163, 26, 325, 303, 173, 194, 584}, {294, 486, 291, 226, 609, 511, 322, 585, 610, 611}, {294, 228, 486, 226, 556, 612, 609, 585, 257, 610}, {3, 17, 166, 427, 21, 216, 219, 479, 474, 613}, {364, 103, 4, 234, 522, 153, 416, 521, 519, 285}, {158, 15, 418, 162, 172, 430, 614, 171, 170, 615}, {15, 423, 418, 162, 432, 431, 430, 170, 561, 615}, {157, 483, 160, 165, 616, 588, 204, 205, 587, 186}, {482, 158, 418, 162, 617, 614, 618, 619, 171, 615}, {423, 482, 418, 162, 620, 618, 431, 561, 619, 615}, {425, 488, 292, 489, 579, 622, 621, 580, 538, 623}, {290, 489, 490, 292, 624, 625, 498, 316, 623, 499}, {222, 223, 485, 484, 264, 525, 515, 500, 575, 492}, {363, 0, 66, 299, 413, 70, 409, 509, 351, 347}, {482, 422, 485, 417, 626, 576, 548, 627, 459, 544}, {486, 290, 287, 489, 628, 332, 629, 503, 624, 630}, {296, 3, 166, 427, 350, 219, 604, 631, 479, 613}, {489, 290, 287, 292, 624, 332, 630, 623, 316, 330}, {488, 85, 427, 419, 632, 471, 633, 634, 439, 472}, {425, 488, 419, 85, 579, 634, 440, 441, 632, 439}, {15, 16, 423, 162, 19, 454, 432, 170, 195, 561}, {65, 64, 357, 295, 68, 367, 389, 327, 309, 512}, {222, 484, 486, 226, 500, 502, 504, 267, 635, 610}, {356, 484, 95, 225, 608, 554, 592, 524, 636, 593}, {352, 484, 486, 487, 598, 502, 637, 639, 560, 638}, {230, 222, 484, 225, 270, 500, 606, 251, 269, 636}, {294, 228, 58, 57, 556, 259, 326, 308, 238, 61}, {352, 483, 484, 487, 595, 491, 598, 639, 550, 560}, {23, 163, 24, 293, 194, 193, 27, 325, 584, 314}, {429, 231, 1, 52, 640, 284, 481, 475, 281, 56}, {228, 222, 486, 226, 266, 504, 612, 257, 267, 610}, {482, 422, 417, 418, 626, 459, 627, 618, 434, 458}, {489, 425, 490, 292, 580, 533, 625, 623, 621, 499}, {483, 92, 97, 484, 530, 134, 641, 491, 531, 553}, {50, 232, 5, 428, 272, 286, 53, 470, 642, 478}, {483, 165, 358, 354, 587, 555, 643, 589, 591, 378}, {157, 483, 487, 488, 616, 550, 644, 645, 537, 551}, {425, 488, 417, 419, 579, 581, 463, 440, 634, 461}, {222, 230, 484, 226, 270, 606, 500, 267, 245, 635}, {299, 363, 233, 291, 509, 508, 507, 345, 646, 647}, {103, 356, 73, 95, 518, 386, 149, 147, 592, 122}, {229, 44, 45, 100, 262, 48, 249, 506, 132, 123}, {356, 230, 38, 360, 599, 252, 385, 384, 605, 383}, {104, 223, 45, 96, 648, 247, 151, 150, 649, 125}, {22, 159, 293, 288, 175, 650, 303, 305, 651, 304}, {352, 356, 360, 484, 400, 384, 399, 598, 608, 607}, {2, 361, 168, 29, 414, 652, 218, 32, 403, 213}, {484, 483, 359, 97, 491, 596, 597, 553, 641, 653}, {483, 157, 160, 164, 616, 204, 588, 654, 203, 177}, {92, 484, 100, 95, 531, 655, 139, 137, 554, 115}, {223, 420, 96, 104, 529, 656, 649, 648, 657, 150}, {85, 425, 292, 86, 441, 621, 302, 89, 457, 324}, {355, 352, 486, 357, 397, 637, 658, 381, 394, 514}, {353, 289, 487, 357, 578, 600, 566, 366, 659, 660}, {66, 295, 357, 291, 320, 512, 380, 318, 319, 513}, {488, 487, 287, 489, 551, 662, 661, 538, 552, 630}, {486, 294, 287, 290, 609, 334, 629, 628, 307, 332}, {227, 223, 485, 222, 236, 525, 526, 263, 264, 515}, {355, 486, 226, 291, 658, 610, 663, 664, 511, 611}, {43, 103, 95, 225, 146, 147, 114, 243, 523, 593}, {356, 230, 484, 225, 599, 606, 608, 524, 251, 636}, {64, 295, 289, 357, 309, 310, 311, 367, 512, 659}, {157, 482, 162, 158, 665, 619, 198, 199, 617, 171}, {223, 229, 45, 96, 248, 249, 247, 649, 505, 125}, {222, 229, 484, 225, 268, 574, 500, 269, 242, 636}, {422, 78, 418, 99, 433, 435, 434, 569, 112, 666}, {422, 80, 79, 99, 447, 83, 455, 569, 128, 130}, {159, 22, 293, 163, 175, 303, 650, 174, 173, 584}, {101, 362, 71, 6, 667, 405, 141, 154, 415, 74}, {93, 483, 354, 160, 668, 589, 669, 670, 588, 590}, {355, 486, 291, 357, 658, 511, 664, 381, 514, 513}, {362, 101, 169, 6, 667, 567, 671, 415, 154, 220}, {94, 482, 418, 99, 672, 618, 673, 113, 674, 666}, {488, 482, 489, 417, 536, 539, 538, 581, 627, 582}, {484, 356, 95, 359, 608, 592, 554, 597, 387, 594}, {363, 355, 233, 291, 407, 542, 508, 646, 664, 647}, {485, 92, 96, 99, 532, 140, 675, 676, 138, 127}, {78, 94, 418, 99, 111, 673, 435, 112, 113, 666}, {92, 483, 97, 93, 530, 641, 134, 133, 668, 105}, {484, 95, 97, 359, 554, 121, 553, 597, 594, 653}, {72, 71, 97, 359, 75, 106, 129, 390, 371, 653}, {94, 482, 99, 92, 672, 674, 113, 136, 573, 138}, {102, 167, 7, 426, 557, 221, 155, 559, 549, 480}, {10, 164, 158, 98, 184, 183, 182, 118, 558, 541}, {482, 422, 99, 485, 626, 569, 674, 548, 576, 676}, {15, 158, 426, 167, 172, 677, 466, 207, 206, 549}, {92, 482, 99, 485, 573, 674, 138, 532, 548, 676}, {158, 15, 426, 418, 172, 466, 677, 614, 430, 467}, {38, 356, 234, 225, 385, 520, 280, 250, 524, 275}, {94, 482, 158, 418, 672, 617, 540, 673, 618, 614}, {364, 356, 234, 38, 410, 520, 521, 411, 385, 280}, {93, 160, 8, 98, 670, 178, 108, 110, 678, 109}, {355, 233, 226, 36, 542, 277, 663, 374, 278, 246}, {160, 93, 8, 169, 670, 108, 178, 210, 568, 211}, {227, 223, 50, 420, 236, 237, 235, 527, 529, 438}, {363, 0, 233, 36, 413, 283, 508, 406, 39, 278}, {486, 295, 287, 291, 510, 333, 629, 511, 319, 335}, {59, 294, 291, 226, 321, 322, 323, 256, 585, 611}, {66, 363, 299, 291, 409, 509, 347, 318, 646, 345}, {486, 352, 487, 357, 637, 639, 638, 514, 394, 660}, {295, 486, 487, 357, 510, 638, 679, 512, 514, 660}, {296, 22, 288, 166, 337, 305, 336, 604, 209, 680}, {361, 64, 2, 297, 401, 67, 414, 681, 342, 349}, {95, 97, 359, 73, 121, 653, 594, 122, 120, 388}, {423, 482, 417, 418, 620, 627, 460, 431, 618, 458}, {65, 295, 357, 66, 327, 512, 389, 69, 320, 380}, {97, 72, 359, 73, 129, 390, 653, 120, 76, 388}, {420, 223, 96, 485, 529, 649, 656, 528, 525, 675}, {159, 488, 293, 288, 682, 683, 650, 651, 684, 304}, {31, 165, 160, 354, 187, 186, 185, 377, 591, 590}, {484, 486, 487, 489, 502, 638, 560, 496, 503, 552}, {486, 295, 487, 287, 510, 679, 638, 629, 333, 662}, {59, 233, 226, 291, 282, 277, 256, 323, 647, 611}, {233, 355, 226, 291, 542, 663, 277, 647, 664, 611}, {425, 421, 489, 490, 449, 685, 580, 533, 517, 625}, {288, 488, 292, 85, 684, 622, 301, 300, 632, 302}, {421, 425, 489, 417, 449, 580, 685, 465, 463, 582}, {294, 228, 57, 290, 556, 238, 308, 307, 686, 306}, {165, 31, 358, 354, 187, 379, 555, 591, 377, 378}, {103, 356, 364, 73, 518, 410, 522, 149, 386, 412}, {352, 483, 358, 354, 595, 643, 395, 396, 589, 378}, {22, 159, 288, 166, 175, 651, 305, 209, 208, 680}, {356, 352, 359, 484, 400, 398, 387, 608, 598, 597}, {64, 361, 353, 297, 401, 402, 365, 342, 681, 577}, {355, 66, 357, 291, 382, 380, 381, 664, 318, 513}, {487, 486, 287, 489, 638, 629, 662, 552, 503, 630}, {298, 57, 490, 290, 339, 687, 534, 340, 306, 498}, {31, 362, 169, 6, 408, 671, 215, 35, 415, 220}, {488, 425, 292, 85, 579, 621, 622, 632, 441, 302}, {483, 352, 359, 354, 595, 398, 596, 589, 396, 372}, {94, 78, 418, 426, 111, 435, 673, 688, 468, 467}, {229, 43, 44, 100, 241, 47, 262, 506, 116, 132}, {31, 165, 358, 30, 187, 555, 379, 34, 196, 391}, {429, 231, 52, 490, 640, 281, 475, 516, 547, 546}, {94, 102, 78, 426, 144, 145, 111, 688, 559, 468}, {421, 429, 52, 490, 476, 475, 451, 517, 516, 546}, {364, 103, 73, 4, 522, 149, 412, 416, 153, 77}, {420, 227, 424, 50, 527, 571, 437, 438, 235, 436}, {104, 80, 5, 428, 152, 84, 156, 689, 473, 478}, {227, 51, 52, 424, 260, 55, 255, 571, 456, 453}, {487, 289, 293, 287, 600, 313, 601, 662, 331, 328}, {166, 159, 288, 488, 208, 651, 680, 690, 682, 684}, {289, 161, 353, 487, 586, 562, 578, 600, 564, 566}, {482, 485, 489, 417, 548, 495, 539, 627, 544, 582}, {50, 227, 424, 51, 235, 571, 436, 54, 260, 456}, {488, 489, 287, 292, 538, 630, 661, 622, 623, 330}, {482, 483, 157, 488, 535, 616, 665, 536, 537, 645}, {80, 420, 104, 96, 445, 657, 152, 126, 656, 150}, {232, 104, 45, 5, 691, 151, 279, 286, 156, 49}, {288, 488, 287, 292, 684, 661, 329, 301, 622, 330}, {295, 289, 487, 287, 310, 600, 679, 333, 331, 662}, {157, 161, 163, 487, 202, 192, 201, 644, 564, 602}, {483, 482, 164, 98, 535, 692, 654, 694, 693, 558}, {3, 296, 85, 427, 350, 338, 88, 479, 631, 471}, {92, 483, 93, 98, 530, 668, 133, 135, 694, 110}, {95, 484, 100, 225, 554, 655, 115, 593, 636, 695}, {231, 224, 490, 57, 273, 545, 547, 274, 240, 687}, {64, 289, 353, 357, 311, 578, 365, 367, 659, 366}, {2, 297, 24, 168, 349, 344, 28, 218, 696, 217}, {361, 297, 168, 353, 681, 696, 652, 402, 577, 697}, {353, 161, 168, 29, 562, 212, 697, 370, 181, 213}, {289, 295, 487, 357, 310, 679, 600, 659, 512, 660}, {352, 353, 487, 357, 393, 566, 639, 394, 366, 660}, {361, 353, 168, 29, 402, 697, 652, 403, 370, 213}, {484, 229, 100, 225, 574, 506, 655, 636, 242, 695}, {104, 223, 232, 45, 648, 271, 691, 151, 247, 279}, {160, 164, 8, 98, 177, 176, 178, 678, 558, 109}, {164, 9, 8, 98, 197, 12, 176, 558, 131, 109}, {165, 161, 358, 29, 180, 563, 555, 179, 181, 368}, {297, 361, 168, 2, 681, 652, 696, 349, 414, 218}, {161, 353, 358, 29, 562, 369, 563, 181, 370, 368}, {230, 37, 38, 360, 261, 41, 252, 605, 392, 383}, {43, 95, 100, 225, 114, 115, 116, 243, 593, 695}, {420, 80, 104, 428, 445, 152, 657, 469, 473, 689}, {232, 104, 5, 428, 691, 156, 286, 642, 689, 478}, {59, 299, 233, 291, 346, 507, 282, 323, 345, 647}, {355, 363, 66, 291, 407, 409, 382, 664, 646, 318}, {158, 94, 418, 426, 540, 673, 614, 677, 688, 467}, {87, 429, 298, 1, 477, 603, 343, 91, 481, 348}, {420, 227, 485, 424, 527, 526, 528, 437, 571, 543}, {482, 422, 418, 99, 626, 434, 618, 674, 569, 666}, {229, 43, 100, 225, 241, 116, 506, 242, 243, 695}, {294, 486, 287, 291, 609, 629, 334, 322, 511, 335}, {17, 166, 419, 159, 216, 698, 444, 188, 208, 699}, {419, 166, 17, 427, 698, 216, 444, 472, 613, 474}, {166, 488, 419, 159, 690, 634, 698, 208, 682, 699}, {419, 488, 166, 427, 634, 690, 698, 472, 633, 613}, {160, 98, 483, 164, 678, 694, 588, 177, 558, 654}, {483, 98, 160, 93, 694, 678, 588, 668, 110, 670}, {226, 360, 486, 355, 700, 701, 610, 663, 375, 658}, {360, 36, 226, 230, 376, 246, 700, 605, 244, 245}, {226, 36, 360, 355, 246, 376, 700, 663, 374, 375}, {93, 169, 362, 101, 568, 671, 702, 142, 567, 667}, {93, 362, 71, 101, 702, 405, 107, 142, 667, 141}, {71, 362, 93, 354, 405, 702, 107, 373, 404, 669}, {489, 424, 417, 485, 572, 464, 582, 495, 543, 544}, {417, 424, 489, 421, 464, 572, 582, 465, 452, 685}, {102, 10, 158, 94, 148, 182, 703, 144, 119, 540}, {158, 10, 102, 167, 182, 148, 703, 206, 214, 557}, {102, 158, 426, 94, 703, 677, 559, 144, 540, 688}, {426, 158, 102, 167, 677, 703, 559, 549, 206, 557}, {421, 489, 227, 424, 685, 570, 704, 452, 572, 571}, {52, 421, 227, 424, 451, 704, 255, 453, 452, 571}, {489, 227, 222, 224, 570, 263, 501, 705, 254, 265}, {489, 222, 227, 485, 501, 263, 570, 495, 515, 526}, {87, 425, 292, 490, 448, 621, 315, 497, 533, 499}, {292, 425, 87, 86, 621, 448, 315, 324, 457, 90}, {104, 420, 232, 223, 657, 706, 691, 648, 529, 271}, {104, 232, 420, 428, 691, 706, 657, 689, 642, 469}, {232, 420, 50, 223, 706, 438, 272, 271, 529, 237}, {232, 50, 420, 428, 272, 438, 706, 642, 470, 469}, {226, 484, 360, 230, 635, 607, 700, 245, 606, 605}, {226, 360, 484, 486, 700, 607, 635, 610, 701, 502}, {486, 360, 352, 355, 701, 399, 637, 658, 375, 397}, {352, 360, 486, 484, 399, 701, 637, 598, 607, 502}, {162, 488, 157, 159, 707, 645, 198, 189, 682, 200}, {157, 488, 162, 482, 645, 707, 198, 665, 536, 619}, {490, 57, 429, 231, 687, 708, 516, 547, 274, 640}, {429, 57, 490, 298, 708, 687, 516, 603, 339, 534}, {57, 1, 429, 231, 60, 481, 708, 274, 284, 640}, {429, 1, 57, 298, 481, 60, 708, 603, 348, 339}, {158, 98, 482, 94, 541, 693, 617, 540, 117, 672}, {482, 98, 158, 164, 693, 541, 617, 692, 558, 183}, {353, 297, 161, 289, 577, 709, 562, 578, 341, 586}, {353, 161, 297, 168, 562, 709, 577, 697, 212, 696}, {161, 297, 24, 289, 709, 344, 191, 586, 341, 312}, {161, 24, 297, 168, 191, 344, 709, 212, 217, 696}, {159, 293, 487, 163, 650, 601, 710, 174, 584, 602}, {487, 293, 159, 488, 601, 650, 710, 551, 683, 682}, {159, 487, 157, 163, 710, 644, 200, 174, 602, 201}, {157, 487, 159, 488, 644, 710, 200, 645, 551, 682}, {290, 228, 486, 294, 686, 612, 628, 307, 556, 609}, {290, 486, 228, 489, 628, 612, 686, 624, 503, 711}, {485, 99, 420, 422, 676, 712, 528, 576, 569, 446}, {420, 99, 485, 96, 712, 676, 528, 656, 127, 675}, {99, 80, 420, 422, 128, 445, 712, 569, 447, 446}, {420, 80, 99, 96, 445, 128, 712, 656, 126, 127}, {96, 484, 229, 100, 713, 574, 505, 124, 655, 506}, {92, 96, 484, 485, 140, 713, 531, 532, 675, 492}, {92, 484, 96, 100, 531, 713, 140, 139, 655, 124}, {161, 358, 483, 165, 563, 643, 714, 180, 555, 587}, {483, 358, 161, 487, 643, 563, 714, 550, 565, 564}, {161, 483, 157, 165, 714, 616, 202, 180, 587, 205}, {157, 483, 161, 487, 616, 714, 202, 644, 550, 564}, {362, 31, 160, 354, 408, 185, 715, 404, 377, 590}, {160, 31, 362, 169, 185, 408, 715, 210, 215, 671}, {362, 160, 93, 354, 715, 670, 702, 404, 590, 669}, {93, 160, 362, 169, 670, 715, 702, 568, 210, 671}, {482, 164, 157, 483, 692, 203, 665, 535, 654, 616}, {157, 164, 482, 158, 203, 692, 665, 199, 183, 617}, {228, 489, 222, 224, 711, 501, 266, 239, 705, 265}, {222, 489, 228, 486, 501, 711, 266, 504, 503, 612}, {288, 166, 427, 296, 680, 613, 716, 336, 604, 631}, {288, 427, 166, 488, 716, 613, 680, 684, 633, 690}, {85, 288, 427, 296, 300, 716, 471, 338, 336, 631}, {85, 427, 288, 488, 471, 716, 300, 632, 633, 684}, {484, 223, 96, 229, 575, 649, 713, 574, 248, 505}, {484, 96, 223, 485, 713, 649, 575, 492, 675, 525}, {488, 293, 287, 487, 683, 328, 661, 551, 601, 662}, {287, 293, 488, 288, 328, 683, 661, 329, 304, 684}, {419, 488, 162, 159, 634, 707, 717, 699, 682, 189}, {162, 419, 17, 423, 717, 444, 190, 561, 443, 442}, {17, 419, 162, 159, 444, 717, 190, 188, 699, 189}, {482, 98, 92, 94, 693, 135, 573, 672, 117, 136}, {92, 98, 482, 483, 135, 693, 573, 530, 694, 535}, {358, 487, 352, 353, 565, 639, 395, 369, 566, 393}, {352, 487, 358, 483, 639, 565, 395, 595, 550, 643}, {359, 483, 93, 97, 596, 668, 718, 653, 641, 105}, {359, 93, 483, 354, 718, 668, 596, 372, 669, 589}, {71, 359, 93, 97, 371, 718, 107, 106, 653, 105}, {71, 93, 359, 354, 107, 718, 371, 373, 669, 372}, {52, 490, 227, 421, 546, 719, 255, 451, 517, 704}, {227, 490, 52, 224, 719, 546, 255, 254, 545, 253}, {490, 489, 227, 421, 625, 570, 719, 517, 685, 704}, {227, 489, 490, 224, 570, 625, 719, 254, 705, 545}, {57, 490, 228, 224, 687, 720, 238, 240, 545, 239}, {228, 490, 57, 290, 720, 687, 238, 686, 498, 306}, {490, 489, 228, 224, 625, 711, 720, 545, 705, 239}, {228, 489, 490, 290, 711, 625, 720, 686, 624, 498}, {162, 419, 482, 488, 717, 721, 619, 707, 634, 536}, {482, 419, 162, 423, 721, 717, 619, 620, 443, 561}, {419, 417, 482, 488, 461, 627, 721, 634, 581, 536}, {482, 417, 419, 423, 627, 461, 721, 620, 460, 443}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 8
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_3
+   + id             : mesh:connectivities:_segment_3
    + size           : 48
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 23kB
    + values         : {{6, 8, 11}, {8, 9, 12}, {9, 10, 13}, {10, 7, 14}, {7, 15, 18}, {15, 16, 19}, {16, 17, 20}, {17, 3, 21}, {3, 22, 25}, {22, 23, 26}, {23, 24, 27}, {24, 2, 28}, {2, 29, 32}, {29, 30, 33}, {30, 31, 34}, {31, 6, 35}, {0, 36, 39}, {36, 37, 40}, {37, 38, 41}, {38, 4, 42}, {4, 43, 46}, {43, 44, 47}, {44, 45, 48}, {45, 5, 49}, {5, 50, 53}, {50, 51, 54}, {51, 52, 55}, {52, 1, 56}, {1, 57, 60}, {57, 58, 61}, {58, 59, 62}, {59, 0, 63}, {2, 64, 67}, {64, 65, 68}, {65, 66, 69}, {66, 0, 70}, {6, 71, 74}, {71, 72, 75}, {72, 73, 76}, {73, 4, 77}, {7, 78, 81}, {78, 79, 82}, {79, 80, 83}, {80, 5, 84}, {3, 85, 88}, {85, 86, 89}, {86, 87, 90}, {87, 1, 91}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:tetrahedron_10
+   + id             : mesh:connectivities:_tetrahedron_10
    + size           : 341
    + nb_component   : 10
    + allocated size : 2000
    + memory size    : 78kB
    + values         : {{484, 483, 485, 489, 491, 493, 492, 496, 494, 495}, {87, 290, 490, 292, 317, 498, 497, 315, 316, 499}, {222, 484, 489, 486, 500, 496, 501, 504, 502, 503}, {96, 229, 45, 100, 505, 249, 125, 124, 506, 123}, {59, 0, 233, 299, 63, 283, 282, 346, 351, 507}, {0, 363, 233, 299, 413, 508, 283, 351, 509, 507}, {486, 295, 291, 357, 510, 319, 511, 514, 512, 513}, {484, 222, 489, 485, 500, 501, 496, 492, 515, 495}, {87, 429, 421, 490, 477, 476, 450, 497, 516, 517}, {103, 356, 234, 364, 518, 520, 519, 522, 410, 521}, {356, 103, 234, 225, 518, 519, 520, 524, 523, 275}, {43, 103, 225, 234, 146, 523, 243, 276, 519, 275}, {223, 227, 485, 420, 236, 526, 525, 529, 527, 528}, {483, 92, 484, 485, 530, 531, 491, 493, 532, 492}, {87, 421, 425, 490, 450, 449, 448, 497, 517, 533}, {298, 87, 290, 490, 343, 317, 340, 534, 497, 498}, {482, 483, 488, 489, 535, 537, 536, 539, 494, 538}, {94, 10, 158, 98, 119, 182, 540, 117, 118, 541}, {355, 363, 233, 36, 407, 508, 542, 374, 406, 278}, {485, 420, 424, 417, 528, 437, 543, 544, 462, 464}, {231, 224, 52, 490, 273, 253, 281, 547, 545, 546}, {483, 482, 485, 489, 535, 548, 493, 494, 539, 495}, {167, 15, 7, 426, 207, 18, 221, 549, 466, 480}, {483, 487, 488, 489, 550, 551, 537, 494, 552, 538}, {484, 92, 97, 95, 531, 134, 553, 554, 137, 121}, {29, 165, 30, 358, 179, 196, 33, 368, 555, 391}, {228, 294, 58, 59, 556, 326, 259, 258, 321, 62}, {102, 10, 7, 167, 148, 14, 155, 557, 214, 221}, {9, 10, 98, 164, 13, 118, 131, 197, 184, 558}, {78, 102, 7, 426, 145, 155, 81, 468, 559, 480}, {483, 484, 487, 489, 491, 560, 550, 494, 496, 552}, {16, 423, 162, 17, 454, 561, 195, 20, 442, 190}, {353, 161, 358, 487, 562, 563, 369, 566, 564, 565}, {93, 101, 8, 169, 142, 143, 108, 568, 567, 211}, {78, 422, 79, 99, 433, 455, 82, 112, 569, 130}, {485, 227, 489, 424, 526, 570, 495, 543, 571, 572}, {482, 92, 483, 485, 573, 530, 535, 548, 532, 493}, {223, 222, 229, 484, 264, 268, 248, 575, 500, 574}, {422, 420, 485, 417, 446, 528, 576, 459, 462, 544}, {64, 297, 353, 289, 342, 577, 365, 311, 341, 578}, {101, 6, 8, 169, 154, 11, 143, 567, 220, 211}, {425, 488, 489, 417, 579, 538, 580, 463, 581, 582}, {163, 161, 24, 293, 192, 191, 193, 584, 583, 314}, {228, 294, 59, 226, 556, 321, 258, 257, 585, 256}, {161, 289, 24, 293, 586, 312, 191, 583, 313, 314}, {165, 483, 160, 354, 587, 588, 186, 591, 589, 590}, {103, 356, 95, 225, 518, 592, 147, 523, 524, 593}, {356, 95, 359, 73, 592, 594, 387, 386, 122, 388}, {352, 483, 359, 484, 595, 596, 398, 598, 491, 597}, {103, 43, 4, 234, 146, 46, 153, 519, 276, 285}, {230, 356, 38, 225, 599, 385, 252, 251, 524, 250}, {161, 289, 293, 487, 586, 313, 583, 564, 600, 601}, {161, 487, 293, 163, 564, 601, 583, 192, 602, 584}, {429, 87, 298, 490, 477, 343, 603, 516, 497, 534}, {364, 38, 234, 4, 411, 280, 521, 416, 42, 285}, {22, 296, 3, 166, 337, 350, 25, 209, 604, 219}, {230, 37, 360, 36, 261, 392, 605, 244, 40, 376}, {356, 230, 360, 484, 599, 605, 384, 608, 606, 607}, {22, 23, 293, 163, 26, 325, 303, 173, 194, 584}, {294, 486, 291, 226, 609, 511, 322, 585, 610, 611}, {294, 228, 486, 226, 556, 612, 609, 585, 257, 610}, {3, 17, 166, 427, 21, 216, 219, 479, 474, 613}, {364, 103, 4, 234, 522, 153, 416, 521, 519, 285}, {158, 15, 418, 162, 172, 430, 614, 171, 170, 615}, {15, 423, 418, 162, 432, 431, 430, 170, 561, 615}, {157, 483, 160, 165, 616, 588, 204, 205, 587, 186}, {482, 158, 418, 162, 617, 614, 618, 619, 171, 615}, {423, 482, 418, 162, 620, 618, 431, 561, 619, 615}, {425, 488, 292, 489, 579, 622, 621, 580, 538, 623}, {290, 489, 490, 292, 624, 625, 498, 316, 623, 499}, {222, 223, 485, 484, 264, 525, 515, 500, 575, 492}, {363, 0, 66, 299, 413, 70, 409, 509, 351, 347}, {482, 422, 485, 417, 626, 576, 548, 627, 459, 544}, {486, 290, 287, 489, 628, 332, 629, 503, 624, 630}, {296, 3, 166, 427, 350, 219, 604, 631, 479, 613}, {489, 290, 287, 292, 624, 332, 630, 623, 316, 330}, {488, 85, 427, 419, 632, 471, 633, 634, 439, 472}, {425, 488, 419, 85, 579, 634, 440, 441, 632, 439}, {15, 16, 423, 162, 19, 454, 432, 170, 195, 561}, {65, 64, 357, 295, 68, 367, 389, 327, 309, 512}, {222, 484, 486, 226, 500, 502, 504, 267, 635, 610}, {356, 484, 95, 225, 608, 554, 592, 524, 636, 593}, {352, 484, 486, 487, 598, 502, 637, 639, 560, 638}, {230, 222, 484, 225, 270, 500, 606, 251, 269, 636}, {294, 228, 58, 57, 556, 259, 326, 308, 238, 61}, {352, 483, 484, 487, 595, 491, 598, 639, 550, 560}, {23, 163, 24, 293, 194, 193, 27, 325, 584, 314}, {429, 231, 1, 52, 640, 284, 481, 475, 281, 56}, {228, 222, 486, 226, 266, 504, 612, 257, 267, 610}, {482, 422, 417, 418, 626, 459, 627, 618, 434, 458}, {489, 425, 490, 292, 580, 533, 625, 623, 621, 499}, {483, 92, 97, 484, 530, 134, 641, 491, 531, 553}, {50, 232, 5, 428, 272, 286, 53, 470, 642, 478}, {483, 165, 358, 354, 587, 555, 643, 589, 591, 378}, {157, 483, 487, 488, 616, 550, 644, 645, 537, 551}, {425, 488, 417, 419, 579, 581, 463, 440, 634, 461}, {222, 230, 484, 226, 270, 606, 500, 267, 245, 635}, {299, 363, 233, 291, 509, 508, 507, 345, 646, 647}, {103, 356, 73, 95, 518, 386, 149, 147, 592, 122}, {229, 44, 45, 100, 262, 48, 249, 506, 132, 123}, {356, 230, 38, 360, 599, 252, 385, 384, 605, 383}, {104, 223, 45, 96, 648, 247, 151, 150, 649, 125}, {22, 159, 293, 288, 175, 650, 303, 305, 651, 304}, {352, 356, 360, 484, 400, 384, 399, 598, 608, 607}, {2, 361, 168, 29, 414, 652, 218, 32, 403, 213}, {484, 483, 359, 97, 491, 596, 597, 553, 641, 653}, {483, 157, 160, 164, 616, 204, 588, 654, 203, 177}, {92, 484, 100, 95, 531, 655, 139, 137, 554, 115}, {223, 420, 96, 104, 529, 656, 649, 648, 657, 150}, {85, 425, 292, 86, 441, 621, 302, 89, 457, 324}, {355, 352, 486, 357, 397, 637, 658, 381, 394, 514}, {353, 289, 487, 357, 578, 600, 566, 366, 659, 660}, {66, 295, 357, 291, 320, 512, 380, 318, 319, 513}, {488, 487, 287, 489, 551, 662, 661, 538, 552, 630}, {486, 294, 287, 290, 609, 334, 629, 628, 307, 332}, {227, 223, 485, 222, 236, 525, 526, 263, 264, 515}, {355, 486, 226, 291, 658, 610, 663, 664, 511, 611}, {43, 103, 95, 225, 146, 147, 114, 243, 523, 593}, {356, 230, 484, 225, 599, 606, 608, 524, 251, 636}, {64, 295, 289, 357, 309, 310, 311, 367, 512, 659}, {157, 482, 162, 158, 665, 619, 198, 199, 617, 171}, {223, 229, 45, 96, 248, 249, 247, 649, 505, 125}, {222, 229, 484, 225, 268, 574, 500, 269, 242, 636}, {422, 78, 418, 99, 433, 435, 434, 569, 112, 666}, {422, 80, 79, 99, 447, 83, 455, 569, 128, 130}, {159, 22, 293, 163, 175, 303, 650, 174, 173, 584}, {101, 362, 71, 6, 667, 405, 141, 154, 415, 74}, {93, 483, 354, 160, 668, 589, 669, 670, 588, 590}, {355, 486, 291, 357, 658, 511, 664, 381, 514, 513}, {362, 101, 169, 6, 667, 567, 671, 415, 154, 220}, {94, 482, 418, 99, 672, 618, 673, 113, 674, 666}, {488, 482, 489, 417, 536, 539, 538, 581, 627, 582}, {484, 356, 95, 359, 608, 592, 554, 597, 387, 594}, {363, 355, 233, 291, 407, 542, 508, 646, 664, 647}, {485, 92, 96, 99, 532, 140, 675, 676, 138, 127}, {78, 94, 418, 99, 111, 673, 435, 112, 113, 666}, {92, 483, 97, 93, 530, 641, 134, 133, 668, 105}, {484, 95, 97, 359, 554, 121, 553, 597, 594, 653}, {72, 71, 97, 359, 75, 106, 129, 390, 371, 653}, {94, 482, 99, 92, 672, 674, 113, 136, 573, 138}, {102, 167, 7, 426, 557, 221, 155, 559, 549, 480}, {10, 164, 158, 98, 184, 183, 182, 118, 558, 541}, {482, 422, 99, 485, 626, 569, 674, 548, 576, 676}, {15, 158, 426, 167, 172, 677, 466, 207, 206, 549}, {92, 482, 99, 485, 573, 674, 138, 532, 548, 676}, {158, 15, 426, 418, 172, 466, 677, 614, 430, 467}, {38, 356, 234, 225, 385, 520, 280, 250, 524, 275}, {94, 482, 158, 418, 672, 617, 540, 673, 618, 614}, {364, 356, 234, 38, 410, 520, 521, 411, 385, 280}, {93, 160, 8, 98, 670, 178, 108, 110, 678, 109}, {355, 233, 226, 36, 542, 277, 663, 374, 278, 246}, {160, 93, 8, 169, 670, 108, 178, 210, 568, 211}, {227, 223, 50, 420, 236, 237, 235, 527, 529, 438}, {363, 0, 233, 36, 413, 283, 508, 406, 39, 278}, {486, 295, 287, 291, 510, 333, 629, 511, 319, 335}, {59, 294, 291, 226, 321, 322, 323, 256, 585, 611}, {66, 363, 299, 291, 409, 509, 347, 318, 646, 345}, {486, 352, 487, 357, 637, 639, 638, 514, 394, 660}, {295, 486, 487, 357, 510, 638, 679, 512, 514, 660}, {296, 22, 288, 166, 337, 305, 336, 604, 209, 680}, {361, 64, 2, 297, 401, 67, 414, 681, 342, 349}, {95, 97, 359, 73, 121, 653, 594, 122, 120, 388}, {423, 482, 417, 418, 620, 627, 460, 431, 618, 458}, {65, 295, 357, 66, 327, 512, 389, 69, 320, 380}, {97, 72, 359, 73, 129, 390, 653, 120, 76, 388}, {420, 223, 96, 485, 529, 649, 656, 528, 525, 675}, {159, 488, 293, 288, 682, 683, 650, 651, 684, 304}, {31, 165, 160, 354, 187, 186, 185, 377, 591, 590}, {484, 486, 487, 489, 502, 638, 560, 496, 503, 552}, {486, 295, 487, 287, 510, 679, 638, 629, 333, 662}, {59, 233, 226, 291, 282, 277, 256, 323, 647, 611}, {233, 355, 226, 291, 542, 663, 277, 647, 664, 611}, {425, 421, 489, 490, 449, 685, 580, 533, 517, 625}, {288, 488, 292, 85, 684, 622, 301, 300, 632, 302}, {421, 425, 489, 417, 449, 580, 685, 465, 463, 582}, {294, 228, 57, 290, 556, 238, 308, 307, 686, 306}, {165, 31, 358, 354, 187, 379, 555, 591, 377, 378}, {103, 356, 364, 73, 518, 410, 522, 149, 386, 412}, {352, 483, 358, 354, 595, 643, 395, 396, 589, 378}, {22, 159, 288, 166, 175, 651, 305, 209, 208, 680}, {356, 352, 359, 484, 400, 398, 387, 608, 598, 597}, {64, 361, 353, 297, 401, 402, 365, 342, 681, 577}, {355, 66, 357, 291, 382, 380, 381, 664, 318, 513}, {487, 486, 287, 489, 638, 629, 662, 552, 503, 630}, {298, 57, 490, 290, 339, 687, 534, 340, 306, 498}, {31, 362, 169, 6, 408, 671, 215, 35, 415, 220}, {488, 425, 292, 85, 579, 621, 622, 632, 441, 302}, {483, 352, 359, 354, 595, 398, 596, 589, 396, 372}, {94, 78, 418, 426, 111, 435, 673, 688, 468, 467}, {229, 43, 44, 100, 241, 47, 262, 506, 116, 132}, {31, 165, 358, 30, 187, 555, 379, 34, 196, 391}, {429, 231, 52, 490, 640, 281, 475, 516, 547, 546}, {94, 102, 78, 426, 144, 145, 111, 688, 559, 468}, {421, 429, 52, 490, 476, 475, 451, 517, 516, 546}, {364, 103, 73, 4, 522, 149, 412, 416, 153, 77}, {420, 227, 424, 50, 527, 571, 437, 438, 235, 436}, {104, 80, 5, 428, 152, 84, 156, 689, 473, 478}, {227, 51, 52, 424, 260, 55, 255, 571, 456, 453}, {487, 289, 293, 287, 600, 313, 601, 662, 331, 328}, {166, 159, 288, 488, 208, 651, 680, 690, 682, 684}, {289, 161, 353, 487, 586, 562, 578, 600, 564, 566}, {482, 485, 489, 417, 548, 495, 539, 627, 544, 582}, {50, 227, 424, 51, 235, 571, 436, 54, 260, 456}, {488, 489, 287, 292, 538, 630, 661, 622, 623, 330}, {482, 483, 157, 488, 535, 616, 665, 536, 537, 645}, {80, 420, 104, 96, 445, 657, 152, 126, 656, 150}, {232, 104, 45, 5, 691, 151, 279, 286, 156, 49}, {288, 488, 287, 292, 684, 661, 329, 301, 622, 330}, {295, 289, 487, 287, 310, 600, 679, 333, 331, 662}, {157, 161, 163, 487, 202, 192, 201, 644, 564, 602}, {483, 482, 164, 98, 535, 692, 654, 694, 693, 558}, {3, 296, 85, 427, 350, 338, 88, 479, 631, 471}, {92, 483, 93, 98, 530, 668, 133, 135, 694, 110}, {95, 484, 100, 225, 554, 655, 115, 593, 636, 695}, {231, 224, 490, 57, 273, 545, 547, 274, 240, 687}, {64, 289, 353, 357, 311, 578, 365, 367, 659, 366}, {2, 297, 24, 168, 349, 344, 28, 218, 696, 217}, {361, 297, 168, 353, 681, 696, 652, 402, 577, 697}, {353, 161, 168, 29, 562, 212, 697, 370, 181, 213}, {289, 295, 487, 357, 310, 679, 600, 659, 512, 660}, {352, 353, 487, 357, 393, 566, 639, 394, 366, 660}, {361, 353, 168, 29, 402, 697, 652, 403, 370, 213}, {484, 229, 100, 225, 574, 506, 655, 636, 242, 695}, {104, 223, 232, 45, 648, 271, 691, 151, 247, 279}, {160, 164, 8, 98, 177, 176, 178, 678, 558, 109}, {164, 9, 8, 98, 197, 12, 176, 558, 131, 109}, {165, 161, 358, 29, 180, 563, 555, 179, 181, 368}, {297, 361, 168, 2, 681, 652, 696, 349, 414, 218}, {161, 353, 358, 29, 562, 369, 563, 181, 370, 368}, {230, 37, 38, 360, 261, 41, 252, 605, 392, 383}, {43, 95, 100, 225, 114, 115, 116, 243, 593, 695}, {420, 80, 104, 428, 445, 152, 657, 469, 473, 689}, {232, 104, 5, 428, 691, 156, 286, 642, 689, 478}, {59, 299, 233, 291, 346, 507, 282, 323, 345, 647}, {355, 363, 66, 291, 407, 409, 382, 664, 646, 318}, {158, 94, 418, 426, 540, 673, 614, 677, 688, 467}, {87, 429, 298, 1, 477, 603, 343, 91, 481, 348}, {420, 227, 485, 424, 527, 526, 528, 437, 571, 543}, {482, 422, 418, 99, 626, 434, 618, 674, 569, 666}, {229, 43, 100, 225, 241, 116, 506, 242, 243, 695}, {294, 486, 287, 291, 609, 629, 334, 322, 511, 335}, {17, 166, 419, 159, 216, 698, 444, 188, 208, 699}, {419, 166, 17, 427, 698, 216, 444, 472, 613, 474}, {166, 488, 419, 159, 690, 634, 698, 208, 682, 699}, {419, 488, 166, 427, 634, 690, 698, 472, 633, 613}, {160, 98, 483, 164, 678, 694, 588, 177, 558, 654}, {483, 98, 160, 93, 694, 678, 588, 668, 110, 670}, {226, 360, 486, 355, 700, 701, 610, 663, 375, 658}, {360, 36, 226, 230, 376, 246, 700, 605, 244, 245}, {226, 36, 360, 355, 246, 376, 700, 663, 374, 375}, {93, 169, 362, 101, 568, 671, 702, 142, 567, 667}, {93, 362, 71, 101, 702, 405, 107, 142, 667, 141}, {71, 362, 93, 354, 405, 702, 107, 373, 404, 669}, {489, 424, 417, 485, 572, 464, 582, 495, 543, 544}, {417, 424, 489, 421, 464, 572, 582, 465, 452, 685}, {102, 10, 158, 94, 148, 182, 703, 144, 119, 540}, {158, 10, 102, 167, 182, 148, 703, 206, 214, 557}, {102, 158, 426, 94, 703, 677, 559, 144, 540, 688}, {426, 158, 102, 167, 677, 703, 559, 549, 206, 557}, {421, 489, 227, 424, 685, 570, 704, 452, 572, 571}, {52, 421, 227, 424, 451, 704, 255, 453, 452, 571}, {489, 227, 222, 224, 570, 263, 501, 705, 254, 265}, {489, 222, 227, 485, 501, 263, 570, 495, 515, 526}, {87, 425, 292, 490, 448, 621, 315, 497, 533, 499}, {292, 425, 87, 86, 621, 448, 315, 324, 457, 90}, {104, 420, 232, 223, 657, 706, 691, 648, 529, 271}, {104, 232, 420, 428, 691, 706, 657, 689, 642, 469}, {232, 420, 50, 223, 706, 438, 272, 271, 529, 237}, {232, 50, 420, 428, 272, 438, 706, 642, 470, 469}, {226, 484, 360, 230, 635, 607, 700, 245, 606, 605}, {226, 360, 484, 486, 700, 607, 635, 610, 701, 502}, {486, 360, 352, 355, 701, 399, 637, 658, 375, 397}, {352, 360, 486, 484, 399, 701, 637, 598, 607, 502}, {162, 488, 157, 159, 707, 645, 198, 189, 682, 200}, {157, 488, 162, 482, 645, 707, 198, 665, 536, 619}, {490, 57, 429, 231, 687, 708, 516, 547, 274, 640}, {429, 57, 490, 298, 708, 687, 516, 603, 339, 534}, {57, 1, 429, 231, 60, 481, 708, 274, 284, 640}, {429, 1, 57, 298, 481, 60, 708, 603, 348, 339}, {158, 98, 482, 94, 541, 693, 617, 540, 117, 672}, {482, 98, 158, 164, 693, 541, 617, 692, 558, 183}, {353, 297, 161, 289, 577, 709, 562, 578, 341, 586}, {353, 161, 297, 168, 562, 709, 577, 697, 212, 696}, {161, 297, 24, 289, 709, 344, 191, 586, 341, 312}, {161, 24, 297, 168, 191, 344, 709, 212, 217, 696}, {159, 293, 487, 163, 650, 601, 710, 174, 584, 602}, {487, 293, 159, 488, 601, 650, 710, 551, 683, 682}, {159, 487, 157, 163, 710, 644, 200, 174, 602, 201}, {157, 487, 159, 488, 644, 710, 200, 645, 551, 682}, {290, 228, 486, 294, 686, 612, 628, 307, 556, 609}, {290, 486, 228, 489, 628, 612, 686, 624, 503, 711}, {485, 99, 420, 422, 676, 712, 528, 576, 569, 446}, {420, 99, 485, 96, 712, 676, 528, 656, 127, 675}, {99, 80, 420, 422, 128, 445, 712, 569, 447, 446}, {420, 80, 99, 96, 445, 128, 712, 656, 126, 127}, {96, 484, 229, 100, 713, 574, 505, 124, 655, 506}, {92, 96, 484, 485, 140, 713, 531, 532, 675, 492}, {92, 484, 96, 100, 531, 713, 140, 139, 655, 124}, {161, 358, 483, 165, 563, 643, 714, 180, 555, 587}, {483, 358, 161, 487, 643, 563, 714, 550, 565, 564}, {161, 483, 157, 165, 714, 616, 202, 180, 587, 205}, {157, 483, 161, 487, 616, 714, 202, 644, 550, 564}, {362, 31, 160, 354, 408, 185, 715, 404, 377, 590}, {160, 31, 362, 169, 185, 408, 715, 210, 215, 671}, {362, 160, 93, 354, 715, 670, 702, 404, 590, 669}, {93, 160, 362, 169, 670, 715, 702, 568, 210, 671}, {482, 164, 157, 483, 692, 203, 665, 535, 654, 616}, {157, 164, 482, 158, 203, 692, 665, 199, 183, 617}, {228, 489, 222, 224, 711, 501, 266, 239, 705, 265}, {222, 489, 228, 486, 501, 711, 266, 504, 503, 612}, {288, 166, 427, 296, 680, 613, 716, 336, 604, 631}, {288, 427, 166, 488, 716, 613, 680, 684, 633, 690}, {85, 288, 427, 296, 300, 716, 471, 338, 336, 631}, {85, 427, 288, 488, 471, 716, 300, 632, 633, 684}, {484, 223, 96, 229, 575, 649, 713, 574, 248, 505}, {484, 96, 223, 485, 713, 649, 575, 492, 675, 525}, {488, 293, 287, 487, 683, 328, 661, 551, 601, 662}, {287, 293, 488, 288, 328, 683, 661, 329, 304, 684}, {419, 488, 162, 159, 634, 707, 717, 699, 682, 189}, {162, 419, 17, 423, 717, 444, 190, 561, 443, 442}, {17, 419, 162, 159, 444, 717, 190, 188, 699, 189}, {482, 98, 92, 94, 693, 135, 573, 672, 117, 136}, {92, 98, 482, 483, 135, 693, 573, 530, 694, 535}, {358, 487, 352, 353, 565, 639, 395, 369, 566, 393}, {352, 487, 358, 483, 639, 565, 395, 595, 550, 643}, {359, 483, 93, 97, 596, 668, 718, 653, 641, 105}, {359, 93, 483, 354, 718, 668, 596, 372, 669, 589}, {71, 359, 93, 97, 371, 718, 107, 106, 653, 105}, {71, 93, 359, 354, 107, 718, 371, 373, 669, 372}, {52, 490, 227, 421, 546, 719, 255, 451, 517, 704}, {227, 490, 52, 224, 719, 546, 255, 254, 545, 253}, {490, 489, 227, 421, 625, 570, 719, 517, 685, 704}, {227, 489, 490, 224, 570, 625, 719, 254, 705, 545}, {57, 490, 228, 224, 687, 720, 238, 240, 545, 239}, {228, 490, 57, 290, 720, 687, 238, 686, 498, 306}, {490, 489, 228, 224, 625, 711, 720, 545, 705, 239}, {228, 489, 490, 290, 711, 625, 720, 686, 624, 498}, {162, 419, 482, 488, 717, 721, 619, 707, 634, 536}, {482, 419, 162, 423, 721, 717, 619, 620, 443, 561}, {419, 417, 482, 488, 461, 627, 721, 634, 581, 536}, {482, 417, 419, 423, 627, 461, 721, 620, 460, 443}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:triangle_6
+   + id             : mesh:connectivities:_triangle_6
    + size           : 240
    + nb_component   : 6
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{93, 97, 71, 105, 106, 107}, {93, 8, 98, 108, 109, 110}, {94, 78, 99, 111, 112, 113}, {43, 95, 100, 114, 115, 116}, {94, 98, 10, 117, 118, 119}, {73, 97, 95, 120, 121, 122}, {45, 100, 96, 123, 124, 125}, {80, 96, 99, 126, 127, 128}, {71, 97, 72, 106, 129, 75}, {78, 79, 99, 82, 130, 112}, {8, 9, 98, 12, 131, 109}, {43, 100, 44, 116, 132, 47}, {72, 97, 73, 129, 120, 76}, {9, 10, 98, 13, 118, 131}, {79, 80, 99, 83, 128, 130}, {44, 100, 45, 132, 123, 48}, {93, 92, 97, 133, 134, 105}, {93, 98, 92, 110, 135, 133}, {94, 92, 98, 136, 135, 117}, {92, 95, 97, 137, 121, 134}, {94, 99, 92, 113, 138, 136}, {92, 100, 95, 139, 115, 137}, {92, 99, 96, 138, 127, 140}, {92, 96, 100, 140, 124, 139}, {93, 71, 101, 107, 141, 142}, {93, 101, 8, 142, 143, 108}, {94, 102, 78, 144, 145, 111}, {43, 103, 95, 146, 147, 114}, {94, 10, 102, 119, 148, 144}, {73, 95, 103, 122, 147, 149}, {45, 96, 104, 125, 150, 151}, {80, 104, 96, 152, 150, 126}, {4, 73, 103, 77, 149, 153}, {6, 101, 71, 154, 141, 74}, {7, 102, 10, 155, 148, 14}, {7, 78, 102, 81, 145, 155}, {6, 8, 101, 11, 143, 154}, {5, 104, 80, 156, 152, 84}, {4, 103, 43, 153, 146, 46}, {5, 45, 104, 49, 151, 156}, {15, 162, 158, 170, 171, 172}, {22, 163, 159, 173, 174, 175}, {8, 164, 160, 176, 177, 178}, {29, 165, 161, 179, 180, 181}, {10, 158, 164, 182, 183, 184}, {31, 160, 165, 185, 186, 187}, {17, 159, 162, 188, 189, 190}, {24, 161, 163, 191, 192, 193}, {22, 23, 163, 26, 194, 173}, {15, 16, 162, 19, 195, 170}, {29, 30, 165, 33, 196, 179}, {8, 9, 164, 12, 197, 176}, {16, 17, 162, 20, 190, 195}, {23, 24, 163, 27, 193, 194}, {9, 10, 164, 13, 184, 197}, {30, 31, 165, 34, 187, 196}, {158, 162, 157, 171, 198, 199}, {159, 157, 162, 200, 198, 189}, {159, 163, 157, 174, 201, 200}, {161, 157, 163, 202, 201, 192}, {158, 157, 164, 199, 203, 183}, {160, 164, 157, 177, 203, 204}, {160, 157, 165, 204, 205, 186}, {161, 165, 157, 180, 205, 202}, {15, 158, 167, 172, 206, 207}, {22, 159, 166, 175, 208, 209}, {8, 160, 169, 178, 210, 211}, {29, 161, 168, 181, 212, 213}, {10, 167, 158, 214, 206, 182}, {31, 169, 160, 215, 210, 185}, {17, 166, 159, 216, 208, 188}, {24, 168, 161, 217, 212, 191}, {2, 168, 24, 218, 217, 28}, {3, 166, 17, 219, 216, 21}, {6, 169, 31, 220, 215, 35}, {7, 167, 10, 221, 214, 14}, {7, 15, 167, 18, 207, 221}, {3, 22, 166, 25, 209, 219}, {6, 8, 169, 11, 211, 220}, {2, 29, 168, 32, 213, 218}, {50, 227, 223, 235, 236, 237}, {57, 228, 224, 238, 239, 240}, {43, 229, 225, 241, 242, 243}, {36, 230, 226, 244, 245, 246}, {45, 223, 229, 247, 248, 249}, {38, 225, 230, 250, 251, 252}, {52, 224, 227, 253, 254, 255}, {59, 226, 228, 256, 257, 258}, {57, 58, 228, 61, 259, 238}, {50, 51, 227, 54, 260, 235}, {36, 37, 230, 40, 261, 244}, {43, 44, 229, 47, 262, 241}, {51, 52, 227, 55, 255, 260}, {58, 59, 228, 62, 258, 259}, {44, 45, 229, 48, 249, 262}, {37, 38, 230, 41, 252, 261}, {223, 227, 222, 236, 263, 264}, {224, 222, 227, 265, 263, 254}, {224, 228, 222, 239, 266, 265}, {222, 228, 226, 266, 257, 267}, {223, 222, 229, 264, 268, 248}, {222, 225, 229, 269, 242, 268}, {222, 230, 225, 270, 251, 269}, {222, 226, 230, 267, 245, 270}, {50, 223, 232, 237, 271, 272}, {57, 224, 231, 240, 273, 274}, {43, 225, 234, 243, 275, 276}, {36, 226, 233, 246, 277, 278}, {45, 232, 223, 279, 271, 247}, {38, 234, 225, 280, 275, 250}, {52, 231, 224, 281, 273, 253}, {59, 233, 226, 282, 277, 256}, {0, 233, 59, 283, 282, 63}, {1, 231, 52, 284, 281, 56}, {4, 234, 38, 285, 280, 42}, {5, 232, 45, 286, 279, 49}, {5, 50, 232, 53, 272, 286}, {1, 57, 231, 60, 274, 284}, {4, 43, 234, 46, 276, 285}, {0, 36, 233, 39, 278, 283}, {85, 288, 292, 300, 301, 302}, {22, 293, 288, 303, 304, 305}, {57, 290, 294, 306, 307, 308}, {64, 295, 289, 309, 310, 311}, {24, 289, 293, 312, 313, 314}, {87, 292, 290, 315, 316, 317}, {66, 291, 295, 318, 319, 320}, {59, 294, 291, 321, 322, 323}, {85, 292, 86, 302, 324, 89}, {22, 23, 293, 26, 325, 303}, {57, 294, 58, 308, 326, 61}, {64, 65, 295, 68, 327, 309}, {86, 292, 87, 324, 315, 90}, {23, 24, 293, 27, 314, 325}, {65, 66, 295, 69, 320, 327}, {58, 294, 59, 326, 321, 62}, {288, 293, 287, 304, 328, 329}, {288, 287, 292, 329, 330, 301}, {289, 287, 293, 331, 328, 313}, {290, 292, 287, 316, 330, 332}, {289, 295, 287, 310, 333, 331}, {290, 287, 294, 332, 334, 307}, {291, 294, 287, 322, 334, 335}, {291, 287, 295, 335, 333, 319}, {22, 288, 296, 305, 336, 337}, {85, 296, 288, 338, 336, 300}, {57, 298, 290, 339, 340, 306}, {64, 289, 297, 311, 341, 342}, {87, 290, 298, 317, 340, 343}, {24, 297, 289, 344, 341, 312}, {59, 291, 299, 323, 345, 346}, {66, 299, 291, 347, 345, 318}, {1, 87, 298, 91, 343, 348}, {2, 297, 24, 349, 344, 28}, {3, 296, 85, 350, 338, 88}, {3, 22, 296, 25, 337, 350}, {1, 298, 57, 348, 339, 60}, {2, 64, 297, 67, 342, 349}, {0, 59, 299, 63, 346, 351}, {0, 299, 66, 351, 347, 70}, {64, 353, 357, 365, 366, 367}, {29, 358, 353, 368, 369, 370}, {71, 359, 354, 371, 372, 373}, {36, 355, 360, 374, 375, 376}, {31, 354, 358, 377, 378, 379}, {66, 357, 355, 380, 381, 382}, {38, 360, 356, 383, 384, 385}, {73, 356, 359, 386, 387, 388}, {64, 357, 65, 367, 389, 68}, {71, 72, 359, 75, 390, 371}, {29, 30, 358, 33, 391, 368}, {36, 360, 37, 376, 392, 40}, {65, 357, 66, 389, 380, 69}, {30, 31, 358, 34, 379, 391}, {72, 73, 359, 76, 388, 390}, {37, 360, 38, 392, 383, 41}, {353, 352, 357, 393, 394, 366}, {353, 358, 352, 369, 395, 393}, {354, 352, 358, 396, 395, 378}, {355, 357, 352, 381, 394, 397}, {354, 359, 352, 372, 398, 396}, {355, 352, 360, 397, 399, 375}, {356, 352, 359, 400, 398, 387}, {356, 360, 352, 384, 399, 400}, {64, 361, 353, 401, 402, 365}, {29, 353, 361, 370, 402, 403}, {71, 354, 362, 373, 404, 405}, {36, 363, 355, 406, 407, 374}, {31, 362, 354, 408, 404, 377}, {66, 355, 363, 382, 407, 409}, {38, 356, 364, 385, 410, 411}, {73, 364, 356, 412, 410, 386}, {0, 66, 363, 70, 409, 413}, {2, 361, 64, 414, 401, 67}, {6, 362, 31, 415, 408, 35}, {6, 71, 362, 74, 405, 415}, {2, 29, 361, 32, 403, 414}, {4, 364, 73, 416, 412, 77}, {0, 363, 36, 413, 406, 39}, {4, 38, 364, 42, 411, 416}, {15, 418, 423, 430, 431, 432}, {78, 422, 418, 433, 434, 435}, {50, 424, 420, 436, 437, 438}, {85, 419, 425, 439, 440, 441}, {17, 423, 419, 442, 443, 444}, {80, 420, 422, 445, 446, 447}, {87, 425, 421, 448, 449, 450}, {52, 421, 424, 451, 452, 453}, {15, 423, 16, 432, 454, 19}, {78, 79, 422, 82, 455, 433}, {50, 51, 424, 54, 456, 436}, {85, 425, 86, 441, 457, 89}, {79, 80, 422, 83, 447, 455}, {16, 423, 17, 454, 442, 20}, {86, 425, 87, 457, 448, 90}, {51, 52, 424, 55, 453, 456}, {417, 418, 422, 458, 434, 459}, {417, 423, 418, 460, 431, 458}, {419, 423, 417, 443, 460, 461}, {420, 417, 422, 462, 459, 446}, {419, 417, 425, 461, 463, 440}, {420, 424, 417, 437, 464, 462}, {421, 417, 424, 465, 464, 452}, {421, 425, 417, 449, 463, 465}, {15, 426, 418, 466, 467, 430}, {78, 418, 426, 435, 467, 468}, {50, 420, 428, 438, 469, 470}, {85, 427, 419, 471, 472, 439}, {80, 428, 420, 473, 469, 445}, {17, 419, 427, 444, 472, 474}, {52, 429, 421, 475, 476, 451}, {87, 421, 429, 450, 476, 477}, {5, 428, 80, 478, 473, 84}, {3, 17, 427, 21, 474, 479}, {7, 78, 426, 81, 468, 480}, {7, 426, 15, 480, 466, 18}, {5, 50, 428, 53, 470, 478}, {3, 427, 85, 479, 471, 88}, {1, 429, 52, 481, 475, 56}, {1, 87, 429, 91, 477, 481}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 722
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {0.125, 1, 1}, {0.375, 1, 1}, {0.625, 1, 1}, {0.875, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {1, 1, 0.875}, {1, 1, 0.625}, {1, 1, 0.375}, {1, 1, 0.125}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0.875, 1, 0}, {0.625, 1, 0}, {0.375, 1, 0}, {0.125, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 1, 0.125}, {0, 1, 0.375}, {0, 1, 0.625}, {0, 1, 0.875}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0, 0, 0.125}, {0, 0, 0.375}, {0, 0, 0.625}, {0, 0, 0.875}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {0.125, 0, 1}, {0.375, 0, 1}, {0.625, 0, 1}, {0.875, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {1, 0, 0.875}, {1, 0, 0.625}, {1, 0, 0.375}, {1, 0, 0.125}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0.875, 0, 0}, {0.625, 0, 0}, {0.375, 0, 0}, {0.125, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.875, 0}, {0, 0.625, 0}, {0, 0.375, 0}, {0, 0.125, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {0, 0.875, 1}, {0, 0.625, 1}, {0, 0.375, 1}, {0, 0.125, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.875, 1}, {1, 0.625, 1}, {1, 0.375, 1}, {1, 0.125, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {1, 0.875, 0}, {1, 0.625, 0}, {1, 0.375, 0}, {1, 0.125, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.234692, 0.610874, 1}, {0.095431, 0.625135, 1}, {0.139261, 0.735739, 1}, {0.264261, 0.860739, 1}, {0.375, 0.904691, 1}, {0.389261, 0.76543, 1}, {0.860739, 0.735739, 1}, {0.904569, 0.625135, 1}, {0.765308, 0.610874, 1}, {0.264261, 0.139383, 1}, {0.389261, 0.234962, 1}, {0.375, 0.0955798, 1}, {0.610739, 0.76543, 1}, {0.625, 0.904691, 1}, {0.735739, 0.860739, 1}, {0.095431, 0.375135, 1}, {0.234692, 0.389518, 1}, {0.139261, 0.264383, 1}, {0.625, 0.0955798, 1}, {0.610739, 0.234962, 1}, {0.735739, 0.139383, 1}, {0.860739, 0.264383, 1}, {0.765308, 0.389518, 1}, {0.904569, 0.375135, 1}, {0.095431, 0.500135, 1}, {0.904569, 0.500135, 1}, {0.5, 0.904691, 1}, {0.5, 0.0955798, 1}, {0.389261, 0.611834, 1}, {0.345431, 0.501231, 1}, {0.5, 0.655786, 1}, {0.610739, 0.611834, 1}, {0.389261, 0.390478, 1}, {0.654569, 0.501231, 1}, {0.5, 0.346675, 1}, {0.610739, 0.390478, 1}, {0.0709532, 0.804047, 1}, {0.210214, 0.789786, 1}, {0.195953, 0.929047, 1}, {0.789786, 0.789786, 1}, {0.929047, 0.804047, 1}, {0.195953, 0.0709735, 1}, {0.210214, 0.210356, 1}, {0.804047, 0.929047, 1}, {0.0709532, 0.195973, 1}, {0.789786, 0.210356, 1}, {0.804047, 0.0709735, 1}, {0.929047, 0.195973, 1}, {0.0709532, 0.0709735, 1}, {0.0709532, 0.929047, 1}, {0.929047, 0.929047, 1}, {0.929047, 0.0709735, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.904569, 1, 0.625}, {0.765308, 1, 0.610739}, {0.860739, 1, 0.735739}, {0.625, 1, 0.095431}, {0.610739, 1, 0.234692}, {0.735739, 1, 0.139261}, {0.375, 1, 0.904569}, {0.389261, 1, 0.765308}, {0.264261, 1, 0.860739}, {0.095431, 1, 0.375}, {0.234692, 1, 0.389261}, {0.139261, 1, 0.264261}, {0.735739, 1, 0.860739}, {0.610739, 1, 0.765308}, {0.625, 1, 0.904569}, {0.139261, 1, 0.735739}, {0.234692, 1, 0.610739}, {0.095431, 1, 0.625}, {0.860739, 1, 0.264261}, {0.765308, 1, 0.389261}, {0.904569, 1, 0.375}, {0.264261, 1, 0.139261}, {0.389261, 1, 0.234692}, {0.375, 1, 0.095431}, {0.5, 1, 0.095431}, {0.904569, 1, 0.5}, {0.095431, 1, 0.5}, {0.5, 1, 0.904569}, {0.654569, 1, 0.5}, {0.610739, 1, 0.610739}, {0.610739, 1, 0.389261}, {0.5, 1, 0.345431}, {0.389261, 1, 0.389261}, {0.5, 1, 0.654569}, {0.389261, 1, 0.610739}, {0.345431, 1, 0.5}, {0.789786, 1, 0.789786}, {0.929047, 1, 0.804047}, {0.789786, 1, 0.210214}, {0.804047, 1, 0.0709532}, {0.210214, 1, 0.789786}, {0.195953, 1, 0.929047}, {0.210214, 1, 0.210214}, {0.0709532, 1, 0.195953}, {0.804047, 1, 0.929047}, {0.0709532, 1, 0.804047}, {0.929047, 1, 0.195953}, {0.195953, 1, 0.0709532}, {0.0709532, 1, 0.0709532}, {0.929047, 1, 0.0709532}, {0.0709532, 1, 0.929047}, {0.929047, 1, 0.929047}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.904691, 0, 0.625}, {0.76543, 0, 0.610739}, {0.860739, 0, 0.735739}, {0.625135, 0, 0.095431}, {0.610874, 0, 0.234692}, {0.735739, 0, 0.139261}, {0.375135, 0, 0.904569}, {0.389518, 0, 0.765308}, {0.264383, 0, 0.860739}, {0.0955798, 0, 0.375}, {0.234962, 0, 0.389261}, {0.139383, 0, 0.264261}, {0.735739, 0, 0.860739}, {0.610874, 0, 0.765308}, {0.625135, 0, 0.904569}, {0.139383, 0, 0.735739}, {0.234962, 0, 0.610739}, {0.0955798, 0, 0.625}, {0.860739, 0, 0.264261}, {0.76543, 0, 0.389261}, {0.904691, 0, 0.375}, {0.264383, 0, 0.139261}, {0.389518, 0, 0.234692}, {0.375135, 0, 0.095431}, {0.500135, 0, 0.095431}, {0.904691, 0, 0.5}, {0.0955798, 0, 0.5}, {0.500135, 0, 0.904569}, {0.655786, 0, 0.5}, {0.611834, 0, 0.610739}, {0.611834, 0, 0.389261}, {0.501231, 0, 0.345431}, {0.390478, 0, 0.389261}, {0.501231, 0, 0.654569}, {0.390478, 0, 0.610739}, {0.346675, 0, 0.5}, {0.789786, 0, 0.789786}, {0.929047, 0, 0.804047}, {0.789786, 0, 0.210214}, {0.804047, 0, 0.0709532}, {0.210356, 0, 0.789786}, {0.195973, 0, 0.929047}, {0.210356, 0, 0.210214}, {0.0709735, 0, 0.195953}, {0.804047, 0, 0.929047}, {0.0709735, 0, 0.804047}, {0.929047, 0, 0.195953}, {0.195973, 0, 0.0709532}, {0.0709735, 0, 0.0709532}, {0.929047, 0, 0.0709532}, {0.0709735, 0, 0.929047}, {0.929047, 0, 0.929047}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0.860739, 0.735739, 0}, {0.765308, 0.610739, 0}, {0.904569, 0.625, 0}, {0.625, 0.904569, 0}, {0.610739, 0.765308, 0}, {0.735739, 0.860739, 0}, {0.735739, 0.139261, 0}, {0.610739, 0.234692, 0}, {0.625, 0.095431, 0}, {0.095431, 0.625, 0}, {0.234692, 0.610739, 0}, {0.139261, 0.735739, 0}, {0.264261, 0.860739, 0}, {0.389261, 0.765308, 0}, {0.375, 0.904569, 0}, {0.904569, 0.375, 0}, {0.765308, 0.389261, 0}, {0.860739, 0.264261, 0}, {0.139261, 0.264261, 0}, {0.234692, 0.389261, 0}, {0.095431, 0.375, 0}, {0.375, 0.095431, 0}, {0.389261, 0.234692, 0}, {0.264261, 0.139261, 0}, {0.904569, 0.5, 0}, {0.5, 0.904569, 0}, {0.5, 0.095431, 0}, {0.095431, 0.5, 0}, {0.5, 0.654569, 0}, {0.610739, 0.610739, 0}, {0.654569, 0.5, 0}, {0.389261, 0.610739, 0}, {0.610739, 0.389261, 0}, {0.345431, 0.5, 0}, {0.5, 0.345431, 0}, {0.389261, 0.389261, 0}, {0.789786, 0.789786, 0}, {0.804047, 0.929047, 0}, {0.929047, 0.804047, 0}, {0.804047, 0.0709532, 0}, {0.789786, 0.210214, 0}, {0.210214, 0.789786, 0}, {0.0709532, 0.804047, 0}, {0.929047, 0.195953, 0}, {0.195953, 0.929047, 0}, {0.210214, 0.210214, 0}, {0.195953, 0.0709532, 0}, {0.0709532, 0.195953, 0}, {0.929047, 0.0709532, 0}, {0.0709532, 0.929047, 0}, {0.929047, 0.929047, 0}, {0.0709532, 0.0709532, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {0, 0.735739, 0.139261}, {0, 0.610739, 0.234692}, {0, 0.625, 0.095431}, {0, 0.904569, 0.375}, {0, 0.765308, 0.389261}, {0, 0.860739, 0.264261}, {0, 0.625, 0.904569}, {0, 0.610739, 0.765308}, {0, 0.735739, 0.860739}, {0, 0.139261, 0.264261}, {0, 0.234692, 0.389261}, {0, 0.095431, 0.375}, {0, 0.860739, 0.735739}, {0, 0.765308, 0.610739}, {0, 0.904569, 0.625}, {0, 0.375, 0.095431}, {0, 0.389261, 0.234692}, {0, 0.264261, 0.139261}, {0, 0.095431, 0.625}, {0, 0.234692, 0.610739}, {0, 0.139261, 0.735739}, {0, 0.264261, 0.860739}, {0, 0.389261, 0.765308}, {0, 0.375, 0.904569}, {0, 0.5, 0.095431}, {0, 0.5, 0.904569}, {0, 0.904569, 0.5}, {0, 0.095431, 0.5}, {0, 0.610739, 0.389261}, {0, 0.5, 0.345431}, {0, 0.654569, 0.5}, {0, 0.610739, 0.610739}, {0, 0.389261, 0.389261}, {0, 0.5, 0.654569}, {0, 0.345431, 0.5}, {0, 0.389261, 0.610739}, {0, 0.804047, 0.0709532}, {0, 0.789786, 0.210214}, {0, 0.929047, 0.195953}, {0, 0.789786, 0.789786}, {0, 0.804047, 0.929047}, {0, 0.0709532, 0.195953}, {0, 0.210214, 0.210214}, {0, 0.929047, 0.804047}, {0, 0.195953, 0.0709532}, {0, 0.210214, 0.789786}, {0, 0.0709532, 0.804047}, {0, 0.195953, 0.929047}, {0, 0.0709532, 0.0709532}, {0, 0.929047, 0.0709532}, {0, 0.929047, 0.929047}, {0, 0.0709532, 0.929047}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {1, 0.860678, 0.735678}, {1, 0.76518, 0.610611}, {1, 0.904501, 0.624932}, {1, 0.624932, 0.904501}, {1, 0.610611, 0.76518}, {1, 0.735678, 0.860678}, {1, 0.0953701, 0.624939}, {1, 0.234631, 0.610678}, {1, 0.139261, 0.735739}, {1, 0.735739, 0.139261}, {1, 0.610678, 0.234631}, {1, 0.624939, 0.0953701}, {1, 0.904501, 0.374932}, {1, 0.76524, 0.389193}, {1, 0.860739, 0.264261}, {1, 0.264261, 0.860739}, {1, 0.389193, 0.76524}, {1, 0.374932, 0.904501}, {1, 0.374939, 0.0953701}, {1, 0.3892, 0.234631}, {1, 0.264261, 0.139261}, {1, 0.139261, 0.264261}, {1, 0.234631, 0.3892}, {1, 0.0953701, 0.374939}, {1, 0.904501, 0.499932}, {1, 0.499932, 0.904501}, {1, 0.0953701, 0.499939}, {1, 0.499939, 0.0953701}, {1, 0.610131, 0.610131}, {1, 0.499385, 0.653954}, {1, 0.653954, 0.499385}, {1, 0.610191, 0.388713}, {1, 0.388713, 0.610191}, {1, 0.499391, 0.344822}, {1, 0.344822, 0.499391}, {1, 0.388713, 0.388713}, {1, 0.929037, 0.804037}, {1, 0.789715, 0.789715}, {1, 0.804037, 0.929037}, {1, 0.210214, 0.789786}, {1, 0.0709532, 0.804047}, {1, 0.804047, 0.0709532}, {1, 0.789786, 0.210214}, {1, 0.195953, 0.929047}, {1, 0.929047, 0.195953}, {1, 0.0709532, 0.195953}, {1, 0.210214, 0.210214}, {1, 0.195953, 0.0709532}, {1, 0.0709532, 0.929047}, {1, 0.929047, 0.0709532}, {1, 0.929037, 0.929037}, {1, 0.0709532, 0.0709532}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}, {0.403787, 0.502163, 0.604301}, {0.59395, 0.335588, 0.588613}, {0.57425, 0.502163, 0.604301}, {0.533055, 0.519268, 0.479373}, {0.723218, 0.352693, 0.463685}, {0.552756, 0.352693, 0.463685}, {0.907719, 0.227933, 0.0932632}, {0.768458, 0.242194, 0.0932632}, {0.812288, 0.352933, 0.0932632}, {0.462839, 0.167794, 0.544306}, {0.592107, 0.184899, 0.419378}, {0.423487, 0.335588, 0.41815}, {0.552756, 0.352693, 0.293222}, {0.462839, 0.167794, 0.373844}, {0.610874, 0.139383, 0.904569}, {0.500135, 0.0955798, 0.904569}, {0.141927, 0.0709532, 0.0709532}, {0.0709735, 0.0709532, 0.141906}, {0.0709532, 0.141906, 0.0709532}, {0.307175, 0.417794, 0.123844}, {0.351005, 0.307055, 0.123844}, {0.095431, 0.5, 0.095431}, {0.139261, 0.389261, 0.095431}, {0.211744, 0.417794, 0.219275}, {0.633302, 0.167794, 0.544306}, {0.907719, 0.173886, 0.164216}, {0.907719, 0.242194, 0.232524}, {0.0709532, 0.210234, 0.860739}, {0.141927, 0.0709735, 0.929047}, {0.0709735, 0.139261, 0.789786}, {0.0709735, 0.0709532, 0.858094}, {0.0709532, 0.141927, 0.929047}, {0.210336, 0.0709735, 0.860739}, {0.139383, 0.139261, 0.721478}, {0.742945, 0.167794, 0.655045}, {0.786897, 0.167794, 0.544306}, {0.904691, 0.139261, 0.610739}, {0.882206, 0.307055, 0.655045}, {0.860739, 0.139261, 0.721478}, {0.442043, 0.585464, 0.809994}, {0.461744, 0.418889, 0.794306}, {0.632206, 0.418889, 0.794306}, {0.907719, 0.352872, 0.188633}, {0.836765, 0.173886, 0.0932632}, {0.549357, 0.674254, 0.636624}, {0.73952, 0.678141, 0.450474}, {0.57425, 0.672625, 0.433838}, {0.723218, 0.523156, 0.293222}, {0.698326, 0.524784, 0.496008}, {0.721478, 0.860739, 0.860739}, {0.610739, 0.904691, 0.860739}, {0.0709735, 0.139261, 0.210214}, {0.882206, 0.263164, 0.544245}, {0.882206, 0.417246, 0.543759}, {0.768458, 0.102933, 0.232524}, {0.907719, 0.102933, 0.218263}, {0.836765, 0.102933, 0.164216}, {0.73952, 0.507679, 0.620936}, {0.929047, 0.929037, 0.858083}, {0.403787, 0.672625, 0.433838}, {0.59395, 0.676512, 0.247688}, {0.552756, 0.523156, 0.293222}, {0.307175, 0.417929, 0.794306}, {0.351005, 0.307176, 0.794306}, {0.095431, 0.904569, 0.5}, {0.500135, 0.095431, 0.095431}, {0.858094, 0.929047, 0.929047}, {0.5, 0.904691, 0.904569}, {0.929047, 0.858083, 0.929037}, {0.423487, 0.50605, 0.41815}, {0.904569, 0.904501, 0.499932}, {0.139261, 0.860739, 0.278522}, {0.139261, 0.904569, 0.389261}, {0.351005, 0.838256, 0.263105}, {0.211744, 0.742825, 0.373844}, {0.211744, 0.698995, 0.263105}, {0.141906, 0.929047, 0.929047}, {0.210214, 0.860739, 0.929047}, {0.904569, 0.500068, 0.904501}, {0.745703, 0.184899, 0.419378}, {0.904691, 0.0953701, 0.499939}, {0.841012, 0.280269, 0.419318}, {0.607314, 0.59098, 0.82663}, {0.461879, 0.167794, 0.698875}, {0.572483, 0.167794, 0.655045}, {0.882206, 0.417726, 0.698808}, {0.0709532, 0.789786, 0.139261}, {0.139261, 0.721478, 0.139261}, {0.882206, 0.588195, 0.219214}, {0.841012, 0.434839, 0.264749}, {0.882206, 0.587709, 0.373296}, {0.841012, 0.434352, 0.418831}, {0.389261, 0.904569, 0.139261}, {0.5, 0.904569, 0.095431}, {0.389383, 0.095431, 0.139261}, {0.278522, 0.860739, 0.139261}, {0.287474, 0.834369, 0.559994}, {0.331304, 0.834369, 0.670734}, {0.192043, 0.695108, 0.670734}, {0.139261, 0.860739, 0.721478}, {0.095431, 0.860739, 0.610739}, {0.139261, 0.278644, 0.860739}, {0.278644, 0.139383, 0.860739}, {0.139261, 0.389383, 0.904569}, {0.192043, 0.584369, 0.559994}, {0.192043, 0.584369, 0.714563}, {0.211744, 0.417794, 0.698875}, {0.211744, 0.417794, 0.544306}, {0.0955798, 0.139261, 0.610739}, {0.351005, 0.698995, 0.123844}, {0.461744, 0.742825, 0.123844}, {0.461744, 0.838256, 0.219275}, {0.929047, 0.141906, 0.0709532}, {0.858094, 0.929047, 0.0709532}, {0.0955798, 0.095431, 0.5}, {0.307323, 0.167794, 0.544306}, {0.211744, 0.263225, 0.544306}, {0.211744, 0.307055, 0.655045}, {0.461744, 0.263225, 0.123844}, {0.351126, 0.167794, 0.263105}, {0.278644, 0.139261, 0.139261}, {0.461879, 0.167794, 0.219275}, {0.929047, 0.929047, 0.141906}, {0.860739, 0.860678, 0.721417}, {0.904569, 0.860678, 0.610678}, {0.442043, 0.834369, 0.559994}, {0.718053, 0.839885, 0.687369}, {0.857314, 0.700563, 0.687308}, {0.761883, 0.839885, 0.57663}, {0.857314, 0.744386, 0.576562}, {0.904569, 0.499939, 0.0953701}, {0.786775, 0.588256, 0.123844}, {0.745581, 0.434899, 0.169378}, {0.701751, 0.32416, 0.169378}, {0.748731, 0.287832, 0.262642}, {0.857314, 0.589817, 0.731131}, {0.857314, 0.589337, 0.576082}, {0.572483, 0.307055, 0.123844}, {0.461744, 0.417794, 0.123844}, {0.591012, 0.434899, 0.169378}, {0.929047, 0.858094, 0.0709532}, {0.882206, 0.713256, 0.123844}, {0.882206, 0.767303, 0.194797}, {0.882206, 0.698995, 0.263105}, {0.351126, 0.167794, 0.433567}, {0.351126, 0.167794, 0.655045}, {0.211744, 0.417794, 0.373844}, {0.423487, 0.50605, 0.247688}, {0.211744, 0.588256, 0.373844}, {0.929047, 0.0709532, 0.141906}, {0.287474, 0.584504, 0.809994}, {0.929047, 0.0709532, 0.858094}, {0.192043, 0.738938, 0.559994}, {0.461744, 0.838256, 0.373844}, {0.632206, 0.838256, 0.373844}, {0.139261, 0.210214, 0.0709532}, {0.210234, 0.139261, 0.0709532}, {0.789786, 0.0709735, 0.860739}, {0.721478, 0.139383, 0.860739}, {0.610739, 0.904569, 0.139261}, {0.721478, 0.860739, 0.139261}, {0.0709532, 0.929047, 0.141906}, {0.095431, 0.500135, 0.904569}, {0.442043, 0.834369, 0.714563}, {0.461744, 0.263374, 0.794306}, {0.860739, 0.278644, 0.860739}, {0.929047, 0.210234, 0.860739}, {0.211744, 0.307055, 0.263105}, {0.139261, 0.610739, 0.095431}, {0.211744, 0.588256, 0.219275}, {0.632206, 0.588256, 0.123844}, {0.461744, 0.588256, 0.123844}, {0.139383, 0.139261, 0.278522}, {0.139261, 0.278522, 0.139261}, {0.607314, 0.839885, 0.57663}, {0.904569, 0.610813, 0.860678}, {0.0709532, 0.858094, 0.929047}, {0.331304, 0.695108, 0.809994}, {0.139261, 0.721478, 0.860739}, {0.278522, 0.860739, 0.860739}, {0.0709532, 0.929047, 0.858094}, {0.718053, 0.700624, 0.82663}, {0.860739, 0.721417, 0.860678}, {0.761883, 0.59002, 0.82663}, {0.742945, 0.307176, 0.794306}, {0.786775, 0.417929, 0.794306}, {0.860739, 0.929037, 0.789776}, {0.389261, 0.904691, 0.860739}, {0.307175, 0.588256, 0.123844}, {0.789786, 0.860739, 0.0709532}, {0.0709532, 0.858094, 0.0709532}, {0.742945, 0.838256, 0.263105}, {0.632206, 0.742825, 0.123844}, {0.742945, 0.698995, 0.123844}, {0.841012, 0.32416, 0.308639}, {0.610874, 0.139261, 0.095431}, {0.782719, 0.102933, 0.0932632}, {0.860739, 0.789776, 0.929037}, {0.929047, 0.141927, 0.929047}, {0.811253, 0.838256, 0.194797}, {0.858094, 0.0709735, 0.929047}, {0.607314, 0.839885, 0.731199}, {0.607314, 0.744576, 0.82663}, {0.442043, 0.73906, 0.809994}, {0.389383, 0.0955798, 0.860739}, {0.141906, 0.929047, 0.0709532}, {0.0709532, 0.860739, 0.210214}, {0.929047, 0.860739, 0.210214}, {0.860739, 0.860739, 0.278522}, {0.139383, 0.095431, 0.389261}, {0.211744, 0.263225, 0.373844}, {0.139261, 0.789786, 0.929047}, {0.789786, 0.929047, 0.860739}, {0.904691, 0.139261, 0.389261}, {0.701751, 0.184899, 0.308639}, {0.929047, 0.139261, 0.789786}, {0.786775, 0.838256, 0.373844}, {0.875, 0.0709532, 0.0709532}, {0.210214, 0.929047, 0.139261}, {0.572483, 0.838256, 0.263105}, {0.591147, 0.184899, 0.264809}, {0.904569, 0.389396, 0.860739}, {0.572483, 0.307176, 0.794306}, {0.331304, 0.834369, 0.449255}, {0.139261, 0.929047, 0.789786}, {0.860739, 0.789786, 0.0709532}, {0.904569, 0.860739, 0.389261}, {0.139261, 0.610739, 0.904569}, {0.812409, 0.102933, 0.343263}, {0.657854, 0.102933, 0.188694}, {0.857314, 0.700624, 0.465891}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:tetrahedron_10
+   + id             : my_fem:jacobians:_tetrahedron_10
    + size           : 1364
    + nb_component   : 1
    + allocated size : 1364
    + memory size    : 11kB
    + values         : {{0.00119768}, {0.00119768}, {0.00119768}, {0.00119768}, {0.000498855}, {0.000498855}, {0.000498855}, {0.000498855}, {0.00127072}, {0.00127072}, {0.00127072}, {0.00127072}, {0.000510867}, {0.000510867}, {0.000510867}, {0.000510867}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00023817}, {0.00023817}, {0.00023817}, {0.00023817}, {0.000731371}, {0.000731371}, {0.000731371}, {0.000731371}, {0.00123415}, {0.00123415}, {0.00123415}, {0.00123415}, {0.000262647}, {0.000262647}, {0.000262647}, {0.000262647}, {0.000229322}, {0.000229322}, {0.000229322}, {0.000229322}, {0.000450497}, {0.000450497}, {0.000450497}, {0.000450497}, {0.000202139}, {0.000202139}, {0.000202139}, {0.000202139}, {0.000887737}, {0.000887737}, {0.000887737}, {0.000887737}, {0.00187262}, {0.00187262}, {0.00187262}, {0.00187262}, {0.000493369}, {0.000493369}, {0.000493369}, {0.000493369}, {0.000265441}, {0.000265441}, {0.000265441}, {0.000265441}, {0.00172558}, {0.00172558}, {0.00172558}, {0.00172558}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000671175}, {0.000671175}, {0.000671175}, {0.000671175}, {0.000292964}, {0.000292964}, {0.000292964}, {0.000292964}, {0.00118606}, {0.00118606}, {0.00118606}, {0.00118606}, {0.000209795}, {0.000209795}, {0.000209795}, {0.000209795}, {0.00161203}, {0.00161203}, {0.00161203}, {0.00161203}, {0.00117664}, {0.00117664}, {0.00117664}, {0.00117664}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000378978}, {0.000378978}, {0.000378978}, {0.000378978}, {0.000209795}, {0.000209795}, {0.000209795}, {0.000209795}, {0.00121805}, {0.00121805}, {0.00121805}, {0.00121805}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00117268}, {0.00117268}, {0.00117268}, {0.00117268}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00083749}, {0.00083749}, {0.00083749}, {0.00083749}, {0.00191797}, {0.00191797}, {0.00191797}, {0.00191797}, {0.000953843}, {0.000953843}, {0.000953843}, {0.000953843}, {0.000672936}, {0.000672936}, {0.000672936}, {0.000672936}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00111398}, {0.00111398}, {0.00111398}, {0.00111398}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051068}, {0.00051068}, {0.00051068}, {0.00051068}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.00122601}, {0.00122601}, {0.00122601}, {0.00122601}, {0.000884197}, {0.000884197}, {0.000884197}, {0.000884197}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.00173384}, {0.00173384}, {0.00173384}, {0.00173384}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000209825}, {0.0007455}, {0.0007455}, {0.0007455}, {0.0007455}, {0.000899671}, {0.000899671}, {0.000899671}, {0.000899671}, {0.000616516}, {0.000616516}, {0.000616516}, {0.000616516}, {0.000200144}, {0.000200144}, {0.000200144}, {0.000200144}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000939334}, {0.000939334}, {0.000939334}, {0.000939334}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000930551}, {0.000930551}, {0.000930551}, {0.000930551}, {0.000638055}, {0.000638055}, {0.000638055}, {0.000638055}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000238204}, {0.000238204}, {0.000238204}, {0.000238204}, {0.000745217}, {0.000745217}, {0.000745217}, {0.000745217}, {0.000510776}, {0.000510776}, {0.000510776}, {0.000510776}, {0.000945026}, {0.000945026}, {0.000945026}, {0.000945026}, {0.000909981}, {0.000909981}, {0.000909981}, {0.000909981}, {0.000623877}, {0.000623877}, {0.000623877}, {0.000623877}, {0.000956672}, {0.000956672}, {0.000956672}, {0.000956672}, {0.000513725}, {0.000513725}, {0.000513725}, {0.000513725}, {0.00105581}, {0.00105581}, {0.00105581}, {0.00105581}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00115231}, {0.00115231}, {0.00115231}, {0.00115231}, {0.000871617}, {0.000871617}, {0.000871617}, {0.000871617}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000966407}, {0.000966407}, {0.000966407}, {0.000966407}, {0.000335259}, {0.000335259}, {0.000335259}, {0.000335259}, {0.000630433}, {0.000630433}, {0.000630433}, {0.000630433}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00037973}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.00106509}, {0.00106509}, {0.00106509}, {0.00106509}, {0.00198327}, {0.00198327}, {0.00198327}, {0.00198327}, {0.00205091}, {0.00205091}, {0.00205091}, {0.00205091}, {0.000963229}, {0.000963229}, {0.000963229}, {0.000963229}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.00215047}, {0.00215047}, {0.00215047}, {0.00215047}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000959836}, {0.000959836}, {0.000959836}, {0.000959836}, {0.000817692}, {0.000817692}, {0.000817692}, {0.000817692}, {0.000902791}, {0.000902791}, {0.000902791}, {0.000902791}, {0.00169951}, {0.00169951}, {0.00169951}, {0.00169951}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000840144}, {0.000840144}, {0.000840144}, {0.000840144}, {0.00173867}, {0.00173867}, {0.00173867}, {0.00173867}, {0.000671175}, {0.000671175}, {0.000671175}, {0.000671175}, {0.000963229}, {0.000963229}, {0.000963229}, {0.000963229}, {0.00022929}, {0.00022929}, {0.00022929}, {0.00022929}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000511246}, {0.000511246}, {0.000511246}, {0.000511246}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00161366}, {0.00161366}, {0.00161366}, {0.00161366}, {0.000945026}, {0.000945026}, {0.000945026}, {0.000945026}, {0.0011808}, {0.0011808}, {0.0011808}, {0.0011808}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000379219}, {0.000379219}, {0.000379219}, {0.000379219}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00105497}, {0.00105497}, {0.00105497}, {0.00105497}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00130751}, {0.00130751}, {0.00130751}, {0.00130751}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000951335}, {0.000951335}, {0.000951335}, {0.000951335}, {0.00145377}, {0.00145377}, {0.00145377}, {0.00145377}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000396677}, {0.00137036}, {0.00137036}, {0.00137036}, {0.00137036}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.000913554}, {0.000913554}, {0.000913554}, {0.000913554}, {0.000744668}, {0.000744668}, {0.000744668}, {0.000744668}, {0.000959836}, {0.000959836}, {0.000959836}, {0.000959836}, {0.000510776}, {0.000510776}, {0.000510776}, {0.000510776}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00173998}, {0.00173998}, {0.00173998}, {0.00173998}, {0.00106728}, {0.00106728}, {0.00106728}, {0.00106728}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000950017}, {0.000950017}, {0.000950017}, {0.000950017}, {0.00160036}, {0.00160036}, {0.00160036}, {0.00160036}, {0.00148765}, {0.00148765}, {0.00148765}, {0.00148765}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00117664}, {0.00117664}, {0.00117664}, {0.00117664}, {0.000744343}, {0.000744343}, {0.000744343}, {0.000744343}, {0.00108011}, {0.00108011}, {0.00108011}, {0.00108011}, {0.00102006}, {0.00102006}, {0.00102006}, {0.00102006}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000985542}, {0.000985542}, {0.000985542}, {0.000985542}, {0.00023817}, {0.00023817}, {0.00023817}, {0.00023817}, {0.000509799}, {0.000509799}, {0.000509799}, {0.000509799}, {0.00122872}, {0.00122872}, {0.00122872}, {0.00122872}, {0.000201973}, {0.000201973}, {0.000201973}, {0.000201973}, {0.00168481}, {0.00168481}, {0.00168481}, {0.00168481}, {0.000396652}, {0.000396652}, {0.000396652}, {0.000396652}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000396677}, {0.00127773}, {0.00127773}, {0.00127773}, {0.00127773}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00185969}, {0.00185969}, {0.00185969}, {0.00185969}, {0.00130224}, {0.00130224}, {0.00130224}, {0.00130224}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00051068}, {0.00051068}, {0.00051068}, {0.00051068}, {0.000817692}, {0.000817692}, {0.000817692}, {0.000817692}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.00137577}, {0.00137577}, {0.00137577}, {0.00137577}, {0.000708521}, {0.000708521}, {0.000708521}, {0.000708521}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.00125207}, {0.00125207}, {0.00125207}, {0.00125207}, {0.00108769}, {0.00108769}, {0.00108769}, {0.00108769}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000518452}, {0.000518452}, {0.000518452}, {0.000518452}, {0.000662427}, {0.000662427}, {0.000662427}, {0.000662427}, {0.000902637}, {0.000902637}, {0.000902637}, {0.000902637}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00109572}, {0.00109572}, {0.00109572}, {0.00109572}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.00100863}, {0.00100863}, {0.00100863}, {0.00100863}, {0.000265441}, {0.000265441}, {0.000265441}, {0.000265441}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000849291}, {0.000849291}, {0.000849291}, {0.000849291}, {0.00109572}, {0.00109572}, {0.00109572}, {0.00109572}, {0.000396652}, {0.000396652}, {0.000396652}, {0.000396652}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000196277}, {0.000196277}, {0.000196277}, {0.000196277}, {0.000201973}, {0.000201973}, {0.000201973}, {0.000201973}, {0.000262647}, {0.000262647}, {0.000262647}, {0.000262647}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000510096}, {0.000510096}, {0.000510096}, {0.000510096}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000378736}, {0.000378736}, {0.000378736}, {0.000378736}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000532051}, {0.000532051}, {0.000532051}, {0.000532051}, {0.0014145}, {0.0014145}, {0.0014145}, {0.0014145}, {0.00108638}, {0.00108638}, {0.00108638}, {0.00108638}, {0.000378736}, {0.000378736}, {0.000378736}, {0.000378736}, {0.0011856}, {0.0011856}, {0.0011856}, {0.0011856}, {0.00186025}, {0.00186025}, {0.00186025}, {0.00186025}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000922847}, {0.000922847}, {0.000922847}, {0.000922847}, {0.00132655}, {0.00132655}, {0.00132655}, {0.00132655}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00107727}, {0.00107727}, {0.00107727}, {0.00107727}, {0.00135137}, {0.00135137}, {0.00135137}, {0.00135137}, {0.000292964}, {0.000292964}, {0.000292964}, {0.000292964}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000722936}, {0.000722936}, {0.000722936}, {0.000722936}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000926941}, {0.000926941}, {0.000926941}, {0.000926941}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000509799}, {0.000509799}, {0.000509799}, {0.000509799}, {0.000378978}, {0.000378978}, {0.000378978}, {0.000378978}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000380053}, {0.0007455}, {0.0007455}, {0.0007455}, {0.0007455}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00023817}, {0.00023817}, {0.00023817}, {0.00023817}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000608086}, {0.000608086}, {0.000608086}, {0.000608086}, {0.000652377}, {0.000652377}, {0.000652377}, {0.000652377}, {0.000511476}, {0.000511476}, {0.000511476}, {0.000511476}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000493684}, {0.000493684}, {0.000493684}, {0.000493684}, {0.000251531}, {0.000251531}, {0.000251531}, {0.000251531}, {0.000835485}, {0.000835485}, {0.000835485}, {0.000835485}, {0.00121998}, {0.00121998}, {0.00121998}, {0.00121998}, {0.00120388}, {0.00120388}, {0.00120388}, {0.00120388}, {0.000510867}, {0.000510867}, {0.000510867}, {0.000510867}, {0.000745543}, {0.000745543}, {0.000745543}, {0.000745543}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000849837}, {0.000849837}, {0.000849837}, {0.000849837}, {0.000902637}, {0.000902637}, {0.000902637}, {0.000902637}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00022929}, {0.00022929}, {0.00022929}, {0.00022929}, {0.000761723}, {0.000761723}, {0.000761723}, {0.000761723}, {0.000509558}, {0.000509558}, {0.000509558}, {0.000509558}, {0.00104832}, {0.00104832}, {0.00104832}, {0.00104832}, {0.00111203}, {0.00111203}, {0.00111203}, {0.00111203}, {0.00080431}, {0.00080431}, {0.00080431}, {0.00080431}, {0.000379219}, {0.000379219}, {0.000379219}, {0.000379219}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00022929}, {0.00022929}, {0.00022929}, {0.00022929}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00106294}, {0.00106294}, {0.00106294}, {0.00106294}, {0.00172128}, {0.00172128}, {0.00172128}, {0.00172128}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00185969}, {0.00185969}, {0.00185969}, {0.00185969}, {0.000922847}, {0.000922847}, {0.000922847}, {0.000922847}, {0.00167934}, {0.00167934}, {0.00167934}, {0.00167934}, {0.000237043}, {0.000237043}, {0.000237043}, {0.000237043}, {0.000233177}, {0.000233177}, {0.000233177}, {0.000233177}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00100541}, {0.00100541}, {0.00100541}, {0.00100541}, {0.0006888}, {0.0006888}, {0.0006888}, {0.0006888}, {0.000883155}, {0.000883155}, {0.000883155}, {0.000883155}, {0.000449966}, {0.000449966}, {0.000449966}, {0.000449966}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000723193}, {0.000723193}, {0.000723193}, {0.000723193}, {0.00119627}, {0.00119627}, {0.00119627}, {0.00119627}, {0.000922847}, {0.000922847}, {0.000922847}, {0.000922847}, {0.00101774}, {0.00101774}, {0.00101774}, {0.00101774}, {0.00074475}, {0.00074475}, {0.00074475}, {0.00074475}, {0.00122628}, {0.00122628}, {0.00122628}, {0.00122628}, {0.000688235}, {0.000688235}, {0.000688235}, {0.000688235}, {0.00100531}, {0.00100531}, {0.00100531}, {0.00100531}, {0.00051012}, {0.00051012}, {0.00051012}, {0.00051012}, {0.000745227}, {0.000745227}, {0.000745227}, {0.000745227}, {0.00103381}, {0.00103381}, {0.00103381}, {0.00103381}, {0.00130566}, {0.00130566}, {0.00130566}, {0.00130566}, {0.0011808}, {0.0011808}, {0.0011808}, {0.0011808}, {0.00100744}, {0.00100744}, {0.00100744}, {0.00100744}, {0.00169196}, {0.00169196}, {0.00169196}, {0.00169196}, {0.000945026}, {0.000945026}, {0.000945026}, {0.000945026}, {0.00124164}, {0.00124164}, {0.00124164}, {0.00124164}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000883155}, {0.000883155}, {0.000883155}, {0.000883155}, {0.000449966}, {0.000449966}, {0.000449966}, {0.000449966}, {0.00139391}, {0.00139391}, {0.00139391}, {0.00139391}, {0.000913554}, {0.000913554}, {0.000913554}, {0.000913554}, {0.00105108}, {0.00105108}, {0.00105108}, {0.00105108}, {0.0011491}, {0.0011491}, {0.0011491}, {0.0011491}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000609681}, {0.000609681}, {0.000609681}, {0.000609681}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000391999}, {0.000391999}, {0.000391999}, {0.000391999}, {0.00150629}, {0.00150629}, {0.00150629}, {0.00150629}, {0.00185388}, {0.00185388}, {0.00185388}, {0.00185388}, {0.00108769}, {0.00108769}, {0.00108769}, {0.00108769}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.00068973}, {0.00068973}, {0.00068973}, {0.00068973}, {0.00051012}, {0.00051012}, {0.00051012}, {0.00051012}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000982951}, {0.000982951}, {0.000982951}, {0.000982951}, {0.00155838}, {0.00155838}, {0.00155838}, {0.00155838}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00190279}, {0.00190279}, {0.00190279}, {0.00190279}, {0.000890603}, {0.000890603}, {0.000890603}, {0.000890603}, {0.00130171}, {0.00130171}, {0.00130171}, {0.00130171}, {0.000509851}, {0.000509851}, {0.000509851}, {0.000509851}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000722514}, {0.000722514}, {0.000722514}, {0.000722514}, {0.000550638}, {0.000550638}, {0.000550638}, {0.000550638}, {0.000869085}, {0.000869085}, {0.000869085}, {0.000869085}, {0.00056562}, {0.00056562}, {0.00056562}, {0.00056562}, {0.000549932}, {0.000549932}, {0.000549932}, {0.000549932}, {0.000732214}, {0.000732214}, {0.000732214}, {0.000732214}, {0.00058443}, {0.00058443}, {0.00058443}, {0.00058443}, {0.000883971}, {0.000883971}, {0.000883971}, {0.000883971}, {0.00124314}, {0.00124314}, {0.00124314}, {0.00124314}, {0.000836794}, {0.000836794}, {0.000836794}, {0.000836794}, {0.00092794}, {0.00092794}, {0.00092794}, {0.00092794}, {0.000815143}, {0.000815143}, {0.000815143}, {0.000815143}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:tetrahedron_10
+   + id             : my_fem:quadrature_points:_tetrahedron_10
    + size           : 4
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{0.138197, 0.138197, 0.138197}, {0.58541, 0.138197, 0.138197}, {0.138197, 0.58541, 0.138197}, {0.138197, 0.138197, 0.58541}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:tetrahedron_10
+   + id             : my_fem:shapes:_tetrahedron_10
    + size           : 1364
    + nb_component   : 10
    + allocated size : 1364
    + memory size    : 1.1e+02kB
    + values         : {{0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:tetrahedron_10
+   + id             : my_fem:shapes_derivatives:_tetrahedron_10
    + size           : 1364
    + nb_component   : 30
    + allocated size : 1364
    + memory size    : 3.2e+02kB
    + values         : {{-3.9353, -4.55601, 0.673815, 0, -1.32529, -0.181463, -1.31177, -0.0269554, -1.36103, 0, -0.166427, 1.7671, -1.62143, 5.06211, 1.22778, 1.62143, 1.67146, 1.90663, 5.24706, -1.73604, 7.40408, -1.62143, -1.00576, -8.97503, 0, 1.84386, -1.95995, 1.62143, 0.239033, -0.501928}, {1.31177, 1.51867, -0.224605, 4.12325e-16, 3.97586, 0.54439, -1.31177, -0.0269554, -1.36103, 2.74179e-16, -0.166427, 1.7671, -6.86849, -6.31371, 1.40035, 6.86849, 1.77928, 7.35076, -1.56634e-16, -1.84386, 1.95995, -1.62143, -1.67146, -1.90663, -1.26573e-15, 2.50957, -9.02835, 1.62143, 0.239033, -0.501928}, {1.31177, 1.51867, -0.224605, 0, -1.32529, -0.181463, 3.9353, 0.0808662, 4.08309, 0, -0.166427, 1.7671, -1.62143, -0.239033, 0.501928, 1.62143, 6.97261, 2.63248, -5.24706, -7.91853, 2.85837, -1.62143, -1.67146, -1.90663, 0, 1.84386, -1.95995, 1.62143, 0.90474, -7.57033}, {1.31177, 1.51867, -0.224605, 0, -1.32529, -0.181463, -1.31177, -0.0269554, -1.36103, 0, 0.49928, -5.3013, -1.62143, -0.239033, 0.501928, 1.62143, 1.67146, 1.90663, -3.2565e-16, -1.84386, 1.95995, -6.86849, -7.74614, -1.00821, 0, 7.14501, -1.2341, 6.86849, 0.346855, 4.9422}, {4.62937, -1.83228, -3.04567, 1.74185, 1.32981, 2.03815, 0, 0, -2.39759, -0.198723, -1.94057, -0.655786, -7.21302, -7.71791, -11.9268, -2.15304, -1.64373, 0.444288, 1.90741, -0.754941, 11.2991, 2.94793, 9.40601, 2.17885, -1.90741, 0.754941, -1.7087, 0.245635, 2.39867, 3.77418}, {-1.54312, 0.61076, 1.01522, -5.22554, -3.98943, -6.11446, 0, 0, -2.39759, -0.198723, -1.94057, -0.655786, 5.92686, -4.84171, -7.83507, -2.15304, -1.64373, 10.0346, 1.90741, -0.754941, 1.7087, 2.15304, 1.64373, -0.444288, -1.11252, 8.51722, 0.914444, 0.245635, 2.39867, 3.77418}, {-1.54312, 0.61076, 1.01522, 1.74185, 1.32981, 2.03815, 0, 0, 7.19277, -0.198723, -1.94057, -0.655786, -0.245635, -2.39867, -3.77418, -9.12042, -6.96297, -7.70832, 8.0799, -3.19798, -2.35219, 2.15304, 1.64373, -0.444288, -1.90741, 0.754941, -1.7087, 1.04052, 10.1609, 6.39732}, {-1.54312, 0.61076, 1.01522, 1.74185, 1.32981, 2.03815, 0, 0, -2.39759, 0.596168, 5.82171, 1.96736, -0.245635, -2.39867, -3.77418, -2.15304, -1.64373, 0.444288, 1.90741, -0.754941, 1.7087, 8.32553, -0.799305, -4.50518, -8.87479, -4.5643, -9.86131, 0.245635, 2.39867, 13.3645}, {0.513102, -3.87755, 0, 0.57474, -0.851464, -1.31177, -1.67772, -0.393466, -9.15774e-16, 1.27402, -0.0475867, 1.31177, -2.79797, 2.86069, 6.86849, 1.36336, 1.53882, 1.62143, 8.99608, 0.462577, 4.66294e-15, -6.45943, -1.34847, -6.86849, -2.28519, 1.11129, -1.11022e-15, 0.499008, 0.545171, -1.62143}, {-0.171034, 1.29252, -2.22045e-16, -1.72422, 2.55439, 3.9353, -1.67772, -0.393466, -8.14021e-16, 1.27402, -0.0475867, 1.31177, 0.185129, -5.71524, 1.62143, 8.07425, 3.11268, 1.62143, 2.28519, -1.11129, 1.33227e-15, -1.36336, -1.53882, -1.62143, -7.38126, 1.30164, -5.24706, 0.499008, 0.545171, -1.62143}, {-0.171034, 1.29252, 4.44089e-16, 0.57474, -0.851464, -1.31177, 5.03317, 1.1804, 1.22103e-15, 1.27402, -0.0475867, 1.31177, -0.499008, -0.545171, 1.62143, -0.935598, 4.94468, 6.86849, 2.96933, -6.28136, -1.77636e-15, -1.36336, -1.53882, -1.62143, -2.28519, 1.11129, 0, -4.59706, 0.735518, -6.86849}, {-0.171034, 1.29252, 0, 0.57474, -0.851464, -1.31177, -1.67772, -0.393466, 5.5964e-16, -3.82205, 0.14276, -3.9353, -0.499008, -0.545171, 1.62143, 1.36336, 1.53882, 1.62143, 2.28519, -1.11129, -8.88178e-16, -0.679225, -6.70889, -1.62143, -4.58415, 4.51715, 5.24706, 7.2099, 2.11904, -1.62143}, {3.99239, 5.22128, -5.22376, -4.19346e-16, -1.90927e-15, 2.34313, -0.609885, 1.54187, -1.54513, 1.94068, 0.198561, -2.53925, 1.64495, 2.15129, -14.4211, 0.75386, -1.90585, -0.986372, 4.83836, -5.92203, 5.93812, -8.51658, 1.11161, 11.1434, -2.39881, -0.245434, 0.242418, -1.64495, -2.15129, 5.04857}, {-1.3308, -1.74043, 1.74125, -4.45091e-15, 2.34416e-15, -7.02938, -0.609885, 1.54187, -1.54513, 1.94068, 0.198561, -2.53925, 6.96814, 9.11299, -12.0136, 3.1934, -8.07331, 5.19416, 2.39881, 0.245434, -0.242418, -0.75386, 1.90585, 0.986372, -10.1615, -1.03968, 10.3994, -1.64495, -2.15129, 5.04857}, {-1.3308, -1.74043, 1.74125, 0, 0, 2.34313, 1.82966, -4.6256, 4.6354, 1.94068, 0.198561, -2.53925, 1.64495, 2.15129, -5.04857, 0.75386, -1.90585, -10.3589, 7.722, 7.20714, -7.20743, -0.75386, 1.90585, 0.986372, -2.39881, -0.245434, 0.242418, -9.40768, -2.94553, 15.2056}, {-1.3308, -1.74043, 1.74125, -1.12887e-15, -1.155e-16, 2.34313, -0.609885, 1.54187, -1.54513, -5.82204, -0.595682, 7.61774, 1.64495, 2.15129, -5.04857, 0.75386, -1.90585, -0.986372, 2.39881, 0.245434, -0.242418, 4.56932, 8.86756, -5.97864, -2.39881, -0.245434, -9.13008, 0.794587, -8.31875, 11.2291}, {5.36656, -5.36656, -5.3681, 1.78885, 1.36261, 1.3621, 0, 0, -3.15147, 0, -3.15147, 0, -7.15542, -9.34589, -9.34384, -2.21115, -1.68428, 2.21178, 2.21115, -2.21115, 14.2895, 2.21115, 14.2902, -2.21178, -2.21115, 2.21115, -1.68365, 0, 3.89543, 3.89543}, {-1.78885, 1.78885, 1.78937, -5.36656, -4.08784, -4.08631, 0, 0, -3.15147, 0, -3.15147, 0, 7.15542, -11.0508, -11.0529, -2.21115, -1.68428, 14.8177, 2.21115, -2.21115, 1.68365, 2.21115, 1.68428, -2.21178, -2.21115, 14.817, -1.68365, 0, 3.89543, 3.89543}, {-1.78885, 1.78885, 1.78937, 1.78885, 1.36261, 1.3621, 0, 0, 9.45441, 0, -3.15147, 0, 4.44089e-16, -3.89543, -3.89543, -9.36656, -7.13474, -3.23663, 9.36656, -9.36656, -5.47381, 2.21115, 1.68428, -2.21178, -2.21115, 2.21115, -1.68365, 0, 16.5013, 3.89543}, {-1.78885, 1.78885, 1.78937, 1.78885, 1.36261, 1.3621, 0, 0, -3.15147, 0, 9.45441, 0, 4.44089e-16, -3.89543, -3.89543, -2.21115, -1.68428, 2.21178, 2.21115, -2.21115, 1.68365, 9.36656, -5.47113, -9.36924, -9.36656, -3.23931, -7.13206, 0, 3.89543, 16.5013}, {-4.72653, -4.72788, -4.72653, 1.57551, -1.57551, -1.57596, -1.57551, 1.57551, -1.57551, -1.57551, -1.57596, 1.57596, -10.1969, 6.30148, 6.30439, -1.73195e-14, 1.73195e-14, 3.89543, 6.30204, -10.1975, 6.30204, 6.30204, 6.30384, -10.1993, 2.1394e-12, 3.89543, -2.14051e-12, 3.89487, 0.000556765, -0.000556765}, {1.57551, 1.57596, 1.57551, -4.72653, 4.72653, 4.72788, -1.57551, 1.57551, -1.57551, -1.57551, -1.57596, 1.57596, -10.1969, -6.30439, -6.30148, 6.30204, -6.30204, 10.1975, -2.13851e-12, -3.89543, 2.13829e-12, 1.42638e-14, -1.48241e-14, -3.89543, 6.30204, 10.1993, -6.30384, 3.89487, 0.000556765, -0.000556765}, {1.57551, 1.57596, 1.57551, 1.57551, -1.57551, -1.57596, 4.72653, -4.72653, 4.72653, -1.57551, -1.57596, 1.57596, -3.89487, -0.000556765, 0.000556765, -6.30204, 6.30204, 10.1993, -6.30204, -10.1993, -6.30204, 1.62622e-14, -1.72666e-14, -3.89543, 2.14029e-12, 3.89543, -2.14007e-12, 10.1969, 6.30439, -6.30439}, {1.57551, 1.57596, 1.57551, 1.57551, -1.57551, -1.57596, -1.57551, 1.57551, -1.57551, 4.72653, 4.72788, -4.72788, -3.89487, -0.000556765, 0.000556765, -1.70974e-14, 1.68754e-14, 3.89543, -2.14206e-12, -3.89543, 2.1414e-12, -6.30204, -6.30384, -10.1975, -6.30204, 10.1975, 6.30384, 10.1969, -6.30148, 6.30148}, {3.23101, 1.27881, 3.23101, -1.12016, -2.46258, 1.22297, 0.799503, 2.33566, 0.799503, 1.39766, 0.553185, -0.945467, 7.19648, 13.4211, -5.07228, 0.396353, 0.156874, -2.49991, -2.85501, -11.7028, -2.85501, -5.98699, -2.36962, 6.28178, -0.343007, 2.36014, -0.343007, -2.71584, -3.57081, 0.180421}, {-1.077, -0.426271, -1.077, 3.36048, 7.38773, -3.6689, 0.799503, 2.33566, 0.799503, 1.39766, 0.553185, -0.945467, 7.02385, 5.2759, 4.12759, -2.80166, -9.18577, -5.69792, 0.343007, -2.36014, 0.343007, -0.396353, -0.156874, 2.49991, -5.93364, 0.147394, 3.43886, -2.71584, -3.57081, 0.180421}, {-1.077, -0.426271, -1.077, -1.12016, -2.46258, 1.22297, -2.39851, -7.00698, -2.39851, 1.39766, 0.553185, -0.945467, 2.71584, 3.57081, -0.180421, 4.87699, 10.0072, -7.39177, 4.65101, -0.65505, 4.65101, -0.396353, -0.156874, 2.49991, -0.343007, 2.36014, -0.343007, -8.30647, -5.78355, 3.96229}, {-1.077, -0.426271, -1.077, -1.12016, -2.46258, 1.22297, 0.799503, 2.33566, 0.799503, -4.19298, -1.65956, 2.8364, 2.71584, 3.57081, -0.180421, 0.396353, 0.156874, -2.49991, 0.343007, -2.36014, 0.343007, 3.91165, 1.54821, 6.80792, 4.13763, 12.2104, -5.23487, -5.91385, -12.9135, -3.01759}, {-3.9353, 2.63698, 1.65871, 7.60332e-17, 1.28613, 0.176102, -3.18404e-16, -0.456132, 1.72743, -1.31177, 0.0489967, -1.35063, -1.62143, -5.64776, -0.238656, 2.99587e-16, -1.02593, -2.3529, -1.62143, 3.47483, -8.36153, 5.24706, 0.829946, 7.75543, 1.62143, -1.65031, 1.4518, 1.62143, 0.503247, -0.465751}, {1.31177, -0.878994, -0.552902, 8.56342e-16, -3.85839, -0.528305, 3.92674e-16, -0.456132, 1.72743, -1.31177, 0.0489967, -1.35063, -6.86849, 3.01273, 2.67736, -1.70324e-15, 0.798596, -9.26263, -1.62143, 1.65031, -1.4518, -1.93111e-16, 1.02593, 2.3529, 6.86849, -1.84629, 6.85433, 1.62143, 0.503247, -0.465751}, {1.31177, -0.878994, -0.552902, -5.33523e-16, 1.28613, 0.176102, 2.92961e-15, 1.3684, -5.1823, -1.31177, 0.0489967, -1.35063, -1.62143, -0.503247, 0.465751, 4.00063e-15, -6.17045, -3.0573, -6.86849, 5.16628, 0.75981, -2.19219e-15, 1.02593, 2.3529, 1.62143, -1.65031, 1.4518, 6.86849, 0.30726, 4.93678}, {1.31177, -0.878994, -0.552902, 7.60332e-17, 1.28613, 0.176102, -3.18404e-16, -0.456132, 1.72743, 3.9353, -0.14699, 4.0519, -1.62143, -0.503247, 0.465751, 2.99587e-16, -1.02593, -2.3529, -1.62143, 1.65031, -1.4518, -5.24706, 4.54191, 4.56451, 1.62143, -6.79482, 0.747392, 1.62143, 2.32778, -7.37548}, {0.56235, 5.36656, -5.36656, -1.24953, 3.64699, -0.373467, -0.986118, -1.85814, -1.41539, 2.4231, 0, 0, 6.77433, -16.8847, -0.255645, 2.76341, -2.21115, 2.21115, 5.39508, 11.9405, 5.19992, -12.4558, 2.21115, -2.21115, -1.45061, -4.50793, 0.461631, -1.77621, 2.29678, 1.74951}, {-0.18745, -1.78885, 1.78885, 3.74859, -10.941, 1.1204, -0.986118, -1.85814, -1.41539, 2.4231, 1.11775e-15, 8.51416e-16, 2.52601, 4.85864, -8.90493, 6.70789, 5.2214, 7.87269, 1.45061, 4.50793, -0.461631, -2.76341, 2.21115, -2.21115, -11.143, -4.50793, 0.461631, -1.77621, 2.29678, 1.74951}, {-0.18745, -1.78885, 1.78885, -1.24953, 3.64699, -0.373467, 2.95835, 5.57441, 4.24616, 2.4231, 0, 0, 1.77621, -2.29678, -1.74951, 7.76154, -16.7991, 3.70501, 2.20041, 11.6633, -7.61705, -2.76341, 2.21115, -2.21115, -1.45061, -4.50793, 0.461631, -11.4686, 2.29678, 1.74951}, {-0.18745, -1.78885, 1.78885, -1.24953, 3.64699, -0.373467, -0.986118, -1.85814, -1.41539, -7.2693, 0, 0, 1.77621, -2.29678, -1.74951, 2.76341, -2.21115, 2.21115, 1.45061, 4.50793, -0.461631, -2.01361, 9.36656, -9.36656, 3.54752, -19.0959, 1.9555, 2.16826, 9.72932, 7.41106}, {4.72585, 4.7272, 4.7272, -1.63629, -1.63676, 1.63676, -1.57573, 1.57528, 1.57528, 4.78731, 1.63721, -1.63631, 10.5149, 10.5179, -6.62248, 3.97028, 0.0759901, -3.97031, 10.1978, -6.30058, -6.30058, -23.1195, -6.62484, 10.5155, -3.89487, -0.000556685, -0.000556685, -3.96973, -3.97086, 0.0754336}, {-1.57528, -1.57573, -1.57573, 4.90888, 4.91028, -4.91028, -1.57573, 1.57528, 1.57528, 4.78731, 1.63721, -1.63631, 10.2709, 10.2738, 6.2275, 10.2732, -6.22515, -10.2714, 3.89487, 0.000556685, 0.000556685, -3.97028, -0.0759901, 3.97031, -23.0441, -6.5494, 6.54469, -3.96973, -3.97086, 0.0754336}, {-1.57528, -1.57573, -1.57573, -1.63629, -1.63676, 1.63676, 4.7272, -4.72585, -4.72585, 4.78731, 1.63721, -1.63631, 3.96973, 3.97086, -0.0754336, 10.5155, 6.62303, -10.5174, 10.196, 6.30349, 6.30349, -3.97028, -0.0759901, 3.97031, -3.89487, -0.000556685, -0.000556685, -23.119, -10.5197, 6.62068}, {-1.57528, -1.57573, -1.57573, -1.63629, -1.63676, 1.63676, -1.57573, 1.57528, 1.57528, -14.3619, -4.91163, 4.90893, 3.96973, 3.97086, -0.0754336, 3.97028, 0.0759901, -3.97031, 3.89487, 0.000556685, 0.000556685, 2.33085, 6.22695, 10.2732, 2.6503, 6.54649, -6.5476, 2.33321, -10.272, -6.2257}, {-2.40635, 2.40855, -2.40993, -1.57388, -1.57525, -1.57621, 3.20871, 3.21151, -0.0600473, -2.43695, -0.833412, 0.832954, 7.24946, 9.24051, 7.26022, -2.02076, -2.02253, 2.02253, -17.7925, -15.8233, -0.678532, 11.7686, 5.35618, -5.35435, 4.95766, 2.97727, 0.918721, -0.953948, -2.9395, -0.955365}, {0.802117, -0.80285, 0.803308, 4.72163, 4.72576, 4.72864, 3.20871, 3.21151, -0.0600473, -2.43695, -0.833412, 0.832954, -2.25452, 6.1509, -2.25787, -14.8556, -14.8686, 2.26272, -4.95766, -2.97727, -0.918721, 2.02076, 2.02253, -2.02253, 14.7055, 6.31092, -2.41309, -0.953948, -2.9395, -0.955365}, {0.802117, -0.80285, 0.803308, -1.57388, -1.57525, -1.57621, -9.62613, -9.63454, 0.180142, -2.43695, -0.833412, 0.832954, 0.953948, 2.9395, 0.955365, 4.27475, 4.27848, 8.32739, -8.16613, 0.234124, -4.13196, 2.02076, 2.02253, -2.02253, 4.95766, 2.97727, 0.918721, 8.79385, 0.394151, -4.28718}, {0.802117, -0.80285, 0.803308, -1.57388, -1.57525, -1.57621, 3.20871, 3.21151, -0.0600473, 7.31085, 2.50024, -2.49886, 0.953948, 2.9395, 0.955365, -2.02076, -2.02253, 2.02253, -4.95766, -2.97727, -0.918721, -1.18771, 5.23393, -5.23576, 11.2532, 9.27829, 7.22358, -13.7888, -15.7856, -0.715176}, {5.36291, -5.36781, 5.37088, 0, -3.15057, 0, -1.85687, -1.41402, 1.41389, 3.64451, 2.77532, 0.376399, 2.20964, 14.2849, 2.21292, 2.29522, 5.64214, -1.74767, 11.9323, 5.19225, -5.19032, -16.8733, -16.7434, 0.242074, -4.50486, 0.463834, -0.465254, -2.20964, -1.68266, -2.21292}, {-1.78764, 1.78927, -1.79029, 0, 9.4517, 0, -1.85687, -1.41402, 1.41389, 3.64451, 2.77532, 0.376399, 9.36019, -5.47442, 9.37409, 9.72271, 11.2982, -7.40324, 4.50486, -0.463834, 0.465254, -2.29522, -5.64214, 1.74767, -19.0829, -10.6374, -1.97085, -2.20964, -1.68266, -2.21292}, {-1.78764, 1.78927, -1.79029, 0, -3.15057, 0, 5.57061, 4.24206, -4.24168, 3.64451, 2.77532, 0.376399, 2.20964, 1.68266, 2.21292, 2.29522, 18.2444, -1.74767, 11.6554, -7.62091, 7.62642, -2.29522, -5.64214, 1.74767, -4.50486, 0.463834, -0.465254, -16.7877, -12.7839, -3.71852}, {-1.78764, 1.78927, -1.79029, 0, -3.15057, 0, -1.85687, -1.41402, 1.41389, -10.9335, -8.32596, -1.1292, 2.20964, 1.68266, 2.21292, 2.29522, 5.64214, -1.74767, 4.50486, -0.463834, 0.465254, 4.85533, -12.7992, 8.90884, -4.50486, 13.0661, -0.465254, 5.21784, 3.97342, -7.8685}, {-3.12618, -1.69082, 4.8169, -0.776768, 0.776768, 1.71093, 1.29482, -1.29482, 0.513906, -1.56011, -0.0455553, -0.619199, 2.77915, -4.76387, -6.97386, -0.640348, 0.640348, -2.75005, -8.06782, 6.08311, -0.706171, 6.8808, -0.458127, 5.22684, 2.88854, -0.903828, -1.34945, 0.32792, 1.6568, 0.130149}, {1.04206, 0.563608, -1.60563, 2.3303, -2.3303, -5.13278, 1.29482, -1.29482, 0.513906, -1.56011, -0.0455553, -0.619199, -4.49616, -3.91123, 6.29239, -5.81963, 5.81963, -4.80567, -2.88854, 0.903828, 1.34945, 0.640348, -0.640348, 2.75005, 9.12899, -0.721607, 1.12734, 0.32792, 1.6568, 0.130149}, {1.04206, 0.563608, -1.60563, -0.776768, 0.776768, 1.71093, -3.88446, 3.88446, -1.54172, -1.56011, -0.0455553, -0.619199, -0.32792, -1.6568, -0.130149, 2.46672, -2.46672, -9.59376, -7.05678, -1.3506, 7.77199, 0.640348, -0.640348, 2.75005, 2.88854, -0.903828, -1.34945, 6.56837, 1.83902, 2.60694}, {1.04206, 0.563608, -1.60563, -0.776768, 0.776768, 1.71093, 1.29482, -1.29482, 0.513906, 4.68034, 0.136666, 1.8576, -0.32792, -1.6568, -0.130149, -0.640348, 0.640348, -2.75005, -2.88854, 0.903828, 1.34945, -3.52789, -2.89478, 9.17259, 5.99561, -4.0109, -8.19316, -4.85136, 6.83608, -1.92547}, {0, 4.18682, -1.69558, 0, 0.106442, -1.13019, 1.31177, 1.47434, 0.246037, -1.31177, -0.185178, 0.318964, 0, 1.16773, 5.21915, -1.62143, -1.95396, 1.09288, -6.86849, -5.9947, -1.98688, 6.86849, 2.69467, -2.36873, 1.62143, 0.0973232, 1.00273, 0, -1.5935, -0.69838}, {6.66134e-16, -1.39561, 0.565192, -4.14281e-16, -0.319327, 3.39058, 1.31177, 1.47434, 0.246037, -1.31177, -0.185178, 0.318964, -3.55271e-15, 7.17592, -1.56239, -6.86849, -7.85133, 0.108727, -1.62143, -0.0973232, -1.00273, 1.62143, 1.95396, -1.09288, 6.86849, 0.838037, -0.273122, 1.11022e-15, -1.5935, -0.69838}, {6.66134e-16, -1.39561, 0.565192, -3.97019e-16, 0.106442, -1.13019, -3.9353, -4.42303, -0.738112, -1.31177, -0.185178, 0.318964, -2.22045e-16, 1.5935, 0.69838, -1.62143, -2.37973, 5.61365, -1.62143, 5.48511, -3.2635, 1.62143, 1.95396, -1.09288, 1.62143, 0.0973232, 1.00273, 5.24706, -0.852781, -1.97424}, {-2.22045e-16, -1.39561, 0.565192, 3.45234e-17, 0.106442, -1.13019, 1.31177, 1.47434, 0.246037, 3.9353, 0.555535, -0.956892, 2.22045e-16, 1.5935, 0.69838, -1.62143, -1.95396, 1.09288, -1.62143, -0.0973232, -1.00273, 1.62143, 7.53639, -3.35364, 1.62143, -0.328446, 5.52351, -5.24706, -7.49087, -1.68253}, {3.02999, -1.83569, -4.62902, -2.0783, 1.32959, -1.74182, 0.665193, -1.94149, 0.198817, 2.4231, 0, 0, 12.1305, -7.71818, 7.21305, 1.74669, 0.756347, 1.90726, -2.23457, 9.40942, -2.94828, -11.4391, -0.756347, -1.90726, -0.4262, -1.64347, 2.15301, -3.81734, 2.39981, -0.245751}, {-1.01, 0.611898, 1.54301, 6.23489, -3.98877, 5.22547, 0.665193, -1.94149, 0.198817, 2.4231, 1.16789e-15, -1.19597e-16, 7.85732, -4.8474, -5.92628, -0.91408, 8.5223, 1.11199, 0.4262, 1.64347, -2.15301, -1.74669, -0.756347, -1.90726, -10.1186, -1.64347, 2.15301, -3.81734, 2.39981, -0.245751}, {-1.01, 0.611898, 1.54301, -2.0783, 1.32959, -1.74182, -1.99558, 5.82447, -0.59645, 2.4231, 0, 0, 3.81734, -2.39981, 0.245751, 10.0599, -4.56202, 8.87456, 4.46618, -0.804126, -8.32504, -1.74669, -0.756347, -1.90726, -0.4262, -1.64347, 2.15301, -13.5097, 2.39981, -0.245751}, {-1.01, 0.611898, 1.54301, -2.0783, 1.32959, -1.74182, 0.665193, -1.94149, 0.198817, -7.2693, 0, 0, 3.81734, -2.39981, 0.245751, 1.74669, 0.756347, 1.90726, 0.4262, 1.64347, -2.15301, 2.29329, -3.20394, -8.07929, 7.88699, -6.96183, 9.12031, -6.47811, 10.1658, -1.04102}, {-1.1204, -10.941, -3.69733, -1.78885, -1.78885, 0.204309, 1.41539, -1.85814, 0.960835, 0, 0, -2.39759, 8.90493, 4.85864, -2.59316, 0.461631, 4.50793, -1.4402, -7.87269, 5.2214, -6.55438, -0.461631, -4.50793, 11.0306, 2.21115, 2.21115, 2.71104, -1.74951, 2.29678, 1.77593}, {0.373467, 3.64699, 1.23244, 5.36656, 5.36656, -0.612928, 1.41539, -1.85814, 0.960835, 0, 0, -2.39759, 0.255645, -16.8847, -6.70571, -5.19992, 11.9405, -5.28354, -2.21115, -2.21115, -2.71104, -0.461631, -4.50793, 1.4402, 2.21115, 2.21115, 12.3014, -1.74951, 2.29678, 1.77593}, {0.373467, 3.64699, 1.23244, -1.78885, -1.78885, 0.204309, -4.24616, 5.57441, -2.88251, 0, 0, -2.39759, 1.74951, -2.29678, -1.77593, 7.61705, 11.6633, -2.25744, -3.70501, -16.7991, -7.64082, -0.461631, -4.50793, 1.4402, 2.21115, 2.21115, 2.71104, -1.74951, 2.29678, 11.3663}, {0.373467, 3.64699, 1.23244, -1.78885, -1.78885, 0.204309, 1.41539, -1.85814, 0.960835, 0, 0, 7.19277, 1.74951, -2.29678, -1.77593, 0.461631, 4.50793, -1.4402, -2.21115, -2.21115, -2.71104, -1.9555, -19.0959, -3.48958, 9.36656, 9.36656, 1.89381, -7.41106, 9.72932, -2.06741}, {3.67635, 0.128375, 3.75827, 1.3465, -0.311871, 0.167791, -0.0738998, -1.11087, 1.10252, -0.0471455, 1.46553, -0.0175582, -5.53561, 1.68587, 0.669927, -1.57302, 1.7586, -1.5702, 1.90169, 5.86948, -4.2244, 1.7616, -7.62073, 1.64043, -1.60609, -1.426, -0.185698, 0.14962, -0.438387, -1.34109}, {-1.22545, -0.0427917, -1.25276, -4.03949, 0.935613, -0.503374, -0.0738998, -1.11087, 1.10252, -0.0471455, 1.46553, -0.0175582, 4.75218, 0.609554, 6.35212, -1.27742, 6.20208, -5.98029, 1.60609, 1.426, 0.185698, 1.57302, -1.7586, 1.5702, -1.4175, -7.28813, -0.115465, 0.14962, -0.438387, -1.34109}, {-1.22545, -0.0427917, -1.25276, 1.3465, -0.311871, 0.167791, 0.221699, 3.33261, -3.30757, -0.0471455, 1.46553, -0.0175582, -0.14962, 0.438387, 1.34109, -6.959, 3.00609, -2.24136, 6.50789, 1.59717, 5.19673, 1.57302, -1.7586, 1.5702, -1.60609, -1.426, -0.185698, 0.338202, -6.30052, -1.27086}, {-1.22545, -0.0427917, -1.25276, 1.3465, -0.311871, 0.167791, -0.0738998, -1.11087, 1.10252, 0.141437, -4.3966, 0.0526746, -0.14962, 0.438387, 1.34109, -1.57302, 1.7586, -1.5702, 1.60609, 1.426, 0.185698, 6.47482, -1.58744, 6.58122, -6.99207, -0.17852, -0.856863, 0.445219, 4.00509, -5.75119}, {3.98391, -5.22497, -0.407969, -0.61239, -1.54296, -1.54296, -3.86726e-16, 3.96024e-17, 1.60567, 1.94036, -0.198701, -0.198701, 4.84797, 5.92622, 7.91093, 0.756955, 1.9072, -0.0775154, 1.64146, -2.15281, -8.57548, -8.51839, -1.1124, 0.87232, -1.64146, 2.15281, 2.15281, -2.39842, 0.245608, -1.73911}, {-1.32797, 1.74166, 0.13599, 1.83717, 4.62887, 4.62887, -1.16018e-15, 1.18807e-16, 1.60567, 1.94036, -0.198701, -0.198701, 7.71029, -7.21224, 1.19515, 0.756955, 1.9072, -6.50019, 1.64146, -2.15281, -2.15281, -0.756955, -1.9072, 0.0775154, -9.4029, 2.94761, 2.94761, -2.39842, 0.245608, -1.73911}, {-1.32797, 1.74166, 0.13599, -0.61239, -1.54296, -1.54296, 0, 0, -4.817, 1.94036, -0.198701, -0.198701, 2.39842, -0.245608, 1.73911, 3.20651, 8.07903, 6.09431, 6.95334, -9.11944, -2.69677, -0.756955, -1.9072, 0.0775154, -1.64146, 2.15281, 2.15281, -10.1599, 1.04041, -0.944303}, {-1.32797, 1.74166, 0.13599, -0.61239, -1.54296, -1.54296, 1.16018e-15, -1.18807e-16, 1.60567, -5.82108, 0.596103, 0.596103, 2.39842, -0.245608, 1.73911, 0.756955, 1.9072, -0.0775154, 1.64146, -2.15281, -2.15281, 4.55492, -8.87383, -0.466443, 0.808098, 8.32463, 8.32463, -2.39842, 0.245608, -8.16178}, {4.24495, 4.24616, 5.57441, 2.77721, -0.373467, 3.64699, -3.15057, 0, 0, 1.78834, 1.78885, -1.78885, -12.7926, 3.70501, -16.7991, 0.461499, 0.461631, -4.50793, 18.2456, 1.74951, 2.29678, -7.61487, -7.61705, 11.6633, -5.64333, -1.74951, -2.29678, 1.6838, -2.21115, 2.21115}, {-1.41498, -1.41539, -1.85814, -8.33162, 1.1204, -10.941, -3.15057, 0, 0, 1.78834, 1.78885, -1.78885, 3.97613, 7.87269, 5.2214, 13.0638, 0.461631, -4.50793, 5.64333, 1.74951, 2.29678, -0.461499, -0.461631, 4.50793, -12.7967, -8.90493, 4.85864, 1.6838, -2.21115, 2.21115}, {-1.41498, -1.41539, -1.85814, 2.77721, -0.373467, 3.64699, 9.4517, 0, 0, 1.78834, 1.78885, -1.78885, -1.6838, 2.21115, -2.21115, -10.6473, 1.9555, -19.0959, 11.3033, 7.41106, 9.72932, -0.461499, -0.461631, 4.50793, -5.64333, -1.74951, -2.29678, -5.46957, -9.36656, 9.36656}, {-1.41498, -1.41539, -1.85814, 2.77721, -0.373467, 3.64699, -3.15057, 0, 0, -5.36503, -5.36656, 5.36656, -1.6838, 2.21115, -2.21115, 0.461499, 0.461631, -4.50793, 5.64333, 1.74951, 2.29678, 5.19843, 5.19992, 11.9405, -16.7522, -0.255645, -16.8847, 14.2861, -2.21115, 2.21115}, {-5.69487, -2.66454e-15, -8.88178e-16, -0.76309, -0.00636856, -2.01559, -0.460311, 1.45577, 1.44144, -0.67489, -1.4494, 0.574147, 1.64917, 0.0333462, 10.5538, 1.51221, -1.79156, 0.709685, 0.063805, -7.62252, -7.54749, 1.18735, 7.58918, -3.00627, 1.77744, 1.79943, 1.78172, 1.40319, -0.00787198, -2.49141}, {1.89829, -1.55431e-15, 3.33067e-16, 2.28927, 0.0191057, 6.04677, -0.460311, 1.45577, 1.44144, -0.67489, -1.4494, 0.574147, -8.99635, 0.00787198, 2.49141, 3.35345, -7.61465, -5.05609, -1.77744, -1.79943, -1.78172, -1.51221, 1.79156, -0.709685, 4.477, 7.59705, -0.514866, 1.40319, -0.00787198, -2.49141}, {1.89829, -1.9984e-15, -1.22125e-15, -0.76309, -0.00636856, -2.01559, 1.38093, -4.36732, -4.32433, -0.67489, -1.4494, 0.574147, -1.40319, 0.00787198, 2.49141, 4.56457, -1.76609, 8.77205, -9.3706, -1.79943, -1.78172, -1.51221, 1.79156, -0.709685, 1.77744, 1.79943, 1.78172, 4.10275, 5.78974, -4.78799}, {1.89829, 1.33227e-15, -5.55112e-16, -0.76309, -0.00636856, -2.01559, -0.460311, 1.45577, 1.44144, 2.02467, 4.34821, -1.72244, -1.40319, 0.00787198, 2.49141, 1.51221, -1.79156, 0.709685, -1.77744, -1.79943, -1.78172, -9.10537, 1.79156, -0.709685, 4.8298, 1.82491, 9.84408, 3.24443, -5.83096, -8.25718}, {-1.1204, -4.37783, -10.941, 1.41539, 0.69601, -1.85814, -1.78885, 0.0170635, -1.78885, 0, -2.17235, 0, -7.87269, -5.44812, 5.2214, 0.461631, -0.881407, 4.50793, 8.90493, -1.89311, 4.85864, -0.461631, 9.57081, -4.50793, -1.74951, 1.82486, 2.29678, 2.21115, 2.66408, 2.21115}, {0.373467, 1.45928, 3.64699, -4.24616, -2.08803, 5.57441, -1.78885, 0.0170635, -1.78885, 0, -2.17235, 0, -3.70501, -8.50119, -16.7991, 7.61705, -0.949661, 11.6633, 1.74951, -1.82486, -2.29678, -0.461631, 0.881407, -4.50793, -1.74951, 10.5143, 2.29678, 2.21115, 2.66408, 2.21115}, {0.373467, 1.45928, 3.64699, 1.41539, 0.69601, -1.85814, 5.36656, -0.0511904, 5.36656, 0, -2.17235, 0, -2.21115, -2.66408, -2.21115, -5.19992, -3.66545, 11.9405, 0.255645, -7.66197, -16.8847, -0.461631, 0.881407, -4.50793, -1.74951, 1.82486, 2.29678, 2.21115, 11.3535, 2.21115}, {0.373467, 1.45928, 3.64699, 1.41539, 0.69601, -1.85814, -1.78885, 0.0170635, -1.78885, 0, 6.51705, 0, -2.21115, -2.66408, -2.21115, 0.461631, -0.881407, 4.50793, 1.74951, -1.82486, -2.29678, -1.9555, -4.9557, -19.0959, -7.41106, -0.959181, 9.72932, 9.36656, 2.59583, 9.36656}, {-4.15743, -0.83732, 1.25624, -1.32462, -1.53355, 0.226806, 0.107516, 1.61619, -1.60405, -0.168703, -0.361739, 1.79599, 5.22286, 7.6848, -0.669975, 1.50443, -0.10214, 1.70236, -2.27592, -8.80746, 8.91649, -0.829614, 1.5491, -8.88631, 1.84585, 2.34271, -2.50031, 0.0756322, -1.55058, -0.237251}, {1.38581, 0.279107, -0.418747, 3.97387, 4.60066, -0.680419, 0.107516, 1.61619, -1.60405, -0.168703, -0.361739, 1.79599, -5.61888, 0.434156, 1.91224, 1.07436, -6.56689, 8.11854, -1.84585, -2.34271, 2.50031, -1.50443, 0.10214, -1.70236, 2.52067, 3.78967, -9.68425, 0.0756322, -1.55058, -0.237251}, {1.38581, 0.279107, -0.418747, -1.32462, -1.53355, 0.226806, -0.322547, -4.84856, 4.81214, -0.168703, -0.361739, 1.79599, -0.0756322, 1.55058, 0.237251, 6.80292, 6.03208, 0.795135, -7.3891, -3.45914, 4.1753, -1.50443, 0.10214, -1.70236, 1.84585, 2.34271, -2.50031, 0.750446, -0.103625, -7.4212}, {1.38581, 0.279107, -0.418747, -1.32462, -1.53355, 0.226806, 0.107516, 1.61619, -1.60405, 0.50611, 1.08522, -5.38796, -0.0756322, 1.55058, 0.237251, 1.50443, -0.10214, 1.70236, -1.84585, -2.34271, 2.50031, -7.04767, -1.01429, -0.0273746, 7.14434, 8.47693, -3.40753, -0.354431, -8.01533, 6.17893}, {-9.45441, -1.42109e-14, 0, -1.78885, -1.78885, 1.78885, -1.36261, -1.36216, -1.78885, 0, 3.15102, 0, 5.47113, 9.36656, -9.36656, 3.89543, 3.89487, 0, 3.23931, 7.13238, 9.36656, -3.89543, -16.4989, 0, 2.21115, -1.68373, -2.21115, 1.68428, -2.21115, 2.21115}, {3.15147, 5.77316e-15, -1.39933e-15, 5.36656, 5.36656, -5.36656, -1.36261, -1.36216, -1.78885, 1.06591e-15, 3.15102, 1.39933e-15, -14.2902, 2.21115, -2.21115, 9.34589, 9.34353, 7.15542, -2.21115, 1.68373, 2.21115, -3.89543, -3.89487, 3.47389e-31, 2.21115, -14.2878, -2.21115, 1.68428, -2.21115, 2.21115}, {3.15147, 1.77636e-15, 2.66454e-15, -1.78885, -1.78885, 1.78885, 4.08784, 4.08649, 5.36656, 0, 3.15102, 0, -1.68428, 2.21115, -2.21115, 11.0508, 11.0503, -7.15542, -14.817, 1.68373, 2.21115, -3.89543, -3.89487, -3.55271e-15, 2.21115, -1.68373, -2.21115, 1.68428, -14.8152, 2.21115}, {3.15147, -2.66454e-15, 0, -1.78885, -1.78885, 1.78885, -1.36261, -1.36216, -1.78885, 0, -9.45305, 0, -1.68428, 2.21115, -2.21115, 3.89543, 3.89487, 0, -2.21115, 1.68373, 2.21115, -16.5013, -3.89487, 0, 9.36656, 5.47169, -9.36656, 7.13474, 3.23751, 9.36656}, {1.36235e-15, 1.07667, 3.62612, 1.31177, 0.0458057, 1.34099, -1.31177, -1.15409, -0.162924, 1.0026e-17, 1.46718, 0.0306378, -6.86849, 0.20377, -5.52749, -6.66134e-16, 1.36992, -1.45618, 6.86849, 6.48653, 2.34713, 6.2603e-16, -7.23863, 1.33362, -1.62143, -1.87015, -1.69543, 1.62143, -0.386993, 0.163515}, {-7.28501e-17, -0.358889, -1.20871, -3.9353, -0.137417, -4.02298, -1.31177, -1.15409, -0.162924, 1.18307e-15, 1.46718, 0.0306378, -1.62143, 1.82255, 4.67132, 5.24706, 5.9863, -0.804479, 1.62143, 1.87015, 1.69543, -1.55431e-15, -1.36992, 1.45618, -1.62143, -7.73886, -1.81798, 1.62143, -0.386993, 0.163515}, {5.92827e-17, -0.358889, -1.20871, 1.31177, 0.0458057, 1.34099, 3.9353, 3.46228, 0.488772, -9.47461e-16, 1.46718, 0.0306378, -1.62143, 0.386993, -0.163515, -5.24706, 1.1867, -6.82015, 1.62143, 3.30571, 6.53026, 1.11022e-15, -1.36992, 1.45618, -1.62143, -1.87015, -1.69543, 1.62143, -6.25571, 0.0409633}, {0, -0.358889, -1.20871, 1.31177, 0.0458057, 1.34099, -1.31177, -1.15409, -0.162924, 0, -4.40153, -0.0919135, -1.62143, 0.386993, -0.163515, 0, 1.36992, -1.45618, 1.62143, 1.87015, 1.69543, 0, 0.0656375, 6.29101, -6.86849, -2.05337, -7.05941, 6.86849, 4.22939, 0.815211}, {1.26288e-15, -3.55271e-15, -3.26126, -1.4431, -0.571101, -0.587405, 1.45561, -1.44292, 0.31363, -0.0125109, 2.01402, -0.813311, 7.55617, 2.99032, 1.73198, -0.0154644, 2.48947, 0.338405, -7.62167, 7.55524, -2.9859, 0.0655081, -10.5456, 2.91484, 1.79923, -1.78355, 1.73138, -1.78377, -0.70592, 0.61764}, {9.0726e-16, -4.44089e-16, 1.08709, 4.3293, 1.7133, 1.76222, 1.45561, -1.44292, 0.31363, -0.0125109, 2.01402, -0.813311, 1.78377, 0.70592, -4.96598, -5.83791, 8.26116, -0.916114, -1.79923, 1.78355, -1.73138, 0.0154644, -2.48947, -0.338405, 1.84928, -9.83965, 4.98462, -1.78377, -0.70592, 0.61764}, {4.63171e-16, 8.88178e-16, 1.08709, -1.4431, -0.571101, -0.587405, -4.36683, 4.32877, -0.940889, -0.0125109, 2.01402, -0.813311, 1.78377, 0.70592, -0.61764, 5.75693, 4.77387, 2.68803, -1.79923, 1.78355, -6.07972, 0.0154644, -2.48947, -0.338405, 1.79923, -1.78355, 1.73138, -1.73373, -8.76202, 3.87088}, {0, -4.44089e-16, 1.08709, -1.4431, -0.571101, -0.587405, 1.45561, -1.44292, 0.31363, 0.0375328, -6.04207, 2.43993, 1.78377, 0.70592, -0.61764, -0.0154644, 2.48947, 0.338405, -1.79923, 1.78355, -1.73138, 0.0154644, -2.48947, -4.68675, 7.57163, 0.500853, 4.081, -7.60621, 5.06577, -0.63688}, {2.18368e-11, -2.07612e-11, -5.36656, -2.34313, 0, 0, 2.34313, -2.34313, -1.78885, 0, 2.34313, 0, 12.2688, -8.55449e-12, -2.21115, -8.99725e-12, 2.89626, 2.21115, -12.2688, 12.2688, 7.15542, 8.99725e-12, -12.2688, -2.21115, 2.89626, -2.89626, 0, -2.89626, 8.55449e-12, 2.21115}, {-7.27948e-12, 6.92291e-12, 1.78885, 7.02938, 0, 0, 2.34313, -2.34313, -1.78885, -1.36297e-15, 2.34313, 1.04056e-15, 2.89626, -3.62483e-11, -9.36656, -9.3725, 12.2688, 9.36656, -2.89626, 2.89626, 8.4211e-16, 8.99947e-12, -2.89626, -2.21115, 2.89626, -12.2688, -5.44843e-15, -2.89626, 8.55715e-12, 2.21115}, {-7.27773e-12, 6.92024e-12, 1.78885, -2.34313, 0, 0, -7.02938, 7.02938, 5.36656, 0, 2.34313, 0, 2.89626, -8.55405e-12, -2.21115, 9.3725, 2.89626, 2.21115, -2.89626, 2.89626, -7.15542, 8.99636e-12, -2.89626, -2.21115, 2.89626, -2.89626, 0, -2.89626, -9.3725, 2.21115}, {-7.27951e-12, 6.9198e-12, 1.78885, -2.34313, 0, 0, 2.34313, -2.34313, -1.78885, 0, -7.02938, 0, 2.89626, -8.55316e-12, -2.21115, -8.99814e-12, 2.89626, 2.21115, -2.89626, 2.89626, -4.44089e-16, 3.81171e-11, -2.89626, -9.36656, 12.2688, -2.89626, 0, -12.2688, 9.3725, 9.36656}, {0, -2.67212e-17, 7.02938, 0, -2.34313, 0, -1.78885, 2.34313, 2.34566, 1.78885, 1.02081e-11, -0.00253498, 0, 12.2688, 2.89626, 2.21115, 1.26184e-11, -2.8994, 9.36656, -12.2688, -9.38578, -9.36656, -5.34508e-11, 2.90954, -2.21115, 2.89626, 0.00313341, 0, -2.89626, -2.89626}, {0, 3.72666e-16, -2.34313, 0, 7.02938, 0, -1.78885, 2.34313, 2.34566, 1.78885, 1.02097e-11, -0.00253498, 0, 2.89626, 12.2688, 9.36656, -9.3725, -12.282, 2.21115, -2.89626, -0.00313341, -2.21115, -1.26201e-11, 2.8994, -9.36656, 2.89626, 0.0132733, 0, -2.89626, -2.89626}, {0, -1.47432e-16, -2.34313, 0, -2.34313, 0, 5.36656, -7.02938, -7.03698, 1.78885, 1.02102e-11, -0.00253498, 0, 2.89626, 2.89626, 2.21115, 9.3725, -2.8994, 2.21115, -2.89626, 9.36937, -2.21115, -1.26201e-11, 2.8994, -2.21115, 2.89626, 0.00313341, -7.15542, -2.89626, -2.88612}, {-2.22045e-16, -3.98999e-17, -2.34313, 0, -2.34313, 0, -1.78885, 2.34313, 2.34566, -5.36656, -3.06329e-11, 0.00760494, 4.44089e-16, 2.89626, 2.89626, 2.21115, 1.26215e-11, -2.8994, 2.21115, -2.89626, -0.00313341, -2.21115, -1.26209e-11, 12.2719, -2.21115, 12.2688, 0.00313341, 7.15542, -12.2688, -12.2789}, {3.55271e-15, -9.45441, -2.66454e-14, 1.78885, -1.78885, -1.78885, -1.78885, -1.36261, -1.36261, 0, 0, 3.15147, -9.36656, 5.47113, 9.36656, -1.77636e-15, 3.89543, 3.89543, 9.36656, 3.23931, 7.13474, 1.77636e-15, -3.89543, -16.5013, -2.21115, 2.21115, -1.68428, 2.21115, 1.68428, -2.21115}, {3.76824e-16, 3.15147, -2.22045e-15, -5.36656, 5.36656, 5.36656, -1.78885, -1.36261, -1.36261, 1.39953e-15, 1.06606e-15, 3.15147, -2.21115, -14.2902, 2.21115, 7.15542, 9.34589, 9.34589, 2.21115, -2.21115, 1.68428, -2.22045e-15, -3.89543, -3.89543, -2.21115, 2.21115, -14.2902, 2.21115, 1.68428, -2.21115}, {0, 3.15147, -7.10543e-15, 1.78885, -1.78885, -1.78885, 5.36656, 4.08784, 4.08784, 0, 0, 3.15147, -2.21115, -1.68428, 2.21115, -7.15542, 11.0508, 11.0508, 2.21115, -14.817, 1.68428, 0, -3.89543, -3.89543, -2.21115, 2.21115, -1.68428, 2.21115, 1.68428, -14.817}, {-5.55112e-15, 3.15147, 4.44089e-16, 1.78885, -1.78885, -1.78885, -1.78885, -1.36261, -1.36261, 0, 0, -9.45441, -2.21115, -1.68428, 2.21115, -7.10543e-15, 3.89543, 3.89543, 2.21115, -2.21115, 1.68428, 3.01981e-14, -16.5013, -3.89543, -9.36656, 9.36656, 5.47113, 9.36656, 7.13474, 3.23931}, {-5.36656, 7.03835, 7.02938, -1.78885, -6.94208e-12, -7.11741e-12, 0, 2.34612, 2.72942e-15, 0, 0, 2.34313, 7.15542, 2.89996, 2.89626, 2.21115, -2.89996, 8.79423e-12, -2.21115, -9.38447, 2.89626, -2.21115, 2.89996, -9.3725, 2.21115, 8.58089e-12, -2.89626, 0, -2.89996, -2.89626}, {1.78885, -2.34612, -2.34313, 5.36656, 2.08278e-11, 2.13522e-11, 0, 2.34612, 1.36471e-15, 0, -1.36471e-15, 2.34313, -7.15542, 12.2844, 12.2688, 2.21115, -12.2844, 8.79045e-12, -2.21115, -8.58264e-12, 2.89626, -2.21115, 2.89996, -8.79533e-12, 2.21115, 8.58868e-12, -12.2688, 0, -2.89996, -2.89626}, {1.78885, -2.34612, -2.34313, -1.78885, -6.94417e-12, -7.11741e-12, 0, -7.03835, 0, 0, 0, 2.34313, -4.44089e-16, 2.89996, 2.89626, 9.36656, -2.89996, 3.72672e-11, -9.36656, 9.38447, 12.2688, -2.21115, 2.89996, -8.79702e-12, 2.21115, 8.58346e-12, -2.89626, 0, -2.89996, -12.2688}, {1.78885, -2.34612, -2.34313, -1.78885, -6.94104e-12, -7.11845e-12, 0, 2.34612, 2.72942e-15, 0, 0, -7.02938, -4.44089e-16, 2.89996, 2.89626, 2.21115, -2.89996, 8.79551e-12, -2.21115, -8.57902e-12, 2.89626, -9.36656, 12.2844, 9.3725, 9.36656, 3.63438e-11, -2.89626, 0, -12.2844, -2.89626}, {5.36656, -5.36656, 5.36656, 3.15147, 0, 0, -1.36261, -1.78885, -1.36216, 0, 0, 3.15102, -14.2902, -2.21115, 2.21115, -2.21115, 2.21115, 1.68373, 9.34589, 7.15542, 9.34353, 2.21115, -2.21115, -14.2878, -3.89543, 0, -3.89487, 1.68428, 2.21115, -2.21115}, {-1.78885, 1.78885, -1.78885, -9.45441, -4.1986e-15, -1.05928e-14, -1.36261, -1.78885, -1.36216, 1.06591e-15, 1.39933e-15, 3.15102, 5.47113, -9.36656, 9.36656, 3.23931, 9.36656, 7.13238, 3.89543, 3.0155e-15, 3.89487, 2.21115, -2.21115, -1.68373, -3.89543, -9.05692e-15, -16.4989, 1.68428, 2.21115, -2.21115}, {-1.78885, 1.78885, -1.78885, 3.15147, 0, 0, 4.08784, 5.36656, 4.08649, 0, 0, 3.15102, -1.68428, -2.21115, 2.21115, -14.817, 2.21115, 1.68373, 11.0508, -7.15542, 11.0503, 2.21115, -2.21115, -1.68373, -3.89543, 0, -3.89487, 1.68428, 2.21115, -14.8152}, {-1.78885, 1.78885, -1.78885, 3.15147, 0, 0, -1.36261, -1.78885, -1.36216, 0, 0, -9.45305, -1.68428, -2.21115, 2.21115, -2.21115, 2.21115, 1.68373, 3.89543, -4.44089e-16, 3.89487, 9.36656, -9.36656, 5.47169, -16.5013, 0, -3.89487, 7.13474, 9.36656, 3.23751}, {3.37408, 4.04519, 4.04519, 1.73606, 1.52739, 0.215622, 1.28983, 0.0265046, 1.33827, -1.90119, -0.205494, -0.205494, -7.69991, -6.33079, 0.5377, -3.7402, -1.92072, -1.92072, -5.36342, 1.52793, -5.34056, 11.345, 2.74269, 2.74269, 0.204116, -1.63395, -0.0125188, 0.755686, 0.221243, -1.40019}, {-1.12469, -1.3484, -1.3484, -5.20817, -4.58216, -0.646866, 1.28983, 0.0265046, 1.33827, -1.90119, -0.205494, -0.205494, 3.74309, 5.17235, 6.79378, -8.89951, -2.02673, -7.27379, -0.204116, 1.63395, 0.0125188, 3.7402, 1.92072, 1.92072, 7.80888, -0.811974, 0.809457, 0.755686, 0.221243, -1.40019}, {-1.12469, -1.3484, -1.3484, 1.73606, 1.52739, 0.215622, -3.86948, -0.0795138, -4.01481, -1.90119, -0.205494, -0.205494, -0.755686, -0.221243, 1.40019, -10.6844, -8.03027, -2.7832, 4.29466, 7.02754, 5.40611, 3.7402, 1.92072, 1.92072, 0.204116, -1.63395, -0.0125188, 8.36045, 1.04322, -0.578212}, {-1.12469, -1.3484, -1.3484, 1.73606, 1.52739, 0.215622, 1.28983, 0.0265046, 1.33827, 5.70357, 0.616482, 0.616482, -0.755686, -0.221243, 1.40019, -3.7402, -1.92072, -1.92072, -0.204116, 1.63395, 0.0125188, 8.23897, 7.31431, 7.31431, -6.74011, -7.7435, -0.875007, -4.40362, 0.115225, -6.75327}, {7.02938, 7.0206, 5.36656, -2.72401e-15, 2.34147, -1.03982e-15, 2.34313, 0, 0, -1.04066e-11, -0.00126659, 1.78885, 2.89626, -9.36743, 2.21115, -2.89626, -2.89421, 1.28529e-15, -9.3725, 2.89265, 2.21115, 2.89626, 2.89928, -7.15542, 1.28666e-11, -2.89265, -2.21115, -2.89626, 0.00156559, -2.21115}, {-2.34313, -2.3402, -1.78885, 4.08602e-15, -7.0244, -3.11946e-15, 2.34313, 7.36763e-19, -1.04056e-15, -1.0403e-11, -0.00126659, 1.78885, 12.2688, 9.35923, 9.36656, -12.2688, -2.89421, 4.16314e-15, -1.28599e-11, 2.89265, 2.21115, 2.89626, 2.89421, 4.43179e-16, 5.44723e-11, -2.88758, -9.36656, -2.89626, 0.00156559, -2.21115}, {-2.34313, -2.3402, -1.78885, -2.41965e-26, 2.34147, 4.15928e-15, -7.02938, 0, 0, -1.04066e-11, -0.00126659, 1.78885, 2.89626, -0.00156559, 2.21115, -2.89626, -12.2601, -2.17783e-14, 9.3725, 12.2534, 9.36656, 2.89626, 2.89421, 5.58524e-15, 1.28633e-11, -2.89265, -2.21115, -2.89626, 0.00663197, -9.36656}, {-2.34313, -2.3402, -1.78885, 6.05094e-27, 2.34147, -1.03982e-15, 2.34313, 0, 0, 3.12292e-11, 0.00379978, -5.36656, 2.89626, -0.00156559, 2.21115, -2.89626, -2.89421, 1.28529e-15, -1.28666e-11, 2.89265, 2.21115, 12.2688, 12.255, 7.15542, 1.28671e-11, -12.2585, -2.21115, -12.2688, 0.00156559, -2.21115}, {-3.69587, -1.12113, -5.61393, -0.115297, -1.49037, 0.58988, -0.136463, 0.136463, -2.07323, -0.980196, 0.980196, -0.387956, -0.919078, 7.34175, -5.40172, 0.311194, 1.67352, 1.83353, -0.80825, -1.17646, 8.54253, 3.60959, -5.59431, -0.281701, 1.3541, 0.630611, -0.249592, 1.38027, -1.38027, 3.0422}, {1.23196, 0.373711, 1.87131, 0.345892, 4.47111, -1.76964, -0.136463, 0.136463, -2.07323, -0.980196, 0.980196, -0.387956, -6.30809, -0.114578, -10.5274, 0.857047, 1.12767, 10.1265, -1.3541, -0.630611, 0.249592, -0.311194, -1.67352, -1.83353, 5.27489, -3.29017, 1.30223, 1.38027, -1.38027, 3.0422}, {1.23196, 0.373711, 1.87131, -0.115297, -1.49037, 0.58988, 0.40939, -0.40939, 6.2197, -0.980196, 0.980196, -0.387956, -1.38027, 1.38027, -3.0422, 0.772383, 7.635, -0.525997, -6.28193, -2.12546, -7.23564, -0.311194, -1.67352, -1.83353, 1.3541, 0.630611, -0.249592, 5.30105, -5.30105, 4.59402}, {1.23196, 0.373711, 1.87131, -0.115297, -1.49037, 0.58988, -0.136463, 0.136463, -2.07323, 2.94059, -2.94059, 1.16387, -1.38027, 1.38027, -3.0422, 0.311194, 1.67352, 1.83353, -1.3541, -0.630611, 0.249592, -5.23902, -3.16837, -9.31876, 1.81529, 6.59209, -2.60911, 1.92612, -1.92612, 11.3351}, {5.57441, -4.24616, -4.24616, 3.64699, 0.373467, -2.778, -1.78885, -1.78885, -1.78885, 0, 0, 3.15147, -16.7991, -3.70501, 12.7963, -2.29678, 1.74951, 5.64494, 11.6633, 7.61705, 7.61705, 2.29678, -1.74951, -18.2508, -4.50793, -0.461631, -0.461631, 2.21115, 2.21115, -1.68428}, {-1.85814, 1.41539, 1.41539, -10.941, -1.1204, 8.334, -1.78885, -1.78885, -1.78885, 1.39953e-15, 1.39953e-15, 3.15147, 5.2214, -7.87269, -3.97726, 4.85864, 8.90493, 12.8004, 4.50793, 0.461631, 0.461631, 2.29678, -1.74951, -5.64494, -4.50793, -0.461631, -13.0675, 2.21115, 2.21115, -1.68428}, {-1.85814, 1.41539, 1.41539, 3.64699, 0.373467, -2.778, 5.36656, 5.36656, 5.36656, 0, 0, 3.15147, -2.21115, -2.21115, 1.68428, -16.8847, 0.255645, 16.7569, 11.9405, -5.19992, -5.19992, 2.29678, -1.74951, -5.64494, -4.50793, -0.461631, -0.461631, 2.21115, 2.21115, -14.2902}, {-1.85814, 1.41539, 1.41539, 3.64699, 0.373467, -2.778, -1.78885, -1.78885, -1.78885, 0, 0, -9.45441, -2.21115, -2.21115, 1.68428, -2.29678, 1.74951, 5.64494, 4.50793, 0.461631, 0.461631, 9.72932, -7.41106, -11.3065, -19.0959, -1.9555, 10.6504, 9.36656, 9.36656, 5.47113}, {0.00760494, 5.36656, -0.00379978, 1.35906e-15, -2.07964e-15, 2.34147, -2.34059, 1.78885, -2.34273, 2.34313, 0, 0, 0.00313341, 2.21115, -12.2616, 2.89313, -2.21115, 0.00156559, 12.2586, -7.15542, 12.2651, -12.2656, 2.21115, -0.00156559, -2.89626, 2.57058e-15, -2.89421, -0.00313341, -2.21115, 2.89578}, {-0.00253498, -1.78885, 0.00126659, -8.16761e-15, 3.11946e-15, -7.0244, -2.34059, 1.78885, -2.34273, 2.34313, -1.04056e-15, 1.36274e-15, 0.0132733, 9.36656, -2.90084, 12.2555, -9.36656, 9.3725, 2.89626, -2.1274e-15, 2.89421, -2.89313, 2.21115, -0.00156559, -12.2688, 6.73371e-15, -2.89421, -0.00313341, -2.21115, 2.89578}, {-0.00253498, -1.78885, 0.00126659, 5.44802e-15, 0, 2.34147, 7.02177, -5.36656, 7.0282, 2.34313, 0, 0, 0.00313341, 2.21115, -2.89578, 2.89313, -2.21115, -9.3643, 2.9064, 7.15542, 2.88915, -2.89313, 2.21115, -0.00156559, -2.89626, 0, -2.89421, -9.37564, -2.21115, 2.89578}, {-0.00253498, -1.78885, 0.00126659, -1.36201e-15, 0, 2.34147, -2.34059, 1.78885, -2.34273, -7.02938, 0, 0, 0.00313341, 2.21115, -2.89578, 2.89313, -2.21115, 0.00156559, 2.89626, 4.44089e-16, 2.89421, -2.88299, 9.36656, -0.00663197, -2.89626, 0, -12.2601, 9.35923, -9.36656, 12.2667}, {-2.0499, 2.05263, 6.32666, 0.872781, 1.47234, -0.0861955, 0.376973, -0.375702, 1.61414, -1.93305, -0.412429, 0.580942, -5.41454, -6.86355, 3.05805, -1.54478, -1.35552, -1.88864, -2.81846, 2.81293, -5.84502, 9.277, 3.00524, -0.435124, 1.31057, -1.31012, -0.61154, 1.92342, 0.974184, -2.71327}, {0.683301, -0.68421, -2.10889, -2.61834, -4.41703, 0.258586, 0.376973, -0.375702, 1.61414, -1.93305, -0.412429, 0.580942, -4.65662, 1.76266, 11.1488, -3.05267, 0.147289, -8.34521, -1.31057, 1.31012, 0.61154, 1.54478, 1.35552, 1.88864, 9.04279, 0.339593, -2.93531, 1.92342, 0.974184, -2.71327}, {0.683301, -0.68421, -2.10889, 0.872781, 1.47234, -0.0861955, -1.13092, 1.12711, -4.84242, -1.93305, -0.412429, 0.580942, -1.92342, -0.974184, 2.71327, -5.0359, -7.24489, -1.54386, -4.04377, 4.04697, 9.04709, 1.54478, 1.35552, 1.88864, 1.31057, -1.31012, -0.61154, 9.65564, 2.6239, -5.03704}, {0.683301, -0.68421, -2.10889, 0.872781, 1.47234, -0.0861955, 0.376973, -0.375702, 1.61414, 5.79916, 1.23729, -1.74283, -1.92342, -0.974184, 2.71327, -1.54478, -1.35552, -1.88864, -1.31057, 1.31012, 0.61154, -1.18842, 4.09236, 10.3242, -2.18055, -7.19949, -0.266758, 0.41553, 2.47699, -9.16983}, {3.84226, 4.31846, 0.720662, 0.104325, 0.223697, -1.11063, 1.27099, 0.0329107, 0.803582, -0.0945646, 1.18288, 0.547265, 1.03685, 0.608011, 6.11224, -1.69999, -0.317185, 0.379527, -5.07191, 1.60698, -3.91068, 2.07825, -4.41433, -2.56859, -0.0120645, -1.73863, 0.696352, -1.45415, -1.5028, -1.66974}, {-1.28075, -1.43949, -0.240221, -0.312975, -0.671092, 3.33188, 1.27099, 0.0329107, 0.803582, -0.0945646, 1.18288, 0.547265, 6.57716, 7.26075, 2.63062, -6.78396, -0.448828, -2.8348, 0.0120645, 1.73863, -0.696352, 1.69999, 0.317185, -0.379527, 0.366194, -6.47014, -1.49271, -1.45415, -1.5028, -1.66974}, {-1.28075, -1.43949, -0.240221, 0.104325, 0.223697, -1.11063, -3.81298, -0.0987322, -2.41075, -0.0945646, 1.18288, 0.547265, 1.45415, 1.5028, 1.66974, -2.11729, -1.21197, 4.82203, 5.13508, 7.49658, 0.26453, 1.69999, 0.317185, -0.379527, -0.0120645, -1.73863, 0.696352, -1.07589, -6.23432, -3.8588}, {-1.28075, -1.43949, -0.240221, 0.104325, 0.223697, -1.11063, 1.27099, 0.0329107, 0.803582, 0.283694, -3.54864, -1.64179, 1.45415, 1.5028, 1.66974, -1.69999, -0.317185, 0.379527, 0.0120645, 1.73863, -0.696352, 6.823, 6.07514, 0.581356, -0.429365, -2.63341, 5.13886, -6.53812, -1.63444, -4.88406}, {6.08004, 1.41594, 0.0377686, 0.57469, 1.08447, 1.45022, 1.45199, 0.720135, -1.43763, 0, -1.33263, 0, -0.504, -5.09498, -7.57787, -2.50511, -2.23062, -0.0155615, -5.09761, -3.18728, 7.54308, 2.50511, 7.56114, 0.0155615, -0.710355, 0.306735, -1.79257, -1.79476, 0.757084, 1.77701}, {-2.02668, -0.471981, -0.0125895, -1.72407, -3.25342, -4.35065, 1.45199, 0.720135, -1.43763, 0, -1.33263, 0, 9.90148, 1.13084, -1.72665, -8.31307, -5.11116, 5.73495, 0.710355, -0.306735, 1.79257, 2.50511, 2.23062, 0.0155615, -0.710355, 5.63725, -1.79257, -1.79476, 0.757084, 1.77701}, {-2.02668, -0.471981, -0.0125895, 0.57469, 1.08447, 1.45022, -4.35597, -2.1604, 4.31288, 0, -1.33263, 0, 1.79476, -0.757084, -1.77701, -4.80387, -6.56852, -5.81643, 8.81707, 1.58119, 1.84292, 2.50511, 2.23062, 0.0155615, -0.710355, 0.306735, -1.79257, -1.79476, 6.0876, 1.77701}, {-2.02668, -0.471981, -0.0125895, 0.57469, 1.08447, 1.45022, 1.45199, 0.720135, -1.43763, 0, 3.99789, 0, 1.79476, -0.757084, -1.77701, -2.50511, -2.23062, -0.0155615, 0.710355, -0.306735, 1.79257, 10.6118, 4.11854, 0.0659197, -3.00911, -4.03116, -7.59343, -7.60272, -2.12346, 7.52752}, {-1.37732, 4.35589, 4.31302, -1.40475, 2.02293, -0.00626368, 1.89829, -6.72683e-16, 1.70116e-15, -0.952649, -0.570969, 1.44394, 6.78788, -8.79749, 1.80986, -0.610051, -2.50048, 0.00774234, -10.5071, 1.79473, 1.77706, 4.42065, 4.78436, -5.78349, 2.9139, -1.79473, -1.77706, -1.16888, 0.705756, -1.7848}, {0.459107, -1.45196, -1.43767, 4.21425, -6.0688, 0.018791, 1.89829, -4.0361e-16, 1.0207e-15, -0.952649, -0.570969, 1.44394, -0.66755, 5.1021, 7.53549, -8.20322, -2.50048, 0.00774234, -2.9139, 1.79473, 1.77706, 0.610051, 2.50048, -0.00774234, 6.7245, 0.489149, -7.5528, -1.16888, 0.705756, -1.7848}, {0.459107, -1.45196, -1.43767, -1.40475, 2.02293, -0.00626368, -5.69487, 0, 0, -0.952649, -0.570969, 1.44394, 1.16888, -0.705756, 1.7848, 5.00895, -10.5922, 0.0327971, -4.75033, 7.60258, 7.52775, 0.610051, 2.50048, -0.00774234, 2.9139, -1.79473, -1.77706, 2.64172, 2.98963, -7.56055}, {0.459107, -1.45196, -1.43767, -1.40475, 2.02293, -0.00626368, 1.89829, -1.34537e-16, 3.40233e-16, 2.85795, 1.71291, -4.33181, 1.16888, -0.705756, 1.7848, -0.610051, -2.50048, 0.00774234, -2.9139, 1.79473, 1.77706, -1.22638, 8.30834, 5.74295, 8.5329, -9.88646, -1.75201, -8.76204, 0.705756, -1.7848}, {-5.36656, -5.36656, -5.36656, -0.373467, -3.64699, -0.373467, 0, 0, -1.60567, -1.41539, 1.85814, 0.190281, -0.255645, 16.8847, -0.255645, 0.461631, 4.50793, 2.44635, -2.21115, -2.21115, 6.19624, 5.19992, -11.9405, -3.20747, 2.21115, 2.21115, 0.226431, 1.74951, -2.29678, 1.74951}, {1.78885, 1.78885, 1.78885, 1.1204, 10.941, 1.1204, 0, 0, -1.60567, -1.41539, 1.85814, 0.190281, -8.90493, -4.85864, -8.90493, 0.461631, 4.50793, 8.86902, -2.21115, -2.21115, -0.226431, -0.461631, -4.50793, -2.44635, 7.87269, -5.2214, -0.534693, 1.74951, -2.29678, 1.74951}, {1.78885, 1.78885, 1.78885, -0.373467, -3.64699, -0.373467, 0, 0, 4.817, -1.41539, 1.85814, 0.190281, -1.74951, 2.29678, -1.74951, 1.9555, 19.0959, 3.94022, -9.36656, -9.36656, -7.38185, -0.461631, -4.50793, -2.44635, 2.21115, 2.21115, 0.226431, 7.41106, -9.72932, 0.988391}, {1.78885, 1.78885, 1.78885, -0.373467, -3.64699, -0.373467, 0, 0, -1.60567, 4.24616, -5.57441, -0.570843, -1.74951, 2.29678, -1.74951, 0.461631, 4.50793, 2.44635, -2.21115, -2.21115, -0.226431, -7.61705, -11.6633, -9.60176, 3.70501, 16.7991, 1.7203, 1.74951, -2.29678, 8.17219}, {-8.88178e-15, -9.45441, 5.32907e-15, 1.78885, -1.36261, -1.36261, -1.78885, -1.78885, -1.78885, 0, 0, 3.15147, -9.36656, 3.23931, 7.13474, 3.55271e-15, 3.89543, 3.89543, 9.36656, 5.47113, 9.36656, -3.55271e-15, -3.89543, -16.5013, -2.21115, 1.68428, -2.21115, 2.21115, 2.21115, -1.68428}, {1.48705e-15, 3.15147, -8.88178e-16, -5.36656, 4.08784, 4.08784, -1.78885, -1.78885, -1.78885, 1.39953e-15, 1.39953e-15, 3.15147, -2.21115, -14.817, 1.68428, 7.15542, 11.0508, 11.0508, 2.21115, -1.68428, 2.21115, -3.55271e-15, -3.89543, -3.89543, -2.21115, 1.68428, -14.817, 2.21115, 2.21115, -1.68428}, {2.88658e-15, 3.15147, -2.22045e-15, 1.78885, -1.36261, -1.36261, 5.36656, 5.36656, 5.36656, 0, 0, 3.15147, -2.21115, -2.21115, 1.68428, -7.15542, 9.34589, 9.34589, 2.21115, -14.2902, 2.21115, -3.55271e-15, -3.89543, -3.89543, -2.21115, 1.68428, -2.21115, 2.21115, 2.21115, -14.2902}, {0, 3.15147, 2.22045e-15, 1.78885, -1.36261, -1.36261, -1.78885, -1.78885, -1.78885, 0, 0, -9.45441, -2.21115, -2.21115, 1.68428, 0, 3.89543, 3.89543, 2.21115, -1.68428, 2.21115, 0, -16.5013, -3.89543, -9.36656, 7.13474, 3.23931, 9.36656, 9.36656, 5.47113}, {3.05492, -2.11527, -4.36034, 0.668117, -1.63909, -0.00517894, 0.911433, 1.21439, 0.00383706, -0.561241, -0.2804, -1.4521, -2.23961, 7.71083, -1.76944, -1.95243, 0.524948, 0.00165865, -3.51362, -7.23019, -1.81665, 4.1974, 0.59665, 5.80676, -0.132105, 2.37262, 1.8013, -0.43286, -1.15448, 1.79016}, {-1.01831, 0.705091, 1.45345, -2.00435, 4.91726, 0.0155368, 0.911433, 1.21439, 0.00383706, -0.561241, -0.2804, -1.4521, 4.50609, -1.66588, -7.60394, -5.59816, -4.33263, -0.0136896, 0.132105, -2.37262, -1.8013, 1.95243, -0.524948, -0.00165865, 2.11286, 3.49421, 7.60972, -0.43286, -1.15448, 1.79016}, {-1.01831, 0.705091, 1.45345, 0.668117, -1.63909, -0.00517894, -2.7343, -3.64318, -0.0115112, -0.561241, -0.2804, -1.4521, 0.43286, 1.15448, -1.79016, -4.6249, 7.08129, 0.0223744, 4.20534, -5.19298, -7.61508, 1.95243, -0.524948, -0.00165865, -0.132105, 2.37262, 1.8013, 1.81211, -0.0328828, 7.59857}, {-1.01831, 0.705091, 1.45345, 0.668117, -1.63909, -0.00517894, 0.911433, 1.21439, 0.00383706, 1.68372, 0.841199, 4.35631, 0.43286, 1.15448, -1.79016, -1.95243, 0.524948, 0.00165865, 0.132105, -2.37262, -1.8013, 6.02566, -3.34531, -5.81544, -2.80457, 8.92896, 1.82202, -4.07859, -6.01206, 1.77481}, {5.82171, 7.62554, -0.596168, 1.32981, 1.74185, -1.74185, 0.61076, -1.54312, 1.54312, 0, 2.34313, 0, -4.5643, -5.97853, 8.87479, -2.39867, -0.245635, 0.245635, -0.799305, 11.2218, -8.32553, 2.39867, -9.12687, -0.245635, -1.64373, -5.0493, 2.15304, -0.754941, -0.988857, -1.90741}, {-1.94057, -2.54185, 0.198723, -3.98943, -5.22554, 5.22554, 0.61076, -1.54312, 1.54312, -3.55272e-16, 2.34313, -8.97618e-16, 8.51722, 11.1562, 1.11252, -4.84171, 5.92686, -5.92686, 1.64373, 5.0493, -2.15304, 2.39867, 0.245635, -0.245635, -1.64373, -14.4218, 2.15304, -0.754941, -0.988857, -1.90741}, {-1.94057, -2.54185, 0.198723, 1.32981, 1.74185, -1.74185, -1.83228, 4.62937, -4.62937, 0, 2.34313, 0, 0.754941, 0.988857, 1.90741, -7.71791, -7.21302, 7.21302, 9.40601, 15.2167, -2.94793, 2.39867, 0.245635, -0.245635, -1.64373, -5.0493, 2.15304, -0.754941, -10.3614, -1.90741}, {-1.94057, -2.54185, 0.198723, 1.32981, 1.74185, -1.74185, 0.61076, -1.54312, 1.54312, 0, -7.02938, 0, 0.754941, 0.988857, 1.90741, -2.39867, -0.245635, 0.245635, 1.64373, 5.0493, -2.15304, 10.1609, 10.413, -1.04052, -6.96297, -12.0167, 9.12042, -3.19798, 5.18364, -8.0799}, {5.81909, -7.62212, -0.600985, 0, -2.34313, 0, 0.610485, 1.54348, 1.54262, 1.32921, -1.74106, -1.74295, 2.3976, 9.12828, -0.24762, -0.754601, 0.988412, -1.90678, -0.798945, -11.2223, -8.32487, -4.56224, 5.97584, 8.87857, -1.643, 5.04833, 2.1544, -2.3976, 0.244222, 0.24762}, {-1.9397, 2.54071, 0.200328, 0, 7.02938, 0, 0.610485, 1.54348, 1.54262, 1.32921, -1.74106, -1.74295, 10.1564, -10.407, -1.04893, -3.19654, -5.18552, -8.07725, 1.643, -5.04833, -2.1544, 0.754601, -0.988412, 1.90678, -6.95984, 12.0126, 9.12619, -2.3976, 0.244222, 0.24762}, {-1.9397, 2.54071, 0.200328, 0, -2.34313, 0, -1.83146, -4.63045, -4.62785, 1.32921, -1.74106, -1.74295, 2.3976, -0.244222, -0.24762, -0.754601, 10.3609, -1.90678, 9.40178, -15.2112, -2.95571, 0.754601, -0.988412, 1.90678, -1.643, 5.04833, 2.1544, -7.71444, 7.20847, 7.21941}, {-1.9397, 2.54071, 0.200328, 0, -2.34313, 0, 0.610485, 1.54348, 1.54262, -3.98763, 5.22319, 5.22884, 2.3976, -0.244222, -0.24762, -0.754601, 0.988412, -1.90678, 1.643, -5.04833, -2.1544, 8.51339, -11.1512, 1.10547, -1.643, 14.4208, 2.1544, -4.83954, -5.92971, -5.92285}, {8.88178e-16, -4.44089e-16, 4.817, 1.32981, 1.74185, -0.136178, 0.61076, -1.54312, 1.54312, -1.94057, -0.198723, 0.198723, -6.96297, -9.12042, 2.69775, -2.39867, -0.245635, -1.73908, -3.19798, 8.0799, -6.09519, 10.1609, 1.04052, 0.94419, 0.754941, -1.90741, -0.0773091, 1.64373, 2.15304, -2.15304}, {4.44089e-16, 1.66533e-16, -1.60567, -3.98943, -5.22554, 0.408534, 0.61076, -1.54312, 1.54312, -1.94057, -0.198723, 0.198723, -1.64373, -2.15304, 8.57571, -4.84171, 5.92686, -7.91157, -0.754941, 1.90741, 0.0773091, 2.39867, 0.245635, 1.73908, 8.51722, -1.11252, -0.872199, 1.64373, 2.15304, -2.15304}, {0, -3.05311e-16, -1.60567, 1.32981, 1.74185, -0.136178, -1.83228, 4.62937, -4.62937, -1.94057, -0.198723, 0.198723, -1.64373, -2.15304, 2.15304, -7.71791, -7.21302, -1.19437, -0.754941, 1.90741, 6.49998, 2.39867, 0.245635, 1.73908, 0.754941, -1.90741, -0.0773091, 9.40601, 2.94793, -2.94793}, {-4.44089e-16, -2.77556e-17, -1.60567, 1.32981, 1.74185, -0.136178, 0.61076, -1.54312, 1.54312, 5.82171, 0.596168, -0.596168, -1.64373, -2.15304, 2.15304, -2.39867, -0.245635, -1.73908, -0.754941, 1.90741, 0.0773091, 2.39867, 0.245635, 8.16175, -4.5643, -8.87479, 0.467403, -0.799305, 8.32553, -8.32553}, {-1.28888, 1.28888, -5.54754, -0.937563, 0.937563, 0.371082, -0.607159, -0.998509, -1.77891, 1.1151, 0.490571, -0.441349, 4.3781, -4.3781, -4.22872, 1.90938, 0.0753332, 1.74017, 2.64808, 5.7593, 7.02879, -6.36977, -2.03762, 0.0252242, -0.219445, -1.76527, 0.0868549, -0.627846, 0.627846, 2.74439}, {0.429625, -0.429625, 1.84918, 2.81269, -2.81269, -1.11325, -0.607159, -0.998509, -1.77891, 1.1151, 0.490571, -0.441349, -1.09065, 1.09065, -10.1411, 4.33802, 4.06937, 8.85582, 0.219445, 1.76527, -0.0868549, -1.90938, -0.0753332, -1.74017, -4.67983, -3.72755, 1.85225, -0.627846, 0.627846, 2.74439}, {0.429625, -0.429625, 1.84918, -0.937563, 0.937563, 0.371082, 1.82148, 2.99553, 5.33673, 1.1151, 0.490571, -0.441349, 0.627846, -0.627846, -2.74439, 5.65963, -3.67492, 0.255844, -1.49906, 3.48377, -7.48357, -1.90938, -0.0753332, -1.74017, -0.219445, -1.76527, 0.0868549, -5.08823, -1.33444, 4.50979}, {0.429625, -0.429625, 1.84918, -0.937563, 0.937563, 0.371082, -0.607159, -0.998509, -1.77891, -3.34529, -1.47171, 1.32405, 0.627846, -0.627846, -2.74439, 1.90938, 0.0753332, 1.74017, 0.219445, 1.76527, -0.0868549, -3.62788, 1.64317, -9.13689, 3.53081, -5.51552, -1.39747, 1.80079, 4.62188, 9.86004}, {-4.9045, -4.90878, 4.90879, 0.803078, -0.801888, 0.80329, -1.63483, -1.63626, 0.030594, -0.803078, 0.801888, 0.802378, -6.22574, 2.17621, -2.18355, 1.0281, 3.01372, -1.03074, 6.53933, 6.54504, 1.86234, 2.18421, -6.22127, -2.17877, 7.60503e-14, -7.59393e-14, -1.98471, 3.01342, 1.03134, -1.02961}, {1.63483, 1.63626, -1.63626, -2.40924, 2.40566, -2.40987, -1.63483, -1.63626, 0.030594, -0.803078, 0.801888, 0.802378, -9.55275, -7.57638, 7.57466, 7.56743, 9.55876, -1.15311, -7.62723e-14, 7.68274e-14, 1.98471, -1.0281, -3.01372, 1.03074, 3.21231, -3.20755, -5.19423, 3.01342, 1.03134, -1.02961}, {1.63483, 1.63626, -1.63626, 0.803078, -0.801888, 0.80329, 4.9045, 4.90878, -0.0917819, -0.803078, 0.801888, 0.802378, -3.01342, -1.03134, 1.02961, -2.18421, 6.22127, -4.2439, -6.53933, -6.54504, 8.52976, -1.0281, -3.01372, 1.03074, 7.52731e-14, -7.53841e-14, -1.98471, 6.22574, -2.17621, -4.23912}, {1.63483, 1.63626, -1.63626, 0.803078, -0.801888, 0.80329, -1.63483, -1.63626, 0.030594, 2.40924, -2.40566, -2.40713, -3.01342, -1.03134, 1.02961, 1.0281, 3.01372, -1.03074, -7.52731e-14, 7.43849e-14, 1.98471, -7.56743, -9.55876, 7.57579, -3.21231, 3.20755, -5.19788, 9.55275, 7.57638, -1.15199}, {0.412021, -3.98943, -5.22554, -1.60567, 0, 0, 0.200419, -1.94057, -0.198723, 1.54259, 0.61076, -1.54312, 8.57715, -1.64373, -2.15304, 1.73698, 2.39867, 0.245635, -0.879643, 8.51722, -1.11252, -7.90734, -4.84171, 5.92686, 0.0779689, -0.754941, 1.90741, -2.15448, 1.64373, 2.15304}, {-0.13734, 1.32981, 1.74185, 4.817, 0, 0, 0.200419, -1.94057, -0.198723, 1.54259, 0.61076, -1.54312, 2.70384, -6.96297, -9.12042, 0.93531, 10.1609, 1.04052, -0.0779689, 0.754941, -1.90741, -1.73698, -2.39867, -0.245635, -6.09239, -3.19798, 8.0799, -2.15448, 1.64373, 2.15304}, {-0.13734, 1.32981, 1.74185, -1.60567, 0, 0, -0.601256, 5.82171, 0.596168, 1.54259, 0.61076, -1.54312, 2.15448, -1.64373, -2.15304, 8.15966, 2.39867, 0.245635, 0.471392, -4.5643, -8.87479, -1.73698, -2.39867, -0.245635, 0.0779689, -0.754941, 1.90741, -8.32484, -0.799305, 8.32553}, {-0.13734, 1.32981, 1.74185, -1.60567, 0, 0, 0.200419, -1.94057, -0.198723, -4.62777, -1.83228, 4.62937, 2.15448, -1.64373, -2.15304, 1.73698, 2.39867, 0.245635, -0.0779689, 0.754941, -1.90741, -1.18762, -7.71791, -7.21302, 6.50064, -0.754941, 1.90741, -2.95615, 9.40601, 2.94793}, {-2.2024, 0.148267, -4.33994, -0.546238, -1.40698, 1.37428e-12, 0.372712, 0.180326, -1.44665, -0.560609, 1.27608, -1.24642e-12, 1.9527, 7.42813, -1.78815, 0.21449, 1.51623, 1.78815, -2.85899, -0.883108, 5.78659, 2.02795, -6.62053, -1.78815, 1.36814, 0.161805, -1.58045e-13, 0.232253, -1.80021, 1.78815}, {0.734135, -0.0494224, 1.44665, 1.63871, 4.22094, -4.12207e-12, 0.372712, 0.180326, -1.44665, -0.560609, 1.27608, -1.24619e-12, -3.16879, 1.9979, -7.57474, -1.27636, 0.794924, 7.57474, -1.36814, -0.161805, 1.57656e-13, -0.21449, -1.51623, -1.78815, 3.61057, -4.9425, 4.82673e-12, 0.232253, -1.80021, 1.78815}, {0.734135, -0.0494224, 1.44665, -0.546238, -1.40698, 1.37428e-12, -1.11814, -0.540977, 4.33994, -0.560609, 1.27608, -1.24642e-12, -0.232253, 1.80021, -1.78815, 2.39944, 7.14414, 1.78815, -4.30468, 0.0358845, -5.78659, -0.21449, -1.51623, -1.78815, 1.36814, 0.161805, -1.58045e-13, 2.47469, -6.90451, 1.78815}, {0.734135, -0.0494224, 1.44665, -0.546238, -1.40698, 1.3744e-12, 0.372712, 0.180326, -1.44665, 1.68183, -3.82823, 3.73959e-12, -0.232253, 1.80021, -1.78815, 0.21449, 1.51623, 1.78815, -1.36814, -0.161805, 1.577e-13, -3.15103, -1.31854, -7.57474, 3.55309, 5.78972, -5.65567e-12, -1.25859, -2.52151, 7.57474}, {0, 9.4517, 0, -1.78885, 1.78834, -1.78937, 1.78885, 1.36222, -1.3621, 0, 0, 3.15147, 9.36656, -5.46957, 9.36924, 0, -3.89432, 3.89543, -9.36656, -3.23838, 7.13206, 0, 3.89432, -16.5013, 2.21115, -2.21051, -1.68365, -2.21115, -1.6838, -2.21178}, {-1.54779e-16, -3.15057, 0, 5.36656, -5.36503, 5.3681, 1.78885, 1.36222, -1.3621, -1.39953e-15, -1.06575e-15, 3.15147, 2.21115, 14.2861, 2.21178, -7.15542, -9.34321, 9.34384, -2.21115, 2.21051, 1.68365, 1.77636e-15, 3.89432, -3.89543, 2.21115, -2.21051, -14.2895, -2.21115, -1.6838, -2.21178}, {0, -3.15057, -4.44089e-16, -1.78885, 1.78834, -1.78937, -5.36656, -4.08667, 4.08631, 0, 0, 3.15147, 2.21115, 1.6838, 2.21178, 7.15542, -11.0477, 11.0529, -2.21115, 14.8128, 1.68365, 0, 3.89432, -3.89543, 2.21115, -2.21051, -1.68365, -2.21115, -1.6838, -14.8177}, {0, -3.15057, 0, -1.78885, 1.78834, -1.78937, 1.78885, 1.36222, -1.3621, 0, 0, -9.45441, 2.21115, 1.6838, 2.21178, 0, -3.89432, 3.89543, -2.21115, 2.21051, 1.68365, 0, 16.4966, -3.89543, 9.36656, -9.36389, 5.47381, -9.36656, -7.1327, 3.23663}, {-0.595682, -0.596202, -5.82204, 0, -1.60567, 0, 1.54187, 1.54321, -0.609885, -1.74043, -0.136279, -1.3308, -0.245434, 8.16174, -2.39881, -1.90585, 0.0771985, 0.75386, -8.31875, -8.32602, 0.794587, 8.86756, 0.467918, 4.56932, 2.15129, 2.15317, 1.64495, 0.245434, -1.73907, 2.39881}, {0.198561, 0.198734, 1.94068, 0, 4.817, 0, 1.54187, 1.54321, -0.609885, -1.74043, -0.136279, -1.3308, -1.03968, 0.94413, -10.1615, -8.07331, -6.09565, 3.1934, -2.15129, -2.15317, -1.64495, 1.90585, -0.0771985, -0.75386, 9.11299, 2.69828, 6.96814, 0.245434, -1.73907, 2.39881}, {0.198561, 0.198734, 1.94068, 0, -1.60567, 0, -4.6256, -4.62964, 1.82966, -1.74043, -0.136279, -1.3308, -0.245434, 1.73907, -2.39881, -1.90585, 6.49987, 0.75386, -2.94553, -2.9481, -9.40768, 1.90585, -0.0771985, -0.75386, 2.15129, 2.15317, 1.64495, 7.20714, -1.19395, 7.722}, {0.198561, 0.198734, 1.94068, 0, -1.60567, 0, 1.54187, 1.54321, -0.609885, 5.22128, 0.408838, 3.99239, -0.245434, 1.73907, -2.39881, -1.90585, 0.0771985, 0.75386, -2.15129, -2.15317, -1.64495, 1.11161, -0.872135, -8.51658, 2.15129, 8.57584, 1.64495, -5.92203, -7.91192, 4.83836}, {-1.34911, 3.4086, 1.4084, 1.74422, 0.694821, 0.910847, -1.68823, -0.836265, 0.836265, -0.505685, 1.27764, -1.27764, -9.68869, -2.23371, -4.18896, -0.0691986, 0.174835, -2.15955, 8.28384, 5.78316, -3.79845, 2.09194, -5.28541, 7.27013, -1.53091, -2.4381, 0.453387, 2.71183, -0.545574, 0.545574}, {0.449702, -1.1362, -0.469468, -5.23265, -2.08446, -2.73254, -1.68823, -0.836265, 0.836265, -0.505685, 1.27764, -1.27764, -4.51064, 5.09037, 1.3323, 6.68373, 3.5199, -5.50461, 1.53091, 2.4381, -0.453387, 0.0691986, -0.174835, 2.15955, 0.49183, -7.54868, 5.56396, 2.71183, -0.545574, 0.545574}, {0.449702, -1.1362, -0.469468, 1.74422, 0.694821, 0.910847, 5.0647, 2.5088, -2.5088, -0.505685, 1.27764, -1.27764, -2.71183, 0.545574, -0.545574, -7.04606, -2.60445, -5.80294, -0.267898, 6.9829, 1.42448, 0.0691986, -0.174835, 2.15955, -1.53091, -2.4381, 0.453387, 4.73457, -5.65615, 5.65615}, {0.449702, -1.1362, -0.469468, 1.74422, 0.694821, 0.910847, -1.68823, -0.836265, 0.836265, 1.51705, -3.83293, 3.83293, -2.71183, 0.545574, -0.545574, -0.0691986, 0.174835, -2.15955, 1.53091, 2.4381, -0.453387, -1.72961, 4.36997, 4.03742, -8.50777, -5.21739, -3.19, 9.46476, 2.79949, -2.79949}, {-6.58175, 1.32414, -1.32414, -0.505685, 1.27764, -1.27764, 0.857073, 0.177676, 2.16545, -2.54531, -1.01394, -1.32918, -0.0640323, -6.14426, 6.14426, -0.43434, -1.79887, -1.09739, -7.19952, -0.384749, -11.884, 10.6156, 5.85464, 6.41412, 3.77123, -0.325955, 3.22222, 2.08677, 1.03368, -1.03368}, {2.19392, -0.441379, 0.441379, 1.51705, -3.83293, 3.83293, 0.857073, 0.177676, 2.16545, -2.54531, -1.01394, -1.32918, -10.8624, 0.731834, -0.731834, -3.86263, -2.50958, -9.75919, -3.77123, 0.325955, -3.22222, 0.43434, 1.79887, 1.09739, 13.9525, 3.72981, 8.53895, 2.08677, 1.03368, -1.03368}, {2.19392, -0.441379, 0.441379, -0.505685, 1.27764, -1.27764, -2.57122, -0.533028, -6.49635, -2.54531, -1.01394, -1.32918, -2.08677, -1.03368, 1.03368, 1.5884, -6.90945, 4.01319, -12.5469, 2.09147, -4.98773, 0.43434, 1.79887, 1.09739, 3.77123, -0.325955, 3.22222, 12.268, 5.08945, 4.28305}, {2.19392, -0.441379, 0.441379, -0.505685, 1.27764, -1.27764, 0.857073, 0.177676, 2.16545, 7.63592, 3.04182, 3.98755, -2.08677, -1.03368, 1.03368, -0.43434, -1.79887, -1.09739, -3.77123, 0.325955, -3.22222, -8.34133, 3.56439, -0.668128, 5.79397, -5.43653, 8.33279, -1.34152, 0.322977, -9.69548}, {5.63148, -7.39306, 3.82293, -0.845027, -3.02792, 0.845027, 1.29407, 2.43841, 1.8574, 1.42811, -1.87484, -1.42811, 6.74491, 12.8083, -2.84948, -0.55505, 0.728676, -3.34038, -4.45555, -15.8138, -8.15032, -5.15741, 6.7707, 9.05284, -0.720736, 6.06015, 0.720736, -3.36481, -0.696607, -0.530622}, {-1.87716, 2.46435, -1.27431, 2.53508, 9.08376, -2.53508, 1.29407, 2.43841, 1.8574, 1.42811, -1.87484, -1.42811, 10.8734, -9.16081, 5.62786, -5.73134, -9.02497, -10.77, 0.720736, -6.06015, -0.720736, 0.55505, -0.728676, 3.34038, -6.43319, 13.5595, 6.43319, -3.36481, -0.696607, -0.530622}, {-1.87716, 2.46435, -1.27431, -0.845027, -3.02792, 0.845027, -3.88221, -7.31523, -5.57219, 1.42811, -1.87484, -1.42811, 3.36481, 0.696607, 0.530622, 2.82506, 12.8404, -6.72049, 8.22937, -15.9176, 4.3765, 0.55505, -0.728676, 3.34038, -0.720736, 6.06015, 0.720736, -9.07726, 6.80277, 5.18184}, {-1.87716, 2.46435, -1.27431, -0.845027, -3.02792, 0.845027, 1.29407, 2.43841, 1.8574, -4.28434, 5.62453, 4.28434, 3.36481, 0.696607, 0.530622, -0.55505, 0.728676, -3.34038, 0.720736, -6.06015, -0.720736, 8.06369, -10.5861, 8.43762, 2.65937, 18.1718, -2.65937, -8.54109, -10.4502, -7.96021}, {8.88178e-16, 9.45441, -1.77636e-15, 1.78834, 1.78885, 1.78885, -3.15057, 0, 0, 1.36222, 1.36261, -1.78885, -9.36389, -5.47113, -9.36656, 1.6838, -2.21115, -2.21115, 16.4966, 3.89543, -4.44089e-16, -7.1327, -3.23931, 9.36656, -3.89432, -3.89543, 4.44089e-16, 2.21051, -1.68428, 2.21115}, {4.44089e-16, -3.15147, 2.22045e-16, -5.36503, -5.36656, -5.36656, -3.15057, 0, 0, 1.36222, 1.36261, -1.78885, -2.21051, 14.2902, -2.21115, 14.2861, -2.21115, -2.21115, 3.89432, 3.89543, 0, -1.6838, 2.21115, 2.21115, -9.34321, -9.34589, 7.15542, 2.21051, -1.68428, 2.21115}, {-4.44089e-16, -3.15147, 0, 1.78834, 1.78885, 1.78885, 9.4517, 0, 0, 1.36222, 1.36261, -1.78885, -2.21051, 1.68428, -2.21115, -5.46957, -9.36656, -9.36656, 3.89432, 16.5013, 0, -1.6838, 2.21115, 2.21115, -3.89432, -3.89543, 0, -3.23838, -7.13474, 9.36656}, {4.44089e-16, -3.15147, -2.22045e-16, 1.78834, 1.78885, 1.78885, -3.15057, 0, 0, -4.08667, -4.08784, 5.36656, -2.21051, 1.68428, -2.21115, 1.6838, -2.21115, -2.21115, 3.89432, 3.89543, 0, -1.6838, 14.817, 2.21115, -11.0477, -11.0508, -7.15542, 14.8128, -1.68428, 2.21115}, {-5.36656, 5.36656, -5.36656, 2.79907e-15, 3.15147, 3.33475e-16, -1.78885, -1.36261, 1.36261, 0, 0, -3.15147, -2.21115, -14.2902, -2.21115, 2.21115, -2.21115, -1.68428, 7.15542, 9.34589, -9.34589, -2.21115, 2.21115, 14.2902, -3.45984e-15, -3.89543, 3.89543, 2.21115, 1.68428, 2.21115}, {1.78885, -1.78885, 1.78885, -4.1986e-15, -9.45441, 1.0595e-14, -1.78885, -1.36261, 1.36261, 0, 0, -3.15147, -9.36656, 5.47113, -9.36656, 9.36656, 3.23931, -7.13474, 1.28583e-15, 3.89543, -3.89543, -2.21115, 2.21115, 1.68428, -1.72992e-15, -3.89543, 16.5013, 2.21115, 1.68428, 2.21115}, {1.78885, -1.78885, 1.78885, 0, 3.15147, 0, 5.36656, 4.08784, -4.08784, 0, 0, -3.15147, -2.21115, -1.68428, -2.21115, 2.21115, -14.817, -1.68428, -7.15542, 11.0508, -11.0508, -2.21115, 2.21115, 1.68428, 0, -3.89543, 3.89543, 2.21115, 1.68428, 14.817}, {1.78885, -1.78885, 1.78885, 0, 3.15147, 2.46559e-15, -1.78885, -1.36261, 1.36261, 0, 0, 9.45441, -2.21115, -1.68428, -2.21115, 2.21115, -2.21115, -1.68428, -4.44089e-16, 3.89543, -3.89543, -9.36656, 9.36656, -5.47113, 0, -16.5013, 3.89543, 9.36656, 7.13474, -3.23931}, {7.01844, 1.17551e-15, 0, 2.33948, 2.34313, -1.78885, 0, -2.34313, 0, -7.30165e-12, -6.9197e-12, 1.78885, -9.35791, -12.2688, 9.36656, -2.89175, -8.55405e-12, 2.21115, 2.89175, 12.2688, 0, 2.89175, 3.62329e-11, -9.36656, -2.89175, -2.89626, 0, 9.02534e-12, 2.89626, -2.21115}, {-2.33948, -1.95894e-17, 0, -7.01844, -7.02938, 5.36656, 0, -2.34313, 0, -7.30373e-12, -6.92022e-12, 1.78885, 9.35791, -2.89626, 2.21115, -2.89175, 9.3725, 2.21115, 2.89175, 2.89626, 0, 2.89175, 8.5536e-12, -2.21115, -2.89175, -2.89626, -7.15542, 9.02791e-12, 2.89626, -2.21115}, {-2.33948, 1.32789e-16, -4.44089e-16, 2.33948, 2.34313, -1.78885, 0, 7.02938, 0, -7.30321e-12, -6.92126e-12, 1.78885, -9.02668e-12, -2.89626, 2.21115, -12.2497, -9.3725, 9.36656, 12.2497, 2.89626, 1.77636e-15, 2.89175, 8.55493e-12, -2.21115, -2.89175, -2.89626, -4.44089e-16, 3.82401e-11, 2.89626, -9.36656}, {-2.33948, -8.31579e-16, -4.44089e-16, 2.33948, 2.34313, -1.78885, 0, -2.34313, 0, 2.19143e-11, 2.07622e-11, -5.36656, -9.02861e-12, -2.89626, 2.21115, -2.89175, -8.55538e-12, 2.21115, 2.89175, 2.89626, 4.44089e-16, 12.2497, 8.55648e-12, -2.21115, -12.2497, -12.2688, 7.15542, 9.02919e-12, 12.2688, -2.21115}, {-1.00651, -1.00808, 6.45666, -0.481765, 1.86061, -0.736419, 0.984821, -1.35677, 2.55622, -0.83856, -0.839867, 0.332415, 2.10785, -10.1576, 6.51623, -0.62181, -0.62278, -2.2494, -5.57129, 6.68879, -10.7243, 3.97605, 3.98225, 0.919744, 1.63201, -1.26171, 0.499377, -0.180789, 2.71519, -3.57055}, {0.335504, 0.336027, -2.15222, 1.4453, -5.58183, 2.20926, 0.984821, -1.35677, 2.55622, -0.83856, -0.839867, 0.332415, -1.16123, -4.0593, 12.1794, -4.56109, 4.8043, -12.4743, -1.63201, 1.26171, -0.499377, 0.62181, 0.62278, 2.2494, 4.98625, 2.09776, -0.830282, -0.180789, 2.71519, -3.57055}, {0.335504, 0.336027, -2.15222, -0.481765, 1.86061, -0.736419, -2.95446, 4.07031, -7.66867, -0.83856, -0.839867, 0.332415, 0.180789, -2.71519, 3.57055, 1.30525, -8.06522, 0.696272, -2.97403, -0.0824032, 8.1095, 0.62181, 0.62278, 2.2494, 1.63201, -1.26171, 0.499377, 3.17345, 6.07466, -4.90021}, {0.335504, 0.336027, -2.15222, -0.481765, 1.86061, -0.736419, 0.984821, -1.35677, 2.55622, 2.51568, 2.5196, -0.997244, 0.180789, -2.71519, 3.57055, -0.62181, -0.62278, -2.2494, -1.63201, 1.26171, -0.499377, -0.720207, -0.72133, 10.8583, 3.55907, -8.70414, 3.44505, -4.12007, 8.14227, -13.7954}, {5.36656, -5.48024e-11, 5.58682e-11, 1.78885, -2.34313, 2.34313, 0, 2.34313, 0, 0, 0, -2.34313, -7.15542, 12.2688, -12.2688, -2.21115, 2.25797e-11, -2.89626, 2.21115, -12.2688, 2.30194e-11, 2.21115, -2.25797e-11, 12.2688, -2.21115, 2.89626, -2.30194e-11, 0, -2.89626, 2.89626}, {-1.78885, 1.21112e-11, -1.24669e-11, -5.36656, 7.02938, -7.02938, 0, 2.34313, 1.36297e-15, 0, 0, -2.34313, 7.15542, 2.89626, -2.89626, -2.21115, -9.3725, -2.89626, 2.21115, -2.89626, 1.54086e-11, 2.21115, -1.49702e-11, 2.89626, -2.21115, 2.89626, 9.3725, 0, -2.89626, 2.89626}, {-1.78885, 1.21094e-11, -1.24669e-11, 1.78885, -2.34313, 2.34313, 0, -7.02938, 0, 0, 0, -2.34313, 4.44089e-16, 2.89626, -2.89626, -9.36656, 9.3725, -12.2688, 9.36656, -2.89626, 6.52776e-11, 2.21115, -1.49685e-11, 2.89626, -2.21115, 2.89626, -1.54099e-11, 0, -2.89626, 12.2688}, {-1.78885, 1.21099e-11, -1.24638e-11, 1.78885, -2.34313, 2.34313, 0, 2.34313, 0, 0, 0, 7.02938, 4.44089e-16, 2.89626, -2.89626, -2.21115, 1.49689e-11, -2.89626, 2.21115, -2.89626, 1.54063e-11, 9.36656, -6.34088e-11, 2.89626, -9.36656, 12.2688, -9.3725, 0, -12.2688, 2.89626}, {5.09908, -2.42192, -2.42638, -0.488904, -1.23525, -1.23482, 1.75382, -0.670557, 0.933579, 0.434779, 1.0985, -0.507552, 4.66087, 5.46995, 5.46587, -1.56352, 2.3557, 0.372353, -7.08218, 2.51319, -5.888, -0.175592, -6.74968, 1.65786, 0.0669023, 0.169033, 2.15369, -2.70526, -0.528962, -0.526598}, {-1.69969, 0.807307, 0.808792, 1.46671, 3.70574, 3.70446, 1.75382, -0.670557, 0.933579, 0.434779, 1.0985, -0.507552, 9.50403, -2.70027, -2.70857, -8.5788, 5.03793, -3.36196, -0.0669023, -0.169033, -2.15369, 1.56352, -2.3557, -0.372353, -1.67221, -4.22495, 4.1839, -2.70526, -0.528962, -0.526598}, {-1.69969, 0.807307, 0.808792, -0.488904, -1.23525, -1.23482, -5.26146, 2.01167, -2.80074, 0.434779, 1.0985, -0.507552, 2.70526, 0.528962, 0.526598, 0.392092, 7.29669, 5.31163, 6.73188, -3.39826, -5.38886, 1.56352, -2.3557, -0.372353, 0.0669023, 0.169033, 2.15369, -4.44437, -4.92294, 1.50361}, {-1.69969, 0.807307, 0.808792, -0.488904, -1.23525, -1.23482, 1.75382, -0.670557, 0.933579, -1.30434, -3.29549, 1.52266, 2.70526, 0.528962, 0.526598, -1.56352, 2.3557, 0.372353, -0.0669023, -0.169033, -2.15369, 8.3623, -5.58493, -3.60752, 2.02252, 5.11002, 7.09296, -9.72053, 2.15326, -4.26091}, {-2.57735, 0.513092, -6.51263, -2.5578, 0.977952, -1.36155, -0.488614, -1.23536, -1.23466, 2.1873, 0.428435, 0.425336, 12.3309, -4.90922, 4.44581, 3.76558, 0.31817, 3.2091, 1.49649, 6.67982, 3.78144, -12.5148, -2.03191, -4.91044, 0.457966, -1.73839, 1.15722, -2.09969, 0.99741, 1.00039}, {0.859116, -0.171031, 2.17088, 7.67341, -2.93386, 4.08465, -0.488614, -1.23536, -1.23466, 2.1873, 0.428435, 0.425336, -1.33677, -0.313288, -9.6839, 5.72003, 5.2596, 8.14775, -0.457966, 1.73839, -1.15722, -3.76558, -0.31817, -3.2091, -8.29124, -3.45213, -0.54412, -2.09969, 0.99741, 1.00039}, {0.859116, -0.171031, 2.17088, -2.5578, 0.977952, -1.36155, 1.46584, 3.70607, 3.70399, 2.1873, 0.428435, 0.425336, 2.09969, -0.99741, -1.00039, 13.9968, -3.59364, 8.65529, -3.89443, 2.42251, -9.84073, -3.76558, -0.31817, -3.2091, 0.457966, -1.73839, 1.15722, -10.8489, -0.716331, -0.700957}, {0.859116, -0.171031, 2.17088, -2.5578, 0.977952, -1.36155, -0.488614, -1.23536, -1.23466, -6.5619, -1.28531, -1.27601, 2.09969, -0.99741, -1.00039, 3.76558, 0.31817, 3.2091, -0.457966, 1.73839, -1.15722, -7.20204, 0.365952, -11.8926, 10.6892, -5.6502, 6.60342, -0.145237, 5.93884, 5.93904}, {4.08784, 4.08784, -5.36656, -1.78885, -1.78885, -1.78885, 3.15147, 2.46559e-15, 0, 0, 3.15147, 0, 11.0508, 11.0508, 7.15542, -1.68428, 2.21115, 2.21115, -14.817, 1.68428, -2.21115, 1.68428, -14.817, -2.21115, 2.21115, -1.68428, 2.21115, -3.89543, -3.89543, 0}, {-1.36261, -1.36261, 1.78885, 5.36656, 5.36656, 5.36656, 3.15147, 0, 0, -2.46559e-15, 3.15147, 0, 9.34589, 9.34589, -7.15542, -14.2902, 2.21115, 2.21115, -2.21115, 1.68428, -2.21115, 1.68428, -2.21115, -2.21115, 2.21115, -14.2902, 2.21115, -3.89543, -3.89543, 0}, {-1.36261, -1.36261, 1.78885, -1.78885, -1.78885, -1.78885, -9.45441, 0, 0, 0, 3.15147, 0, 3.89543, 3.89543, -4.44089e-16, 5.47113, 9.36656, 9.36656, 3.23931, 7.13474, -9.36656, 1.68428, -2.21115, -2.21115, 2.21115, -1.68428, 2.21115, -3.89543, -16.5013, 0}, {-1.36261, -1.36261, 1.78885, -1.78885, -1.78885, -1.78885, 3.15147, 2.46559e-15, 0, 0, -9.45441, 0, 3.89543, 3.89543, -4.44089e-16, -1.68428, 2.21115, 2.21115, -2.21115, 1.68428, -2.21115, 7.13474, 3.23931, -9.36656, 9.36656, 5.47113, 9.36656, -16.5013, -3.89543, 0}, {-4.7272, 4.72585, -4.72855, -1.57528, -1.57573, -1.57573, 1.57528, 1.57573, -1.57573, -1.57573, 1.57528, 1.57528, 6.30058, 10.1978, 6.30238, 2.11209e-12, -2.11164e-12, 3.89543, -10.196, -6.30349, 6.30238, 6.30294, -6.30114, -10.1966, 3.89487, 0.000556685, 0.000556685, 0.000556685, -3.89487, 0.000556844}, {1.57573, -1.57528, 1.57618, 4.72585, 4.7272, 4.7272, 1.57528, 1.57573, -1.57573, -1.57573, 1.57528, 1.57528, -6.30349, 10.196, -6.3053, -6.30114, -6.30294, 10.1984, -3.89487, -0.000556685, -0.000556685, -2.11226e-12, 2.11514e-12, -3.89543, 10.1978, -6.30058, -6.30058, 0.000556685, -3.89487, 0.000556844}, {1.57573, -1.57528, 1.57618, -1.57528, -1.57573, -1.57573, -4.72585, -4.7272, 4.7272, -1.57573, 1.57528, 1.57528, -0.000556685, 3.89487, -0.000556844, 6.30114, 6.30294, 10.1984, -10.1978, 6.30058, -6.3053, -2.11581e-12, 2.11492e-12, -3.89543, 3.89487, 0.000556685, 0.000556685, 6.30349, -10.196, -6.30058}, {1.57573, -1.57528, 1.57618, -1.57528, -1.57573, -1.57573, 1.57528, 1.57573, -1.57573, 4.7272, -4.72585, -4.72585, -0.000556685, 3.89487, -0.000556844, 2.11831e-12, -2.1172e-12, 3.89543, -3.89487, -0.000556685, -0.000556685, -6.30294, 6.30114, -10.2002, 10.196, 6.30349, 6.30349, -6.30058, -10.1978, 6.30349}, {-5.22554, -0.410098, 3.98943, -1.54312, -1.54218, -0.61076, 3.95893e-17, 1.60497, -3.86599e-16, -0.198723, -0.199483, 1.94057, 5.92686, 7.906, 4.84171, 1.90741, -0.0776051, 0.754941, -2.15304, -8.57268, 1.64373, -1.11252, 0.875539, -8.51722, 2.15304, 2.15282, -1.64373, 0.245635, -1.73727, -2.39867}, {1.74185, 0.136699, -1.32981, 4.62937, 4.62655, 1.83228, 1.18768e-16, 1.60497, -1.1598e-15, -0.198723, -0.199483, 1.94057, -7.21302, 1.19047, 7.71791, 1.90741, -6.49747, 0.754941, -2.15304, -2.15282, 1.64373, -1.90741, 0.0776051, -0.754941, 2.94793, 2.95075, -9.40601, 0.245635, -1.73727, -2.39867}, {1.74185, 0.136699, -1.32981, -1.54312, -1.54218, -0.61076, 0, -4.8149, 0, -0.198723, -0.199483, 1.94057, -0.245635, 1.73727, 2.39867, 8.0799, 6.09113, 3.19798, -9.12042, -2.69962, 6.96297, -1.90741, 0.0776051, -0.754941, 2.15304, 2.15282, -1.64373, 1.04052, -0.939339, -10.1609}, {1.74185, 0.136699, -1.32981, -1.54312, -1.54218, -0.61076, -1.18768e-16, 1.60497, 1.1598e-15, 0.596168, 0.59845, -5.82171, -0.245635, 1.73727, 2.39867, 1.90741, -0.0776051, 0.754941, -2.15304, -2.15282, 1.64373, -8.87479, -0.469193, 4.5643, 8.32553, 8.32155, 0.799305, 0.245635, -8.15714, -2.39867}, {4.63127, 4.6267, 1.83083, -2.54134, -0.199443, 1.94018, 1.74197, 1.74168, -1.3299, 2.34313, 0, 0, 15.2148, 2.9506, -9.40456, 0.988073, -1.9063, -0.754342, -7.21287, -7.21323, 7.7178, -10.3606, 1.9063, 0.754342, 0.245001, 0.246525, -2.39819, -5.04945, -2.15283, 1.64385}, {-1.54376, -1.54223, -0.610276, 7.62401, 0.598329, -5.82053, 1.74197, 1.74168, -1.3299, 2.34313, -1.01311e-15, 7.73589e-16, 11.2245, 8.32176, 0.797254, -5.9798, -8.87301, 4.56526, -0.245001, -0.246525, 2.39819, -0.988073, 1.9063, 0.754342, -9.1275, 0.246525, -2.39819, -5.04945, -2.15283, 1.64385}, {-1.54376, -1.54223, -0.610276, -2.54134, -0.199443, 1.94018, -5.2259, -5.22503, 3.9897, 2.34313, 0, 0, 5.04945, 2.15283, -1.64385, 11.1534, -1.10853, -8.51505, 5.93003, 5.92241, 4.83929, -0.988073, 1.9063, 0.754342, 0.245001, 0.246525, -2.39819, -14.422, -2.15283, 1.64385}, {-1.54376, -1.54223, -0.610276, -2.54134, -0.199443, 1.94018, 1.74197, 1.74168, -1.3299, -7.02938, 0, 0, 5.04945, 2.15283, -1.64385, 0.988073, -1.9063, -0.754342, -0.245001, -0.246525, 2.39819, 5.18696, 8.07523, 3.19544, 10.4103, 1.0443, -10.1589, -12.0173, -9.11953, 6.96345}, {4.33994, 1.90929, -1.71772, 1.45453e-15, 1.35003, 1.01047e-16, 1.36e-12, -0.731398, -2.01922, 1.44665, 0.0177991, 1.44665, 1.78815, -6.28218, -0.707741, -1.68285e-12, -0.764672, 2.4959, 1.78815, 4.61632, 9.86504, -5.78659, 0.693475, -8.28248, -1.78815, -1.69073, -1.78815, -1.78815, 0.882056, 0.707741}, {-1.44665, -0.636431, 0.572575, -4.36359e-15, -4.05009, -2.33336e-15, 1.35855e-12, -0.731398, -2.01922, 1.44665, 0.0177991, 1.44665, 7.57474, 1.66367, -2.99804, -7.11526e-12, 2.16092, 10.5728, 1.78815, 1.69073, 1.78815, 1.68142e-12, 0.764672, -2.4959, -7.57474, -1.76193, -7.57474, -1.78815, 0.882056, 0.707741}, {-1.44665, -0.636431, 0.572575, 0, 1.35003, 0, -4.08128e-12, 2.19419, 6.05767, 1.44665, 0.0177991, 1.44665, 1.78815, -0.882056, -0.707741, -1.68158e-12, -6.16479, 2.4959, 7.57474, 4.23646, -0.502145, 1.68194e-12, 0.764672, -2.4959, -1.78815, -1.69073, -1.78815, -7.57474, 0.81086, -5.07885}, {-1.44665, -0.636431, 0.572575, -4.84843e-16, 1.35003, -4.84843e-16, 1.3596e-12, -0.731398, -2.01922, -4.33994, -0.0533972, -4.33994, 1.78815, -0.882056, -0.707741, -1.67996e-12, -0.764672, 2.4959, 1.78815, 1.69073, 1.78815, 5.78659, 3.3104, -4.7862, -1.78815, -7.09085, -1.78815, -1.78815, 3.80765, 8.78463}, {-3.79117, -3.78885, -1.50052, 0.577052, -1.02738, -1.79083, -1.45233, 0.153525, -0.574823, -0.388446, -0.389091, 1.86548, -4.58353, 3.81836, 8.75865, 1.0819, 1.08015, 2.92411, 6.04244, -2.36496, 2.39156, 0.471884, 0.476215, -10.386, -0.233129, 1.75086, -0.0922713, 2.27532, 0.291177, -1.59534}, {1.26372, 1.26295, 0.500174, -1.73116, 3.08215, 5.37248, -1.45233, 0.153525, -0.574823, -0.388446, -0.389091, 1.86548, -7.33021, -5.34298, -0.40536, 6.89121, 0.466052, 5.2234, 0.233129, -1.75086, 0.0922713, -1.0819, -1.08015, -2.92411, 1.32066, 3.30723, -7.55418, 2.27532, 0.291177, -1.59534}, {1.26372, 1.26295, 0.500174, 0.577052, -1.02738, -1.79083, 4.35698, -0.460574, 1.72447, -0.388446, -0.389091, 1.86548, -2.27532, -0.291177, 1.59534, -1.22631, 5.18969, 10.0874, -4.82176, -6.80267, -1.90843, -1.0819, -1.08015, -2.92411, -0.233129, 1.75086, -0.0922713, 3.82911, 1.84754, -9.05724}, {1.26372, 1.26295, 0.500174, 0.577052, -1.02738, -1.79083, -1.45233, 0.153525, -0.574823, 1.16534, 1.16727, -5.59643, -2.27532, -0.291177, 1.59534, 1.0819, 1.08015, 2.92411, 0.233129, -1.75086, 0.0922713, -6.13679, -6.13196, -4.9248, -2.54134, 5.8604, 7.07104, 8.08463, -0.322922, 0.703957}, {2.52504, -4.49559, -7.83624, 1.26389, 1.26265, 0.49964, -0.875592, -0.873298, -2.36467, 0.453379, -1.88788, -0.747051, -5.57746, -8.46358, -5.84486, -0.479968, -0.48126, 2.3053, 5.62503, 2.72036, 9.15287, -1.33355, 8.03278, 0.682901, -2.12267, 0.772832, 0.305817, 0.521884, 3.413, 3.8463}, {-0.841681, 1.49853, 2.61208, -3.79168, -3.78794, -1.49892, -0.875592, -0.873298, -2.36467, 0.453379, -1.88788, -0.747051, 2.84484, -9.40713, -14.2946, 3.0224, 3.01193, 11.764, 2.12267, -0.772832, -0.305817, 0.479968, 0.48126, -2.3053, -3.93618, 8.32435, 3.29402, 0.521884, 3.413, 3.8463}, {-0.841681, 1.49853, 2.61208, 1.26389, 1.26265, 0.49964, 2.62678, 2.61989, 7.09401, 0.453379, -1.88788, -0.747051, -0.521884, -3.413, -3.8463, -5.53554, -5.53184, 0.306743, 5.48939, -6.76696, -10.7541, 0.479968, 0.48126, -2.3053, -2.12267, 0.772832, 0.305817, -1.29163, 10.9645, 6.8345}, {-0.841681, 1.49853, 2.61208, 1.26389, 1.26265, 0.49964, -0.875592, -0.873298, -2.36467, -1.36014, 5.66364, 2.24115, -0.521884, -3.413, -3.8463, -0.479968, -0.48126, 2.3053, 2.12267, -0.772832, -0.305817, 3.84669, -5.51287, -12.7536, -7.17824, -4.27775, -1.69274, 4.02425, 6.90619, 13.305}, {5.37846, -0.954422, 1.65136, 0.482922, -1.73161, -0.484335, 0.65353, 0.326507, 1.69088, 0.656368, 1.08696, -0.656093, -0.312565, 8.67359, 3.21641, -1.40473, 1.7368, -1.49137, -1.20588, -2.10286, -8.17318, -1.22074, -6.08465, 4.11575, -1.40824, 0.796829, 1.40965, -1.61912, -1.74715, -1.27907}, {-1.79282, 0.318141, -0.550454, -1.44877, 5.19483, 1.45301, 0.65353, 0.326507, 1.69088, 0.656368, 1.08696, -0.656093, 8.7904, 0.474582, 3.48088, -4.01885, 0.430774, -8.2549, 1.40824, -0.796829, -1.40965, 1.40473, -1.7368, 1.49137, -4.03371, -3.55102, 4.03402, -1.61912, -1.74715, -1.27907}, {-1.79282, 0.318141, -0.550454, 0.482922, -1.73161, -0.484335, -1.96059, -0.979522, -5.07265, 0.656368, 1.08696, -0.656093, 1.61912, 1.74715, 1.27907, -3.33642, 8.66325, 0.445966, 8.57952, -2.06939, 0.792169, 1.40473, -1.7368, 1.49137, -1.40824, 0.796829, 1.40965, -4.24459, -6.095, 1.3453}, {-1.79282, 0.318141, -0.550454, 0.482922, -1.73161, -0.484335, 0.65353, 0.326507, 1.69088, -1.9691, -3.26089, 1.96828, 1.61912, 1.74715, 1.27907, -1.40473, 1.7368, -1.49137, 1.40824, -0.796829, -1.40965, 8.57601, -3.00937, 3.69319, -3.33993, 7.72327, 3.34699, -4.23324, -3.05317, -8.0426}, {-8.19974, -2.81226, -4.15773, 1.49846, -0.593081, -0.985836, -2.7214, 1.07711, -0.607179, -1.5103, -1.42145, 0.207104, -11.2245, 1.9467, 3.44883, 1.51164, -0.598298, 1.96907, 10.8709, -6.79856, 1.46615, 4.52957, 6.28411, -2.79749, 0.0146435, 2.4901, 0.962565, 5.23067, 0.425625, 0.494519}, {2.73325, 0.937419, 1.38591, -4.49537, 1.77924, 2.95751, -2.7214, 1.07711, -0.607179, -1.5103, -1.42145, 0.207104, -16.1637, -4.1753, -6.03816, 12.3972, -4.90676, 4.39779, -0.0146435, -2.4901, -0.962565, -1.51164, 0.598298, -1.96907, 6.05586, 8.17591, 0.134147, 5.23067, 0.425625, 0.494519}, {2.73325, 0.937419, 1.38591, 1.49846, -0.593081, -0.985836, 8.16419, -3.23134, 1.82154, -1.5103, -1.42145, 0.207104, -5.23067, -0.425625, -0.494519, -4.48219, 1.77402, 5.91242, -10.9476, -6.23977, -6.50621, -1.51164, 0.598298, -1.96907, 0.0146435, 2.4901, 0.962565, 11.2719, 6.11143, -0.333899}, {2.73325, 0.937419, 1.38591, 1.49846, -0.593081, -0.985836, -2.7214, 1.07711, -0.607179, 4.53091, 4.26436, -0.621313, -5.23067, -0.425625, -0.494519, 1.51164, -0.598298, 1.96907, -0.0146435, -2.4901, -0.962565, -12.4446, -3.15138, -7.51272, -5.97918, 4.86242, 4.90591, 16.1163, -3.88283, 2.92323}, {-8.88178e-16, -2.39835, -6.05767, -3.06161e-16, 0.53318, -2.01922, -1.31177, -0.650588, 1.29879, 1.31177, -0.68204, -1.29879, 1.33227e-15, -3.77994, 8.07689, 1.62143, 0.145125, 0.890503, 6.86849, 2.41835, -9.29645, -6.86849, 2.58304, 4.30465, -1.62143, 0.184002, 4.10129, 0, 1.64722, 0}, {-2.22045e-16, 0.799449, 2.01922, -9.18483e-16, -1.59954, 6.05767, -1.31177, -0.650588, 1.29879, 1.31177, -0.68204, -1.29879, 8.88178e-16, -4.84502, -8.07689, 6.86849, 2.74748, -4.30465, 1.62143, -0.184002, -4.10129, -1.62143, -0.145125, -0.890503, -6.86849, 2.91216, 9.29645, 0, 1.64722, 0}, {1.77636e-15, 0.799449, 2.01922, -2.08189e-15, 0.53318, -2.01922, 3.9353, 1.95177, -3.89637, 1.31177, -0.68204, -1.29879, 2.22045e-16, -1.64722, -6.66134e-16, 1.62143, -1.98759, 8.96739, 1.62143, -3.3818, -12.1782, -1.62143, -0.145125, -0.890503, -1.62143, 0.184002, 4.10129, -5.24706, 4.37538, 5.19516}, {-6.66134e-16, 0.799449, 2.01922, 1.04095e-15, 0.53318, -2.01922, -1.31177, -0.650588, 1.29879, -3.9353, 2.04612, 3.89637, -6.66134e-16, -1.64722, -2.22045e-16, 1.62143, 0.145125, 0.890503, 1.62143, -0.184002, -4.10129, -1.62143, -3.34292, -8.96739, -1.62143, -1.94872, 12.1782, 5.24706, 4.24957, -5.19516}, {1.77636e-15, 0, 9.45441, 1.36261, 1.78885, 1.36261, 1.78885, -1.78885, 1.78885, -3.15147, 0, 0, -7.13474, -9.36656, -3.23931, -3.89543, 0, -3.89543, -9.36656, 9.36656, -5.47113, 16.5013, 0, 3.89543, 2.21115, -2.21115, -1.68428, 1.68428, 2.21115, -2.21115}, {4.44089e-16, -4.44089e-16, -3.15147, -4.08784, -5.36656, -4.08784, 1.78885, -1.78885, 1.78885, -3.15147, 0, 0, -1.68428, -2.21115, 14.817, -11.0508, 7.15542, -11.0508, -2.21115, 2.21115, 1.68428, 3.89543, 8.88178e-16, 3.89543, 14.817, -2.21115, -1.68428, 1.68428, 2.21115, -2.21115}, {0, 2.22045e-16, -3.15147, 1.36261, 1.78885, 1.36261, -5.36656, 5.36656, -5.36656, -3.15147, 0, 0, -1.68428, -2.21115, 2.21115, -9.34589, -7.15542, -9.34589, -2.21115, 2.21115, 14.2902, 3.89543, -4.44089e-16, 3.89543, 2.21115, -2.21115, -1.68428, 14.2902, 2.21115, -2.21115}, {4.44089e-16, 2.22045e-16, -3.15147, 1.36261, 1.78885, 1.36261, 1.78885, -1.78885, 1.78885, 9.45441, 0, 0, -1.68428, -2.21115, 2.21115, -3.89543, 4.44089e-16, -3.89543, -2.21115, 2.21115, 1.68428, 3.89543, 0, 16.5013, -3.23931, -9.36656, -7.13474, -5.47113, 9.36656, -9.36656}, {-2.46108, 3.54412, -0.0109738, -0.670026, 0.174063, -1.44271, 0.904569, 1.43103, -0.00443094, -1.0549, -0.423716, 1.44348, 2.49428, 0.548851, 7.54959, -0.28991, -1.984, 1.78876, -5.7504, -6.03269, 0.0186792, 4.50952, 3.67886, -7.56268, 2.13213, 0.308587, -0.000955489, 0.185824, -1.2451, -1.77876}, {0.820361, -1.18137, 0.00365793, 2.01008, -0.52219, 4.32812, 0.904569, 1.43103, -0.00443094, -1.0549, -0.423716, 1.44348, -3.46727, 5.9706, 1.76413, -3.90819, -7.7081, 1.80648, -2.13213, -0.308587, 0.000955489, 0.28991, 1.984, -1.78876, 6.35174, 2.00345, -5.77487, 0.185824, -1.2451, -1.77876}, {0.820361, -1.18137, 0.00365793, -0.670026, 0.174063, -1.44271, -2.71371, -4.29308, 0.0132928, -1.0549, -0.423716, 1.44348, -0.185824, 1.2451, 1.77876, 2.39019, -2.68025, 7.55959, -5.41357, 4.41691, -0.0136762, 0.28991, 1.984, -1.78876, 2.13213, 0.308587, -0.000955489, 4.40544, 0.449758, -7.55268}, {0.820361, -1.18137, 0.00365793, -0.670026, 0.174063, -1.44271, 0.904569, 1.43103, -0.00443094, 3.16471, 1.27115, -4.33044, -0.185824, 1.2451, 1.77876, -0.28991, -1.984, 1.78876, -2.13213, -0.308587, 0.000955489, -2.99153, 6.7095, -1.80339, 4.81224, -0.387667, 5.76987, -3.43245, -6.96921, -1.76104}, {-4.81192, -4.81192, 0.736124, -0.501255, 1.51797, 0.85277, 0.0700522, -1.94917, 0.533356, -1.17277, -1.17277, -1.14075, 0.641985, -9.9308, -4.16186, 0.532996, 0.532996, -1.71335, -2.34942, 8.22336, -2.48939, 4.15809, 4.15809, 6.27635, 2.06921, -0.426686, 0.355964, 1.36304, 3.85893, 0.750782}, {1.60397, 1.60397, -0.245375, 1.50376, -4.5539, -2.55831, 0.0700522, -1.94917, 0.533356, -1.17277, -1.17277, -1.14075, -7.77893, -10.2748, 0.230717, 0.252787, 8.32967, -3.84677, -2.06921, 0.426686, -0.355964, -0.532996, -0.532996, 1.71335, 6.76029, 4.2644, 4.91897, 1.36304, 3.85893, 0.750782}, {1.60397, 1.60397, -0.245375, -0.501255, 1.51797, 0.85277, -0.210157, 5.84751, -1.60007, -1.17277, -1.17277, -1.14075, -1.36304, -3.85893, -0.750782, 2.53802, -5.53887, -5.12443, -8.4851, -5.98921, 0.625534, -0.532996, -0.532996, 1.71335, 2.06921, -0.426686, 0.355964, 6.05412, 8.55001, 5.31379}, {1.60397, 1.60397, -0.245375, -0.501255, 1.51797, 0.85277, 0.0700522, -1.94917, 0.533356, 3.51831, 3.51831, 3.42225, -1.36304, -3.85893, -0.750782, 0.532996, 0.532996, -1.71335, -2.06921, 0.426686, -0.355964, -6.94889, -6.94889, 2.69484, 4.07423, -6.49855, -3.05512, 1.08283, 11.6556, -1.38264}, {-4.7272, -4.7272, -4.7272, -1.57573, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, 6.30294, 6.30294, -10.1984, -1.8181e-12, 3.89543, -1.80878e-12, -10.1984, 6.30294, 6.30294, 6.30294, -10.1984, 6.30294, 3.89543, -1.79678e-12, -1.79323e-12, 3.77476e-15, -3.77476e-15, 3.89543}, {1.57573, 1.57573, 1.57573, 4.7272, 4.7272, -4.7272, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, -6.30294, -6.30294, -10.1984, -6.30294, 10.1984, 6.30294, -3.89543, 1.79323e-12, 1.80544e-12, 1.81771e-12, -3.89543, 1.82415e-12, 10.1984, -6.30294, 6.30294, 3.55271e-15, -3.55271e-15, 3.89543}, {1.57573, 1.57573, 1.57573, -1.57573, -1.57573, 1.57573, -4.7272, 4.7272, 4.7272, -1.57573, 1.57573, -1.57573, -3.9968e-15, 3.10862e-15, -3.89543, 6.30294, 10.1984, -6.30294, -10.1984, -6.30294, -6.30294, 1.82792e-12, -3.89543, 1.81616e-12, 3.89543, -1.80234e-12, -1.79368e-12, 6.30294, -6.30294, 10.1984}, {1.57573, 1.57573, 1.57573, -1.57573, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, 4.7272, -4.7272, 4.7272, -2.66454e-15, 1.33227e-15, -3.89543, -1.81033e-12, 3.89543, -1.81055e-12, -3.89543, 1.80367e-12, 1.80389e-12, -6.30294, -10.1984, -6.30294, 10.1984, 6.30294, -6.30294, -6.30294, 6.30294, 10.1984}, {1.77636e-15, 8.88178e-16, 3.96048, -1.97452e-12, 2.01922, 0.776088, 1.44665, -0.572575, 0.322765, -1.44665, -1.44665, 0.221307, 1.03391e-11, -10.5728, -2.43184, -1.78815, -1.78815, -1.35826, -7.57474, 2.99804, -0.0582134, 7.57474, 7.57474, 0.47303, 1.78815, -0.707741, -1.23285, -2.44094e-12, 2.4959, -0.672511}, {2.22045e-16, 0, -1.32016, 5.92356e-12, -6.05767, -2.32827, 1.44665, -0.572575, 0.322765, -1.44665, -1.44665, 0.221307, 2.43894e-12, -2.4959, 5.95315, -7.57474, 0.502145, -2.64932, -1.78815, 0.707741, 1.23285, 1.78815, 1.78815, 1.35826, 7.57474, 5.07885, -2.11808, -2.44005e-12, 2.4959, -0.672511}, {4.44089e-16, 4.44089e-16, -1.32016, -1.97278e-12, 2.01922, 0.776088, -4.33994, 1.71772, -0.968296, -1.44665, -1.44665, 0.221307, 2.43805e-12, -2.4959, 0.672511, -1.78815, -9.86504, -4.46261, -1.78815, 0.707741, 6.51349, 1.78815, 1.78815, 1.35826, 1.78815, -0.707741, -1.23285, 5.78659, 8.28248, -1.55774}, {2.22045e-16, 2.22045e-16, -1.32016, -1.97211e-12, 2.01922, 0.776088, 1.44665, -0.572575, 0.322765, 4.33994, 4.33994, -0.663921, 2.43761e-12, -2.4959, 0.672511, -1.78815, -1.78815, -1.35826, -1.78815, 0.707741, 1.23285, 1.78815, 1.78815, 6.6389, 1.78815, -8.78463, -4.3372, -5.78659, 4.7862, -1.96357}, {-5.69487, 4.44089e-15, -2.66454e-15, -0.575562, 1.78885, 1.78885, 0.744968, -3.64699, -0.373467, -2.0677, 1.85814, -1.41539, 0.667265, -9.36656, -9.36656, -0.209397, 2.29678, -1.74951, -6.24712, 19.0959, 1.9555, 8.48018, -9.72932, 7.41106, 3.26725, -4.50793, -0.461631, 1.63498, 2.21115, 2.21115}, {1.89829, 2.66454e-15, -6.66134e-16, 1.72669, -5.36656, -5.36656, 0.744968, -3.64699, -0.373467, -2.0677, 1.85814, -1.41539, -9.22815, -2.21115, -2.21115, -3.18927, 16.8847, -0.255645, -3.26725, 4.50793, 0.461631, 0.209397, -2.29678, 1.74951, 11.538, -11.9405, 5.19992, 1.63498, 2.21115, 2.21115}, {1.89829, 3.55271e-15, 4.44089e-16, -0.575562, 1.78885, 1.78885, -2.2349, 10.941, 1.1204, -2.0677, 1.85814, -1.41539, -1.63498, -2.21115, -2.21115, 2.09285, -4.85864, -8.90493, -10.8604, 4.50793, 0.461631, 0.209397, -2.29678, 1.74951, 3.26725, -4.50793, -0.461631, 9.90577, -5.2214, 7.87269}, {1.89829, -2.44249e-15, 1.33227e-15, -0.575562, 1.78885, 1.78885, 0.744968, -3.64699, -0.373467, 6.20309, -5.57441, 4.24616, -1.63498, -2.21115, -2.21115, -0.209397, 2.29678, -1.74951, -3.26725, 4.50793, 0.461631, -7.38377, -2.29678, 1.74951, 5.5695, -11.6633, -7.61705, -1.34489, 16.7991, 3.70501}, {1.1885, -5.81832, -0.595821, 1.89829, -2.11601e-15, 5.39995e-16, -1.41683, -1.32819, -1.74168, -0.0852942, -0.611252, 1.54307, -9.44989, -2.39728, -0.245492, -0.59512, 1.64173, 2.15284, 7.9083, 4.5572, 8.87406, 0.936297, 0.803277, -8.32513, -2.24099, 0.755549, -1.90734, 1.85673, 2.39728, 0.245492}, {-0.396168, 1.93944, 0.198607, -5.69487, -1.01358e-15, -4.64389e-15, -1.41683, -1.32819, -1.74168, -0.0852942, -0.611252, 1.54307, -0.272056, -10.155, -1.03992, 5.0722, 6.95448, 9.11956, 2.24099, -0.755549, 1.90734, 0.59512, -1.64173, -2.15284, -1.89981, 3.20056, -8.07964, 1.85673, 2.39728, 0.245492}, {-0.396168, 1.93944, 0.198607, 1.89829, 0, 0, 4.25049, 3.98456, 5.22504, -0.0852942, -0.611252, 1.54307, -1.85673, -2.39728, -0.245492, -8.18828, 1.64173, 2.15284, 3.82566, -8.51331, 1.11292, 0.59512, -1.64173, -2.15284, -2.24099, 0.755549, -1.90734, 2.1979, 4.84229, -5.9268}, {-0.396168, 1.93944, 0.198607, 1.89829, 2.88057e-16, -7.27184e-16, -1.41683, -1.32819, -1.74168, 0.255883, 1.83376, -4.62922, -1.85673, -2.39728, -0.245492, -0.59512, 1.64173, 2.15284, 2.24099, -0.755549, 1.90734, 2.17979, -9.39949, -2.94726, -9.83415, 0.755549, -1.90734, 7.52404, 7.71003, 7.21221}, {-5.53939e-11, -0.00379978, 5.36656, -2.34313, -2.34273, 1.78885, -6.81003e-16, 2.34147, 0, 2.34313, 0, 0, 12.2688, 12.2651, -7.15542, 2.89626, 0.00156559, -2.21115, -2.28204e-11, -12.2616, 2.21115, -12.2688, -0.00156559, 2.21115, 2.28231e-11, 2.89578, -2.21115, -2.89626, -2.89421, 0}, {1.23088e-11, 0.00126659, -1.78885, 7.02938, 7.0282, -5.36656, -2.04301e-15, 2.34147, 0, 2.34313, -1.36201e-15, 0, 2.89626, 2.88915, 7.15542, 2.89626, -9.3643, -2.21115, -1.52118e-11, -2.89578, 2.21115, -2.89626, -0.00156559, 2.21115, -9.3725, 2.89578, -2.21115, -2.89626, -2.89421, 0}, {1.23057e-11, 0.00126659, -1.78885, -2.34313, -2.34273, 1.78885, 0, -7.0244, 0, 2.34313, 0, 0, 2.89626, 2.89421, 4.44089e-16, 12.2688, 9.3725, -9.36656, -6.44356e-11, -2.90084, 9.36656, -2.89626, -0.00156559, 2.21115, 1.52105e-11, 2.89578, -2.21115, -12.2688, -2.89421, 0}, {1.23084e-11, 0.00126659, -1.78885, -2.34313, -2.34273, 1.78885, 2.04301e-15, 2.34147, 0, -7.02938, 0, 0, 2.89626, 2.89421, 4.44089e-16, 2.89626, 0.00156559, -2.21115, -1.52163e-11, -2.89578, 2.21115, -2.89626, -0.00663197, 9.36656, 9.3725, 12.2667, -9.36656, -2.89626, -12.2601, 0}, {-7.02938, -5.36656, -7.02938, -1.21095e-11, -1.78885, -1.21105e-11, 0, 0, -2.34313, -2.34313, 0, 0, -2.89626, 7.15542, -2.89626, 1.49681e-11, 2.21115, 2.89626, -2.89626, -2.21115, 9.3725, 9.3725, -2.21115, -2.89626, 2.89626, 2.21115, 1.49694e-11, 2.89626, 0, 2.89626}, {2.34313, 1.78885, 2.34313, 5.47931e-11, 5.36656, 5.47978e-11, 0, 0, -2.34313, -2.34313, 0, 0, -12.2688, -7.15542, -12.2688, 2.2576e-11, 2.21115, 12.2688, -2.89626, -2.21115, -2.25785e-11, -2.25766e-11, -2.21115, -2.89626, 12.2688, 2.21115, 2.25779e-11, 2.89626, 0, 2.89626}, {2.34313, 1.78885, 2.34313, -1.21079e-11, -1.78885, -1.21105e-11, 0, 0, 7.02938, -2.34313, 0, 0, -2.89626, -4.44089e-16, -2.89626, 6.33979e-11, 9.36656, 2.89626, -12.2688, -9.36656, -9.3725, -1.49668e-11, -2.21115, -2.89626, 2.89626, 2.21115, 1.49694e-11, 12.2688, 0, 2.89626}, {2.34313, 1.78885, 2.34313, -1.21105e-11, -1.78885, -1.21079e-11, 0, 0, -2.34313, 7.02938, 0, 0, -2.89626, -4.44089e-16, -2.89626, 1.49694e-11, 2.21115, 2.89626, -2.89626, -2.21115, -1.49668e-11, -9.3725, -9.36656, -12.2688, 2.89626, 9.36656, 6.33979e-11, 2.89626, 0, 12.2688}, {6.00487, -2.5896, 0, 1.30033, -0.681296, -1.31177, -1.30033, -0.651333, 1.31177, 2.00162, 0.469428, 0, -4.33448, 2.50034, 6.86849, 0, 1.64722, 0, 9.28277, 2.34345, -6.86849, -8.00649, -3.52493, 0, -4.08144, 0.261882, 1.62143, -0.866843, 0.224847, -1.62143}, {-2.00162, 0.8632, -1.61346e-16, -3.901, 2.04389, 3.9353, -1.30033, -0.651333, 1.31177, 2.00162, 0.469428, -6.06985e-17, 8.87333, -3.67765, 1.62143, 5.20133, 4.25255, -5.24706, 4.08144, -0.261882, -1.62143, 5.28204e-17, -1.64722, 2.22045e-16, -12.0879, -1.61583, 1.62143, -0.866843, 0.224847, -1.62143}, {-2.00162, 0.8632, -1.00648e-16, 1.30033, -0.681296, -1.31177, 3.901, 1.954, -3.9353, 2.00162, 0.469428, -1.21397e-16, 0.866843, -0.224847, 1.62143, -5.20133, 4.3724, 5.24706, 12.0879, -3.71468, -1.62143, 4.9691e-16, -1.64722, 2.22045e-16, -4.08144, 0.261882, 1.62143, -8.87333, -1.65287, -1.62143}, {-2.00162, 0.8632, 0, 1.30033, -0.681296, -1.31177, -1.30033, -0.651333, 1.31177, -6.00487, -1.40829, 0, 0.866843, -0.224847, 1.62143, 0, 1.64722, 0, 4.08144, -0.261882, -1.62143, 8.00649, -5.10002, 0, -9.28277, 2.98706, 6.86849, 4.33448, 2.83018, -6.86849}, {-3.67855, 1.13524, -1.13945, -0.728854, -0.729491, 0.729491, -0.347691, -0.347995, -1.25767, -0.149637, 1.4559, 0.148365, 2.30068, 4.28741, -4.28915, 1.33068, 1.33185, 0.652868, 0.304891, 2.28987, 6.11578, -0.732135, -7.15545, -1.24633, 1.08587, -0.897892, -1.08509, 0.614731, -1.36945, 1.37118}, {1.22618, -0.378415, 0.379817, 2.18656, 2.18847, -2.18847, -0.347691, -0.347995, -1.25767, -0.149637, 1.4559, 0.148365, -5.51946, 2.8831, -2.89045, 2.72145, 2.72383, 5.68356, -1.08587, 0.897892, 1.08509, -1.33068, -1.33185, -0.652868, 1.68442, -6.72149, -1.67855, 0.614731, -1.36945, 1.37118}, {1.22618, -0.378415, 0.379817, -0.728854, -0.729491, 0.729491, 1.04307, 1.04399, 3.77302, -0.149637, 1.4559, 0.148365, -0.614731, 1.36945, -1.37118, 4.2461, 4.24981, -2.2651, -5.9906, 2.41155, -0.434178, -1.33068, -1.33185, -0.652868, 1.08587, -0.897892, -1.08509, 1.21328, -7.19305, 0.777722}, {1.22618, -0.378415, 0.379817, -0.728854, -0.729491, 0.729491, -0.347691, -0.347995, -1.25767, 0.448911, -4.3677, -0.445094, -0.614731, 1.36945, -1.37118, 1.33068, 1.33185, 0.652868, -1.08587, 0.897892, 1.08509, -6.23541, 0.181812, -2.17214, 4.00129, 2.02007, -4.00305, 2.0055, 0.0225343, 6.40187}, {-3.16808, 0, 5.09912e-16, -0.781545, 0, -1.31177, 0.234793, 1.31177, 1.31177, -0.509273, -1.31177, -1.26089e-16, 2.78691, 0, 6.86849, 0.675824, -1.62143, -2.22045e-16, -2.53471, -6.86849, -6.86849, 1.36127, 6.86849, 7.264e-16, 1.59554, 1.62143, 1.62143, 0.339276, 0, -1.62143}, {1.05603, 0, 6.58225e-17, 2.34464, 0, 3.9353, 0.234793, 1.31177, 1.31177, -0.509273, -1.31177, 3.78267e-16, -4.56338, 0, 1.62143, -0.263347, -6.86849, -5.24706, -1.59554, -1.62143, -1.62143, -0.675824, 1.62143, -4.44089e-16, 3.63263, 6.86849, 1.62143, 0.339276, 0, -1.62143}, {1.05603, -2.22045e-16, 6.02665e-17, -0.781545, 3.78267e-16, -1.31177, -0.704378, -3.9353, -3.9353, -0.509273, -1.31177, -5.04356e-16, -0.339276, -2.22045e-16, 1.62143, 3.80201, -1.62143, 5.24706, -5.81964, -1.62143, -1.62143, -0.675824, 1.62143, 4.44089e-16, 1.59554, 1.62143, 1.62143, 2.37637, 5.24706, -1.62143}, {1.05603, 0, 0, -0.781545, 0, -1.31177, 0.234793, 1.31177, 1.31177, 1.52782, 3.9353, 0, -0.339276, 0, 1.62143, 0.675824, -1.62143, 0, -1.59554, -1.62143, -1.62143, -4.89993, 1.62143, 0, 4.72172, 1.62143, 6.86849, -0.599895, -5.24706, -6.86849}, {-4.31352, 0.137385, -4.35145, -1.43784, 0.845244, 0.568738, 0, -1.33263, 0, 1.50855e-12, 0.53318, -2.01922, 5.75136, -4.36915, -4.77085, 1.77727, 0.602441, -0.702999, -1.77727, 7.03434, -1.7929, -1.77727, -2.73516, 8.77989, 1.77727, -1.70383, 1.7929, -1.86467e-12, 0.988174, 2.4959}, {1.43784, -0.0457949, 1.45048, 4.31352, -2.53573, -1.70622, 0, -1.33263, 0, 1.50567e-12, 0.53318, -2.01922, -5.75136, -0.804994, -8.29783, 1.77727, 5.93296, -0.702999, -1.77727, 1.70383, -1.7929, -1.77727, -0.602441, 0.702999, 1.77727, -3.83654, 9.86978, -1.86111e-12, 0.988174, 2.4959}, {1.43784, -0.0457949, 1.45048, -1.43784, 0.845244, 0.568738, 0, 3.99789, 0, 1.50891e-12, 0.53318, -2.01922, 1.86476e-12, -0.988174, -2.4959, 7.52863, -2.77854, -2.97795, -7.52863, 1.887, -7.59483, -1.77727, -0.602441, 0.702999, 1.77727, -1.70383, 1.7929, -7.90075e-12, -1.14454, 10.5728}, {1.43784, -0.0457949, 1.45048, -1.43784, 0.845244, 0.568738, 0, -1.33263, 0, -4.51484e-12, -1.59954, 6.05767, 1.85986e-12, -0.988174, -2.4959, 1.77727, 0.602441, -0.702999, -1.77727, 1.70383, -1.7929, -7.52863, -0.419261, -5.09894, 7.52863, -5.0848, -0.482057, -1.86021e-12, 6.31869, 2.4959}, {0, 7.02938, 1.2039e-15, 0, 0, -2.34313, 1.78885, 2.34313, 2.34059, -1.78885, -1.21095e-11, 0.00253498, 0, 2.89626, 12.2688, -2.21115, -2.89626, 0.00313341, -9.36656, -9.3725, -12.2555, 9.36656, 2.89626, -0.0132733, 2.21115, 1.49681e-11, 2.89313, 0, -2.89626, -2.89626}, {0, -2.34313, 2.70617e-16, 0, 0, 7.02938, 1.78885, 2.34313, 2.34059, -1.78885, -1.2111e-11, 0.00253498, 0, 12.2688, 2.89626, -9.36656, -12.2688, -9.35923, -2.21115, -1.49695e-11, -2.89313, 2.21115, 2.89626, -0.00313341, 9.36656, 6.34142e-11, 2.88299, 0, -2.89626, -2.89626}, {0, -2.34313, -2.48499e-16, 0, 0, -2.34313, -5.36656, -7.02938, -7.02177, -1.78885, -1.21116e-11, 0.00253498, 0, 2.89626, 2.89626, -2.21115, -2.89626, 9.37564, -2.21115, 9.3725, -2.89313, 2.21115, 2.89626, -0.00313341, 2.21115, 1.49707e-11, 2.89313, 7.15542, -2.89626, -2.9064}, {0, -2.34313, 5.31259e-16, 0, 0, -2.34313, 1.78885, 2.34313, 2.34059, 5.36656, 5.47978e-11, -0.00760494, 0, 2.89626, 2.89626, -2.21115, -2.89626, 0.00313341, -2.21115, -2.25774e-11, -2.89313, 2.21115, 12.2688, -0.00313341, 2.21115, 2.25779e-11, 12.2656, -7.15542, -12.2688, -12.2586}, {-3.23058, -0.349184, -0.349184, -0.223923, -1.25104, -1.25104, -0.552433, 1.28003, -0.0317341, -0.300503, -0.14539, 1.16638, -0.158596, 6.40664, 6.40664, 0.959628, -0.0358398, 1.58559, 1.56151, -6.8462, 0.0222906, 0.242385, 0.617398, -6.25109, 0.648226, 1.72608, 0.104646, 1.05429, -1.40249, -1.40249}, {1.07686, 0.116395, 0.116395, 0.671768, 3.75311, 3.75311, -0.552433, 1.28003, -0.0317341, -0.300503, -0.14539, 1.16638, -5.36172, 0.936916, 0.936916, 3.16936, -5.15596, 1.71253, -0.648226, -1.72608, -0.104646, -0.959628, 0.0358398, -1.58559, 1.85024, 2.30764, -4.56086, 1.05429, -1.40249, -1.40249}, {1.07686, 0.116395, 0.116395, -0.223923, -1.25104, -1.25104, 1.6573, -3.84009, 0.0952024, -0.300503, -0.14539, 1.16638, -1.05429, 1.40249, 1.40249, 1.85532, 4.96831, 6.58973, -4.95566, -2.19166, -0.570224, -0.959628, 0.0358398, -1.58559, 0.648226, 1.72608, 0.104646, 2.2563, -0.820936, -6.068}, {1.07686, 0.116395, 0.116395, -0.223923, -1.25104, -1.25104, -0.552433, 1.28003, -0.0317341, 0.90151, 0.436169, -3.49913, -1.05429, 1.40249, 1.40249, 0.959628, -0.0358398, 1.58559, -0.648226, -1.72608, -0.104646, -5.26706, -0.429738, -2.05117, 1.54392, 6.73022, 5.10879, 3.26402, -6.52262, -1.27556}, {5.36656, 7.02938, -7.02938, 0, 0, -2.34313, 1.78885, -1.02092e-11, 1.05679e-11, 0, 2.34313, 0, 2.21115, 2.89626, 9.3725, -2.21115, 1.26192e-11, 2.89626, -7.15542, 2.89626, -2.89626, 2.21115, -9.3725, -2.89626, 0, -2.89626, 2.89626, -2.21115, -2.89626, -1.30626e-11}, {-1.78885, -2.34313, 2.34313, 0, 0, 7.02938, 1.78885, -1.02081e-11, 1.05669e-11, -1.04056e-15, 2.34313, -6.14662e-27, 9.36656, 12.2688, -9.3725, -9.36656, 5.34504e-11, 2.89626, -8.4211e-16, 2.89626, -2.89626, 2.21115, -1.26174e-11, -2.89626, 5.44843e-15, -12.2688, 2.89626, -2.21115, -2.89626, -1.30613e-11}, {-1.78885, -2.34313, 2.34313, 0, 0, -2.34313, -5.36656, 3.06298e-11, -3.17084e-11, 0, 2.34313, 0, 2.21115, 2.89626, 1.3064e-11, -2.21115, 1.26202e-11, 12.2688, 7.15542, 12.2688, -12.2688, 2.21115, -1.26196e-11, -2.89626, 0, -2.89626, 2.89626, -2.21115, -12.2688, -1.30646e-11}, {-1.78885, -2.34313, 2.34313, 0, 0, -2.34313, 1.78885, -1.02092e-11, 1.05658e-11, 0, -7.02938, 0, 2.21115, 2.89626, 1.30595e-11, -2.21115, 1.26192e-11, 2.89626, 4.44089e-16, 2.89626, -2.89626, 9.36656, 9.3725, -12.2688, 0, -2.89626, 12.2688, -9.36656, -2.89626, -5.53233e-11}, {0, 9.45441, 0, 3.15147, 1.39953e-15, -1.39953e-15, -1.36261, 1.36261, 1.78885, -1.78885, 1.78885, -1.78885, -16.5013, 3.89543, 7.54952e-15, -2.21115, -1.68428, -2.21115, 7.13474, -3.23931, -9.36656, 9.36656, -5.47113, 9.36656, -1.68428, -2.21115, 2.21115, 3.89543, -3.89543, -1.77636e-15}, {8.88178e-16, -3.15147, 2.22045e-16, -9.45441, -1.00042e-15, 8.3972e-15, -1.36261, 1.36261, 1.78885, -1.78885, 1.78885, -1.78885, -3.89543, 16.5013, 5.32907e-15, 3.23931, -7.13474, -9.36656, 1.68428, 2.21115, -2.21115, 2.21115, 1.68428, 2.21115, 5.47113, -9.36656, 9.36656, 3.89543, -3.89543, -3.55271e-15}, {4.44089e-16, -3.15147, 0, 3.15147, 0, 0, 4.08784, -4.08784, -5.36656, -1.78885, 1.78885, -1.78885, -3.89543, 3.89543, 0, -14.817, -1.68428, -2.21115, 1.68428, 14.817, -2.21115, 2.21115, 1.68428, 2.21115, -1.68428, -2.21115, 2.21115, 11.0508, -11.0508, 7.15542}, {6.66134e-16, -3.15147, -2.22045e-16, 3.15147, 1.39953e-15, -1.39953e-15, -1.36261, 1.36261, 1.78885, 5.36656, -5.36656, 5.36656, -3.89543, 3.89543, 1.77636e-15, -2.21115, -1.68428, -2.21115, 1.68428, 2.21115, -2.21115, 2.21115, 14.2902, 2.21115, -14.2902, -2.21115, 2.21115, 9.34589, -9.34589, -7.15542}, {4.32877, -2.26802, -4.36683, -0.571101, 0.113693, -1.4431, 0, -1.33263, 0, 2.01402, 0.462931, -0.0125109, 4.77387, -1.52978, 5.75693, 0.70592, 1.50669, 1.78377, 1.78355, 6.04326, -1.79923, -8.76202, -3.35841, -1.73373, -1.78355, -0.712746, 1.79923, -2.48947, 1.07501, 0.0154644}, {-1.44292, 0.756005, 1.45561, 1.7133, -0.34108, 4.3293, 0, -1.33263, 0, 2.01402, 0.462931, -0.0125109, 8.26116, -4.09903, -5.83791, 0.70592, 6.8372, 1.78377, 1.78355, 0.712746, -1.79923, -0.70592, -1.50669, -1.78377, -9.83965, -2.56447, 1.84928, -2.48947, 1.07501, 0.0154644}, {-1.44292, 0.756005, 1.45561, -0.571101, 0.113693, -1.4431, 0, 3.99789, 0, 2.01402, 0.462931, -0.0125109, 2.48947, -1.07501, -0.0154644, 2.99032, 1.05191, 7.55617, 7.55524, -2.31127, -7.62167, -0.70592, -1.50669, -1.78377, -1.78355, -0.712746, 1.79923, -10.5456, -0.776716, 0.0655081}, {-1.44292, 0.756005, 1.45561, -0.571101, 0.113693, -1.4431, 0, -1.33263, 0, -6.04207, -1.38879, 0.0375328, 2.48947, -1.07501, -0.0154644, 0.70592, 1.50669, 1.78377, 1.78355, 0.712746, -1.79923, 5.06577, -4.53071, -7.60621, 0.500853, -1.16752, 7.57163, -2.48947, 6.40552, 0.0154644}, {-4.70136, -8.88178e-16, -1.57513e-15, 0.134389, 1.44665, -1.44665, -0.426776, 0.569981, 1.4404, -1.27473, -2.01663, 0.00624416, -2.64074, -7.57474, 7.57474, 0.36141, -2.49269, 0.00771821, 0.297559, -2.98446, -7.54205, 4.73753, 10.5592, -0.0326948, 1.40954, 0.704535, 1.78044, 2.10318, 1.78815, -1.78815}, {1.56712, -8.88178e-16, 1.00961e-15, -0.403167, -4.33994, 4.33994, -0.426776, 0.569981, 1.4404, -1.27473, -2.01663, 0.00624416, -8.37167, -1.78815, 1.78815, 2.06851, -4.77261, -5.75389, -1.40954, -0.704535, -1.78044, -0.36141, 2.49269, -0.00771821, 6.50848, 8.77105, 1.75546, 2.10318, 1.78815, -1.78815}, {1.56712, -1.33227e-15, 1.05818e-16, 0.134389, 1.44665, -1.44665, 1.28033, -1.70994, -4.32121, -1.27473, -2.01663, 0.00624416, -2.10318, -1.78815, 1.78815, -0.176146, -8.27928, 5.79431, -7.67803, -0.704535, -1.78044, -0.36141, 2.49269, -0.00771821, 1.40954, 0.704535, 1.78044, 7.20212, 9.85467, -1.81313}, {1.56712, 0, 2.67147e-16, 0.134389, 1.44665, -1.44665, -0.426776, 0.569981, 1.4404, 3.8242, 6.04988, -0.0187325, -2.10318, -1.78815, 1.78815, 0.36141, -2.49269, 0.00771821, -1.40954, -0.704535, -1.78044, -6.6299, 2.49269, -0.00771821, 0.871989, -5.08205, 7.56702, 3.81029, -0.491769, -7.54977}, {-3.47256, 2.13004, 3.47613, -1.55533, -0.53343, -0.78864, -0.511744, 1.83496, 0.513241, 0.909554, -0.591516, 1.43411, 6.71303, 3.6707, 5.56162, 2.55504, -1.60878, 0.340411, 1.24875, -8.73034, -1.25512, -6.19326, 3.97484, -6.07685, 0.798222, 1.39051, -0.797844, -0.49172, -1.53698, -2.40706}, {1.15752, -0.710012, -1.15871, 4.66599, 1.60029, 2.36592, -0.511744, 1.83496, 0.513241, 0.909554, -0.591516, 1.43411, -4.13836, 4.37703, 7.0419, 4.60202, -8.94861, -1.71255, -0.798222, -1.39051, 0.797844, -2.55504, 1.60878, -0.340411, -2.83999, 3.75657, -6.53428, -0.49172, -1.53698, -2.40706}, {1.15752, -0.710012, -1.15871, -1.55533, -0.53343, -0.78864, 1.53523, -5.50487, -1.53972, 0.909554, -0.591516, 1.43411, 0.49172, 1.53698, 2.40706, 8.77636, 0.524942, 3.49497, -5.4283, 1.44954, 5.43269, -2.55504, 1.60878, -0.340411, 0.798222, 1.39051, -0.797844, -4.12993, 0.829086, -8.14349}, {1.15752, -0.710012, -1.15871, -1.55533, -0.53343, -0.78864, -0.511744, 1.83496, 0.513241, -2.72866, 1.77455, -4.30233, 0.49172, 1.53698, 2.40706, 2.55504, -1.60878, 0.340411, -0.798222, -1.39051, 0.797844, -7.18512, 4.44882, 4.29443, 7.01954, 3.52423, 2.35672, 1.55526, -8.87681, -4.46002}, {-0.0259854, 4.18315, -1.68926, -1.44604, -0.0976914, -0.778579, 1.44538, 0.20404, -0.351453, -0.00800116, 1.28804, 0.566947, 7.56086, 2.23507, 3.38068, 0.000816584, -0.131455, 1.3968, -7.57881, 0.655184, 1.14422, 0.031188, -5.02069, -3.66458, 1.79729, -1.47135, 0.261592, -1.7767, -1.84431, -0.266365}, {0.00866179, -1.39438, 0.563086, 4.33812, 0.293074, 2.33574, 1.44538, 0.20404, -0.351453, -0.00800116, 1.28804, 0.566947, 1.74205, 7.42184, -1.98598, -5.7807, -0.947617, 2.80261, -1.79729, 1.47135, -0.261592, -0.000816584, 0.131455, -1.3968, 1.8293, -6.62349, -2.0062, -1.7767, -1.84431, -0.266365}, {0.00866179, -1.39438, 0.563086, -1.44604, -0.0976914, -0.778579, -4.33614, -0.612121, 1.05436, -0.00800116, 1.28804, 0.566947, 1.7767, 1.84431, 0.266365, 5.78498, 0.259311, 4.51111, -1.83194, 7.04888, -2.51393, -0.000816584, 0.131455, -1.3968, 1.79729, -1.47135, 0.261592, -1.74469, -6.99645, -2.53415}, {0.00866179, -1.39438, 0.563086, -1.44604, -0.0976914, -0.778579, 1.44538, 0.20404, -0.351453, 0.0240035, -3.86411, -1.70084, 1.7767, 1.84431, 0.266365, 0.000816584, -0.131455, 1.3968, -1.79729, 1.47135, -0.261592, -0.0354637, 5.70899, -3.64914, 7.58145, -1.08058, 3.37591, -7.55822, -2.66047, 1.13945}, {5.36656, -5.36656, -5.36656, 3.15147, -4.93118e-15, 0, -1.36261, 1.36261, -1.78885, 0, -3.15147, 0, -14.2902, -2.21115, -2.21115, -2.21115, -1.68428, 2.21115, 9.34589, -9.34589, 7.15542, 2.21115, 14.2902, -2.21115, -3.89543, 3.89543, 0, 1.68428, 2.21115, 2.21115}, {-1.78885, 1.78885, 1.78885, -9.45441, 1.0595e-14, -4.1986e-15, -1.36261, 1.36261, -1.78885, 0, -3.15147, 0, 5.47113, -9.36656, -9.36656, 3.23931, -7.13474, 9.36656, 3.89543, -3.89543, 1.28583e-15, 2.21115, 1.68428, -2.21115, -3.89543, 16.5013, -1.72992e-15, 1.68428, 2.21115, 2.21115}, {-1.78885, 1.78885, 1.78885, 3.15147, 0, 0, 4.08784, -4.08784, 5.36656, 0, -3.15147, 0, -1.68428, -2.21115, -2.21115, -14.817, -1.68428, 2.21115, 11.0508, -11.0508, -7.15542, 2.21115, 1.68428, -2.21115, -3.89543, 3.89543, 0, 1.68428, 14.817, 2.21115}, {-1.78885, 1.78885, 1.78885, 3.15147, -4.93118e-15, 0, -1.36261, 1.36261, -1.78885, 0, 9.45441, 0, -1.68428, -2.21115, -2.21115, -2.21115, -1.68428, 2.21115, 3.89543, -3.89543, -4.44089e-16, 9.36656, -5.47113, -9.36656, -16.5013, 3.89543, 0, 7.13474, -3.23931, 9.36656}, {2.81269, -2.81269, -1.11325, -0.456393, -1.88673, -0.746758, 0.886018, 1.45711, 2.59594, 0.507938, -0.507938, -2.22026, 3.5486, 8.72017, 3.45139, -0.531046, 0.531046, -2.28571, -3.48036, -8.78841, -14.0512, -1.50071, 1.50071, 11.1668, -0.0637129, 2.95998, 3.66744, -1.72302, -1.17324, -0.464361}, {-0.937563, 0.937563, 0.371082, 1.36918, 5.6602, 2.24027, 0.886018, 1.45711, 2.59594, 0.507938, -0.507938, -2.22026, 5.47328, -2.57701, -1.01997, -4.07512, -5.29738, -12.6695, 0.0637129, -2.95998, -3.66744, 0.531046, -0.531046, 2.28571, -2.09546, 4.99173, 12.5485, -1.72302, -1.17324, -0.464361}, {-0.937563, 0.937563, 0.371082, -0.456393, -1.88673, -0.746758, -2.65805, -4.37132, -7.78781, 0.507938, -0.507938, -2.22026, 1.72302, 1.17324, 0.464361, 1.29453, 8.07798, 0.701322, 3.81396, -6.71023, -5.15177, 0.531046, -0.531046, 2.28571, -0.0637129, 2.95998, 3.66744, -3.75477, 0.858512, 8.41668}, {-0.937563, 0.937563, 0.371082, -0.456393, -1.88673, -0.746758, 0.886018, 1.45711, 2.59594, -1.52381, 1.52381, 6.66078, 1.72302, 1.17324, 0.464361, -0.531046, 0.531046, -2.28571, 0.0637129, -2.95998, -3.66744, 4.2813, -4.2813, 0.801382, 1.76186, 10.5069, 6.65447, -5.2671, -7.00167, -10.8481}, {8.88178e-16, 4.08096, 0.0852192, 2.97466e-16, 0.921902, -1.18196, 1.31177, 0.0265815, 1.34059, -1.31177, 0.411835, -0.130224, -1.11022e-15, -3.1457, 6.22395, -1.62143, -1.17239, -0.196078, -6.86849, 1.54226, -6.98432, 6.86849, -0.474951, 0.716974, 1.62143, -1.64859, 1.62195, 0, -0.541913, -1.4961}, {-2.22045e-16, -1.36032, -0.0284064, -4.46199e-16, -2.76571, 3.54589, 1.31177, 0.0265815, 1.34059, -1.31177, 0.411835, -0.130224, 8.88178e-16, 5.98319, 1.60972, -6.86849, -1.27872, -5.55845, -1.62143, 1.64859, -1.62195, 1.62143, 1.17239, 0.196078, 6.86849, -3.29593, 2.14285, 0, -0.541913, -1.4961}, {-1.33227e-15, -1.36032, -0.0284064, 4.46199e-16, 0.921902, -1.18196, -3.9353, -0.0797444, -4.02178, -1.31177, 0.411835, -0.130224, 8.88178e-16, 0.541913, 1.4961, -1.62143, -4.86, 4.53177, -1.62143, 7.08987, -1.50833, 1.62143, 1.17239, 0.196078, 1.62143, -1.64859, 1.62195, 5.24706, -2.18925, -0.975202}, {1.55431e-15, -1.36032, -0.0284064, -1.04113e-15, 0.921902, -1.18196, 1.31177, 0.0265815, 1.34059, 3.9353, -1.23551, 0.390672, -4.44089e-16, 0.541913, 1.4961, -1.62143, -1.17239, -0.196078, -1.62143, 1.64859, -1.62195, 1.62143, 6.61367, 0.309704, 1.62143, -5.3362, 6.3498, -5.24706, -0.648239, -6.85847}, {1.39697, -4.32433, -4.36732, 1.89829, -2.30844e-15, -1.37509e-15, 0.0801166, 0.574147, -1.4494, -1.51275, -2.01559, -0.00636856, -9.364, -1.78172, -1.79943, -2.44545, -0.709685, 1.79156, 0.156089, -4.78799, 5.78974, 8.49644, 8.77205, -1.76609, -0.476556, 2.49141, 0.00787198, 1.77083, 1.78172, 1.79943}, {-0.465658, 1.44144, 1.45577, -5.69487, 3.6613e-15, -2.04012e-15, 0.0801166, 0.574147, -1.4494, -1.51275, -2.01559, -0.00636856, 0.0918014, -7.54749, -7.62252, -2.76591, -3.00627, 7.58918, 0.476556, -2.49141, -0.00787198, 2.44545, 0.709685, -1.79156, 5.57444, 10.5538, 0.0333462, 1.77083, 1.78172, 1.79943}, {-0.465658, 1.44144, 1.45577, 1.89829, 0, 0, -0.24035, -1.72244, 4.34821, -1.51275, -2.01559, -0.00636856, -1.77083, -1.78172, -1.79943, -10.0386, -0.709685, 1.79156, 2.33919, -8.25718, -5.83096, 2.44545, 0.709685, -1.79156, -0.476556, 2.49141, 0.00787198, 7.82183, 9.84408, 1.82491}, {-0.465658, 1.44144, 1.45577, 1.89829, 9.49861e-16, 3.00123e-18, 0.0801166, 0.574147, -1.4494, 4.53825, 6.04677, 0.0191057, -1.77083, -1.78172, -1.79943, -2.44545, -0.709685, 1.79156, 0.476556, -2.49141, -0.00787198, 4.30808, -5.05609, -7.61465, -8.06972, 2.49141, 0.00787198, 1.45037, -0.514866, 7.59705}, {4.31352, -3.43679, 1.70622, 1.43784, 0.720211, -1.45048, 0, -1.33263, 0, -1.50621e-12, -0.53318, 2.01922, -5.75136, -5.18711, 8.29783, -1.77727, 0.75699, 1.7929, 1.77727, 5.5617, 0.702999, 1.77727, 1.37573, -9.86978, -1.77727, -0.231184, -0.702999, 1.86177e-12, 2.30627, -2.4959}, {-1.43784, 1.1456, -0.568738, -4.31352, -2.16063, 4.35145, 0, -1.33263, 0, -1.50909e-12, -0.53318, 2.01922, 5.75136, -6.88865, 4.77085, -1.77727, 6.08751, 1.7929, 1.77727, 0.231184, 0.702999, 1.77727, -0.75699, -1.7929, -1.77727, 1.90153, -8.77989, 1.86534e-12, 2.30627, -2.4959}, {-1.43784, 1.1456, -0.568738, 1.43784, 0.720211, -1.45048, 0, 3.99789, 0, -1.50945e-12, -0.53318, 2.01922, -1.86543e-12, -2.30627, 2.4959, -7.52863, -2.12386, 7.59483, 7.52863, -4.3512, 2.97795, 1.77727, -0.75699, -1.7929, -1.77727, -0.231184, -0.702999, 7.90358e-12, 4.43898, -10.5728}, {-1.43784, 1.1456, -0.568738, 1.43784, 0.720211, -1.45048, 0, -1.33263, 0, 4.52348e-12, 1.59954, -6.05767, -1.86342e-12, -2.30627, 2.4959, -1.77727, 0.75699, 1.7929, 1.77727, 0.231184, 0.702999, 7.52863, -5.33938, 0.482057, -7.52863, -3.11203, 5.09894, 1.86378e-12, 7.63678, -2.4959}, {-4.90958, -4.91099, -14.364, 1.57551, -1.57551, -1.57596, -1.57551, 1.57551, -1.57551, -1.63653, -1.637, -1.63653, -10.2723, 6.22604, 2.33354, -1.68754e-14, 1.70974e-14, 3.89543, 6.22661, -10.2729, 2.33118, 6.54611, 6.54798, 2.65068, 0.0754226, 3.97087, 3.97085, 3.9703, 0.076001, 3.9703}, {1.63653, 1.637, 4.788, -4.72653, 4.72653, 4.72788, -1.57551, 1.57551, -1.57551, -1.63653, -1.637, -1.63653, -10.5164, -6.62398, -23.1223, 6.30204, -6.30204, 10.1975, -0.0754226, -3.97087, -3.97085, 1.38046e-14, -1.50613e-14, -3.89543, 6.62153, 10.5189, 10.517, 3.9703, 0.076001, 3.9703}, {1.63653, 1.637, 4.788, 1.57551, -1.57551, -1.57596, 4.72653, -4.72653, 4.72653, -1.63653, -1.637, -1.63653, -3.9703, -0.076001, -3.9703, -6.30204, 6.30204, 10.1993, -6.62153, -10.5189, -23.1228, 1.64691e-14, -1.72818e-14, -3.89543, 0.0754226, 3.97087, 3.97085, 10.5164, 6.62398, 10.5164}, {1.63653, 1.637, 4.788, 1.57551, -1.57551, -1.57596, -1.57551, 1.57551, -1.57551, 4.90958, 4.91099, 4.90958, -3.9703, -0.076001, -3.9703, -1.70974e-14, 1.68754e-14, 3.89543, -0.0754226, -3.97087, -3.97085, -6.54611, -6.54798, -23.0474, -6.22661, 10.2729, 10.2747, 10.2723, -6.22604, 10.2723}, {1.1292, -10.9335, -1.11964, 0, 0, 1.60567, 1.79029, -1.78764, -1.78873, -1.41389, -1.85687, -0.190152, 0.465254, -4.50486, -8.8687, -2.21292, 2.20964, 0.226277, -8.90884, 4.85533, 8.90459, 7.8685, 5.21784, 0.53433, 1.74767, 2.29522, -1.74967, -0.465254, 4.50486, 2.44603}, {-0.376399, 3.64451, 0.373213, 3.83169e-15, 8.27924e-17, -4.817, 1.79029, -1.78764, -1.78873, -1.41389, -1.85687, -0.190152, 1.97085, -19.0829, -3.93889, -9.37409, 9.36019, 7.3812, -1.74767, -2.29522, 1.74967, 2.21292, -2.20964, -0.226277, 7.40324, 9.72271, -0.989068, -0.465254, 4.50486, 2.44603}, {-0.376399, 3.64451, 0.373213, -2.25438e-15, -2.96069e-15, 1.60567, -5.37088, 5.36291, 5.36619, -1.41389, -1.85687, -0.190152, 0.465254, -4.50486, -2.44603, -2.21292, 2.20964, -6.1964, -0.242074, -16.8733, 0.256821, 2.21292, -2.20964, -0.226277, 1.74767, 2.29522, -1.74967, 5.19032, 11.9323, 3.20664}, {-0.376399, 3.64451, 0.373213, 0, 0, 1.60567, 1.79029, -1.78764, -1.78873, 4.24168, 5.57061, 0.570455, 0.465254, -4.50486, -2.44603, -2.21292, 2.20964, 0.226277, -1.74767, -2.29522, 1.74967, 3.71852, -16.7877, -1.71913, 1.74767, 2.29522, -8.17235, -7.62642, 11.6554, 9.60095}, {-9.76996e-15, 8.88178e-16, -7.02938, 1.78885, 2.33948, -2.34059, -1.78885, 6.92504e-12, -0.00253498, 0, -2.33948, 0, -9.36656, -12.2497, 9.35923, 3.9968e-15, -2.89175, 2.89626, 9.36656, -3.62599e-11, -2.88299, -3.9968e-15, 12.2497, -2.89626, -2.21115, 8.55982e-12, 2.89313, 2.21115, 2.89175, 0.00313341}, {-2.22045e-15, -1.33227e-15, 2.34313, -5.36656, -7.01844, 7.02177, -1.78885, 6.92556e-12, -0.00253498, 0, -2.33948, 0, -2.21115, -2.89175, -9.37564, 7.15542, -2.89175, 2.9064, 2.21115, -8.55893e-12, -2.89313, 2.66454e-15, 2.89175, -2.89626, -2.21115, 9.35791, 2.89313, 2.21115, 2.89175, 0.00313341}, {3.9968e-15, 3.55271e-15, 2.34313, 1.78885, 2.33948, -2.34059, 5.36656, -2.0786e-11, 0.00760494, 0, -2.33948, 0, -2.21115, -2.89175, -0.00313341, -7.15542, -12.2497, 12.2586, 2.21115, -8.58513e-12, -12.2656, -4.88498e-15, 2.89175, -2.89626, -2.21115, 8.5687e-12, 2.89313, 2.21115, 12.2497, 0.00313341}, {0, 4.44089e-16, 2.34313, 1.78885, 2.33948, -2.34059, -1.78885, 6.92763e-12, -0.00253498, 0, 7.01844, 0, -2.21115, -2.89175, -0.00313341, 0, -2.89175, 2.89626, 2.21115, -8.56337e-12, -2.89313, 0, 2.89175, -12.2688, -9.36656, -9.35791, 12.2555, 9.36656, 2.89175, 0.0132733}, {5.21741, 5.22554, 3.98943, -2.33948, 0, 0, 1.54072, 1.54312, -0.61076, 2.53789, 0.198723, 1.94057, 14.3994, 2.15304, 1.64373, 0.987318, -1.90741, 0.754941, -5.91764, -5.92686, 4.84171, -11.1389, 1.11252, -8.51722, -0.245252, -0.245635, -2.39867, -5.04144, -2.15304, -1.64373}, {-1.73914, -1.74185, -1.32981, 7.01844, 0, 0, 1.54072, 1.54312, -0.61076, 2.53789, 0.198723, 1.94057, 11.998, 9.12042, 6.96297, -5.17557, -8.0799, 3.19798, 0.245252, 0.245635, 2.39867, -0.987318, 1.90741, -0.754941, -10.3968, -1.04052, -10.1609, -5.04144, -2.15304, -1.64373}, {-1.73914, -1.74185, -1.32981, -2.33948, 0, 0, -4.62217, -4.62937, 1.83228, 2.53789, 0.198723, 1.94057, 5.04144, 2.15304, 1.64373, 10.3452, -1.90741, 0.754941, 7.20179, 7.21302, 7.71791, -0.987318, 1.90741, -0.754941, -0.245252, -0.245635, -2.39867, -15.193, -2.94793, -9.40601}, {-1.73914, -1.74185, -1.32981, -2.33948, 0, 0, 1.54072, 1.54312, -0.61076, -7.61368, -0.596168, -5.82171, 5.04144, 2.15304, 1.64373, 0.987318, -1.90741, 0.754941, 0.245252, 0.245635, 2.39867, 5.96922, 8.87479, 4.5643, 9.11266, -0.245635, -2.39867, -11.2043, -8.32553, 0.799305}, {10.9417, 1.1195, -1.12048, -2.16738e-15, -8.61236e-16, 1.60567, 1.79007, 1.78742, -1.78898, 1.85717, -1.41425, -0.190182, 4.50824, 0.46126, -8.86905, -2.21265, -2.20937, 0.226585, -4.86469, -8.89778, 8.90555, -5.21604, 7.86637, 0.534145, -2.29559, 1.74811, -1.74964, -4.50824, -0.46126, 2.44638}, {-3.64724, -0.373167, 0.373493, -8.02431e-17, 3.82867e-15, -4.817, 1.79007, 1.78742, -1.78898, 1.85717, -1.41425, -0.190182, 19.0972, 1.95393, -3.94035, -9.37293, -9.35904, 7.3825, 2.29559, -1.74811, 1.74964, 2.21265, 2.20937, -0.226585, -9.72428, 7.40511, -0.988907, -4.50824, -0.46126, 2.44638}, {-3.64724, -0.373167, 0.373493, 2.96117e-15, -2.25495e-15, 1.60567, -5.37021, -5.36225, 5.36694, 1.85717, -1.41425, -0.190182, 4.50824, 0.46126, -2.44638, -2.21265, -2.20937, -6.19609, 16.8846, -0.25544, 0.255663, 2.21265, 2.20937, -0.226585, -2.29559, 1.74811, -1.74964, -11.9369, 5.19574, 3.20711}, {-3.64724, -0.373167, 0.373493, -7.40292e-16, 5.63738e-16, 1.60567, 1.79007, 1.78742, -1.78898, -5.57152, 4.24275, 0.570547, 4.50824, 0.46126, -2.44638, -2.21265, -2.20937, 0.226585, 2.29559, -1.74811, 1.74964, 16.8016, 3.70204, -1.72056, -2.29559, 1.74811, -8.17231, -11.6685, -7.61093, 9.60229}, {1.83228, 4.62937, -4.62937, 0, 0, -1.60567, 1.94057, -0.198723, 0.198723, -1.32981, 1.74185, -0.136178, 0.754941, 1.90741, 6.49998, -2.39867, 0.245635, 1.73908, -9.40601, 2.94793, -2.94793, 7.71791, -7.21302, -1.19437, 1.64373, -2.15304, 2.15304, -0.754941, -1.90741, -0.0773091}, {-0.61076, -1.54312, 1.54312, 0, 0, 4.817, 1.94057, -0.198723, 0.198723, -1.32981, 1.74185, -0.136178, 3.19798, 8.0799, -6.09519, -10.1609, 1.04052, 0.94419, -1.64373, 2.15304, -2.15304, 2.39867, -0.245635, -1.73908, 6.96297, -9.12042, 2.69775, -0.754941, -1.90741, -0.0773091}, {-0.61076, -1.54312, 1.54312, 0, 0, -1.60567, -5.82171, 0.596168, -0.596168, -1.32981, 1.74185, -0.136178, 0.754941, 1.90741, 0.0773091, -2.39867, 0.245635, 8.16175, 0.799305, 8.32553, -8.32553, 2.39867, -0.245635, -1.73908, 1.64373, -2.15304, 2.15304, 4.5643, -8.87479, 0.467403}, {-0.61076, -1.54312, 1.54312, 0, 0, -1.60567, 1.94057, -0.198723, 0.198723, 3.98943, -5.22554, 0.408534, 0.754941, 1.90741, 0.0773091, -2.39867, 0.245635, 1.73908, -1.64373, 2.15304, -2.15304, 4.84171, 5.92686, -7.91157, 1.64373, -2.15304, 8.57571, -8.51722, -1.11252, -0.872199}, {-1.12374, 4.33994, -1.71772, 0.422512, 1.58777e-12, -2.01922, 0.258935, 1.44665, 1.44665, -1.05603, 0, 0, -2.6753, 1.78815, 9.86504, -0.842315, -1.78815, 0.707741, -1.81881, -5.78659, -8.28248, 5.06642, 1.78815, -0.707741, 0.783066, -1.96259e-12, 2.4959, 0.985258, -1.78815, -1.78815}, {0.374579, -1.44665, 0.572575, -1.26754, -4.76439e-12, 6.05767, 0.258935, 1.44665, 1.44665, -1.05603, 0, 0, -2.48357, 7.57474, -0.502145, -1.87805, -7.57474, -5.07885, -0.783066, 1.9634e-12, -2.4959, 0.842315, 1.78815, -0.707741, 5.00717, -1.96304e-12, 2.4959, 0.985258, -1.78815, -1.78815}, {0.374579, -1.44665, 0.572575, 0.422512, 1.58777e-12, -2.01922, -0.776805, -4.33994, -4.33994, -1.05603, 0, 0, -0.985258, 1.78815, 1.78815, -2.53236, -1.78815, 8.78463, -2.28138, 5.78659, -4.7862, 0.842315, 1.78815, -0.707741, 0.783066, -1.96259e-12, 2.4959, 5.20936, -1.78815, -1.78815}, {0.374579, -1.44665, 0.572575, 0.422512, 1.58813e-12, -2.01922, 0.258935, 1.44665, 1.44665, 3.16808, 0, 0, -0.985258, 1.78815, 1.78815, -0.842315, -1.78815, 0.707741, -0.783066, 1.9634e-12, -2.4959, -0.656, 7.57474, -2.99804, -0.906981, -8.31556e-12, 10.5728, -0.0504823, -7.57474, -7.57474}, {-4.08784, 4.08784, -5.36656, 0, 3.15147, 0, -3.15147, 0, 0, 1.78885, -1.78885, -1.78885, -1.68428, -14.817, -2.21115, 3.89543, -3.89543, 0, 14.817, 1.68428, -2.21115, -11.0508, 11.0508, 7.15542, -2.21115, -1.68428, 2.21115, 1.68428, 2.21115, 2.21115}, {1.36261, -1.36261, 1.78885, -1.15954e-14, -9.45441, 4.1986e-15, -3.15147, 0, 0, 1.78885, -1.78885, -1.78885, -7.13474, 3.23931, -9.36656, 16.5013, -3.89543, 1.72992e-15, 2.21115, 1.68428, -2.21115, -3.89543, 3.89543, -2.17401e-15, -9.36656, 5.47113, 9.36656, 1.68428, 2.21115, 2.21115}, {1.36261, -1.36261, 1.78885, 0, 3.15147, 0, 9.45441, 0, 0, 1.78885, -1.78885, -1.78885, -1.68428, -2.21115, -2.21115, 3.89543, -16.5013, 0, -3.23931, 7.13474, -9.36656, -3.89543, 3.89543, -4.44089e-16, -2.21115, -1.68428, 2.21115, -5.47113, 9.36656, 9.36656}, {1.36261, -1.36261, 1.78885, 0, 3.15147, 0, -3.15147, 0, 0, -5.36656, 5.36656, 5.36656, -1.68428, -2.21115, -2.21115, 3.89543, -3.89543, 0, 2.21115, 1.68428, -2.21115, -9.34589, 9.34589, -7.15542, -2.21115, -14.2902, 2.21115, 14.2902, 2.21115, 2.21115}, {1.11747, -3.79023, -1.1121, -0.361676, -1.4194, 0.363688, 1.52298, 0.102889, 0.820003, -0.788811, 0.0531033, -1.55439, 2.35418, 5.87043, -2.3625, -1.43545, 1.6273, -1.46312, -7.51399, -2.1004, -4.7518, 4.59069, -1.83971, 7.68068, 1.42208, 1.68884, 1.47179, -0.907478, -0.192817, 0.907751}, {-0.372489, 1.26341, 0.370699, 1.08503, 4.25821, -1.09106, 1.52298, 0.102889, 0.820003, -0.788811, 0.0531033, -1.55439, 2.39743, -4.86083, -2.39055, -7.52735, 1.21575, -4.74314, -1.42208, -1.68884, -1.47179, 1.43545, -1.6273, 1.46312, 4.57732, 1.47643, 7.68935, -0.907478, -0.192817, 0.907751}, {-0.372489, 1.26341, 0.370699, -0.361676, -1.4194, 0.363688, -4.56893, -0.308667, -2.46001, -0.788811, 0.0531033, -1.55439, 0.907478, 0.192817, -0.907751, 0.0112586, 7.30492, -2.91787, 0.0678761, -6.74249, -2.95458, 1.43545, -1.6273, 1.46312, 1.42208, 1.68884, 1.47179, 2.24777, -0.40523, 7.12531}, {-0.372489, 1.26341, 0.370699, -0.361676, -1.4194, 0.363688, 1.52298, 0.102889, 0.820003, 2.36643, -0.15931, 4.66317, 0.907478, 0.192817, -0.907751, -1.43545, 1.6273, -1.46312, -1.42208, -1.68884, -1.47179, 2.9254, -6.68095, -0.0196727, 2.86879, 7.36645, 0.0170383, -6.99938, -0.604373, -2.37226}, {4.44089e-15, -4.05009, 8.88178e-16, -0.572575, -0.625677, 1.44665, 2.01922, -0.706554, 1.38558e-12, -1.44665, -0.0177991, -1.44665, 2.99804, 1.60736, -7.57474, -1.78815, 1.64673, -1.78815, -10.5728, 2.03083, -7.25442e-12, 7.57474, -1.57553, 7.57474, 2.4959, 0.79538, 1.71219e-12, -0.707741, 0.895349, 1.78815}, {-4.44089e-16, 1.35003, -2.22045e-15, 1.71772, 1.87703, -4.33994, 2.01922, -0.706554, 1.3879e-12, -1.44665, -0.0177991, -1.44665, 0.707741, -6.29547, -1.78815, -9.86504, 4.47294, -1.78815, -2.4959, -0.79538, -1.71263e-12, 1.78815, -1.64673, 1.78815, 8.28248, 0.866577, 5.78659, -0.707741, 0.895349, 1.78815}, {8.88178e-16, 1.35003, 6.66134e-16, -0.572575, -0.625677, 1.44665, -6.05767, 2.11966, -4.15591e-12, -1.44665, -0.0177991, -1.44665, 0.707741, -0.895349, -1.78815, 0.502145, 4.14944, -7.57474, -2.4959, -6.1955, -1.71596e-12, 1.78815, -1.64673, 1.78815, 2.4959, 0.79538, 1.7133e-12, 5.07885, 0.966546, 7.57474}, {4.44089e-16, 1.35003, 0, -0.572575, -0.625677, 1.44665, 2.01922, -0.706554, 1.38489e-12, 4.33994, 0.0533972, 4.33994, 0.707741, -0.895349, -1.78815, -1.78815, 1.64673, -1.78815, -2.4959, -0.79538, -1.71174e-12, 1.78815, -7.04685, 1.78815, 4.7862, 3.29809, -5.78659, -8.78463, 3.72156, 1.78815}, {1.70622, 4.31352, 1.19704, 8.51907e-16, 7.76069e-16, 1.08709, -1.45048, 1.43784, -0.312525, 2.01922, -1.65855e-12, -0.375548, 0.702999, 1.77727, -5.19885, 1.7929, -1.77727, -0.95741, 8.29783, -5.75136, 2.12961, -9.86978, 1.77727, 2.4596, -2.4959, 2.04913e-12, -0.879509, -0.702999, -1.77727, 0.850505}, {-0.568738, -1.43784, -0.399013, -2.80914e-15, 1.1641e-15, -3.26126, -1.45048, 1.43784, -0.312525, 2.01922, -1.65923e-12, -0.375548, 2.97795, 7.52863, 0.745546, 7.59483, -7.52863, 0.292691, 2.4959, -2.05105e-12, 0.879509, -1.7929, 1.77727, 0.95741, -10.5728, 8.68834e-12, 0.622683, -0.702999, -1.77727, 0.850505}, {-0.568738, -1.43784, -0.399013, 0, 0, 1.08709, 4.35145, -4.31352, 0.937576, 2.01922, -1.65685e-12, -0.375548, 0.702999, 1.77727, -0.850505, 1.7929, -1.77727, -5.30575, 4.77085, 5.75136, 2.47556, -1.7929, 1.77727, 0.95741, -2.4959, 2.04797e-12, -0.879509, -8.77989, -1.77727, 2.3527}, {-0.568738, -1.43784, -0.399013, 0, 0, 1.08709, -1.45048, 1.43784, -0.312525, -6.05767, 4.97324e-12, 1.12664, 0.702999, 1.77727, -0.850505, 1.7929, -1.77727, -0.95741, 2.4959, -2.04873e-12, 0.879509, 0.482057, 7.52863, 2.55346, -2.4959, 2.04909e-12, -5.22785, 5.09894, -7.52863, 2.10061}, {-2.41029, -2.40672, -2.40819, -0.80343, -0.802238, 0.80294, 1.63555, -1.63555, 0.0313083, -1.63555, 1.63555, -1.63698, 3.21372, 3.20895, -5.19647, -1.02855, 3.01327, -1.03119, -9.55693, 7.57221, -1.15616, 7.57074, -9.55546, 7.57909, 3.01474, -1.03003, 1.03093, 8.88178e-15, 5.77316e-15, 1.98471}, {0.80343, 0.802238, 0.802728, 2.41029, 2.40672, -2.40882, 1.63555, -1.63555, 0.0313083, -1.63555, 1.63555, -1.63698, -3.21372, -3.20895, -5.19563, -7.57074, 9.55546, -1.15642, -3.01474, 1.03003, -1.03093, 1.02855, -3.01327, 1.03119, 9.55693, -7.57221, 7.57883, 8.43769e-15, 7.54952e-15, 1.98471}, {0.80343, 0.802238, 0.802728, -0.80343, -0.802238, 0.80294, -4.90664, 4.90664, -0.0939249, -1.63555, 1.63555, -1.63698, -8.88178e-15, -7.54952e-15, -1.98471, 2.18516, 6.22222, -4.24295, -6.22846, -2.17893, -4.24184, 1.02855, -3.01327, 1.03119, 3.01474, -1.03003, 1.03093, 6.54219, -6.54219, 8.53262}, {0.80343, 0.802238, 0.802728, -0.80343, -0.802238, 0.80294, 1.63555, -1.63555, 0.0313083, 4.90664, -4.90664, 4.91093, -7.54952e-15, -8.43769e-15, -1.98471, -1.02855, 3.01327, -1.03119, -3.01474, 1.03003, -1.03093, -2.18516, -6.22222, -2.17973, 6.22846, 2.17893, -2.18083, -6.54219, 6.54219, 1.85948}, {-5.48006e-11, 5.36656, 0.00342441, 0, 0, -2.34462, 2.34313, 0, 0, -2.34313, 1.78885, 2.34576, -2.25788e-11, 2.21115, 12.278, -2.89626, 0, 2.89811, -12.2688, 2.21115, 0.00141093, 12.2688, -7.15542, -12.2812, 2.89626, -2.21115, -0.00141093, 2.25788e-11, -2.21115, -2.89952}, {1.2113e-11, -1.78885, -0.00114147, 0, 0, 7.03386, 2.34313, -1.04056e-15, -1.3645e-15, -2.34313, 1.78885, 2.34576, -6.34248e-11, 9.36656, 2.90409, -12.2688, 5.44843e-15, 2.89811, -2.89626, 2.21115, 0.00141093, 2.89626, -8.4211e-16, -2.89811, 12.2688, -9.36656, -9.38446, 1.49729e-11, -2.21115, -2.89952}, {1.2109e-11, -1.78885, -0.00114147, 0, 0, -2.34462, -7.02938, 0, 0, -2.34313, 1.78885, 2.34576, -1.49676e-11, 2.21115, 2.89952, -2.89626, 0, 12.2766, -2.89626, 9.36656, 0.00597681, 2.89626, 4.44089e-16, -2.89811, 2.89626, -2.21115, -0.00141093, 9.3725, -9.36656, -12.2826}, {1.21134e-11, -1.78885, -0.00114147, 0, 0, -2.34462, 2.34313, 0, 0, 7.02938, -5.36656, -7.03729, -1.49729e-11, 2.21115, 2.89952, -2.89626, 0, 2.89811, -2.89626, 2.21115, 0.00141093, 2.89626, 7.15542, -2.89354, 2.89626, -2.21115, 9.37707, -9.3725, -2.21115, -2.89952}, {-2.3518, -6.05767, -5.91704e-12, -0.0281756, -0.572575, -1.44665, -1.05603, 0, 0, 0.300269, -1.44665, 1.44665, -0.821464, 0.502145, 7.57474, 1.34015, 0.707741, 1.78815, 4.56043, -2.4959, -2.43827e-12, -2.54122, 5.07885, -7.57474, -0.336326, 2.4959, 2.43827e-12, 0.934166, 1.78815, -1.78815}, {0.783932, 2.01922, 1.9722e-12, 0.0845268, 1.71772, 4.33994, -1.05603, 0, 0, 0.300269, -1.44665, 1.44665, -4.06989, -9.86504, 1.78815, 5.56425, 0.707741, 1.78815, 0.336326, -2.4959, -2.43761e-12, -1.34015, -0.707741, -1.78815, -1.5374, 8.28248, -5.78659, 0.934166, 1.78815, -1.78815}, {0.783932, 2.01922, 1.97353e-12, -0.0281756, -0.572575, -1.44665, 3.16808, 0, 0, 0.300269, -1.44665, 1.44665, -0.934166, -1.78815, 1.78815, 1.45285, 2.99804, 7.57474, -2.7994, -10.5728, -1.03331e-11, -1.34015, -0.707741, -1.78815, -0.336326, 2.4959, 2.43938e-12, -0.266911, 7.57474, -7.57474}, {0.783932, 2.01922, 1.97287e-12, -0.0281756, -0.572575, -1.44665, -1.05603, 0, 0, -0.900808, 4.33994, -4.33994, -0.934166, -1.78815, 1.78815, 1.34015, 0.707741, 1.78815, 0.336326, -2.4959, -2.43872e-12, -4.47587, -8.78463, -1.78815, -0.223624, 4.7862, 5.78659, 5.15827, 1.78815, -1.78815}, {-2.45207, 5.12164, 2.36493, 0.0510009, -0.6557, 1.65667, -1.08957, 0.431245, -1.08957, 0.22121, 1.93167, 0.22121, -1.27735, 5.54352, -7.70003, 1.28374, 0.277442, -0.700975, 4.69474, -0.147797, 6.67946, -2.16858, -8.00412, -0.183865, -0.336471, -1.57718, -2.32119, 1.07335, -2.92072, 1.07335}, {0.817357, -1.70721, -0.788311, -0.153003, 1.9671, -4.97001, -1.08957, 0.431245, -1.08957, 0.22121, 1.93167, 0.22121, -4.34278, 9.74957, 2.07989, 5.64201, -1.44754, 3.6573, 0.336471, 1.57718, 2.32119, -1.28374, -0.277442, 0.700975, -1.22131, -9.30386, -3.20603, 1.07335, -2.92072, 1.07335}, {0.817357, -1.70721, -0.788311, 0.0510009, -0.6557, 1.65667, 3.2687, -1.29374, 3.2687, 0.22121, 1.93167, 0.22121, -1.07335, 2.92072, -1.07335, 1.07974, 2.90024, -7.32765, -2.93296, 8.40603, 5.47443, -1.28374, -0.277442, 0.700975, -0.336471, -1.57718, -2.32119, 0.18851, -10.6474, 0.18851}, {0.817357, -1.70721, -0.788311, 0.0510009, -0.6557, 1.65667, -1.08957, 0.431245, -1.08957, -0.66363, -5.795, -0.66363, -1.07335, 2.92072, -1.07335, 1.28374, 0.277442, -0.700975, 0.336471, 1.57718, 2.32119, -4.55317, 6.55141, 3.85422, -0.540475, 1.04562, -8.94786, 5.43162, -4.6457, 5.43162}, {-4.62937, -1.83228, -4.62937, 0.198723, -1.94057, 2.54185, 0, 0, -2.34313, -1.74185, 1.32981, -1.74185, -2.94793, 9.40601, -15.2167, -0.245635, 2.39867, -0.245635, -1.90741, -0.754941, 10.3614, 7.21302, -7.71791, 7.21302, 1.90741, 0.754941, -0.988857, 2.15304, -1.64373, 5.0493}, {1.54312, 0.61076, 1.54312, -0.596168, 5.82171, -7.62554, 0, 0, -2.34313, -1.74185, 1.32981, -1.74185, -8.32553, -0.799305, -11.2218, -0.245635, 2.39867, 9.12687, -1.90741, -0.754941, 0.988857, 0.245635, -2.39867, 0.245635, 8.87479, -4.5643, 5.97853, 2.15304, -1.64373, 5.0493}, {1.54312, 0.61076, 1.54312, 0.198723, -1.94057, 2.54185, 0, 0, 7.02938, -1.74185, 1.32981, -1.74185, -2.15304, 1.64373, -5.0493, -1.04052, 10.1609, -10.413, -8.0799, -3.19798, -5.18364, 0.245635, -2.39867, 0.245635, 1.90741, 0.754941, -0.988857, 9.12042, -6.96297, 12.0167}, {1.54312, 0.61076, 1.54312, 0.198723, -1.94057, 2.54185, 0, 0, -2.34313, 5.22554, -3.98943, 5.22554, -2.15304, 1.64373, -5.0493, -0.245635, 2.39867, -0.245635, -1.90741, -0.754941, 0.988857, -5.92686, -4.84171, -5.92686, 1.11252, 8.51722, -11.1562, 2.15304, -1.64373, 14.4218}, {3.9353, 3.03575, -0.94776, 1.31177, -0.633999, -0.948528, 0, 0.442478, 1.49023, 0, 1.20344, -0.85762, -5.24706, 4.57046, 4.57606, -1.62143, 0.236733, -0.669578, 1.62143, -1.06605, -8.19343, 1.62143, -5.05048, 4.10006, -1.62143, -0.703864, 2.23252, 0, -2.03446, -0.781946}, {-1.31177, -1.01192, 0.31592, -3.9353, 1.902, 2.84558, 0, 0.442478, 1.49023, 0, 1.20344, -0.85762, 5.24706, 6.08213, -0.481733, -1.62143, -1.53318, -6.63049, 1.62143, 0.703864, -2.23252, 1.62143, -0.236733, 0.669578, -1.62143, -5.51761, 5.663, 0, -2.03446, -0.781946}, {-1.31177, -1.01192, 0.31592, 1.31177, -0.633999, -0.948528, 0, -1.32743, -4.47068, 0, 1.20344, -0.85762, 3.2565e-16, 2.03446, 0.781946, -6.86849, 2.77273, 3.12453, 6.86849, 4.75153, -3.4962, 1.62143, -0.236733, 0.669578, -1.62143, -0.703864, 2.23252, 0, -6.84821, 2.64853}, {-1.31177, -1.01192, 0.31592, 1.31177, -0.633999, -0.948528, 0, 0.442478, 1.49023, 0, -3.61031, 2.57286, 3.2565e-16, 2.03446, 0.781946, -1.62143, 0.236733, -0.669578, 1.62143, 0.703864, -2.23252, 6.86849, 3.81093, -0.594102, -6.86849, 1.83213, 6.02663, 0, -3.80438, -6.74286}, {8.88178e-16, -9.65337e-16, 5.41667, 1.44665, 1.44665, 1.40715, 0.572575, -1.44665, 1.02216, -2.01922, -1.9703e-12, -0.623753, -7.57474, -7.57474, -5.13614, -2.4959, -2.43516e-12, -3.00279, -2.99804, 7.57474, -3.1203, 10.5728, 1.03164e-11, 5.4978, 0.707741, -1.78815, -0.968332, 1.78815, 1.78815, -0.492457}, {-4.44089e-16, -2.99727e-18, -1.80556, -4.33994, -4.33994, -4.22145, 0.572575, -1.44665, 1.02216, -2.01922, -1.97286e-12, -0.623753, -1.78815, -1.78815, 7.71468, -4.7862, 5.78659, -7.09142, -0.707741, 1.78815, 0.968332, 2.4959, 2.43872e-12, 3.00279, 8.78463, -1.78815, 1.52668, 1.78815, 1.78815, -0.492457}, {0, 1.65544e-16, -1.80556, 1.44665, 1.44665, 1.40715, -1.71772, 4.33994, -3.06648, -2.01922, -1.97103e-12, -0.623753, -1.78815, -1.78815, 0.492457, -8.28248, -5.78659, -8.63139, -0.707741, 1.78815, 8.19056, 2.4959, 2.43605e-12, 3.00279, 0.707741, -1.78815, -0.968332, 9.86504, 1.78815, 2.00255}, {0, 7.512e-17, -1.80556, 1.44665, 1.44665, 1.40715, 0.572575, -1.44665, 1.02216, 6.05767, 5.91749e-12, 1.87126, -1.78815, -1.78815, 0.492457, -2.4959, -2.43805e-12, -3.00279, -0.707741, 1.78815, 0.968332, 2.4959, 2.43775e-12, 10.225, -5.07885, -7.57474, -6.59693, -0.502145, 7.57474, -4.58109}, {4.36745, -2.27082, -4.32425, 1.62046e-12, 0.53318, -2.01922, 0, -1.33263, 0, 1.45582, 0.0425099, 0.577805, 1.79949, -3.72739, 8.79109, -2.00299e-12, 0.988174, 2.4959, 1.79949, 6.04211, -1.78169, -5.82327, -1.15821, -4.80711, -1.79949, -0.711591, 1.78169, -1.79949, 1.59467, -0.714206}, {-1.45582, 0.756939, 1.44142, -4.85808e-12, -1.59954, 6.05767, 0, -1.33263, 0, 1.45582, 0.0425099, 0.577805, 7.62276, -4.62243, -5.05146, -2.00164e-12, 6.31869, 2.4959, 1.79949, 0.711591, -1.78169, 2.002e-12, -0.988174, -2.4959, -7.62276, -0.881631, -0.529529, -1.79949, 1.59467, -0.714206}, {-1.45582, 0.756939, 1.44142, 1.61717e-12, 0.53318, -2.01922, 0, 3.99789, 0, 1.45582, 0.0425099, 0.577805, 1.79949, -1.59467, 0.714206, -8.46762e-12, -1.14454, 10.5728, 7.62276, -2.31617, -7.54736, 1.9993e-12, -0.988174, -2.4959, -1.79949, -0.711591, 1.78169, -7.62276, 1.42464, -3.02542}, {-1.45582, 0.756939, 1.44142, 1.61827e-12, 0.53318, -2.01922, 0, -1.33263, 0, -4.36745, -0.12753, -1.73341, 1.79949, -1.59467, 0.714206, -2.00029e-12, 0.988174, 2.4959, 1.79949, 0.711591, -1.78169, 5.82327, -4.01593, -8.26156, -1.79949, -2.84431, 9.85858, -1.79949, 6.92519, -0.714206}, {-3.26389, 1.55026, 1.55311, -0.994319, -0.995188, -0.994319, -0.203724, 1.40177, -0.203724, 0.110078, 0.110174, 1.71575, 3.86152, 5.84961, 5.84624, 1.48086, -0.502558, 1.48086, -0.278087, -6.701, 1.70663, -1.92117, 0.0618612, -8.34385, 1.09298, 1.09394, -0.891733, 0.115752, -1.86886, -1.86896}, {1.08796, -0.516753, -0.517703, 2.98296, 2.98556, 2.98296, -0.203724, 1.40177, -0.203724, 0.110078, 0.110174, 1.71575, -4.46761, 3.93587, 3.93978, 2.29576, -6.10962, 2.29576, -1.09298, -1.09394, 0.891733, -1.48086, 0.502558, -1.48086, 0.65267, 0.65324, -7.75472, 0.115752, -1.86886, -1.86896}, {1.08796, -0.516753, -0.517703, -0.994319, -0.995188, -0.994319, 0.611171, -4.2053, 0.611171, 0.110078, 0.110174, 1.71575, -0.115752, 1.86886, 1.86896, 5.45814, 3.47819, 5.45814, -5.44484, 0.973073, 2.96255, -1.48086, 0.502558, -1.48086, 1.09298, 1.09394, -0.891733, -0.32456, -2.30956, -8.73195}, {1.08796, -0.516753, -0.517703, -0.994319, -0.995188, -0.994319, -0.203724, 1.40177, -0.203724, -0.330234, -0.330523, -5.14724, -0.115752, 1.86886, 1.86896, 1.48086, -0.502558, 1.48086, -1.09298, -1.09394, 0.891733, -5.83272, 2.56957, 0.589952, 5.07026, 5.07469, 3.08554, 0.930647, -7.47593, -1.05407}, {5.37021, -5.36225, 5.37163, 3.64724, -0.373167, 0.376681, -1.85717, -1.41425, -0.191806, 0, 0, 1.60567, -16.8846, -0.25544, 0.240906, -2.21265, 2.20937, -0.228519, 11.9369, 5.19574, 3.21754, 2.21265, -2.20937, -6.19415, -4.50824, 0.46126, -2.45032, 2.29559, 1.74811, -1.74763}, {-1.79007, 1.78742, -1.79054, -10.9417, 1.1195, -1.13004, -1.85717, -1.41425, -0.191806, 7.40292e-16, 5.63738e-16, 1.60567, 4.86469, -8.89778, 8.9098, 5.21604, 7.86637, 0.538704, 4.50824, -0.46126, 2.45032, 2.21265, -2.20937, 0.228519, -4.50824, 0.46126, -8.87299, 2.29559, 1.74811, -1.74763}, {-1.79007, 1.78742, -1.79054, 3.64724, -0.373167, 0.376681, 5.57152, 4.24275, 0.575417, 0, 0, 1.60567, -2.29559, -1.74811, 1.74763, -16.8016, 3.70204, -1.73524, 11.6685, -7.61093, 9.61249, 2.21265, -2.20937, 0.228519, -4.50824, 0.46126, -2.45032, 2.29559, 1.74811, -8.1703}, {-1.79007, 1.78742, -1.79054, 3.64724, -0.373167, 0.376681, -1.85717, -1.41425, -0.191806, 0, 0, -4.817, -2.29559, -1.74811, 1.74763, -2.21265, 2.20937, -0.228519, 4.50824, -0.46126, 2.45032, 9.37293, -9.35904, 7.39069, -19.0972, 1.95393, -3.95704, 9.72428, 7.40511, -0.980408}, {-3.03198, 1.78237, 1.1993, 0.5032, 0.50364, 1.82018, -0.838801, -0.839534, 0.331788, -0.67506, 0.930018, -1.7522, -3.88404, -1.90272, -9.03645, 0.414826, 0.415188, -2.65998, 3.14277, 5.13024, -1.24312, 2.28541, -4.13526, 9.66879, 0.212431, -1.7721, -0.084027, 1.87124, -0.111844, 1.75573}, {1.01066, -0.594124, -0.399767, -1.5096, -1.51092, -5.46054, -0.838801, -0.839534, 0.331788, -0.67506, 0.930018, -1.7522, -5.91388, 2.48834, -0.156659, 3.77003, 3.77333, -3.98713, -0.212431, 1.7721, 0.084027, -0.414826, -0.415188, 2.65998, 2.91267, -5.49217, 6.92478, 1.87124, -0.111844, 1.75573}, {1.01066, -0.594124, -0.399767, 0.5032, 0.50364, 1.82018, 2.5164, 2.5186, -0.995364, -0.67506, 0.930018, -1.7522, -1.87124, 0.111844, -1.75573, -1.59797, -1.59937, -9.9407, -4.25508, 4.14859, 1.6831, -0.414826, -0.415188, 2.65998, 0.212431, -1.7721, -0.084027, 4.57148, -3.83192, 8.76454}, {1.01066, -0.594124, -0.399767, 0.5032, 0.50364, 1.82018, -0.838801, -0.839534, 0.331788, 2.02518, -2.79005, 5.25661, -1.87124, 0.111844, -1.75573, 0.414826, 0.415188, -2.65998, -0.212431, 1.7721, 0.084027, -4.45747, 1.96131, 4.25905, -1.80037, -3.78666, -7.36475, 5.22644, 3.24629, 0.428576}, {-4.62937, 1.83228, -4.62937, 0.198723, 1.94057, 2.54185, -1.74185, -1.32981, -1.74185, 0, 0, -2.34313, -2.94793, -9.40601, -15.2167, 1.90741, -0.754941, -0.988857, 7.21302, 7.71791, 7.21302, -1.90741, 0.754941, 10.3614, -0.245635, -2.39867, -0.245635, 2.15304, 1.64373, 5.0493}, {1.54312, -0.61076, 1.54312, -0.596168, -5.82171, -7.62554, -1.74185, -1.32981, -1.74185, 0, 0, -2.34313, -8.32553, 0.799305, -11.2218, 8.87479, 4.5643, 5.97853, 0.245635, 2.39867, 0.245635, -1.90741, 0.754941, 0.988857, -0.245635, -2.39867, 9.12687, 2.15304, 1.64373, 5.0493}, {1.54312, -0.61076, 1.54312, 0.198723, 1.94057, 2.54185, 5.22554, 3.98943, 5.22554, 0, 0, -2.34313, -2.15304, -1.64373, -5.0493, 1.11252, -8.51722, -11.1562, -5.92686, 4.84171, -5.92686, -1.90741, 0.754941, 0.988857, -0.245635, -2.39867, -0.245635, 2.15304, 1.64373, 14.4218}, {1.54312, -0.61076, 1.54312, 0.198723, 1.94057, 2.54185, -1.74185, -1.32981, -1.74185, 0, 0, 7.02938, -2.15304, -1.64373, -5.0493, 1.90741, -0.754941, -0.988857, 0.245635, 2.39867, 0.245635, -8.0799, 3.19798, -5.18364, -1.04052, -10.1609, -10.413, 9.12042, 6.96297, 12.0167}, {-4.33994, 0.458772, -1.71772, 0, 1.39654, 0, -1.44665, -0.27723, 1.44665, 1.76979e-12, -0.966385, -2.01922, -1.78815, -7.12335, -0.707741, 1.78815, -1.38354, -1.78815, 5.78659, 1.64062, -8.28248, -1.78815, 5.24908, 9.86504, -2.18758e-12, -0.531699, 2.4959, 1.78815, 1.53719, 0.707741}, {1.44665, -0.152924, 0.572575, 1.50464e-15, -4.18962, 4.79586e-15, -1.44665, -0.27723, 1.44665, 1.77122e-12, -0.966385, -2.01922, -7.57474, -0.925496, -2.99804, 7.57474, -0.274623, -7.57474, 2.18837e-12, 0.531699, -2.4959, -1.78815, 1.38354, 1.78815, -9.27361e-12, 3.33384, 10.5728, 1.78815, 1.53719, 0.707741}, {1.44665, -0.152924, 0.572575, 2.45632e-27, 1.39654, -2.80022e-15, 4.33994, 0.831689, -4.33994, 1.77124e-12, -0.966385, -2.01922, -1.78815, -1.53719, -0.707741, 1.78815, -6.9697, -1.78815, -5.78659, 1.1434, -4.7862, -1.78815, 1.38354, 1.78815, -2.18937e-12, -0.531699, 2.4959, 1.78815, 5.40273, 8.78463}, {1.44665, -0.152924, 0.572575, 0, 1.39654, 0, -1.44665, -0.27723, 1.44665, -5.31262e-12, 2.89915, 6.05767, -1.78815, -1.53719, -0.707741, 1.78815, -1.38354, -1.78815, 2.18856e-12, 0.531699, -2.4959, -7.57474, 1.99524, -0.502145, -2.18892e-12, -6.11785, 2.4959, 7.57474, 2.64611, -5.07885}, {3.99411, 0.408657, -5.22602, 1.94285, 0.198782, -0.198956, -0.611477, 1.5417, -1.54305, 0, -1.60427, 0, -8.52722, -0.872462, -1.11149, -1.64567, -2.15136, 2.15324, 4.8474, -7.90408, 5.92628, 1.64567, 8.56842, -2.15324, -2.40149, 1.73727, 0.245923, 0.755828, 0.0773324, 1.90731}, {-1.33137, -0.136219, 1.74201, -5.82855, -0.596347, 0.596868, -0.611477, 1.5417, -1.54305, 0, -1.60427, 0, 4.56966, 0.467544, -8.87534, 0.800244, -8.31817, 8.32544, 2.40149, -1.73727, -0.245923, 1.64567, 2.15136, -2.15324, -2.40149, 8.15434, 0.245923, 0.755828, 0.0773324, 1.90731}, {-1.33137, -0.136219, 1.74201, 1.94285, 0.198782, -0.198956, 1.83443, -4.62511, 4.62915, 0, -1.60427, 0, -0.755828, -0.0773324, -1.90731, -9.41706, -2.94649, 2.94906, 7.72698, -1.1924, -7.21395, 1.64567, 2.15136, -2.15324, -2.40149, 1.73727, 0.245923, 0.755828, 6.4944, 1.90731}, {-1.33137, -0.136219, 1.74201, 1.94285, 0.198782, -0.198956, -0.611477, 1.5417, -1.54305, 0, 4.8128, 0, -0.755828, -0.0773324, -1.90731, -1.64567, -2.15136, 2.15324, 2.40149, -1.73727, -0.245923, 6.97115, 2.69623, -9.12126, -10.1729, 0.942144, 1.04175, 3.20174, -6.08948, 8.07952}, {1.7133, -2.45292, -4.3293, -1.44292, 0.0459567, -1.45561, 0, -1.33263, 0, 2.01402, 0.469033, 0.0125109, 8.26116, -1.25129, 5.83791, 1.78355, 1.59041, 1.79923, 0.70592, 5.96708, -1.78377, -9.83965, -3.46655, -1.84928, -0.70592, -0.636563, 1.78377, -2.48947, 1.06746, -0.0154644}, {-0.571101, 0.817639, 1.4431, 4.32877, -0.13787, 4.36683, 0, -1.33263, 0, 2.01402, 0.469033, 0.0125109, 4.77387, -4.33802, -5.75693, 1.78355, 6.92093, 1.79923, 0.70592, 0.636563, -1.78377, -1.78355, -1.59041, -1.79923, -8.76202, -2.5127, 1.73373, -2.48947, 1.06746, -0.0154644}, {-0.571101, 0.817639, 1.4431, -1.44292, 0.0459567, -1.45561, 0, 3.99789, 0, 2.01402, 0.469033, 0.0125109, 2.48947, -1.06746, 0.0154644, 7.55524, 1.40659, 7.62167, 2.99032, -2.63399, -7.55617, -1.78355, -1.59041, -1.79923, -0.70592, -0.636563, 1.78377, -10.5456, -0.808671, -0.0655081}, {-0.571101, 0.817639, 1.4431, -1.44292, 0.0459567, -1.45561, 0, -1.33263, 0, -6.04207, -1.4071, -0.0375328, 2.48947, -1.06746, 0.0154644, 1.78355, 1.59041, 1.79923, 0.70592, 0.636563, -1.78377, 0.500853, -4.86097, -7.57163, 5.06577, -0.82039, 7.60621, -2.48947, 6.39798, -0.0154644}, {7.61576, -5.82053, 0.598329, -1.54462, -0.610276, -1.54223, 1.74008, -1.3299, 1.74168, 2.34313, 0, 0, 11.2256, 0.797254, 8.32176, -0.241602, 2.39819, -0.246525, -5.97333, 4.56526, -8.87301, -9.1309, -2.39819, 0.246525, -0.987004, 0.754342, 1.9063, -5.04712, 1.64385, -2.15283}, {-2.53859, 1.94018, -0.199443, 4.63387, 1.83083, 4.6267, 1.74008, -1.3299, 1.74168, 2.34313, 7.73589e-16, -1.01311e-15, 15.2015, -9.40456, 2.9506, -7.20193, 7.7178, -7.21323, 0.987004, -0.754342, -1.9063, 0.241602, -2.39819, 0.246525, -10.3595, 0.754342, 1.9063, -5.04712, 1.64385, -2.15283}, {-2.53859, 1.94018, -0.199443, -1.54462, -0.610276, -1.54223, -5.22025, 3.9897, -5.22503, 2.34313, 0, 0, 5.04712, -1.64385, 2.15283, 5.93689, 4.83929, 5.92241, 11.1413, -8.51505, -1.10853, 0.241602, -2.39819, 0.246525, -0.987004, 0.754342, 1.9063, -14.4196, 1.64385, -2.15283}, {-2.53859, 1.94018, -0.199443, -1.54462, -0.610276, -1.54223, 1.74008, -1.3299, 1.74168, -7.02938, 0, 0, 5.04712, -1.64385, 2.15283, -0.241602, 2.39819, -0.246525, 0.987004, -0.754342, -1.9063, 10.3959, -10.1589, 1.0443, 5.19149, 3.19544, 8.07523, -12.0075, 6.96345, -9.11953}, {2.66454e-15, -8.88178e-15, -7.0244, 0.00253498, 1.78885, -0.00126659, -2.34566, -1.78885, -2.3402, 2.34313, 0, 0, -0.0132733, -9.36656, -2.88758, 2.89626, 3.10862e-15, 2.89421, 12.282, 9.36656, 9.35923, -12.2688, -3.10862e-15, -2.89421, -2.8994, -2.21115, 0.00156559, 0.00313341, 2.21115, 2.89265}, {-4.44089e-16, -2.81691e-15, 2.34147, -0.00760494, -5.36656, 0.00379978, -2.34566, -1.78885, -2.3402, 2.34313, 1.04056e-15, 1.36127e-15, -0.00313341, -2.21115, -12.2585, 12.2789, 7.15542, 12.255, 2.8994, 2.21115, -0.00156559, -2.89626, 2.22045e-15, -2.89421, -12.2719, -2.21115, 0.00156559, 0.00313341, 2.21115, 2.89265}, {-1.33227e-15, -1.9984e-15, 2.34147, 0.00253498, 1.78885, -0.00126659, 7.03698, 5.36656, 7.0206, 2.34313, 0, 0, -0.00313341, -2.21115, -2.89265, 2.88612, -7.15542, 2.89928, 2.8994, 2.21115, -9.36743, -2.89626, 2.66454e-15, -2.89421, -2.8994, -2.21115, 0.00156559, -9.36937, 2.21115, 2.89265}, {4.44089e-16, 0, 2.34147, 0.00253498, 1.78885, -0.00126659, -2.34566, -1.78885, -2.3402, -7.02938, 0, 0, -0.00313341, -2.21115, -2.89265, 2.89626, 0, 2.89421, 2.8994, 2.21115, -0.00156559, -2.89626, 0, -12.2601, -2.90954, -9.36656, 0.00663197, 9.38578, 9.36656, 12.2534}, {3.98943, -5.22554, 5.22554, -0.61076, -1.54312, 1.54312, 0, 2.34313, 0, 1.94057, -2.54185, 0.198723, 4.84171, 5.92686, -5.92686, 0.754941, -0.988857, -1.90741, 1.64373, -14.4218, 2.15304, -8.51722, 11.1562, 1.11252, -1.64373, 5.0493, -2.15304, -2.39867, 0.245635, -0.245635}, {-1.32981, 1.74185, -1.74185, 1.83228, 4.62937, -4.62937, -1.12881e-15, 2.34313, -1.15595e-16, 1.94057, -2.54185, 0.198723, 7.71791, -7.21302, 7.21302, 0.754941, -10.3614, -1.90741, 1.64373, -5.0493, 2.15304, -0.754941, 0.988857, 1.90741, -9.40601, 15.2167, -2.94793, -2.39867, 0.245635, -0.245635}, {-1.32981, 1.74185, -1.74185, -0.61076, -1.54312, 1.54312, 0, -7.02938, 0, 1.94057, -2.54185, 0.198723, 2.39867, -0.245635, 0.245635, 3.19798, 5.18364, -8.0799, 6.96297, -12.0167, 9.12042, -0.754941, 0.988857, 1.90741, -1.64373, 5.0493, -2.15304, -10.1609, 10.413, -1.04052}, {-1.32981, 1.74185, -1.74185, -0.61076, -1.54312, 1.54312, 0, 2.34313, 0, -5.82171, 7.62554, -0.596168, 2.39867, -0.245635, 0.245635, 0.754941, -0.988857, -1.90741, 1.64373, -5.0493, 2.15304, 4.5643, -5.97853, 8.87479, 0.799305, 11.2218, -8.32553, -2.39867, -9.12687, -0.245635}, {9.45441, 0, -1.77636e-15, 0, 0, 3.15147, 1.78885, 1.78885, -1.78885, 1.36261, -1.78885, -1.36261, 3.89543, 0, -16.5013, -2.21115, -2.21115, -1.68428, -5.47113, -9.36656, 9.36656, -3.23931, 9.36656, 7.13474, -1.68428, 2.21115, -2.21115, -3.89543, 0, 3.89543}, {-3.15147, 2.22045e-16, 2.22045e-16, 1.00042e-15, 8.3972e-15, -9.45441, 1.78885, 1.78885, -1.78885, 1.36261, -1.78885, -1.36261, 16.5013, 3.55271e-15, -3.89543, -9.36656, -9.36656, 5.47113, 1.68428, -2.21115, 2.21115, 2.21115, 2.21115, 1.68428, -7.13474, 9.36656, 3.23931, -3.89543, -3.10862e-15, 3.89543}, {-3.15147, 4.44089e-16, 4.44089e-16, 0, 0, 3.15147, -5.36656, -5.36656, 5.36656, 1.36261, -1.78885, -1.36261, 3.89543, -4.44089e-16, -3.89543, -2.21115, -2.21115, -14.2902, 14.2902, -2.21115, 2.21115, 2.21115, 2.21115, 1.68428, -1.68428, 2.21115, -2.21115, -9.34589, 7.15542, 9.34589}, {-3.15147, 0, 2.22045e-16, 0, 0, 3.15147, 1.78885, 1.78885, -1.78885, -4.08784, 5.36656, 4.08784, 3.89543, 0, -3.89543, -2.21115, -2.21115, -1.68428, 1.68428, -2.21115, 2.21115, 14.817, 2.21115, 1.68428, -1.68428, 2.21115, -14.817, -11.0508, -7.15542, 11.0508}, {0.908154, -0.908154, 3.90885, -0.830764, 0.830764, 0.830764, 1.29079, 0.314875, 0.314875, -0.157311, -1.44836, 0.157311, 4.72412, -4.72412, -2.7394, -0.568628, -1.41609, -1.41609, -6.3845, -2.02289, -0.0381727, 1.19787, 7.20951, 0.786843, 1.22133, 0.763387, -1.22133, -1.40106, 1.40106, -0.583654}, {-0.302718, 0.302718, -1.30295, 2.49229, -2.49229, -2.49229, 1.29079, 0.314875, 0.314875, -0.157311, -1.44836, 0.157311, 2.61193, -2.61193, 5.79545, -5.7318, -2.67559, -2.67559, -1.22133, -0.763387, 1.22133, 0.568628, 1.41609, 1.41609, 1.85057, 6.55681, -1.85057, -1.40106, 1.40106, -0.583654}, {-0.302718, 0.302718, -1.30295, -0.830764, 0.830764, 0.830764, -3.87238, -0.944625, -0.944625, -0.157311, -1.44836, 0.157311, 1.40106, -1.40106, 0.583654, 2.75443, -4.73914, -4.73914, -0.0104551, -1.97426, 6.43313, 0.568628, 1.41609, 1.41609, 1.22133, 0.763387, -1.22133, -0.771816, 7.19449, -1.2129}, {-0.302718, 0.302718, -1.30295, -0.830764, 0.830764, 0.830764, 1.29079, 0.314875, 0.314875, 0.471934, 4.34507, -0.471934, 1.40106, -1.40106, 0.583654, -0.568628, -1.41609, -1.41609, -1.22133, -0.763387, 1.22133, 1.7795, 0.205215, 6.62789, 4.54438, -2.55967, -4.54438, -6.56423, 0.14156, -1.84315}, {-2.30283, -5.06257, 2.51418, -1.077, -0.426271, -1.077, 0.0318939, 0.648138, 1.63756, 0.277498, -1.90939, 0.277498, 4.69044, 0.146092, 6.67515, 1.29182, -0.274242, -0.692891, -1.11582, -5.47959, -7.53849, -2.40182, 7.9118, -0.417103, 0.988241, 2.88704, 0.988241, -0.38243, 1.55899, -2.36714}, {0.767609, 1.68752, -0.838059, 3.23101, 1.27881, 3.23101, 0.0318939, 0.648138, 1.63756, 0.277498, -1.90939, 0.277498, -2.68801, -8.30908, 5.71938, 1.16425, -2.86679, -7.24314, -0.988241, -2.88704, -0.988241, -1.29182, 0.274242, 0.692891, -0.121753, 10.5246, -0.121753, -0.38243, 1.55899, -2.36714}, {0.767609, 1.68752, -0.838059, -1.077, -0.426271, -1.077, -0.0956818, -1.94441, -4.91269, 0.277498, -1.90939, 0.277498, 0.38243, -1.55899, 2.36714, 5.59983, 1.43084, 3.61512, -4.05868, -9.63713, 2.36399, -1.29182, 0.274242, 0.692891, 0.988241, 2.88704, 0.988241, -1.49242, 9.19655, -3.47714}, {0.767609, 1.68752, -0.838059, -1.077, -0.426271, -1.077, 0.0318939, 0.648138, 1.63756, -0.832495, 5.72817, -0.832495, 0.38243, -1.55899, 2.36714, 1.29182, -0.274242, -0.692891, -0.988241, -2.88704, -0.988241, -4.36226, -6.47585, 4.04513, 5.29625, 4.59212, 5.29625, -0.510006, -1.03356, -8.91739}, {-4.7272, -4.7272, -4.7272, -1.57573, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, 6.30294, -10.1984, 6.30294, 3.89543, 1.32738e-12, -1.3276e-12, 6.30294, 6.30294, -10.1984, -10.1984, 6.30294, 6.30294, 2.96874e-13, 3.04201e-13, 3.89543, 1.65046e-12, 3.89543, 1.64713e-12}, {1.57573, 1.57573, 1.57573, 4.7272, -4.7272, 4.7272, -1.57573, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, -6.30294, -10.1984, -6.30294, 10.1984, 6.30294, -6.30294, -2.96874e-13, -3.01537e-13, -3.89543, -3.89543, -1.32644e-12, 1.32544e-12, -6.30294, 6.30294, 10.1984, 1.64713e-12, 3.89543, 1.65001e-12}, {1.57573, 1.57573, 1.57573, -1.57573, 1.57573, -1.57573, 4.7272, 4.7272, -4.7272, 1.57573, -1.57573, -1.57573, -1.64602e-12, -3.89543, -1.64313e-12, 10.1984, -6.30294, 6.30294, -6.30294, -6.30294, -10.1984, -3.89543, -1.32733e-12, 1.32721e-12, 2.99982e-13, 3.06422e-13, 3.89543, -6.30294, 10.1984, 6.30294}, {1.57573, 1.57573, 1.57573, -1.57573, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -4.7272, 4.7272, 4.7272, -1.64313e-12, -3.89543, -1.64913e-12, 3.89543, 1.32672e-12, -1.32694e-12, -3.00648e-13, -2.97318e-13, -3.89543, -10.1984, -6.30294, -6.30294, 6.30294, -6.30294, 10.1984, 6.30294, 10.1984, -6.30294}, {-1.56775, 5.44381, 3.24545, 1.20899, 0.479095, 1.20825, -1.50445, -0.59618, 0.101437, -0.227124, 1.93169, -0.227868, -6.97629, -0.265605, -4.98928, 0.365209, 0.144724, -1.61886, 7.23144, 5.36461, 0.80607, 0.543287, -7.87147, 2.53034, -1.21365, -2.97989, -1.21182, 2.14034, -1.65078, 0.156278}, {0.522584, -1.8146, -1.08182, -3.62696, -1.43729, -3.62475, -1.50445, -0.59618, 0.101437, -0.227124, 1.93169, -0.227868, -4.23068, 8.90919, 4.171, 6.383, 2.52944, -2.02461, 1.21365, 2.97989, 1.21182, -0.365209, -0.144724, 1.61886, -0.305154, -10.7066, -0.300344, 2.14034, -1.65078, 0.156278}, {0.522584, -1.8146, -1.08182, 1.20899, 0.479095, 1.20825, 4.51334, 1.78854, -0.304311, -0.227124, 1.93169, -0.227868, -2.14034, 1.65078, -0.156278, -4.47074, -1.77166, -6.45186, -0.876686, 10.2383, 5.53909, -0.365209, -0.144724, 1.61886, -1.21365, -2.97989, -1.21182, 3.04884, -9.37752, 1.06775}, {0.522584, -1.8146, -1.08182, 1.20899, 0.479095, 1.20825, -1.50445, -0.59618, 0.101437, 0.681372, -5.79506, 0.683605, -2.14034, 1.65078, -0.156278, 0.365209, 0.144724, -1.61886, 1.21365, 2.97989, 1.21182, -2.45554, 7.11368, 5.94614, -6.0496, -4.89627, -6.04482, 8.15813, 0.733943, -0.24947}, {0.31567, 3.31084, -3.29586, 0.708828, -0.490803, -1.01172, 0.848249, 1.25814, 0.0940198, -1.45185, 0.336273, -0.18092, -3.58141, 3.93402, 3.93947, -1.92465, -0.948485, 1.13434, -4.31143, -5.22358, -1.85026, 7.73207, -0.396608, -0.41066, 0.91843, 0.191009, 1.47418, 0.746096, -1.97081, 0.107415}, {-0.105223, -1.10361, 1.09862, -2.12648, 1.47241, 3.03516, 0.848249, 1.25814, 0.0940198, -1.45185, 0.336273, -0.18092, -0.325203, 6.38527, -4.5019, -5.31765, -5.98106, 0.758261, -0.91843, -0.191009, -1.47418, 1.92465, 0.948485, -1.13434, 6.72585, -1.15408, 2.19787, 0.746096, -1.97081, 0.107415}, {-0.105223, -1.10361, 1.09862, 0.708828, -0.490803, -1.01172, -2.54475, -3.77443, -0.282059, -1.45185, 0.336273, -0.18092, -0.746096, 1.97081, -0.107415, -4.75996, 1.01473, 5.18122, -0.497537, 4.22345, -5.86867, 1.92465, 0.948485, -1.13434, 0.91843, 0.191009, 1.47418, 6.55351, -3.3159, 0.831095}, {-0.105223, -1.10361, 1.09862, 0.708828, -0.490803, -1.01172, 0.848249, 1.25814, 0.0940198, 4.35556, -1.00882, 0.54276, -0.746096, 1.97081, -0.107415, -1.92465, -0.948485, 1.13434, -0.91843, -0.191009, -1.47418, 2.34555, 5.36294, -5.52882, -1.91688, 2.15422, 5.52107, -2.6469, -7.00338, -0.268664}, {2.3172, 0.917451, -2.318, 1.00416, 1.78176, 0.599951, -0.431249, 0.464989, -1.17482, 0.199489, -1.94094, -0.197793, -4.30311, -8.95143, -4.09645, -0.708156, -2.77714, 0.710583, 3.21279, -2.0567, 5.1964, -0.0898, 10.5409, 0.0805874, -1.48779, 0.196748, -0.497096, 0.286472, 1.82437, 1.69665}, {-0.772399, -0.305817, 0.772666, -3.01248, -5.34529, -1.79985, -0.431249, 0.464989, -1.17482, 0.199489, -1.94094, -0.197793, 2.80312, -0.601104, -4.78731, 1.01684, -4.6371, 5.40988, 1.48779, -0.196748, 0.497096, 0.708156, 2.77714, -0.710583, -2.28575, 7.96049, 0.294074, 0.286472, 1.82437, 1.69665}, {-0.772399, -0.305817, 0.772666, 1.00416, 1.78176, 0.599951, 1.29375, -1.39497, 3.52447, 0.199489, -1.94094, -0.197793, -0.286472, -1.82437, -1.69665, -4.72479, -9.9042, -1.68922, 4.57739, 1.02652, -2.59357, 0.708156, 2.77714, -0.710583, -1.48779, 0.196748, -0.497096, -0.511484, 9.58812, 2.48782}, {-0.772399, -0.305817, 0.772666, 1.00416, 1.78176, 0.599951, -0.431249, 0.464989, -1.17482, -0.598467, 5.82281, 0.593378, -0.286472, -1.82437, -1.69665, -0.708156, -2.77714, 0.710583, 1.48779, -0.196748, 0.497096, 3.79775, 4.00041, -3.80125, -5.50443, -6.93031, -2.8969, 2.01147, -0.0355852, 6.39595}, {-9.63611, -0.184458, -9.63611, -0.833808, -0.834046, -2.43948, -1.57551, 1.57551, -1.57551, -0.802719, -0.802949, 0.802949, 0.39558, 4.29112, 8.80297, 2.97808, -0.916498, 4.96279, 4.27918, -8.32547, 4.27918, 0.232798, 4.12829, -8.17459, 2.02286, 2.02344, 2.02286, 2.93965, -0.954937, 0.954937}, {3.21204, 0.0614861, 3.21204, 2.50142, 2.50214, 7.31843, -1.57551, 1.57551, -1.57551, -0.802719, -0.802949, 0.802949, -15.7878, 0.708993, -13.8031, 9.28012, -7.21853, 11.2648, -2.02286, -2.02344, -2.02286, -2.97808, 0.916498, -4.96279, 5.23374, 5.23523, -1.18894, 2.93965, -0.954937, 0.954937}, {3.21204, 0.0614861, 3.21204, -0.833808, -0.834046, -2.43948, 4.72653, -4.72653, 4.72653, -0.802719, -0.802949, 0.802949, -2.93965, 0.954937, -0.954937, 6.31331, 2.41969, 14.7207, -14.871, -2.26938, -14.871, -2.97808, 0.916498, -4.96279, 2.02286, 2.02344, 2.02286, 6.15053, 2.25686, -2.25686}, {3.21204, 0.0614861, 3.21204, -0.833808, -0.834046, -2.43948, -1.57551, 1.57551, -1.57551, 2.40816, 2.40885, -2.40885, -2.93965, 0.954937, -0.954937, 2.97808, -0.916498, 4.96279, -2.02286, -2.02344, -2.02286, -15.8262, 0.670554, -17.8109, 5.35809, 5.35962, 11.7808, 9.24169, -7.25697, 7.25697}, {1.77636e-15, 3.55271e-15, -3.26126, 1.4431, -0.571101, 0.0717263, 0.0125109, 2.01402, -0.807596, -1.45561, -1.44292, -0.351216, -7.55617, 2.99032, -1.71928, -1.79923, -1.78355, 0.909586, -0.0655081, -10.5456, 2.88492, 7.62167, 7.55524, 0.495278, 0.0154644, 2.48947, 0.345468, 1.78377, -0.70592, 1.43237}, {-2.22045e-16, 6.66134e-16, 1.08709, -4.3293, 1.7133, -0.215179, 0.0125109, 2.01402, -0.807596, -1.45561, -1.44292, -0.351216, -1.78377, 0.70592, -5.78072, -1.84928, -9.83965, 4.13997, -0.0154644, -2.48947, -0.345468, 1.79923, 1.78355, -0.909586, 5.83791, 8.26116, 1.75033, 1.78377, -0.70592, 1.43237}, {-6.66134e-16, -2.22045e-16, 1.08709, 1.4431, -0.571101, 0.0717263, -0.0375328, -6.04207, 2.42279, -1.45561, -1.44292, -0.351216, -1.78377, 0.70592, -1.43237, -7.57163, 0.500853, 0.622681, -0.0154644, -2.48947, -4.69381, 1.79923, 1.78355, -0.909586, 0.0154644, 2.48947, 0.345468, 7.60621, 5.06577, 2.83723}, {-2.22045e-16, 4.44089e-16, 1.08709, 1.4431, -0.571101, 0.0717263, 0.0125109, 2.01402, -0.807596, 4.36683, 4.32877, 1.05365, -1.78377, 0.70592, -1.43237, -1.79923, -1.78355, 0.909586, -0.0154644, -2.48947, -0.345468, 1.79923, 1.78355, -5.25793, -5.75693, 4.77387, 0.0585632, 1.73373, -8.76202, 4.66276}, {4.62915, 1.83443, 4.62633, 1.74201, -1.33137, 0.13686, 3.96359e-17, -3.87053e-16, 1.60497, -0.198956, 1.94285, -0.199718, -7.21395, 7.72698, 1.18954, -2.15324, 1.64567, -2.15302, 1.90731, 0.755828, -6.49756, 2.94906, -9.41706, 2.95189, -1.90731, -0.755828, 0.0776963, 0.245923, -2.40149, -1.73698}, {-1.54305, -0.611477, -1.54211, -5.22602, 3.99411, -0.41058, 1.18908e-16, -1.16116e-15, 1.60497, -0.198956, 1.94285, -0.199718, 5.92628, 4.8474, 7.90542, -2.15324, 1.64567, -8.57288, 1.90731, 0.755828, -0.0776963, 2.15324, -1.64567, 2.15302, -1.11149, -8.52722, 0.876567, 0.245923, -2.40149, -1.73698}, {-1.54305, -0.611477, -1.54211, 1.74201, -1.33137, 0.13686, 0, 0, -4.8149, -0.198956, 1.94285, -0.199718, -0.245923, 2.40149, 1.73698, -9.12126, 6.97115, -2.70046, 8.07952, 3.20174, 6.09074, 2.15324, -1.64567, 2.15302, -1.90731, -0.755828, 0.0776963, 1.04175, -10.1729, -0.938112}, {-1.54305, -0.611477, -1.54211, 1.74201, -1.33137, 0.13686, -1.18908e-16, 1.16116e-15, 1.60497, 0.596868, -5.82855, 0.599153, -0.245923, 2.40149, 1.73698, -2.15324, 1.64567, -2.15302, 1.90731, 0.755828, -0.0776963, 8.32544, 0.800244, 8.32145, -8.87534, 4.56966, -0.469744, 0.245923, -2.40149, -8.15685}, {4.35065, -1.72407, 1.44786, 0, 0, 1.17684, 1.43763, 1.45199, 0.197849, 0.0125895, -2.02668, -0.892072, 1.79257, -0.710355, -5.56548, -1.77701, -1.79476, -1.69921, -5.73495, -8.31307, -0.439401, 1.72665, 9.90148, 5.2675, -0.0155615, 2.50511, -0.351997, -1.79257, 0.710355, 0.858106}, {-1.45022, 0.57469, -0.482621, -1.29313e-15, 4.05633e-15, -3.53053, 1.43763, 1.45199, 0.197849, 0.0125895, -2.02668, -0.892072, 7.59343, -3.00911, 1.07238, -7.52752, -7.60272, -2.49061, 0.0155615, -2.50511, 0.351997, 1.77701, 1.79476, 1.69921, -0.0659197, 10.6118, 3.21629, -1.79257, 0.710355, 0.858106}, {-1.45022, 0.57469, -0.482621, 0, 0, 1.17684, -4.31288, -4.35597, -0.593548, 0.0125895, -2.02668, -0.892072, 1.79257, -0.710355, -0.858106, -1.77701, -1.79476, -6.40659, 5.81643, -4.80387, 2.28248, 1.77701, 1.79476, 1.69921, -0.0155615, 2.50511, -0.351997, -1.84292, 8.81707, 4.42639}, {-1.45022, 0.57469, -0.482621, 0, 0, 1.17684, 1.43763, 1.45199, 0.197849, -0.0377686, 6.08004, 2.67622, 1.79257, -0.710355, -0.858106, -1.77701, -1.79476, -1.69921, 0.0155615, -2.50511, 0.351997, 7.57787, -0.504, 3.6297, -0.0155615, 2.50511, -5.05937, -7.54308, -5.09761, 0.0667081}, {2.31688, 0.916898, -2.31818, 0.572147, 2.2454, -0.575329, -1.46447, -2.59853, -0.874972, 1.66462, 0.658766, 0.677573, -2.04119, -11.3793, 2.05732, 1.10297, 0.436497, 1.79267, 8.62268, 13.9839, 3.62627, -7.76145, -3.07156, -4.50296, -2.76479, -3.58975, -0.126381, -0.247396, 2.39768, 0.243998}, {-0.772295, -0.305633, 0.772728, -1.71644, -6.7362, 1.72599, -1.46447, -2.59853, -0.874972, 1.66462, 0.658766, 0.677573, 3.33658, -1.17515, -3.33491, 6.96086, 10.8306, 5.29256, 2.76479, 3.58975, 0.126381, -1.10297, -0.436497, -1.79267, -9.42327, -6.22481, -2.83667, -0.247396, 2.39768, 0.243998}, {-0.772295, -0.305633, 0.772728, 0.572147, 2.2454, -0.575329, 4.39341, 7.7956, 2.62492, 1.66462, 0.658766, 0.677573, 0.247396, -2.39768, -0.243998, -1.18562, -8.5451, 4.09399, 5.85397, 4.81228, -2.96453, -1.10297, -0.436497, -1.79267, -2.76479, -3.58975, -0.126381, -6.90587, -0.237381, -2.46629}, {-0.772295, -0.305633, 0.772728, 0.572147, 2.2454, -0.575329, -1.46447, -2.59853, -0.874972, -4.99386, -1.9763, -2.03272, 0.247396, -2.39768, -0.243998, 1.10297, 0.436497, 1.79267, 2.76479, 3.58975, 0.126381, 1.98621, 0.786034, -4.88358, -5.05338, -12.5713, 2.17494, 5.61049, 12.7918, 3.74389}, {-7.02177, -5.36656, 7.02938, 0.00253498, -1.78885, 1.2111e-11, -2.34313, 0, 0, 0, 0, 2.34313, -2.9064, 7.15542, 2.89626, 2.89313, 2.21115, -1.49701e-11, 9.37564, -2.21115, 2.89626, -2.89313, -2.21115, -9.3725, -0.00313341, 2.21115, -2.89626, 2.89626, 0, -2.89626}, {2.34059, 1.78885, -2.34313, -0.00760494, 5.36656, -5.47978e-11, -2.34313, 0, 0, 1.36297e-15, 0, 2.34313, -12.2586, -7.15542, 12.2688, 12.2656, 2.21115, -2.25779e-11, 0.00313341, -2.21115, 2.89626, -2.89313, -2.21115, 2.25785e-11, -0.00313341, 2.21115, -12.2688, 2.89626, 0, -2.89626}, {2.34059, 1.78885, -2.34313, 0.00253498, -1.78885, 1.21079e-11, 7.02938, 0, 0, 0, 0, 2.34313, -2.89626, -4.44089e-16, 2.89626, 2.88299, 9.36656, -6.33979e-11, -9.35923, -9.36656, 12.2688, -2.89313, -2.21115, 1.49668e-11, -0.00313341, 2.21115, -2.89626, 2.89626, 0, -12.2688}, {2.34059, 1.78885, -2.34313, 0.00253498, -1.78885, 1.2111e-11, -2.34313, 0, 0, 0, 0, -7.02938, -2.89626, -4.44089e-16, 2.89626, 2.89313, 2.21115, -1.49701e-11, 0.00313341, -2.21115, 2.89626, -12.2555, -9.36656, 9.3725, -0.0132733, 9.36656, -2.89626, 12.2688, 0, -2.89626}, {0.0377686, 6.08004, 3.1372, 4.64343e-16, 1.84009e-16, 1.28977, -1.43763, 1.45199, -0.146251, 1.45022, 0.57469, -0.0977806, 0.0155615, 2.50511, -5.4607, 1.77701, -1.79476, -1.41346, 7.54308, -5.09761, 2.05838, -7.57787, -0.504, 1.80458, -1.79257, -0.710355, -1.47337, -0.0155615, -2.50511, 0.301639}, {-0.0125895, -2.02668, -1.04573, -2.77397e-15, 8.42705e-16, -3.8693, -1.43763, 1.45199, -0.146251, 1.45022, 0.57469, -0.0977806, 0.0659197, 10.6118, 3.8813, 7.52752, -7.60272, -0.82846, 1.79257, 0.710355, 1.47337, -1.77701, 1.79476, 1.41346, -7.59343, -3.00911, -1.08225, -0.0155615, -2.50511, 0.301639}, {-0.0125895, -2.02668, -1.04573, 0, 0, 1.28977, 4.31288, -4.35597, 0.438752, 1.45022, 0.57469, -0.0977806, 0.0155615, 2.50511, -0.301639, 1.77701, -1.79476, -6.57252, 1.84292, 8.81707, 5.65631, -1.77701, 1.79476, 1.41346, -1.79257, -0.710355, -1.47337, -5.81643, -4.80387, 0.692761}, {-0.0125895, -2.02668, -1.04573, 4.64343e-16, 1.84009e-16, 1.28977, -1.43763, 1.45199, -0.146251, -4.35065, -1.72407, 0.293342, 0.0155615, 2.50511, -0.301639, 1.77701, -1.79476, -1.41346, 1.79257, 0.710355, 1.47337, -1.72665, 9.90148, 5.5964, -1.79257, -0.710355, -6.63244, 5.73495, -8.31307, 0.886641}, {-4.7272, -4.7272, 4.7272, 1.57573, -1.57573, 1.57573, -1.57596, -1.57551, -1.57551, -1.57551, 1.57551, 1.57551, -10.1984, 6.30294, -6.30294, 0.000278382, 3.89515, -0.000278382, 6.30412, 6.30176, 10.1972, 6.30176, -10.1972, -6.30176, -0.000278382, 0.000278382, -3.89515, 3.89543, -9.10383e-15, 9.10383e-15}, {1.57573, 1.57573, -1.57573, -4.7272, 4.7272, -4.7272, -1.57596, -1.57551, -1.57551, -1.57551, 1.57551, 1.57551, -10.1984, -6.30294, 6.30294, 6.30412, 10.1972, 6.30176, 0.000278382, -0.000278382, 3.89515, -0.000278382, -3.89515, 0.000278382, 6.30176, -6.30176, -10.1972, 3.89543, -9.10383e-15, 9.10383e-15}, {1.57573, 1.57573, -1.57573, 1.57573, -1.57573, 1.57573, 4.72788, 4.72653, 4.72653, -1.57551, 1.57551, 1.57551, -3.89543, 2.66454e-15, -1.44329e-14, -6.30266, 10.1981, -6.30322, -6.30266, -6.30322, 10.1981, -0.000278382, -3.89515, 0.000278382, -0.000278382, 0.000278382, -3.89515, 10.1975, -6.30204, -6.30204}, {1.57573, 1.57573, -1.57573, 1.57573, -1.57573, 1.57573, -1.57596, -1.57551, -1.57551, 4.72653, -4.72653, -4.72653, -3.89543, 1.02141e-14, -6.66134e-16, 0.000278382, 3.89515, -0.000278382, 0.000278382, -0.000278382, 3.89515, -6.30322, -10.1981, 6.30322, -6.30322, 6.30322, -10.1981, 10.1993, 6.30204, 6.30204}, {1.83228, 4.63528, 4.62937, 1.94057, -2.54509, -0.198723, -1.32981, 1.74407, 1.74185, 0, 2.34612, 0, -9.40601, 15.2361, 2.94793, -0.754941, 0.990119, -1.90741, 7.71791, -7.22223, -7.21302, 0.754941, -10.3746, 1.90741, -2.39867, 0.245948, 0.245635, 1.64373, -5.05575, -2.15304}, {-0.61076, -1.54509, -1.54312, -5.82171, 7.63528, 0.596168, -1.32981, 1.74407, 1.74185, 7.74523e-16, 2.34612, -1.01451e-15, 0.799305, 11.2361, 8.32553, 4.5643, -5.98616, -8.87479, 2.39867, -0.245948, -0.245635, 0.754941, -0.990119, 1.90741, -2.39867, -9.13852, 0.245635, 1.64373, -5.05575, -2.15304}, {-0.61076, -1.54509, -1.54312, 1.94057, -2.54509, -0.198723, 3.98943, -5.23221, -5.22554, 0, 2.34612, 0, -1.64373, 5.05575, 2.15304, -8.51722, 11.1705, -1.11252, 4.84171, 5.93443, 5.92686, 0.754941, -0.990119, 1.90741, -2.39867, 0.245948, 0.245635, 1.64373, -14.4402, -2.15304}, {-0.61076, -1.54509, -1.54312, 1.94057, -2.54509, -0.198723, -1.32981, 1.74407, 1.74185, 0, -7.03835, 0, -1.64373, 5.05575, 2.15304, -0.754941, 0.990119, -1.90741, 2.39867, -0.245948, -0.245635, 3.19798, 5.19026, 8.0799, -10.1609, 10.4263, 1.04052, 6.96297, -12.032, -9.12042}, {-1.42344, 3.96091, -1.43084, -1.98584, -0.354449, 0.357788, 0.9893, 0.397365, -1.35371, 0.52206, 1.27739, 0.518977, 9.81149, 3.4879, -2.46294, 1.23179, -0.0530468, 1.23103, -5.76653, -0.448647, 6.49858, -3.32003, -5.0565, -3.30694, 1.80933, -1.14081, -1.08374, -1.86814, -2.07011, 1.03179}, {0.474478, -1.3203, 0.476947, 5.95751, 1.06335, -1.07336, 0.9893, 0.397365, -1.35371, 0.52206, 1.27739, 0.518977, -0.029771, 7.35132, -2.93958, -2.72541, -1.64251, 6.64587, -1.80933, 1.14081, 1.08374, -1.23179, 0.0530468, -1.23103, -0.278909, -6.25036, -3.15965, -1.86814, -2.07011, 1.03179}, {0.474478, -1.3203, 0.476947, -1.98584, -0.354449, 0.357788, -2.9679, -1.1921, 4.06113, 0.52206, 1.27739, 0.518977, 1.86814, 2.07011, -1.03179, 9.17514, 1.36475, -0.200121, -3.70724, 6.42202, -0.824048, -1.23179, 0.0530468, -1.23103, 1.80933, -1.14081, -1.08374, -3.95638, -7.17965, -1.04412}, {0.474478, -1.3203, 0.476947, -1.98584, -0.354449, 0.357788, 0.9893, 0.397365, -1.35371, -1.56618, -3.83216, -1.55693, 1.86814, 2.07011, -1.03179, 1.23179, -0.0530468, 1.23103, -1.80933, 1.14081, 1.08374, -3.1297, 5.33426, -3.13882, 9.75268, 0.276984, -2.51489, -5.82534, -3.65957, 6.44663}, {5.36656, 5.36656, -5.36656, 1.41539, 1.41492, 1.85814, 0, 3.15102, 0, 0.373467, -2.77708, -3.64699, -5.19992, -5.19747, -11.9405, -1.74951, -5.64381, -2.29678, 2.21115, -14.2878, -2.21115, 0.255645, 16.7521, 16.8847, -2.21115, 1.68373, 2.21115, -0.461631, -0.462209, 4.50793}, {-1.78885, -1.78885, 1.78885, -4.24616, -4.24476, -5.57441, -2.92145e-16, 3.15102, 2.85286e-15, 0.373467, -2.77708, -3.64699, 7.61705, 7.61763, -11.6633, -1.74951, -18.2479, -2.29678, 2.21115, -1.68373, -2.21115, 1.74951, 5.64381, 2.29678, -3.70501, 12.7921, 16.7991, -0.461631, -0.462209, 4.50793}, {-1.78885, -1.78885, 1.78885, 1.41539, 1.41492, 1.85814, 0, -9.45305, 0, 0.373467, -2.77708, -3.64699, 0.461631, 0.462209, -4.50793, -7.41106, -11.3035, -9.72932, 9.36656, 5.47169, -9.36656, 1.74951, 5.64381, 2.29678, -2.21115, 1.68373, 2.21115, -1.9555, 10.6461, 19.0959}, {-1.78885, -1.78885, 1.78885, 1.41539, 1.41492, 1.85814, 0, 3.15102, 0, -1.1204, 8.33125, 10.941, 0.461631, 0.462209, -4.50793, -1.74951, -5.64381, -2.29678, 2.21115, -1.68373, -2.21115, 8.90493, 12.7992, -4.85864, -7.87269, -3.97595, -5.2214, -0.461631, -13.0663, 4.50793}, {-4.34476, -0.77549, 0.782793, -0.00873736, -1.40655, 0.564008, -1.44688, -0.0374651, -0.914786, 0.00736434, 1.18552, 0.611709, -1.74439, 7.04528, -2.63065, 1.79924, 1.7849, 0.433585, 5.78582, -0.123349, 5.11241, -1.8287, -6.52698, -2.88042, 0.00169715, 0.27321, -1.45327, 1.77934, -1.41907, 0.374623}, {1.44825, 0.258497, -0.260931, 0.0262121, 4.21965, -1.69202, -1.44688, -0.0374651, -0.914786, 0.00736434, 1.18552, 0.611709, -7.57235, 0.385087, 0.669101, 7.58676, 1.93476, 4.09273, -0.00169715, -0.27321, 1.45327, -1.79924, -1.7849, -0.433585, -0.0277602, -4.46887, -3.9001, 1.77934, -1.41907, 0.374623}, {1.44825, 0.258497, -0.260931, -0.00873736, -1.40655, 0.564008, 4.34064, 0.112395, 2.74436, 0.00736434, 1.18552, 0.611709, -1.77934, 1.41907, -0.374623, 1.83419, 7.4111, -1.82245, -5.79471, -1.3072, 2.49699, -1.79924, -1.7849, -0.433585, 0.00169715, 0.27321, -1.45327, 1.74988, -6.16115, -2.07221}, {1.44825, 0.258497, -0.260931, -0.00873736, -1.40655, 0.564008, -1.44688, -0.0374651, -0.914786, -0.022093, -3.55656, -1.83513, -1.77934, 1.41907, -0.374623, 1.79924, 1.7849, 0.433585, -0.00169715, -0.27321, 1.45327, -7.59225, -2.81889, 0.610139, 0.0366466, 5.89941, -3.7093, 7.56686, -1.26921, 4.03377}, {-4.817, -2.66454e-15, -5.32907e-15, -1.78885, -1.78885, 1.78885, 0.373353, 0.374783, -3.64588, -0.190167, 1.41407, 1.85702, 7.38185, 9.36656, -9.36656, 1.74966, 1.74789, 2.29541, -3.93962, -1.96239, 19.0901, -0.988987, -7.40418, -9.72349, 2.4462, 0.463257, -4.50655, -0.226431, -2.21115, 2.21115}, {1.60567, 4.44089e-16, 1.77636e-15, 5.36656, 5.36656, -5.36656, 0.373353, 0.374783, -3.64588, -0.190167, 1.41407, 1.85702, -6.19624, 2.21115, -2.21115, 0.256242, 0.248757, 16.8789, -2.4462, -0.463257, 4.50655, -1.74966, -1.74789, -2.29541, 3.20687, -5.19303, -11.9346, -0.226431, -2.21115, 2.21115}, {1.60567, 0, 4.44089e-16, -1.78885, -1.78885, 1.78885, -1.12006, -1.12435, 10.9376, -0.190167, 1.41407, 1.85702, 0.226431, 2.21115, -2.21115, 8.90507, 8.90331, -4.86001, -8.86888, -0.463257, 4.50655, -1.74966, -1.74789, -2.29541, 2.4462, 0.463257, -4.50655, 0.534237, -7.86743, -5.21694}, {1.60567, 2.22045e-16, 1.11022e-15, -1.78885, -1.78885, 1.78885, 0.373353, 0.374783, -3.64588, 0.570501, -4.24221, -5.57107, 0.226431, 2.21115, -2.21115, 1.74966, 1.74789, 2.29541, -2.4462, -0.463257, 4.50655, -8.17233, -1.74789, -2.29541, 9.60162, 7.61867, -11.662, -1.71984, -3.71028, 16.7947}, {-5.36225, -5.36694, -5.37021, 0, -1.60567, 0, -0.373167, -0.373493, -3.64724, -1.41425, 0.190182, 1.85717, -2.20937, 6.19609, -2.21265, 0.46126, 2.44638, 4.50824, -0.25544, -0.255663, 16.8846, 5.19574, -3.20711, -11.9369, 1.74811, 1.74964, -2.29559, 2.20937, 0.226585, 2.21265}, {1.78742, 1.78898, 1.79007, 0, 4.817, 0, -0.373167, -0.373493, -3.64724, -1.41425, 0.190182, 1.85717, -9.35904, -7.3825, -9.37293, 1.95393, 3.94035, 19.0972, -1.74811, -1.74964, 2.29559, -0.46126, -2.44638, -4.50824, 7.40511, 0.988907, -9.72428, 2.20937, 0.226585, 2.21265}, {1.78742, 1.78898, 1.79007, 0, -1.60567, 0, 1.1195, 1.12048, 10.9417, -1.41425, 0.190182, 1.85717, -2.20937, -0.226585, -2.21265, 0.46126, 8.86905, 4.50824, -8.89778, -8.90555, -4.86469, -0.46126, -2.44638, -4.50824, 1.74811, 1.74964, -2.29559, 7.86637, -0.534145, -5.21604}, {1.78742, 1.78898, 1.79007, 0, -1.60567, 0, -0.373167, -0.373493, -3.64724, 4.24275, -0.570547, -5.57152, -2.20937, -0.226585, -2.21265, 0.46126, 2.44638, 4.50824, -1.74811, -1.74964, 2.29559, -7.61093, -9.60229, -11.6685, 1.74811, 8.17231, -2.29559, 3.70204, 1.72056, 16.8016}, {-0.829936, -0.831314, 3.98569, 1.1323, 1.13131, 1.13131, 0.168871, -1.43624, 0.169424, -1.57782, 0.027827, 0.027827, -6.27076, -6.26615, -4.28143, -1.60834, 0.376916, -1.6078, -1.22617, 7.17775, 0.755077, 7.9196, -0.488224, 1.49649, 0.550688, -1.43277, -1.43277, 1.74155, 1.7409, -0.243816}, {0.276645, 0.277105, -1.32856, -3.3969, -3.39394, -3.39394, 0.168871, -1.43624, 0.169424, -1.57782, 0.027827, 0.027827, -2.84813, -2.84932, 5.55807, -2.28382, 6.12189, -2.2855, -0.550688, 1.43277, 1.43277, 1.60834, -0.376916, 1.6078, 6.86195, -1.54408, -1.54408, 1.74155, 1.7409, -0.243816}, {0.276645, 0.277105, -1.32856, 1.1323, 1.13131, 1.13131, -0.506612, 4.30873, -0.508273, -1.57782, 0.027827, 0.027827, -1.74155, -1.7409, 0.243816, -6.13754, -4.14833, -6.13305, -1.65727, 0.324356, 6.74703, 1.60834, -0.376916, 1.6078, 0.550688, -1.43277, -1.43277, 8.05282, 1.62959, -0.355124}, {0.276645, 0.277105, -1.32856, 1.1323, 1.13131, 1.13131, 0.168871, -1.43624, 0.169424, 4.73345, -0.0834809, -0.0834809, -1.74155, -1.7409, 0.243816, -1.60834, 0.376916, -1.6078, -0.550688, 1.43277, 1.43277, 0.501756, -1.48534, 6.92205, -3.97852, -5.95802, -5.95802, 1.06607, 7.48587, -0.921513}, {-8.33162, 1.1204, 10.941, -1.41498, -1.41539, 1.85814, -3.15057, 0, 0, 1.78834, 1.78885, 1.78885, 3.97613, 7.87269, -5.2214, 5.64333, 1.74951, -2.29678, 13.0638, 0.461631, 4.50793, -12.7967, -8.90493, -4.85864, -0.461499, -0.461631, -4.50793, 1.6838, -2.21115, -2.21115}, {2.77721, -0.373467, -3.64699, 4.24495, 4.24616, -5.57441, -3.15057, 0, 0, 1.78834, 1.78885, 1.78885, -12.7926, 3.70501, 16.7991, 18.2456, 1.74951, -2.29678, 0.461499, 0.461631, 4.50793, -5.64333, -1.74951, 2.29678, -7.61487, -7.61705, -11.6633, 1.6838, -2.21115, -2.21115}, {2.77721, -0.373467, -3.64699, -1.41498, -1.41539, 1.85814, 9.4517, 0, 0, 1.78834, 1.78885, 1.78885, -1.6838, 2.21115, 2.21115, 11.3033, 7.41106, -9.72932, -10.6473, 1.9555, 19.0959, -5.64333, -1.74951, 2.29678, -0.461499, -0.461631, -4.50793, -5.46957, -9.36656, -9.36656}, {2.77721, -0.373467, -3.64699, -1.41498, -1.41539, 1.85814, -3.15057, 0, 0, -5.36503, -5.36656, -5.36656, -1.6838, 2.21115, 2.21115, 5.64333, 1.74951, -2.29678, 0.461499, 0.461631, 4.50793, -16.7522, -0.255645, 16.8847, 5.19843, 5.19992, -11.9405, 14.2861, -2.21115, -2.21115}, {-3.98391, -5.22497, -0.407969, -1.83214e-15, -1.4677e-15, 1.60567, 0.61239, -1.54296, -1.54296, -1.94036, -0.198701, -0.198701, -1.64146, -2.15281, -8.57548, -0.756955, 1.9072, -0.0775154, -4.84797, 5.92622, 7.91093, 8.51839, -1.1124, 0.87232, 2.39842, 0.245608, -1.73911, 1.64146, 2.15281, 2.15281}, {1.32797, 1.74166, 0.13599, 3.05267e-15, -1.60751e-15, -4.817, 0.61239, -1.54296, -1.54296, -1.94036, -0.198701, -0.198701, -6.95334, -9.11944, -2.69677, -3.20651, 8.07903, 6.09431, -2.39842, -0.245608, 1.73911, 0.756955, -1.9072, 0.0775154, 10.1599, 1.04041, -0.944303, 1.64146, 2.15281, 2.15281}, {1.32797, 1.74166, 0.13599, 0, 0, 1.60567, -1.83717, 4.62887, 4.62887, -1.94036, -0.198701, -0.198701, -1.64146, -2.15281, -2.15281, -0.756955, 1.9072, -6.50019, -7.71029, -7.21224, 1.19515, 0.756955, -1.9072, 0.0775154, 2.39842, 0.245608, -1.73911, 9.4029, 2.94761, 2.94761}, {1.32797, 1.74166, 0.13599, 7.73451e-16, 7.92047e-17, 1.60567, 0.61239, -1.54296, -1.54296, 5.82108, 0.596103, 0.596103, -1.64146, -2.15281, -2.15281, -0.756955, 1.9072, -0.0775154, -2.39842, -0.245608, 1.73911, -4.55492, -8.87383, -0.466443, 2.39842, 0.245608, -8.16178, -0.808098, 8.32463, 8.32463}, {-1.77636e-15, 4.817, 8.88178e-16, -0.373167, -0.373493, 3.64724, -1.41425, 0.190182, -1.85717, 1.78742, 1.78898, -1.79007, 1.95393, 3.94035, -19.0972, 2.20937, 0.226585, -2.21265, 7.40511, 0.988907, 9.72428, -9.35904, -7.3825, 9.37293, -1.74811, -1.74964, -2.29559, -0.46126, -2.44638, 4.50824}, {-2.22045e-16, -1.60567, -2.22045e-16, 1.1195, 1.12048, -10.9417, -1.41425, 0.190182, -1.85717, 1.78742, 1.78898, -1.79007, 0.46126, 8.86905, -4.50824, 7.86637, -0.534145, 5.21604, 1.74811, 1.74964, 2.29559, -2.20937, -0.226585, 2.21265, -8.89778, -8.90555, 4.86469, -0.46126, -2.44638, 4.50824}, {2.22045e-16, -1.60567, 6.66134e-16, -0.373167, -0.373493, 3.64724, 4.24275, -0.570547, 5.57152, 1.78742, 1.78898, -1.79007, 0.46126, 2.44638, -4.50824, 3.70204, 1.72056, -16.8016, 1.74811, 8.17231, 2.29559, -2.20937, -0.226585, 2.21265, -1.74811, -1.74964, -2.29559, -7.61093, -9.60229, 11.6685}, {-2.22045e-16, -1.60567, 6.66134e-16, -0.373167, -0.373493, 3.64724, -1.41425, 0.190182, -1.85717, -5.36225, -5.36694, 5.37021, 0.46126, 2.44638, -4.50824, 2.20937, 0.226585, -2.21265, 1.74811, 1.74964, 2.29559, -2.20937, 6.19609, 2.21265, -0.25544, -0.255663, -16.8846, 5.19574, -3.20711, 11.9369}, {5.57441, 0.570843, -4.24616, 1.45374e-15, 1.60567, 1.48869e-16, -1.78885, -1.78885, -1.78885, 3.64699, 0.373467, 0.373467, 2.29678, -8.17219, -1.74951, 2.21115, 0.226431, 2.21115, 11.6633, 9.60176, 7.61705, -16.7991, -1.7203, -3.70501, -4.50793, -2.44635, -0.461631, -2.29678, 1.74951, 1.74951}, {-1.85814, -0.190281, 1.41539, -6.50039e-15, -4.817, -2.58579e-15, -1.78885, -1.78885, -1.78885, 3.64699, 0.373467, 0.373467, 9.72932, -0.988391, -7.41106, 9.36656, 7.38185, 9.36656, 4.50793, 2.44635, 0.461631, -2.21115, -0.226431, -2.21115, -19.0959, -3.94022, -1.9555, -2.29678, 1.74951, 1.74951}, {-1.85814, -0.190281, 1.41539, 0, 1.60567, 0, 5.36656, 5.36656, 5.36656, 3.64699, 0.373467, 0.373467, 2.29678, -1.74951, -1.74951, 2.21115, -6.19624, 2.21115, 11.9405, 3.20747, -5.19992, -2.21115, -0.226431, -2.21115, -4.50793, -2.44635, -0.461631, -16.8847, 0.255645, 0.255645}, {-1.85814, -0.190281, 1.41539, 1.45374e-15, 1.60567, 1.48869e-16, -1.78885, -1.78885, -1.78885, -10.941, -1.1204, -1.1204, 2.29678, -1.74951, -1.74951, 2.21115, 0.226431, 2.21115, 4.50793, 2.44635, 0.461631, 5.2214, 0.534693, -7.87269, -4.50793, -8.86902, -0.461631, 4.85864, 8.90493, 8.90493}, {0.596103, -0.596103, -5.82108, 1.74166, -0.13599, -1.32797, -1.54296, 1.54296, -0.61239, 0, -1.60567, 0, -8.87383, 0.466443, 4.55492, -0.245608, -1.73911, 2.39842, 8.32463, -8.32463, 0.808098, 0.245608, 8.16178, -2.39842, -2.15281, 2.15281, 1.64146, 1.9072, 0.0775154, 0.756955}, {-0.198701, 0.198701, 1.94036, -5.22497, 0.407969, 3.98391, -1.54296, 1.54296, -0.61239, 0, -1.60567, 0, -1.1124, -0.87232, -8.51839, 5.92622, -7.91093, 4.84797, 2.15281, -2.15281, -1.64146, 0.245608, 1.73911, -2.39842, -2.15281, 8.57548, 1.64146, 1.9072, 0.0775154, 0.756955}, {-0.198701, 0.198701, 1.94036, 1.74166, -0.13599, -1.32797, 4.62887, -4.62887, 1.83717, 0, -1.60567, 0, -1.9072, -0.0775154, -0.756955, -7.21224, -1.19515, 7.71029, 2.94761, -2.94761, -9.4029, 0.245608, 1.73911, -2.39842, -2.15281, 2.15281, 1.64146, 1.9072, 6.50019, 0.756955}, {-0.198701, 0.198701, 1.94036, 1.74166, -0.13599, -1.32797, -1.54296, 1.54296, -0.61239, 0, 4.817, 0, -1.9072, -0.0775154, -0.756955, -0.245608, -1.73911, 2.39842, 2.15281, -2.15281, -1.64146, 1.04041, 0.944303, -10.1599, -9.11944, 2.69677, 6.95334, 8.07903, -6.09431, 3.20651}, {1.77636e-15, 9.45441, 0, 1.36222, 1.36261, 1.78885, -3.15057, 0, 0, 1.78834, 1.78885, -1.78885, -7.1327, -3.23931, -9.36656, 2.21051, -1.68428, -2.21115, 16.4966, 3.89543, 0, -9.36389, -5.47113, 9.36656, -3.89432, -3.89543, 0, 1.6838, -2.21115, 2.21115}, {-2.22045e-16, -3.15147, 0, -4.08667, -4.08784, -5.36656, -3.15057, 0, 0, 1.78834, 1.78885, -1.78885, -1.6838, 14.817, -2.21115, 14.8128, -1.68428, -2.21115, 3.89432, 3.89543, 0, -2.21051, 1.68428, 2.21115, -11.0477, -11.0508, 7.15542, 1.6838, -2.21115, 2.21115}, {2.22045e-16, -3.15147, 0, 1.36222, 1.36261, 1.78885, 9.4517, 0, 0, 1.78834, 1.78885, -1.78885, -1.6838, 2.21115, -2.21115, -3.23838, -7.13474, -9.36656, 3.89432, 16.5013, 0, -2.21051, 1.68428, 2.21115, -3.89432, -3.89543, 0, -5.46957, -9.36656, 9.36656}, {-2.22045e-16, -3.15147, 0, 1.36222, 1.36261, 1.78885, -3.15057, 0, 0, -5.36503, -5.36656, 5.36656, -1.6838, 2.21115, -2.21115, 2.21051, -1.68428, -2.21115, 3.89432, 3.89543, 0, -2.21051, 14.2902, 2.21115, -9.34321, -9.34589, -7.15542, 14.2861, -2.21115, 2.21115}, {-2.95778e-16, 8.88178e-16, 5.41667, 1.44665, -1.44665, -0.51339, -1.44665, -0.572575, 0.978606, 1.97314e-12, 2.01922, 1.34034, -7.57474, 7.57474, 4.91993, 2.43894e-12, 2.4959, -0.575039, 7.57474, 2.99804, -2.89226, -1.03315e-11, -10.5728, -4.78632, -1.78815, -0.707741, -1.02217, 1.78815, -1.78815, -2.86637}, {1.99359e-16, 4.44089e-16, -1.80556, -4.33994, 4.33994, 1.54017, -1.44665, -0.572575, 0.978606, 1.97222e-12, 2.01922, 1.34034, -1.78815, 1.78815, 10.0886, 5.78659, 4.7862, -4.48946, 1.78815, 0.707741, 1.02217, -2.43805e-12, -2.4959, 0.575039, -1.78815, -8.78463, -6.38352, 1.78815, -1.78815, -2.86637}, {8.21831e-17, -4.44089e-16, -1.80556, 1.44665, -1.44665, -0.51339, 4.33994, 1.71772, -2.93582, 1.97167e-12, 2.01922, 1.34034, -1.78815, 1.78815, 2.86637, -5.78659, 8.28248, 1.47852, 1.78815, 0.707741, 8.24439, -2.43716e-12, -2.4959, 0.575039, -1.78815, -0.707741, -1.02217, 1.78815, -9.86504, -8.22773}, {-1.03785e-17, 0, -1.80556, 1.44665, -1.44665, -0.51339, -1.44665, -0.572575, 0.978606, -5.91996e-12, -6.05767, -4.02102, -1.78815, 1.78815, 2.86637, 2.43916e-12, 2.4959, -0.575039, 1.78815, 0.707741, 1.02217, -2.43978e-12, -2.4959, 7.79726, -7.57474, 5.07885, 1.03139, 7.57474, 0.502145, -6.7808}, {-1.83228, -4.62937, -4.62777, -1.94057, 0.198723, 0.200419, 1.32981, -1.74185, -0.13734, 0, 0, -1.60567, 9.40601, -2.94793, -2.95615, 0.754941, 1.90741, -0.0779689, -7.71791, 7.21302, -1.18762, -0.754941, -1.90741, 6.50064, 2.39867, -0.245635, 1.73698, -1.64373, 2.15304, 2.15448}, {0.61076, 1.54312, 1.54259, 5.82171, -0.596168, -0.601256, 1.32981, -1.74185, -0.13734, 0, 0, -1.60567, -0.799305, -8.32553, -8.32484, -4.5643, 8.87479, 0.471392, -2.39867, 0.245635, -1.73698, -0.754941, -1.90741, 0.0779689, 2.39867, -0.245635, 8.15966, -1.64373, 2.15304, 2.15448}, {0.61076, 1.54312, 1.54259, -1.94057, 0.198723, 0.200419, -3.98943, 5.22554, 0.412021, 0, 0, -1.60567, 1.64373, -2.15304, -2.15448, 8.51722, 1.11252, -0.879643, -4.84171, -5.92686, -7.90734, -0.754941, -1.90741, 0.0779689, 2.39867, -0.245635, 1.73698, -1.64373, 2.15304, 8.57715}, {0.61076, 1.54312, 1.54259, -1.94057, 0.198723, 0.200419, 1.32981, -1.74185, -0.13734, 0, 0, 4.817, 1.64373, -2.15304, -2.15448, 0.754941, 1.90741, -0.0779689, -2.39867, 0.245635, -1.73698, -3.19798, -8.0799, -6.09239, 10.1609, -1.04052, 0.93531, -6.96297, 9.12042, 2.70384}, {-5.36656, 5.36656, -5.36656, 0, 0, -3.15147, -0.373467, 3.64699, 2.778, -1.41539, -1.85814, -1.41539, -2.21115, 2.21115, 14.2902, 0.461631, -4.50793, 0.461631, -0.255645, -16.8847, -16.7569, 5.19992, 11.9405, 5.19992, 1.74951, 2.29678, 5.64494, 2.21115, -2.21115, -1.68428}, {1.78885, -1.78885, 1.78885, 0, 0, 9.45441, -0.373467, 3.64699, 2.778, -1.41539, -1.85814, -1.41539, -9.36656, 9.36656, -5.47113, 1.9555, -19.0959, -10.6504, -1.74951, -2.29678, -5.64494, -0.461631, 4.50793, -0.461631, 7.41106, 9.72932, 11.3065, 2.21115, -2.21115, -1.68428}, {1.78885, -1.78885, 1.78885, 0, 0, -3.15147, 1.1204, -10.941, -8.334, -1.41539, -1.85814, -1.41539, -2.21115, 2.21115, 1.68428, 0.461631, -4.50793, 13.0675, -8.90493, 4.85864, -12.8004, -0.461631, 4.50793, -0.461631, 1.74951, 2.29678, 5.64494, 7.87269, 5.2214, 3.97726}, {1.78885, -1.78885, 1.78885, 0, 0, -3.15147, -0.373467, 3.64699, 2.778, 4.24616, 5.57441, 4.24616, -2.21115, 2.21115, 1.68428, 0.461631, -4.50793, 0.461631, -1.74951, -2.29678, -5.64494, -7.61705, 11.6633, -7.61705, 1.74951, 2.29678, 18.2508, 3.70501, -16.7991, -12.7963}, {1.64026, -3.9353, -3.8467e-12, 0.194118, 0, -1.44665, -0.509273, -1.31177, -1.28236e-12, 0.861908, 0, 1.44665, -0.34059, -1.62143, 7.57474, 0.389553, 1.62143, 1.78815, 3.34241, 5.24706, 5.12945e-12, -3.83718, -1.62143, -7.57474, -1.30532, 0, 0, -0.435881, 1.62143, -1.78815}, {-0.546753, 1.31177, 1.28098e-12, -0.582353, 3.77031e-16, 4.33994, -0.509273, -1.31177, -1.28138e-12, 0.861908, 8.26902e-17, 1.44665, 2.62289, -6.86849, 1.78815, 2.42664, 6.86849, 1.78815, 1.30532, -3.78785e-16, 4.44089e-16, -0.389553, -1.62143, -1.78815, -4.75295, -2.77626e-16, -5.78659, -0.435881, 1.62143, -1.78815}, {-0.546753, 1.31177, 1.28164e-12, 0.194118, 0, -1.44665, 1.52782, 3.9353, 3.84623e-12, 0.861908, 0, 1.44665, 0.435881, -1.62143, 1.78815, -0.386918, 1.62143, 7.57474, 3.49233, -5.24706, -5.12657e-12, -0.389553, -1.62143, -1.78815, -1.30532, 0, -4.44089e-16, -3.88351, 1.62143, -7.57474}, {-0.546753, 1.31177, 1.28164e-12, 0.194118, 0, -1.44665, -0.509273, -1.31177, -1.28138e-12, -2.58572, 0, -4.33994, 0.435881, -1.62143, 1.78815, 0.389553, 1.62143, 1.78815, 1.30532, -3.2565e-16, -2.22045e-16, 1.79746, -6.86849, -1.78815, -2.08179, 0, 5.78659, 1.60121, 6.86849, -1.78815}, {0.831641, 5.95736e-16, -6.19774, -0.482067, 1.31177, -0.482067, -0.449021, -1.31177, -0.449021, 1.2083, 1.98579e-16, -1.13482, 2.86679, -6.86849, -0.0294728, 1.15089, 0, 1.15089, 2.69376, 6.86849, -0.202503, -5.98409, -7.94315e-16, 3.38841, -0.897675, -1.62143, 1.99859, -0.938522, 1.62143, 1.95774}, {-0.277214, -1.75113e-16, 2.06591, 1.4462, -3.9353, 1.4462, -0.449021, -1.31177, -0.449021, 1.2083, 3.97157e-16, -1.13482, 2.04738, -1.62143, -10.2214, 2.94697, 5.24706, 2.94697, 0.897675, 1.62143, -1.99859, -1.15089, -2.22045e-16, -1.15089, -5.73088, -1.62143, 6.53788, -0.938522, 1.62143, 1.95774}, {-0.277214, 7.58234e-17, 2.06591, -0.482067, 1.31177, -0.482067, 1.34706, 3.9353, 1.34706, 1.2083, -2.97868e-16, -1.13482, 0.938522, -1.62143, -1.95774, 3.07916, -5.24706, 3.07916, 2.00653, 1.62143, -10.2622, -1.15089, 4.44089e-16, -1.15089, -0.897675, -1.62143, 1.99859, -5.77173, 1.62143, 6.49704}, {-0.277214, 0, 2.06591, -0.482067, 1.31177, -0.482067, -0.449021, -1.31177, -0.449021, -3.6249, 0, 3.40447, 0.938522, -1.62143, -1.95774, 1.15089, 0, 1.15089, 0.897675, 1.62143, -1.99859, -0.0420334, 0, -9.41454, 1.03059, -6.86849, 3.92685, 0.857562, 6.86849, 3.75382}, {10.941, -1.1204, -8.334, 1.78885, -1.78885, 1.78885, 1.85814, 1.41539, -1.41539, 0, 0, -3.15147, -4.85864, 8.90493, -12.8004, -4.50793, 0.461631, -0.461631, -5.2214, -7.87269, 3.97726, 4.50793, -0.461631, 13.0675, -2.21115, 2.21115, 1.68428, -2.29678, -1.74951, 5.64494}, {-3.64699, 0.373467, 2.778, -5.36656, 5.36656, -5.36656, 1.85814, 1.41539, -1.41539, 0, 0, -3.15147, 16.8847, 0.255645, -16.7569, -11.9405, -5.19992, 5.19992, 2.21115, -2.21115, -1.68428, 4.50793, -0.461631, 0.461631, -2.21115, 2.21115, 14.2902, -2.29678, -1.74951, 5.64494}, {-3.64699, 0.373467, 2.778, 1.78885, -1.78885, 1.78885, -5.57441, -4.24616, 4.24616, 0, 0, -3.15147, 2.29678, 1.74951, -5.64494, -11.6633, 7.61705, -7.61705, 16.7991, -3.70501, -12.7963, 4.50793, -0.461631, 0.461631, -2.21115, 2.21115, 1.68428, -2.29678, -1.74951, 18.2508}, {-3.64699, 0.373467, 2.778, 1.78885, -1.78885, 1.78885, 1.85814, 1.41539, -1.41539, 0, 0, 9.45441, 2.29678, 1.74951, -5.64494, -4.50793, 0.461631, -0.461631, 2.21115, -2.21115, -1.68428, 19.0959, -1.9555, -10.6504, -9.36656, 9.36656, -5.47113, -9.72932, -7.41106, 11.3065}, {1.77636e-15, 0, 9.45441, 1.78885, 1.78885, 1.78885, 1.36261, -1.78885, 1.36261, -3.15147, 0, 0, -9.36656, -9.36656, -5.47113, -3.89543, 0, -3.89543, -7.13474, 9.36656, -3.23931, 16.5013, 0, 3.89543, 1.68428, -2.21115, -2.21115, 2.21115, 2.21115, -1.68428}, {0, 0, -3.15147, -5.36656, -5.36656, -5.36656, 1.36261, -1.78885, 1.36261, -3.15147, 0, 0, -2.21115, -2.21115, 14.2902, -9.34589, 7.15542, -9.34589, -1.68428, 2.21115, 2.21115, 3.89543, 0, 3.89543, 14.2902, -2.21115, -2.21115, 2.21115, 2.21115, -1.68428}, {4.44089e-16, 0, -3.15147, 1.78885, 1.78885, 1.78885, -4.08784, 5.36656, -4.08784, -3.15147, 0, 0, -2.21115, -2.21115, 1.68428, -11.0508, -7.15542, -11.0508, -1.68428, 2.21115, 14.817, 3.89543, 0, 3.89543, 1.68428, -2.21115, -2.21115, 14.817, 2.21115, -1.68428}, {0, 0, -3.15147, 1.78885, 1.78885, 1.78885, 1.36261, -1.78885, 1.36261, 9.45441, 0, 0, -2.21115, -2.21115, 1.68428, -3.89543, 0, -3.89543, -1.68428, 2.21115, 2.21115, 3.89543, 0, 16.5013, -5.47113, -9.36656, -9.36656, -3.23931, 9.36656, -7.13474}, {5.22884, -3.98763, -5.22319, 0.200328, -1.9397, -2.54071, 8.97324e-16, 3.55112e-16, 2.34313, 1.54262, 0.610485, -1.54348, 1.10547, 8.51339, 11.1512, -0.24762, 2.3976, 0.244222, 2.1544, -1.643, -14.4208, -5.92285, -4.83954, 5.92971, -2.1544, 1.643, 5.04833, -1.90678, -0.754601, -0.988412}, {-1.74295, 1.32921, 1.74106, -0.600985, 5.81909, 7.62212, 0, 0, 2.34313, 1.54262, 0.610485, -1.54348, 8.87857, -4.56224, -5.97584, -0.24762, 2.3976, -9.12828, 2.1544, -1.643, -5.04833, 0.24762, -2.3976, -0.244222, -8.32487, -0.798945, 11.2223, -1.90678, -0.754601, -0.988412}, {-1.74295, 1.32921, 1.74106, 0.200328, -1.9397, -2.54071, 0, 0, -7.02938, 1.54262, 0.610485, -1.54348, 1.90678, 0.754601, 0.988412, -1.04893, 10.1564, 10.407, 9.12619, -6.95984, -12.0126, 0.24762, -2.3976, -0.244222, -2.1544, 1.643, 5.04833, -8.07725, -3.19654, 5.18552}, {-1.74295, 1.32921, 1.74106, 0.200328, -1.9397, -2.54071, 8.97324e-16, 3.55112e-16, 2.34313, -4.62785, -1.83146, 4.63045, 1.90678, 0.754601, 0.988412, -0.24762, 2.3976, 0.244222, 2.1544, -1.643, -5.04833, 7.21941, -7.71444, -7.20847, -2.95571, 9.40178, 15.2112, -1.90678, -0.754601, -10.3609}, {0.403167, 4.33994, -4.33994, 1.56712, -1.12319e-15, 3.41061e-16, -0.345916, 1.4404, 0.569981, -1.08682, 0.00624416, -2.01663, -8.03944, 1.78815, -1.78815, -1.50949, -1.78044, -0.704535, 1.97736, -5.75389, -4.77261, 5.85676, 1.75546, 8.77105, -0.59369, -0.00771821, 2.49269, 1.77095, -1.78815, 1.78815}, {-0.134389, -1.44665, 1.44665, -4.70136, 1.67385e-15, 3.01891e-15, -0.345916, 1.4404, 0.569981, -1.08682, 0.00624416, -2.01663, -1.2334, 7.57474, -7.57474, -0.125826, -7.54205, -2.98446, 0.59369, 0.00771821, -2.49269, 1.50949, 1.78044, 0.704535, 3.75357, -0.0326948, 10.5592, 1.77095, -1.78815, 1.78815}, {-0.134389, -1.44665, 1.44665, 1.56712, 0, 0, 1.03775, -4.32121, -1.70994, -1.08682, 0.00624416, -2.01663, -1.77095, 1.78815, -1.78815, -7.77798, -1.78044, -0.704535, 1.13125, 5.79431, -8.27928, 1.50949, 1.78044, 0.704535, -0.59369, -0.00771821, 2.49269, 6.11822, -1.81313, 9.85467}, {-0.134389, -1.44665, 1.44665, 1.56712, -2.42925e-18, 7.84555e-16, -0.345916, 1.4404, 0.569981, 3.26045, -0.0187325, 6.04988, -1.77095, 1.78815, -1.78815, -1.50949, -1.78044, -0.704535, 0.59369, 0.00771821, -2.49269, 2.04705, 7.56702, -5.08205, -6.86218, -0.00771821, 2.49269, 3.15462, -7.54977, -0.491769}, {-7.02938, 5.36656, -7.02938, -2.34313, 0, 0, 0, 0, -2.34313, 1.02097e-11, 1.78885, 1.02102e-11, 9.3725, 2.21115, -2.89626, 2.89626, 0, 2.89626, -2.89626, 2.21115, 9.3725, -2.89626, -7.15542, -2.89626, 2.89626, -2.21115, -1.26205e-11, -1.26199e-11, -2.21115, 2.89626}, {2.34313, -1.78885, 2.34313, 7.02938, 0, 0, 0, 0, -2.34313, 1.02086e-11, 1.78885, 1.02066e-11, -9.3725, 9.36656, -12.2688, 2.89626, 0, 12.2688, -2.89626, 2.21115, 1.26154e-11, -2.89626, 4.44089e-16, -2.89626, 2.89626, -9.36656, -5.34422e-11, -1.26186e-11, -2.21115, 2.89626}, {2.34313, -1.78885, 2.34313, -2.34313, 0, 0, 0, 0, 7.02938, 1.0206e-11, 1.78885, 1.02081e-11, 1.26148e-11, 2.21115, -2.89626, 12.2688, 0, 2.89626, -12.2688, 9.36656, -9.3725, -2.89626, 4.44089e-16, -2.89626, 2.89626, -2.21115, -1.26179e-11, -5.34395e-11, -9.36656, 2.89626}, {2.34313, -1.78885, 2.34313, -2.34313, 0, 0, 0, 0, -2.34313, -3.06361e-11, -5.36656, -3.06329e-11, 1.26222e-11, 2.21115, -2.89626, 2.89626, 0, 2.89626, -2.89626, 2.21115, 1.26209e-11, -12.2688, 7.15542, -12.2688, 12.2688, -2.21115, -1.26215e-11, -1.26228e-11, -2.21115, 12.2688}, {7.02938, 0, 8.88974e-16, 2.34566, -1.78885, -2.34313, -1.47457e-18, 1.04056e-15, 2.34313, -0.00253498, 1.78885, -1.02102e-11, -9.38578, 9.36656, 12.2688, -2.8994, 2.21115, -1.26206e-11, 2.89626, -4.88498e-15, -12.2688, 2.90954, -9.36656, 5.34614e-11, -2.89626, 8.88178e-16, 2.89626, 0.00313341, -2.21115, -2.89626}, {-2.34313, 0, 7.14229e-17, -7.03698, 5.36656, 7.02938, 0, 0, 2.34313, -0.00253498, 1.78885, -1.02097e-11, 9.36937, 2.21115, 2.89626, -2.8994, 2.21115, -9.3725, 2.89626, 0, -2.89626, 2.8994, -2.21115, 1.26197e-11, -2.88612, -7.15542, 2.89626, 0.00313341, -2.21115, -2.89626}, {-2.34313, 0, -3.09288e-16, 2.34566, -1.78885, -2.34313, 0, 0, -7.02938, -0.00253498, 1.78885, -1.02071e-11, -0.00313341, 2.21115, 2.89626, -12.282, 9.36656, 9.3725, 12.2688, 0, -2.89626, 2.8994, -2.21115, 1.2617e-11, -2.89626, 0, 2.89626, 0.0132733, -9.36656, -2.89626}, {-2.34313, -2.22045e-16, 6.36673e-16, 2.34566, -1.78885, -2.34313, -1.47457e-18, 1.04056e-15, 2.34313, 0.00760494, -5.36656, 3.06361e-11, -0.00313341, 2.21115, 2.89626, -2.8994, 2.21115, -1.26219e-11, 2.89626, -1.33227e-15, -2.89626, 12.2719, -2.21115, 1.26202e-11, -12.2789, 7.15542, 12.2688, 0.00313341, -2.21115, -12.2688}, {5.3029, -0.485897, 0.486322, 0.215713, 1.38996, 0.214498, 0.501223, -0.501223, -1.10401, 1.0507, -1.0507, 1.05162, 1.05543, -7.4781, -0.922752, -0.886182, -1.09853, 1.09949, -0.439523, 2.42424, 5.98103, -3.31661, 5.30132, -5.30596, -1.56537, -0.419345, -1.565, -1.91828, 1.91828, 0.0647586}, {-1.76763, 0.161966, -0.162107, -0.647139, -4.16987, -0.643495, 0.501223, -0.501223, -1.10401, 1.0507, -1.0507, 1.05162, 8.98882, -2.56614, 0.583671, -2.89107, 0.90636, 5.51552, 1.56537, 0.419345, 1.565, 0.886182, 1.09853, -1.09949, -5.76816, 3.78345, -5.77147, -1.91828, 1.91828, 0.0647586}, {-1.76763, 0.161966, -0.162107, 0.215713, 1.38996, 0.214498, -1.50367, 1.50367, 3.31202, 1.0507, -1.0507, 1.05162, 1.91828, -1.91828, -0.0647586, -1.74903, -6.65835, 0.2415, 8.63591, -0.228518, 2.21343, 0.886182, 1.09853, -1.09949, -1.56537, -0.419345, -1.565, -6.12107, 6.12107, -4.14171}, {-1.76763, 0.161966, -0.162107, 0.215713, 1.38996, 0.214498, 0.501223, -0.501223, -1.10401, -3.15209, 3.15209, -3.15485, 1.91828, -1.91828, -0.0647586, -0.886182, -1.09853, 1.09949, 1.56537, 0.419345, 1.565, 7.95672, 0.45067, -0.451064, -2.42822, -5.97917, -2.423, -3.92317, 3.92317, 4.48079}, {1.71308, 4.3282, 0.488804, 0.642112, 1.62234, -1.62234, 2.1437, 0.314496, -0.314496, -2.21478, -0.4941, 2.09977, -2.65632, -6.71135, 8.69607, -3.44345, -2.39406, 2.39406, -10.5187, 0.136594, 1.84812, 12.3026, 4.37046, -10.7931, 1.94393, -1.39458, -0.590137, 0.0878675, 0.222003, -2.20672}, {-0.571026, -1.44273, -0.162935, -1.92634, -4.86701, 4.86701, 2.1437, 0.314496, -0.314496, -2.21478, -0.4941, 2.09977, 2.19624, 5.54893, 2.85846, -12.0182, -3.65204, 3.65204, -1.94393, 1.39458, 0.590137, 3.44345, 2.39406, -2.39406, 10.8031, 0.581823, -8.98921, 0.0878675, 0.222003, -2.20672}, {-0.571026, -1.44273, -0.162935, 0.642112, 1.62234, -1.62234, -6.43109, -0.943488, 0.943488, -2.21478, -0.4941, 2.09977, -0.0878675, -0.222003, 2.20672, -6.0119, -8.88341, 8.88341, 0.340174, 7.16551, 1.24188, 3.44345, 2.39406, -2.39406, 1.94393, -1.39458, -0.590137, 8.947, 2.1984, -10.6058}, {-0.571026, -1.44273, -0.162935, 0.642112, 1.62234, -1.62234, 2.1437, 0.314496, -0.314496, 6.64435, 1.4823, -6.2993, -0.0878675, -0.222003, 2.20672, -3.44345, -2.39406, 2.39406, -1.94393, 1.39458, 0.590137, 5.72755, 8.16499, -1.74232, -0.624519, -7.88393, 5.89921, -8.48692, -1.03598, -0.948734}, {-4.62937, 4.62937, 1.83228, 0.198723, -0.198723, 1.94057, -1.74185, 0.136178, -1.32981, 0, 1.60567, 0, -2.94793, 2.94793, -9.40601, 1.90741, 0.0773091, -0.754941, 7.21302, 1.19437, 7.71791, -1.90741, -6.49998, 0.754941, -0.245635, -1.73908, -2.39867, 2.15304, -2.15304, 1.64373}, {1.54312, -1.54312, -0.61076, -0.596168, 0.596168, -5.82171, -1.74185, 0.136178, -1.32981, 6.94322e-16, 1.60567, 5.30079e-16, -8.32553, 8.32553, 0.799305, 8.87479, -0.467403, 4.5643, 0.245635, 1.73908, 2.39867, -1.90741, -0.0773091, 0.754941, -0.245635, -8.16175, -2.39867, 2.15304, -2.15304, 1.64373}, {1.54312, -1.54312, -0.61076, 0.198723, -0.198723, 1.94057, 5.22554, -0.408534, 3.98943, 0, 1.60567, 0, -2.15304, 2.15304, -1.64373, 1.11252, 0.872199, -8.51722, -5.92686, 7.91157, 4.84171, -1.90741, -0.0773091, 0.754941, -0.245635, -1.73908, -2.39867, 2.15304, -8.57571, 1.64373}, {1.54312, -1.54312, -0.61076, 0.198723, -0.198723, 1.94057, -1.74185, 0.136178, -1.32981, 0, -4.817, 0, -2.15304, 2.15304, -1.64373, 1.90741, 0.0773091, -0.754941, 0.245635, 1.73908, 2.39867, -8.0799, 6.09519, 3.19798, -1.04052, -0.94419, -10.1609, 9.12042, -2.69775, 6.96297}, {-1.38621, -1.33227e-15, 3.9353, 1.09414, 1.31177, 1.31177, 0.173581, -1.31177, 0, -1.72979, 0, 0, -6.30013, -6.86849, -5.24706, -1.56699, 4.44089e-16, -1.62143, -1.48003, 6.86849, 1.62143, 8.48614, -4.44089e-16, 1.62143, 0.785706, -1.62143, -1.62143, 1.92358, 1.62143, 0}, {0.462069, -5.96084e-17, -1.31177, -3.28242, -3.9353, -3.9353, 0.173581, -1.31177, 0, -1.72979, 2.81653e-16, 0, -3.77185, -1.62143, 5.24706, -2.26131, 5.24706, -1.62143, -0.785706, 1.62143, 1.62143, 1.56699, -2.22045e-16, 1.62143, 7.70486, -1.62143, -1.62143, 1.92358, 1.62143, 0}, {0.462069, -8.88178e-16, -1.31177, 1.09414, 1.31177, 1.31177, -0.520744, 3.9353, 0, -1.72979, 0, 0, -1.92358, -1.62143, 3.2565e-16, -5.94354, -5.24706, -6.86849, -2.63398, 1.62143, 6.86849, 1.56699, 1.11022e-15, 1.62143, 0.785706, -1.62143, -1.62143, 8.84273, 1.62143, 0}, {0.462069, 0, -1.31177, 1.09414, 1.31177, 1.31177, 0.173581, -1.31177, 0, 5.18937, 0, 0, -1.92358, -1.62143, 3.2565e-16, -1.56699, 0, -1.62143, -0.785706, 1.62143, 1.62143, -0.281287, 0, 6.86849, -3.59085, -6.86849, -6.86849, 1.22925, 6.86849, 0}, {-3.84404e-12, -3.9353, 2.80446, 1.44665, 0, 0.44688, -1.28111e-12, -1.31177, -0.870737, -1.44665, 0, 1.35868, -7.57474, -1.62143, -1.18439, -1.78815, 1.62143, 0.523916, 5.12412e-12, 5.24706, 5.71474, 7.57474, -1.62143, -5.95862, 2.22045e-16, 0, -2.23179, 1.78815, 1.62143, -0.603126}, {1.2812e-12, 1.31177, -0.934819, -4.33994, -8.15796e-16, -1.34064, -1.28111e-12, -1.31177, -0.870737, -1.44665, -1.24937e-16, 1.35868, -1.78815, -6.86849, 4.3424, -1.78815, 6.86849, 4.00686, 0, -1.43955e-16, 2.23179, 1.78815, -1.62143, -0.523916, 5.78659, 3.18053e-16, -7.66649, 1.78815, 1.62143, -0.603126}, {1.28053e-12, 1.31177, -0.934819, 1.44665, 0, 0.44688, 3.84227e-12, 3.9353, 2.61221, -1.44665, 0, 1.35868, -1.78815, -1.62143, 0.603126, -7.57474, 1.62143, -1.2636, -5.12124e-12, -5.24706, 5.97107, 1.78815, -1.62143, -0.523916, -4.44089e-16, 0, -2.23179, 7.57474, 1.62143, -6.03783}, {1.28098e-12, 1.31177, -0.934819, 1.44665, 0, 0.44688, -1.281e-12, -1.31177, -0.870737, 4.33994, 0, -4.07603, -1.78815, -1.62143, 0.603126, -1.78815, 1.62143, 0.523916, 0, -3.2565e-16, 2.23179, 1.78815, -6.86849, 3.21536, -5.78659, 0, -4.01931, 1.78815, 6.86849, 2.87982}, {5.36291, -5.36619, -5.37088, 3.64451, -0.373213, -0.376399, -1.85687, 0.190152, -1.41389, 0, -1.60567, 0, -16.8733, -0.256821, -0.242074, -2.20964, 0.226277, 2.21292, 11.9323, -3.20664, 5.19032, 2.20964, 6.1964, -2.21292, -4.50486, 2.44603, 0.465254, 2.29522, 1.74967, 1.74767}, {-1.78764, 1.78873, 1.79029, -10.9335, 1.11964, 1.1292, -1.85687, 0.190152, -1.41389, 0, -1.60567, 0, 4.85533, -8.90459, -8.90884, 5.21784, -0.53433, 7.8685, 4.50486, -2.44603, -0.465254, 2.20964, -0.226277, -2.21292, -4.50486, 8.8687, 0.465254, 2.29522, 1.74967, 1.74767}, {-1.78764, 1.78873, 1.79029, 3.64451, -0.373213, -0.376399, 5.57061, -0.570455, 4.24168, 0, -1.60567, 0, -2.29522, -1.74967, -1.74767, -16.7877, 1.71913, 3.71852, 11.6554, -9.60095, -7.62642, 2.20964, -0.226277, -2.21292, -4.50486, 2.44603, 0.465254, 2.29522, 8.17235, 1.74767}, {-1.78764, 1.78873, 1.79029, 3.64451, -0.373213, -0.376399, -1.85687, 0.190152, -1.41389, 0, 4.817, 0, -2.29522, -1.74967, -1.74767, -2.20964, 0.226277, 2.21292, 4.50486, -2.44603, -0.465254, 9.36019, -7.3812, -9.37409, -19.0829, 3.93889, 1.97085, 9.72271, 0.989068, 7.40324}, {-4.90664, -4.91093, -4.90664, 0.802238, -0.802728, -0.80343, -1.63555, -0.0313083, -1.63555, -0.802238, -0.80294, 0.80343, -6.22222, 2.17973, 2.18516, 1.03003, 1.03093, 3.01474, 6.54219, -1.85948, 6.54219, 2.17893, 2.18083, -6.22846, -3.78586e-14, 1.98471, 3.79696e-14, 3.01327, 1.03119, 1.02855}, {1.63555, 1.63698, 1.63555, -2.40672, 2.40819, 2.41029, -1.63555, -0.0313083, -1.63555, -0.802238, -0.80294, 0.80343, -9.55546, -7.57909, -7.57074, 7.57221, 1.15616, 9.55693, 3.71925e-14, -1.98471, -3.81917e-14, -1.03003, -1.03093, -3.01474, 3.20895, 5.19647, -3.21372, 3.01327, 1.03119, 1.02855}, {1.63555, 1.63698, 1.63555, 0.802238, -0.802728, -0.80343, 4.90664, 0.0939249, 4.90664, -0.802238, -0.80294, 0.80343, -3.01327, -1.03119, -1.02855, -2.17893, 4.24184, 6.22846, -6.54219, -8.53262, -6.54219, -1.03003, -1.03093, -3.01474, -3.78586e-14, 1.98471, 3.80806e-14, 6.22222, 4.24295, -2.18516}, {1.63555, 1.63698, 1.63555, 0.802238, -0.802728, -0.80343, -1.63555, -0.0313083, -1.63555, 2.40672, 2.40882, -2.41029, -3.01327, -1.03119, -1.02855, 1.03003, 1.03093, 3.01474, 3.73035e-14, -1.98471, -3.83027e-14, -7.57221, -7.57883, -9.55693, -3.20895, 5.19563, 3.21372, 9.55546, 1.15642, 7.57074}, {0.433524, 4.35281, -4.30748, -1.58383, 1.03002, -2.49725, 0.961132, -0.582294, -1.46836, 0.767201, 1.00321, 2.52978, 8.47164, -3.5998, 11.301, 0.769691, -0.553419, 4.90175, -4.85393, 4.84239, 5.91364, -3.83849, -3.45943, -15.0209, 1.0094, -2.51321, -0.0402101, -2.13634, -0.520284, -1.31199}, {-0.144508, -1.45094, 1.43583, 4.75148, -3.09006, 7.49174, 0.961132, -0.582294, -1.46836, 0.767201, 1.00321, 2.52978, 2.71437, 6.32404, -4.43132, -3.07484, 1.77576, 10.7752, -1.0094, 2.51321, 0.0402101, -0.769691, 0.553419, -4.90175, -2.0594, -6.52607, -10.1593, -2.13634, -0.520284, -1.31199}, {-0.144508, -1.45094, 1.43583, -1.58383, 1.03002, -2.49725, -2.8834, 1.74688, 4.40507, 0.767201, 1.00321, 2.52978, 2.13634, 0.520284, 1.31199, 7.10499, -4.6735, 14.8907, -0.431372, 8.31697, -5.70309, -0.769691, 0.553419, -4.90175, 1.0094, -2.51321, -0.0402101, -5.20514, -4.53314, -11.4311}, {-0.144508, -1.45094, 1.43583, -1.58383, 1.03002, -2.49725, 0.961132, -0.582294, -1.46836, -2.3016, -3.00964, -7.58933, 2.13634, 0.520284, 1.31199, 0.769691, -0.553419, 4.90175, -1.0094, 2.51321, 0.0402101, -0.191659, 6.35717, -10.6451, 7.3447, -6.63329, 9.94877, -5.98087, 1.80889, 4.56144}, {-5.22554, 3.98943, -3.78662, 0, 0, -1.80556, -0.198723, 1.94057, 0.386742, -1.54312, -0.61076, 0.156608, -2.15304, 1.64373, 7.89384, 0.245635, -2.39867, 1.75375, -1.11252, -8.51722, -3.58518, 5.92686, 4.84171, -2.38018, 1.90741, 0.754941, 2.03821, 2.15304, -1.64373, -0.671617}, {1.74185, -1.32981, 1.26221, 0, 0, 5.41667, -0.198723, 1.94057, 0.386742, -1.54312, -0.61076, 0.156608, -9.12042, 6.96297, -4.37721, 1.04052, -10.1609, 0.206785, -1.90741, -0.754941, -2.03821, -0.245635, 2.39867, -1.75375, 8.0799, 3.19798, 1.41178, 2.15304, -1.64373, -0.671617}, {1.74185, -1.32981, 1.26221, 0, 0, -1.80556, 0.596168, -5.82171, -1.16022, -1.54312, -0.61076, 0.156608, -2.15304, 1.64373, 0.671617, 0.245635, -2.39867, 8.97597, -8.87479, 4.5643, -7.08704, -0.245635, 2.39867, -1.75375, 1.90741, 0.754941, 2.03821, 8.32553, 0.799305, -1.29805}, {1.74185, -1.32981, 1.26221, 0, 0, -1.80556, -0.198723, 1.94057, 0.386742, 4.62937, 1.83228, -0.469823, -2.15304, 1.64373, 0.671617, 0.245635, -2.39867, 1.75375, -1.90741, -0.754941, -2.03821, -7.21302, 7.71791, -6.80258, 1.90741, 0.754941, 9.26043, 2.94793, -9.40601, -2.21858}, {2.47366, -6.0686, -0.0191747, -0.141226, -1.44665, 1.44665, 1.40644, 1.00594e-16, 2.53667e-16, -0.440661, -0.57622, -1.45304, 1.75867, 5.07434, -7.58264, -1.56389, 1.78815, -1.78815, -6.34501, -2.5004, -0.0079004, 3.32653, 0.516725, 7.60031, 0.719252, 2.5004, 0.0079004, -1.19377, 0.712247, 1.79605}, {-0.824552, 2.02287, 0.00639156, 0.423679, 4.33994, -4.33994, 1.40644, 3.01783e-16, 7.61e-16, -0.440661, -0.57622, -1.45304, 4.49197, -8.80371, -1.82162, -7.18964, 1.78815, -1.78815, -0.719252, -2.5004, -0.0079004, 1.56389, -1.78815, 1.78815, 2.48189, 4.80528, 5.82005, -1.19377, 0.712247, 1.79605}, {-0.824552, 2.02287, 0.00639156, -0.141226, -1.44665, 1.44665, -4.21932, 0, 0, -0.440661, -0.57622, -1.45304, 1.19377, -0.712247, -1.79605, -0.998983, 7.57474, -7.57474, 2.57896, -10.5919, -0.0334666, 1.56389, -1.78815, 1.78815, 0.719252, 2.5004, 0.0079004, 0.568875, 3.01713, 7.60821}, {-0.824552, 2.02287, 0.00639156, -0.141226, -1.44665, 1.44665, 1.40644, -3.01783e-16, -7.61e-16, 1.32198, 1.72866, 4.35912, 1.19377, -0.712247, -1.79605, -1.56389, 1.78815, -1.78815, -0.719252, -2.5004, -0.0079004, 4.8621, -9.87962, 1.76259, 1.28416, 8.28699, -5.77869, -6.81952, 0.712247, 1.79605}, {-5.82171, -0.596168, -7.61729, 0, 0, -2.34313, -0.61076, 1.54312, 1.54399, -1.32981, -1.74185, -1.73996, -2.39867, -0.245635, 9.13027, 0.754941, -1.90741, 0.987787, 0.799305, -8.32553, -11.2229, 4.5643, 8.87479, 5.97206, 1.64373, 2.15304, 5.04697, 2.39867, 0.245635, 0.242235}, {1.94057, 0.198723, 2.5391, 0, 0, 7.02938, -0.61076, 1.54312, 1.54399, -1.32981, -1.74185, -1.73996, -10.1609, -1.04052, -10.3986, 3.19798, -8.0799, -5.18817, -1.64373, -2.15304, -5.04697, -0.754941, 1.90741, -0.987787, 6.96297, 9.12042, 12.0068, 2.39867, 0.245635, 0.242235}, {1.94057, 0.198723, 2.5391, 0, 0, -2.34313, 1.83228, -4.62937, -4.63197, -1.32981, -1.74185, -1.73996, -2.39867, -0.245635, -0.242235, 0.754941, -1.90741, 10.3603, -9.40601, -2.94793, -15.2034, -0.754941, 1.90741, -0.987787, 1.64373, 2.15304, 5.04697, 7.71791, 7.21302, 7.20208}, {1.94057, 0.198723, 2.5391, 0, 0, -2.34313, -0.61076, 1.54312, 1.54399, 3.98943, 5.22554, 5.21989, -2.39867, -0.245635, -0.242235, 0.754941, -1.90741, 0.987787, -1.64373, -2.15304, -5.04697, -8.51722, 1.11252, -11.1442, 1.64373, 2.15304, 14.4195, 4.84171, -5.92686, -5.93372}, {7.02938, 8.88178e-16, -8.88178e-16, 1.54312, -1.54312, -0.61076, 2.54185, -0.198723, 1.94057, -1.74185, 1.74185, -1.32981, -5.18364, 8.0799, 3.19798, -5.0493, 2.15304, -1.64373, -10.413, 1.04052, -10.1609, 12.0167, -9.12042, 6.96297, 0.245635, -0.245635, 2.39867, -0.988857, -1.90741, -0.754941}, {-2.34313, 0, -4.44089e-16, -4.62937, 4.62937, 1.83228, 2.54185, -0.198723, 1.94057, -1.74185, 1.74185, -1.32981, 10.3614, 1.90741, 0.754941, -15.2167, 2.94793, -9.40601, -0.245635, 0.245635, -2.39867, 5.0493, -2.15304, 1.64373, 7.21302, -7.21302, 7.71791, -0.988857, -1.90741, -0.754941}, {-2.34313, 2.22045e-16, 0, 1.54312, -1.54312, -0.61076, -7.62554, 0.596168, -5.82171, -1.74185, 1.74185, -1.32981, 0.988857, 1.90741, 0.754941, -11.2218, 8.32553, 0.799305, 9.12687, 0.245635, -2.39867, 5.0493, -2.15304, 1.64373, 0.245635, -0.245635, 2.39867, 5.97853, -8.87479, 4.5643}, {-2.34313, 0, -2.22045e-16, 1.54312, -1.54312, -0.61076, 2.54185, -0.198723, 1.94057, 5.22554, -5.22554, 3.98943, 0.988857, 1.90741, 0.754941, -5.0493, 2.15304, -1.64373, -0.245635, 0.245635, -2.39867, 14.4218, -2.15304, 1.64373, -5.92686, 5.92686, 4.84171, -11.1562, -1.11252, -8.51722}, {9.45441, 8.88178e-16, 0, -1.41486, -1.85814, 1.41539, 2.77696, 3.64699, 0.373467, 1.78937, -1.78885, -1.78885, 11.3037, 9.72932, -7.41106, -1.68365, -2.21115, -2.21115, -10.6449, -19.0959, -1.9555, -5.47381, 9.36656, 9.36656, -0.46292, 4.50793, 0.461631, -5.64429, -2.29678, 1.74951}, {-3.15147, 8.88178e-16, 4.44089e-16, 4.24457, 5.57441, -4.24616, 2.77696, 3.64699, 0.373467, 1.78937, -1.78885, -1.78885, 18.2502, 2.29678, -1.74951, -12.7915, -16.7991, -3.70501, 0.46292, -4.50793, -0.461631, 1.68365, 2.21115, 2.21115, -7.62038, 11.6633, 7.61705, -5.64429, -2.29678, 1.74951}, {-3.15147, 4.44089e-16, 2.22045e-16, -1.41486, -1.85814, 1.41539, -8.33088, -10.941, -1.1204, 1.78937, -1.78885, -1.78885, 5.64429, 2.29678, -1.74951, 3.97577, 5.2214, -7.87269, 13.0688, -4.50793, -0.461631, 1.68365, 2.21115, 2.21115, -0.46292, 4.50793, 0.461631, -12.8018, 4.85864, 8.90493}, {-3.15147, -2.22045e-16, 0, -1.41486, -1.85814, 1.41539, 2.77696, 3.64699, 0.373467, -5.3681, 5.36656, 5.36656, 5.64429, 2.29678, -1.74951, -1.68365, -2.21115, -2.21115, 0.46292, -4.50793, -0.461631, 14.2895, 2.21115, 2.21115, 5.1965, 11.9405, -5.19992, -16.7521, -16.8847, 0.255645}, {-1.04981, -4.33994, -1.71772, -1.16436, 0, 0, 0.183612, -1.44665, 1.44665, 0.630806, -1.58777e-12, -2.01922, 5.6641, -1.78815, -0.707741, 1.21227, 1.78815, -1.78815, -1.39395, 5.78659, -8.28248, -3.73549, -1.78815, 9.86504, 0.659504, 1.96259e-12, 2.4959, -1.00668, 1.78815, 0.707741}, {0.349938, 1.44665, 0.572575, 3.49307, 0, 0, 0.183612, -1.44665, 1.44665, 0.630806, -1.5874e-12, -2.01922, -0.393077, -7.57474, -2.99804, 0.47782, 7.57474, -7.57474, -0.659504, -1.9625e-12, -2.4959, -1.21227, -1.78815, 1.78815, -1.86372, 8.31176e-12, 10.5728, -1.00668, 1.78815, 0.707741}, {0.349938, 1.44665, 0.572575, -1.16436, 0, 0, -0.550835, 4.33994, -4.33994, 0.630806, -1.58632e-12, -2.01922, 1.00668, -1.78815, -0.707741, 5.86969, 1.78815, -1.78815, -2.05926, -5.78659, -4.7862, -1.21227, -1.78815, 1.78815, 0.659504, 1.9608e-12, 2.4959, -3.5299, 1.78815, 8.78463}, {0.349938, 1.44665, 0.572575, -1.16436, 0, 0, 0.183612, -1.44665, 1.44665, -1.89242, 4.76004e-12, 6.05767, 1.00668, -1.78815, -0.707741, 1.21227, 1.78815, -1.78815, -0.659504, -1.9616e-12, -2.4959, -2.61202, -7.57474, -0.502145, 5.31693, 1.96124e-12, 2.4959, -1.74112, 7.57474, -5.07885}, {-5.36656, 5.36656, -5.36656, 1.85814, -0.190281, -1.41539, 0, 1.60567, 0, -3.64699, 0.373467, -0.373467, -11.9405, 3.20747, 5.19992, -2.29678, -1.74951, 1.74951, -2.21115, -6.19624, -2.21115, 16.8847, 0.255645, -0.255645, 2.21115, -0.226431, 2.21115, 4.50793, -2.44635, 0.461631}, {1.78885, -1.78885, 1.78885, -5.57441, 0.570843, 4.24616, 1.45374e-15, 1.60567, 1.48869e-16, -3.64699, 0.373467, -0.373467, -11.6633, 9.60176, -7.61705, -2.29678, -8.17219, 1.74951, -2.21115, 0.226431, -2.21115, 2.29678, 1.74951, -1.74951, 16.7991, -1.7203, 3.70501, 4.50793, -2.44635, 0.461631}, {1.78885, -1.78885, 1.78885, 1.85814, -0.190281, -1.41539, 0, -4.817, 0, -3.64699, 0.373467, -0.373467, -4.50793, 2.44635, -0.461631, -9.72932, -0.988391, 7.41106, -9.36656, 7.38185, -9.36656, 2.29678, 1.74951, -1.74951, 2.21115, -0.226431, 2.21115, 19.0959, -3.94022, 1.9555}, {1.78885, -1.78885, 1.78885, 1.85814, -0.190281, -1.41539, 0, 1.60567, 0, 10.941, -1.1204, 1.1204, -4.50793, 2.44635, -0.461631, -2.29678, -1.74951, 1.74951, -2.21115, 0.226431, -2.21115, -4.85864, 8.90493, -8.90493, -5.2214, 0.534693, 7.87269, 4.50793, -8.86902, 0.461631}, {-2.3518, -6.05767, 5.91882e-12, 0.531029, -0.572575, 1.44665, -0.258935, -1.44665, -1.44665, -1.05603, 0, 0, -3.7495, 0.502145, -7.57474, -0.336326, 2.4959, -2.43872e-12, 0.386809, 5.07885, 7.57474, 4.56043, -2.4959, 2.43872e-12, 0.648932, 0.707741, -1.78815, 1.62538, 1.78815, 1.78815}, {0.783932, 2.01922, -1.97264e-12, -1.59309, 1.71772, -4.33994, -0.258935, -1.44665, -1.44665, -1.05603, 0, 0, -4.76111, -9.86504, -1.78815, 0.699414, 8.28248, 5.78659, -0.648932, -0.707741, 1.78815, 0.336326, -2.4959, 2.43827e-12, 4.87303, 0.707741, -1.78815, 1.62538, 1.78815, 1.78815}, {0.783932, 2.01922, -1.9722e-12, 0.531029, -0.572575, 1.44665, 0.776805, 4.33994, 4.33994, -1.05603, 0, 0, -1.62538, -1.78815, -1.78815, -2.46044, 4.7862, -5.78659, -3.78466, -8.78463, 1.78815, 0.336326, -2.4959, 2.43783e-12, 0.648932, 0.707741, -1.78815, 5.84948, 1.78815, 1.78815}, {0.783932, 2.01922, -1.97309e-12, 0.531029, -0.572575, 1.44665, -0.258935, -1.44665, -1.44665, 3.16808, 0, 0, -1.62538, -1.78815, -1.78815, -0.336326, 2.4959, -2.43894e-12, -0.648932, -0.707741, 1.78815, -2.7994, -10.5728, 1.03313e-11, -1.47518, 2.99804, -7.57474, 2.66112, 7.57474, 7.57474}, {-5.36656, -5.36656, -5.36656, 2.778, -3.64699, -0.373467, -1.41539, 1.85814, -1.41539, -3.15147, 0, 0, -16.7569, 16.8847, -0.255645, -1.68428, 2.21115, 2.21115, 5.19992, -11.9405, 5.19992, 14.2902, -2.21115, -2.21115, 0.461631, 4.50793, 0.461631, 5.64494, -2.29678, 1.74951}, {1.78885, 1.78885, 1.78885, -8.334, 10.941, 1.1204, -1.41539, 1.85814, -1.41539, -3.15147, 0, 0, -12.8004, -4.85864, -8.90493, 3.97726, -5.2214, 7.87269, -0.461631, -4.50793, -0.461631, 1.68428, -2.21115, -2.21115, 13.0675, 4.50793, 0.461631, 5.64494, -2.29678, 1.74951}, {1.78885, 1.78885, 1.78885, 2.778, -3.64699, -0.373467, 4.24616, -5.57441, 4.24616, -3.15147, 0, 0, -5.64494, 2.29678, -1.74951, -12.7963, 16.7991, 3.70501, -7.61705, -11.6633, -7.61705, 1.68428, -2.21115, -2.21115, 0.461631, 4.50793, 0.461631, 18.2508, -2.29678, 1.74951}, {1.78885, 1.78885, 1.78885, 2.778, -3.64699, -0.373467, -1.41539, 1.85814, -1.41539, 9.45441, 0, 0, -5.64494, 2.29678, -1.74951, -1.68428, 2.21115, 2.21115, -0.461631, -4.50793, -0.461631, -5.47113, -9.36656, -9.36656, -10.6504, 19.0959, 1.9555, 11.3065, -9.72932, 7.41106}, {0.408534, -3.98943, 5.22554, 1.54312, 0.61076, 1.54312, 0.198723, -1.94057, 0.198723, -1.60567, 0, 0, -7.91157, -4.84171, -5.92686, -2.15304, 1.64373, -2.15304, -0.872199, 8.51722, 1.11252, 8.57571, -1.64373, 2.15304, 0.0773091, -0.754941, -1.90741, 1.73908, 2.39867, -0.245635}, {-0.136178, 1.32981, -1.74185, -4.62937, -1.83228, -4.62937, 0.198723, -1.94057, 0.198723, -1.60567, 0, 0, -1.19437, -7.71791, 7.21302, -2.94793, 9.40601, -2.94793, -0.0773091, 0.754941, 1.90741, 2.15304, -1.64373, 2.15304, 6.49998, -0.754941, -1.90741, 1.73908, 2.39867, -0.245635}, {-0.136178, 1.32981, -1.74185, 1.54312, 0.61076, 1.54312, -0.596168, 5.82171, -0.596168, -1.60567, 0, 0, -1.73908, -2.39867, 0.245635, -8.32553, -0.799305, -8.32553, 0.467403, -4.5643, 8.87479, 2.15304, -1.64373, 2.15304, 0.0773091, -0.754941, -1.90741, 8.16175, 2.39867, -0.245635}, {-0.136178, 1.32981, -1.74185, 1.54312, 0.61076, 1.54312, 0.198723, -1.94057, 0.198723, 4.817, 0, 0, -1.73908, -2.39867, 0.245635, -2.15304, 1.64373, -2.15304, -0.0773091, 0.754941, 1.90741, 2.69775, -6.96297, 9.12042, -6.09519, -3.19798, -8.0799, 0.94419, 10.1609, -1.04052}, {-1.29949, 3.9353, 2.21079, 1.70046, 1.31177, -0.409533, -0.573592, 0, 1.62837, -1.56004, 0, -0.481907, -9.43917, -5.24706, 3.05524, -1.39289, -1.62143, -1.50656, 2.46795, 1.62143, -7.61536, 7.63304, 1.62143, 3.43419, -0.173579, -1.62143, 1.10188, 2.63731, 0, -1.4171}, {0.433164, -1.31177, -0.736929, -5.10139, -3.9353, 1.2286, -0.573592, 0, 1.62837, -1.56004, 0, -0.481907, -4.36997, 5.24706, 4.36482, 0.901477, -1.62143, -8.02004, 0.173579, 1.62143, -1.10188, 1.39289, 1.62143, 1.50656, 6.06657, -1.62143, 3.02951, 2.63731, 0, -1.4171}, {0.433164, -1.31177, -0.736929, 1.70046, 1.31177, -0.409533, 1.72078, 0, -4.88511, -1.56004, 0, -0.481907, -2.63731, 3.2565e-16, 1.4171, -8.19475, -6.86849, 0.131566, -1.55908, 6.86849, 1.84584, 1.39289, 1.62143, 1.50656, -0.173579, -1.62143, 1.10188, 8.87746, 0, 0.510523}, {0.433164, -1.31177, -0.736929, 1.70046, 1.31177, -0.409533, -0.573592, 0, 1.62837, 4.68011, 0, 1.44572, -2.63731, 3.2565e-16, 1.4171, -1.39289, -1.62143, -1.50656, 0.173579, 1.62143, -1.10188, -0.339765, 6.86849, 4.45428, -6.97544, -6.86849, 2.74001, 4.93168, 0, -7.93058}, {10.941, 1.1204, -5.07489, 1.78885, 1.78885, -0.204309, 0, 0, -2.39759, 1.85814, -1.41539, 0.910268, -4.85864, -8.90493, -1.02119, -2.21115, -2.21115, 3.21612, 4.50793, 0.461631, 10.463, -5.2214, 7.87269, -6.8572, -4.50793, -0.461631, -0.872613, -2.29678, 1.74951, 1.83843}, {-3.64699, -0.373467, 1.69163, -5.36656, -5.36656, 0.612928, 0, 0, -2.39759, 1.85814, -1.41539, 0.910268, 16.8847, -0.255645, -8.60495, -2.21115, -2.21115, 12.8065, 4.50793, 0.461631, 0.872613, 2.21115, 2.21115, -3.21612, -11.9405, 5.19992, -4.51368, -2.29678, 1.74951, 1.83843}, {-3.64699, -0.373467, 1.69163, 1.78885, 1.78885, -0.204309, 0, 0, 7.19277, 1.85814, -1.41539, 0.910268, 2.29678, -1.74951, -1.83843, -9.36656, -9.36656, 4.03336, 19.0959, 1.9555, -5.89391, 2.21115, 2.21115, -3.21612, -4.50793, -0.461631, -0.872613, -9.72932, 7.41106, -1.80264}, {-3.64699, -0.373467, 1.69163, 1.78885, 1.78885, -0.204309, 0, 0, -2.39759, -5.57441, 4.24616, -2.7308, 2.29678, -1.74951, -1.83843, -2.21115, -2.21115, 3.21612, 4.50793, 0.461631, 0.872613, 16.7991, 3.70501, -9.98265, -11.6633, -7.61705, -0.0553752, -2.29678, 1.74951, 11.4288}, {-5.36656, 5.36656, -5.36656, 3.86512e-15, 3.15147, 1.39953e-15, -3.15147, 0, 0, 1.36261, -1.36261, -1.78885, -2.21115, -14.2902, -2.21115, 3.89543, -3.89543, -1.72992e-15, 14.2902, 2.21115, -2.21115, -9.34589, 9.34589, 7.15542, -1.68428, -2.21115, 2.21115, 2.21115, 1.68428, 2.21115}, {1.78885, -1.78885, 1.78885, -1.0595e-14, -9.45441, 4.1986e-15, -3.15147, 0, 0, 1.36261, -1.36261, -1.78885, -9.36656, 5.47113, -9.36656, 16.5013, -3.89543, 1.72992e-15, 1.68428, 2.21115, -2.21115, -3.89543, 3.89543, -2.17401e-15, -7.13474, 3.23931, 9.36656, 2.21115, 1.68428, 2.21115}, {1.78885, -1.78885, 1.78885, 0, 3.15147, 0, 9.45441, 0, 0, 1.36261, -1.36261, -1.78885, -2.21115, -1.68428, -2.21115, 3.89543, -16.5013, 0, -5.47113, 9.36656, -9.36656, -3.89543, 3.89543, -4.44089e-16, -1.68428, -2.21115, 2.21115, -3.23931, 7.13474, 9.36656}, {1.78885, -1.78885, 1.78885, -1.06606e-15, 3.15147, 1.39953e-15, -3.15147, 0, 0, -4.08784, 4.08784, 5.36656, -2.21115, -1.68428, -2.21115, 3.89543, -3.89543, -1.72992e-15, 1.68428, 2.21115, -2.21115, -11.0508, 11.0508, -7.15542, -1.68428, -14.817, 2.21115, 14.817, 1.68428, 2.21115}, {-3.13871, 2.39624, 3.14224, -1.3586, 1.03722, -0.984492, 1.05172, 0.985921, 1.29286, -0.739357, -1.22439, 0.739047, 5.8205, -4.44365, 6.44954, 0.379324, -2.50074, -0.381162, -6.8001, -4.17504, -5.47482, 2.5781, 7.39832, -2.57503, 2.59322, 0.231359, 0.303387, -0.386102, 0.294769, -2.51157}, {1.04624, -0.798747, -1.04741, 4.0758, -3.11166, 2.95348, 1.05172, 0.985921, 1.29286, -0.739357, -1.22439, 0.739047, -3.79884, 2.90022, 6.70123, -3.82756, -6.44442, -5.5526, -2.59322, -0.231359, -0.303387, -0.379324, 2.50074, 0.381162, 5.55064, 5.12894, -2.6528, -0.386102, 0.294769, -2.51157}, {1.04624, -0.798747, -1.04741, -1.3586, 1.03722, -0.984492, -3.15516, -2.95776, -3.87858, -0.739357, -1.22439, 0.739047, 0.386102, -0.294769, 2.51157, 5.81372, -6.64962, 3.55681, -6.77816, 2.96363, 3.88627, -0.379324, 2.50074, 0.381162, 2.59322, 0.231359, 0.303387, 2.57132, 5.19235, -5.46776}, {1.04624, -0.798747, -1.04741, -1.3586, 1.03722, -0.984492, 1.05172, 0.985921, 1.29286, 2.21807, 3.67318, -2.21714, 0.386102, -0.294769, 2.51157, 0.379324, -2.50074, -0.381162, -2.59322, -0.231359, -0.303387, -4.56427, 5.69573, 4.57082, 8.02762, -3.91752, 4.24135, -4.59298, -3.64891, -7.68301}, {3.49307, 0, -5.19009e-16, 0.460877, 0.572575, 1.44665, -0.183612, 1.44665, -1.44665, 0.88709, -2.01922, 1.97395e-12, -0.973962, -2.99804, -7.57474, -0.342719, -2.4959, 2.44027e-12, 2.40063, -7.57474, 7.57474, -3.20564, 10.5728, -1.03361e-11, -1.66618, 1.78815, -1.78815, -0.869547, 0.707741, 1.78815}, {-1.16436, 0, 2.63061e-17, -1.38263, -1.71772, -4.33994, -0.183612, 1.44665, -1.44665, 0.88709, -2.01922, 1.97018e-12, 5.52697, -0.707741, -1.78815, 0.391727, -8.28248, 5.78659, 1.66618, -1.78815, 1.78815, 0.342719, 2.4959, -2.43516e-12, -5.21454, 9.86504, -1.78815, -0.869547, 0.707741, 1.78815}, {-1.16436, 0, 1.0874e-16, 0.460877, 0.572575, 1.44665, 0.550835, -4.33994, 4.33994, 0.88709, -2.01922, 1.97254e-12, 0.869547, -0.707741, -1.78815, -2.18623, -4.7862, -5.78659, 6.3236, -1.78815, 1.78815, 0.342719, 2.4959, -2.43827e-12, -1.66618, 1.78815, -1.78815, -4.41791, 8.78463, 1.78815}, {-1.16436, 0, 2.47018e-16, 0.460877, 0.572575, 1.44665, -0.183612, 1.44665, -1.44665, -2.66127, 6.05767, -5.92185e-12, 0.869547, -0.707741, -1.78815, -0.342719, -2.4959, 2.44027e-12, 1.66618, -1.78815, 1.78815, 5.00014, 2.4959, -2.44081e-12, -3.50969, -0.502145, -7.57474, -0.135101, -5.07885, 7.57474}, {-4.817, 1.77636e-15, 1.9984e-15, -1.78885, 1.78885, -1.78885, -0.190167, 1.85702, 1.41407, 0.373353, -3.64588, 0.374783, 7.38185, -9.36656, 9.36656, 2.4462, -4.50655, 0.463257, -0.988987, -9.72349, -7.40418, -3.93962, 19.0901, -1.96239, 1.74966, 2.29541, 1.74789, -0.226431, 2.21115, -2.21115}, {1.60567, -4.44089e-16, -1.55431e-15, 5.36656, -5.36656, 5.36656, -0.190167, 1.85702, 1.41407, 0.373353, -3.64588, 0.374783, -6.19624, -2.21115, 2.21115, 3.20687, -11.9346, -5.19303, -1.74966, -2.29541, -1.74789, -2.4462, 4.50655, -0.463257, 0.256242, 16.8789, 0.248757, -0.226431, 2.21115, -2.21115}, {1.60567, 8.88178e-16, 0, -1.78885, 1.78885, -1.78885, 0.570501, -5.57107, -4.24221, 0.373353, -3.64588, 0.374783, 0.226431, -2.21115, 2.21115, 9.60162, -11.662, 7.61867, -8.17233, -2.29541, -1.74789, -2.4462, 4.50655, -0.463257, 1.74966, 2.29541, 1.74789, -1.71984, 16.7947, -3.71028}, {1.60567, -3.10862e-15, 1.11022e-16, -1.78885, 1.78885, -1.78885, -0.190167, 1.85702, 1.41407, -1.12006, 10.9376, -1.12435, 0.226431, -2.21115, 2.21115, 2.4462, -4.50655, 0.463257, -1.74966, -2.29541, -1.74789, -8.86888, 4.50655, -0.463257, 8.90507, -4.86001, 8.90331, 0.534237, -5.21694, -7.86743}, {-9.76996e-15, 1.33227e-14, -7.02938, 1.78885, -6.92972e-12, 0.00253498, -1.78885, 2.33948, -2.34566, 0, -2.33948, 0, -9.36656, 3.62896e-11, -2.90954, 3.9968e-15, -2.89175, 2.89626, 9.36656, -12.2497, 9.38578, -3.9968e-15, 12.2497, -2.89626, -2.21115, 2.89175, -0.00313341, 2.21115, -8.57092e-12, 2.8994}, {-1.9984e-15, 8.88178e-16, 2.34313, -5.36656, 2.07891e-11, -0.00760494, -1.78885, 2.33948, -2.34566, 0, -2.33948, 0, -2.21115, 8.55849e-12, -12.2719, 7.15542, -12.2497, 12.2789, 2.21115, -2.89175, 0.00313341, 2.66454e-15, 2.89175, -2.89626, -2.21115, 12.2497, -0.00313341, 2.21115, -8.56426e-12, 2.8994}, {4.21885e-15, -1.77636e-15, 2.34313, 1.78885, -6.9266e-12, 0.00253498, 5.36656, -7.01844, 7.03698, 0, -2.33948, 0, -2.21115, 8.56382e-12, -2.8994, -7.15542, -2.89175, 2.88612, 2.21115, -2.89175, -9.36937, -5.32907e-15, 2.89175, -2.89626, -2.21115, 2.89175, -0.00313341, 2.21115, 9.35791, 2.8994}, {0, 0, 2.34313, 1.78885, -6.92763e-12, 0.00253498, -1.78885, 2.33948, -2.34566, 0, 7.01844, 0, -2.21115, 8.56293e-12, -2.8994, 0, -2.89175, 2.89626, 2.21115, -2.89175, 0.00313341, 0, 2.89175, -12.2688, -9.36656, 2.89175, -0.0132733, 9.36656, -9.35791, 12.282}, {-2.1843e-11, 2.07647e-11, 5.36656, -2.34313, 0, 0, 0, 2.34313, 0, 2.34313, -2.34313, 1.78885, 12.2688, 8.55538e-12, 2.21115, 2.89626, -2.89626, 0, -8.99991e-12, -12.2688, 2.21115, -12.2688, 12.2688, -7.15542, 8.99991e-12, 2.89626, -2.21115, -2.89626, -8.55538e-12, -2.21115}, {7.27862e-12, -6.92069e-12, -1.78885, 7.02938, 0, 0, -1.36297e-15, 2.34313, -1.04056e-15, 2.34313, -2.34313, 1.78885, 2.89626, 3.62377e-11, 9.36656, 2.89626, -12.2688, 5.44843e-15, -8.99503e-12, -2.89626, 2.21115, -2.89626, 2.89626, -8.4211e-16, -9.3725, 12.2688, -9.36656, -2.89626, -8.55449e-12, -2.21115}, {7.2804e-12, -6.91935e-12, -1.78885, -2.34313, 0, 0, 0, -7.02938, 0, 2.34313, -2.34313, 1.78885, 2.89626, 8.55271e-12, 2.21115, 12.2688, -2.89626, 0, -3.81206e-11, -2.89626, 9.36656, -2.89626, 2.89626, 4.44089e-16, 8.99902e-12, 2.89626, -2.21115, -12.2688, 9.3725, -9.36656}, {7.27596e-12, -6.91802e-12, -1.78885, -2.34313, 0, 0, 0, 2.34313, 0, -7.02938, 7.02938, -5.36656, 2.89626, 8.55138e-12, 2.21115, 2.89626, -2.89626, 0, -8.99325e-12, -2.89626, 2.21115, -2.89626, 2.89626, 7.15542, 9.3725, 2.89626, -2.21115, -2.89626, -9.3725, -2.21115}, {6.33782, 3.11659, -8.32035, 1.25748, 1.89399, 2.48645, -0.601124, 0.601124, -3.34812, 1.45625, -1.45625, -1.91178, -3.97294, -8.63294, -16.4474, -0.811303, -3.08413, 1.06509, 5.75885, -1.86342, 14.1028, -5.01369, 8.90912, 6.58202, -3.35435, -0.541075, -0.71033, -1.05699, 1.05699, 6.50159}, {-2.11261, -1.03886, 2.77345, -3.77244, -5.68196, -7.45934, -0.601124, 0.601124, -3.34812, 1.45625, -1.45625, -1.91178, 9.50741, 3.09846, -17.5954, 1.59319, -5.48862, 14.4576, 3.35435, 0.541075, 0.71033, 0.811303, 3.08413, -1.06509, -9.17934, 5.28392, 6.93678, -1.05699, 1.05699, 6.50159}, {-2.11261, -1.03886, 2.77345, 1.25748, 1.89399, 2.48645, 1.80337, -1.80337, 10.0444, 1.45625, -1.45625, -1.91178, 1.05699, -1.05699, -6.50159, -5.84123, -10.6601, -8.8807, 11.8048, 4.69653, -10.3835, 0.811303, 3.08413, -1.06509, -3.35435, -0.541075, -0.71033, -6.88198, 6.88198, 14.1487}, {-2.11261, -1.03886, 2.77345, 1.25748, 1.89399, 2.48645, -0.601124, 0.601124, -3.34812, -4.36874, 4.36874, 5.73533, 1.05699, -1.05699, -6.50159, -0.811303, -3.08413, 1.06509, 3.35435, 0.541075, 0.71033, 9.26172, 7.23958, -12.1589, -8.38428, -8.11702, -10.6561, 1.34751, -1.34751, 19.8941}, {-4.24616, -5.57441, -4.24476, 0.373467, -3.64699, -2.77708, -1.78885, 1.78885, -1.78885, 0, 0, 3.15102, -3.70501, 16.7991, 12.7921, 1.74951, 2.29678, 5.64381, 7.61705, -11.6633, 7.61763, -1.74951, -2.29678, -18.2479, -0.461631, 4.50793, -0.462209, 2.21115, -2.21115, -1.68373}, {1.41539, 1.85814, 1.41492, -1.1204, 10.941, 8.33125, -1.78885, 1.78885, -1.78885, 1.39933e-15, -1.39933e-15, 3.15102, -7.87269, -5.2214, -3.97595, 8.90493, -4.85864, 12.7992, 0.461631, -4.50793, 0.462209, -1.74951, -2.29678, -5.64381, -0.461631, 4.50793, -13.0663, 2.21115, -2.21115, -1.68373}, {1.41539, 1.85814, 1.41492, 0.373467, -3.64699, -2.77708, 5.36656, -5.36656, 5.36656, 0, 0, 3.15102, -2.21115, 2.21115, 1.68373, 0.255645, 16.8847, 16.7521, -5.19992, -11.9405, -5.19747, -1.74951, -2.29678, -5.64381, -0.461631, 4.50793, -0.462209, 2.21115, -2.21115, -14.2878}, {1.41539, 1.85814, 1.41492, 0.373467, -3.64699, -2.77708, -1.78885, 1.78885, -1.78885, 0, 0, -9.45305, -2.21115, 2.21115, 1.68373, 1.74951, 2.29678, 5.64381, 0.461631, -4.50793, 0.462209, -7.41106, -9.72932, -11.3035, -1.9555, 19.0959, 10.6461, 9.36656, -9.36656, 5.47169}, {2.81917, 4.24616, 5.57441, -1.67083, -0.373467, 3.64699, 0.18745, 1.78885, -1.78885, 2.4231, 0, 0, 9.91012, 3.70501, -16.7991, 1.83355, -1.74951, -2.29678, 0.18006, -7.61705, 11.6633, -11.526, 1.74951, 2.29678, -0.929861, 0.461631, -4.50793, -3.22682, -2.21115, 2.21115}, {-0.939723, -1.41539, -1.85814, 5.01248, 1.1204, -10.941, 0.18745, 1.78885, -1.78885, 2.4231, -1.07607e-15, 1.07607e-15, 6.98571, 7.87269, 5.2214, 1.08375, -8.90493, 4.85864, 0.929861, -0.461631, 4.50793, -1.83355, 1.74951, 2.29678, -10.6223, 0.461631, -4.50793, -3.22682, -2.21115, 2.21115}, {-0.939723, -1.41539, -1.85814, -1.67083, -0.373467, 3.64699, -0.56235, -5.36656, 5.36656, 2.4231, 0, 0, 3.22682, 2.21115, -2.21115, 8.51686, -0.255645, -16.8847, 4.68875, 5.19992, 11.9405, -1.83355, 1.74951, 2.29678, -0.929861, 0.461631, -4.50793, -12.9192, -2.21115, 2.21115}, {-0.939723, -1.41539, -1.85814, -1.67083, -0.373467, 3.64699, 0.18745, 1.78885, -1.78885, -7.2693, 0, 0, 3.22682, 2.21115, -2.21115, 1.83355, -1.74951, -2.29678, 0.929861, -0.461631, 4.50793, 1.92534, 7.41106, 9.72932, 5.75345, 1.9555, -19.0959, -3.97662, -9.36656, 9.36656}, {-3.55271e-15, -7.99361e-15, -9.45441, -3.15147, 0, 0, 1.78937, -1.78885, -1.78885, 1.3621, 1.78885, -1.36261, 16.5013, -3.55271e-15, -3.89543, 1.68365, 2.21115, 2.21115, -9.36924, 9.36656, 5.47113, -7.13206, -9.36656, 3.23931, 2.21178, -2.21115, 1.68428, -3.89543, 3.55271e-15, 3.89543}, {-2.22045e-16, 2.88658e-15, 3.15147, 9.45441, 0, 0, 1.78937, -1.78885, -1.78885, 1.3621, 1.78885, -1.36261, 3.89543, -1.42109e-14, -16.5013, -5.47381, 9.36656, 9.36656, -2.21178, 2.21115, -1.68428, -1.68365, -2.21115, -2.21115, -3.23663, -9.36656, 7.13474, -3.89543, 3.55271e-15, 3.89543}, {2.22045e-16, 0, 3.15147, -3.15147, 0, 0, -5.3681, 5.36656, 5.36656, 1.3621, 1.78885, -1.36261, 3.89543, 0, -3.89543, 14.2895, 2.21115, 2.21115, -2.21178, 2.21115, -14.2902, -1.68365, -2.21115, -2.21115, 2.21178, -2.21115, 1.68428, -9.34384, -7.15542, 9.34589}, {8.88178e-16, 1.55431e-15, 3.15147, -3.15147, 0, 0, 1.78937, -1.78885, -1.78885, -4.08631, -5.36656, 4.08784, 3.89543, -2.22045e-15, -3.89543, 1.68365, 2.21115, 2.21115, -2.21178, 2.21115, -1.68428, -1.68365, -2.21115, -14.817, 14.8177, -2.21115, 1.68428, -11.0529, 7.15542, 11.0508}, {-5.22583, 5.22504, 3.98456, 2.34612, 2.92755e-15, 1.19114e-15, -2.54361, 0.198607, 1.93944, -1.54445, 1.54307, -0.611252, -14.4376, 2.15284, 1.64173, 0.244118, -0.245492, -2.39728, 11.1654, 1.11292, -8.51331, 5.93368, -5.9268, 4.84229, -0.990917, -1.90734, 0.755549, 5.05312, -2.15284, -1.64173}, {1.74194, -1.74168, -1.32819, -7.03835, -2.34918e-15, 4.45681e-15, -2.54361, 0.198607, 1.93944, -1.54445, 1.54307, -0.611252, -12.0209, 9.11956, 6.95448, 10.4186, -1.03992, -10.155, 0.990917, 1.90734, -0.755549, -0.244118, 0.245492, 2.39728, 5.18688, -8.07964, 3.20056, 5.05312, -2.15284, -1.64173}, {1.74194, -1.74168, -1.32819, 2.34612, 0, 0, 7.63084, -0.595821, -5.81832, -1.54445, 1.54307, -0.611252, -5.05312, 2.15284, 1.64173, -9.14035, -0.245492, -2.39728, -5.97686, 8.87406, 4.5572, -0.244118, 0.245492, 2.39728, -0.990917, -1.90734, 0.755549, 11.2309, -8.32513, 0.803277}, {1.74194, -1.74168, -1.32819, 2.34612, -8.98735e-16, 3.56012e-16, -2.54361, 0.198607, 1.93944, 4.63335, -4.62922, 1.83376, -5.05312, 2.15284, 1.64173, 0.244118, -0.245492, -2.39728, 0.990917, 1.90734, -0.755549, -7.21189, 7.21221, 7.71003, -10.3754, -1.90734, 0.755549, 15.2276, -2.94726, -9.39949}, {-9.45441, 1.33227e-14, -1.06581e-14, -1.78937, -1.78885, -1.78885, -1.3621, 1.78885, -1.36261, 0, 0, 3.15147, 5.47381, 9.36656, 9.36656, 3.89543, -5.32907e-15, 3.89543, 3.23663, -9.36656, 7.13474, -3.89543, 5.32907e-15, -16.5013, 2.21178, 2.21115, -1.68428, 1.68365, -2.21115, -2.21115}, {3.15147, 2.7318e-15, 0, 5.3681, 5.36656, 5.36656, -1.3621, 1.78885, -1.36261, 1.06566e-15, -1.39953e-15, 3.15147, -14.2895, 2.21115, 2.21115, 9.34384, -7.15542, 9.34589, -2.21178, -2.21115, 1.68428, -3.89543, -1.33227e-15, -3.89543, 2.21178, 2.21115, -14.2902, 1.68365, -2.21115, -2.21115}, {3.15147, 0, 2.22045e-15, -1.78937, -1.78885, -1.78885, 4.08631, -5.36656, 4.08784, 0, 0, 3.15147, -1.68365, 2.21115, 2.21115, 11.0529, 7.15542, 11.0508, -14.8177, -2.21115, 1.68428, -3.89543, 0, -3.89543, 2.21178, 2.21115, -1.68428, 1.68365, -2.21115, -14.817}, {3.15147, 0, 0, -1.78937, -1.78885, -1.78885, -1.3621, 1.78885, -1.36261, 0, 0, -9.45441, -1.68365, 2.21115, 2.21115, 3.89543, 0, 3.89543, -2.21178, -2.21115, 1.68428, -16.5013, 0, -3.89543, 9.36924, 9.36656, 5.47113, 7.13206, -9.36656, 3.23931}, {-7.03835, 0, -2.66454e-15, -2.34612, 2.34348, -1.78885, -1.03933e-11, 0.00114147, 1.78885, 0, -2.34462, 0, 9.38447, -12.2706, 9.36656, 2.89996, -2.89811, 1.33227e-15, -2.89996, -0.00597681, -9.36656, -2.89996, 12.2766, -1.33227e-15, 2.89996, 0.00141093, 2.21115, 1.28469e-11, 2.8967, -2.21115}, {2.34612, -3.9968e-15, 0, 7.03835, -7.03044, 5.36656, -1.03933e-11, 0.00114147, 1.78885, 0, -2.34462, 0, -9.38447, -2.8967, 2.21115, 2.89996, -2.90268, -7.15542, -2.89996, -0.00141093, -2.21115, -2.89996, 2.89811, 0, 2.89996, 9.37989, 2.21115, 1.28469e-11, 2.8967, -2.21115}, {2.34612, -1.77636e-15, 0, -2.34612, 2.34348, -1.78885, 3.11847e-11, -0.00342441, -5.36656, 0, -2.34462, 0, -1.28494e-11, -2.8967, 2.21115, 12.2844, -12.272, 7.15542, -12.2844, -0.00141093, -2.21115, -2.89996, 2.89811, 0, 2.89996, 0.00141093, 2.21115, 1.28488e-11, 12.2752, -2.21115}, {2.34612, 2.66454e-15, 0, -2.34612, 2.34348, -1.78885, -1.03918e-11, 0.00114147, 1.78885, 0, 7.03386, 0, -1.28455e-11, -2.8967, 2.21115, 2.89996, -2.89811, 0, -2.89996, -0.00141093, -2.21115, -12.2844, 2.89811, 0, 12.2844, -9.37251, 9.36656, 5.4412e-11, 2.89213, -9.36656}, {-4.44089e-16, 0, 5.41667, 2.01922, -1.97048e-12, 0.623753, -1.44665, -1.44665, 0.584061, -0.572575, 1.44665, 0.597742, -10.5728, 1.03177e-11, -1.03422, -0.707741, 1.78815, -1.49294, 7.57474, 7.57474, -0.826394, 2.99804, -7.57474, -0.898027, -1.78815, -1.78815, -1.50985, 2.4959, -2.43583e-12, -1.46079}, {-1.11022e-16, 2.22045e-16, -1.80556, -6.05767, 5.9153e-12, -1.87126, -1.44665, -1.44665, 0.584061, -0.572575, 1.44665, 0.597742, -2.4959, 2.43716e-12, 8.68301, 5.07885, 7.57474, -3.82918, 1.78815, 1.78815, 1.50985, 0.707741, -1.78815, 1.49294, 0.502145, -7.57474, -3.90082, 2.4959, -2.43716e-12, -1.46079}, {1.11022e-16, 0, -1.80556, 2.01922, -1.97103e-12, 0.623753, 4.33994, 4.33994, -1.75218, -0.572575, 1.44665, 0.597742, -2.4959, 2.43627e-12, 1.46079, -8.78463, 1.78815, -3.98795, 1.78815, 1.78815, 8.73207, 0.707741, -1.78815, 1.49294, -1.78815, -1.78815, -1.50985, 4.7862, -5.78659, -3.85176}, {-1.11022e-16, 2.22045e-16, -1.80556, 2.01922, -1.97085e-12, 0.623753, -1.44665, -1.44665, 0.584061, 1.71772, -4.33994, -1.79323, -2.4959, 2.43583e-12, 1.46079, -0.707741, 1.78815, -1.49294, 1.78815, 1.78815, 1.50985, 0.707741, -1.78815, 8.71516, -9.86504, -1.78815, -4.00486, 8.28248, 5.78659, -3.79703}, {8.56414, 1.25642, -1.25642, 2.63957, -0.971716, -0.633952, 1.54777, 0.0578944, 1.54777, -1.33263, 1.33263, -1.33263, -10.2923, 5.60564, 2.80174, -5.17584, 1.12955, -1.12955, -4.57563, 0.214536, -8.62192, 10.5064, -6.46006, 6.46006, -1.61547, -0.446113, 2.43083, -0.265934, -1.71878, -0.265934}, {-2.85471, -0.418807, 0.418807, -7.91871, 2.91515, 1.90186, 1.54777, 0.0578944, 1.54777, -1.33263, 1.33263, -1.33263, 11.6848, 3.39401, -1.4093, -11.3669, 0.897968, -7.32064, 1.61547, 0.446113, -2.43083, 5.17584, -1.12955, 1.12955, 3.71505, -5.77663, 7.76134, -0.265934, -1.71878, -0.265934}, {-2.85471, -0.418807, 0.418807, 2.63957, -0.971716, -0.633952, -4.64332, -0.173683, -4.64332, -1.33263, 1.33263, -1.33263, 0.265934, 1.71878, 0.265934, -15.7341, 5.01641, 1.40626, 13.0343, 2.12134, -4.10606, 5.17584, -1.12955, 1.12955, -1.61547, -0.446113, 2.43083, 5.06458, -7.0493, 5.06458}, {-2.85471, -0.418807, 0.418807, 2.63957, -0.971716, -0.633952, 1.54777, 0.0578944, 1.54777, 3.99789, -3.99789, 3.99789, 0.265934, 1.71878, 0.265934, -5.17584, 1.12955, -1.12955, 1.61547, 0.446113, -2.43083, 16.5947, 0.545684, -0.545684, -12.1737, 3.44075, 4.96664, -6.45703, -1.95036, -6.45703}, {-0.339403, 0.339403, -5.15641, -0.164984, -1.44068, -0.164984, 1.07377, 0.531894, -0.531894, -1.02192, 1.02192, -1.02192, 0.724024, 7.68336, -1.26069, -1.12333, 1.12333, 0.861388, -5.7622, -2.64519, 0.660475, 5.21103, -5.21103, 3.22631, 1.4671, 0.517615, 1.4671, -0.0640894, -1.92063, 1.92063}, {0.113134, -0.113134, 1.7188, 0.494951, 4.32205, 0.494951, 1.07377, 0.531894, -0.531894, -1.02192, 1.02192, -1.02192, -0.388448, 2.37316, -8.79583, -5.41842, -1.00425, 2.98896, -1.4671, -0.517615, -1.4671, 1.12333, -1.12333, -0.861388, 5.5548, -3.57008, 5.5548, -0.0640894, -1.92063, 1.92063}, {0.113134, -0.113134, 1.7188, -0.164984, -1.44068, -0.164984, -3.22132, -1.59568, 1.59568, -1.02192, 1.02192, -1.02192, 0.0640894, 1.92063, -1.92063, -0.463392, 6.88606, 1.52132, -1.91964, -0.0650781, -8.34231, 1.12333, -1.12333, -0.861388, 1.4671, 0.517615, 1.4671, 4.02361, -6.00832, 6.00832}, {0.113134, -0.113134, 1.7188, -0.164984, -1.44068, -0.164984, 1.07377, 0.531894, -0.531894, 3.06577, -3.06577, 3.06577, 0.0640894, 1.92063, -1.92063, -1.12333, 1.12333, 0.861388, -1.4671, -0.517615, -1.4671, 0.67079, -0.67079, -7.7366, 2.12703, 6.28035, 2.12703, -4.35919, -4.0482, 4.0482}, {-1.94182, 3.40923, 1.10711, 0.155006, 1.62575, -1.6184, 0.710689, -0.184627, 1.53026, -1.51297, -0.304717, 0.45717, -1.6117, -7.10787, 8.93018, -1.07006, -1.78133, 0.108939, -4.52129, 2.3714, -7.5564, 7.12193, 3.0002, -1.93762, 1.67853, -1.63289, 1.43535, 0.991672, 0.604862, -2.4566}, {0.647273, -1.13641, -0.369036, -0.465018, -4.87726, 4.85519, 0.710689, -0.184627, 1.53026, -1.51297, -0.304717, 0.45717, -3.58076, 3.94077, 3.93275, -3.91281, -1.04282, -6.01211, -1.67853, 1.63289, -1.43535, 1.07006, 1.78133, -0.108939, 7.73041, -0.414023, -0.393324, 0.991672, 0.604862, -2.4566}, {0.647273, -1.13641, -0.369036, 0.155006, 1.62575, -1.6184, -2.13207, 0.553881, -4.59079, -1.51297, -0.304717, 0.45717, -0.991672, -0.604862, 2.4566, -1.69008, -8.28434, 6.58252, -4.26763, 6.17852, 0.0407896, 1.07006, 1.78133, -0.108939, 1.67853, -1.63289, 1.43535, 7.04355, 1.82373, -4.28528}, {0.647273, -1.13641, -0.369036, 0.155006, 1.62575, -1.6184, 0.710689, -0.184627, 1.53026, 4.53891, 0.91415, -1.37151, -0.991672, -0.604862, 2.4566, -1.07006, -1.78133, 0.108939, -1.67853, 1.63289, -1.43535, -1.51903, 6.32696, 1.36721, 1.05851, -8.1359, 7.90894, -1.85108, 1.34337, -8.57765}, {-5.53886e-11, 0.00342441, 5.36656, 2.34612, 1.36758e-15, 3.12566e-15, 0, -2.34462, 0, -2.34612, 2.34576, 1.78885, -12.2844, 0.00141093, 2.21115, -2.89996, 2.89811, -3.86352e-15, -2.28213e-11, 12.278, 2.21115, 12.2844, -12.2812, -7.15542, 2.28213e-11, -2.89952, -2.21115, 2.89996, -0.00141093, -2.21115}, {1.22999e-11, -0.00114147, -1.78885, -7.03835, -8.19548e-15, -3.12566e-15, 0, -2.34462, 0, -2.34612, 2.34576, 1.78885, -2.89996, 0.00597681, 9.36656, -2.89996, 12.2766, -1.28784e-15, -1.52034e-11, 2.89952, 2.21115, 2.89996, -2.89811, 1.73193e-15, 9.38447, -12.2826, -9.36656, 2.89996, -0.00141093, -2.21115}, {1.22964e-11, -0.00114147, -1.78885, 2.34612, 0, 0, 0, 7.03386, 0, -2.34612, 2.34576, 1.78885, -2.89996, 0.00141093, 2.21115, -12.2844, 2.89811, 0, -6.43876e-11, 2.90409, 9.36656, 2.89996, -2.89811, 4.44089e-16, 1.51994e-11, -2.89952, -2.21115, 12.2844, -9.38446, -9.36656}, {1.22991e-11, -0.00114147, -1.78885, 2.34612, -1.36625e-15, -1.04189e-15, 0, -2.34462, 0, 7.03835, -7.03729, -5.36656, -2.89996, 0.00141093, 2.21115, -2.89996, 2.89811, 1.28784e-15, -1.52025e-11, 2.89952, 2.21115, 2.89996, -2.89354, 7.15542, -9.38447, -2.89952, -2.21115, 2.89996, 9.37707, -2.21115}, {-4.82547e-12, 4.93775, 1.89782, -1.17597e-12, 1.20344, -0.85762, 1.44665, -0.256711, 0.444168, -1.44665, 0.69919, 1.04606, 4.16911e-12, -4.26682, 5.2725, -1.78815, -1.17022, 0.511055, -7.57474, 3.37862, -1.54375, 7.57474, -1.62654, -4.69529, 1.78815, -2.35178, -0.232925, 5.34683e-13, -0.546933, -1.84202}, {1.60938e-12, -1.64592, -0.632608, 3.52988e-12, -3.61031, 2.57286, 1.44665, -0.256711, 0.444168, -1.44665, 0.69919, 1.04606, -6.97309e-12, 7.13059, 4.37245, -7.57474, -0.143371, -1.26562, -1.78815, 2.35178, 0.232925, 1.78815, 1.17022, -0.511055, 7.57474, -5.14853, -4.41716, 5.34905e-13, -0.546933, -1.84202}, {1.60738e-12, -1.64592, -0.632608, -1.17532e-12, 1.20344, -0.85762, -4.33994, 0.770134, -1.3325, -1.44665, 0.69919, 1.04606, -5.34239e-13, 0.546933, 1.84202, -1.78815, -5.98397, 3.94153, -1.78815, 8.93544, 2.76336, 1.78815, 1.17022, -0.511055, 1.78815, -2.35178, -0.232925, 5.78659, -3.34369, -6.02626}, {1.60805e-12, -1.64592, -0.632608, -1.17575e-12, 1.20344, -0.85762, 1.44665, -0.256711, 0.444168, 4.33994, -2.09757, -3.13818, -5.34461e-13, 0.546933, 1.84202, -1.78815, -1.17022, 0.511055, -1.78815, 2.35178, 0.232925, 1.78815, 7.75388, 2.01938, 1.78815, -7.16552, 3.19755, -5.78659, 0.479913, -3.61869}, {3.67809, 0.0745323, 3.75892, 1.30596, 0.948366, 0.152693, 0.0437324, -1.35943, 0.016287, -0.123659, 0.435911, 1.08399, -5.32262, -4.935, 0.74925, -1.66831, 0.508107, -0.20887, 1.28647, 7.14879, 1.46348, 2.16294, -2.25175, -4.1271, -1.4614, -1.71106, -1.52863, 0.0987948, 1.14154, -1.36002}, {-1.22603, -0.0248441, -1.25297, -3.91787, -2.8451, -0.458078, 0.0437324, -1.35943, 0.016287, -0.123659, 0.435911, 1.08399, 4.80532, -1.04216, 6.37191, -1.84323, 5.94584, -0.274019, 1.4614, 1.71106, 1.52863, 1.66831, -0.508107, 0.20887, -0.966762, -3.4547, -5.8646, 0.0987948, 1.14154, -1.36002}, {-1.22603, -0.0248441, -1.25297, 1.30596, 0.948366, 0.152693, -0.131197, 4.0783, -0.0488611, -0.123659, 0.435911, 1.08399, -0.0987948, -1.14154, 1.36002, -6.89213, -3.28536, -0.819641, 6.36551, 1.81044, 6.54052, 1.66831, -0.508107, 0.20887, -1.4614, -1.71106, -1.52863, 0.593431, -0.602108, -5.69599}, {-1.22603, -0.0248441, -1.25297, 1.30596, 0.948366, 0.152693, 0.0437324, -1.35943, 0.016287, 0.370977, -1.30773, -3.25198, -0.0987948, -1.14154, 1.36002, -1.66831, 0.508107, -0.20887, 1.4614, 1.71106, 1.52863, 6.57242, -0.40873, 5.22076, -6.68522, -5.50453, -2.1394, -0.0761347, 6.57927, -1.42517}, {5.37088, 5.36291, 5.36619, 1.99086e-15, 6.84977e-16, 1.60567, 0.376399, 3.64451, 0.373213, 1.41389, -1.85687, -0.190152, 2.21292, 2.20964, -6.1964, -0.465254, -4.50486, -2.44603, 0.242074, -16.8733, 0.256821, -5.19032, 11.9323, 3.20664, -1.74767, 2.29522, -1.74967, -2.21292, -2.20964, -0.226277}, {-1.79029, -1.78764, -1.78873, -1.24068e-15, 6.57876e-15, -4.817, 0.376399, 3.64451, 0.373213, 1.41389, -1.85687, -0.190152, 9.37409, 9.36019, 7.3812, -1.97085, -19.0829, -3.93889, 1.74767, -2.29522, 1.74967, 0.465254, 4.50486, 2.44603, -7.40324, 9.72271, -0.989068, -2.21292, -2.20964, -0.226277}, {-1.79029, -1.78764, -1.78873, 0, 0, 1.60567, -1.1292, -10.9335, -1.11964, 1.41389, -1.85687, -0.190152, 2.21292, 2.20964, 0.226277, -0.465254, -4.50486, -8.8687, 8.90884, 4.85533, 8.90459, 0.465254, 4.50486, 2.44603, -1.74767, 2.29522, -1.74967, -7.8685, 5.21784, 0.53433}, {-1.79029, -1.78764, -1.78873, -5.63596e-16, 7.40172e-16, 1.60567, 0.376399, 3.64451, 0.373213, -4.24168, 5.57061, 0.570455, 2.21292, 2.20964, 0.226277, -0.465254, -4.50486, -2.44603, 1.74767, -2.29522, 1.74967, 7.62642, 11.6554, 9.60095, -1.74767, 2.29522, -8.17235, -3.71852, -16.7877, -1.71913}, {1.24345e-14, 1.33227e-14, -9.45441, 0, -3.15057, 0, 1.78885, 1.78834, -1.78885, -1.78885, 1.36222, -1.36261, 4.88498e-15, 16.4966, -3.89543, -2.21115, 1.6838, 2.21115, -9.36656, -9.36389, 5.47113, 9.36656, -7.1327, 3.23931, 2.21115, 2.21051, 1.68428, -4.88498e-15, -3.89432, 3.89543}, {1.11022e-15, 3.77476e-15, 3.15147, 0, 9.4517, 0, 1.78885, 1.78834, -1.78885, -1.78885, 1.36222, -1.36261, -5.32907e-15, 3.89432, -16.5013, -9.36656, -5.46957, 9.36656, -2.21115, -2.21051, -1.68428, 2.21115, -1.6838, -2.21115, 9.36656, -3.23838, 7.13474, 1.33227e-15, -3.89432, 3.89543}, {-1.11022e-15, -8.65974e-15, 3.15147, 0, -3.15057, 0, -5.36656, -5.36503, 5.36656, -1.78885, 1.36222, -1.36261, 1.33227e-15, 3.89432, -3.89543, -2.21115, 14.2861, 2.21115, -2.21115, -2.21051, -14.2902, 2.21115, -1.6838, -2.21115, 2.21115, 2.21051, 1.68428, 7.15542, -9.34321, 9.34589}, {0, 2.22045e-16, 3.15147, 0, -3.15057, 0, 1.78885, 1.78834, -1.78885, 5.36656, -4.08667, 4.08784, 0, 3.89432, -3.89543, -2.21115, 1.6838, 2.21115, -2.21115, -2.21051, -1.68428, 2.21115, -1.6838, -14.817, 2.21115, 14.8128, 1.68428, -7.15542, -11.0477, 11.0508}, {-5.91616e-12, 6.05767, -4.31695, 0, 0, -1.80556, 1.44665, 0.572575, -0.146817, -1.44665, 1.44665, 0.51339, -2.43761e-12, 2.4959, 7.67533, -1.78815, -0.707741, 2.41326, -7.57474, -0.502145, -1.00994, 7.57474, -5.07885, -4.46683, 1.78815, -1.78815, 1.5972, 2.43761e-12, -2.4959, -0.45311}, {1.97087e-12, -2.01922, 1.43898, 0, 0, 5.41667, 1.44665, 0.572575, -0.146817, -1.44665, 1.44665, 0.51339, -1.03197e-11, 10.5728, -5.30282, -7.57474, -2.99804, 3.00053, -1.78815, 1.78815, -1.5972, 1.78815, 0.707741, -2.41326, 7.57474, -7.57474, -0.456356, 2.43605e-12, -2.4959, -0.45311}, {1.97242e-12, -2.01922, 1.43898, 0, 0, -1.80556, -4.33994, -1.71772, 0.44045, -1.44665, 1.44665, 0.51339, -2.43783e-12, 2.4959, 0.45311, -1.78815, -0.707741, 9.63549, -1.78815, 9.86504, -7.35313, 1.78815, 0.707741, -2.41326, 1.78815, -1.78815, 1.5972, 5.78659, -8.28248, -2.50667}, {1.97198e-12, -2.01922, 1.43898, 0, 0, -1.80556, 1.44665, 0.572575, -0.146817, 4.33994, -4.33994, -1.54017, -2.43761e-12, 2.4959, 0.45311, -1.78815, -0.707741, 2.41326, -1.78815, 1.78815, -1.5972, 1.78815, 8.78463, -8.16919, 1.78815, -1.78815, 8.81943, -5.78659, -4.7862, 0.134156}, {-4.33994, -4.33994, 1.75218, -1.97211e-12, -2.01922, 1.43898, 0, 0, -1.80556, -1.44665, 0.572575, 0.950635, -1.78815, 8.78463, -6.81267, 2.43766e-12, 2.4959, 0.45311, -1.78815, -1.78815, 10.176, 5.78659, -4.7862, -4.25565, 1.78815, 1.78815, -2.95373, 1.78815, -0.707741, 1.05674}, {1.44665, 1.44665, -0.584061, 5.92068e-12, 6.05767, -4.31695, 0, 0, -1.80556, -1.44665, 0.572575, 0.950635, -7.57474, -5.07885, 1.2795, 2.43945e-12, 2.4959, 7.67533, -1.78815, -1.78815, 2.95373, -2.43981e-12, -2.4959, -0.45311, 7.57474, -0.502145, -6.75627, 1.78815, -0.707741, 1.05674}, {1.44665, 1.44665, -0.584061, -1.97247e-12, -2.01922, 1.43898, 0, 0, 5.41667, -1.44665, 0.572575, 0.950635, -1.78815, 0.707741, -1.05674, 1.0328e-11, 10.5728, -5.30282, -7.57474, -7.57474, 5.28997, -2.43847e-12, -2.4959, -0.45311, 1.78815, 1.78815, -2.95373, 7.57474, -2.99804, -2.7458}, {1.44665, 1.44665, -0.584061, -1.97283e-12, -2.01922, 1.43898, 0, 0, -1.80556, 4.33994, -1.71772, -2.8519, -1.78815, 0.707741, -1.05674, 2.43856e-12, 2.4959, 0.45311, -1.78815, -1.78815, 2.95373, -5.78659, -8.28248, 1.88313, 1.78815, 9.86504, -8.70966, 1.78815, -0.707741, 8.27896}, {1.71772, 0.356094, 4.33994, 2.01922, -0.477594, 1.7444e-12, -1.44665, -0.786183, 1.44665, 0, 1.38248, 0, -9.86504, 2.64743, 1.78815, -0.707741, 1.56212, -1.78815, 8.28248, 4.26323, -5.78659, 0.707741, -7.09202, 1.78815, -2.4959, -1.11849, -2.1562e-12, 1.78815, -0.737058, -1.78815}, {-0.572575, -0.118698, -1.44665, -6.05767, 1.43278, -5.23264e-12, -1.44665, -0.786183, 1.44665, 4.96495e-16, 1.38248, -4.96495e-16, 0.502145, 1.21185, 7.57474, 5.07885, 4.70685, -7.57474, 2.4959, 1.11849, 2.15571e-12, 0.707741, -1.56212, 1.78815, -2.4959, -6.6484, -2.15337e-12, 1.78815, -0.737058, -1.78815}, {-0.572575, -0.118698, -1.44665, 2.01922, -0.477594, 1.7444e-12, 4.33994, 2.35855, -4.33994, 0, 1.38248, 0, -1.78815, 0.737058, 1.78815, -8.78463, 3.47249, -1.78815, 4.7862, 1.59329, 5.78659, 0.707741, -1.56212, 1.78815, -2.4959, -1.11849, -2.1562e-12, 1.78815, -6.26696, -1.78815}, {-0.572575, -0.118698, -1.44665, 2.01922, -0.477594, 1.74332e-12, -1.44665, -0.786183, 1.44665, 0, -4.14743, 0, -1.78815, 0.737058, 1.78815, -0.707741, 1.56212, -1.78815, 2.4959, 1.11849, 2.15522e-12, 2.99804, -1.08732, 7.57474, -10.5728, 0.791882, -9.12813e-12, 7.57474, 2.40768, -7.57474}, {-3.82778, -1.72626, -1.72406, -1.39459, 0.310766, 0.31037, -0.00684175, -1.71025, 0.635056, 0.125505, 0.824062, -1.52011, 5.72503, -2.33845, -2.33547, 1.73226, 1.72986, -1.16861, -1.54131, 8.24373, -4.03555, -2.23428, -5.02611, 7.24907, 1.56867, -1.40273, 1.49533, -0.146676, 1.09539, 1.09399}, {1.27593, 0.575422, 0.574688, 4.18377, -0.932299, -0.93111, -0.00684175, -1.71025, 0.635056, 0.125505, 0.824062, -1.52011, -4.95703, -3.39708, -3.39274, 1.75963, 8.57086, -3.70884, -1.56867, 1.40273, -1.49533, -1.73226, -1.72986, 1.16861, 1.06665, -4.69898, 7.57578, -0.146676, 1.09539, 1.09399}, {1.27593, 0.575422, 0.574688, -1.39459, 0.310766, 0.31037, 0.0205252, 5.13075, -1.90517, 0.125505, 0.824062, -1.52011, 0.146676, -1.09539, -1.09399, 7.31062, 0.486792, -2.41009, -6.67238, -0.898961, -3.79408, -1.73226, -1.72986, 1.16861, 1.56867, -1.40273, 1.49533, -0.648696, -2.20086, 7.17445}, {1.27593, 0.575422, 0.574688, -1.39459, 0.310766, 0.31037, -0.00684175, -1.71025, 0.635056, -0.376515, -2.47219, 4.56034, 0.146676, -1.09539, -1.09399, 1.73226, 1.72986, -1.16861, -1.56867, 1.40273, -1.49533, -6.83597, -4.03154, -1.13014, 7.14703, -2.64579, 0.253846, -0.119309, 7.93639, -1.44623}, {4.08784, 5.36656, -4.08784, 3.15147, -2.79907e-15, -3.33475e-16, -1.78885, 1.78885, 1.78885, 0, 0, -3.15147, -14.817, 2.21115, -1.68428, -1.68428, -2.21115, -2.21115, 11.0508, -7.15542, -11.0508, 1.68428, 2.21115, 14.817, -3.89543, 3.45984e-15, 3.89543, 2.21115, -2.21115, 1.68428}, {-1.36261, -1.78885, 1.36261, -9.45441, 4.1986e-15, 1.15954e-14, -1.78885, 1.78885, 1.78885, 0, 0, -3.15147, 3.23931, 9.36656, -7.13474, 5.47113, -9.36656, -9.36656, 3.89543, -1.28583e-15, -3.89543, 1.68428, 2.21115, 2.21115, -3.89543, 1.72992e-15, 16.5013, 2.21115, -2.21115, 1.68428}, {-1.36261, -1.78885, 1.36261, 3.15147, 0, 0, 5.36656, -5.36656, -5.36656, 0, 0, -3.15147, -2.21115, 2.21115, -1.68428, -14.2902, -2.21115, -2.21115, 9.34589, 7.15542, -9.34589, 1.68428, 2.21115, 2.21115, -3.89543, 0, 3.89543, 2.21115, -2.21115, 14.2902}, {-1.36261, -1.78885, 1.36261, 3.15147, 0, 2.46559e-15, -1.78885, 1.78885, 1.78885, 0, 0, 9.45441, -2.21115, 2.21115, -1.68428, -1.68428, -2.21115, -2.21115, 3.89543, 4.44089e-16, -3.89543, 7.13474, 9.36656, -3.23931, -16.5013, 0, 3.89543, 9.36656, -9.36656, -5.47113}, {1.73341, -4.36745, 1.08767, 0, 0, 1.17684, 2.01922, 1.68048e-12, -0.615915, -1.44142, -1.45582, -0.198371, 0.714206, -1.79949, -5.71389, -2.4959, -2.07719e-12, -0.693346, -9.85858, -1.79949, 3.67312, 8.26156, 5.82327, 1.48683, 1.78169, 1.79949, -1.20946, -0.714206, 1.79949, 1.00651}, {-0.577805, 1.45582, -0.362558, 2.02028e-15, 3.82793e-15, -3.53053, 2.01922, 1.68206e-12, -0.615915, -1.44142, -1.45582, -0.198371, 3.02542, -7.62276, 0.443719, -10.5728, -8.8058e-12, 1.77031, -1.78169, -1.79949, 1.20946, 2.4959, 2.0772e-12, 0.693346, 7.54736, 7.62276, -0.415974, -0.714206, 1.79949, 1.00651}, {-0.577805, 1.45582, -0.362558, 0, 0, 1.17684, -6.05767, -5.04417e-12, 1.84774, -1.44142, -1.45582, -0.198371, 0.714206, -1.79949, -1.00651, -2.4959, -2.07831e-12, -5.40072, 0.529529, -7.62276, 2.65969, 2.4959, 2.07795e-12, 0.693346, 1.78169, 1.79949, -1.20946, 5.05146, 7.62276, 1.8}, {-0.577805, 1.45582, -0.362558, 0, 0, 1.17684, 2.01922, 1.68121e-12, -0.615915, 4.32425, 4.36745, 0.595113, 0.714206, -1.79949, -1.00651, -2.4959, -2.07809e-12, -0.693346, -1.78169, -1.79949, 1.20946, 4.80711, -5.82327, 2.14358, 1.78169, 1.79949, -5.91683, -8.79109, 1.79949, 3.47017}, {-4.91714, 2.88338, 1.92681, -0.336451, -0.850591, 0.85104, -1.79955, 0.555362, -0.55742, 0.496952, 1.25636, 0.348649, -0.264293, 5.64177, -3.66222, 2.64024, 0.364922, -0.362934, 7.39658, -1.7199, 3.71258, -4.62805, -5.39034, -1.03166, -0.198389, -0.501553, -1.4829, 1.6101, -2.23941, 0.258056}, {1.63905, -0.961127, -0.642269, 1.00935, 2.55177, -2.55312, -1.79955, 0.555362, -0.55742, 0.496952, 1.25636, 0.348649, -8.16629, 6.08391, 2.31102, 9.83843, -1.85653, 1.86675, 0.198389, 0.501553, 1.4829, -2.64024, -0.364922, 0.362934, -2.1862, -5.52697, -2.87749, 1.6101, -2.23941, 0.258056}, {1.63905, -0.961127, -0.642269, -0.336451, -0.850591, 0.85104, 5.39864, -1.66609, 1.67226, 0.496952, 1.25636, 0.348649, -1.6101, 2.23941, -0.258056, 3.98605, 3.76729, -3.76709, -6.3578, 4.34606, 4.05197, -2.64024, -0.364922, 0.362934, -0.198389, -0.501553, -1.4829, -0.377708, -7.26483, -1.13654}, {1.63905, -0.961127, -0.642269, -0.336451, -0.850591, 0.85104, -1.79955, 0.555362, -0.55742, -1.49085, -3.76907, -1.04595, -1.6101, 2.23941, -0.258056, 2.64024, 0.364922, -0.362934, 0.198389, 0.501553, 1.4829, -9.19643, 3.47958, 2.93201, 1.14742, 2.90081, -4.88706, 8.80829, -4.46086, 2.48774}, {10.941, -4.49288, 1.1204, 1.85814, 0.691786, -1.41539, 0, -2.17235, 0, 1.78885, -0.0170635, 1.78885, -5.2214, -5.47341, 7.87269, -2.29678, 1.83008, 1.74951, 4.50793, 9.5234, 0.461631, -4.85864, -1.76182, -8.90493, -4.50793, -0.834003, -0.461631, -2.21115, 2.70626, -2.21115}, {-3.64699, 1.49763, -0.373467, -5.57441, -2.07536, 4.24616, 0, -2.17235, 0, 1.78885, -0.0170635, 1.78885, 16.7991, -8.69677, 3.70501, -2.29678, 10.5195, 1.74951, 4.50793, 0.834003, 0.461631, 2.29678, -1.83008, -1.74951, -11.6633, -0.76575, -7.61705, -2.21115, 2.70626, -2.21115}, {-3.64699, 1.49763, -0.373467, 1.85814, 0.691786, -1.41539, 0, 6.51705, 0, 1.78885, -0.0170635, 1.78885, 2.21115, -2.70626, 2.21115, -9.72932, -0.937068, 7.41106, 19.0959, -5.15651, 1.9555, 2.29678, -1.83008, -1.74951, -4.50793, -0.834003, -0.461631, -9.36656, 2.77452, -9.36656}, {-3.64699, 1.49763, -0.373467, 1.85814, 0.691786, -1.41539, 0, -2.17235, 0, -5.36656, 0.0511904, -5.36656, 2.21115, -2.70626, 2.21115, -2.29678, 1.83008, 1.74951, 4.50793, 0.834003, 0.461631, 16.8847, -7.82059, -0.255645, -11.9405, -3.60115, 5.19992, -2.21115, 11.3957, -2.21115}, {-4.62937, 1.83228, -4.62937, -1.60567, 0, 0, -0.136178, -1.32981, -1.74185, 0.198723, 1.94057, 0.198723, 6.49998, 0.754941, -1.90741, 2.15304, 1.64373, 2.15304, -1.19437, 7.71791, 7.21302, -2.94793, -9.40601, -2.94793, 1.73908, -2.39867, -0.245635, -0.0773091, -0.754941, 1.90741}, {1.54312, -0.61076, 1.54312, 4.817, 0, 0, -0.136178, -1.32981, -1.74185, 0.198723, 1.94057, 0.198723, -6.09519, 3.19798, -8.0799, 2.69775, 6.96297, 9.12042, -1.73908, 2.39867, 0.245635, -2.15304, -1.64373, -2.15304, 0.94419, -10.1609, -1.04052, -0.0773091, -0.754941, 1.90741}, {1.54312, -0.61076, 1.54312, -1.60567, 0, 0, 0.408534, 3.98943, 5.22554, 0.198723, 1.94057, 0.198723, 0.0773091, 0.754941, -1.90741, 8.57571, 1.64373, 2.15304, -7.91157, 4.84171, -5.92686, -2.15304, -1.64373, -2.15304, 1.73908, -2.39867, -0.245635, -0.872199, -8.51722, 1.11252}, {1.54312, -0.61076, 1.54312, -1.60567, 0, 0, -0.136178, -1.32981, -1.74185, -0.596168, -5.82171, -0.596168, 0.0773091, 0.754941, -1.90741, 2.15304, 1.64373, 2.15304, -1.73908, 2.39867, 0.245635, -8.32553, 0.799305, -8.32553, 8.16175, -2.39867, -0.245635, 0.467403, 4.5643, 8.87479}, {-5.36656, 4.08784, -4.08784, 0, 3.15147, 0, -1.78885, -1.78885, 1.78885, 0, 0, -3.15147, -2.21115, -14.817, -1.68428, 2.21115, -1.68428, -2.21115, 7.15542, 11.0508, -11.0508, -2.21115, 1.68428, 14.817, 0, -3.89543, 3.89543, 2.21115, 2.21115, 1.68428}, {1.78885, -1.36261, 1.36261, -4.1986e-15, -9.45441, 1.15954e-14, -1.78885, -1.78885, 1.78885, 0, 0, -3.15147, -9.36656, 3.23931, -7.13474, 9.36656, 5.47113, -9.36656, 1.28583e-15, 3.89543, -3.89543, -2.21115, 1.68428, 2.21115, -1.72992e-15, -3.89543, 16.5013, 2.21115, 2.21115, 1.68428}, {1.78885, -1.36261, 1.36261, 0, 3.15147, -9.86237e-15, 5.36656, 5.36656, -5.36656, 0, 0, -3.15147, -2.21115, -2.21115, -1.68428, 2.21115, -14.2902, -2.21115, -7.15542, 9.34589, -9.34589, -2.21115, 1.68428, 2.21115, 0, -3.89543, 3.89543, 2.21115, 2.21115, 14.2902}, {1.78885, -1.36261, 1.36261, 0, 3.15147, 0, -1.78885, -1.78885, 1.78885, 0, 0, 9.45441, -2.21115, -2.21115, -1.68428, 2.21115, -1.68428, -2.21115, -4.44089e-16, 3.89543, -3.89543, -9.36656, 7.13474, -3.23931, 0, -16.5013, 3.89543, 9.36656, 9.36656, -5.47113}, {-14.3647, 4.91028, -4.91028, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, -1.57573, -1.63676, 1.63676, -1.63676, 2.33207, -6.2275, -10.2738, 3.89543, -3.193e-13, -3.19522e-13, 2.33207, 10.2738, 6.2275, 2.65162, -6.54704, 6.54704, 3.97086, -3.97086, 0.0754334, 3.97086, -0.0754334, 3.97086}, {4.78823, -1.63676, 1.63676, 4.7272, -4.7272, -4.7272, -1.57573, -1.57573, -1.57573, -1.63676, 1.63676, -1.63676, -23.1238, 6.62248, -10.5179, 10.1984, 6.30294, 6.30294, -3.97086, 3.97086, -0.0754334, -3.89543, 3.18818e-13, 3.18006e-13, 10.5179, -10.5179, 6.62248, 3.97086, -0.0754334, 3.97086}, {4.78823, -1.63676, 1.63676, -1.57573, 1.57573, 1.57573, 4.7272, 4.7272, 4.7272, -1.63676, 1.63676, -1.63676, -3.97086, 0.0754334, -3.97086, 10.1984, -6.30294, -6.30294, -23.1238, 10.5179, -6.62248, -3.89543, 3.21483e-13, 3.20892e-13, 3.97086, -3.97086, 0.0754334, 10.5179, -6.62248, 10.5179}, {4.78823, -1.63676, 1.63676, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, -1.57573, 4.91028, -4.91028, 4.91028, -3.97086, 0.0754334, -3.97086, 3.89543, -3.19522e-13, -3.19078e-13, -3.97086, 3.97086, -0.0754334, -23.0483, 6.54704, -6.54704, 10.2738, -10.2738, -6.2275, 10.2738, 6.2275, 10.2738}, {0, -4.817, 7.10543e-15, -1.41539, -0.190281, -1.85814, -0.373467, 0.373467, 3.64699, 1.78885, -1.78885, -1.78885, 7.41106, -0.988391, 9.72932, 2.21115, -0.226431, -2.21115, 1.9555, -3.94022, -19.0959, -9.36656, 7.38185, 9.36656, -0.461631, 2.44635, 4.50793, -1.74951, 1.74951, -2.29678}, {-1.11022e-15, 1.60567, -1.55431e-15, 4.24616, 0.570843, 5.57441, -0.373467, 0.373467, 3.64699, 1.78885, -1.78885, -1.78885, 1.74951, -8.17219, 2.29678, 3.70501, -1.7203, -16.7991, 0.461631, -2.44635, -4.50793, -2.21115, 0.226431, 2.21115, -7.61705, 9.60176, 11.6633, -1.74951, 1.74951, -2.29678}, {-8.88178e-16, 1.60567, 1.11022e-15, -1.41539, -0.190281, -1.85814, 1.1204, -1.1204, -10.941, 1.78885, -1.78885, -1.78885, 1.74951, -1.74951, 2.29678, 7.87269, 0.534693, 5.2214, 0.461631, -8.86902, -4.50793, -2.21115, 0.226431, 2.21115, -0.461631, 2.44635, 4.50793, -8.90493, 8.90493, 4.85864}, {1.55431e-15, 1.60567, -4.44089e-16, -1.41539, -0.190281, -1.85814, -0.373467, 0.373467, 3.64699, -5.36656, 5.36656, 5.36656, 1.74951, -1.74951, 2.29678, 2.21115, -0.226431, -2.21115, 0.461631, -2.44635, -4.50793, -2.21115, -6.19624, 2.21115, 5.19992, 3.20747, 11.9405, -0.255645, 0.255645, -16.8847}, {-2.60507, 7.08874, -2.60507, -1.19276, 2.49131, 1.15037, -1.08957, 0.431245, -1.08957, 1.41397, -0.55964, -0.929159, 5.172, -10.1239, -7.09676, 2.82111, -3.61247, -0.0751544, 4.6317, 0.662693, 4.6317, -8.47697, 5.85103, 3.79179, -0.273431, -2.38767, -0.273431, -0.400978, 0.158705, 2.49528}, {0.868358, -2.36291, 0.868358, 3.57827, -7.47392, -3.45111, -1.08957, 0.431245, -1.08957, 1.41397, -0.55964, -0.929159, -3.07245, 9.29295, -5.96872, 7.17938, -5.33745, 4.28312, 0.273431, 2.38767, 0.273431, -2.82111, 3.61247, 0.0751544, -5.9293, -0.149113, 3.44321, -0.400978, 0.158705, 2.49528}, {0.868358, -2.36291, 0.868358, -1.19276, 2.49131, 1.15037, 3.2687, -1.29374, 3.2687, 1.41397, -0.55964, -0.929159, 0.400978, -0.158705, -2.49528, 7.59213, -13.5777, -4.67663, -3.2, 11.8393, -3.2, -2.82111, 3.61247, 0.0751544, -0.273431, -2.38767, -0.273431, -6.05684, 2.39726, 6.21192}, {0.868358, -2.36291, 0.868358, -1.19276, 2.49131, 1.15037, -1.08957, 0.431245, -1.08957, -4.2419, 1.67892, 2.78748, 0.400978, -0.158705, -2.49528, 2.82111, -3.61247, -0.0751544, 0.273431, 2.38767, 0.273431, -6.29454, 13.0641, -3.39828, 4.49759, -12.3529, -4.87491, 3.95729, -1.56628, 6.85356}, {0.133606, -1.71772, 4.33994, 0.841626, -2.01922, -1.9732e-12, -1.05603, 0, 0, 0.258935, 1.44665, 1.44665, -4.35176, 9.86504, 1.78815, 0.265013, 2.4959, 2.43901e-12, 5.58447, -0.707741, 1.78815, -1.30075, -8.28248, -5.78659, -1.36037, 0.707741, -1.78815, 0.985258, -1.78815, -1.78815}, {-0.0445353, 0.572575, -1.44665, -2.52488, 6.05767, 5.92285e-12, -1.05603, 0, 0, 0.258935, 1.44665, 1.44665, -0.807116, -0.502145, 7.57474, 4.48912, 2.4959, 2.44035e-12, 1.36037, -0.707741, 1.78815, -0.265013, -2.4959, -2.43999e-12, -2.39611, -5.07885, -7.57474, 0.985258, -1.78815, -1.78815}, {-0.0445353, 0.572575, -1.44665, 0.841626, -2.01922, -1.97392e-12, 3.16808, 0, 0, 0.258935, 1.44665, 1.44665, -0.985258, 1.78815, 1.78815, -3.10149, 10.5728, 1.03356e-11, 1.53851, -2.99804, 7.57474, -0.265013, -2.4959, -2.43954e-12, -1.36037, 0.707741, -1.78815, -0.0504837, -7.57474, -7.57474}, {-0.0445353, 0.572575, -1.44665, 0.841626, -2.01922, -1.97247e-12, -1.05603, 0, 0, -0.776806, -4.33994, -4.33994, -0.985258, 1.78815, 1.78815, 0.265013, 2.4959, 2.43811e-12, 1.36037, -0.707741, 1.78815, -0.0868717, -4.7862, 5.78659, -4.72687, 8.78463, -1.78815, 5.20936, -1.78815, -1.78815}, {-8.334, -1.1204, -10.941, -1.41539, 1.41539, -1.85814, -3.15147, 0, 0, 1.78885, -1.78885, -1.78885, 3.97726, -7.87269, 5.2214, 5.64494, -1.74951, 2.29678, 13.0675, -0.461631, -4.50793, -12.8004, 8.90493, 4.85864, -0.461631, 0.461631, 4.50793, 1.68428, 2.21115, 2.21115}, {2.778, 0.373467, 3.64699, 4.24616, -4.24616, 5.57441, -3.15147, 0, 0, 1.78885, -1.78885, -1.78885, -12.7963, -3.70501, -16.7991, 18.2508, -1.74951, 2.29678, 0.461631, -0.461631, -4.50793, -5.64494, 1.74951, -2.29678, -7.61705, 7.61705, 11.6633, 1.68428, 2.21115, 2.21115}, {2.778, 0.373467, 3.64699, -1.41539, 1.41539, -1.85814, 9.45441, 0, 0, 1.78885, -1.78885, -1.78885, -1.68428, -2.21115, -2.21115, 11.3065, -7.41106, 9.72932, -10.6504, -1.9555, -19.0959, -5.64494, 1.74951, -2.29678, -0.461631, 0.461631, 4.50793, -5.47113, 9.36656, 9.36656}, {2.778, 0.373467, 3.64699, -1.41539, 1.41539, -1.85814, -3.15147, 0, 0, -5.36656, 5.36656, 5.36656, -1.68428, -2.21115, -2.21115, 5.64494, -1.74951, 2.29678, 0.461631, -0.461631, -4.50793, -16.7569, 0.255645, -16.8847, 5.19992, -5.19992, 11.9405, 14.2902, 2.21115, 2.21115}, {1.01058, 2.55106, -2.5536, -2.38953, 1.40121, 0.936349, 0.591368, -0.846655, -1.49431, 2.13502, 0.295801, -0.293237, 12.9281, -6.28572, -5.95493, 2.22265, -0.685462, 0.68968, -2.68006, 5.48424, 6.77218, -10.7627, -0.497743, 0.483267, 0.314591, -2.09762, -0.794931, -3.37, 0.680893, 2.20953}, {-0.336859, -0.850352, 0.8512, 7.1686, -4.20362, -2.80905, 0.591368, -0.846655, -1.49431, 2.13502, 0.295801, -0.293237, 4.71744, 2.72051, -5.61433, -0.142821, 2.70116, 6.66693, -0.314591, 2.09762, 0.794931, -2.22265, 0.685462, -0.68968, -8.2255, -3.28082, 0.378017, -3.37, 0.680893, 2.20953}, {-0.336859, -0.850352, 0.8512, -2.38953, 1.40121, 0.936349, -1.77411, 2.53997, 4.48294, 2.13502, 0.295801, -0.293237, 3.37, -0.680893, -2.20953, 11.7808, -6.29028, -3.05572, 1.03285, 5.49902, -2.60987, -2.22265, 0.685462, -0.68968, 0.314591, -2.09762, -0.794931, -11.9101, -0.502312, 3.38248}, {-0.336859, -0.850352, 0.8512, -2.38953, 1.40121, 0.936349, 0.591368, -0.846655, -1.49431, -6.40507, -0.887404, 0.879711, 3.37, -0.680893, -2.20953, 2.22265, -0.685462, 0.68968, -0.314591, 2.09762, 0.794931, -0.875216, 4.08687, -4.09448, 9.87272, -7.70244, -4.54033, -5.73548, 4.06751, 8.18678}, {8.88178e-16, 9.4517, 0, 1.85814, -1.41498, 1.41539, -3.64699, 2.77721, 0.373467, 1.78885, 1.78834, -1.78885, -9.72932, 11.3033, -7.41106, 2.21115, -1.6838, -2.21115, 19.0959, -10.6473, -1.9555, -9.36656, -5.46957, 9.36656, -4.50793, -0.461499, 0.461631, 2.29678, -5.64333, 1.74951}, {-2.22045e-16, -3.15057, -2.22045e-16, -5.57441, 4.24495, -4.24616, -3.64699, 2.77721, 0.373467, 1.78885, 1.78834, -1.78885, -2.29678, 18.2456, -1.74951, 16.7991, -12.7926, -3.70501, 4.50793, 0.461499, -0.461631, -2.21115, 1.6838, 2.21115, -11.6633, -7.61487, 7.61705, 2.29678, -5.64333, 1.74951}, {8.88178e-16, -3.15057, 2.22045e-16, 1.85814, -1.41498, 1.41539, 10.941, -8.33162, -1.1204, 1.78885, 1.78834, -1.78885, -2.29678, 5.64333, -1.74951, -5.2214, 3.97613, -7.87269, 4.50793, 13.0638, -0.461631, -2.21115, 1.6838, 2.21115, -4.50793, -0.461499, 0.461631, -4.85864, -12.7967, 8.90493}, {2.22045e-16, -3.15057, 6.66134e-16, 1.85814, -1.41498, 1.41539, -3.64699, 2.77721, 0.373467, -5.36656, -5.36503, 5.36656, -2.29678, 5.64333, -1.74951, 2.21115, -1.6838, -2.21115, 4.50793, 0.461499, -0.461631, -2.21115, 14.2861, 2.21115, -11.9405, 5.19843, -5.19992, 16.8847, -16.7522, 0.255645}, {-3.98943, -5.23221, -5.22554, -1.94057, -2.54509, -0.198723, 0.61076, -1.54509, -1.54312, 0, 2.34612, 0, 8.51722, 11.1705, -1.11252, 1.64373, 5.05575, 2.15304, -4.84171, 5.93443, 5.92686, -1.64373, -14.4402, -2.15304, 2.39867, 0.245948, 0.245635, -0.754941, -0.990119, 1.90741}, {1.32981, 1.74407, 1.74185, 5.82171, 7.63528, 0.596168, 0.61076, -1.54509, -1.54312, -3.55726e-16, 2.34612, 8.98764e-16, -4.5643, -5.98616, -8.87479, -0.799305, 11.2361, 8.32553, -2.39867, -0.245948, -0.245635, -1.64373, -5.05575, -2.15304, 2.39867, -9.13852, 0.245635, -0.754941, -0.990119, 1.90741}, {1.32981, 1.74407, 1.74185, -1.94057, -2.54509, -0.198723, -1.83228, 4.63528, 4.62937, 0, 2.34612, 0, 0.754941, 0.990119, -1.90741, 9.40601, 15.2361, 2.94793, -7.71791, -7.22223, -7.21302, -1.64373, -5.05575, -2.15304, 2.39867, 0.245948, 0.245635, -0.754941, -10.3746, 1.90741}, {1.32981, 1.74407, 1.74185, -1.94057, -2.54509, -0.198723, 0.61076, -1.54509, -1.54312, 0, -7.03835, 0, 0.754941, 0.990119, -1.90741, 1.64373, 5.05575, 2.15304, -2.39867, -0.245948, -0.245635, -6.96297, -12.032, -9.12042, 10.1609, 10.4263, 1.04052, -3.19798, 5.19026, 8.0799}, {0, -8.88178e-15, -7.02938, -1.78885, -2.34612, -2.34313, 1.78885, 6.94391e-12, 7.11845e-12, 0, 2.34612, 0, 9.36656, 12.2844, 9.3725, 0, 2.89996, 2.89626, -9.36656, -3.63625e-11, -2.89626, 0, -12.2844, -2.89626, 2.21115, 8.58691e-12, 2.89626, -2.21115, -2.89996, -8.79889e-12}, {-9.56516e-16, 1.33227e-15, 2.34313, 5.36656, 7.03835, 7.02938, 1.78885, 6.94391e-12, 7.11845e-12, -1.04189e-15, 2.34612, -4.14601e-27, 2.21115, 2.89996, -9.3725, -7.15542, 2.89996, 2.89626, -2.21115, -8.58469e-12, -2.89626, 2.66454e-15, -2.89996, -2.89626, 2.21115, -9.38447, 2.89626, -2.21115, -2.89996, -8.79889e-12}, {0, -4.44089e-16, 2.34313, -1.78885, -2.34612, -2.34313, -5.36656, -2.08419e-11, -2.13616e-11, 0, 2.34612, 0, 2.21115, 2.89996, 8.80088e-12, 7.15542, 12.2844, 12.2688, -2.21115, -8.58691e-12, -12.2688, 0, -2.89996, -2.89626, 2.21115, 8.58691e-12, 2.89626, -2.21115, -12.2844, -8.80146e-12}, {0, 8.88178e-16, 2.34313, -1.78885, -2.34612, -2.34313, 1.78885, 6.94234e-12, 7.11741e-12, 0, -7.03835, 0, 2.21115, 2.89996, 8.79702e-12, 0, 2.89996, 2.89626, -2.21115, -8.58291e-12, -2.89626, 0, -2.89996, -12.2688, 9.36656, 9.38447, 12.2688, -9.36656, -2.89996, -3.72672e-11}, {-0.596168, 7.62554, 5.82171, -1.74185, 1.74185, 1.32981, 0, 2.34313, 0, 1.54312, -1.54312, 0.61076, 8.87479, -5.97853, -4.5643, 2.15304, -5.0493, -1.64373, -0.245635, -9.12687, 2.39867, -8.32553, 11.2218, -0.799305, 0.245635, -0.245635, -2.39867, -1.90741, -0.988857, -0.754941}, {0.198723, -2.54185, -1.94057, 5.22554, -5.22554, -3.98943, -8.97618e-16, 2.34313, -3.55272e-16, 1.54312, -1.54312, 0.61076, 1.11252, 11.1562, 8.51722, 2.15304, -14.4218, -1.64373, -0.245635, 0.245635, 2.39867, -2.15304, 5.0493, 1.64373, -5.92686, 5.92686, -4.84171, -1.90741, -0.988857, -0.754941}, {0.198723, -2.54185, -1.94057, -1.74185, 1.74185, 1.32981, 0, -7.02938, 0, 1.54312, -1.54312, 0.61076, 1.90741, 0.988857, 0.754941, 9.12042, -12.0167, -6.96297, -1.04052, 10.413, 10.1609, -2.15304, 5.0493, 1.64373, 0.245635, -0.245635, -2.39867, -8.0799, 5.18364, -3.19798}, {0.198723, -2.54185, -1.94057, -1.74185, 1.74185, 1.32981, 0, 2.34313, 0, -4.62937, 4.62937, -1.83228, 1.90741, 0.988857, 0.754941, 2.15304, -5.0493, -1.64373, -0.245635, 0.245635, 2.39867, -2.94793, 15.2167, 9.40601, 7.21302, -7.21302, -7.71791, -1.90741, -10.3614, -0.754941}, {4.7272, -4.7272, -4.7272, 1.57573, 1.57573, -1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, 1.57573, -6.30294, -10.1984, 6.30294, 1.80456e-12, 1.805e-12, 3.89543, 10.1984, 6.30294, 6.30294, -6.30294, 6.30294, -10.1984, -3.89543, 3.19078e-13, 3.19078e-13, -2.14295e-12, 3.89543, 2.13674e-12}, {-1.57573, 1.57573, 1.57573, -4.7272, -4.7272, 4.7272, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, 1.57573, 6.30294, -10.1984, -6.30294, 6.30294, 6.30294, 10.1984, 3.89543, -3.193e-13, -3.193e-13, -1.80505e-12, -1.80561e-12, -3.89543, -10.1984, 6.30294, -6.30294, -2.1394e-12, 3.89543, 2.13962e-12}, {-1.57573, 1.57573, 1.57573, 1.57573, 1.57573, -1.57573, 4.7272, 4.7272, 4.7272, 1.57573, -1.57573, 1.57573, 2.14007e-12, -3.89543, -2.14007e-12, -6.30294, -6.30294, 10.1984, 10.1984, -6.30294, -6.30294, -1.80394e-12, -1.80428e-12, -3.89543, -3.89543, 3.20188e-13, 3.193e-13, -6.30294, 10.1984, -6.30294}, {-1.57573, 1.57573, 1.57573, 1.57573, 1.57573, -1.57573, -1.57573, -1.57573, -1.57573, -4.7272, 4.7272, -4.7272, 2.1354e-12, -3.89543, -2.14473e-12, 1.80456e-12, 1.80456e-12, 3.89543, 3.89543, -3.19522e-13, -3.19522e-13, 6.30294, -6.30294, -10.1984, -10.1984, -6.30294, 6.30294, 6.30294, 10.1984, 6.30294}, {4.817, -8.88178e-16, 2.22045e-16, -0.136178, 1.74185, 1.32981, 0.198723, -0.198723, -1.94057, 1.54312, -1.54312, 0.61076, 2.69775, -9.12042, -6.96297, -0.0773091, -1.90741, 0.754941, 0.94419, 1.04052, 10.1609, -6.09519, 8.0799, -3.19798, -1.73908, -0.245635, -2.39867, -2.15304, 2.15304, 1.64373}, {-1.60567, 0, 2.22045e-16, 0.408534, -5.22554, -3.98943, 0.198723, -0.198723, -1.94057, 1.54312, -1.54312, 0.61076, 8.57571, -2.15304, -1.64373, -0.872199, -1.11252, 8.51722, 1.73908, 0.245635, 2.39867, 0.0773091, 1.90741, -0.754941, -7.91157, 5.92686, -4.84171, -2.15304, 2.15304, 1.64373}, {-1.60567, 0, 2.22045e-16, -0.136178, 1.74185, 1.32981, -0.596168, 0.596168, 5.82171, 1.54312, -1.54312, 0.61076, 2.15304, -2.15304, -1.64373, 0.467403, -8.87479, -4.5643, 8.16175, 0.245635, 2.39867, 0.0773091, 1.90741, -0.754941, -1.73908, -0.245635, -2.39867, -8.32553, 8.32553, -0.799305}, {-1.60567, -2.22045e-16, -2.22045e-16, -0.136178, 1.74185, 1.32981, 0.198723, -0.198723, -1.94057, -4.62937, 4.62937, -1.83228, 2.15304, -2.15304, -1.64373, -0.0773091, -1.90741, 0.754941, 1.73908, 0.245635, 2.39867, 6.49998, 1.90741, -0.754941, -1.19437, -7.21302, -7.71791, -2.94793, 2.94793, 9.40601}, {7.01844, 8.88178e-16, 0, 2.33948, 2.34313, 1.78885, 7.30061e-12, 6.91762e-12, -1.78885, 0, -2.34313, 0, -9.35791, -12.2688, -9.36656, -2.89175, -2.89626, 0, 2.89175, -3.62204e-11, 9.36656, 2.89175, 12.2688, 0, -2.89175, 8.55005e-12, -2.21115, -9.02405e-12, 2.89626, 2.21115}, {-2.33948, 0, 0, -7.01844, -7.02938, -5.36656, 7.30269e-12, 6.91918e-12, -1.78885, 0, -2.34313, 0, 9.35791, -2.89626, -2.21115, -2.89175, -2.89626, 7.15542, 2.89175, -8.55271e-12, 2.21115, 2.89175, 2.89626, 0, -2.89175, 9.3725, -2.21115, -9.02662e-12, 2.89626, 2.21115}, {-2.33948, 4.44089e-16, 2.22045e-16, 2.33948, 2.34313, 1.78885, -2.19003e-11, -2.07607e-11, 5.36656, 0, -2.34313, 0, 9.02399e-12, -2.89626, -2.21115, -12.2497, -12.2688, -7.15542, 12.2497, -8.55493e-12, 2.21115, 2.89175, 2.89626, -4.44089e-16, -2.89175, 8.55405e-12, -2.21115, -9.02341e-12, 12.2688, 2.21115}, {-2.33948, 4.44089e-16, 0, 2.33948, 2.34313, 1.78885, 7.30373e-12, 6.92178e-12, -1.78885, 0, 7.02938, 0, 9.02849e-12, -2.89626, -2.21115, -2.89175, -2.89626, 0, 2.89175, -8.55627e-12, 2.21115, 12.2497, 2.89626, 0, -12.2497, -9.3725, -9.36656, -3.82428e-11, 2.89626, 9.36656}, {-1.82966, -4.6256, 4.62804, 1.3308, -1.74043, 0.137442, -1.94068, 0.198561, -0.20043, 0, 0, 1.60567, -7.722, 7.20714, 1.1872, 0.75386, 1.90585, 0.0778573, 9.40768, -2.94553, 2.95632, -0.75386, -1.90585, -6.50053, -1.64495, 2.15129, -2.1546, 2.39881, -0.245434, -1.73697}, {0.609885, 1.54187, -1.54268, -3.99239, 5.22128, -0.412327, -1.94068, 0.198561, -0.20043, 7.7358e-16, -7.91487e-17, 1.60567, -4.83836, -5.92203, 7.90769, 8.51658, 1.11161, 0.879578, 1.64495, -2.15129, 2.1546, -0.75386, -1.90585, -0.0778573, -1.64495, 2.15129, -8.57728, 2.39881, -0.245434, -1.73697}, {0.609885, 1.54187, -1.54268, 1.3308, -1.74043, 0.137442, 5.82204, -0.595682, 0.601291, 0, 0, 1.60567, -2.39881, 0.245434, 1.73697, -4.56932, 8.86756, -0.471912, -0.794587, -8.31875, 8.32532, -0.75386, -1.90585, -0.0778573, -1.64495, 2.15129, -2.1546, 2.39881, -0.245434, -8.15964}, {0.609885, 1.54187, -1.54268, 1.3308, -1.74043, 0.137442, -1.94068, 0.198561, -0.20043, 0, 0, -4.817, -2.39881, 0.245434, 1.73697, 0.75386, 1.90585, 0.0778573, 1.64495, -2.15129, 2.1546, -3.1934, -8.07331, 6.09286, -6.96814, 9.11299, -2.70437, 10.1615, -1.03968, -0.935249}, {-4.24457, 5.57441, -4.24616, -1.78937, -1.78885, -1.78885, 3.15147, -2.85327e-15, -2.92187e-16, -2.77696, 3.64699, 0.373467, 7.62038, 11.6633, 7.61705, -1.68365, 2.21115, 2.21115, -18.2502, 2.29678, -1.74951, 12.7915, -16.7991, -3.70501, 5.64429, -2.29678, 1.74951, -0.46292, -4.50793, -0.461631}, {1.41486, -1.85814, 1.41539, 5.3681, 5.36656, 5.36656, 3.15147, 5.70654e-15, 5.84374e-16, -2.77696, 3.64699, 0.373467, -5.1965, 11.9405, -5.19992, -14.2895, 2.21115, 2.21115, -5.64429, 2.29678, -1.74951, 1.68365, -2.21115, -2.21115, 16.7521, -16.8847, 0.255645, -0.46292, -4.50793, -0.461631}, {1.41486, -1.85814, 1.41539, -1.78937, -1.78885, -1.78885, -9.45441, 0, 0, -2.77696, 3.64699, 0.373467, 0.46292, 4.50793, 0.461631, 5.47381, 9.36656, 9.36656, -11.3037, 9.72932, -7.41106, 1.68365, -2.21115, -2.21115, 5.64429, -2.29678, 1.74951, 10.6449, -19.0959, -1.9555}, {1.41486, -1.85814, 1.41539, -1.78937, -1.78885, -1.78885, 3.15147, 2.85327e-15, 2.92187e-16, 8.33088, -10.941, -1.1204, 0.46292, 4.50793, 0.461631, -1.68365, 2.21115, 2.21115, -5.64429, 2.29678, -1.74951, -3.97577, 5.2214, -7.87269, 12.8018, 4.85864, 8.90493, -13.0688, -4.50793, -0.461631}, {-4.72788, -4.72653, -4.72653, 1.57551, -1.57551, -1.57551, -1.57551, 1.57551, -1.57596, -1.57596, -1.57551, 1.57596, -10.1975, 6.30204, 6.30204, -4.83169e-13, -4.92273e-13, 3.89543, 6.30148, -10.1969, 6.30439, 6.30384, 6.30204, -10.1993, 0.000556765, 3.89487, -0.000556765, 3.89543, -1.82077e-12, -1.81766e-12}, {1.57596, 1.57551, 1.57551, -4.72653, 4.72653, 4.72653, -1.57551, 1.57551, -1.57596, -1.57596, -1.57551, 1.57596, -10.1993, -6.30204, -6.30204, 6.30204, -6.30204, 10.1993, -0.000556765, -3.89487, 0.000556765, 4.86997e-13, 4.81002e-13, -3.89543, 6.30439, 10.1969, -6.30439, 3.89543, -1.81322e-12, -1.80744e-12}, {1.57596, 1.57551, 1.57551, 1.57551, -1.57551, -1.57551, 4.72653, -4.72653, 4.72788, -1.57596, -1.57551, 1.57596, -3.89543, 1.8201e-12, 1.81388e-12, -6.30204, 6.30204, 10.1975, -6.30439, -10.1969, -6.30148, 4.87441e-13, 4.99209e-13, -3.89543, 0.000556765, 3.89487, -0.000556765, 10.1993, 6.30204, -6.30384}, {1.57596, 1.57551, 1.57551, 1.57551, -1.57551, -1.57551, -1.57551, 1.57551, -1.57596, 4.72788, 4.72653, -4.72788, -3.89543, 1.81255e-12, 1.81877e-12, -4.87832e-13, -4.87388e-13, 3.89543, -0.000556765, -3.89487, 0.000556765, -6.30384, -6.30204, -10.1975, -6.30148, 10.1969, 6.30148, 10.1975, -6.30204, 6.30384}, {5.36656, -5.36656, -5.3681, 3.64699, -0.373467, 2.77696, 0, 0, -3.15147, -1.85814, -1.41539, -1.41486, -16.8847, -0.255645, -16.7521, -4.50793, 0.461631, 0.46292, 2.21115, -2.21115, 14.2895, 11.9405, 5.19992, 5.1965, -2.21115, 2.21115, -1.68365, 2.29678, 1.74951, 5.64429}, {-1.78885, 1.78885, 1.78937, -10.941, 1.1204, -8.33088, 0, 0, -3.15147, -1.85814, -1.41539, -1.41486, 4.85864, -8.90493, -12.8018, -4.50793, 0.461631, 13.0688, 2.21115, -2.21115, 1.68365, 4.50793, -0.461631, -0.46292, 5.2214, 7.87269, 3.97577, 2.29678, 1.74951, 5.64429}, {-1.78885, 1.78885, 1.78937, 3.64699, -0.373467, 2.77696, 0, 0, 9.45441, -1.85814, -1.41539, -1.41486, -2.29678, -1.74951, -5.64429, -19.0959, 1.9555, -10.6449, 9.36656, -9.36656, -5.47381, 4.50793, -0.461631, -0.46292, -2.21115, 2.21115, -1.68365, 9.72932, 7.41106, 11.3037}, {-1.78885, 1.78885, 1.78937, 3.64699, -0.373467, 2.77696, 0, 0, -3.15147, 5.57441, 4.24616, 4.24457, -2.29678, -1.74951, -5.64429, -4.50793, 0.461631, 0.46292, 2.21115, -2.21115, 1.68365, 11.6633, -7.61705, -7.62038, -16.7991, 3.70501, -12.7915, 2.29678, 1.74951, 18.2502}, {-0.570843, 5.57441, 4.24616, -0.373467, 3.64699, -0.373467, 1.78885, -1.78885, 1.78885, -1.60567, 0, 0, 1.7203, -16.7991, 3.70501, -1.74951, -2.29678, -1.74951, -9.60176, 11.6633, -7.61705, 8.17219, 2.29678, 1.74951, 2.44635, -4.50793, 0.461631, -0.226431, 2.21115, -2.21115}, {0.190281, -1.85814, -1.41539, 1.1204, -10.941, 1.1204, 1.78885, -1.78885, 1.78885, -1.60567, 0, 0, -0.534693, 5.2214, 7.87269, -8.90493, 4.85864, -8.90493, -2.44635, 4.50793, -0.461631, 1.74951, 2.29678, 1.74951, 8.86902, -4.50793, 0.461631, -0.226431, 2.21115, -2.21115}, {0.190281, -1.85814, -1.41539, -0.373467, 3.64699, -0.373467, -5.36656, 5.36656, -5.36656, -1.60567, 0, 0, 0.226431, -2.21115, 2.21115, -0.255645, -16.8847, -0.255645, -3.20747, 11.9405, 5.19992, 1.74951, 2.29678, 1.74951, 2.44635, -4.50793, 0.461631, 6.19624, 2.21115, -2.21115}, {0.190281, -1.85814, -1.41539, -0.373467, 3.64699, -0.373467, 1.78885, -1.78885, 1.78885, 4.817, 0, 0, 0.226431, -2.21115, 2.21115, -1.74951, -2.29678, -1.74951, -2.44635, 4.50793, -0.461631, 0.988391, 9.72932, 7.41106, 3.94022, -19.0959, 1.9555, -7.38185, 9.36656, -9.36656}, {-2.4085, 2.4085, -2.4085, 0.802834, 0.802834, -0.802834, 0.0313083, 1.63555, 1.63555, -1.63698, -1.63555, -1.63555, -5.19605, -3.21134, 3.21134, -1.03106, -3.014, -1.02929, -1.15629, -7.57148, -9.55619, 7.57896, 9.55619, 7.57148, 1.03106, 1.02929, 3.014, 1.98471, -8.43769e-15, 6.21725e-15}, {0.802834, -0.802834, 0.802834, -2.4085, -2.4085, 2.4085, 0.0313083, 1.63555, 1.63555, -1.63698, -1.63555, -1.63555, -5.19605, 3.21134, -3.21134, -1.15629, -9.55619, -7.57148, -1.03106, -1.02929, -3.014, 1.03106, 3.014, 1.02929, 7.57896, 7.57148, 9.55619, 1.98471, -7.54952e-15, 7.10543e-15}, {0.802834, -0.802834, 0.802834, 0.802834, 0.802834, -0.802834, -0.0939249, -4.90664, -4.90664, -1.63698, -1.63555, -1.63555, -1.98471, 7.10543e-15, -6.66134e-15, -4.24239, -6.22534, 2.18205, -4.24239, 2.18205, -6.22534, 1.03106, 3.014, 1.02929, 1.03106, 1.02929, 3.014, 8.53262, 6.54219, 6.54219}, {0.802834, -0.802834, 0.802834, 0.802834, 0.802834, -0.802834, 0.0313083, 1.63555, 1.63555, 4.91093, 4.90664, 4.90664, -1.98471, 6.21725e-15, -6.66134e-15, -1.03106, -3.014, -1.02929, -1.03106, -1.02929, -3.014, -2.18028, 6.22534, -2.18205, -2.18028, -2.18205, 6.22534, 1.85948, -6.54219, -6.54219}, {5.36656, 5.36656, -5.36656, 0, 0, -3.15147, 3.15147, -1.39953e-15, -1.06606e-15, -1.36261, 1.78885, 1.36261, 2.21115, 2.21115, 14.2902, -3.89543, 1.72992e-15, 3.89543, -14.2902, 2.21115, -2.21115, 9.34589, -7.15542, -9.34589, 1.68428, -2.21115, 2.21115, -2.21115, -2.21115, -1.68428}, {-1.78885, -1.78885, 1.78885, 0, 0, 9.45441, 3.15147, 2.79907e-15, 2.13212e-15, -1.36261, 1.78885, 1.36261, 9.36656, 9.36656, -5.47113, -16.5013, -1.46561e-14, 3.89543, -1.68428, 2.21115, -2.21115, 3.89543, 3.90393e-15, -3.89543, 7.13474, -9.36656, -3.23931, -2.21115, -2.21115, -1.68428}, {-1.78885, -1.78885, 1.78885, 0, 0, -3.15147, -9.45441, 0, 0, -1.36261, 1.78885, 1.36261, 2.21115, 2.21115, 1.68428, -3.89543, 0, 16.5013, 5.47113, 9.36656, -9.36656, 3.89543, 4.44089e-16, -3.89543, 1.68428, -2.21115, 2.21115, 3.23931, -9.36656, -7.13474}, {-1.78885, -1.78885, 1.78885, 0, 0, -3.15147, 3.15147, 1.39953e-15, 1.06606e-15, 4.08784, -5.36656, -4.08784, 2.21115, 2.21115, 1.68428, -3.89543, -1.72992e-15, 3.89543, -1.68428, 2.21115, -2.21115, 11.0508, 7.15542, -11.0508, 1.68428, -2.21115, 14.817, -14.817, -2.21115, -1.68428}, {1.55756, -1.55231, 6.66925, 0.74491, 1.59978, -0.633715, 1.29557, -1.29442, 0.512752, -1.52129, -0.822804, 2.34405, -3.25865, -9.01615, 6.06606, -2.52217, -0.377453, 0.149519, -6.14194, 6.13806, 0.0630791, 8.60734, 3.66867, -9.52571, 0.95966, -0.960396, -2.11409, 0.279008, 2.61703, -3.5312}, {-0.519188, 0.517438, -2.22308, -2.23473, -4.79934, 1.90115, 1.29557, -1.29442, 0.512752, -1.52129, -0.822804, 2.34405, 1.79774, -4.68678, 12.4235, -7.70445, 4.80021, -1.90149, -0.95966, 0.960396, 2.11409, 2.52217, 0.377453, -0.149519, 7.04482, 2.33082, -11.4903, 0.279008, 2.61703, -3.5312}, {-0.519188, 0.517438, -2.22308, 0.74491, 1.59978, -0.633715, -3.88671, 3.88325, -1.53826, -1.52129, -0.822804, 2.34405, -0.279008, -2.61703, 3.5312, -5.50181, -6.77658, 2.68438, 1.11709, -1.10936, 11.0064, 2.52217, 0.377453, -0.149519, 0.95966, -0.960396, -2.11409, 6.36417, 5.90824, -12.9074}, {-0.519188, 0.517438, -2.22308, 0.74491, 1.59978, -0.633715, 1.29557, -1.29442, 0.512752, 4.56387, 2.46841, -7.03214, -0.279008, -2.61703, 3.5312, -2.52217, -0.377453, 0.149519, -0.95966, 0.960396, 2.11409, 4.59892, -1.6923, 8.74282, -2.01998, -7.35952, 0.420775, -4.90327, 7.79469, -5.58221}, {-3.62807, -1.43344, -3.62246, -0.761007, 2.64249, 1.57539, -0.983272, -2.40589, -0.977465, 0.534922, -0.714416, -1.80541, 2.48984, -14.4269, -9.74136, 2.15605, -0.292457, -0.73907, 3.65363, 12.0068, 3.62554, -4.29574, 3.15012, 7.96069, 0.279456, -2.38324, 0.28432, 0.554191, 3.85691, 3.43982}, {1.20936, 0.477813, 1.20749, 2.28302, -7.92748, -4.72616, -0.983272, -2.40589, -0.977465, 0.534922, -0.714416, -1.80541, -5.39162, -5.76816, -8.26976, 6.08913, 9.33111, 3.17079, -0.279456, 2.38324, -0.28432, -2.15605, 0.292457, 0.73907, -1.86023, 0.474427, 7.50594, 0.554191, 3.85691, 3.43982}, {1.20936, 0.477813, 1.20749, -0.761007, 2.64249, 1.57539, 2.94982, 7.21767, 2.9324, 0.534922, -0.714416, -1.80541, -0.554191, -3.85691, -3.43982, 5.20007, -10.8624, -7.04061, -5.11688, 0.471983, -5.11426, -2.15605, 0.292457, 0.73907, 0.279456, -2.38324, 0.28432, -1.5855, 6.71457, 10.6614}, {1.20936, 0.477813, 1.20749, -0.761007, 2.64249, 1.57539, -0.983272, -2.40589, -0.977465, -1.60477, 2.14325, 5.41622, -0.554191, -3.85691, -3.43982, 2.15605, -0.292457, -0.73907, -0.279456, 2.38324, -0.28432, -6.99347, -1.6188, -4.09087, 3.32348, -12.9532, -6.01722, 4.48728, 13.4805, 7.34968}, {5.81909, -7.61025, 0.600985, 0.610485, 1.54108, -1.54262, 0, -2.33948, 0, 1.32921, -1.73835, 1.74295, -0.798945, -11.2048, 8.32487, -0.754601, 0.986874, 1.90678, 2.3976, 9.11407, 0.24762, -4.56224, 5.96654, -8.87857, -2.3976, 0.243842, -0.24762, -1.643, 5.04048, -2.1544}, {-1.9397, 2.53675, -0.200328, -1.83146, -4.62324, 4.62785, 0, -2.33948, 0, 1.32921, -1.73835, 1.74295, 9.40178, -15.1875, 2.95571, -0.754601, 10.3448, 1.90678, 2.3976, -0.243842, 0.24762, 0.754601, -0.986874, -1.90678, -7.71444, 7.19725, -7.21941, -1.643, 5.04048, -2.1544}, {-1.9397, 2.53675, -0.200328, 0.610485, 1.54108, -1.54262, 0, 7.01844, 0, 1.32921, -1.73835, 1.74295, 1.643, -5.04048, 2.1544, -3.19654, -5.17745, 8.07725, 10.1564, -10.3908, 1.04893, 0.754601, -0.986874, -1.90678, -2.3976, 0.243842, -0.24762, -6.95984, 11.9939, -9.12619}, {-1.9397, 2.53675, -0.200328, 0.610485, 1.54108, -1.54262, 0, -2.33948, 0, -3.98763, 5.21506, -5.22884, 1.643, -5.04048, 2.1544, -0.754601, 0.986874, 1.90678, 2.3976, -0.243842, 0.24762, 8.51339, -11.1339, -1.10547, -4.83954, -5.92048, 5.92285, -1.643, 14.3984, -2.1544}, {4.33994, -4.33994, -1.54017, 0, 0, -1.80556, -0.572575, -1.44665, 0.668413, 2.01922, 1.97175e-12, 0.623753, 1.78815, -1.78815, 8.81943, 0.707741, 1.78815, 1.40559, 4.7862, 5.78659, -4.13444, -8.78463, -1.78815, -3.9006, -2.4959, -2.43721e-12, 1.46079, -1.78815, 1.78815, -1.5972}, {-1.44665, 1.44665, 0.51339, 0, 0, 5.41667, -0.572575, -1.44665, 0.668413, 2.01922, 1.97138e-12, 0.623753, 7.57474, -7.57474, -0.456355, 2.99804, 7.57474, -1.26807, 2.4959, 2.43641e-12, -1.46079, -0.707741, -1.78815, -1.40559, -10.5728, -1.03223e-11, -1.03422, -1.78815, 1.78815, -1.5972}, {-1.44665, 1.44665, 0.51339, 0, 0, -1.80556, 1.71772, 4.33994, -2.00524, 2.01922, 1.97175e-12, 0.623753, 1.78815, -1.78815, 1.5972, 0.707741, 1.78815, 8.62781, 8.28248, -5.78659, -3.51435, -0.707741, -1.78815, -1.40559, -2.4959, -2.43721e-12, 1.46079, -9.86504, 1.78815, -4.09222}, {-1.44665, 1.44665, 0.51339, 0, 0, -1.80556, -0.572575, -1.44665, 0.668413, -6.05767, -5.91959e-12, -1.87126, 1.78815, -1.78815, 1.5972, 0.707741, 1.78815, 1.40559, 2.4959, 2.43865e-12, -1.46079, 5.07885, -7.57474, -3.45914, -2.4959, -2.43901e-12, 8.68301, 0.502145, 7.57474, -4.27086}, {5.36656, 5.36656, 5.36656, 0.373467, 0.373467, 3.64699, 1.41048e-15, 1.60567, -1.85169e-15, 1.41539, -0.190281, -1.85814, 0.255645, 0.255645, -16.8847, -0.461631, -2.44635, -4.50793, 2.21115, -6.19624, 2.21115, -5.19992, 3.20747, 11.9405, -2.21115, -0.226431, -2.21115, -1.74951, -1.74951, 2.29678}, {-1.78885, -1.78885, -1.78885, -1.1204, -1.1204, -10.941, 8.46287e-16, 1.60567, -1.11101e-15, 1.41539, -0.190281, -1.85814, 8.90493, 8.90493, 4.85864, -0.461631, -8.86902, -4.50793, 2.21115, 0.226431, 2.21115, 0.461631, 2.44635, 4.50793, -7.87269, 0.534693, 5.2214, -1.74951, -1.74951, 2.29678}, {-1.78885, -1.78885, -1.78885, 0.373467, 0.373467, 3.64699, 0, -4.817, 0, 1.41539, -0.190281, -1.85814, 1.74951, 1.74951, -2.29678, -1.9555, -3.94022, -19.0959, 9.36656, 7.38185, 9.36656, 0.461631, 2.44635, 4.50793, -2.21115, -0.226431, -2.21115, -7.41106, -0.988391, 9.72932}, {-1.78885, -1.78885, -1.78885, 0.373467, 0.373467, 3.64699, 2.82096e-16, 1.60567, -3.70338e-16, -4.24616, 0.570843, 5.57441, 1.74951, 1.74951, -2.29678, -0.461631, -2.44635, -4.50793, 2.21115, 0.226431, 2.21115, 7.61705, 9.60176, 11.6633, -3.70501, -1.7203, -16.7991, -1.74951, -8.17219, 2.29678}, {-4.24616, -4.24616, 5.57441, 3.15147, 2.92187e-16, 2.85327e-15, -1.78885, -1.78885, -1.78885, -2.778, 0.373467, 3.64699, -18.2508, -1.74951, 2.29678, -1.68428, 2.21115, 2.21115, 7.61705, 7.61705, 11.6633, 12.7963, -3.70501, -16.7991, -0.461631, -0.461631, -4.50793, 5.64494, 1.74951, -2.29678}, {1.41539, 1.41539, -1.85814, -9.45441, -5.07516e-15, -1.27584e-14, -1.78885, -1.78885, -1.78885, -2.778, 0.373467, 3.64699, -11.3065, -7.41106, 9.72932, 5.47113, 9.36656, 9.36656, 0.461631, 0.461631, 4.50793, 1.68428, -2.21115, -2.21115, 10.6504, -1.9555, -19.0959, 5.64494, 1.74951, -2.29678}, {1.41539, 1.41539, -1.85814, 3.15147, 0, 0, 5.36656, 5.36656, 5.36656, -2.778, 0.373467, 3.64699, -5.64494, -1.74951, 2.29678, -14.2902, 2.21115, 2.21115, -5.19992, -5.19992, 11.9405, 1.68428, -2.21115, -2.21115, -0.461631, -0.461631, -4.50793, 16.7569, 0.255645, -16.8847}, {1.41539, 1.41539, -1.85814, 3.15147, 2.92187e-16, 2.85327e-15, -1.78885, -1.78885, -1.78885, 8.334, -1.1204, -10.941, -5.64494, -1.74951, 2.29678, -1.68428, 2.21115, 2.21115, 0.461631, 0.461631, 4.50793, -3.97726, -7.87269, 5.2214, -13.0675, -0.461631, -4.50793, 12.8004, 8.90493, 4.85864}, {0.972456, 0.972456, -8.84811, 1.4362, 1.4362, 1.4362, -1.66806, -0.0623937, -1.66806, 0.556017, -1.04965, -2.71751, -7.11935, -7.11935, -11.1656, 0.286601, -1.69811, 0.286601, 9.13476, 0.727372, 5.08846, -2.51067, 5.89672, 10.5834, -2.46251, -0.477797, 1.58378, 1.37456, 1.37456, 5.42086}, {-0.324152, -0.324152, 2.94937, -4.30859, -4.30859, -4.30859, -1.66806, -0.0623937, -1.66806, 0.556017, -1.04965, -2.71751, -0.0779551, -0.0779551, -17.2183, 6.95885, -1.44854, 6.95885, 2.46251, 0.477797, -1.58378, -0.286601, 1.69811, -0.286601, -4.68658, 3.72081, 12.4538, 1.37456, 1.37456, 5.42086}, {-0.324152, -0.324152, 2.94937, 1.4362, 1.4362, 1.4362, 5.00419, 0.187181, 5.00419, 0.556017, -1.04965, -2.71751, -1.37456, -1.37456, -5.42086, -5.45818, -7.4429, -5.45818, 3.75912, 1.7744, -13.3813, -0.286601, 1.69811, -0.286601, -2.46251, -0.477797, 1.58378, -0.849506, 5.57317, 16.2909}, {-0.324152, -0.324152, 2.94937, 1.4362, 1.4362, 1.4362, -1.66806, -0.0623937, -1.66806, -1.66805, 3.14895, 8.15252, -1.37456, -1.37456, -5.42086, 0.286601, -1.69811, 0.286601, 2.46251, 0.477797, -1.58378, 1.01001, 2.99472, -12.0841, -8.2073, -6.22258, -4.161, 8.04681, 1.62414, 12.0931}, {3.33613, 3.33613, 13.1567, 1.4362, 1.4362, 1.4362, 0.767151, -2.38432, -2.38432, -1.0913, 2.06017, 5.33369, -6.14546, -6.14546, -2.09916, -2.72349, 1.17194, 1.17194, -2.64229, 13.859, 17.9053, 7.0887, -9.4126, -22.5067, -0.426311, -4.32174, -8.36804, 0.400674, 0.400674, -3.64562}, {-1.11204, -1.11204, -4.38557, -4.30859, -4.30859, -4.30859, 0.767151, -2.38432, -2.38432, -1.0913, 2.06017, 5.33369, 4.0475, 4.0475, 21.1879, -5.79209, 10.7092, 10.7092, 0.426311, 4.32174, 8.36804, 2.72349, -1.17194, -1.17194, 3.9389, -12.5624, -29.7028, 0.400674, 0.400674, -3.64562}, {-1.11204, -1.11204, -4.38557, 1.4362, 1.4362, 1.4362, -2.30145, 7.15295, 7.15295, -1.0913, 2.06017, 5.33369, -0.400674, -0.400674, 3.64562, -8.46827, -4.57284, -4.57284, 4.87449, 8.76992, 25.9103, 2.72349, -1.17194, -1.17194, -0.426311, -4.32174, -8.36804, 4.76589, -7.83999, -24.9804}, {-1.11204, -1.11204, -4.38557, 1.4362, 1.4362, 1.4362, 0.767151, -2.38432, -2.38432, 3.27391, -6.1805, -16.0011, -0.400674, -0.400674, 3.64562, -2.72349, 1.17194, 1.17194, 0.426311, 4.32174, 8.36804, 7.17167, 3.27624, 16.3703, -6.1711, -10.0665, -14.1128, -2.66793, 9.93794, 5.89165}, {-6.6428, 1.48026, 1.47837, 0.647646, 0.70771, -1.63632, -0.372676, 0.942791, 0.941589, -2.48924, -1.15708, 1.18752, -6.1281, -3.09572, 9.177, -0.339882, -2.04013, 0.858732, -0.785628, -4.32662, -4.3211, 10.2968, 6.66845, -5.60881, 2.27633, 0.555453, 0.554744, 3.53752, 0.264876, -2.63172}, {2.21427, -0.493421, -0.492791, -1.94294, -2.12313, 4.90895, -0.372676, 0.942791, 0.941589, -2.48924, -1.15708, 1.18752, -12.3946, 1.70881, 4.60289, 1.15082, -5.8113, -2.90762, -2.27633, -0.555453, -0.554744, 0.339882, 2.04013, -0.858732, 12.2333, 5.18378, -4.19534, 3.53752, 0.264876, -2.63172}, {2.21427, -0.493421, -0.492791, 0.647646, 0.70771, -1.63632, 1.11803, -2.82837, -2.82477, -2.48924, -1.15708, 1.18752, -3.53752, -0.264876, 2.63172, -2.93046, -4.87097, 7.404, -11.1334, 1.41823, 1.41642, 0.339882, 2.04013, -0.858732, 2.27633, 0.555453, 0.554744, 13.4945, 4.8932, -7.38181}, {2.21427, -0.493421, -0.492791, 0.647646, 0.70771, -1.63632, -0.372676, 0.942791, 0.941589, 7.46771, 3.47124, -3.56256, -3.53752, -0.264876, 2.63172, -0.339882, -2.04013, 0.858732, -2.27633, -0.555453, -0.554744, -8.51718, 4.01381, 1.11243, -0.314251, -2.27539, 7.10002, 5.02822, -3.50629, -6.39808}, {1.12186, -2.82659, -2.82659, -1.84098, -0.449088, -0.449088, 0.510215, -1.28552, 0.320147, 1.70472, 0.792411, -0.813257, 10.1017, 1.18683, 1.18683, 1.64492, 2.14409, 0.15938, -2.20929, 5.56645, -2.84093, -8.4638, -5.31374, 3.09365, 0.16843, -0.424371, 1.56034, -2.73781, 0.609518, 0.609518}, {-0.373952, 0.942198, 0.942198, 5.52295, 1.34726, 1.34726, 0.510215, -1.28552, 0.320147, 1.70472, 0.792411, -0.813257, 4.23362, -4.37831, -4.37831, -0.395942, 7.28618, -1.12121, -0.16843, 0.424371, -1.56034, -1.64492, -2.14409, -0.15938, -6.65045, -3.59401, 4.81337, -2.73781, 0.609518, 0.609518}, {-0.373952, 0.942198, 0.942198, -1.84098, -0.449088, -0.449088, -1.53064, 3.85656, -0.960441, 1.70472, 0.792411, -0.813257, 2.73781, -0.609518, -0.609518, 9.00885, 3.94045, 1.95573, 1.32738, -3.34442, -5.32914, -1.64492, -2.14409, -0.15938, 0.16843, -0.424371, 1.56034, -9.55669, -2.56013, 3.86255}, {-0.373952, 0.942198, 0.942198, -1.84098, -0.449088, -0.449088, 0.510215, -1.28552, 0.320147, -5.11416, -2.37723, 2.43977, 2.73781, -0.609518, -0.609518, 1.64492, 2.14409, 0.15938, -0.16843, 0.424371, -1.56034, -0.149109, -5.91289, -3.92817, 7.53236, 1.37198, 3.3567, -4.77867, 5.7516, -0.67107}, {0.461366, -4.35523, -1.72378, -0.132927, -0.133043, -2.07188, -0.954792, -0.955627, -0.378232, 1.24151, -0.363075, 1.87552, 0.886107, -1.09783, 10.1383, 1.34449, 1.34567, 3.0285, 5.18945, 3.20927, 1.27021, -6.31053, 0.10663, -10.5306, -1.37028, 0.613236, 0.242715, -0.3544, 1.63001, -1.85075}, {-0.153789, 1.45174, 0.574593, 0.39878, 0.399129, 6.21564, -0.954792, -0.955627, -0.378232, 1.24151, -0.363075, 1.87552, 0.969555, -7.43698, -0.447622, 5.16366, 5.16818, 4.54143, 1.37028, -0.613236, -0.242715, -1.34449, -1.34567, -3.0285, -6.33631, 2.06554, -7.25936, -0.3544, 1.63001, -1.85075}, {-0.153789, 1.45174, 0.574593, -0.132927, -0.133043, -2.07188, 2.86438, 2.86688, 1.1347, 1.24151, -0.363075, 1.87552, 0.3544, -1.63001, 1.85075, 1.8762, 1.87784, 11.316, 1.98544, -6.42021, -2.54109, -1.34449, -1.34567, -3.0285, -1.37028, 0.613236, 0.242715, -5.32043, 3.08231, -9.35282}, {-0.153789, 1.45174, 0.574593, -0.132927, -0.133043, -2.07188, -0.954792, -0.955627, -0.378232, -3.72452, 1.08923, -5.62656, 0.3544, -1.63001, 1.85075, 1.34449, 1.34567, 3.0285, 1.37028, -0.613236, -0.242715, -0.72934, -7.15265, -5.32687, -0.838575, 1.14541, 8.53023, 3.46477, 5.45251, -0.337821}, {4.44089e-16, 7.02938, 0, 1.54187, 1.54427, 0.609885, -1.74043, -1.74314, 1.3308, 0.198561, 2.542, -1.94068, -8.07331, -5.18964, -3.1934, 0.245434, 0.245817, -2.39881, 9.11299, 12.0235, -6.96814, -1.03968, -10.4138, 10.1615, -2.15129, -5.0509, 1.64495, 1.90585, -0.987441, 0.75386}, {3.05311e-16, -2.34313, -2.22045e-16, -4.6256, -4.63281, -1.82966, -1.74043, -1.74314, 1.3308, 0.198561, 2.542, -1.94068, -1.90585, 10.3599, -0.75386, 7.20714, 7.21837, -7.722, 2.15129, 5.0509, -1.64495, -0.245434, -0.245817, 2.39881, -2.94553, -15.2189, 9.40768, 1.90585, -0.987441, 0.75386}, {-3.60822e-16, -2.34313, -2.22045e-16, 1.54187, 1.54427, 0.609885, 5.22128, 5.22942, -3.99239, 0.198561, 2.542, -1.94068, -1.90585, 0.987441, -0.75386, -5.92203, -5.93126, -4.83836, 2.15129, 14.4234, -1.64495, -0.245434, -0.245817, 2.39881, -2.15129, -5.0509, 1.64495, 1.11161, -11.1554, 8.51658}, {-5.55112e-17, -2.34313, 0, 1.54187, 1.54427, 0.609885, -1.74043, -1.74314, 1.3308, -0.595682, -7.62599, 5.82204, -1.90585, 0.987441, -0.75386, 0.245434, 0.245817, -2.39881, 2.15129, 5.0509, -1.64495, -0.245434, 9.12668, 2.39881, -8.31875, -11.228, -0.794587, 8.86756, 5.98512, -4.56932}, {4.8128, 0, 0, 1.54178, 1.54312, 0.61076, 0.198549, 0.198723, -1.94057, -0.136059, -1.74185, 1.32981, -6.08986, -8.0799, -3.19798, -2.15116, -2.15304, 1.64373, 0.943366, -1.04052, 10.1609, 2.6954, 9.12042, -6.96297, -1.73756, 0.245635, -2.39867, -0.0772416, 1.90741, 0.754941}, {-1.60427, 0, 0, -4.62533, -4.62937, -1.83228, 0.198549, 0.198723, -1.94057, -0.136059, -1.74185, 1.32981, 6.49431, -1.90741, -0.754941, -2.94536, -2.94793, 9.40601, 1.73756, -0.245635, 2.39867, 2.15116, 2.15304, -1.64373, -1.19332, 7.21302, -7.71791, -0.0772416, 1.90741, 0.754941}, {-1.60427, 2.22045e-16, -2.22045e-16, 1.54178, 1.54312, 0.61076, -0.595647, -0.596168, 5.82171, -0.136059, -1.74185, 1.32981, 0.0772416, -1.90741, -0.754941, -8.31826, -8.32553, -0.799305, 8.15463, -0.245635, 2.39867, 2.15116, 2.15304, -1.64373, -1.73756, 0.245635, -2.39867, 0.466995, 8.87479, -4.5643}, {-1.60427, 0, -2.22045e-16, 1.54178, 1.54312, 0.61076, 0.198549, 0.198723, -1.94057, 0.408178, 5.22554, -3.98943, 0.0772416, -1.90741, -0.754941, -2.15116, -2.15304, 1.64373, 1.73756, -0.245635, 2.39867, 8.56822, 2.15304, -1.64373, -7.90467, -5.92686, -4.84171, -0.871438, 1.11252, 8.51722}, {4.91028, -4.91028, -4.91028, -1.57573, -1.57573, 1.57573, 1.57573, 1.57573, 1.57573, 1.63676, -1.63676, -4.78823, 10.2738, 6.2275, -10.2738, -3.02869e-13, -3.06644e-13, -3.89543, -6.2275, -10.2738, -10.2738, -6.54704, 6.54704, 23.0483, -0.0754334, 3.97086, 3.97086, -3.97086, 0.0754334, 3.97086}, {-1.63676, 1.63676, 1.63676, 4.7272, 4.7272, -4.7272, 1.57573, 1.57573, 1.57573, 1.63676, -1.63676, -4.78823, 10.5179, -6.62248, -10.5179, -6.30294, -6.30294, -10.1984, 0.0754334, -3.97086, -3.97086, 3.01943e-13, 3.04683e-13, 3.89543, -6.62248, 10.5179, 23.1238, -3.97086, 0.0754334, 3.97086}, {-1.63676, 1.63676, 1.63676, -1.57573, -1.57573, 1.57573, -4.7272, -4.7272, -4.7272, 1.63676, -1.63676, -4.78823, 3.97086, -0.0754334, -3.97086, 6.30294, 6.30294, -10.1984, 6.62248, -10.5179, -10.5179, 3.00389e-13, 2.99798e-13, 3.89543, -0.0754334, 3.97086, 3.97086, -10.5179, 6.62248, 23.1238}, {-1.63676, 1.63676, 1.63676, -1.57573, -1.57573, 1.57573, 1.57573, 1.57573, 1.57573, -4.91028, 4.91028, 14.3647, 3.97086, -0.0754334, -3.97086, -2.96652e-13, -3.00426e-13, -3.89543, 0.0754334, -3.97086, -3.97086, 6.54704, -6.54704, -2.65162, 6.2275, 10.2738, -2.33207, -10.2738, -6.2275, -2.33207}, {4.24616, -5.57441, -4.24616, 0, 0, 3.15147, 1.78885, 1.78885, -1.78885, -0.373467, -3.64699, -2.778, 1.74951, -2.29678, -18.2508, -2.21115, -2.21115, -1.68428, -7.61705, -11.6633, 7.61705, 3.70501, 16.7991, 12.7963, 0.461631, 4.50793, -0.461631, -1.74951, 2.29678, 5.64494}, {-1.41539, 1.85814, 1.41539, 5.07516e-15, 1.27584e-14, -9.45441, 1.78885, 1.78885, -1.78885, -0.373467, -3.64699, -2.778, 7.41106, -9.72932, -11.3065, -9.36656, -9.36656, 5.47113, -0.461631, -4.50793, 0.461631, 2.21115, 2.21115, 1.68428, 1.9555, 19.0959, 10.6504, -1.74951, 2.29678, 5.64494}, {-1.41539, 1.85814, 1.41539, 0, 0, 3.15147, -5.36656, -5.36656, 5.36656, -0.373467, -3.64699, -2.778, 1.74951, -2.29678, -5.64494, -2.21115, -2.21115, -14.2902, 5.19992, -11.9405, -5.19992, 2.21115, 2.21115, 1.68428, 0.461631, 4.50793, -0.461631, -0.255645, 16.8847, 16.7569}, {-1.41539, 1.85814, 1.41539, 0, 0, 3.15147, 1.78885, 1.78885, -1.78885, 1.1204, 10.941, 8.334, 1.74951, -2.29678, -5.64494, -2.21115, -2.21115, -1.68428, -0.461631, -4.50793, 0.461631, 7.87269, -5.2214, -3.97726, 0.461631, 4.50793, -13.0675, -8.90493, -4.85864, 12.8004}, {-5.36656, -5.36656, 5.36656, -0.373467, -3.64699, 0.373467, -1.60567, 0, 0, 0.190281, 1.85814, 1.41539, -0.255645, 16.8847, 0.255645, 2.44635, 4.50793, -0.461631, 6.19624, -2.21115, 2.21115, -3.20747, -11.9405, -5.19992, 0.226431, 2.21115, -2.21115, 1.74951, -2.29678, -1.74951}, {1.78885, 1.78885, -1.78885, 1.1204, 10.941, -1.1204, -1.60567, 0, 0, 0.190281, 1.85814, 1.41539, -8.90493, -4.85864, 8.90493, 8.86902, 4.50793, -0.461631, -0.226431, -2.21115, 2.21115, -2.44635, -4.50793, 0.461631, -0.534693, -5.2214, -7.87269, 1.74951, -2.29678, -1.74951}, {1.78885, 1.78885, -1.78885, -0.373467, -3.64699, 0.373467, 4.817, 0, 0, 0.190281, 1.85814, 1.41539, -1.74951, 2.29678, 1.74951, 3.94022, 19.0959, -1.9555, -7.38185, -9.36656, 9.36656, -2.44635, -4.50793, 0.461631, 0.226431, 2.21115, -2.21115, 0.988391, -9.72932, -7.41106}, {1.78885, 1.78885, -1.78885, -0.373467, -3.64699, 0.373467, -1.60567, 0, 0, -0.570843, -5.57441, -4.24616, -1.74951, 2.29678, 1.74951, 2.44635, 4.50793, -0.461631, -0.226431, -2.21115, 2.21115, -9.60176, -11.6633, 7.61705, 1.7203, 16.7991, -3.70501, 8.17219, -2.29678, -1.74951}, {-1.80799, -0.0150891, -4.77555, -0.827431, 1.45271, 0.471751, -0.860099, -1.45095, 0.0849431, 1.08487, -0.00678866, -2.14855, 3.58755, -7.6127, -4.43776, 2.0859, -0.00217419, -0.688112, 3.7586, 7.59105, -2.4124, -6.42536, 0.0293288, 9.28229, -0.318207, -1.78726, 2.07263, -0.277826, 1.80186, 2.55075}, {0.602665, 0.0050297, 1.59185, 2.48229, -4.35813, -1.41525, -0.860099, -1.45095, 0.0849431, 1.08487, -0.00678866, -2.14855, -2.13283, -1.82198, -8.91816, 5.5263, 5.80162, -1.02788, 0.318207, 1.78726, -2.07263, -2.0859, 0.00217419, 0.688112, -4.65767, -1.7601, 10.6668, -0.277826, 1.80186, 2.55075}, {0.602665, 0.0050297, 1.59185, -0.827431, 1.45271, 0.471751, 2.5803, 4.35285, -0.254829, 1.08487, -0.00678866, -2.14855, 0.277826, -1.80186, -2.55075, 5.39562, -5.81301, -2.57512, -2.09245, 1.76714, -8.44004, -2.0859, 0.00217419, 0.688112, -0.318207, -1.78726, 2.07263, -4.61729, 1.82902, 11.1449}, {0.602665, 0.0050297, 1.59185, -0.827431, 1.45271, 0.471751, -0.860099, -1.45095, 0.0849431, -3.2546, 0.020366, 6.44564, 0.277826, -1.80186, -2.55075, 2.0859, -0.00217419, -0.688112, 0.318207, 1.78726, -2.07263, -4.49656, -0.0179446, -5.67929, 2.99152, -7.59809, 0.185628, 3.16257, 7.60566, 2.21098}, {1.57878, 4.35912, 1.72866, 0.141226, 1.44665, -1.44665, 1.40644, -1.11582e-18, -3.53145e-16, -1.02141, 0.00639156, 2.02287, -0.0889792, -5.77869, 8.28699, -1.91302, -1.78815, 1.78815, -6.71372, 1.79605, 0.712247, 5.99864, 1.76259, -9.87962, 1.08796, -1.79605, -0.712247, -0.475926, -0.0079004, -2.5004}, {-0.526258, -1.45304, -0.57622, -0.423679, -4.33994, 4.33994, 1.40644, -3.34745e-18, -1.05944e-15, -1.02141, 0.00639156, 2.02287, 2.58096, 5.82005, 4.80528, -7.53877, -1.78815, 1.78815, -1.08796, 1.79605, 0.712247, 1.91302, 1.78815, -1.78815, 5.17359, -1.82162, -8.80371, -0.475926, -0.0079004, -2.5004}, {-0.526258, -1.45304, -0.57622, 0.141226, 1.44665, -1.44665, -4.21932, 0, 0, -1.02141, 0.00639156, 2.02287, 0.475926, 0.0079004, 2.5004, -2.47792, -7.57474, 7.57474, 1.01707, 7.60821, 3.01713, 1.91302, 1.78815, -1.78815, 1.08796, -1.79605, -0.712247, 3.6097, -0.0334666, -10.5919}, {-0.526258, -1.45304, -0.57622, 0.141226, 1.44665, -1.44665, 1.40644, 3.34745e-18, 1.05944e-15, 3.06422, -0.0191747, -6.0686, 0.475926, 0.0079004, 2.5004, -1.91302, -1.78815, 1.78815, -1.08796, 1.79605, 0.712247, 4.01805, 7.60031, 0.516725, 0.523057, -7.58264, 5.07434, -6.10168, -0.0079004, -2.5004}, {10.941, -1.1204, -1.1204, 1.78885, -1.78885, -1.78885, -3.70338e-16, -2.82096e-16, 1.60567, 1.85814, 1.41539, -0.190281, -4.85864, 8.90493, 8.90493, -2.21115, 2.21115, 0.226431, 4.50793, -0.461631, -8.86902, -5.2214, -7.87269, 0.534693, -4.50793, 0.461631, 2.44635, -2.29678, -1.74951, -1.74951}, {-3.64699, 0.373467, 0.373467, -5.36656, 5.36656, 5.36656, -1.11101e-15, -8.46287e-16, 1.60567, 1.85814, 1.41539, -0.190281, 16.8847, 0.255645, 0.255645, -2.21115, 2.21115, -6.19624, 4.50793, -0.461631, -2.44635, 2.21115, -2.21115, -0.226431, -11.9405, -5.19992, 3.20747, -2.29678, -1.74951, -1.74951}, {-3.64699, 0.373467, 0.373467, 1.78885, -1.78885, -1.78885, 0, 0, -4.817, 1.85814, 1.41539, -0.190281, 2.29678, 1.74951, 1.74951, -9.36656, 9.36656, 7.38185, 19.0959, -1.9555, -3.94022, 2.21115, -2.21115, -0.226431, -4.50793, 0.461631, 2.44635, -9.72932, -7.41106, -0.988391}, {-3.64699, 0.373467, 0.373467, 1.78885, -1.78885, -1.78885, 1.11101e-15, 8.46287e-16, 1.60567, -5.57441, -4.24616, 0.570843, 2.29678, 1.74951, 1.74951, -2.21115, 2.21115, 0.226431, 4.50793, -0.461631, -2.44635, 16.7991, -3.70501, -1.7203, -11.6633, 7.61705, 9.60176, -2.29678, -1.74951, -8.17219}, {-5.57441, -4.24616, -4.24616, 1.78885, -1.78885, -1.78885, 2.85327e-15, 3.15147, -2.92187e-16, -3.64699, -2.778, 0.373467, -11.6633, 7.61705, 7.61705, -2.21115, -1.68428, 2.21115, -2.29678, -18.2508, -1.74951, 16.7991, 12.7963, -3.70501, 2.29678, 5.64494, 1.74951, 4.50793, -0.461631, -0.461631}, {1.85814, 1.41539, 1.41539, -5.36656, 5.36656, 5.36656, -5.70654e-15, 3.15147, 5.84374e-16, -3.64699, -2.778, 0.373467, -11.9405, -5.19992, -5.19992, -2.21115, -14.2902, 2.21115, -2.29678, -5.64494, -1.74951, 2.21115, 1.68428, -2.21115, 16.8847, 16.7569, 0.255645, 4.50793, -0.461631, -0.461631}, {1.85814, 1.41539, 1.41539, 1.78885, -1.78885, -1.78885, 0, -9.45441, 0, -3.64699, -2.778, 0.373467, -4.50793, 0.461631, 0.461631, -9.36656, 5.47113, 9.36656, -9.72932, -11.3065, -7.41106, 2.21115, 1.68428, -2.21115, 2.29678, 5.64494, 1.74951, 19.0959, 10.6504, -1.9555}, {1.85814, 1.41539, 1.41539, 1.78885, -1.78885, -1.78885, -2.85327e-15, 3.15147, 2.92187e-16, 10.941, 8.334, -1.1204, -4.50793, 0.461631, 0.461631, -2.21115, -1.68428, 2.21115, -2.29678, -5.64494, -1.74951, -5.2214, -3.97726, -7.87269, -4.85864, 12.8004, 8.90493, 4.50793, -13.0675, -0.461631}, {0.184458, 9.63611, 9.63611, 0.802834, -0.802834, 0.802834, -1.57551, 1.57551, 1.57551, 0.834161, 2.43936, 0.833693, -4.12769, 8.17399, -0.233398, 0.955079, -0.955079, -2.93979, 8.32547, -4.27918, -4.27918, -4.29172, -8.80237, -0.394979, -2.02344, -2.02286, -2.02286, 0.916356, -4.96265, -2.97794}, {-0.0614861, -3.21204, -3.21204, -2.4085, 2.4085, -2.4085, -1.57551, 1.57551, 1.57551, 0.834161, 2.43936, 0.833693, -0.670412, 17.8108, 15.8261, 7.25711, -7.25711, -9.24183, 2.02344, 2.02286, 2.02286, -0.955079, 0.955079, 2.93979, -5.36008, -11.7803, -5.35763, 0.916356, -4.96265, -2.97794}, {-0.0614861, -3.21204, -3.21204, 0.802834, -0.802834, 0.802834, 4.72653, -4.72653, -4.72653, 0.834161, 2.43936, 0.833693, -0.916356, 4.96265, 2.97794, -2.25626, 2.25626, -6.15113, 2.26938, 14.871, 14.871, -0.955079, 0.955079, 2.93979, -2.02344, -2.02286, -2.02286, -2.42029, -14.7201, -6.31271}, {-0.0614861, -3.21204, -3.21204, 0.802834, -0.802834, 0.802834, -1.57551, 1.57551, 1.57551, -2.50248, -7.31808, -2.50108, -0.916356, 4.96265, 2.97794, 0.955079, -0.955079, -2.93979, 2.02344, 2.02286, 2.02286, -0.709135, 13.8032, 15.7879, -5.23477, 1.18848, -5.23419, 7.21839, -11.2647, -9.27997}, {4.72653, -4.72653, -4.72653, 1.637, 1.63653, 1.63653, 1.57573, 1.57573, -1.57573, -1.63722, -4.78777, -1.6363, -6.62398, -10.5164, -10.5164, -3.97115, -3.97057, -0.0751443, -6.30322, -10.1981, 6.30322, 10.52, 23.1217, 6.62035, 0.000278382, 3.89515, -0.000278382, 0.076001, 3.9703, 3.9703}, {-1.57551, 1.57551, 1.57551, -4.91099, -4.90958, -4.90958, 1.57573, 1.57573, -1.57573, -1.63722, -4.78777, -1.6363, 6.22604, -10.2723, -10.2723, -10.2741, -10.2735, 6.22779, -0.000278382, -3.89515, 0.000278382, 3.97115, 3.97057, 0.0751443, 6.54916, 23.0462, 6.54493, 0.076001, 3.9703, 3.9703}, {-1.57551, 1.57551, 1.57551, 1.637, 1.63653, 1.63653, -4.7272, -4.7272, 4.7272, -1.63722, -4.78777, -1.6363, -0.076001, -3.9703, -3.9703, -10.5191, -10.5167, -6.62125, 6.30176, -10.1972, -6.30176, 3.97115, 3.97057, 0.0751443, 0.000278382, 3.89515, -0.000278382, 6.62488, 23.1214, 10.5155}, {-1.57551, 1.57551, 1.57551, 1.637, 1.63653, 1.63653, 1.57573, 1.57573, -1.57573, 4.91166, 14.3633, 4.90891, -0.076001, -3.9703, -3.9703, -3.97115, -3.97057, -0.0751443, -0.000278382, -3.89515, 0.000278382, 10.2732, -2.33146, -6.22689, -6.5477, -2.65096, -6.54639, -6.22694, -2.33264, 10.2732}, {2.2538, -2.2568, -6.95596, 1.0326, -1.0322, -0.409331, 0.623613, 1.72184, 0.682817, -0.904944, -1.44191, -2.59214, -4.47814, 4.47482, -0.722725, -2.04719, -0.852443, -0.338046, -2.33666, -9.94553, -6.44129, 5.66697, 6.62007, 10.7066, -0.157789, 3.05817, 3.71002, 0.347745, -0.346017, 2.36005}, {-0.751267, 0.752267, 2.31865, -3.09779, 3.0966, 1.22799, 0.623613, 1.72184, 0.682817, -0.904944, -1.44191, -2.59214, 2.65732, -2.66305, -11.6347, -4.54164, -7.73981, -3.06931, 0.157789, -3.05817, -3.71002, 2.04719, 0.852443, 0.338046, 3.46199, 8.8258, 14.0786, 0.347745, -0.346017, 2.36005}, {-0.751267, 0.752267, 2.31865, 1.0326, -1.0322, -0.409331, -1.87084, -5.16552, -2.04845, -0.904944, -1.44191, -2.59214, -0.347745, 0.346017, -2.36005, -6.17758, 3.27636, 1.29928, 3.16286, -6.06723, -12.9846, 2.04719, 0.852443, 0.338046, -0.157789, 3.05817, 3.71002, 3.96752, 5.42161, 12.7286}, {-0.751267, 0.752267, 2.31865, 1.0326, -1.0322, -0.409331, 0.623613, 1.72184, 0.682817, 2.71483, 4.32572, 7.77641, -0.347745, 0.346017, -2.36005, -2.04719, -0.852443, -0.338046, 0.157789, -3.05817, -3.71002, 5.05226, -2.15663, -8.93656, -4.28818, 7.18697, 5.34735, -2.14671, -7.23338, -0.371216}, {4.6308, -4.62902, -1.83569, 1.74378, -1.74182, 1.32959, 2.34612, 3.47392e-16, -3.39235e-15, -2.5463, 0.198817, -1.94149, -7.22258, 7.21305, -7.71818, -5.0554, 2.15301, -1.64347, -10.3764, -1.90726, -0.756347, 15.2406, -2.94828, 9.40942, 0.991964, 1.90726, 0.756347, 0.24744, -0.245751, 2.39981}, {-1.5436, 1.54301, 0.611898, -5.23135, 5.22547, -3.98877, 2.34612, -2.31594e-16, 2.26157e-15, -2.5463, 0.198817, -1.94149, 5.92697, -5.92628, -4.8474, -14.4399, 2.15301, -1.64347, -0.991964, -1.90726, -0.756347, 5.0554, -2.15301, 1.64347, 11.1772, 1.11199, 8.5223, 0.24744, -0.245751, 2.39981}, {-1.5436, 1.54301, 0.611898, 1.74378, -1.74182, 1.32959, -7.03835, 0, 0, -2.5463, 0.198817, -1.94149, -0.24744, 0.245751, -2.39981, -12.0305, 9.12031, -6.96183, 5.18244, -8.07929, -3.20394, 5.0554, -2.15301, 1.64347, 0.991964, 1.90726, 0.756347, 10.4326, -1.04102, 10.1658}, {-1.5436, 1.54301, 0.611898, 1.74378, -1.74182, 1.32959, 2.34612, 1.15797e-16, -1.13078e-15, 7.6389, -0.59645, 5.82447, -0.24744, 0.245751, -2.39981, -5.0554, 2.15301, -1.64347, -0.991964, -1.90726, -0.756347, 11.2298, -8.32504, -0.804126, -5.98318, 8.87456, -4.56202, -9.13703, -0.245751, 2.39981}, {7.47016e-18, 3.62803, 8.88178e-16, -1.45582, 0.0794645, -1.44142, 1.45582, 0.249439, -0.577805, -1.62092e-12, 0.88044, 2.01922, 7.62276, 1.07875, 7.54736, -2.00373e-12, -0.406547, 2.4959, -7.62276, 0.188753, 3.02542, 8.48742e-12, -3.11521, -10.5728, 1.79949, -1.18651, -0.714206, -1.79949, -1.39661, -1.78169}, {-1.75097e-16, -1.20934, 0, 4.36745, -0.238394, 4.32425, 1.45582, 0.249439, -0.577805, -1.62031e-12, 0.88044, 2.01922, 1.79949, 6.23398, 1.78169, -5.82327, -1.4043, 4.80711, -1.79949, 1.18651, 0.714206, 2.00284e-12, 0.406547, -2.4959, 1.79949, -4.70827, -8.79109, -1.79949, -1.39661, -1.78169}, {-7.62205e-17, -1.20934, 0, -1.45582, 0.0794645, -1.44142, -4.36745, -0.748316, 1.73341, -1.61907e-12, 0.88044, 2.01922, 1.79949, 1.39661, 1.78169, 5.82327, -0.724405, 8.26156, -1.79949, 6.02388, 0.714206, 2.00151e-12, 0.406547, -2.4959, 1.79949, -1.18651, -0.714206, -1.79949, -4.91837, -9.85858}, {-1.9973e-16, -1.20934, 4.44089e-16, -1.45582, 0.0794645, -1.44142, 1.45582, 0.249439, -0.577805, 4.86018e-12, -2.64132, -6.05767, 1.79949, 1.39661, 1.78169, -2.00262e-12, -0.406547, 2.4959, -1.79949, 1.18651, 0.714206, 2.00364e-12, 5.24392, -2.4959, 7.62276, -1.50437, 5.05146, -7.62276, -2.39436, 0.529529}, {4.15997e-12, 1.3684, -5.1823, 1.45582, 0.310608, -0.437518, -1.45582, 0.975521, 0.61362, 1.52817e-12, -0.829997, -1.90353, -7.62276, -1.06255, 0.155649, 1.74971e-13, -1.58974, -0.217674, 7.62276, -4.54408, -5.34818, -6.28766e-12, 4.90973, 7.83181, -1.79949, 0.642, 2.8937, 1.79949, -0.179878, 1.59442}, {-1.3859e-12, -0.456132, 1.72743, -4.36745, -0.931824, 1.31255, -1.45582, 0.975521, 0.61362, 1.52713e-12, -0.829997, -1.90353, -1.79949, 2.00441, -8.50415, 5.82327, -5.49183, -2.67215, 1.79949, -0.642, -2.8937, -1.74749e-13, 1.58974, 0.217674, -1.79949, 3.96199, 10.5078, 1.79949, -0.179878, 1.59442}, {-1.38592e-12, -0.456132, 1.72743, 1.45582, 0.310608, -0.437518, 4.36745, -2.92656, -1.84086, 1.52736e-12, -0.829997, -1.90353, -1.79949, 0.179878, -1.59442, -5.82327, -2.83217, 1.5324, 1.79949, 1.18253, -9.80343, -1.74749e-13, 1.58974, 0.217674, -1.79949, 0.642, 2.8937, 1.79949, 3.14011, 9.20856}, {-1.38453e-12, -0.456132, 1.72743, 1.45582, 0.310608, -0.437518, -1.45582, 0.975521, 0.61362, -4.57858e-12, 2.48999, 5.7106, -1.79949, 0.179878, -1.59442, 1.75193e-13, -1.58974, -0.217674, 1.79949, -0.642, -2.8937, 5.36315e-12, 3.41427, -6.69206, -7.62276, -0.600431, 4.64377, 7.62276, -4.08196, -0.860057}, {3.89774, -2.39084, -3.90175, -1.08034, -0.824783, -1.26412, 1.27484, -0.81558, 1.06845, 1.10475, 0.843417, -1.10491, 7.26269, 3.33354, 5.01139, -0.240416, 2.0276, 0.241863, -5.06919, 3.28535, -7.20207, -4.17857, -5.40127, 4.17779, -0.0301684, -0.023032, 2.92828, -2.94133, -0.0344082, 0.0450763}, {-1.29925, 0.796947, 1.30058, 3.24102, 2.47435, 3.79235, 1.27484, -0.81558, 1.06845, 1.10475, 0.843417, -1.10491, 8.13832, -3.15338, -5.24742, -5.33978, 5.28992, -4.03192, 0.0301684, 0.023032, -2.92828, 0.240416, -2.0276, -0.241863, -4.44916, -3.3967, 7.34794, -2.94133, -0.0344082, 0.0450763}, {-1.29925, 0.796947, 1.30058, -1.08034, -0.824783, -1.26412, -3.82452, 2.44674, -3.20534, 1.10475, 0.843417, -1.10491, 2.94133, 0.0344082, -0.0450763, 4.08094, 5.32673, 5.29833, 5.22716, -3.16475, -8.13062, 0.240416, -2.0276, -0.241863, -0.0301684, -0.023032, 2.92828, -7.36032, -3.40808, 4.46473}, {-1.29925, 0.796947, 1.30058, -1.08034, -0.824783, -1.26412, 1.27484, -0.81558, 1.06845, -3.31424, -2.53025, 3.31474, 2.94133, 0.0344082, -0.0450763, -0.240416, 2.0276, 0.241863, 0.0301684, 0.023032, -2.92828, 5.43741, -5.21539, -5.4442, 4.29119, 3.2761, 7.98475, -8.04069, 3.22791, -4.22871}, {-7.02938, 0, 7.99361e-15, 0, 0, -2.34462, -1.02079e-11, 1.78885, 0.00114147, -2.34313, -1.78885, 2.34348, -2.89626, 0, 12.2766, 1.26176e-11, -2.21115, 2.8967, -2.89626, -9.36656, -0.00597681, 9.3725, 9.36656, -12.2706, 2.89626, 2.21115, 0.00141093, 2.89626, 0, -2.89811}, {2.34313, 0, 4.44089e-15, 0, 0, 7.03386, -1.02099e-11, 1.78885, 0.00114147, -2.34313, -1.78885, 2.34348, -12.2688, 0, 2.89811, 5.346e-11, -9.36656, 2.89213, -2.89626, -2.21115, -0.00141093, -1.26208e-11, 2.21115, -2.8967, 12.2688, 9.36656, -9.37251, 2.89626, 0, -2.89811}, {2.34313, -4.21885e-15, 2.22045e-15, 0, 0, -2.34462, 3.06361e-11, -5.36656, -0.00342441, -2.34313, -1.78885, 2.34348, -2.89626, 5.32907e-15, 2.89811, 1.26228e-11, -2.21115, 12.2752, -12.2688, -2.21115, -0.00141093, -1.26233e-11, 2.21115, -2.8967, 2.89626, 2.21115, 0.00141093, 12.2688, 7.15542, -12.272}, {2.34313, 3.10862e-15, -3.9968e-15, 0, 0, -2.34462, -1.0211e-11, 1.78885, 0.00114147, 7.02938, 5.36656, -7.03044, -2.89626, -3.55271e-15, 2.89811, 1.26215e-11, -2.21115, 2.8967, -2.89626, -2.21115, -0.00141093, -9.3725, 2.21115, -2.8967, 2.89626, 2.21115, 9.37989, 2.89626, -7.15542, -2.90268}, {-4.72653, 4.72653, 4.72653, -0.802949, -0.802719, 0.802949, -3.21204, 3.21204, -0.0614861, 2.43948, -0.833808, 0.834046, 2.25686, 6.15053, -2.25686, 4.96279, -2.97808, -0.916498, 14.871, -14.871, 2.26938, -14.7207, 6.31331, -2.41969, -2.02286, 2.02286, -2.02344, 0.954937, -2.93965, -0.954937}, {1.57551, -1.57551, -1.57551, 2.40885, 2.40816, -2.40885, -3.21204, 3.21204, -0.0614861, 2.43948, -0.833808, 0.834046, -7.25697, 9.24169, 7.25697, 17.8109, -15.8262, -0.670554, 2.02286, -2.02286, 2.02344, -4.96279, 2.97808, 0.916498, -11.7808, 5.35809, -5.35962, 0.954937, -2.93965, -0.954937}, {1.57551, -1.57551, -1.57551, -0.802949, -0.802719, 0.802949, 9.63611, -9.63611, 0.184458, 2.43948, -0.833808, 0.834046, -0.954937, 2.93965, 0.954937, 8.17459, 0.232798, -4.12829, -4.27918, 4.27918, 8.32547, -4.96279, 2.97808, 0.916498, -2.02286, 2.02286, -2.02344, -8.80297, 0.39558, -4.29112}, {1.57551, -1.57551, -1.57551, -0.802949, -0.802719, 0.802949, -3.21204, 3.21204, -0.0614861, -7.31843, 2.50142, -2.50214, -0.954937, 2.93965, 0.954937, 4.96279, -2.97808, -0.916498, 2.02286, -2.02286, 2.02344, -11.2648, 9.28012, 7.21853, 1.18894, 5.23374, -5.23523, 13.8031, -15.7878, -0.708993}, {-4.72653, 4.72653, 4.72653, 1.57596, 1.57551, 1.57551, 1.63653, -1.63653, 1.637, -4.788, 1.63653, -1.637, -10.1993, -6.30204, -6.30204, -3.97085, 0.0754226, -3.97087, -10.5164, 10.5164, -6.62398, 23.1228, -6.62153, 10.5189, 3.9703, -3.9703, 0.076001, 3.89543, -1.81144e-12, -1.80922e-12}, {1.57551, -1.57551, -1.57551, -4.72788, -4.72653, -4.72653, 1.63653, -1.63653, 1.637, -4.788, 1.63653, -1.637, -10.1975, 6.30204, 6.30204, -10.517, 6.62153, -10.5189, -3.9703, 3.9703, -0.076001, 3.97085, -0.0754226, 3.97087, 23.1223, -10.5164, 6.62398, 3.89543, -1.81766e-12, -1.81499e-12}, {1.57551, -1.57551, -1.57551, 1.57596, 1.57551, 1.57551, -4.90958, 4.90958, -4.91099, -4.788, 1.63653, -1.637, -3.89543, 1.81677e-12, 1.81988e-12, -10.2747, -6.22661, -10.2729, -10.2723, 10.2723, 6.22604, 3.97085, -0.0754226, 3.97087, 3.9703, -3.9703, 0.076001, 23.0474, -6.54611, 6.54798}, {1.57551, -1.57551, -1.57551, 1.57596, 1.57551, 1.57551, 1.63653, -1.63653, 1.637, 14.364, -4.90958, 4.91099, -3.89543, 1.81632e-12, 1.81677e-12, -3.97085, 0.0754226, -3.97087, -3.9703, 3.9703, -0.076001, -2.33118, 6.22661, 10.2729, -2.33354, -10.2723, -6.22604, -2.65068, 6.54611, -6.54798}, {-1.1204, 1.1204, 10.941, 0, -1.60567, 0, -1.78885, 1.78885, 1.78885, 1.41539, 0.190281, 1.85814, -0.461631, 8.86902, 4.50793, 2.21115, -0.226431, -2.21115, 8.90493, -8.90493, -4.85864, -7.87269, -0.534693, -5.2214, -1.74951, 1.74951, -2.29678, 0.461631, -2.44635, -4.50793}, {0.373467, -0.373467, -3.64699, 0, 4.817, 0, -1.78885, 1.78885, 1.78885, 1.41539, 0.190281, 1.85814, -1.9555, 3.94022, 19.0959, 9.36656, -7.38185, -9.36656, 1.74951, -1.74951, 2.29678, -2.21115, 0.226431, 2.21115, -7.41106, 0.988391, -9.72932, 0.461631, -2.44635, -4.50793}, {0.373467, -0.373467, -3.64699, 0, -1.60567, 0, 5.36656, -5.36656, -5.36656, 1.41539, 0.190281, 1.85814, -0.461631, 2.44635, 4.50793, 2.21115, 6.19624, -2.21115, 0.255645, -0.255645, 16.8847, -2.21115, 0.226431, 2.21115, -1.74951, 1.74951, -2.29678, -5.19992, -3.20747, -11.9405}, {0.373467, -0.373467, -3.64699, 0, -1.60567, 0, -1.78885, 1.78885, 1.78885, -4.24616, -0.570843, -5.57441, -0.461631, 2.44635, 4.50793, 2.21115, -0.226431, -2.21115, 1.74951, -1.74951, 2.29678, -3.70501, 1.7203, 16.7991, -1.74951, 8.17219, -2.29678, 7.61705, -9.60176, -11.6633}, {-9.45441, 1.33227e-15, 1.59872e-14, -1.78885, 1.78885, 1.78885, 1.41539, -1.41539, 1.85814, -2.778, -0.373467, -3.64699, 5.47113, -9.36656, -9.36656, 0.461631, -0.461631, -4.50793, -11.3065, 7.41106, -9.72932, 10.6504, 1.9555, 19.0959, 5.64494, -1.74951, 2.29678, 1.68428, 2.21115, 2.21115}, {3.15147, -1.88738e-15, -7.10543e-15, 5.36656, -5.36656, -5.36656, 1.41539, -1.41539, 1.85814, -2.778, -0.373467, -3.64699, -14.2902, -2.21115, -2.21115, -5.19992, 5.19992, -11.9405, -5.64494, 1.74951, -2.29678, -0.461631, 0.461631, 4.50793, 16.7569, -0.255645, 16.8847, 1.68428, 2.21115, 2.21115}, {3.15147, 2.55351e-15, -3.10862e-15, -1.78885, 1.78885, 1.78885, -4.24616, 4.24616, -5.57441, -2.778, -0.373467, -3.64699, -1.68428, -2.21115, -2.21115, 7.61705, -7.61705, -11.6633, -18.2508, 1.74951, -2.29678, -0.461631, 0.461631, 4.50793, 5.64494, -1.74951, 2.29678, 12.7963, 3.70501, 16.7991}, {3.15147, 6.10623e-16, 3.9968e-15, -1.78885, 1.78885, 1.78885, 1.41539, -1.41539, 1.85814, 8.334, 1.1204, 10.941, -1.68428, -2.21115, -2.21115, 0.461631, -0.461631, -4.50793, -5.64494, 1.74951, -2.29678, -13.0675, 0.461631, 4.50793, 12.8004, -8.90493, -4.85864, -3.97726, 7.87269, -5.2214}, {0.889469, 0.890856, -5.70584, -0.741046, -0.742202, -0.293121, 1.30296, -1.03813, 0.515387, -0.265426, 2.07729, -2.12421, 4.24665, 4.25327, -0.816132, -0.694566, 2.20061, -0.274736, -6.45592, 5.80278, -5.04953, 1.75627, -10.5098, 8.77158, 1.24407, -1.65026, 2.98799, -1.28247, -1.28446, 1.98862}, {-0.29649, -0.296952, 1.90195, 2.22314, 2.2266, 0.879363, 1.30296, -1.03813, 0.515387, -0.265426, 2.07729, -2.12421, 2.46842, 2.47227, -9.5964, -5.90641, 6.35314, -2.33628, -1.24407, 1.65026, -2.98799, 0.694566, -2.20061, 0.274736, 2.30577, -9.9594, 11.4848, -1.28247, -1.28446, 1.98862}, {-0.29649, -0.296952, 1.90195, -0.741046, -0.742202, -0.293121, -3.90889, 3.1144, -1.54616, -0.265426, 2.07729, -2.12421, 1.28247, 1.28446, -1.98862, 2.26962, 5.16942, 0.897749, -0.0581089, 2.83806, -10.5958, 0.694566, -2.20061, 0.274736, 1.24407, -1.65026, 2.98799, -0.220762, -9.59361, 10.4855}, {-0.29649, -0.296952, 1.90195, -0.741046, -0.742202, -0.293121, 1.30296, -1.03813, 0.515387, 0.796277, -6.23186, 6.37263, 1.28247, 1.28446, -1.98862, -0.694566, 2.20061, -0.274736, -1.24407, 1.65026, -2.98799, 1.88052, -1.01281, -7.33305, 4.20825, 1.31855, 4.16047, -6.49431, 2.86807, -0.0729313}, {1.60243, -4.68893, 4.44089e-16, 1.23856, -0.534131, 1.50236e-16, -0.868329, 0.25394, -1.31177, 0.163908, -1.28279, 1.31177, -5.82496, 0.864798, -6.66134e-16, -0.457635, 0.346335, 1.62143, 5.20686, -3.26159, 6.86849, -0.197999, 4.78481, -6.86849, -1.73355, 2.24583, -1.62143, 0.870711, 1.27173, 0}, {-0.534143, 1.56298, -2.22045e-16, -3.71569, 1.60239, -6.76061e-16, -0.868329, 0.25394, -1.31177, 0.163908, -1.28279, 1.31177, 1.26586, -7.52364, 8.88178e-16, 3.01568, -0.669425, 6.86849, 1.73355, -2.24583, 1.62143, 0.457635, -0.346335, -1.62143, -2.38918, 7.37698, -6.86849, 0.870711, 1.27173, 0}, {-0.534143, 1.56298, 2.22045e-16, 1.23856, -0.534131, -3.00472e-16, 2.60499, -0.76182, 3.9353, 0.163908, -1.28279, 1.31177, -0.870711, -1.27173, 0, -5.41189, 2.48286, 1.62143, 3.87012, -8.49775, 1.62143, 0.457635, -0.346335, -1.62143, -1.73355, 2.24583, -1.62143, 0.215077, 6.40287, -5.24706}, {-0.534143, 1.56298, 0, 1.23856, -0.534131, 4.50708e-16, -0.868329, 0.25394, -1.31177, -0.491725, 3.84836, -3.9353, -0.870711, -1.27173, -4.44089e-16, -0.457635, 0.346335, 1.62143, 1.73355, -2.24583, 1.62143, 2.59421, -6.59825, -1.62143, -6.6878, 4.38236, -1.62143, 4.34403, 0.255965, 5.24706}, {3.16808, 2.71157e-16, -8.88178e-16, -0.300269, 1.44665, -1.44665, 0.153249, -1.44665, -0.572575, 1.20305, -1.58738e-12, 2.01922, 2.87755, -7.57474, 7.57474, 0.181727, -1.96199e-12, 2.4959, 0.502898, 7.57474, 2.99804, -4.99391, 8.31151e-12, -10.5728, -1.11589, -1.78815, -0.707741, -1.67647, 1.78815, -1.78815}, {-1.05603, 1.56152e-17, 0, 0.900808, -4.33994, 4.33994, 0.153249, -1.44665, -0.572575, 1.20305, -1.58652e-12, 2.01922, 5.90057, -1.78815, 1.78815, -0.431268, 5.78659, 4.7862, 1.11589, 1.78815, 0.707741, -0.181727, 1.9611e-12, -2.4959, -5.92808, -1.78815, -8.78463, -1.67647, 1.78815, -1.78815}, {-1.05603, -4.03605e-17, 0, -0.300269, 1.44665, -1.44665, -0.459746, 4.33994, 1.71772, 1.20305, -1.58802e-12, 2.01922, 1.67647, -1.78815, 1.78815, 1.3828, -5.78659, 8.28248, 5.34, 1.78815, 0.707741, -0.181727, 1.96287e-12, -2.4959, -1.11589, -1.78815, -0.707741, -6.48866, 1.78815, -9.86504}, {-1.05603, -1.63709e-17, 4.44089e-16, -0.300269, 1.44665, -1.44665, 0.153249, -1.44665, -0.572575, -3.60914, 4.76214e-12, -6.05767, 1.67647, -1.78815, 1.78815, 0.181727, -1.96221e-12, 2.4959, 1.11589, 1.78815, 0.707741, 4.04237, 1.96294e-12, -2.4959, 0.0851836, -7.57474, 5.07885, -2.28947, 7.57474, 0.502145}, {-1.48316, 4.33994, 1.33227e-15, 0.561638, 1.44665, 4.17162e-16, -0.27448, -1.03171e-12, 1.31177, -0.781545, 1.03171e-12, -1.31177, -3.55187, -5.78659, -1.77636e-15, -0.354947, -1.78815, -1.62143, 0.8261, 1.78815, -6.86849, 3.48113, 1.78815, 6.86849, 0.27182, -1.78815, 1.62143, 1.30532, 0, 0}, {0.494387, -1.44665, 2.22045e-16, -1.68492, -4.33994, 8.34324e-16, -0.27448, -1.03124e-12, 1.31177, -0.781545, 1.03124e-12, -1.31177, -3.28287, 5.78659, -8.88178e-16, 0.742973, -1.78815, -6.86849, -0.27182, 1.78815, -1.62143, 0.354947, 1.78815, 1.62143, 3.398, -1.78815, 6.86849, 1.30532, 0, 0}, {0.494387, -1.44665, -2.22045e-16, 0.561638, 1.44665, 2.78108e-16, 0.82344, 3.09443e-12, -3.9353, -0.781545, 1.03148e-12, -1.31177, -1.30532, 3.59135e-16, 0, -2.6015, -7.57474, -1.62143, -2.24937, 7.57474, -1.62143, 0.354947, 1.78815, 1.62143, 0.27182, -1.78815, 1.62143, 4.4315, -4.1259e-12, 5.24706}, {0.494387, -1.44665, 2.22045e-16, 0.561638, 1.44665, -2.78108e-16, -0.27448, -1.03171e-12, 1.31177, 2.34464, -3.09513e-12, 3.9353, -1.30532, 3.59135e-16, 0, -0.354947, -1.78815, -1.62143, -0.27182, 1.78815, -1.62143, -1.6226, 7.57474, 1.62143, -1.97473, -7.57474, 1.62143, 2.40324, 4.12684e-12, -5.24706}, {4.33994, 0.162335, 4.33994, 0, 1.38248, 0, 1.44665, 0.246581, -0.572575, -1.76997e-12, -1.57494, 2.01922, 1.78815, -7.17185, 1.78815, -1.78815, -2.01362, 0.707741, -5.78659, -1.22423, 4.7862, 1.78815, 8.3134, -8.78463, 2.1878e-12, 0.237905, -2.4959, -1.78815, 1.64195, -1.78815}, {-1.44665, -0.0541117, -1.44665, -1.48949e-15, -4.14743, -5.64752e-15, 1.44665, 0.246581, -0.572575, -1.77017e-12, -1.57494, 2.01922, 7.57474, -1.4255, 7.57474, -7.57474, -2.99995, 2.99804, -2.18708e-12, -0.237905, 2.4959, 1.78815, 2.01362, -0.707741, 9.26812e-12, 6.53768, -10.5728, -1.78815, 1.64195, -1.78815}, {-1.44665, -0.0541117, -1.44665, -2.42885e-27, 1.38248, 2.77202e-15, -4.33994, -0.739742, 1.71772, -1.76924e-12, -1.57494, 2.01922, 1.78815, -1.64195, 1.78815, -1.78815, -7.54353, 0.707741, 5.78659, -0.021458, 8.28248, 1.78815, 2.01362, -0.707741, 2.1869e-12, 0.237905, -2.4959, -1.78815, 7.94173, -9.86504}, {-1.44665, -0.0541117, -1.44665, 0, 1.38248, 0, 1.44665, 0.246581, -0.572575, 5.31045e-12, 4.72483, -6.05767, 1.78815, -1.64195, 1.78815, -1.78815, -2.01362, 0.707741, -2.18766e-12, -0.237905, 2.4959, 7.57474, 2.23007, 5.07885, 2.18802e-12, -5.292, -2.4959, -7.57474, 0.655625, 0.502145}, {-4.33994, 1.02197, -0.540949, -9.62561e-13, 0.52571, 1.09845, -1.44665, -1.05053, -0.169142, 9.72352e-13, 0.86548, -1.10962, -1.78815, -2.33158, -5.97445, 1.78815, 0.648718, -1.14869, 5.78659, 5.92175, 0.662758, -1.78815, -4.11064, 5.58719, -1.2103e-14, -1.71961, 0.0138116, 1.78815, 0.22874, 1.58064}, {1.44665, -0.340656, 0.180316, 2.88884e-12, -1.57713, -3.29535, -1.44665, -1.05053, -0.169142, 9.72241e-13, 0.86548, -1.10962, -7.57474, 1.13389, -2.30191, 7.57474, 4.85086, -0.472119, 1.11288e-14, 1.71961, -0.0138116, -1.78815, -0.648718, 1.14869, -3.90045e-12, -5.18153, 4.45231, 1.78815, 0.22874, 1.58064}, {1.44665, -0.340656, 0.180316, -9.63744e-13, 0.52571, 1.09845, 4.33994, 3.1516, 0.507427, 9.73548e-13, 0.86548, -1.10962, -1.78815, -0.22874, -1.58064, 1.78815, -1.45412, -5.54249, -5.78659, 3.08223, -0.735077, -1.78815, -0.648718, 1.14869, -1.21179e-14, -1.71961, 0.0138116, 1.78815, -3.23318, 6.01914}, {1.44665, -0.340656, 0.180316, -9.6335e-13, 0.52571, 1.09845, -1.44665, -1.05053, -0.169142, -2.91945e-12, -2.59644, 3.32887, -1.78815, -0.22874, -1.58064, 1.78815, 0.648718, -1.14869, 1.17538e-14, 1.71961, -0.0138116, -7.57474, 0.713906, 0.427423, 3.84129e-12, -3.82245, -4.37999, 7.57474, 4.43088, 2.25721}, {-4.74899, 4.74899, 3.61742, 0.497745, -0.497745, 2.77232, -2.29648, -0.854984, 1.74929, 0.215741, 2.93573, -3.3158, -4.56292, 4.56292, -13.0256, 2.22336, 1.67207, -5.58902, 10.0679, 6.43345, -7.66893, -3.08633, -13.415, 18.8522, -0.881918, -3.01351, 0.671778, 2.57194, -2.57194, 1.93632}, {1.583, -1.583, -1.20581, -1.49324, 1.49324, -8.31697, -2.29648, -0.854984, 1.74929, 0.215741, 2.93573, -3.3158, -8.90393, 8.90393, 2.88691, 11.4093, 5.092, -12.5862, 0.881918, 3.01351, -0.671778, -2.22336, -1.67207, 5.58902, -1.74488, -14.7564, 13.935, 2.57194, -2.57194, 1.93632}, {1.583, -1.583, -1.20581, 0.497745, -0.497745, 2.77232, 6.88945, 2.56495, -5.24786, 0.215741, 2.93573, -3.3158, -2.57194, 2.57194, -1.93632, 0.232383, 3.66305, -16.6783, -5.45007, 9.3455, 4.15145, -2.22336, -1.67207, 5.58902, -0.881918, -3.01351, 0.671778, 1.70898, -14.3148, 15.1995}, {1.583, -1.583, -1.20581, 0.497745, -0.497745, 2.77232, -2.29648, -0.854984, 1.74929, -0.647223, -8.80718, 9.94741, -2.57194, 2.57194, -1.93632, 2.22336, 1.67207, -5.58902, 0.881918, 3.01351, -0.671778, -8.55536, 4.65993, 10.4123, -2.8729, -1.02253, -10.4175, 11.7579, 0.847997, -5.06083}, {6.34574, -4.8337, 3.10867, 0.725317, 2.59898, -0.725317, 1.60925, -1.2258, -1.60925, -0.219319, -2.98441, 3.37079, -1.18322, -15.6, 5.07865, -2.88568, -1.69734, 2.88568, -5.81154, 4.42679, 9.70697, 3.76295, 13.635, -16.3688, -0.625449, 0.47642, -3.26998, -1.71805, 5.20411, -2.17738}, {-2.11525, 1.61123, -1.03622, -2.17595, -7.79693, 2.17595, 1.60925, -1.2258, -1.60925, -0.219319, -2.98441, 3.37079, 10.179, -11.649, 6.32227, -9.32267, 3.20588, 9.32267, 0.625449, -0.47642, 3.26998, 2.88568, 1.69734, -2.88568, 0.251825, 12.4141, -16.7531, -1.71805, 5.20411, -2.17738}, {-2.11525, 1.61123, -1.03622, 0.725317, 2.59898, -0.725317, -4.82774, 3.67741, 4.82774, -0.219319, -2.98441, 3.37079, 1.71805, -5.20411, 2.17738, -5.78695, -12.0932, 5.78695, 9.08643, -6.92136, 7.41487, 2.88568, 1.69734, -2.88568, -0.625449, 0.47642, -3.26998, -0.840773, 17.1417, -15.6605}, {-2.11525, 1.61123, -1.03622, 0.725317, 2.59898, -0.725317, 1.60925, -1.2258, -1.60925, 0.657956, 8.95322, -10.1124, 1.71805, -5.20411, 2.17738, -2.88568, -1.69734, 2.88568, 0.625449, -0.47642, 3.26998, 11.3467, -4.7476, 1.25921, -3.52672, -9.91949, -0.36871, -8.15504, 10.1073, 4.25961}, {-5.36656, 5.36656, -5.36656, -1.78885, 1.78885, 1.36261, 0, -3.15147, 0, 0, 3.15147, -3.15147, 7.15542, -7.15542, -9.34589, 2.21115, 1.68428, -1.68428, -2.21115, 18.7124, -2.21115, -2.21115, -14.2902, 14.2902, 2.21115, -6.10657, 2.21115, 0, 3.63087e-12, 3.89543}, {1.78885, -1.78885, 1.78885, 5.36656, -5.36656, -4.08784, 0, -3.15147, 0, 0, 3.15147, -3.15147, -7.15542, 7.15542, -11.0508, 2.21115, 14.2902, -1.68428, -2.21115, 6.10657, -2.21115, -2.21115, -1.68428, 1.68428, 2.21115, -18.7124, 14.817, 0, 3.63087e-12, 3.89543}, {1.78885, -1.78885, 1.78885, -1.78885, 1.78885, 1.36261, 0, 9.45441, 0, 0, 3.15147, -3.15147, -4.44089e-16, -3.63354e-12, -3.89543, 9.36656, -5.47113, -7.13474, -9.36656, 13.262, -9.36656, -2.21115, -1.68428, 1.68428, 2.21115, -6.10657, 2.21115, 0, -12.6059, 16.5013}, {1.78885, -1.78885, 1.78885, -1.78885, 1.78885, 1.36261, 0, -3.15147, 0, 0, -9.45441, 9.45441, -4.44089e-16, -3.62865e-12, -3.89543, 2.21115, 1.68428, -1.68428, -2.21115, 6.10657, -2.21115, -9.36656, 5.47113, -5.47113, 9.36656, -13.262, -3.23931, 0, 12.6059, 3.89543}, {0, -1.77636e-15, 9.45441, -1.78885, 1.36261, 1.78885, 1.78885, 1.78885, -1.78885, 0, -3.15147, 3.15147, 9.36656, -7.13474, -5.47113, 0, -3.89543, -3.6291e-12, -9.36656, -9.36656, 13.262, 0, 16.5013, -12.6059, 2.21115, 2.21115, -6.10657, -2.21115, 1.68428, -1.68428}, {3.08199e-16, 0, -3.15147, 5.36656, -4.08784, -5.36656, 1.78885, 1.78885, -1.78885, -3.08199e-16, -3.15147, 3.15147, 2.21115, -1.68428, 14.2902, -7.15542, -11.0508, 7.15542, -2.21115, -2.21115, 6.10657, -7.65114e-32, 3.89543, 3.62544e-12, 2.21115, 14.817, -18.7124, -2.21115, 1.68428, -1.68428}, {-3.08199e-16, 8.88178e-16, -3.15147, -1.78885, 1.36261, 1.78885, -5.36656, -5.36656, 5.36656, 3.08199e-16, -3.15147, 3.15147, 2.21115, -1.68428, 1.68428, 7.15542, -9.34589, -7.15542, -2.21115, -2.21115, 18.7124, 7.65114e-32, 3.89543, 3.62633e-12, 2.21115, 2.21115, -6.10657, -2.21115, 14.2902, -14.2902}, {-3.08199e-16, 0, -3.15147, -1.78885, 1.36261, 1.78885, 1.78885, 1.78885, -1.78885, -9.24597e-16, 9.45441, -9.45441, 2.21115, -1.68428, 1.68428, 0, -3.89543, -3.62776e-12, -2.21115, -2.21115, 6.10657, 1.2328e-15, 3.89543, 12.6059, 9.36656, -3.23931, -13.262, -9.36656, -5.47113, 5.47113}, {1.6947, 4.26991, -0.547096, 2.00519, -0.0353642, -0.0353642, 0.45376, 1.14328, 1.14328, -1.89405, 0.315388, -1.29028, -9.80104, 1.94447, -0.0402465, -3.03942, -1.36946, -1.36946, -1.67766, -4.22699, -6.2117, 10.6156, 0.107907, 6.53058, -0.137376, -0.346128, 1.63859, 1.78029, -1.80301, 0.181703}, {-0.5649, -1.4233, 0.182365, -6.01556, 0.106093, 0.106093, 0.45376, 1.14328, 1.14328, -1.89405, 0.315388, -1.29028, 0.479306, 7.49622, -0.911165, -4.85446, -5.94257, -5.94257, 0.137376, 0.346128, -1.63859, 3.03942, 1.36946, 1.36946, 7.43881, -1.60768, 6.79971, 1.78029, -1.80301, 0.181703}, {-0.5649, -1.4233, 0.182365, 2.00519, -0.0353642, -0.0353642, -1.36128, -3.42984, -3.42984, -1.89405, 0.315388, -1.29028, -1.78029, 1.80301, -0.181703, -11.0602, -1.228, -1.228, 2.39697, 6.03934, -2.36805, 3.03942, 1.36946, 1.36946, -0.137376, -0.346128, 1.63859, 9.35648, -3.06456, 5.34282}, {-0.5649, -1.4233, 0.182365, 2.00519, -0.0353642, -0.0353642, 0.45376, 1.14328, 1.14328, 5.68214, -0.946164, 3.87084, -1.78029, 1.80301, -0.181703, -3.03942, -1.36946, -1.36946, 0.137376, 0.346128, -1.63859, 5.29902, 7.06267, 0.639997, -8.15812, -0.204671, 1.78004, -0.0347482, -6.37613, -4.39141}, {-1.35612, -3.4307, -3.42632, -0.759405, 0.424983, -1.91868, -2.45728, -1.10819, -1.10678, 2.76464, -0.460356, 1.88336, 3.41754, -3.63876, 8.63464, 3.97604, 0.844494, 3.73968, 12.3077, 4.38905, 4.38345, -15.0346, 0.996929, -11.2731, -2.47861, 0.0437235, 0.0436678, -0.379924, 1.93883, -0.959903}, {0.45204, 1.14357, 1.14211, 2.27821, -1.27495, 5.75605, -2.45728, -1.10819, -1.10678, 2.76464, -0.460356, 1.88336, -1.42823, -6.51309, -3.60853, 13.8052, 5.27726, 8.1668, 2.47861, -0.0437235, -0.0436678, -3.97604, -0.844494, -3.73968, -13.5372, 1.88515, -7.48976, -0.379924, 1.93883, -0.959903}, {0.45204, 1.14357, 1.14211, -0.759405, 0.424983, -1.91868, 7.37184, 3.32458, 3.32034, 2.76464, -0.460356, 1.88336, 0.379924, -1.93883, 0.959903, 7.01366, -0.855437, 11.4144, 0.670454, -4.61799, -4.6121, -3.97604, -0.844494, -3.73968, -2.47861, 0.0437235, 0.0436678, -11.4385, 3.78026, -8.49333}, {0.45204, 1.14357, 1.14211, -0.759405, 0.424983, -1.91868, -2.45728, -1.10819, -1.10678, -8.29393, 1.38107, -5.65007, 0.379924, -1.93883, 0.959903, 3.97604, 0.844494, 3.73968, 2.47861, -0.0437235, -0.0436678, -5.7842, -5.41876, -8.30811, 0.559007, -1.65621, 7.71841, 9.44919, 6.3716, 3.46721}, {-2.4085, -2.4085, 2.4085, 1.63676, -1.63676, 1.63676, -0.802834, -0.802834, -0.802834, -1.63676, 1.63676, -0.0310931, -9.56255, 7.57784, -7.57784, -1.03079, 3.01551, -1.03079, 3.21134, 3.21134, 5.19605, 7.57784, -9.56255, 1.15516, 3.73035e-14, 3.64153e-14, -1.98471, 3.01551, -1.03079, 1.03079}, {0.802834, 0.802834, -0.802834, -4.91028, 4.91028, -4.91028, -0.802834, -0.802834, -0.802834, -1.63676, 1.63676, -0.0310931, -6.22684, -2.18055, 2.18055, 2.18055, 6.22684, 2.18055, -3.73035e-14, -3.68594e-14, 1.98471, 1.03079, -3.01551, 1.03079, 6.54704, -6.54704, -1.86034, 3.01551, -1.03079, 1.03079}, {0.802834, 0.802834, -0.802834, 1.63676, -1.63676, 1.63676, 2.4085, 2.4085, 2.4085, -1.63676, 1.63676, -0.0310931, -3.01551, 1.03079, -1.03079, -7.57784, 9.56255, -7.57784, -3.21134, -3.21134, 5.19605, 1.03079, -3.01551, 1.03079, 3.77476e-14, 3.68594e-14, -1.98471, 9.56255, -7.57784, 1.15516}, {0.802834, 0.802834, -0.802834, 1.63676, -1.63676, 1.63676, -0.802834, -0.802834, -0.802834, 4.91028, -4.91028, 0.0932794, -3.01551, 1.03079, -1.03079, -1.03079, 3.01551, -1.03079, -3.68594e-14, -3.68594e-14, 1.98471, -2.18055, -6.22684, 4.24213, -6.54704, 6.54704, -8.53176, 6.22684, 2.18055, 4.24213}, {-2.4085, -2.4085, 2.4085, -2.4396, 0.833927, -0.833927, -1.57573, 1.57573, 1.57573, 3.2125, -3.2125, 0.0610269, 11.7815, -5.35886, 5.35886, 4.96322, -2.97851, -0.916924, 7.25829, -9.24301, -7.25829, -17.8132, 15.8285, 0.672816, -0.955357, 2.94007, 0.955357, -2.02315, 2.02315, -2.02315}, {0.802834, 0.802834, -0.802834, 7.31879, -2.50178, 2.50178, -1.57573, 1.57573, 1.57573, 3.2125, -3.2125, 0.0610269, -1.18819, -5.23448, 5.23448, 11.2662, -9.28144, -7.21986, 0.955357, -2.94007, -0.955357, -4.96322, 2.97851, 0.916924, -13.8053, 15.7901, 0.71125, -2.02315, 2.02315, -2.02315}, {0.802834, 0.802834, -0.802834, -2.4396, 0.833927, -0.833927, 4.7272, -4.7272, -4.7272, 3.2125, -3.2125, 0.0610269, 2.02315, -2.02315, 2.02315, 14.7216, -6.31421, 2.41878, -2.25598, -6.15141, 2.25598, -4.96322, 2.97851, 0.916924, -0.955357, 2.94007, 0.955357, -14.8731, 14.8731, -2.26726}, {0.802834, 0.802834, -0.802834, -2.4396, 0.833927, -0.833927, -1.57573, 1.57573, 1.57573, -9.63749, 9.63749, -0.183081, 2.02315, -2.02315, 2.02315, 4.96322, -2.97851, -0.916924, 0.955357, -2.94007, -0.955357, -8.17456, -0.232831, 4.12826, 8.80302, -0.395637, 4.29107, 4.27979, -4.27979, -8.32609}, {-8.88178e-16, 0, 4.817, 3.64699, 0.373467, -0.373467, -1.78885, -1.78885, 1.78885, -1.85814, 1.41539, 0.190281, -19.0959, -1.9555, 3.94022, -2.29678, 1.74951, -1.74951, 9.36656, 9.36656, -7.38185, 9.72932, -7.41106, 0.988391, -2.21115, -2.21115, 0.226431, 4.50793, 0.461631, -2.44635}, {2.22045e-16, -4.44089e-16, -1.60567, -10.941, -1.1204, 1.1204, -1.78885, -1.78885, 1.78885, -1.85814, 1.41539, 0.190281, -4.50793, -0.461631, 8.86902, 4.85864, 8.90493, -8.90493, 2.21115, 2.21115, -0.226431, 2.29678, -1.74951, 1.74951, 5.2214, -7.87269, -0.534693, 4.50793, 0.461631, -2.44635}, {-6.66134e-16, -4.44089e-16, -1.60567, 3.64699, 0.373467, -0.373467, 5.36656, 5.36656, -5.36656, -1.85814, 1.41539, 0.190281, -4.50793, -0.461631, 2.44635, -16.8847, 0.255645, -0.255645, 2.21115, 2.21115, 6.19624, 2.29678, -1.74951, 1.74951, -2.21115, -2.21115, 0.226431, 11.9405, -5.19992, -3.20747}, {-6.66134e-16, 0, -1.60567, 3.64699, 0.373467, -0.373467, -1.78885, -1.78885, 1.78885, 5.57441, -4.24616, -0.570843, -4.50793, -0.461631, 2.44635, -2.29678, 1.74951, -1.74951, 2.21115, 2.21115, -0.226431, 2.29678, -1.74951, 8.17219, -16.7991, -3.70501, 1.7203, 11.6633, 7.61705, -9.60176}, {5.57441, -4.24616, 4.24616, -1.78885, -1.78885, 1.78885, 0, 3.15147, 0, 3.64699, -2.778, -0.373467, 11.6633, 7.61705, -7.61705, 2.21115, -1.68428, -2.21115, 2.29678, -18.2508, 1.74951, -16.7991, 12.7963, 3.70501, -2.29678, 5.64494, -1.74951, -4.50793, -0.461631, 0.461631}, {-1.85814, 1.41539, -1.41539, 5.36656, 5.36656, -5.36656, -2.85327e-15, 3.15147, 2.92187e-16, 3.64699, -2.778, -0.373467, 11.9405, -5.19992, 5.19992, 2.21115, -14.2902, -2.21115, 2.29678, -5.64494, 1.74951, -2.21115, 1.68428, 2.21115, -16.8847, 16.7569, -0.255645, -4.50793, -0.461631, 0.461631}, {-1.85814, 1.41539, -1.41539, -1.78885, -1.78885, 1.78885, 0, -9.45441, 0, 3.64699, -2.778, -0.373467, 4.50793, 0.461631, -0.461631, 9.36656, 5.47113, -9.36656, 9.72932, -11.3065, 7.41106, -2.21115, 1.68428, 2.21115, -2.29678, 5.64494, -1.74951, -19.0959, 10.6504, 1.9555}, {-1.85814, 1.41539, -1.41539, -1.78885, -1.78885, 1.78885, 0, 3.15147, 0, -10.941, 8.334, 1.1204, 4.50793, 0.461631, -0.461631, 2.21115, -1.68428, -2.21115, 2.29678, -5.64494, 1.74951, 5.2214, -3.97726, 7.87269, 4.85864, 12.8004, -8.90493, -4.50793, -13.0675, 0.461631}, {5.61089, -1.12882, 1.12882, -0.730647, 0.497098, 1.84603, 0.431092, 1.08918, -1.08918, 2.16985, -1.96255, -0.380575, 6.13753, -3.06794, -9.20083, 0.370271, -1.96075, -0.935513, 0.0545869, -6.16812, 6.16812, -9.04968, 9.81095, 2.45781, -1.77895, 1.8114, -1.8114, -3.21494, 1.07954, 1.81672}, {-1.8703, 0.376272, -0.376272, 2.19194, -1.49129, -5.53808, 0.431092, 1.08918, -1.08918, 2.16985, -1.96255, -0.380575, 10.6961, -2.58463, -0.311631, -1.3541, -6.31747, 3.42121, 1.77895, -1.8114, 1.8114, -0.370271, 1.96075, 0.935513, -10.4584, 9.6616, -0.289101, -3.21494, 1.07954, 1.81672}, {-1.8703, 0.376272, -0.376272, -0.730647, 0.497098, 1.84603, -1.29328, -3.26754, 3.26754, 2.16985, -1.96255, -0.380575, 3.21494, -1.07954, -1.81672, 3.29286, -3.94914, -8.31962, 9.26014, -3.31649, 3.31649, -0.370271, 1.96075, 0.935513, -1.77895, 1.8114, -1.8114, -11.8943, 8.92975, 3.33902}, {-1.8703, 0.376272, -0.376272, -0.730647, 0.497098, 1.84603, 0.431092, 1.08918, -1.08918, -6.50955, 5.88765, 1.14172, 3.21494, -1.07954, -1.81672, 0.370271, -1.96075, -0.935513, 1.77895, -1.8114, 1.8114, 7.11091, 0.455662, 2.4406, 1.14364, -0.176994, -9.19551, -4.93931, -3.27718, 6.17344}, {-3.9353, -0.877932, 3.73093, -2.19842e-16, -0.163745, 1.71788, -5.85173e-16, -1.31534, -0.704307, -1.31177, 1.18644, 0.230073, -1.62143, 0.495654, -7.45769, 9.95053e-16, 1.82825, -1.25284, -1.62143, 6.52549, 5.22503, 5.24706, -6.57403, 0.33255, 1.62143, -1.26412, -2.4078, 1.62143, 0.159328, 0.586185}, {1.31177, 0.292644, -1.24364, 2.59599e-16, 0.491236, -5.15363, 4.85681e-16, -1.31534, -0.704307, -1.31177, 1.18644, 0.230073, -6.86849, -1.3299, 4.38839, -2.4361e-15, 7.08962, 1.56438, -1.62143, 1.26412, 2.4078, 1.67724e-16, -1.82825, 1.25284, 6.86849, -6.0099, -3.32809, 1.62143, 0.159328, 0.586185}, {1.31177, 0.292644, -1.24364, 0, -0.163745, 1.71788, 0, 3.94603, 2.11292, -1.31177, 1.18644, 0.230073, -1.62143, -0.159328, -0.586185, 0, 2.48323, -8.12435, -6.86849, 0.0935482, 7.38238, -3.2565e-16, -1.82825, 1.25284, 1.62143, -1.26412, -2.4078, 6.86849, -4.58645, -0.334108}, {1.31177, 0.292644, -1.24364, -2.66619e-17, -0.163745, 1.71788, -2.14171e-16, -1.31534, -0.704307, 3.9353, -3.55933, -0.690219, -1.62143, -0.159328, -0.586185, 2.97685e-16, 1.82825, -1.25284, -1.62143, 1.26412, 2.4078, -5.24706, -2.99883, 6.22742, 1.62143, -0.609143, -9.27931, 1.62143, 5.4207, 3.40341}, {6.05767, -1.43278, 5.23226e-12, 0, 1.38248, 0, 0.572575, -0.389553, -1.44665, 1.44665, -1.47052, 1.44665, 2.4959, -7.82907, 2.15583e-12, -0.707741, -1.22732, 1.78815, -0.502145, 1.44939, 7.57474, -5.07885, 7.10939, -7.57474, -1.78815, 0.108825, -1.78815, -2.4959, 2.29917, -2.15583e-12}, {-2.01922, 0.477594, -1.74416e-12, -5.05799e-15, -4.14743, -2.97897e-15, 0.572575, -0.389553, -1.44665, 1.44665, -1.47052, 1.44665, 10.5728, -4.20955, 9.13047e-12, -2.99804, 0.330893, 7.57474, 1.78815, -0.108825, 1.78815, 0.707741, 1.22732, -1.78815, -7.57474, 5.99089, -7.57474, -2.4959, 2.29917, -2.15472e-12}, {-2.01922, 0.477594, -1.74438e-12, 1.98598e-15, 1.38248, 1.98598e-15, -1.71772, 1.16866, 4.33994, 1.44665, -1.47052, 1.44665, 2.4959, -2.29917, 2.15383e-12, -0.707741, -6.75722, 1.78815, 9.86504, -2.0192, 1.78815, 0.707741, 1.22732, -1.78815, -1.78815, 0.108825, -1.78815, -8.28248, 8.18124, -5.78659}, {-2.01922, 0.477594, -1.74438e-12, 0, 1.38248, 0, 0.572575, -0.389553, -1.44665, -4.33994, 4.41155, -4.33994, 2.4959, -2.29917, 2.15628e-12, -0.707741, -1.22732, 1.78815, 1.78815, -0.108825, 1.78815, 8.78463, -0.683057, -1.78815, -1.78815, -5.42108, -1.78815, -4.7862, 3.85739, 5.78659}, {-1.33227e-15, -0.577407, 6.05767, 1.31177, 0.0490665, 1.31177, 7.62271e-16, -1.57494, 2.01922, -1.31177, 1.33341, -1.31177, -6.86849, -0.49482, -4.3726, -1.62143, 1.88609, -4.11733, -4.66294e-15, 8.00861, -8.07689, 6.86849, -7.21973, 9.36439, 1.55431e-15, -1.70883, 1.33227e-15, 1.62143, 0.298554, -0.874465}, {-2.22045e-16, 0.192469, -2.01922, -3.9353, -0.147199, -3.9353, 5.0818e-16, -1.57494, 2.01922, -1.31177, 1.33341, -1.31177, -1.62143, -1.06843, 8.95135, -1.62143, 8.18587, -12.1942, -2.22045e-16, 1.70883, 1.11022e-15, 1.62143, -1.88609, 4.11733, 5.24706, -7.04247, 5.24706, 1.62143, 0.298554, -0.874465}, {0, 0.192469, -2.01922, 1.31177, 0.0490665, 1.31177, 7.62271e-16, 4.72483, -6.05767, -1.31177, 1.33341, -1.31177, -1.62143, -0.298554, 0.874465, -6.86849, 1.68982, -9.36439, 0, 0.938958, 8.07689, 1.62143, -1.88609, 4.11733, -4.44089e-16, -1.70883, -4.44089e-16, 6.86849, -5.03508, 4.3726}, {-2.22045e-16, 0.192469, -2.01922, 1.31177, 0.0490665, 1.31177, 1.52454e-15, -1.57494, 2.01922, 3.9353, -4.00023, 3.9353, -1.62143, -0.298554, 0.874465, -1.62143, 1.88609, -4.11733, -1.55431e-15, 1.70883, -1.55431e-15, 1.62143, -2.65597, 12.1942, -5.24706, -1.9051, -5.24706, 1.62143, 6.59833, -8.95135}, {5.62183, 1.10117, 1.0932, -0.543248, 1.37255, -0.969804, 0.418614, -1.05765, -1.05825, 1.99858, 0.0521603, 2.39245, 5.16081, -6.73306, 5.52839, 0.154056, -0.389233, 2.50681, 0.12443, 5.99166, 5.99148, -8.14837, 0.180592, -12.0766, -1.79889, -1.76104, -1.75849, -2.98781, 1.24286, -1.64917}, {-1.87394, -0.367057, -0.364401, 1.62974, -4.11765, 2.90941, 0.418614, -1.05765, -1.05825, 1.99858, 0.0521603, 2.39245, 10.4836, 0.225367, 3.10677, -1.5204, 3.84139, 6.7398, 1.79889, 1.76104, 1.75849, -0.154056, 0.389233, -2.50681, -9.79319, -1.96968, -11.3283, -2.98781, 1.24286, -1.64917}, {-1.87394, -0.367057, -0.364401, -0.543248, 1.37255, -0.969804, -1.25584, 3.17296, 3.17474, 1.99858, 0.0521603, 2.39245, 2.98781, -1.24286, 1.64917, 2.32705, -5.87944, 6.38603, 9.29466, 3.22927, 3.2161, -0.154056, 0.389233, -2.50681, -1.79889, -1.76104, -1.75849, -10.9821, 1.03422, -11.219}, {-1.87394, -0.367057, -0.364401, -0.543248, 1.37255, -0.969804, 0.418614, -1.05765, -1.05825, -5.99573, -0.156481, -7.17736, 2.98781, -1.24286, 1.64917, 0.154056, -0.389233, 2.50681, 1.79889, 1.76104, 1.75849, 7.34172, 1.85746, -1.04921, 0.374107, -7.25124, 2.12073, -4.66227, 5.47348, 2.58382}, {1.30457, 0.988495, -4.07489, 1.69843, -1.02425, 0.473793, -0.0497917, 1.38543, -0.379098, -1.21378, -0.0316781, -1.45299, -8.35558, 5.77034, -4.15976, -2.03783, -0.446439, -0.117049, 0.798227, -6.84692, 0.306038, 6.89295, 0.573151, 5.92901, -0.59906, 1.3052, 1.21036, 1.56186, -1.67333, 2.26459}, {-0.434858, -0.329498, 1.3583, -5.09529, 3.07276, -1.42138, -0.0497917, 1.38543, -0.379098, -1.21378, -0.0316781, -1.45299, 0.17757, 2.99132, -7.69777, -1.83866, -5.98816, 1.39934, 0.59906, -1.3052, -1.21036, 2.03783, 0.446439, 0.117049, 4.25606, 1.43192, 7.02232, 1.56186, -1.67333, 2.26459}, {-0.434858, -0.329498, 1.3583, 1.69843, -1.02425, 0.473793, 0.149375, -4.15629, 1.1373, -1.21378, -0.0316781, -1.45299, -1.56186, 1.67333, -2.26459, -8.83155, 3.65057, -2.01222, 2.33849, 0.0127912, -6.64354, 2.03783, 0.446439, 0.117049, -0.59906, 1.3052, 1.21036, 6.41699, -1.54662, 8.07655}, {-0.434858, -0.329498, 1.3583, 1.69843, -1.02425, 0.473793, -0.0497917, 1.38543, -0.379098, 3.64134, 0.0950343, 4.35897, -1.56186, 1.67333, -2.26459, -2.03783, -0.446439, -0.117049, 0.59906, -1.3052, -1.21036, 3.77726, 1.76443, -5.31614, -7.39278, 5.40222, -0.684818, 1.76103, -7.21505, 3.78098}, {-3.43097, 1.35687, -3.43142, 0.931473, 0.558277, -1.41184, -0.847096, 2.35716, -0.851503, -1.22803, -2.46315, 1.11954, -6.29089, -2.36411, 5.97866, -0.104296, -3.60368, 2.79764, 3.02181, -11.7832, 3.0447, 5.01642, 13.4563, -7.27579, 0.366568, 2.35455, 0.361307, 2.565, 0.131007, -0.331307}, {1.14366, -0.45229, 1.14381, -2.79442, -1.67483, 4.23552, -0.847096, 2.35716, -0.851503, -1.22803, -2.46315, 1.11954, -7.13962, 1.67815, -4.24392, 3.28409, -13.0323, 6.20366, -0.366568, -2.35455, -0.361307, 0.104296, 3.60368, -2.79764, 5.2787, 12.2071, -4.11684, 2.565, 0.131007, -0.331307}, {1.14366, -0.45229, 1.14381, 0.931473, 0.558277, -1.41184, 2.54129, -7.07148, 2.55451, -1.22803, -2.46315, 1.11954, -2.565, -0.131007, 0.331307, -3.83019, -5.83679, 8.445, -4.94119, -0.545391, -4.93653, 0.104296, 3.60368, -2.79764, 0.366568, 2.35455, 0.361307, 7.47713, 9.9836, -4.80945}, {1.14366, -0.45229, 1.14381, 0.931473, 0.558277, -1.41184, -0.847096, 2.35716, -0.851503, 3.6841, 7.38945, -3.35861, -2.565, -0.131007, 0.331307, -0.104296, -3.60368, 2.79764, -0.366568, -2.35455, -0.361307, -4.47033, 5.41284, -7.37287, -3.35932, 0.121443, 6.00866, 5.95338, -9.29764, 3.0747}, {5.0671, -2.00529, 0.25185, -0.295203, -1.90215, -0.29354, 1.14353, -0.452546, 1.14392, 0.840709, 1.68627, -0.766433, 3.63346, 9.13356, 1.64076, -1.04859, 2.91057, -1.05113, -3.89983, 1.54334, -5.88589, -2.31425, -9.65564, 4.11686, -0.674283, 0.266845, 1.3102, -2.45265, -1.52496, -0.466604}, {-1.68903, 0.668429, -0.0839499, 0.885608, 5.70645, 0.880621, 1.14353, -0.452546, 1.14392, 0.840709, 1.68627, -0.766433, 9.20879, -1.14875, 0.802403, -5.6227, 4.72075, -5.62682, 0.674283, -0.266845, -1.3102, 1.04859, -2.91057, 1.05113, -4.03712, -6.47823, 4.37593, -2.45265, -1.52496, -0.466604}, {-1.68903, 0.668429, -0.0839499, -0.295203, -1.90215, -0.29354, -3.43058, 1.35764, -3.43177, 0.840709, 1.68627, -0.766433, 2.45265, 1.52496, 0.466604, 0.132224, 10.5192, 0.123031, 7.43042, -2.94056, -0.974399, 1.04859, -2.91057, 1.05113, -0.674283, 0.266845, 1.3102, -5.81549, -8.27004, 2.59913}, {-1.68903, 0.668429, -0.0839499, -0.295203, -1.90215, -0.29354, 1.14353, -0.452546, 1.14392, -2.52213, -5.0588, 2.2993, 2.45265, 1.52496, 0.466604, -1.04859, 2.91057, -1.05113, 0.674283, -0.266845, -1.3102, 7.80472, -5.58428, 1.38693, 0.506528, 7.87545, 2.48436, -7.02676, 0.285222, -5.04229}, {-7.02938, 6.21725e-15, 4.44089e-16, -1.54298, 0.610212, -1.54318, 1.7461, 1.33161, 1.74203, -2.54625, -1.94182, -0.198851, 5.18286, -3.19511, 8.08019, -0.25107, -2.40023, -0.245794, -12.0389, -6.97241, -9.12139, 10.4361, 10.1675, 1.0412, 5.05456, 1.64596, 2.15327, 0.989039, 0.754264, -1.90748}, {2.34313, -1.77636e-15, -1.22125e-15, 4.62893, -1.83064, 4.62954, 1.7461, 1.33161, 1.74203, -2.54625, -1.94182, -0.198851, -10.3615, -0.754264, 1.90748, -7.23545, -7.72668, -7.21392, -5.05456, -1.64596, -2.15327, 0.25107, 2.40023, 0.245794, 15.2395, 9.41326, 2.94867, 0.989039, 0.754264, -1.90748}, {2.34313, 0, 1.38778e-16, -1.54298, 0.610212, -1.54318, -5.23829, -3.99484, -5.22609, -2.54625, -1.94182, -0.198851, -0.989039, -0.754264, 1.90748, 5.92083, -4.84108, 5.92693, -14.4271, -1.64596, -2.15327, 0.25107, 2.40023, 0.245794, 5.05456, 1.64596, 2.15327, 11.174, 8.52156, -1.11207}, {2.34313, -1.11022e-15, -3.05311e-16, -1.54298, 0.610212, -1.54318, 1.7461, 1.33161, 1.74203, 7.63874, 5.82547, 0.596554, -0.989039, -0.754264, 1.90748, -0.25107, -2.40023, -0.245794, -5.05456, -1.64596, -2.15327, -9.12143, 2.40023, 0.245794, 11.2265, -0.794885, 8.32599, -5.99534, -4.57219, -8.8756}, {2.66454e-15, 3.55271e-15, -4.817, -1.54262, 0.610485, -1.54315, -0.200328, -1.9397, -0.198633, 1.74295, 1.32921, 0.136117, 8.07725, -3.19654, 6.09533, 2.1544, 1.643, 2.15296, 1.04893, 10.1564, -0.944658, -9.12619, -6.95984, -2.69743, -0.24762, -2.3976, 1.73919, -1.90678, 0.754601, 0.0772744}, {1.55431e-15, 8.88178e-16, 1.60567, 4.62785, -1.83146, 4.62946, -0.200328, -1.9397, -0.198633, 1.74295, 1.32921, 0.136117, 1.90678, -0.754601, -6.49995, 2.95571, 9.40178, 2.9475, 0.24762, 2.3976, -1.73919, -2.1544, -1.643, -2.15296, -7.21941, -7.71444, 1.19472, -1.90678, 0.754601, 0.0772744}, {2.22045e-16, 2.22045e-16, 1.60567, -1.54262, 0.610485, -1.54315, 0.600985, 5.81909, 0.5959, 1.74295, 1.32921, 0.136117, 1.90678, -0.754601, -0.0772744, 8.32487, -0.798945, 8.32557, 0.24762, 2.3976, -8.16186, -2.1544, -1.643, -2.15296, -0.24762, -2.3976, 1.73919, -8.87857, -4.56224, -0.467193}, {-1.33227e-15, -1.11022e-15, 1.60567, -1.54262, 0.610485, -1.54315, -0.200328, -1.9397, -0.198633, -5.22884, -3.98763, -0.408351, 1.90678, -0.754601, -0.0772744, 2.1544, 1.643, 2.15296, 0.24762, 2.3976, -1.73919, -2.1544, -1.643, -8.57564, 5.92285, -4.83954, 7.9118, -1.10547, 8.51339, 0.871807}, {5.74294, 0.795668, -0.78877, 0.30138, -0.761926, 0.76354, -0.6496, 1.64227, 0.697377, 2.26253, -0.61512, -1.72384, 0.788176, 4.31733, -4.32294, 0.430423, -1.08816, -1.80579, 5.76757, -8.2712, -3.9765, -9.48055, 3.54864, 8.70115, -3.16917, 1.70212, 1.187, -1.9937, -1.26962, 1.26878}, {-1.91431, -0.265223, 0.262923, -0.904139, 2.28578, -2.29062, -0.6496, 1.64227, 0.697377, 2.26253, -0.61512, -1.72384, 9.65095, 2.33052, -2.32047, 3.02882, -7.65724, -4.5953, 3.16917, -1.70212, -1.187, -0.430423, 1.08816, 1.80579, -12.2193, 4.1626, 8.08236, -1.9937, -1.26962, 1.26878}, {-1.91431, -0.265223, 0.262923, 0.30138, -0.761926, 0.76354, 1.9488, -4.9268, -2.09213, 2.26253, -0.61512, -1.72384, 1.9937, 1.26962, -1.26878, -0.775096, 1.95954, -4.85995, 10.8264, -0.641232, -2.23869, -0.430423, 1.08816, 1.80579, -3.16917, 1.70212, 1.187, -11.0438, 1.19086, 8.16414}, {-1.91431, -0.265223, 0.262923, 0.30138, -0.761926, 0.76354, -0.6496, 1.64227, 0.697377, -6.7876, 1.84536, 5.17152, 1.9937, 1.26962, -1.26878, 0.430423, -1.08816, -1.80579, 3.16917, -1.70212, -1.187, 7.22683, 2.14905, 0.7541, -4.37469, 4.74982, -1.86717, 0.604703, -7.8387, -1.52073}, {1.33227e-15, 6.00487, 0.829413, -3.96116e-16, 2.00162, -0.810615, 1.31177, 1.30033, 0.316508, -1.31177, -1.30033, 0.770578, 2.66454e-15, -8.00649, 4.58617, -1.62143, -4.08144, 0.61075, -6.86849, -4.33448, -1.31552, 6.86849, 9.28277, -3.69306, 1.62143, -0.866843, 0.0494889, -1.11022e-15, -6.66134e-16, -1.34371}, {4.44089e-16, -2.00162, -0.276471, -2.97087e-15, -6.00487, 2.43185, 1.31177, 1.30033, 0.316508, -1.31177, -1.30033, 0.770578, -2.66454e-15, 8.00649, 2.4496, -6.86849, -9.28277, -0.655284, -1.62143, 0.866843, -0.0494889, 1.62143, 4.08144, -0.61075, 6.86849, 4.33448, -3.03282, 1.55431e-15, 1.33227e-15, -1.34371}, {-2.22045e-16, -2.00162, -0.276471, 1.38641e-15, 2.00162, -0.810615, -3.9353, -3.901, -0.949525, -1.31177, -1.30033, 0.770578, -1.33227e-15, -1.11022e-15, 1.34371, -1.62143, -12.0879, 3.85321, -1.62143, 8.87333, 1.0564, 1.62143, 4.08144, -0.61075, 1.62143, -0.866843, 0.0494889, 5.24706, 5.20133, -4.42602}, {-6.66134e-16, -2.00162, -0.276471, -1.18835e-15, 2.00162, -0.810615, 1.31177, 1.30033, 0.316508, 3.9353, 3.901, -2.31173, 2.22045e-15, 2.66454e-15, 1.34371, -1.62143, -4.08144, 0.61075, -1.62143, 0.866843, -0.0494889, 1.62143, 12.0879, 0.495134, 1.62143, -8.87333, 3.29195, -5.24706, -5.20133, -2.60975}, {-1.70622, 4.31352, 1.8317, 8.44721e-17, 1.1641e-15, 1.08709, -2.01922, 1.65815e-12, 0.375548, 1.45048, 1.43784, -0.852066, -0.702999, 1.77727, -4.93735, 2.4959, -2.05102e-12, -1.80792, 9.86978, 1.77727, -1.21169, -8.29783, -5.75136, 5.21618, -1.7929, -1.77727, -0.290501, 0.702999, -1.77727, 0.589009}, {0.568738, -1.43784, -0.610568, -2.80914e-15, -1.1641e-15, -3.26126, -2.01922, 1.65896e-12, 0.375548, 1.45048, 1.43784, -0.852066, -2.97795, 7.52863, 1.85326, 10.5728, -8.68691e-12, -3.31011, 1.7929, 1.77727, 0.290501, -2.4959, 2.05143e-12, 1.80792, -7.59483, -7.52863, 3.11776, 0.702999, -1.77727, 0.589009}, {0.568738, -1.43784, -0.610568, 0, 0, 1.08709, 6.05767, -4.97324e-12, -1.12664, 1.45048, 1.43784, -0.852066, -0.702999, 1.77727, -0.589009, 2.4959, -2.04909e-12, -6.15626, -0.482057, 7.52863, 2.73277, -2.4959, 2.04944e-12, 1.80792, -1.7929, -1.77727, -0.290501, -5.09894, -7.52863, 3.99727}, {0.568738, -1.43784, -0.610568, 0, 0, 1.08709, -2.01922, 1.6563e-12, 0.375548, -4.35145, -4.31352, 2.5562, -0.702999, 1.77727, -0.589009, 2.4959, -2.04731e-12, -1.80792, 1.7929, 1.77727, 0.290501, -4.77085, 5.75136, 4.25019, -1.7929, -1.77727, -4.63885, 8.77989, -1.77727, -0.913184}, {1.27077, -1.27077, -5.5547, 1.35703, 0.9861, 0.537103, -0.781872, 0.781872, -0.309461, -0.151563, -2.19156, -2.07921, -6.58189, -5.68687, -5.10097, -0.710928, -2.18533, -0.281381, 4.61752, -4.61752, -0.668306, 1.31718, 10.9516, 8.59822, -1.49003, 1.49003, 1.90615, 1.15379, 1.74247, 2.95256}, {-0.42359, 0.42359, 1.85157, -4.07108, -2.9583, -1.61131, -0.781872, 0.781872, -0.309461, -0.151563, -2.19156, -2.07921, 0.540572, -3.43683, -10.3588, 2.41656, -5.31282, 0.956461, 1.49003, -1.49003, -1.90615, 0.710928, 2.18533, 0.281381, -0.883782, 10.2563, 10.223, 1.15379, 1.74247, 2.95256}, {-0.42359, 0.42359, 1.85157, 1.35703, 0.9861, 0.537103, 2.34562, -2.34562, 0.928382, -0.151563, -2.19156, -2.07921, -1.15379, -1.74247, -2.95256, -6.13903, -6.12973, -2.42979, 3.18439, -3.18439, -9.31242, 0.710928, 2.18533, 0.281381, -1.49003, 1.49003, 1.90615, 1.76004, 10.5087, 11.2694}, {-0.42359, 0.42359, 1.85157, 1.35703, 0.9861, 0.537103, -0.781872, 0.781872, -0.309461, 0.454689, 6.57469, 6.23763, -1.15379, -1.74247, -2.95256, -0.710928, -2.18533, -0.281381, 1.49003, -1.49003, -1.90615, 2.40529, 0.490973, -7.12489, -6.91814, -2.45437, -0.242264, 4.28128, -1.38502, 4.1904}, {2.56157, 0.777047, 3.89096, 1.32901, 0.581011, 0.152782, -0.565397, -1.62691, -0.0938093, 0.0902443, 1.30491, 1.23801, -5.90336, -2.72205, 0.803187, -0.943878, 1.2928, -0.0728941, 4.01589, 8.83876, 2.09436, 0.5829, -6.51244, -4.87916, -1.7543, -2.33113, -1.71912, 0.587321, 0.398009, -1.41431}, {-0.853857, -0.259016, -1.29699, -3.98703, -1.74303, -0.458346, -0.565397, -1.62691, -0.0938093, 0.0902443, 1.30491, 1.23801, 2.82811, 0.638054, 6.60226, 1.31771, 7.80043, 0.302343, 1.7543, 2.33113, 1.71912, 0.943878, -1.2928, 0.0728941, -2.11527, -7.55078, -6.67117, 0.587321, 0.398009, -1.41431}, {-0.853857, -0.259016, -1.29699, 1.32901, 0.581011, 0.152782, 1.69619, 4.88072, 0.281428, 0.0902443, 1.30491, 1.23801, -0.587321, -0.398009, 1.41431, -6.25992, -1.03125, -0.684022, 5.16973, 3.36719, 6.90706, 0.943878, -1.2928, 0.0728941, -1.7543, -2.33113, -1.71912, 0.226344, -4.82164, -6.36637}, {-0.853857, -0.259016, -1.29699, 1.32901, 0.581011, 0.152782, -0.565397, -1.62691, -0.0938093, -0.270733, -3.91473, -3.71404, -0.587321, -0.398009, 1.41431, -0.943878, 1.2928, -0.0728941, 1.7543, 2.33113, 1.71912, 4.35931, -0.256736, 5.26084, -7.07034, -4.65518, -2.33025, 2.84891, 6.90564, -1.03908}, {4.07496e-12, -2.19419, -6.05767, 4.84843e-16, 1.35003, -1.83833e-15, -1.44665, -1.05122, -0.572575, 1.44665, -1.0302, -1.44665, 1.67644e-12, -7.97291, -2.4959, 1.78815, -0.369344, 0.707741, 7.57474, 4.60023, 0.502145, -7.57474, 4.49015, 5.07885, -1.78815, -0.395328, 1.78815, -1.67844e-12, 2.57279, 2.4959}, {-1.3598e-12, 0.731398, 2.01922, -2.90906e-15, -4.05009, 4.93928e-15, -1.44665, -1.05122, -0.572575, 1.44665, -1.0302, -1.44665, 7.11964e-12, -5.49838, -10.5728, 7.57474, 3.83556, 2.99804, 1.78815, 0.395328, -1.78815, -1.78815, 0.369344, -0.707741, -7.57474, 3.72548, 7.57474, -1.67977e-12, 2.57279, 2.4959}, {-1.36091e-12, 0.731398, 2.01922, 0, 1.35003, 0, 4.33994, 3.15367, 1.71772, 1.44665, -1.0302, -1.44665, 1.68221e-12, -2.57279, -2.4959, 1.78815, -5.76946, 0.707741, 1.78815, -2.53026, -9.86504, -1.78815, 0.369344, -0.707741, -1.78815, -0.395328, 1.78815, -5.78659, 6.6936, 8.28248}, {-1.36047e-12, 0.731398, 2.01922, -4.84843e-16, 1.35003, 4.84843e-16, -1.44665, -1.05122, -0.572575, -4.33994, 3.09061, 4.33994, 1.68221e-12, -2.57279, -2.4959, 1.78815, -0.369344, 0.707741, 1.78815, 0.395328, -1.78815, -1.78815, -2.55625, -8.78463, -1.78815, -5.79545, 1.78815, 5.78659, 6.77769, 4.7862}, {5.43308, 2.37521, 0.624583, 1.07522, 0.584331, -1.07522, 1.83687, -0.576694, 0.182353, -1.10106, 0.784101, 1.10106, -3.39138, -2.08096, 5.88727, -3.59954, -0.00943971, 1.10365, -7.37942, 3.99825, -0.697471, 8.00379, -3.12696, -5.50789, 0.0319413, -1.69148, -0.0319413, -0.909507, -0.256369, -1.58639}, {-1.81103, -0.791738, -0.208194, -3.22566, -1.75299, 3.22566, 1.83687, -0.576694, 0.182353, -1.10106, 0.784101, 1.10106, 8.15362, 3.42332, 2.41917, -10.947, 2.29734, 0.374233, -0.0319413, 1.69148, 0.0319413, 3.59954, 0.00943971, -1.10365, 4.43619, -4.82788, -4.43619, -0.909507, -0.256369, -1.58639}, {-1.81103, -0.791738, -0.208194, 1.07522, 0.584331, -1.07522, -5.51061, 1.73008, -0.547059, -1.10106, 0.784101, 1.10106, 0.909507, 0.256369, 1.58639, -7.90043, -2.34676, 5.40453, 7.21217, 4.85843, 0.864718, 3.59954, 0.00943971, -1.10365, 0.0319413, -1.69148, -0.0319413, 3.49474, -3.39277, -5.99064}, {-1.81103, -0.791738, -0.208194, 1.07522, 0.584331, -1.07522, 1.83687, -0.576694, 0.182353, 3.30319, -2.3523, -3.30319, 0.909507, 0.256369, 1.58639, -3.59954, -0.00943971, 1.10365, -0.0319413, 1.69148, 0.0319413, 10.8437, 3.17639, -0.270869, -4.26894, -4.0288, 4.26894, -8.25698, 2.05041, -2.3158}, {1.1204, -1.1204, 10.941, 1.78885, -1.78885, 1.78885, -1.60567, 0, 0, 0.190281, 1.41539, 1.85814, -8.90493, 8.90493, -4.85864, -0.226431, 2.21115, -2.21115, 8.86902, -0.461631, 4.50793, -0.534693, -7.87269, -5.2214, -2.44635, 0.461631, -4.50793, 1.74951, -1.74951, -2.29678}, {-0.373467, 0.373467, -3.64699, -5.36656, 5.36656, -5.36656, -1.60567, 0, 0, 0.190281, 1.41539, 1.85814, -0.255645, 0.255645, 16.8847, 6.19624, 2.21115, -2.21115, 2.44635, -0.461631, 4.50793, 0.226431, -2.21115, 2.21115, -3.20747, -5.19992, -11.9405, 1.74951, -1.74951, -2.29678}, {-0.373467, 0.373467, -3.64699, 1.78885, -1.78885, 1.78885, 4.817, 0, 0, 0.190281, 1.41539, 1.85814, -1.74951, 1.74951, 2.29678, -7.38185, 9.36656, -9.36656, 3.94022, -1.9555, 19.0959, 0.226431, -2.21115, 2.21115, -2.44635, 0.461631, -4.50793, 0.988391, -7.41106, -9.72932}, {-0.373467, 0.373467, -3.64699, 1.78885, -1.78885, 1.78885, -1.60567, 0, 0, -0.570843, -4.24616, -5.57441, -1.74951, 1.74951, 2.29678, -0.226431, 2.21115, -2.21115, 2.44635, -0.461631, 4.50793, 1.7203, -3.70501, 16.7991, -9.60176, 7.61705, -11.6633, 8.17219, -1.74951, -2.29678}, {4.24616, -4.24616, -5.57441, 1.78885, -1.78885, 1.78885, 2.92187e-16, 3.15147, 2.85327e-15, -0.373467, -2.778, -3.64699, -7.61705, 7.61705, -11.6633, -2.21115, -1.68428, -2.21115, 1.74951, -18.2508, -2.29678, 3.70501, 12.7963, 16.7991, -1.74951, 5.64494, 2.29678, 0.461631, -0.461631, 4.50793}, {-1.41539, 1.41539, 1.85814, -5.36656, 5.36656, -5.36656, -5.84374e-16, 3.15147, -5.70654e-15, -0.373467, -2.778, -3.64699, 5.19992, -5.19992, -11.9405, -2.21115, -14.2902, -2.21115, 1.74951, -5.64494, -2.29678, 2.21115, 1.68428, 2.21115, -0.255645, 16.7569, 16.8847, 0.461631, -0.461631, 4.50793}, {-1.41539, 1.41539, 1.85814, 1.78885, -1.78885, 1.78885, 0, -9.45441, 0, -0.373467, -2.778, -3.64699, -0.461631, 0.461631, -4.50793, -9.36656, 5.47113, -9.36656, 7.41106, -11.3065, -9.72932, 2.21115, 1.68428, 2.21115, -1.74951, 5.64494, 2.29678, 1.9555, 10.6504, 19.0959}, {-1.41539, 1.41539, 1.85814, 1.78885, -1.78885, 1.78885, -2.92187e-16, 3.15147, -2.85327e-15, 1.1204, 8.334, 10.941, -0.461631, 0.461631, -4.50793, -2.21115, -1.68428, -2.21115, 1.74951, -5.64494, -2.29678, 7.87269, -3.97726, -5.2214, -8.90493, 12.8004, -4.85864, 0.461631, -13.0675, 4.50793}, {-4.91028, 4.91028, 4.91028, -0.802834, -0.802834, 0.802834, -0.802834, 0.802834, -0.802834, -0.0310931, 1.63676, 1.63676, 2.18055, 6.22684, -2.18055, 1.98471, -5.77316e-15, 5.88418e-15, 2.18055, -2.18055, 6.22684, -1.86034, -6.54704, -6.54704, 1.03079, -1.03079, -3.01551, 1.03079, -3.01551, -1.03079}, {1.63676, -1.63676, -1.63676, 2.4085, 2.4085, -2.4085, -0.802834, 0.802834, -0.802834, -0.0310931, 1.63676, 1.63676, -7.57784, 9.56255, 7.57784, 5.19605, -3.21134, 3.21134, -1.03079, 1.03079, 3.01551, -1.98471, 6.51256e-15, -5.03376e-15, 1.15516, -7.57784, -9.56255, 1.03079, -3.01551, -1.03079}, {1.63676, -1.63676, -1.63676, -0.802834, -0.802834, 0.802834, 2.4085, -2.4085, 2.4085, -0.0310931, 1.63676, 1.63676, -1.03079, 3.01551, 1.03079, 5.19605, 3.21134, -3.21134, -7.57784, 7.57784, 9.56255, -1.98471, 6.51256e-15, -5.58887e-15, 1.03079, -1.03079, -3.01551, 1.15516, -9.56255, -7.57784}, {1.63676, -1.63676, -1.63676, -0.802834, -0.802834, 0.802834, -0.802834, 0.802834, -0.802834, 0.0932794, -4.91028, -4.91028, -1.03079, 3.01551, 1.03079, 1.98471, -5.55112e-15, 5.66214e-15, -1.03079, 1.03079, 3.01551, -8.53176, 6.54704, 6.54704, 4.24213, 2.18055, -6.22684, 4.24213, -6.22684, 2.18055}, {2.4085, -2.4085, 2.4085, -0.833927, 0.833927, 2.4396, 1.57573, 1.57573, 1.57573, 0.0610269, -3.2125, -3.2125, 5.35886, -5.35886, -11.7815, -0.916924, -2.97851, -4.96322, -7.25829, -9.24301, -7.25829, 0.672816, 15.8285, 17.8132, 0.955357, 2.94007, 0.955357, -2.02315, 2.02315, 2.02315}, {-0.802834, 0.802834, -0.802834, 2.50178, -2.50178, -7.31879, 1.57573, 1.57573, 1.57573, 0.0610269, -3.2125, -3.2125, 5.23448, -5.23448, 1.18819, -7.21986, -9.28144, -11.2662, -0.955357, -2.94007, -0.955357, 0.916924, 2.97851, 4.96322, 0.71125, 15.7901, 13.8053, -2.02315, 2.02315, 2.02315}, {-0.802834, 0.802834, -0.802834, -0.833927, 0.833927, 2.4396, -4.7272, -4.7272, -4.7272, 0.0610269, -3.2125, -3.2125, 2.02315, -2.02315, -2.02315, 2.41878, -6.31421, -14.7216, 2.25598, -6.15141, 2.25598, 0.916924, 2.97851, 4.96322, 0.955357, 2.94007, 0.955357, -2.26726, 14.8731, 14.8731}, {-0.802834, 0.802834, -0.802834, -0.833927, 0.833927, 2.4396, 1.57573, 1.57573, 1.57573, -0.183081, 9.63749, 9.63749, 2.02315, -2.02315, -2.02315, -0.916924, -2.97851, -4.96322, -0.955357, -2.94007, -0.955357, 4.12826, -0.232831, 8.17456, 4.29107, -0.395637, -8.80302, -8.32609, -4.27979, -4.27979}, {4.10689, -1.43706, 2.8235e-12, 0.16503, -0.581747, -1.44665, -0.119439, -0.784236, 1.44665, 1.32337, 0.886963, 9.09785e-13, 0.828026, 2.45397, 7.57474, -0.0563528, 1.68845, -3.88578e-14, 2.31753, 3.51421, -7.57474, -5.23714, -5.2363, -3.60028e-12, -1.83977, -0.377268, 1.78815, -1.48814, -0.126978, -1.78815}, {-1.36896, 0.47902, -9.395e-13, -0.495089, 1.74524, 4.33994, -0.119439, -0.784236, 1.44665, 1.32337, 0.886963, 9.08857e-13, 6.964, -1.7891, 1.78815, 0.421405, 4.82539, -5.78659, 1.83977, 0.377268, -1.78815, 0.0563528, -1.68845, 3.79696e-14, -7.13326, -3.92512, 1.78815, -1.48814, -0.126978, -1.78815}, {-1.36896, 0.47902, -9.39941e-13, 0.16503, -0.581747, -1.44665, 0.358318, 2.35271, -4.33994, 1.32337, 0.886963, 9.07744e-13, 1.48814, 0.126978, 1.78815, -0.716472, 4.01544, 5.78659, 7.31562, -1.53881, -1.78815, 0.0563528, -1.68845, 3.9968e-14, -1.83977, -0.377268, 1.78815, -6.78164, -3.67483, -1.78815}, {-1.36896, 0.47902, -9.38462e-13, 0.16503, -0.581747, -1.44665, -0.119439, -0.784236, 1.44665, -3.97012, -2.66089, -2.72546e-12, 1.48814, 0.126978, 1.78815, -0.0563528, 1.68845, -3.70814e-14, 1.83977, 0.377268, -1.78815, 5.53221, -3.60453, 3.79027e-12, -2.49989, 1.94972, 7.57474, -1.01039, 3.00996, -7.57474}, {-1.71772, 0.961283, -4.33994, 1.44665, 0.27723, -1.44665, 0, 1.39654, 0, -2.01922, -1.35334, -1.38544e-12, -8.28248, -1.05552, 5.78659, -1.78815, -2.06889, 1.78815, -0.707741, -6.9163, -1.78815, 9.86504, 7.48225, -1.78815, 0.707741, 1.33015, 1.78815, 2.4959, -0.0533958, 1.7125e-12}, {0.572575, -0.320428, 1.44665, -4.33994, -0.831689, 4.33994, 7.00055e-16, 1.39654, 4.80579e-28, -2.01922, -1.35334, -1.38617e-12, -4.7862, 1.33511, -5.78659, -1.78815, -7.65505, 1.78815, -0.707741, -1.33015, -1.78815, 1.78815, 2.06889, -1.78815, 8.78463, 6.74351, 1.78815, 2.4959, -0.0533958, 1.7134e-12}, {0.572575, -0.320428, 1.44665, 1.44665, 0.27723, -1.44665, 4.20033e-15, -4.18962, 2.88423e-27, -2.01922, -1.35334, -1.38653e-12, -2.4959, 0.0533958, -1.71421e-12, -7.57474, -3.17781, 7.57474, -2.99804, -0.0484352, -7.57474, 1.78815, 2.06889, -1.78815, 0.707741, 1.33015, 1.78815, 10.5728, 5.35997, 7.25997e-12}, {0.572575, -0.320428, 1.44665, 1.44665, 0.27723, -1.44665, 0, 1.39654, 0, 6.05767, 4.06002, 4.16395e-12, -2.4959, 0.0533958, -1.716e-12, -1.78815, -2.06889, 1.78815, -0.707741, -1.33015, -1.78815, -0.502145, 3.3506, -7.57474, -5.07885, 0.221228, 7.57474, 2.4959, -5.63955, 1.71564e-12}, {-4.35597, 0.237767, -4.31288, 0, -1.20934, 0, 0.57469, 0.297534, -1.45022, -2.02668, 0.991065, 0.0125895, -1.79476, 6.43017, -1.77701, -0.710355, 1.12706, 1.79257, -4.80387, -1.45994, 5.81643, 8.81707, -5.09132, -1.84292, 2.50511, 0.269807, -0.0155615, 1.79476, -1.5928, 1.77701}, {1.45199, -0.0792556, 1.43763, 0, 3.62803, 0, 0.57469, 0.297534, -1.45022, -2.02668, 0.991065, 0.0125895, -7.60272, 1.90982, -7.52752, -3.00911, -0.0630793, 7.59343, -2.50511, -0.269807, 0.0155615, 0.710355, -1.12706, -1.79257, 10.6118, -3.69445, -0.0659197, 1.79476, -1.5928, 1.77701}, {1.45199, -0.0792556, 1.43763, 0, -1.20934, 0, -1.72407, -0.892603, 4.35065, -2.02668, 0.991065, 0.0125895, -1.79476, 1.5928, -1.77701, -0.710355, 5.96443, 1.79257, -8.31307, 0.047215, -5.73495, 0.710355, -1.12706, -1.79257, 2.50511, 0.269807, -0.0155615, 9.90148, -5.55705, 1.72665}, {1.45199, -0.0792556, 1.43763, 0, -1.20934, 0, 0.57469, 0.297534, -1.45022, 6.08004, -2.97319, -0.0377686, -1.79476, 1.5928, -1.77701, -0.710355, 1.12706, 1.79257, -2.50511, -0.269807, 0.0155615, -5.09761, -0.810036, -7.54308, 2.50511, 5.10718, -0.0155615, -0.504, -2.78293, 7.57787}, {-1.3922, -1.05489, 4.34859, -1.6823, -0.386683, 0.0104503, -0.635567, 0.941579, 1.4506, 1.8538, -0.906526, -0.0115156, 8.23503, 1.59006, 1.737, 2.86504, -0.685889, -1.80595, 2.75426, -5.36481, -5.8037, -10.2803, 4.31199, 1.85201, -0.211987, 1.59849, 0.00131684, -1.50582, -0.0433277, -1.7788}, {0.464066, 0.35163, -1.44953, 5.0469, 1.16005, -0.0313509, -0.635567, 0.941579, 1.4506, 1.8538, -0.906526, -0.0115156, -0.350444, -1.36319, 7.57692, 5.40731, -4.4522, -7.60833, 0.211987, -1.59849, -0.00131684, -2.86504, 0.685889, 1.80595, -7.6272, 5.2246, 0.0473794, -1.50582, -0.0433277, -1.7788}, {0.464066, 0.35163, -1.44953, -1.6823, -0.386683, 0.0104503, 1.9067, -2.82474, -4.35179, 1.8538, -0.906526, -0.0115156, 1.50582, 0.0433277, 1.7788, 9.59425, 0.860843, -1.84775, -1.64428, -3.00501, 5.7968, -2.86504, 0.685889, 1.80595, -0.211987, 1.59849, 0.00131684, -8.92103, 3.58278, -1.73274}, {0.464066, 0.35163, -1.44953, -1.6823, -0.386683, 0.0104503, -0.635567, 0.941579, 1.4506, -5.56141, 2.71958, 0.0345469, 1.50582, 0.0433277, 1.7788, 2.86504, -0.685889, -1.80595, 0.211987, -1.59849, -0.00131684, -4.72131, -0.720632, 7.60407, 6.51722, 3.14523, -0.0404844, 1.03645, -3.80964, -7.58118}, {-4.91028, -4.91028, 4.91028, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, -1.63676, -1.63676, 4.78823, -10.2738, 6.2275, 10.2738, 3.77476e-15, -3.10862e-15, 3.89543, 6.2275, -10.2738, 10.2738, 6.54704, 6.54704, -23.0483, 0.0754334, 3.97086, -3.97086, 3.97086, 0.0754334, -3.97086}, {1.63676, 1.63676, -1.63676, -4.7272, 4.7272, 4.7272, -1.57573, 1.57573, -1.57573, -1.63676, -1.63676, 4.78823, -10.5179, -6.62248, 10.5179, 6.30294, -6.30294, 10.1984, -0.0754334, -3.97086, 3.97086, -3.07087e-15, 3.59047e-15, -3.89543, 6.62248, 10.5179, -23.1238, 3.97086, 0.0754334, -3.97086}, {1.63676, 1.63676, -1.63676, 1.57573, -1.57573, -1.57573, 4.7272, -4.7272, 4.7272, -1.63676, -1.63676, 4.78823, -3.97086, -0.0754334, 3.97086, -6.30294, 6.30294, 10.1984, -6.62248, -10.5179, 10.5179, -1.51655e-15, 1.81411e-15, -3.89543, 0.0754334, 3.97086, -3.97086, 10.5179, 6.62248, -23.1238}, {1.63676, 1.63676, -1.63676, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, 4.91028, 4.91028, -14.3647, -3.97086, -0.0754334, 3.97086, 3.10862e-15, -2.44249e-15, 3.89543, -0.0754334, -3.97086, 3.97086, -6.54704, -6.54704, 2.65162, -6.2275, 10.2738, 2.33207, 10.2738, -6.2275, 2.33207}, {-1.37636, -1.37636, -5.42796, -2.30348, 0.847989, 0.553233, 1.22922, -1.92224, -0.562043, 0.615468, 0.615468, -1.80051, 11.4941, -5.00722, -5.1332, 1.32785, 1.32785, 0.0108901, -7.00339, 9.49791, 0.706454, -3.78972, -3.78972, 7.19114, 2.0865, -1.80893, 1.54172, -2.28016, 1.61526, 2.92027}, {0.458787, 0.458787, 1.80932, 6.91044, -2.54397, -1.6597, 1.22922, -1.92224, -0.562043, 0.615468, 0.615468, -1.80051, 0.445015, -3.45041, -10.1575, -3.58904, 9.01683, 2.25906, -2.0865, 1.80893, -1.54172, -1.32785, -1.32785, -0.0108901, -0.375375, -4.2708, 8.74375, -2.28016, 1.61526, 2.92027}, {0.458787, 0.458787, 1.80932, -2.30348, 0.847989, 0.553233, -3.68767, 5.76673, 1.68613, 0.615468, 0.615468, -1.80051, 2.28016, -1.61526, -2.92027, 10.5418, -2.0641, -2.20204, -3.92165, -0.0262169, -8.77899, -1.32785, -1.32785, -0.0108901, 2.0865, -1.80893, 1.54172, -4.74204, -0.846607, 10.1223}, {0.458787, 0.458787, 1.80932, -2.30348, 0.847989, 0.553233, 1.22922, -1.92224, -0.562043, -1.8464, -1.8464, 5.40152, 2.28016, -1.61526, -2.92027, 1.32785, 1.32785, 0.0108901, -2.0865, 1.80893, -1.54172, -3.163, -3.163, -7.24816, 11.3004, -5.20089, -0.671213, -7.19706, 9.30424, 5.16845}, {5.36656, -5.36656, -5.36656, 1.41539, 1.85814, -1.41539, 0, 0, -3.15147, 0.373467, -3.64699, 2.778, -5.19992, -11.9405, 5.19992, -1.74951, -2.29678, 5.64494, 2.21115, -2.21115, 14.2902, 0.255645, 16.8847, -16.7569, -2.21115, 2.21115, -1.68428, -0.461631, 4.50793, 0.461631}, {-1.78885, 1.78885, 1.78885, -4.24616, -5.57441, 4.24616, 0, 0, -3.15147, 0.373467, -3.64699, 2.778, 7.61705, -11.6633, -7.61705, -1.74951, -2.29678, 18.2508, 2.21115, -2.21115, 1.68428, 1.74951, 2.29678, -5.64494, -3.70501, 16.7991, -12.7963, -0.461631, 4.50793, 0.461631}, {-1.78885, 1.78885, 1.78885, 1.41539, 1.85814, -1.41539, 0, 0, 9.45441, 0.373467, -3.64699, 2.778, 0.461631, -4.50793, -0.461631, -7.41106, -9.72932, 11.3065, 9.36656, -9.36656, -5.47113, 1.74951, 2.29678, -5.64494, -2.21115, 2.21115, -1.68428, -1.9555, 19.0959, -10.6504}, {-1.78885, 1.78885, 1.78885, 1.41539, 1.85814, -1.41539, 0, 0, -3.15147, -1.1204, 10.941, -8.334, 0.461631, -4.50793, -0.461631, -1.74951, -2.29678, 5.64494, 2.21115, -2.21115, 1.68428, 8.90493, -4.85864, -12.8004, -7.87269, -5.2214, 3.97726, -0.461631, 4.50793, 13.0675}, {5.73547, -8.96906, -2.62245, 0.335815, -3.2793, -0.653542, 1.76841, -1.58918, 1.21052, -0.192397, 1.8788, -1.43113, 0.604796, 13.4752, 2.34148, -2.60096, 6.01778, -0.688458, -6.89635, 4.62559, -7.41885, 3.37055, -13.533, 6.41296, -0.177274, 1.73112, 2.57679, -1.94806, -0.357987, 0.272688}, {-1.91182, 2.98969, 0.874151, -1.00744, 9.83791, 1.96063, 1.76841, -1.58918, 1.21052, -0.192397, 1.8788, -1.43113, 9.59535, -11.6008, -3.76929, -9.67459, 12.3745, -5.53052, 0.177274, -1.73112, -2.57679, 2.60096, -6.01778, 0.688458, 0.592313, -5.78406, 8.30129, -1.94806, -0.357987, 0.272688}, {-1.91182, 2.98969, 0.874151, 0.335815, -3.2793, -0.653542, -5.30522, 4.76754, -3.63155, -0.192397, 1.8788, -1.43113, 1.94806, 0.357987, -0.272688, -3.94422, 19.135, 1.92571, 7.82457, -13.6899, -6.07339, 2.60096, -6.01778, 0.688458, -0.177274, 1.73112, 2.57679, -1.17847, -7.87317, 5.99719}, {-1.91182, 2.98969, 0.874151, 0.335815, -3.2793, -0.653542, 1.76841, -1.58918, 1.21052, 0.57719, -5.63639, 4.29338, 1.94806, 0.357987, -0.272688, -2.60096, 6.01778, -0.688458, 0.177274, -1.73112, -2.57679, 10.2483, -17.9765, -2.80815, -1.52053, 14.8483, 5.19096, -9.02168, 5.99873, -4.56938}, {-0.906892, 2.28653, -2.28852, -1.55284, 0.422175, 1.18312, -0.363916, -0.686733, -0.918335, 1.61446, 1.02673, -1.02763, 7.75714, -1.26844, -7.13784, 2.36925, 0.327011, -0.327296, 1.53183, 4.53788, 3.86554, -8.8271, -4.43394, 4.43781, -0.0761652, -1.79095, -0.192201, -1.54576, -0.420263, 2.40534}, {0.302297, -0.762175, 0.762841, 4.65853, -1.26653, -3.54937, -0.363916, -0.686733, -0.918335, 1.61446, 1.02673, -1.02763, 0.336571, 3.46896, -5.45671, 3.82491, 3.07394, 3.34604, 0.0761652, 1.79095, 0.192201, -2.36925, -0.327011, 0.327296, -6.53402, -5.89788, 3.91832, -1.54576, -0.420263, 2.40534}, {0.302297, -0.762175, 0.762841, -1.55284, 0.422175, 1.18312, 1.09175, 2.0602, 2.75501, 1.61446, 1.02673, -1.02763, 1.54576, 0.420263, -2.40534, 8.58063, -1.36169, -5.05979, -1.13302, 4.83965, -2.85916, -2.36925, -0.327011, 0.327296, -0.0761652, -1.79095, -0.192201, -8.00362, -4.52719, 6.51586}, {0.302297, -0.762175, 0.762841, -1.55284, 0.422175, 1.18312, -0.363916, -0.686733, -0.918335, -4.84339, -3.0802, 3.08289, 1.54576, 0.420263, -2.40534, 2.36925, 0.327011, -0.327296, 0.0761652, 1.79095, 0.192201, -3.57844, 2.72169, -2.72407, 6.13521, -3.47965, -4.9247, -0.0900956, 2.32667, 6.07869}, {-3.9353, 0.360586, -0.360901, -2.42845e-16, -0.455297, -1.14997, 2.03858e-16, 1.40972, 0.194715, -1.31177, -0.834228, 0.834958, -1.62143, 2.53253, 5.87264, 4.81904e-17, -1.17973, 1.18076, -1.62143, -7.23282, -1.16824, 5.24706, 4.51665, -4.52059, 1.62143, 1.59394, 0.389381, 1.62143, -0.711347, -1.27275}, {1.31177, -0.120195, 0.1203, 7.28534e-16, 1.36589, 3.44992, 2.03858e-16, 1.40972, 0.194715, -1.31177, -0.834228, 0.834958, -6.86849, 1.19213, 0.791545, -7.67241e-16, -6.81861, 0.401902, -1.62143, -1.59394, -0.389381, -3.73841e-16, 1.17973, -1.18076, 6.86849, 4.93085, -2.95045, 1.62143, -0.711347, -1.27275}, {1.31177, -0.120195, 0.1203, 7.41337e-17, -0.455297, -1.14997, 6.88614e-16, -4.22916, -0.584146, -1.31177, -0.834228, 0.834958, -1.62143, 0.711347, 1.27275, -1.04445e-16, 0.641455, 5.78066, -6.86849, -1.11316, -0.870582, -5.1774e-16, 1.17973, -1.18076, 1.62143, 1.59394, 0.389381, 6.86849, 2.62557, -4.61258}, {1.31177, -0.120195, 0.1203, -1.68711e-16, -0.455297, -1.14997, -2.56799e-17, 1.40972, 0.194715, 3.9353, 2.50269, -2.50487, -1.62143, 0.711347, 1.27275, 2.4028e-16, -1.17973, 1.18076, -1.62143, -1.59394, -0.389381, -5.24706, 1.66051, -1.66196, 1.62143, 3.41513, 4.98927, 1.62143, -6.35023, -2.05161}, {3.9353, -3.83942e-12, 1.21564, 0, -1.44665, 1.03094, 0, 1.44665, 0.774615, 1.31177, -1.27981e-12, -1.40034, 1.62143, 7.57474, -4.89721, 0, 0, -2.23179, 1.62143, -7.57474, -3.55506, -5.24706, 5.11922e-12, 7.83316, -1.62143, 1.78815, 0.456604, -1.62143, -1.78815, 0.773441}, {-1.31177, 1.28052e-12, -0.405214, 3.53326e-15, 4.33994, -3.09282, 1.17775e-15, 1.44665, 0.774615, 1.31177, -1.28052e-12, -1.40034, 6.86849, 1.78815, 0.847415, -4.71101e-15, -5.78659, -5.33025, 1.62143, -1.78815, -0.456604, 3.2565e-16, -3.17893e-28, 2.23179, -6.86849, 1.78815, 6.05797, -1.62143, -1.78815, 0.773441}, {-1.31177, 1.28099e-12, -0.405214, -9.42202e-16, -1.44665, 1.03094, -2.82661e-15, -4.33994, -2.32384, 1.31177, -1.28099e-12, -1.40034, 1.62143, 1.78815, -0.773441, 3.76881e-15, 5.78659, -6.35555, 6.86849, -1.78815, 1.16425, 3.2565e-16, -3.18011e-28, 2.23179, -1.62143, 1.78815, 0.456604, -6.86849, -1.78815, 6.37481}, {-1.31177, 1.27957e-12, -0.405214, 0, -1.44665, 1.03094, 0, 1.44665, 0.774615, -3.9353, 3.83871e-12, 4.20103, 1.62143, 1.78815, -0.773441, 0, 0, -2.23179, 1.62143, -1.78815, -0.456604, 5.24706, -5.11827e-12, 3.85265, -1.62143, 7.57474, -3.66716, -1.62143, -7.57474, -2.32502}, {-1.71772, -4.33994, -0.49013, 1.44665, -1.44665, -0.51339, 0, 0, -1.80556, -2.01922, 1.97175e-12, 2.15557, -8.28248, 5.78659, 2.4862, -1.78815, 1.78815, 2.86637, -0.707741, -1.78815, 9.25207, 9.86504, -1.78815, -11.4887, 0.707741, 1.78815, -2.02984, 2.4959, -2.43721e-12, -0.432641}, {0.572575, 1.44665, 0.163377, -4.33994, 4.33994, 1.54017, 0, 0, -1.80556, -2.01922, 1.97102e-12, 2.15557, -4.7862, -5.78659, -0.220866, -1.78815, 1.78815, 10.0886, -0.707741, -1.78815, 2.02984, 1.78815, -1.78815, -2.86637, 8.78463, 1.78815, -10.6521, 2.4959, -2.43632e-12, -0.432641}, {0.572575, 1.44665, 0.163377, 1.44665, -1.44665, -0.51339, 0, 0, 5.41667, -2.01922, 1.97175e-12, 2.15557, -2.4959, 2.43685e-12, 0.432641, -7.57474, 7.57474, 4.91994, -2.99804, -7.57474, 1.37634, 1.78815, -1.78815, -2.86637, 0.707741, 1.78815, -2.02984, 10.5728, -1.03242e-11, -9.05492}, {0.572575, 1.44665, 0.163377, 1.44665, -1.44665, -0.51339, 0, 0, -1.80556, 6.05767, -5.91306e-12, -6.46671, -2.4959, 2.43596e-12, 0.432641, -1.78815, 1.78815, 2.86637, -0.707741, -1.78815, 2.02984, -0.502145, -7.57474, -3.51988, -5.07885, 7.57474, 0.0237159, 2.4959, -2.43632e-12, 6.78958}, {5.80677, 0.989763, -2.29829, 1.66654, 1.66654, -0.659606, 0.232016, 0.232016, -2.11105, 0.0370362, -1.56863, 2.00456, -6.33358, -8.31829, 2.5068, -2.34674, -2.34674, 3.42472, 1.17767, -0.807048, 10.1067, 2.1986, 8.62127, -11.443, -2.10573, -0.121017, -1.66246, -0.332567, 1.65215, 0.131628}, {-1.93559, -0.329921, 0.766095, -4.99961, -4.99961, 1.97882, 0.232016, 0.232016, -2.11105, 0.0370362, -1.56863, 2.00456, 8.07492, -0.332464, -3.19601, -3.2748, -3.2748, 11.8689, 2.10573, 0.121017, 1.66246, 2.34674, 2.34674, -3.42472, -2.25388, 6.15351, -9.68071, -0.332567, 1.65215, 0.131628}, {-1.93559, -0.329921, 0.766095, 1.66654, 1.66654, -0.659606, -0.696049, -0.696049, 6.33316, 0.0370362, -1.56863, 2.00456, 0.332567, -1.65215, -0.131628, -9.01289, -9.01289, 6.06315, 9.84809, 1.4407, -1.40192, 2.34674, 2.34674, -3.42472, -2.10573, -0.121017, -1.66246, -0.480712, 7.92668, -7.88662}, {-1.93559, -0.329921, 0.766095, 1.66654, 1.66654, -0.659606, 0.232016, 0.232016, -2.11105, -0.111109, 4.7059, -6.01369, 0.332567, -1.65215, -0.131628, -2.34674, -2.34674, 3.42472, 2.10573, 0.121017, 1.66246, 10.0891, 3.66642, -6.4891, -8.77188, -6.78716, 0.975965, -1.26063, 0.724083, 8.57584}, {-7.02938, -6.32827e-15, -4.44089e-15, 1.74421, 1.74203, 1.33161, -1.54384, -1.54318, 0.610212, -2.54349, -0.198851, -1.94182, -12.0291, -9.12139, -6.97241, -0.247668, -0.245794, -2.40023, 5.18739, 8.08019, -3.19511, 10.4216, 1.0412, 10.1675, 0.98797, -1.90748, 0.754264, 5.05222, 2.15327, 1.64596}, {2.34313, -1.05471e-15, -8.88178e-16, -5.23263, -5.22609, -3.99484, -1.54384, -1.54318, 0.610212, -2.54349, -0.198851, -1.94182, -14.4247, -2.15327, -1.64596, 5.92769, 5.92693, -4.84108, -0.98797, 1.90748, -0.754264, 0.247668, 0.245794, 2.40023, 11.1619, -1.11207, 8.52156, 5.05222, 2.15327, 1.64596}, {2.34313, 2.33147e-15, 1.77636e-15, 1.74421, 1.74203, 1.33161, 4.63152, 4.62954, -1.83064, -2.54349, -0.198851, -1.94182, -5.05222, -2.15327, -1.64596, -7.2245, -7.21392, -7.72668, -10.3605, 1.90748, -0.754264, 0.247668, 0.245794, 2.40023, 0.98797, -1.90748, 0.754264, 15.2262, 2.94867, 9.41326}, {2.34313, -2.77556e-16, -8.88178e-16, 1.74421, 1.74203, 1.33161, -1.54384, -1.54318, 0.610212, 7.63048, 0.596554, 5.82547, -5.05222, -2.15327, -1.64596, -0.247668, -0.245794, -2.40023, -0.98797, 1.90748, -0.754264, -9.12483, 0.245794, 2.40023, -5.98886, -8.8756, -4.57219, 11.2276, 8.32599, -0.794885}, {4.62937, 4.62937, -1.83228, 1.92454e-15, 1.60567, 4.31655e-17, -0.198723, -0.198723, -1.94057, 1.74185, 0.136178, 1.32981, 1.90741, -6.49998, -0.754941, 0.245635, -1.73908, 2.39867, 2.94793, 2.94793, 9.40601, -7.21302, 1.19437, -7.71791, -2.15304, -2.15304, -1.64373, -1.90741, 0.0773091, 0.754941}, {-1.54312, -1.54312, 0.61076, -2.32061e-15, -4.817, -3.91084e-15, -0.198723, -0.198723, -1.94057, 1.74185, 0.136178, 1.32981, 8.0799, 6.09519, -3.19798, 1.04052, -0.94419, 10.1609, 2.15304, 2.15304, 1.64373, -0.245635, 1.73908, -2.39867, -9.12042, -2.69775, -6.96297, -1.90741, 0.0773091, 0.754941}, {-1.54312, -1.54312, 0.61076, 0, 1.60567, 0, 0.596168, 0.596168, 5.82171, 1.74185, 0.136178, 1.32981, 1.90741, -0.0773091, -0.754941, 0.245635, -8.16175, 2.39867, 8.32553, 8.32553, -0.799305, -0.245635, 1.73908, -2.39867, -2.15304, -2.15304, -1.64373, -8.87479, -0.467403, -4.5643}, {-1.54312, -1.54312, 0.61076, -6.94322e-16, 1.60567, -5.30079e-16, -0.198723, -0.198723, -1.94057, -5.22554, -0.408534, -3.98943, 1.90741, -0.0773091, -0.754941, 0.245635, -1.73908, 2.39867, 2.15304, 2.15304, 1.64373, 5.92686, 7.91157, -4.84171, -2.15304, -8.57571, -1.64373, -1.11252, 0.872199, 8.51722}, {-8.88178e-16, 3.03985e-15, -3.8693, 1.44142, -1.45582, 0.146636, 0.577805, 1.45582, -0.186531, -2.01922, -1.68031e-12, -1.24987, -7.54736, 7.62276, -2.36203, -2.4959, -2.07812e-12, 0.0493134, -3.02542, -7.62276, -0.617546, 10.5728, 8.79935e-12, 4.95017, 0.714206, 1.79949, 1.36367, 1.78169, -1.79949, 1.77549}, {0, -1.49289e-16, 1.28977, -4.32425, 4.36745, -0.439908, 0.577805, 1.45582, -0.186531, -2.01922, -1.67873e-12, -1.24987, -1.78169, 1.79949, -6.93455, -4.80711, -5.82327, 0.795439, -0.714206, -1.79949, -1.36367, 2.4959, 2.07523e-12, -0.0493134, 8.79109, 1.79949, 6.36315, 1.78169, -1.79949, 1.77549}, {8.88178e-16, 3.43166e-16, 1.28977, 1.44142, -1.45582, 0.146636, -1.73341, -4.36745, 0.559594, -2.01922, -1.68189e-12, -1.24987, -1.78169, 1.79949, -1.77549, -8.26156, 5.82327, -0.537231, -0.714206, -1.79949, -6.52273, 2.4959, 2.07834e-12, -0.0493134, 0.714206, 1.79949, 1.36367, 9.85858, -1.79949, 6.77497}, {0, 1.48625e-17, 1.28977, 1.44142, -1.45582, 0.146636, 0.577805, 1.45582, -0.186531, 6.05767, 5.03935e-12, 3.74961, -1.78169, 1.79949, -1.77549, -2.4959, -2.07634e-12, 0.0493134, -0.714206, -1.79949, -1.36367, 2.4959, 2.0765e-12, -5.20838, -5.05146, 7.62276, 0.777128, -0.529529, -7.62276, 2.52162}, {-0.0174717, -4.36745, 1.62174, 0.116385, -1.45582, -0.673541, -1.39583, -1.1623e-12, 0.425765, 1.27362, 1.06054e-12, 0.788355, -0.616596, 5.82327, 4.1949, 1.58148, 1.79949, 0.306268, 7.30147, -1.79949, -1.56114, -6.67598, -1.79949, -3.45969, -1.71815, 1.79949, -0.141919, 0.151058, 1.25785e-13, -1.50074}, {0.0058239, 1.45582, -0.54058, -0.349154, 4.36745, 2.02062, -1.39583, -1.1623e-12, 0.425765, 1.27362, 1.06054e-12, 0.788355, -0.174354, -5.82327, 3.66305, 7.16481, 1.79949, -1.39679, 1.71815, -1.79949, 0.141919, -1.58148, -1.79949, -0.306268, -6.81264, 1.79949, -3.29534, 0.151058, 1.25785e-13, -1.50074}, {0.0058239, 1.45582, -0.54058, 0.116385, -1.45582, -0.673541, 4.1875, 3.48841e-12, -1.27729, 1.27362, 1.061e-12, 0.788355, -0.151058, -1.26201e-13, 1.50074, 1.11595, 7.62276, 3.00043, 1.69485, -7.62276, 2.30424, -1.58148, -1.79949, -0.306268, -1.71815, 1.79949, -0.141919, -4.94344, -4.11815e-12, -4.65416}, {0.0058239, 1.45582, -0.54058, 0.116385, -1.45582, -0.673541, -1.39583, -1.16331e-12, 0.425765, -3.82087, -3.18437e-12, -2.36507, -0.151058, -1.26255e-13, 1.50074, 1.58148, 1.79949, 0.306268, 1.71815, -1.79949, 0.141919, -1.60478, -7.62276, 1.85605, -2.18368, 7.62276, 2.55224, 5.73439, 4.77913e-12, -3.20379}, {0.776806, 4.33994, 4.33994, -1.05603, 0, 0, 0.111915, 1.44665, -0.572575, 1.20305, 1.58813e-12, 2.01922, 5.84948, 1.78815, 1.78815, 1.16698, -1.78815, 0.707741, -0.265932, -5.78659, 4.7862, -5.97917, 1.78815, -8.78463, -0.181727, -1.96304e-12, -2.4959, -1.62538, -1.78815, -1.78815}, {-0.258935, -1.44665, -1.44665, 3.16808, 0, 0, 0.111915, 1.44665, -0.572575, 1.20305, 1.58704e-12, 2.01922, 2.66112, 7.57474, 7.57474, 0.719326, -7.57474, 2.99804, 0.181727, 1.96205e-12, 2.4959, -1.16698, 1.78815, -0.707741, -4.99391, -8.30986e-12, -10.5728, -1.62538, -1.78815, -1.78815}, {-0.258935, -1.44665, -1.44665, -1.05603, 0, 0, -0.335745, -4.33994, 1.71772, 1.20305, 1.58813e-12, 2.01922, 1.62538, 1.78815, 1.78815, 5.39109, -1.78815, 0.707741, 1.21747, 5.78659, 8.28248, -1.16698, 1.78815, -0.707741, -0.181727, -1.96304e-12, -2.4959, -6.43757, -1.78815, -9.86504}, {-0.258935, -1.44665, -1.44665, -1.05603, 0, 0, 0.111915, 1.44665, -0.572575, -3.60914, -4.76221e-12, -6.05767, 1.62538, 1.78815, 1.78815, 1.16698, -1.78815, 0.707741, 0.181727, 1.9625e-12, 2.4959, -0.131244, 7.57474, 5.07885, 4.04237, -1.96214e-12, -2.4959, -2.07304, -7.57474, 0.502145}, {-1.50826, -4.33994, -0.250246, -0.36325, 9.14735e-13, 1.16277, 0.624341, -1.44665, 0.0358648, -0.763842, -1.00857e-12, -1.28205, 1.28057, -1.78815, -6.19146, -0.322725, 1.78815, -1.4816, -3.89052, 5.78659, -0.290898, 3.37809, -1.78815, 6.6098, 1.39316, 1.15988e-13, 0.147438, 0.172433, 1.78815, 1.54037}, {0.502752, 1.44665, 0.0834153, 1.08975, -2.74233e-12, -3.48831, 0.624341, -1.44665, 0.0358648, -0.763842, -1.00788e-12, -1.28205, -2.18344, -7.57474, -1.87403, -2.82009, 7.57474, -1.62505, -1.39316, -1.16267e-13, -0.147438, 0.322725, -1.78815, 1.4816, 4.44853, 4.14743e-12, 5.27564, 0.172433, 1.78815, 1.54037}, {0.502752, 1.44665, 0.0834153, -0.36325, 9.139e-13, 1.16277, -1.87302, 4.33994, -0.107594, -0.763842, -1.00765e-12, -1.28205, -0.172433, -1.78815, -1.54037, 1.13028, 1.78815, -6.13268, -3.40417, -5.78659, -0.4811, 0.322725, -1.78815, 1.4816, 1.39316, 1.15882e-13, 0.147438, 3.2278, 1.78815, 6.66858}, {0.502752, 1.44665, 0.0834153, -0.36325, 9.14526e-13, 1.16277, 0.624341, -1.44665, 0.0358648, 2.29153, 3.02502e-12, 3.84615, -0.172433, -1.78815, -1.54037, -0.322725, 1.78815, -1.4816, -1.39316, -1.1632e-13, -0.147438, -1.68828, -7.57474, 1.14793, 2.84616, -3.54214e-12, -4.50365, -2.32493, 7.57474, 1.39691}, {-5.2764, 2.09092, -1.75594, -0.883363, 0.350058, 0.882867, 0.674903, -2.28914, -0.671659, -1.55034, 2.63606, -0.796523, 2.45135, -0.971419, -5.34624, 0.257671, 2.39684, -0.261068, -5.70783, 12.8476, 2.79336, 5.94368, -12.9411, 3.44716, 3.00822, -3.69104, -0.106727, 1.0821, -0.428812, 1.81477}, {1.7588, -0.696974, 0.585315, 2.65009, -1.05017, -2.6486, 0.674903, -2.28914, -0.671659, -1.55034, 2.63606, -0.796523, -8.11729, 3.21671, -4.15603, -2.44194, 11.5534, 2.42557, -3.00822, 3.69104, 0.106727, -0.257671, -2.39684, 0.261068, 9.20957, -14.2353, 3.07936, 1.0821, -0.428812, 1.81477}, {1.7588, -0.696974, 0.585315, -0.883363, 0.350058, 0.882867, -2.02471, 6.86742, 2.01498, -1.55034, 2.63606, -0.796523, -1.0821, 0.428812, -1.81477, 3.79112, 0.996607, -3.79254, -10.0434, 6.47894, -2.23453, -0.257671, -2.39684, 0.261068, 3.00822, -3.69104, -0.106727, 7.28345, -10.973, 5.00086}, {1.7588, -0.696974, 0.585315, -0.883363, 0.350058, 0.882867, 0.674903, -2.28914, -0.671659, 4.65101, -7.90817, 2.38957, -1.0821, 0.428812, -1.81477, 0.257671, 2.39684, -0.261068, -3.00822, 3.69104, 0.106727, -7.29286, 0.391057, -2.08019, 6.54167, -5.09127, -3.6382, -1.61751, 8.72775, 4.50141}, {-0.630826, -5.80799, 0.630826, -0.387946, -0.481968, -1.21772, -0.883035, 0.3495, 0.883035, 1.06071, -1.80353, 0.544962, 1.7714, 0.130593, 6.63599, 1.57102, 0.163739, 0.413696, 4.36372, -4.22303, -4.36372, -5.81384, 7.05038, -2.59355, -0.831577, 2.82503, 0.831577, -0.219612, 1.79728, -1.7651}, {0.210275, 1.936, -0.210275, 1.16384, 1.4459, 3.65317, -0.883035, 0.3495, 0.883035, 1.06071, -1.80353, 0.544962, -0.621489, -9.54126, 2.6062, 5.10316, -1.23426, -3.11845, 0.831577, -2.82503, -0.831577, -1.57102, -0.163739, -0.413696, -5.0744, 10.0391, -1.34827, -0.219612, 1.79728, -1.7651}, {0.210275, 1.936, -0.210275, -0.387946, -0.481968, -1.21772, 2.64911, -1.0485, -2.64911, 1.06071, -1.80353, 0.544962, 0.219612, -1.79728, 1.7651, 3.1228, 2.09161, 5.28459, -0.00952469, -10.569, 0.00952469, -1.57102, -0.163739, -0.413696, -0.831577, 2.82503, 0.831577, -4.46243, 9.01139, -3.94495}, {0.210275, 1.936, -0.210275, -0.387946, -0.481968, -1.21772, -0.883035, 0.3495, 0.883035, -3.18212, 5.41059, -1.63489, 0.219612, -1.79728, 1.7651, 1.57102, 0.163739, 0.413696, 0.831577, -2.82503, -0.831577, -2.41212, -7.90772, 0.427406, 0.720206, 4.7529, 5.70247, 3.31253, 0.399276, -5.29724}, {-4.62915, 1.83443, 4.62655, 1.15731e-16, 1.13013e-15, 2.34313, -1.74201, -1.33137, 1.74389, 0.198956, 1.94285, -2.54483, -1.90731, 0.755828, -10.3625, 2.15324, 1.64567, -5.05183, 7.21395, 7.72698, -7.2249, -2.94906, -9.41706, 15.2312, -0.245923, -2.40149, 0.249326, 1.90731, -0.755828, 0.990019}, {1.54305, -0.611477, -1.54218, -3.38711e-15, -5.71373e-15, -7.02938, -1.74201, -1.33137, 1.74389, 0.198956, 1.94285, -2.54483, -8.07952, 3.20174, 5.17872, 9.12126, 6.97115, -12.0274, 0.245923, 2.40149, -0.249326, -2.15324, -1.64567, 5.05183, -1.04175, -10.1729, 10.4287, 1.90731, -0.755828, 0.990019}, {1.54305, -0.611477, -1.54218, 0, 0, 2.34313, 5.22602, 3.99411, -5.23168, 0.198956, 1.94285, -2.54483, -1.90731, 0.755828, -0.990019, 2.15324, 1.64567, -14.4243, -5.92628, 4.8474, 5.91941, -2.15324, -1.64567, 5.05183, -0.245923, -2.40149, 0.249326, 1.11149, -8.52722, 11.1694}, {1.54305, -0.611477, -1.54218, 1.15731e-16, 1.13013e-15, 2.34313, -1.74201, -1.33137, 1.74389, -0.596868, -5.82855, 7.6345, -1.90731, 0.755828, -0.990019, 2.15324, 1.64567, -5.05183, 0.245923, 2.40149, -0.249326, -8.32544, 0.800244, 11.2206, -0.245923, -2.40149, -9.12318, 8.87534, 4.56966, -5.98555}, {-4.62937, 1.83228, 4.62937, -1.60567, 0, 0, 0.198723, 1.94057, -0.198723, -0.136178, -1.32981, 1.74185, 6.49998, 0.754941, 1.90741, 1.73908, -2.39867, 0.245635, -2.94793, -9.40601, 2.94793, -1.19437, 7.71791, -7.21302, 2.15304, 1.64373, -2.15304, -0.0773091, -0.754941, -1.90741}, {1.54312, -0.61076, -1.54312, 4.817, 0, 0, 0.198723, 1.94057, -0.198723, -0.136178, -1.32981, 1.74185, -6.09519, 3.19798, 8.0799, 0.94419, -10.1609, 1.04052, -2.15304, -1.64373, 2.15304, -1.73908, 2.39867, -0.245635, 2.69775, 6.96297, -9.12042, -0.0773091, -0.754941, -1.90741}, {1.54312, -0.61076, -1.54312, -1.60567, 0, 0, -0.596168, -5.82171, 0.596168, -0.136178, -1.32981, 1.74185, 0.0773091, 0.754941, 1.90741, 8.16175, -2.39867, 0.245635, -8.32553, 0.799305, 8.32553, -1.73908, 2.39867, -0.245635, 2.15304, 1.64373, -2.15304, 0.467403, 4.5643, -8.87479}, {1.54312, -0.61076, -1.54312, -1.60567, 0, 0, 0.198723, 1.94057, -0.198723, 0.408534, 3.98943, -5.22554, 0.0773091, 0.754941, 1.90741, 1.73908, -2.39867, 0.245635, -2.15304, -1.64373, 2.15304, -7.91157, 4.84171, 5.92686, 8.57571, 1.64373, -2.15304, -0.872199, -8.51722, -1.11252}, {3.22749, -4.51945, -2.90569, 1.79579, -0.140217, 1.36925, 0.607375, 0.135762, -1.32575, -1.32734, -1.50203, -1.01206, -8.0731, -1.12793, -8.36668, -2.97048, 0.00550629, -0.0537701, -1.85046, -2.57298, 5.74449, 8.27985, 6.00261, 4.10202, -0.57904, 2.02993, -0.441503, 0.889927, 1.6888, 2.88969}, {-1.07583, 1.50648, 0.968563, -5.38738, 0.42065, -4.10774, 0.607375, 0.135762, -1.32575, -1.32734, -1.50203, -1.01206, 3.41339, -7.71473, -6.76394, -5.39998, -0.537542, 5.24921, 0.57904, -2.02993, 0.441503, 2.97048, -0.00550629, 0.0537701, 4.73032, 8.03804, 3.60675, 0.889927, 1.6888, 2.88969}, {-1.07583, 1.50648, 0.968563, 1.79579, -0.140217, 1.36925, -1.82213, -0.407286, 3.97724, -1.32734, -1.50203, -1.01206, -0.889927, -1.6888, -2.88969, -10.1537, 0.566373, -5.53076, 4.88236, -8.05586, -3.43275, 2.97048, -0.00550629, 0.0537701, -0.57904, 2.02993, -0.441503, 6.19929, 7.69691, 6.93795}, {-1.07583, 1.50648, 0.968563, 1.79579, -0.140217, 1.36925, 0.607375, 0.135762, -1.32575, 3.98202, 4.50609, 3.03619, -0.889927, -1.6888, -2.88969, -2.97048, 0.00550629, -0.0537701, 0.57904, -2.02993, 0.441503, 7.2738, -6.03144, -3.82048, -7.76222, 2.59079, -5.91849, -1.53958, 1.14575, 8.19268}, {0.596103, 2.3292, 5.82108, 0, -2.17235, 0, -1.54296, 0.977878, 0.61239, 1.74166, 1.97087, 1.32797, 0.245608, 12.3343, 2.39842, 1.9072, 1.47645, -0.756955, 8.32463, -4.16055, -0.808098, -8.87383, -9.35994, -4.55492, -2.15281, 0.249041, -1.64146, -0.245608, -3.64486, -2.39842}, {-0.198701, -0.7764, -1.94036, 0, 6.51705, 0, -1.54296, 0.977878, 0.61239, 1.74166, 1.97087, 1.32797, 1.04041, 6.75045, 10.1599, 8.07903, -2.43506, -3.20651, 2.15281, -0.249041, 1.64146, -1.9072, -1.47645, 0.756955, -9.11944, -7.63445, -6.95334, -0.245608, -3.64486, -2.39842}, {-0.198701, -0.7764, -1.94036, 0, -2.17235, 0, 4.62887, -2.93363, -1.83717, 1.74166, 1.97087, 1.32797, 0.245608, 3.64486, 2.39842, 1.9072, 10.1659, -0.756955, 2.94761, 2.85656, 9.4029, -1.9072, -1.47645, 0.756955, -2.15281, 0.249041, -1.64146, -7.21224, -11.5283, -7.71029}, {-0.198701, -0.7764, -1.94036, 0, -2.17235, 0, -1.54296, 0.977878, 0.61239, -5.22497, -5.91262, -3.98391, 0.245608, 3.64486, 2.39842, 1.9072, 1.47645, -0.756955, 2.15281, -0.249041, 1.64146, -1.1124, 1.62915, 8.51839, -2.15281, 8.93844, -1.64146, 5.92622, -7.55637, -4.84797}, {-2.37946, -3.79135, -6.81576, 0.894391, -1.25242, -0.805215, 0.086206, 0.865556, -0.85654, -1.77375, -0.876923, -0.610165, -5.66348, 4.99561, 1.40791, -1.21208, 0.478185, 2.05404, -1.43177, -6.09423, 1.67666, 8.30708, 3.02951, 0.386615, 1.08695, 2.63201, 1.74951, 2.08592, 0.0140506, 1.81295}, {0.793153, 1.26378, 2.27192, -2.68317, 3.75725, 2.41565, 0.086206, 0.865556, -0.85654, -1.77375, -0.876923, -0.610165, -5.25853, -5.06918, -10.9006, -1.55691, -2.98404, 5.4802, -1.08695, -2.63201, -1.74951, 1.21208, -0.478185, -2.05404, 8.18195, 6.1397, 4.19016, 2.08592, 0.0140506, 1.81295}, {0.793153, 1.26378, 2.27192, 0.894391, -1.25242, -0.805215, -0.258618, -2.59667, 2.56962, -1.77375, -0.876923, -0.610165, -2.08592, -0.0140506, -1.81295, -4.78965, 5.48785, 5.2749, -4.25956, -7.68714, -10.8372, 1.21208, -0.478185, -2.05404, 1.08695, 2.63201, 1.74951, 9.18092, 3.52174, 4.25361}, {0.793153, 1.26378, 2.27192, 0.894391, -1.25242, -0.805215, 0.086206, 0.865556, -0.85654, 5.32125, 2.63077, 1.83049, -2.08592, -0.0140506, -1.81295, -1.21208, 0.478185, 2.05404, -1.08695, -2.63201, -1.74951, -1.96053, -5.53332, -11.1417, -2.49062, 7.64167, 4.97037, 1.74109, -3.44817, 5.23911}, {4.58783, -0.200634, 4.23679, 1.50209, -0.951977, -0.596169, -2.69821, -0.462309, 1.0709, 2.7254, 1.34741, 0.937529, -5.97475, 4.90195, 4.86723, 1.47849, 1.74815, -0.586802, 16.0183, 2.33802, -3.86166, -12.3801, -7.13778, -3.16331, -5.22546, -0.48878, -0.421944, -0.0336074, -1.09404, -2.48256}, {-1.52928, 0.0668781, -1.41226, -4.50626, 2.85593, 1.78851, -2.69821, -0.462309, 1.0709, 2.7254, 1.34741, 0.937529, 6.15072, 0.82653, 8.1316, 12.2713, 3.59739, -4.87041, 5.22546, 0.48878, 0.421944, -1.47849, -1.74815, 0.586802, -16.1271, -5.87841, -4.17206, -0.0336074, -1.09404, -2.48256}, {-1.52928, 0.0668781, -1.41226, 1.50209, -0.951977, -0.596169, 8.09463, 1.38693, -3.21271, 2.7254, 1.34741, 0.937529, 0.0336074, 1.09404, 2.48256, -4.52987, 5.55606, 1.79787, 11.3426, 0.221267, 6.07099, -1.47849, -1.74815, 0.586802, -5.22546, -0.48878, -0.421944, -10.9352, -6.48367, -6.23267}, {-1.52928, 0.0668781, -1.41226, 1.50209, -0.951977, -0.596169, -2.69821, -0.462309, 1.0709, -8.1762, -4.04222, -2.81259, 0.0336074, 1.09404, 2.48256, 1.47849, 1.74815, -0.586802, 5.22546, 0.48878, 0.421944, 4.63862, -2.01567, 6.23585, -11.2338, 3.31913, 1.96273, 10.7592, 0.755194, -6.76616}, {1.83443, -2.90588, -4.62915, 0, -2.17235, 0, 1.94285, -0.797826, 0.198956, -1.33137, 2.00155, -1.74201, 0.755828, 10.1773, -1.90731, -2.40149, 3.67134, -0.245923, -9.41706, 2.98018, -2.94906, 7.72698, -11.6775, 7.21395, 1.64567, 0.211121, 2.15324, -0.755828, -1.48788, 1.90731}, {-0.611477, 0.968627, 1.54305, 0, 6.51705, 0, 1.94285, -0.797826, 0.198956, -1.33137, 2.00155, -1.74201, 3.20174, -2.38662, -8.07952, -10.1729, 6.86264, -1.04175, -1.64567, -0.211121, -2.15324, 2.40149, -3.67134, 0.245923, 6.97115, -7.79508, 9.12126, -0.755828, -1.48788, 1.90731}, {-0.611477, 0.968627, 1.54305, 0, -2.17235, 0, -5.82855, 2.39348, -0.596868, -1.33137, 2.00155, -1.74201, 0.755828, 1.48788, -1.90731, -2.40149, 12.3607, -0.245923, 0.800244, -4.08563, -8.32544, 2.40149, -3.67134, 0.245923, 1.64567, 0.211121, 2.15324, 4.56966, -9.49408, 8.87534}, {-0.611477, 0.968627, 1.54305, 0, -2.17235, 0, 1.94285, -0.797826, 0.198956, 3.99411, -6.00465, 5.22602, 0.755828, 1.48788, -1.90731, -2.40149, 3.67134, -0.245923, -1.64567, -0.211121, -2.15324, 4.8474, -7.54585, -5.92628, 1.64567, 8.90052, 2.15324, -8.52722, 1.70342, 1.11149}, {-3.96631, -0.406167, 1.83974, -1.35283, -0.138536, -1.77009, -0.9692, 1.50642, 1.075, 0.999931, -1.50327, 1.30834, 5.44932, 0.558033, 10.0263, 2.87019, -1.6908, 0.859181, 3.44059, -8.05506, -4.87073, -6.86992, 7.70388, -6.09254, 0.436211, 2.02938, 0.570751, -0.0379859, -0.00388992, -2.94596}, {1.3221, 0.135389, -0.613248, 4.0585, 0.415608, 5.31026, -0.9692, 1.50642, 1.075, 0.999931, -1.50327, 1.30834, -5.25042, -0.537666, 5.39896, 6.74699, -7.71647, -3.4408, -0.436211, -2.02938, -0.570751, -2.87019, 1.6908, -0.859181, -3.56351, 8.04247, -4.66261, -0.0379859, -0.00388992, -2.94596}, {1.3221, 0.135389, -0.613248, -1.35283, -0.138536, -1.77009, 2.9076, -4.51925, -3.22499, 0.999931, -1.50327, 1.30834, 0.0379859, 0.00388992, 2.94596, 8.28152, -1.13665, 7.93953, -5.72462, -2.57094, 1.88224, -2.87019, 1.6908, -0.859181, 0.436211, 2.02938, 0.570751, -4.03771, 6.00919, -8.17932}, {1.3221, 0.135389, -0.613248, -1.35283, -0.138536, -1.77009, -0.9692, 1.50642, 1.075, -2.99979, 4.50981, -3.92502, 0.0379859, 0.00388992, 2.94596, 2.87019, -1.6908, 0.859181, -0.436211, -2.02938, -0.570751, -8.1586, 1.14924, 1.59381, 5.84754, 2.58353, 7.6511, 3.83881, -6.02956, -7.24594}, {3.10069, 1.60532, -7.82452, 0.575383, -0.91145, -1.45197, 1.48006, -0.0647255, 1.36681, -1.02187, 1.51128, -2.52301, -1.73519, 5.43384, 4.37871, -2.54066, 1.20662, 0.105263, -6.47211, 1.00034, -10.3806, 6.62816, -7.25175, 9.9868, 0.551894, -0.741434, 4.91335, -0.566342, -1.78804, 1.42915}, {-1.03356, -0.535107, 2.60817, -1.72615, 2.73435, 4.3559, 1.48006, -0.0647255, 1.36681, -1.02187, 1.51128, -2.52301, 4.7006, 3.92847, -11.8619, -8.46088, 1.46552, -5.36196, -0.551894, 0.741434, -4.91335, 2.54066, -1.20662, -0.105263, 4.63939, -6.78657, 15.0054, -0.566342, -1.78804, 1.42915}, {-1.03356, -0.535107, 2.60817, 0.575383, -0.91145, -1.45197, -4.44017, 0.194177, -4.10042, -1.02187, 1.51128, -2.52301, 0.566342, 1.78804, -1.42915, -4.84219, 4.85242, 5.91313, 3.58236, 2.88186, -15.346, 2.54066, -1.20662, -0.105263, 0.551894, -0.741434, 4.91335, 3.52116, -7.83317, 11.5212}, {-1.03356, -0.535107, 2.60817, 0.575383, -0.91145, -1.45197, 1.48006, -0.0647255, 1.36681, 3.06562, -4.53385, 7.56904, 0.566342, 1.78804, -1.42915, -2.54066, 1.20662, 0.105263, -0.551894, 0.741434, -4.91335, 6.67491, 0.933809, -10.538, -1.74964, 2.90437, 10.7212, -6.48656, -1.52914, -4.03807}, {-2.63316, -2.47826, 0.36108, 0.802811, -1.2478, -0.890444, -2.35614, 1.42089, -0.657266, 0.675604, -0.999172, 1.66807, -5.2885, 5.51247, 4.8112, 1.92002, -0.213947, 1.91307, 11.252, -8.46096, 3.59026, -4.62243, 4.21063, -8.58536, -1.82742, 2.77741, -0.961199, 2.07725, -0.52127, -1.24942}, {0.877721, 0.826085, -0.12036, -2.40843, 3.7434, 2.67133, -2.35614, 1.42089, -0.657266, 0.675604, -0.999172, 1.66807, -5.58814, -2.78307, 1.73086, 11.3446, -5.8975, 4.54214, 1.82742, -2.77741, 0.961199, -1.92002, 0.213947, -1.91307, -4.52984, 6.7741, -7.63348, 2.07725, -0.52127, -1.24942}, {0.877721, 0.826085, -0.12036, 0.802811, -1.2478, -0.890444, 7.06841, -4.26266, 1.9718, 0.675604, -0.999172, 1.66807, -2.07725, 0.52127, 1.24942, -1.29123, 4.77726, 5.47485, -1.68346, -6.08175, 1.44264, -1.92002, 0.213947, -1.91307, -1.82742, 2.77741, -0.961199, -0.625163, 3.47542, -7.9217}, {0.877721, 0.826085, -0.12036, 0.802811, -1.2478, -0.890444, -2.35614, 1.42089, -0.657266, -2.02681, 2.99752, -5.00421, -2.07725, 0.52127, 1.24942, 1.92002, -0.213947, 1.91307, 1.82742, -2.77741, 0.961199, -5.4309, -3.09039, -1.43164, -5.03867, 7.76862, 2.60058, 11.5018, -6.20482, 1.37964}, {-0.815557, 4.36562, -0.135176, -1.95424, 0.460185, -0.243585, -0.0205487, 0.870319, -1.11219, 1.70294, 0.124702, 1.31071, 9.89652, -0.610825, 1.21973, 2.44098, -1.64459, 1.67583, -0.228434, -2.75832, 5.76778, -9.25274, 1.14578, -6.91867, 0.310628, -0.722961, -1.31904, -2.07955, -1.22991, -0.245392}, {0.271852, -1.45521, 0.0450587, 5.86273, -1.38055, 0.730756, -0.0205487, 0.870319, -1.11219, 1.70294, 0.124702, 1.31071, 0.99214, 7.05074, 0.0651576, 2.52317, -5.12587, 6.12457, -0.310628, 0.722961, 1.31904, -2.44098, 1.64459, -1.67583, -6.50113, -1.22177, -6.56189, -2.07955, -1.22991, -0.245392}, {0.271852, -1.45521, 0.0450587, -1.95424, 0.460185, -0.243585, 0.0616461, -2.61096, 3.33656, 1.70294, 0.124702, 1.31071, 2.07955, 1.22991, 0.245392, 10.258, -3.48533, 2.65017, -1.39804, 6.54379, 1.13881, -2.44098, 1.64459, -1.67583, 0.310628, -0.722961, -1.31904, -8.89131, -1.72872, -5.48824}, {0.271852, -1.45521, 0.0450587, -1.95424, 0.460185, -0.243585, -0.0205487, 0.870319, -1.11219, -5.10882, -0.374107, -3.93214, 2.07955, 1.22991, 0.245392, 2.44098, -1.64459, 1.67583, -0.310628, 0.722961, 1.31904, -3.52839, 7.46542, -1.85606, 8.1276, -2.5637, -0.344701, -1.99736, -4.71119, 4.20335}, {-2.82343, -2.82223, 1.11598, 0.652804, 0.651093, 1.763, 0.935946, -1.40658, 0.556196, -2.52989, -0.185258, -1.9472, -4.58144, -4.57199, -8.77136, -1.9638, 0.933829, -2.86668, -6.064, 6.20211, -2.45247, 12.0834, -0.192795, 10.6555, 2.32021, -0.575803, 0.227687, 1.97023, 1.96762, 1.71938}, {0.941145, 0.940742, -0.371993, -1.95841, -1.95328, -5.28899, 0.935946, -1.40658, 0.556196, -2.52989, -0.185258, -1.9472, -5.73481, -5.73058, -0.231403, -5.70759, 6.56014, -5.09146, -2.32021, 0.575803, -0.227687, 1.9638, -0.933829, 2.86668, 12.4398, 0.165231, 8.01649, 1.97023, 1.96762, 1.71938}, {0.941145, 0.940742, -0.371993, 0.652804, 0.651093, 1.763, -2.80784, 4.21973, -1.66859, -2.52989, -0.185258, -1.9472, -1.97023, -1.96762, -1.71938, -4.57502, -1.67054, -9.91867, -6.08479, -3.18716, 1.26029, 1.9638, -0.933829, 2.86668, 2.32021, -0.575803, 0.227687, 12.0898, 2.70865, 9.50817}, {0.941145, 0.940742, -0.371993, 0.652804, 0.651093, 1.763, 0.935946, -1.40658, 0.556196, 7.58968, 0.555775, 5.8416, -1.97023, -1.96762, -1.71938, -1.9638, 0.933829, -2.86668, -2.32021, 0.575803, -0.227687, -1.80078, -4.6968, 4.35465, -0.291002, -3.18018, -6.8243, -1.77356, 7.59392, -0.505409}, {4.38876, 6.50951, 0.486449, -0.364196, 1.94951, -0.0603643, 0.336809, -1.04259, -1.05295, 1.49031, 1.26291, 1.27547, 3.71522, -7.52572, 0.5165, 0.0338521, -1.12102, 1.37614, 0.0447138, 8.14114, 5.71377, -5.99508, -3.93064, -6.47801, -1.39195, -3.97078, -1.50195, -2.25844, -0.272335, -0.275043}, {-1.46292, -2.16984, -0.16215, 1.09259, -5.84854, 0.181093, 0.336809, -1.04259, -1.05295, 1.49031, 1.26291, 1.27547, 8.11012, 8.95169, 0.923642, -1.31338, 3.04934, 5.58796, 1.39195, 3.97078, 1.50195, -0.0338521, 1.12102, -1.37614, -7.35318, -9.02244, -6.60383, -2.25844, -0.272335, -0.275043}, {-1.46292, -2.16984, -0.16215, -0.364196, 1.94951, -0.0603643, -1.01043, 3.12777, 3.15886, 1.49031, 1.26291, 1.27547, 2.25844, 0.272335, 0.275043, 1.49064, -8.91908, 1.6176, 7.24363, 12.6501, 2.15055, -0.0338521, 1.12102, -1.37614, -1.39195, -3.97078, -1.50195, -8.21966, -5.32399, -5.37692}, {-1.46292, -2.16984, -0.16215, -0.364196, 1.94951, -0.0603643, 0.336809, -1.04259, -1.05295, -4.47092, -3.78874, -3.82641, 2.25844, 0.272335, 0.275043, 0.0338521, -1.12102, 1.37614, 1.39195, 3.97078, 1.50195, 5.81783, 9.80037, -0.727539, 0.0648337, -11.7688, -1.26049, -3.60567, 3.89803, 3.93678}, {-4.70136, 0, -1.77636e-15, -0.960805, 1.44394, -0.570969, 1.09021, -0.00626368, 2.02293, -1.69653, -1.43767, -1.45196, 3.09377, -7.56055, 2.98963, -0.159958, -1.77706, -1.79473, -7.6455, 0.0327971, -10.5922, 6.94608, 7.52775, 7.60258, 3.28465, -0.00774234, 2.50048, 0.749448, 1.7848, -0.705756}, {1.56712, -2.22045e-16, 1.11022e-15, 2.88242, -4.33181, 1.71291, 1.09021, -0.00626368, 2.02293, -1.69653, -1.43767, -1.45196, -7.01793, -1.7848, 0.705756, -4.52081, -1.75201, -9.88646, -3.28465, 0.00774234, -2.50048, 0.159958, 1.77706, 1.79473, 10.0708, 5.74295, 8.30834, 0.749448, 1.7848, -0.705756}, {1.56712, -8.88178e-16, -8.88178e-16, -0.960805, 1.44394, -0.570969, -3.27064, 0.018791, -6.0688, -1.69653, -1.43767, -1.45196, -0.749448, -1.7848, 0.705756, 3.68326, -7.5528, 0.489149, -9.55313, 0.00774234, -2.50048, 0.159958, 1.77706, 1.79473, 3.28465, -0.00774234, 2.50048, 7.53557, 7.53549, 5.1021}, {1.56712, 0, 0, -0.960805, 1.44394, -0.570969, 1.09021, -0.00626368, 2.02293, 5.08959, 4.31302, 4.35589, -0.749448, -1.7848, 0.705756, -0.159958, -1.77706, -1.79473, -3.28465, 0.00774234, -2.50048, -6.10853, 1.77706, 1.79473, 7.12787, -5.78349, 4.78436, -3.61141, 1.80986, -8.79749}}
   ]
   + total size  : 6.8e+02kB
  ]
  + total size  : 6.8e+02kB
 ]
 
 Vector<double> [
  + id             : grad_on_quad
  + size           : 1364
  + nb_component   : 6
  + allocated size : 1364
  + memory size    : 64kB
  + values         : {{13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}}
 ]
 
diff --git a/test/test_fem/test_gradient_tetrahedron_4.verified b/test/test_fem/test_gradient_tetrahedron_4.verified
index 1ccf818e5..0ac1a3b22 100644
--- a/test/test_fem/test_gradient_tetrahedron_4.verified
+++ b/test/test_fem/test_gradient_tetrahedron_4.verified
@@ -1,181 +1,181 @@
 Epsilon : 1e-12
 FEM [
  + id                : my_fem
  + element dimension : 3
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 131
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 48
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
        ]
-        (not_ghost:triangle_3) [
+        (not_ghost:_triangle_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_3
+        + id             : mesh:connectivities:_triangle_3
         + size           : 240
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{45, 49, 35}, {45, 8, 50}, {46, 38, 51}, {23, 47, 52}, {46, 50, 10}, {37, 49, 47}, {25, 52, 48}, {40, 48, 51}, {35, 49, 36}, {38, 39, 51}, {8, 9, 50}, {23, 52, 24}, {36, 49, 37}, {9, 10, 50}, {39, 40, 51}, {24, 52, 25}, {45, 44, 49}, {45, 50, 44}, {46, 44, 50}, {44, 47, 49}, {46, 51, 44}, {44, 52, 47}, {44, 51, 48}, {44, 48, 52}, {45, 35, 53}, {45, 53, 8}, {46, 54, 38}, {23, 55, 47}, {46, 10, 54}, {37, 47, 55}, {25, 48, 56}, {40, 56, 48}, {4, 37, 55}, {6, 53, 35}, {7, 54, 10}, {7, 38, 54}, {6, 8, 53}, {5, 56, 40}, {4, 55, 23}, {5, 25, 56}, {11, 62, 58}, {14, 63, 59}, {8, 64, 60}, {17, 65, 61}, {10, 58, 64}, {19, 60, 65}, {13, 59, 62}, {16, 61, 63}, {14, 15, 63}, {11, 12, 62}, {17, 18, 65}, {8, 9, 64}, {12, 13, 62}, {15, 16, 63}, {9, 10, 64}, {18, 19, 65}, {58, 62, 57}, {59, 57, 62}, {59, 63, 57}, {61, 57, 63}, {58, 57, 64}, {60, 64, 57}, {60, 57, 65}, {61, 65, 57}, {11, 58, 67}, {14, 59, 66}, {8, 60, 69}, {17, 61, 68}, {10, 67, 58}, {19, 69, 60}, {13, 66, 59}, {16, 68, 61}, {2, 68, 16}, {3, 66, 13}, {6, 69, 19}, {7, 67, 10}, {7, 11, 67}, {3, 14, 66}, {6, 8, 69}, {2, 17, 68}, {26, 75, 71}, {29, 76, 72}, {23, 77, 73}, {20, 78, 74}, {25, 71, 77}, {22, 73, 78}, {28, 72, 75}, {31, 74, 76}, {29, 30, 76}, {26, 27, 75}, {20, 21, 78}, {23, 24, 77}, {27, 28, 75}, {30, 31, 76}, {24, 25, 77}, {21, 22, 78}, {71, 75, 70}, {72, 70, 75}, {72, 76, 70}, {70, 76, 74}, {71, 70, 77}, {70, 73, 77}, {70, 78, 73}, {70, 74, 78}, {26, 71, 80}, {29, 72, 79}, {23, 73, 82}, {20, 74, 81}, {25, 80, 71}, {22, 82, 73}, {28, 79, 72}, {31, 81, 74}, {0, 81, 31}, {1, 79, 28}, {4, 82, 22}, {5, 80, 25}, {5, 26, 80}, {1, 29, 79}, {4, 23, 82}, {0, 20, 81}, {41, 84, 88}, {14, 89, 84}, {29, 86, 90}, {32, 91, 85}, {16, 85, 89}, {43, 88, 86}, {34, 87, 91}, {31, 90, 87}, {41, 88, 42}, {14, 15, 89}, {29, 90, 30}, {32, 33, 91}, {42, 88, 43}, {15, 16, 89}, {33, 34, 91}, {30, 90, 31}, {84, 89, 83}, {84, 83, 88}, {85, 83, 89}, {86, 88, 83}, {85, 91, 83}, {86, 83, 90}, {87, 90, 83}, {87, 83, 91}, {14, 84, 92}, {41, 92, 84}, {29, 94, 86}, {32, 85, 93}, {43, 86, 94}, {16, 93, 85}, {31, 87, 95}, {34, 95, 87}, {1, 43, 94}, {2, 93, 16}, {3, 92, 41}, {3, 14, 92}, {1, 94, 29}, {2, 32, 93}, {0, 31, 95}, {0, 95, 34}, {32, 97, 101}, {17, 102, 97}, {35, 103, 98}, {20, 99, 104}, {19, 98, 102}, {34, 101, 99}, {22, 104, 100}, {37, 100, 103}, {32, 101, 33}, {35, 36, 103}, {17, 18, 102}, {20, 104, 21}, {33, 101, 34}, {18, 19, 102}, {36, 37, 103}, {21, 104, 22}, {97, 96, 101}, {97, 102, 96}, {98, 96, 102}, {99, 101, 96}, {98, 103, 96}, {99, 96, 104}, {100, 96, 103}, {100, 104, 96}, {32, 105, 97}, {17, 97, 105}, {35, 98, 106}, {20, 107, 99}, {19, 106, 98}, {34, 99, 107}, {22, 100, 108}, {37, 108, 100}, {0, 34, 107}, {2, 105, 32}, {6, 106, 19}, {6, 35, 106}, {2, 17, 105}, {4, 108, 37}, {0, 107, 20}, {4, 22, 108}, {11, 110, 115}, {38, 114, 110}, {26, 116, 112}, {41, 111, 117}, {13, 115, 111}, {40, 112, 114}, {43, 117, 113}, {28, 113, 116}, {11, 115, 12}, {38, 39, 114}, {26, 27, 116}, {41, 117, 42}, {39, 40, 114}, {12, 115, 13}, {42, 117, 43}, {27, 28, 116}, {109, 110, 114}, {109, 115, 110}, {111, 115, 109}, {112, 109, 114}, {111, 109, 117}, {112, 116, 109}, {113, 109, 116}, {113, 117, 109}, {11, 118, 110}, {38, 110, 118}, {26, 112, 120}, {41, 119, 111}, {40, 120, 112}, {13, 111, 119}, {28, 121, 113}, {43, 113, 121}, {5, 120, 40}, {3, 13, 119}, {7, 38, 118}, {7, 118, 11}, {5, 26, 120}, {3, 119, 41}, {1, 121, 28}, {1, 43, 121}}
        ]
-        (not_ghost:tetrahedron_4) [
+        (not_ghost:_tetrahedron_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:tetrahedron_4
+        + id             : mesh:connectivities:_tetrahedron_4
         + size           : 341
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{124, 123, 125, 129}, {43, 86, 130, 88}, {70, 124, 129, 126}, {48, 77, 25, 52}, {31, 0, 81, 95}, {0, 107, 81, 95}, {126, 91, 87, 101}, {124, 70, 129, 125}, {43, 121, 113, 130}, {55, 100, 82, 108}, {100, 55, 82, 73}, {23, 55, 73, 82}, {71, 75, 125, 112}, {123, 44, 124, 125}, {43, 113, 117, 130}, {94, 43, 86, 130}, {122, 123, 128, 129}, {46, 10, 58, 50}, {99, 107, 81, 20}, {125, 112, 116, 109}, {79, 72, 28, 130}, {123, 122, 125, 129}, {67, 11, 7, 118}, {123, 127, 128, 129}, {124, 44, 49, 47}, {17, 65, 18, 102}, {76, 90, 30, 31}, {54, 10, 7, 67}, {9, 10, 50, 64}, {38, 54, 7, 118}, {123, 124, 127, 129}, {12, 115, 62, 13}, {97, 61, 102, 127}, {45, 53, 8, 69}, {38, 114, 39, 51}, {125, 75, 129, 116}, {122, 44, 123, 125}, {71, 70, 77, 124}, {114, 112, 125, 109}, {32, 93, 97, 85}, {53, 6, 8, 69}, {117, 128, 129, 109}, {63, 61, 16, 89}, {76, 90, 31, 74}, {61, 85, 16, 89}, {65, 123, 60, 98}, {55, 100, 47, 73}, {100, 47, 103, 37}, {96, 123, 103, 124}, {55, 23, 4, 82}, {78, 100, 22, 73}, {61, 85, 89, 127}, {61, 127, 89, 63}, {121, 43, 94, 130}, {108, 22, 82, 4}, {14, 92, 3, 66}, {78, 21, 104, 20}, {100, 78, 104, 124}, {14, 15, 89, 63}, {90, 126, 87, 74}, {90, 76, 126, 74}, {3, 13, 66, 119}, {108, 55, 4, 82}, {58, 11, 110, 62}, {11, 115, 110, 62}, {57, 123, 60, 65}, {122, 58, 110, 62}, {115, 122, 110, 62}, {117, 128, 88, 129}, {86, 129, 130, 88}, {70, 71, 125, 124}, {107, 0, 34, 95}, {122, 114, 125, 109}, {126, 86, 83, 129}, {92, 3, 66, 119}, {129, 86, 83, 88}, {128, 41, 119, 111}, {117, 128, 111, 41}, {11, 12, 115, 62}, {33, 32, 101, 91}, {70, 124, 126, 74}, {100, 124, 47, 73}, {96, 124, 126, 127}, {78, 70, 124, 73}, {90, 76, 30, 29}, {96, 123, 124, 127}, {15, 63, 16, 89}, {121, 79, 1, 28}, {76, 70, 126, 74}, {122, 114, 109, 110}, {129, 117, 130, 88}, {123, 44, 49, 124}, {26, 80, 5, 120}, {123, 65, 102, 98}, {57, 123, 127, 128}, {117, 128, 109, 111}, {70, 78, 124, 74}, {95, 107, 81, 87}, {55, 100, 37, 47}, {77, 24, 25, 52}, {100, 78, 22, 104}, {56, 71, 25, 48}, {14, 59, 89, 84}, {96, 100, 104, 124}, {2, 105, 68, 17}, {124, 123, 103, 49}, {123, 57, 60, 64}, {44, 124, 52, 47}, {71, 112, 48, 56}, {41, 117, 88, 42}, {99, 96, 126, 101}, {97, 85, 127, 101}, {34, 91, 101, 87}, {128, 127, 83, 129}, {126, 90, 83, 86}, {75, 71, 125, 70}, {99, 126, 74, 87}, {23, 55, 47, 73}, {100, 78, 124, 73}, {32, 91, 85, 101}, {57, 122, 62, 58}, {71, 77, 25, 48}, {70, 77, 124, 73}, {114, 38, 110, 51}, {114, 40, 39, 51}, {59, 14, 89, 63}, {53, 106, 35, 6}, {45, 123, 98, 60}, {99, 126, 87, 101}, {106, 53, 69, 6}, {46, 122, 110, 51}, {128, 122, 129, 109}, {124, 100, 47, 103}, {107, 99, 81, 87}, {125, 44, 48, 51}, {38, 46, 110, 51}, {44, 123, 49, 45}, {124, 47, 49, 103}, {36, 35, 49, 103}, {46, 122, 51, 44}, {54, 67, 7, 118}, {10, 64, 58, 50}, {122, 114, 51, 125}, {11, 58, 118, 67}, {44, 122, 51, 125}, {58, 11, 118, 110}, {22, 100, 82, 73}, {46, 122, 58, 110}, {108, 100, 82, 22}, {45, 60, 8, 50}, {99, 81, 74, 20}, {60, 45, 8, 69}, {75, 71, 26, 112}, {107, 0, 81, 20}, {126, 91, 83, 87}, {31, 90, 87, 74}, {34, 107, 95, 87}, {126, 96, 127, 101}, {91, 126, 127, 101}, {92, 14, 84, 66}, {105, 32, 2, 93}, {47, 49, 103, 37}, {115, 122, 109, 110}, {33, 91, 101, 34}, {49, 36, 103, 37}, {112, 71, 48, 125}, {59, 128, 89, 84}, {19, 65, 60, 98}, {124, 126, 127, 129}, {126, 91, 127, 83}, {31, 81, 74, 87}, {81, 99, 74, 87}, {117, 113, 129, 130}, {84, 128, 88, 41}, {113, 117, 129, 109}, {90, 76, 29, 86}, {65, 19, 102, 98}, {55, 100, 108, 37}, {96, 123, 102, 98}, {14, 59, 84, 66}, {100, 96, 103, 124}, {32, 105, 97, 93}, {99, 34, 101, 87}, {127, 126, 83, 129}, {94, 29, 130, 86}, {19, 106, 69, 6}, {128, 117, 88, 41}, {123, 96, 103, 98}, {46, 38, 110, 118}, {77, 23, 24, 52}, {19, 65, 102, 18}, {121, 79, 28, 130}, {46, 54, 38, 118}, {113, 121, 28, 130}, {108, 55, 37, 4}, {112, 75, 116, 26}, {56, 40, 5, 120}, {75, 27, 28, 116}, {127, 85, 89, 83}, {66, 59, 84, 128}, {85, 61, 97, 127}, {122, 125, 129, 109}, {26, 75, 116, 27}, {128, 129, 83, 88}, {122, 123, 57, 128}, {40, 112, 56, 48}, {80, 56, 25, 5}, {84, 128, 83, 88}, {91, 85, 127, 83}, {57, 61, 63, 127}, {123, 122, 64, 50}, {3, 92, 41, 119}, {44, 123, 45, 50}, {47, 124, 52, 73}, {79, 72, 130, 29}, {32, 85, 97, 101}, {2, 93, 16, 68}, {105, 93, 68, 97}, {97, 61, 68, 17}, {85, 91, 127, 101}, {96, 97, 127, 101}, {105, 97, 68, 17}, {124, 77, 52, 73}, {56, 71, 80, 25}, {60, 64, 8, 50}, {64, 9, 8, 50}, {65, 61, 102, 17}, {93, 105, 68, 2}, {61, 97, 102, 17}, {78, 21, 22, 104}, {23, 47, 52, 73}, {112, 40, 56, 120}, {80, 56, 5, 120}, {31, 95, 81, 87}, {99, 107, 34, 87}, {58, 46, 110, 118}, {43, 121, 94, 1}, {112, 75, 125, 116}, {122, 114, 110, 51}, {77, 23, 52, 73}, {90, 126, 83, 87}, {13, 66, 111, 59}, {111, 66, 13, 119}, {66, 128, 111, 59}, {111, 128, 66, 119}, {60, 50, 123, 64}, {123, 50, 60, 45}, {74, 104, 126, 99}, {104, 20, 74, 78}, {74, 20, 104, 99}, {45, 69, 106, 53}, {45, 106, 35, 53}, {35, 106, 45, 98}, {129, 116, 109, 125}, {109, 116, 129, 113}, {54, 10, 58, 46}, {58, 10, 54, 67}, {54, 58, 118, 46}, {118, 58, 54, 67}, {113, 129, 75, 116}, {28, 113, 75, 116}, {129, 75, 70, 72}, {129, 70, 75, 125}, {43, 117, 88, 130}, {88, 117, 43, 42}, {56, 112, 80, 71}, {56, 80, 112, 120}, {80, 112, 26, 71}, {80, 26, 112, 120}, {74, 124, 104, 78}, {74, 104, 124, 126}, {126, 104, 96, 99}, {96, 104, 126, 124}, {62, 128, 57, 59}, {57, 128, 62, 122}, {130, 29, 121, 79}, {121, 29, 130, 94}, {29, 1, 121, 79}, {121, 1, 29, 94}, {58, 50, 122, 46}, {122, 50, 58, 64}, {97, 93, 61, 85}, {97, 61, 93, 68}, {61, 93, 16, 85}, {61, 16, 93, 68}, {59, 89, 127, 63}, {127, 89, 59, 128}, {59, 127, 57, 63}, {57, 127, 59, 128}, {86, 76, 126, 90}, {86, 126, 76, 129}, {125, 51, 112, 114}, {112, 51, 125, 48}, {51, 40, 112, 114}, {112, 40, 51, 48}, {48, 124, 77, 52}, {44, 48, 124, 125}, {44, 124, 48, 52}, {61, 102, 123, 65}, {123, 102, 61, 127}, {61, 123, 57, 65}, {57, 123, 61, 127}, {106, 19, 60, 98}, {60, 19, 106, 69}, {106, 60, 45, 98}, {45, 60, 106, 69}, {122, 64, 57, 123}, {57, 64, 122, 58}, {76, 129, 70, 72}, {70, 129, 76, 126}, {84, 66, 119, 92}, {84, 119, 66, 128}, {41, 84, 119, 92}, {41, 119, 84, 128}, {124, 71, 48, 77}, {124, 48, 71, 125}, {128, 89, 83, 127}, {83, 89, 128, 84}, {111, 128, 62, 59}, {62, 111, 13, 115}, {13, 111, 62, 59}, {122, 50, 44, 46}, {44, 50, 122, 123}, {102, 127, 96, 97}, {96, 127, 102, 123}, {103, 123, 45, 49}, {103, 45, 123, 98}, {35, 103, 45, 49}, {35, 45, 103, 98}, {28, 130, 75, 113}, {75, 130, 28, 72}, {130, 129, 75, 113}, {75, 129, 130, 72}, {29, 130, 76, 72}, {76, 130, 29, 86}, {130, 129, 76, 72}, {76, 129, 130, 86}, {62, 111, 122, 128}, {122, 111, 62, 115}, {111, 109, 122, 128}, {122, 109, 111, 115}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 131
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 48
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
        ]
-        (not_ghost:triangle_3) [
+        (not_ghost:_triangle_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_3
+        + id             : mesh:connectivities:_triangle_3
         + size           : 240
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{45, 49, 35}, {45, 8, 50}, {46, 38, 51}, {23, 47, 52}, {46, 50, 10}, {37, 49, 47}, {25, 52, 48}, {40, 48, 51}, {35, 49, 36}, {38, 39, 51}, {8, 9, 50}, {23, 52, 24}, {36, 49, 37}, {9, 10, 50}, {39, 40, 51}, {24, 52, 25}, {45, 44, 49}, {45, 50, 44}, {46, 44, 50}, {44, 47, 49}, {46, 51, 44}, {44, 52, 47}, {44, 51, 48}, {44, 48, 52}, {45, 35, 53}, {45, 53, 8}, {46, 54, 38}, {23, 55, 47}, {46, 10, 54}, {37, 47, 55}, {25, 48, 56}, {40, 56, 48}, {4, 37, 55}, {6, 53, 35}, {7, 54, 10}, {7, 38, 54}, {6, 8, 53}, {5, 56, 40}, {4, 55, 23}, {5, 25, 56}, {11, 62, 58}, {14, 63, 59}, {8, 64, 60}, {17, 65, 61}, {10, 58, 64}, {19, 60, 65}, {13, 59, 62}, {16, 61, 63}, {14, 15, 63}, {11, 12, 62}, {17, 18, 65}, {8, 9, 64}, {12, 13, 62}, {15, 16, 63}, {9, 10, 64}, {18, 19, 65}, {58, 62, 57}, {59, 57, 62}, {59, 63, 57}, {61, 57, 63}, {58, 57, 64}, {60, 64, 57}, {60, 57, 65}, {61, 65, 57}, {11, 58, 67}, {14, 59, 66}, {8, 60, 69}, {17, 61, 68}, {10, 67, 58}, {19, 69, 60}, {13, 66, 59}, {16, 68, 61}, {2, 68, 16}, {3, 66, 13}, {6, 69, 19}, {7, 67, 10}, {7, 11, 67}, {3, 14, 66}, {6, 8, 69}, {2, 17, 68}, {26, 75, 71}, {29, 76, 72}, {23, 77, 73}, {20, 78, 74}, {25, 71, 77}, {22, 73, 78}, {28, 72, 75}, {31, 74, 76}, {29, 30, 76}, {26, 27, 75}, {20, 21, 78}, {23, 24, 77}, {27, 28, 75}, {30, 31, 76}, {24, 25, 77}, {21, 22, 78}, {71, 75, 70}, {72, 70, 75}, {72, 76, 70}, {70, 76, 74}, {71, 70, 77}, {70, 73, 77}, {70, 78, 73}, {70, 74, 78}, {26, 71, 80}, {29, 72, 79}, {23, 73, 82}, {20, 74, 81}, {25, 80, 71}, {22, 82, 73}, {28, 79, 72}, {31, 81, 74}, {0, 81, 31}, {1, 79, 28}, {4, 82, 22}, {5, 80, 25}, {5, 26, 80}, {1, 29, 79}, {4, 23, 82}, {0, 20, 81}, {41, 84, 88}, {14, 89, 84}, {29, 86, 90}, {32, 91, 85}, {16, 85, 89}, {43, 88, 86}, {34, 87, 91}, {31, 90, 87}, {41, 88, 42}, {14, 15, 89}, {29, 90, 30}, {32, 33, 91}, {42, 88, 43}, {15, 16, 89}, {33, 34, 91}, {30, 90, 31}, {84, 89, 83}, {84, 83, 88}, {85, 83, 89}, {86, 88, 83}, {85, 91, 83}, {86, 83, 90}, {87, 90, 83}, {87, 83, 91}, {14, 84, 92}, {41, 92, 84}, {29, 94, 86}, {32, 85, 93}, {43, 86, 94}, {16, 93, 85}, {31, 87, 95}, {34, 95, 87}, {1, 43, 94}, {2, 93, 16}, {3, 92, 41}, {3, 14, 92}, {1, 94, 29}, {2, 32, 93}, {0, 31, 95}, {0, 95, 34}, {32, 97, 101}, {17, 102, 97}, {35, 103, 98}, {20, 99, 104}, {19, 98, 102}, {34, 101, 99}, {22, 104, 100}, {37, 100, 103}, {32, 101, 33}, {35, 36, 103}, {17, 18, 102}, {20, 104, 21}, {33, 101, 34}, {18, 19, 102}, {36, 37, 103}, {21, 104, 22}, {97, 96, 101}, {97, 102, 96}, {98, 96, 102}, {99, 101, 96}, {98, 103, 96}, {99, 96, 104}, {100, 96, 103}, {100, 104, 96}, {32, 105, 97}, {17, 97, 105}, {35, 98, 106}, {20, 107, 99}, {19, 106, 98}, {34, 99, 107}, {22, 100, 108}, {37, 108, 100}, {0, 34, 107}, {2, 105, 32}, {6, 106, 19}, {6, 35, 106}, {2, 17, 105}, {4, 108, 37}, {0, 107, 20}, {4, 22, 108}, {11, 110, 115}, {38, 114, 110}, {26, 116, 112}, {41, 111, 117}, {13, 115, 111}, {40, 112, 114}, {43, 117, 113}, {28, 113, 116}, {11, 115, 12}, {38, 39, 114}, {26, 27, 116}, {41, 117, 42}, {39, 40, 114}, {12, 115, 13}, {42, 117, 43}, {27, 28, 116}, {109, 110, 114}, {109, 115, 110}, {111, 115, 109}, {112, 109, 114}, {111, 109, 117}, {112, 116, 109}, {113, 109, 116}, {113, 117, 109}, {11, 118, 110}, {38, 110, 118}, {26, 112, 120}, {41, 119, 111}, {40, 120, 112}, {13, 111, 119}, {28, 121, 113}, {43, 113, 121}, {5, 120, 40}, {3, 13, 119}, {7, 38, 118}, {7, 118, 11}, {5, 26, 120}, {3, 119, 41}, {1, 121, 28}, {1, 43, 121}}
        ]
-        (not_ghost:tetrahedron_4) [
+        (not_ghost:_tetrahedron_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:tetrahedron_4
+        + id             : mesh:connectivities:_tetrahedron_4
         + size           : 341
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{124, 123, 125, 129}, {43, 86, 130, 88}, {70, 124, 129, 126}, {48, 77, 25, 52}, {31, 0, 81, 95}, {0, 107, 81, 95}, {126, 91, 87, 101}, {124, 70, 129, 125}, {43, 121, 113, 130}, {55, 100, 82, 108}, {100, 55, 82, 73}, {23, 55, 73, 82}, {71, 75, 125, 112}, {123, 44, 124, 125}, {43, 113, 117, 130}, {94, 43, 86, 130}, {122, 123, 128, 129}, {46, 10, 58, 50}, {99, 107, 81, 20}, {125, 112, 116, 109}, {79, 72, 28, 130}, {123, 122, 125, 129}, {67, 11, 7, 118}, {123, 127, 128, 129}, {124, 44, 49, 47}, {17, 65, 18, 102}, {76, 90, 30, 31}, {54, 10, 7, 67}, {9, 10, 50, 64}, {38, 54, 7, 118}, {123, 124, 127, 129}, {12, 115, 62, 13}, {97, 61, 102, 127}, {45, 53, 8, 69}, {38, 114, 39, 51}, {125, 75, 129, 116}, {122, 44, 123, 125}, {71, 70, 77, 124}, {114, 112, 125, 109}, {32, 93, 97, 85}, {53, 6, 8, 69}, {117, 128, 129, 109}, {63, 61, 16, 89}, {76, 90, 31, 74}, {61, 85, 16, 89}, {65, 123, 60, 98}, {55, 100, 47, 73}, {100, 47, 103, 37}, {96, 123, 103, 124}, {55, 23, 4, 82}, {78, 100, 22, 73}, {61, 85, 89, 127}, {61, 127, 89, 63}, {121, 43, 94, 130}, {108, 22, 82, 4}, {14, 92, 3, 66}, {78, 21, 104, 20}, {100, 78, 104, 124}, {14, 15, 89, 63}, {90, 126, 87, 74}, {90, 76, 126, 74}, {3, 13, 66, 119}, {108, 55, 4, 82}, {58, 11, 110, 62}, {11, 115, 110, 62}, {57, 123, 60, 65}, {122, 58, 110, 62}, {115, 122, 110, 62}, {117, 128, 88, 129}, {86, 129, 130, 88}, {70, 71, 125, 124}, {107, 0, 34, 95}, {122, 114, 125, 109}, {126, 86, 83, 129}, {92, 3, 66, 119}, {129, 86, 83, 88}, {128, 41, 119, 111}, {117, 128, 111, 41}, {11, 12, 115, 62}, {33, 32, 101, 91}, {70, 124, 126, 74}, {100, 124, 47, 73}, {96, 124, 126, 127}, {78, 70, 124, 73}, {90, 76, 30, 29}, {96, 123, 124, 127}, {15, 63, 16, 89}, {121, 79, 1, 28}, {76, 70, 126, 74}, {122, 114, 109, 110}, {129, 117, 130, 88}, {123, 44, 49, 124}, {26, 80, 5, 120}, {123, 65, 102, 98}, {57, 123, 127, 128}, {117, 128, 109, 111}, {70, 78, 124, 74}, {95, 107, 81, 87}, {55, 100, 37, 47}, {77, 24, 25, 52}, {100, 78, 22, 104}, {56, 71, 25, 48}, {14, 59, 89, 84}, {96, 100, 104, 124}, {2, 105, 68, 17}, {124, 123, 103, 49}, {123, 57, 60, 64}, {44, 124, 52, 47}, {71, 112, 48, 56}, {41, 117, 88, 42}, {99, 96, 126, 101}, {97, 85, 127, 101}, {34, 91, 101, 87}, {128, 127, 83, 129}, {126, 90, 83, 86}, {75, 71, 125, 70}, {99, 126, 74, 87}, {23, 55, 47, 73}, {100, 78, 124, 73}, {32, 91, 85, 101}, {57, 122, 62, 58}, {71, 77, 25, 48}, {70, 77, 124, 73}, {114, 38, 110, 51}, {114, 40, 39, 51}, {59, 14, 89, 63}, {53, 106, 35, 6}, {45, 123, 98, 60}, {99, 126, 87, 101}, {106, 53, 69, 6}, {46, 122, 110, 51}, {128, 122, 129, 109}, {124, 100, 47, 103}, {107, 99, 81, 87}, {125, 44, 48, 51}, {38, 46, 110, 51}, {44, 123, 49, 45}, {124, 47, 49, 103}, {36, 35, 49, 103}, {46, 122, 51, 44}, {54, 67, 7, 118}, {10, 64, 58, 50}, {122, 114, 51, 125}, {11, 58, 118, 67}, {44, 122, 51, 125}, {58, 11, 118, 110}, {22, 100, 82, 73}, {46, 122, 58, 110}, {108, 100, 82, 22}, {45, 60, 8, 50}, {99, 81, 74, 20}, {60, 45, 8, 69}, {75, 71, 26, 112}, {107, 0, 81, 20}, {126, 91, 83, 87}, {31, 90, 87, 74}, {34, 107, 95, 87}, {126, 96, 127, 101}, {91, 126, 127, 101}, {92, 14, 84, 66}, {105, 32, 2, 93}, {47, 49, 103, 37}, {115, 122, 109, 110}, {33, 91, 101, 34}, {49, 36, 103, 37}, {112, 71, 48, 125}, {59, 128, 89, 84}, {19, 65, 60, 98}, {124, 126, 127, 129}, {126, 91, 127, 83}, {31, 81, 74, 87}, {81, 99, 74, 87}, {117, 113, 129, 130}, {84, 128, 88, 41}, {113, 117, 129, 109}, {90, 76, 29, 86}, {65, 19, 102, 98}, {55, 100, 108, 37}, {96, 123, 102, 98}, {14, 59, 84, 66}, {100, 96, 103, 124}, {32, 105, 97, 93}, {99, 34, 101, 87}, {127, 126, 83, 129}, {94, 29, 130, 86}, {19, 106, 69, 6}, {128, 117, 88, 41}, {123, 96, 103, 98}, {46, 38, 110, 118}, {77, 23, 24, 52}, {19, 65, 102, 18}, {121, 79, 28, 130}, {46, 54, 38, 118}, {113, 121, 28, 130}, {108, 55, 37, 4}, {112, 75, 116, 26}, {56, 40, 5, 120}, {75, 27, 28, 116}, {127, 85, 89, 83}, {66, 59, 84, 128}, {85, 61, 97, 127}, {122, 125, 129, 109}, {26, 75, 116, 27}, {128, 129, 83, 88}, {122, 123, 57, 128}, {40, 112, 56, 48}, {80, 56, 25, 5}, {84, 128, 83, 88}, {91, 85, 127, 83}, {57, 61, 63, 127}, {123, 122, 64, 50}, {3, 92, 41, 119}, {44, 123, 45, 50}, {47, 124, 52, 73}, {79, 72, 130, 29}, {32, 85, 97, 101}, {2, 93, 16, 68}, {105, 93, 68, 97}, {97, 61, 68, 17}, {85, 91, 127, 101}, {96, 97, 127, 101}, {105, 97, 68, 17}, {124, 77, 52, 73}, {56, 71, 80, 25}, {60, 64, 8, 50}, {64, 9, 8, 50}, {65, 61, 102, 17}, {93, 105, 68, 2}, {61, 97, 102, 17}, {78, 21, 22, 104}, {23, 47, 52, 73}, {112, 40, 56, 120}, {80, 56, 5, 120}, {31, 95, 81, 87}, {99, 107, 34, 87}, {58, 46, 110, 118}, {43, 121, 94, 1}, {112, 75, 125, 116}, {122, 114, 110, 51}, {77, 23, 52, 73}, {90, 126, 83, 87}, {13, 66, 111, 59}, {111, 66, 13, 119}, {66, 128, 111, 59}, {111, 128, 66, 119}, {60, 50, 123, 64}, {123, 50, 60, 45}, {74, 104, 126, 99}, {104, 20, 74, 78}, {74, 20, 104, 99}, {45, 69, 106, 53}, {45, 106, 35, 53}, {35, 106, 45, 98}, {129, 116, 109, 125}, {109, 116, 129, 113}, {54, 10, 58, 46}, {58, 10, 54, 67}, {54, 58, 118, 46}, {118, 58, 54, 67}, {113, 129, 75, 116}, {28, 113, 75, 116}, {129, 75, 70, 72}, {129, 70, 75, 125}, {43, 117, 88, 130}, {88, 117, 43, 42}, {56, 112, 80, 71}, {56, 80, 112, 120}, {80, 112, 26, 71}, {80, 26, 112, 120}, {74, 124, 104, 78}, {74, 104, 124, 126}, {126, 104, 96, 99}, {96, 104, 126, 124}, {62, 128, 57, 59}, {57, 128, 62, 122}, {130, 29, 121, 79}, {121, 29, 130, 94}, {29, 1, 121, 79}, {121, 1, 29, 94}, {58, 50, 122, 46}, {122, 50, 58, 64}, {97, 93, 61, 85}, {97, 61, 93, 68}, {61, 93, 16, 85}, {61, 16, 93, 68}, {59, 89, 127, 63}, {127, 89, 59, 128}, {59, 127, 57, 63}, {57, 127, 59, 128}, {86, 76, 126, 90}, {86, 126, 76, 129}, {125, 51, 112, 114}, {112, 51, 125, 48}, {51, 40, 112, 114}, {112, 40, 51, 48}, {48, 124, 77, 52}, {44, 48, 124, 125}, {44, 124, 48, 52}, {61, 102, 123, 65}, {123, 102, 61, 127}, {61, 123, 57, 65}, {57, 123, 61, 127}, {106, 19, 60, 98}, {60, 19, 106, 69}, {106, 60, 45, 98}, {45, 60, 106, 69}, {122, 64, 57, 123}, {57, 64, 122, 58}, {76, 129, 70, 72}, {70, 129, 76, 126}, {84, 66, 119, 92}, {84, 119, 66, 128}, {41, 84, 119, 92}, {41, 119, 84, 128}, {124, 71, 48, 77}, {124, 48, 71, 125}, {128, 89, 83, 127}, {83, 89, 128, 84}, {111, 128, 62, 59}, {62, 111, 13, 115}, {13, 111, 62, 59}, {122, 50, 44, 46}, {44, 50, 122, 123}, {102, 127, 96, 97}, {96, 127, 102, 123}, {103, 123, 45, 49}, {103, 45, 123, 98}, {35, 103, 45, 49}, {35, 45, 103, 98}, {28, 130, 75, 113}, {75, 130, 28, 72}, {130, 129, 75, 113}, {75, 129, 130, 72}, {29, 130, 76, 72}, {76, 130, 29, 86}, {130, 129, 76, 72}, {76, 129, 130, 86}, {62, 111, 122, 128}, {122, 111, 62, 115}, {111, 109, 122, 128}, {122, 109, 111, 115}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 8
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_2
+   + id             : mesh:connectivities:_segment_2
    + size           : 48
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:tetrahedron_4
+   + id             : mesh:connectivities:_tetrahedron_4
    + size           : 341
    + nb_component   : 4
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{124, 123, 125, 129}, {43, 86, 130, 88}, {70, 124, 129, 126}, {48, 77, 25, 52}, {31, 0, 81, 95}, {0, 107, 81, 95}, {126, 91, 87, 101}, {124, 70, 129, 125}, {43, 121, 113, 130}, {55, 100, 82, 108}, {100, 55, 82, 73}, {23, 55, 73, 82}, {71, 75, 125, 112}, {123, 44, 124, 125}, {43, 113, 117, 130}, {94, 43, 86, 130}, {122, 123, 128, 129}, {46, 10, 58, 50}, {99, 107, 81, 20}, {125, 112, 116, 109}, {79, 72, 28, 130}, {123, 122, 125, 129}, {67, 11, 7, 118}, {123, 127, 128, 129}, {124, 44, 49, 47}, {17, 65, 18, 102}, {76, 90, 30, 31}, {54, 10, 7, 67}, {9, 10, 50, 64}, {38, 54, 7, 118}, {123, 124, 127, 129}, {12, 115, 62, 13}, {97, 61, 102, 127}, {45, 53, 8, 69}, {38, 114, 39, 51}, {125, 75, 129, 116}, {122, 44, 123, 125}, {71, 70, 77, 124}, {114, 112, 125, 109}, {32, 93, 97, 85}, {53, 6, 8, 69}, {117, 128, 129, 109}, {63, 61, 16, 89}, {76, 90, 31, 74}, {61, 85, 16, 89}, {65, 123, 60, 98}, {55, 100, 47, 73}, {100, 47, 103, 37}, {96, 123, 103, 124}, {55, 23, 4, 82}, {78, 100, 22, 73}, {61, 85, 89, 127}, {61, 127, 89, 63}, {121, 43, 94, 130}, {108, 22, 82, 4}, {14, 92, 3, 66}, {78, 21, 104, 20}, {100, 78, 104, 124}, {14, 15, 89, 63}, {90, 126, 87, 74}, {90, 76, 126, 74}, {3, 13, 66, 119}, {108, 55, 4, 82}, {58, 11, 110, 62}, {11, 115, 110, 62}, {57, 123, 60, 65}, {122, 58, 110, 62}, {115, 122, 110, 62}, {117, 128, 88, 129}, {86, 129, 130, 88}, {70, 71, 125, 124}, {107, 0, 34, 95}, {122, 114, 125, 109}, {126, 86, 83, 129}, {92, 3, 66, 119}, {129, 86, 83, 88}, {128, 41, 119, 111}, {117, 128, 111, 41}, {11, 12, 115, 62}, {33, 32, 101, 91}, {70, 124, 126, 74}, {100, 124, 47, 73}, {96, 124, 126, 127}, {78, 70, 124, 73}, {90, 76, 30, 29}, {96, 123, 124, 127}, {15, 63, 16, 89}, {121, 79, 1, 28}, {76, 70, 126, 74}, {122, 114, 109, 110}, {129, 117, 130, 88}, {123, 44, 49, 124}, {26, 80, 5, 120}, {123, 65, 102, 98}, {57, 123, 127, 128}, {117, 128, 109, 111}, {70, 78, 124, 74}, {95, 107, 81, 87}, {55, 100, 37, 47}, {77, 24, 25, 52}, {100, 78, 22, 104}, {56, 71, 25, 48}, {14, 59, 89, 84}, {96, 100, 104, 124}, {2, 105, 68, 17}, {124, 123, 103, 49}, {123, 57, 60, 64}, {44, 124, 52, 47}, {71, 112, 48, 56}, {41, 117, 88, 42}, {99, 96, 126, 101}, {97, 85, 127, 101}, {34, 91, 101, 87}, {128, 127, 83, 129}, {126, 90, 83, 86}, {75, 71, 125, 70}, {99, 126, 74, 87}, {23, 55, 47, 73}, {100, 78, 124, 73}, {32, 91, 85, 101}, {57, 122, 62, 58}, {71, 77, 25, 48}, {70, 77, 124, 73}, {114, 38, 110, 51}, {114, 40, 39, 51}, {59, 14, 89, 63}, {53, 106, 35, 6}, {45, 123, 98, 60}, {99, 126, 87, 101}, {106, 53, 69, 6}, {46, 122, 110, 51}, {128, 122, 129, 109}, {124, 100, 47, 103}, {107, 99, 81, 87}, {125, 44, 48, 51}, {38, 46, 110, 51}, {44, 123, 49, 45}, {124, 47, 49, 103}, {36, 35, 49, 103}, {46, 122, 51, 44}, {54, 67, 7, 118}, {10, 64, 58, 50}, {122, 114, 51, 125}, {11, 58, 118, 67}, {44, 122, 51, 125}, {58, 11, 118, 110}, {22, 100, 82, 73}, {46, 122, 58, 110}, {108, 100, 82, 22}, {45, 60, 8, 50}, {99, 81, 74, 20}, {60, 45, 8, 69}, {75, 71, 26, 112}, {107, 0, 81, 20}, {126, 91, 83, 87}, {31, 90, 87, 74}, {34, 107, 95, 87}, {126, 96, 127, 101}, {91, 126, 127, 101}, {92, 14, 84, 66}, {105, 32, 2, 93}, {47, 49, 103, 37}, {115, 122, 109, 110}, {33, 91, 101, 34}, {49, 36, 103, 37}, {112, 71, 48, 125}, {59, 128, 89, 84}, {19, 65, 60, 98}, {124, 126, 127, 129}, {126, 91, 127, 83}, {31, 81, 74, 87}, {81, 99, 74, 87}, {117, 113, 129, 130}, {84, 128, 88, 41}, {113, 117, 129, 109}, {90, 76, 29, 86}, {65, 19, 102, 98}, {55, 100, 108, 37}, {96, 123, 102, 98}, {14, 59, 84, 66}, {100, 96, 103, 124}, {32, 105, 97, 93}, {99, 34, 101, 87}, {127, 126, 83, 129}, {94, 29, 130, 86}, {19, 106, 69, 6}, {128, 117, 88, 41}, {123, 96, 103, 98}, {46, 38, 110, 118}, {77, 23, 24, 52}, {19, 65, 102, 18}, {121, 79, 28, 130}, {46, 54, 38, 118}, {113, 121, 28, 130}, {108, 55, 37, 4}, {112, 75, 116, 26}, {56, 40, 5, 120}, {75, 27, 28, 116}, {127, 85, 89, 83}, {66, 59, 84, 128}, {85, 61, 97, 127}, {122, 125, 129, 109}, {26, 75, 116, 27}, {128, 129, 83, 88}, {122, 123, 57, 128}, {40, 112, 56, 48}, {80, 56, 25, 5}, {84, 128, 83, 88}, {91, 85, 127, 83}, {57, 61, 63, 127}, {123, 122, 64, 50}, {3, 92, 41, 119}, {44, 123, 45, 50}, {47, 124, 52, 73}, {79, 72, 130, 29}, {32, 85, 97, 101}, {2, 93, 16, 68}, {105, 93, 68, 97}, {97, 61, 68, 17}, {85, 91, 127, 101}, {96, 97, 127, 101}, {105, 97, 68, 17}, {124, 77, 52, 73}, {56, 71, 80, 25}, {60, 64, 8, 50}, {64, 9, 8, 50}, {65, 61, 102, 17}, {93, 105, 68, 2}, {61, 97, 102, 17}, {78, 21, 22, 104}, {23, 47, 52, 73}, {112, 40, 56, 120}, {80, 56, 5, 120}, {31, 95, 81, 87}, {99, 107, 34, 87}, {58, 46, 110, 118}, {43, 121, 94, 1}, {112, 75, 125, 116}, {122, 114, 110, 51}, {77, 23, 52, 73}, {90, 126, 83, 87}, {13, 66, 111, 59}, {111, 66, 13, 119}, {66, 128, 111, 59}, {111, 128, 66, 119}, {60, 50, 123, 64}, {123, 50, 60, 45}, {74, 104, 126, 99}, {104, 20, 74, 78}, {74, 20, 104, 99}, {45, 69, 106, 53}, {45, 106, 35, 53}, {35, 106, 45, 98}, {129, 116, 109, 125}, {109, 116, 129, 113}, {54, 10, 58, 46}, {58, 10, 54, 67}, {54, 58, 118, 46}, {118, 58, 54, 67}, {113, 129, 75, 116}, {28, 113, 75, 116}, {129, 75, 70, 72}, {129, 70, 75, 125}, {43, 117, 88, 130}, {88, 117, 43, 42}, {56, 112, 80, 71}, {56, 80, 112, 120}, {80, 112, 26, 71}, {80, 26, 112, 120}, {74, 124, 104, 78}, {74, 104, 124, 126}, {126, 104, 96, 99}, {96, 104, 126, 124}, {62, 128, 57, 59}, {57, 128, 62, 122}, {130, 29, 121, 79}, {121, 29, 130, 94}, {29, 1, 121, 79}, {121, 1, 29, 94}, {58, 50, 122, 46}, {122, 50, 58, 64}, {97, 93, 61, 85}, {97, 61, 93, 68}, {61, 93, 16, 85}, {61, 16, 93, 68}, {59, 89, 127, 63}, {127, 89, 59, 128}, {59, 127, 57, 63}, {57, 127, 59, 128}, {86, 76, 126, 90}, {86, 126, 76, 129}, {125, 51, 112, 114}, {112, 51, 125, 48}, {51, 40, 112, 114}, {112, 40, 51, 48}, {48, 124, 77, 52}, {44, 48, 124, 125}, {44, 124, 48, 52}, {61, 102, 123, 65}, {123, 102, 61, 127}, {61, 123, 57, 65}, {57, 123, 61, 127}, {106, 19, 60, 98}, {60, 19, 106, 69}, {106, 60, 45, 98}, {45, 60, 106, 69}, {122, 64, 57, 123}, {57, 64, 122, 58}, {76, 129, 70, 72}, {70, 129, 76, 126}, {84, 66, 119, 92}, {84, 119, 66, 128}, {41, 84, 119, 92}, {41, 119, 84, 128}, {124, 71, 48, 77}, {124, 48, 71, 125}, {128, 89, 83, 127}, {83, 89, 128, 84}, {111, 128, 62, 59}, {62, 111, 13, 115}, {13, 111, 62, 59}, {122, 50, 44, 46}, {44, 50, 122, 123}, {102, 127, 96, 97}, {96, 127, 102, 123}, {103, 123, 45, 49}, {103, 45, 123, 98}, {35, 103, 45, 49}, {35, 45, 103, 98}, {28, 130, 75, 113}, {75, 130, 28, 72}, {130, 129, 75, 113}, {75, 129, 130, 72}, {29, 130, 76, 72}, {76, 130, 29, 86}, {130, 129, 76, 72}, {76, 129, 130, 86}, {62, 111, 122, 128}, {122, 111, 62, 115}, {111, 109, 122, 128}, {122, 109, 111, 115}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:triangle_3
+   + id             : mesh:connectivities:_triangle_3
    + size           : 240
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 23kB
    + values         : {{45, 49, 35}, {45, 8, 50}, {46, 38, 51}, {23, 47, 52}, {46, 50, 10}, {37, 49, 47}, {25, 52, 48}, {40, 48, 51}, {35, 49, 36}, {38, 39, 51}, {8, 9, 50}, {23, 52, 24}, {36, 49, 37}, {9, 10, 50}, {39, 40, 51}, {24, 52, 25}, {45, 44, 49}, {45, 50, 44}, {46, 44, 50}, {44, 47, 49}, {46, 51, 44}, {44, 52, 47}, {44, 51, 48}, {44, 48, 52}, {45, 35, 53}, {45, 53, 8}, {46, 54, 38}, {23, 55, 47}, {46, 10, 54}, {37, 47, 55}, {25, 48, 56}, {40, 56, 48}, {4, 37, 55}, {6, 53, 35}, {7, 54, 10}, {7, 38, 54}, {6, 8, 53}, {5, 56, 40}, {4, 55, 23}, {5, 25, 56}, {11, 62, 58}, {14, 63, 59}, {8, 64, 60}, {17, 65, 61}, {10, 58, 64}, {19, 60, 65}, {13, 59, 62}, {16, 61, 63}, {14, 15, 63}, {11, 12, 62}, {17, 18, 65}, {8, 9, 64}, {12, 13, 62}, {15, 16, 63}, {9, 10, 64}, {18, 19, 65}, {58, 62, 57}, {59, 57, 62}, {59, 63, 57}, {61, 57, 63}, {58, 57, 64}, {60, 64, 57}, {60, 57, 65}, {61, 65, 57}, {11, 58, 67}, {14, 59, 66}, {8, 60, 69}, {17, 61, 68}, {10, 67, 58}, {19, 69, 60}, {13, 66, 59}, {16, 68, 61}, {2, 68, 16}, {3, 66, 13}, {6, 69, 19}, {7, 67, 10}, {7, 11, 67}, {3, 14, 66}, {6, 8, 69}, {2, 17, 68}, {26, 75, 71}, {29, 76, 72}, {23, 77, 73}, {20, 78, 74}, {25, 71, 77}, {22, 73, 78}, {28, 72, 75}, {31, 74, 76}, {29, 30, 76}, {26, 27, 75}, {20, 21, 78}, {23, 24, 77}, {27, 28, 75}, {30, 31, 76}, {24, 25, 77}, {21, 22, 78}, {71, 75, 70}, {72, 70, 75}, {72, 76, 70}, {70, 76, 74}, {71, 70, 77}, {70, 73, 77}, {70, 78, 73}, {70, 74, 78}, {26, 71, 80}, {29, 72, 79}, {23, 73, 82}, {20, 74, 81}, {25, 80, 71}, {22, 82, 73}, {28, 79, 72}, {31, 81, 74}, {0, 81, 31}, {1, 79, 28}, {4, 82, 22}, {5, 80, 25}, {5, 26, 80}, {1, 29, 79}, {4, 23, 82}, {0, 20, 81}, {41, 84, 88}, {14, 89, 84}, {29, 86, 90}, {32, 91, 85}, {16, 85, 89}, {43, 88, 86}, {34, 87, 91}, {31, 90, 87}, {41, 88, 42}, {14, 15, 89}, {29, 90, 30}, {32, 33, 91}, {42, 88, 43}, {15, 16, 89}, {33, 34, 91}, {30, 90, 31}, {84, 89, 83}, {84, 83, 88}, {85, 83, 89}, {86, 88, 83}, {85, 91, 83}, {86, 83, 90}, {87, 90, 83}, {87, 83, 91}, {14, 84, 92}, {41, 92, 84}, {29, 94, 86}, {32, 85, 93}, {43, 86, 94}, {16, 93, 85}, {31, 87, 95}, {34, 95, 87}, {1, 43, 94}, {2, 93, 16}, {3, 92, 41}, {3, 14, 92}, {1, 94, 29}, {2, 32, 93}, {0, 31, 95}, {0, 95, 34}, {32, 97, 101}, {17, 102, 97}, {35, 103, 98}, {20, 99, 104}, {19, 98, 102}, {34, 101, 99}, {22, 104, 100}, {37, 100, 103}, {32, 101, 33}, {35, 36, 103}, {17, 18, 102}, {20, 104, 21}, {33, 101, 34}, {18, 19, 102}, {36, 37, 103}, {21, 104, 22}, {97, 96, 101}, {97, 102, 96}, {98, 96, 102}, {99, 101, 96}, {98, 103, 96}, {99, 96, 104}, {100, 96, 103}, {100, 104, 96}, {32, 105, 97}, {17, 97, 105}, {35, 98, 106}, {20, 107, 99}, {19, 106, 98}, {34, 99, 107}, {22, 100, 108}, {37, 108, 100}, {0, 34, 107}, {2, 105, 32}, {6, 106, 19}, {6, 35, 106}, {2, 17, 105}, {4, 108, 37}, {0, 107, 20}, {4, 22, 108}, {11, 110, 115}, {38, 114, 110}, {26, 116, 112}, {41, 111, 117}, {13, 115, 111}, {40, 112, 114}, {43, 117, 113}, {28, 113, 116}, {11, 115, 12}, {38, 39, 114}, {26, 27, 116}, {41, 117, 42}, {39, 40, 114}, {12, 115, 13}, {42, 117, 43}, {27, 28, 116}, {109, 110, 114}, {109, 115, 110}, {111, 115, 109}, {112, 109, 114}, {111, 109, 117}, {112, 116, 109}, {113, 109, 116}, {113, 117, 109}, {11, 118, 110}, {38, 110, 118}, {26, 112, 120}, {41, 119, 111}, {40, 120, 112}, {13, 111, 119}, {28, 121, 113}, {43, 113, 121}, {5, 120, 40}, {3, 13, 119}, {7, 38, 118}, {7, 118, 11}, {5, 26, 120}, {3, 119, 41}, {1, 121, 28}, {1, 43, 121}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 131
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:tetrahedron_4
+   + id             : my_fem:jacobians:_tetrahedron_4
    + size           : 341
    + nb_component   : 1
    + allocated size : 341
    + memory size    : 2.7kB
    + values         : {{0.00479073}, {0.00199542}, {0.00508286}, {0.00204347}, {0.00083906}, {0.00095268}, {0.00292548}, {0.00493659}, {0.00105059}, {0.00091729}, {0.00180199}, {0.000808556}, {0.00355095}, {0.00749049}, {0.00197348}, {0.00106177}, {0.00690231}, {0.00297989}, {0.000808006}, {0.0026847}, {0.00117185}, {0.00474423}, {0.00083918}, {0.00644814}, {0.00470655}, {0.00151785}, {0.00151785}, {0.00083906}, {0.00151591}, {0.00083918}, {0.00487222}, {0.00151892}, {0.00469074}, {0.000807775}, {0.00151892}, {0.00334996}, {0.00767187}, {0.00381537}, {0.00269174}, {0.00158543}, {0.00083906}, {0.00445593}, {0.0020418}, {0.00204272}, {0.00297957}, {0.00490403}, {0.00353679}, {0.00297957}, {0.00693536}, {0.000839299}, {0.002982}, {0.00359869}, {0.00246606}, {0.000800576}, {0.000839299}, {0.00083906}, {0.00152021}, {0.00375734}, {0.00151785}, {0.00372221}, {0.00255222}, {0.00083906}, {0.000952816}, {0.00298087}, {0.00204311}, {0.0037801}, {0.00363992}, {0.00249551}, {0.00382669}, {0.0020549}, {0.00422323}, {0.00083906}, {0.00460922}, {0.00348647}, {0.000952544}, {0.00386563}, {0.00134104}, {0.00252173}, {0.00151892}, {0.00151785}, {0.00426036}, {0.00793308}, {0.00820365}, {0.00385292}, {0.00151785}, {0.00860188}, {0.00151785}, {0.00083906}, {0.00383935}, {0.00327077}, {0.00361116}, {0.00679806}, {0.00083906}, {0.00336058}, {0.00695467}, {0.0026847}, {0.00385292}, {0.000917159}, {0.00158651}, {0.00152021}, {0.00204498}, {0.00158671}, {0.00297957}, {0.00483251}, {0.00083906}, {0.00645464}, {0.0037801}, {0.00472318}, {0.00353524}, {0.00151688}, {0.00483251}, {0.00421987}, {0.0020418}, {0.00523002}, {0.00282642}, {0.00380534}, {0.00581509}, {0.00158671}, {0.00548144}, {0.0020418}, {0.00365422}, {0.00297867}, {0.00383935}, {0.00204311}, {0.00151892}, {0.0020418}, {0.00083906}, {0.00695993}, {0.00426911}, {0.000952544}, {0.00380007}, {0.00640143}, {0.00595062}, {0.00180012}, {0.00470655}, {0.00297737}, {0.00432043}, {0.00408022}, {0.00151785}, {0.00394217}, {0.00095268}, {0.0020392}, {0.00491487}, {0.000807891}, {0.00673925}, {0.00158661}, {0.00158671}, {0.00511093}, {0.000808006}, {0.00297989}, {0.00158671}, {0.00158543}, {0.00297989}, {0.000839299}, {0.00282642}, {0.00297957}, {0.000807775}, {0.00743876}, {0.00520896}, {0.000807775}, {0.00083906}, {0.00204272}, {0.00327077}, {0.00151785}, {0.00151785}, {0.00550306}, {0.00283408}, {0.00297957}, {0.00500828}, {0.00435075}, {0.00158651}, {0.00353524}, {0.00207381}, {0.00264971}, {0.00361055}, {0.0020418}, {0.0020418}, {0.000807775}, {0.0043829}, {0.00158543}, {0.00483251}, {0.000807775}, {0.00297957}, {0.00403452}, {0.00106177}, {0.00083906}, {0.00339716}, {0.0043829}, {0.00158661}, {0.00152021}, {0.00151785}, {0.00078511}, {0.000807891}, {0.00105059}, {0.00083906}, {0.00204038}, {0.00083906}, {0.00151494}, {0.00282642}, {0.00212821}, {0.005658}, {0.0043455}, {0.00151494}, {0.00474239}, {0.00744101}, {0.00158651}, {0.000839299}, {0.00282642}, {0.00282642}, {0.00369139}, {0.00530618}, {0.00083906}, {0.00430907}, {0.00540547}, {0.00117185}, {0.00297957}, {0.00083906}, {0.000917028}, {0.00158543}, {0.00289174}, {0.00483251}, {0.000807775}, {0.00370776}, {0.000808006}, {0.0020392}, {0.00151591}, {0.0020418}, {0.000952544}, {0.00297957}, {0.00152021}, {0.002982}, {0.000807775}, {0.00095268}, {0.000807775}, {0.00158543}, {0.00353524}, {0.00083906}, {0.00243234}, {0.00260951}, {0.0020459}, {0.00282642}, {0.00158543}, {0.000807775}, {0.00197474}, {0.00100612}, {0.00334194}, {0.00487991}, {0.00481554}, {0.00204347}, {0.00298217}, {0.000917028}, {0.000807775}, {0.00158543}, {0.00339935}, {0.00361055}, {0.00158543}, {0.000807775}, {0.00180012}, {0.000917159}, {0.00304689}, {0.00203823}, {0.00419327}, {0.00444812}, {0.00321724}, {0.00151688}, {0.00180012}, {0.000917159}, {0.00158543}, {0.000807775}, {0.00425176}, {0.0068851}, {0.00483251}, {0.00743876}, {0.00369139}, {0.00671734}, {0.000948173}, {0.000932706}, {0.00083906}, {0.00083906}, {0.00402163}, {0.0027552}, {0.00353262}, {0.00179986}, {0.00158543}, {0.000807775}, {0.00289277}, {0.00478507}, {0.00369139}, {0.00407095}, {0.002979}, {0.00490513}, {0.00275294}, {0.00402124}, {0.00204048}, {0.00298091}, {0.00413525}, {0.00522266}, {0.00472318}, {0.00402975}, {0.00676786}, {0.0037801}, {0.00496655}, {0.00158543}, {0.000807775}, {0.00353262}, {0.00179986}, {0.00557565}, {0.00365422}, {0.00420433}, {0.0045964}, {0.000917028}, {0.00243872}, {0.000807775}, {0.001568}, {0.00602516}, {0.0074155}, {0.00435075}, {0.00282642}, {0.00275892}, {0.00204048}, {0.00297957}, {0.0039318}, {0.00623354}, {0.00483251}, {0.00761117}, {0.00356241}, {0.00520686}, {0.0020394}, {0.00297957}, {0.00289006}, {0.00220255}, {0.00347634}, {0.00226248}, {0.00219973}, {0.00292886}, {0.00233772}, {0.00353589}, {0.00497258}, {0.00334717}, {0.00371176}, {0.00326057}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:tetrahedron_4
+   + id             : my_fem:quadrature_points:_tetrahedron_4
    + size           : 1
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{0.25, 0.25, 0.25}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:tetrahedron_4
+   + id             : my_fem:shapes:_tetrahedron_4
    + size           : 341
    + nb_component   : 4
    + allocated size : 341
    + memory size    : 11kB
    + values         : {{0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:tetrahedron_4
+   + id             : my_fem:shapes_derivatives:_tetrahedron_4
    + size           : 341
    + nb_component   : 12
    + allocated size : 341
    + memory size    : 32kB
    + values         : {{-2.9332, -3.39585, 0.502232, 0, 2.96343, 0.405765, 2.9332, 0.0602741, 3.04336, 0, 0.372141, -3.95136}, {3.45053, -1.3657, -2.27011, -3.89489, -2.97354, -4.55745, 0, 0, 5.36117, 0.444357, 4.33924, 1.46638}, {0.382444, -2.89016, 0, -1.28516, 1.90393, 2.9332, 3.7515, 0.879817, 0, -2.84879, 0.106407, -2.9332}, {2.97575, 3.89171, -3.89356, 0, 0, -5.23939, 1.36374, -3.44772, 3.45502, -4.3395, -0.443995, 5.67793}, {4, -4, -4.00114, -4, -3.0469, -3.04575, 0, 0, 7.0469, 0, 7.0469, 0}, {-3.52295, -3.52395, -3.52295, -3.52295, 3.52295, 3.52395, 3.52295, -3.52295, 3.52295, 3.52295, 3.52395, -3.52395}, {2.40825, 0.953172, 2.40825, 2.50475, 5.50649, -2.73463, -1.78774, -5.2227, -1.78774, -3.12526, -1.23696, 2.11413}, {-2.9332, 1.96549, 1.23633, 0, -2.87587, -0.393776, 0, 1.01994, -3.86266, 2.9332, -0.10956, 3.0201}, {0.419151, 4, -4, 2.79404, -8.15492, 0.835098, 2.20503, 4.15492, 3.1649, -5.41822, 0, 0}, {3.52244, 3.52345, 3.52345, 3.65886, 3.65991, -3.65991, 3.52345, -3.52244, -3.52244, -10.7048, -3.66092, 3.6589}, {-1.79359, 1.79523, -1.79625, 3.5193, 3.52237, 3.52452, -7.1749, -7.18117, 0.13427, 5.44919, 1.86357, -1.86254}, {3.99728, -4.00093, 4.00321, 0, 7.04488, 0, 4.15209, 3.16185, -3.16156, -8.14937, -6.2058, -0.841653}, {-2.33012, -1.26027, 3.59031, 1.73691, -1.73691, -3.82575, -2.89531, 2.89531, -1.14913, 3.48852, 0.101865, 1.38457}, {0, 3.12067, -1.26381, 0, -0.238012, 2.52719, -2.9332, -3.29673, -0.550156, 2.9332, 0.414072, -0.713225}, {2.25842, -1.36825, -3.45027, 4.64721, -2.97306, 3.89484, -1.48742, 4.3413, -0.444568, -5.41822, 0, 0}, {-0.835098, -8.15492, -2.75583, 4, 4, -0.45685, -3.1649, 4.15492, -2.14849, 0, 0, 5.36117}, {2.74019, 0.0956852, 2.80125, -3.01086, 0.697365, -0.375193, 0.165245, 2.48398, -2.46532, 0.105421, -3.27703, 0.0392613}, {2.96943, -3.89447, -0.304082, 1.36934, 3.45016, 3.45016, 0, 0, -3.59038, -4.33877, 0.444309, 0.444309}, {3.164, 3.1649, 4.15492, -6.21002, 0.835098, -8.15492, 7.04488, 0, 0, -3.99886, -4, 4}, {-4.24471, 0, -2.22045e-16, 1.70632, 0.0142405, 4.507, 1.02929, -3.25521, -3.22316, 1.5091, 3.24097, -1.28383}, {-0.835098, -3.26304, -8.15492, -3.1649, -1.55632, 4.15492, 4, -0.0381551, 4, 0, 4.85752, 0}, {-3.09877, -0.624101, 0.936346, 2.96195, 3.42913, -0.507155, -0.240412, -3.6139, 3.58676, 0.377232, 0.808874, -4.01595}, {-7.0469, 0, 0, 4, 4, -4, 3.0469, 3.04589, 4, 0, -7.04589, 0}, {0, 0.802501, 2.70275, -2.9332, -0.102425, -2.99855, 2.9332, 2.58063, 0.364309, 0, -3.28071, -0.0685083}, {4.16334e-16, -8.88178e-16, -2.4308, 3.22687, 1.27702, 1.31348, -3.25484, 3.22647, -0.701298, 0.0279753, -4.5035, 1.81862}, {1.62741e-11, -1.54712e-11, -4, 5.23939, 0, 0, -5.23939, 5.23939, 4, 0, -5.23939, 0}, {0, -7.13135e-16, 5.23939, 0, 5.23939, 0, 4, -5.23939, -5.24506, -4, -2.28255e-11, 0.00566839}, {0, -7.0469, 8.88178e-16, -4, 4, 4, 4, 3.0469, 3.0469, 0, 0, -7.0469}, {-4, 5.24608, 5.23939, 4, 1.55241e-11, 1.5915e-11, 0, -5.24608, 0, 0, 0, -5.23939}, {4, -4, 4, -7.0469, 0, 0, 3.0469, 4, 3.04589, 0, 0, -7.04589}, {2.51489, 3.01511, 3.01511, -3.88194, -3.41534, -0.482145, -2.88414, -0.0592661, -2.99246, 4.25119, 0.459499, 0.459499}, {5.23939, 5.23285, 4, 0, -5.23568, 0, -5.23939, 0, 0, 2.32699e-11, 0.00283219, -4}, {-2.75474, -0.835644, -4.18437, 0.257813, 3.33257, -1.31901, 0.305142, -0.305142, 4.63589, 2.19179, -2.19179, 0.867496}, {4.15492, -3.1649, -3.1649, -8.15492, -0.835098, 6.2118, 4, 4, 4, 0, 0, -7.0469}, {0.00566839, 4, -0.00283219, 0, 0, -5.23568, 5.23372, -4, 5.23851, -5.23939, 0, 0}, {-1.52791, 1.52994, 4.71561, -1.9516, -3.29226, 0.192739, -0.842937, 0.840096, -3.60933, 4.32244, 0.92222, -1.29903}, {2.86385, 3.21879, 0.53715, -0.233278, -0.500202, 2.48343, -2.84203, -0.0735906, -1.79686, 0.211453, -2.645, -1.22372}, {4.53179, 1.05538, 0.0281511, -1.28505, -2.42496, -3.24278, -3.24675, -1.61027, 3.21463, 0, 2.97985, 0}, {-1.02659, 3.24669, 3.21473, 3.14112, -4.52341, 0.014006, -4.24471, 0, 0, 2.13019, 1.27672, -3.22874}, {-4, -4, -4, 0.835098, 8.15492, 0.835098, 0, 0, 3.59038, 3.1649, -4.15492, -0.425481}, {0, -7.0469, 0, -4, 3.0469, 3.0469, 4, 4, 4, 0, 0, -7.0469}, {2.27701, -1.57663, -3.25, -1.49395, 3.66511, 0.0115805, -2.03803, -2.71547, -0.00857994, 1.25497, 0.626993, 3.247}, {4.33924, 5.68374, -0.444357, -2.97354, -3.89489, 3.89489, -1.3657, 3.45053, -3.45053, 0, -5.23939, 0}, {4.33729, -5.68119, -0.447948, 0, 5.23939, 0, -1.36509, -3.45133, -3.4494, -2.97221, 3.89314, 3.89735}, {0, 4.44089e-16, 3.59038, -2.97354, -3.89489, 0.304504, -1.3657, 3.45053, -3.45053, 4.33924, 0.444357, -0.444357}, {-0.960671, 0.960671, -4.13489, 2.09645, -2.09645, -0.829765, 1.35765, 2.23273, 3.97777, -2.49343, -1.09695, 0.986887}, {-3.6556, -3.65879, 3.65879, -1.79574, 1.79308, -1.79621, 3.6556, 3.65879, -0.0684102, 1.79574, -1.79308, -1.79417}, {0.307102, -2.97354, -3.89489, 3.59038, 0, 0, -0.44815, 4.33924, 0.444357, -3.44934, -1.3657, 3.45053}, {-1.64157, 0.110512, -3.2348, 1.22142, 3.1461, -3.07269e-12, -0.833409, -0.40322, 3.2348, 1.25356, -2.85339, 2.78682e-12}, {0, 7.04488, 0, 4, -3.99886, 4.00114, -4, -3.04603, 3.04575, 0, 0, -7.0469}, {-0.443995, -0.444383, -4.3395, 0, 3.59038, 0, -3.44772, -3.45073, 1.36374, 3.89171, 0.30473, 2.97575}, {-1.00556, 2.54062, 1.04976, -3.90018, -1.55367, -2.03672, 3.775, 1.86995, -1.86995, 1.13075, -2.8569, 2.8569}, {-4.90575, 0.986953, -0.986953, 1.13075, -2.8569, 2.8569, -1.91647, -0.397296, -4.84209, 5.69148, 2.26724, 2.97215}, {4.19746, -5.51046, 2.84944, 1.88954, 6.77064, -1.88954, -2.89363, -5.45245, -4.15327, -3.19336, 4.19228, 3.19336}, {8.88178e-16, 7.0469, 0, -3.99886, -4, -4, 7.04488, 0, 0, -3.04603, -3.0469, 4}, {-4, 4, -4, 0, -7.0469, 0, 4, 3.0469, -3.0469, 0, 0, 7.0469}, {5.23123, 5.81945e-16, 0, -5.23123, -5.23939, 4, 0, 5.23939, 0, 1.6327e-11, 1.54706e-11, -4}, {-0.750211, -0.75138, 4.81251, 1.07726, -4.16045, 1.64668, -2.20213, 3.03383, -5.71589, 1.87508, 1.878, -0.743302}, {4, -2.28271e-11, 2.36273e-11, -4, 5.23939, -5.23939, 0, -5.23939, 0, 0, 0, 5.23939}, {3.80063, -1.80519, -1.80851, 1.09322, 2.76209, 2.76114, -3.92166, 1.49941, -2.08755, -0.972194, -2.45631, 1.13492}, {-1.92104, 0.382436, -4.85423, 5.71942, -2.18677, 3.04452, 1.09257, 2.76234, 2.76079, -4.89095, -0.95801, -0.95108}, {3.0469, 3.0469, -4, 4, 4, 4, -7.0469, 0, 0, 0, -7.0469, 0}, {-3.52345, 3.52244, -3.52446, 3.52244, 3.52345, 3.52345, -3.52244, -3.52345, 3.52345, 3.52345, -3.52244, -3.52244}, {-3.89489, -0.305669, 2.97354, 3.45053, 3.44843, 1.3657, 0, -3.58881, 0, 0.444357, 0.446058, -4.33924}, {3.45195, 3.44854, 1.36462, 5.6826, 0.445968, -4.33837, -3.89516, -3.89451, 2.97375, -5.23939, 0, 0}, {3.2348, 1.4231, -1.28032, 0, -3.01876, 0, -3.04119e-12, 1.63545, 4.51512, -3.2348, -0.0397999, -3.2348}, {-2.82577, -2.82405, -1.11842, -1.29033, 2.2973, 4.00441, 3.2475, -0.343291, 1.28534, 0.868592, 0.870035, -4.17133}, {1.88206, -3.35082, -5.84079, -2.82615, -2.82336, -1.11723, 1.95788, 1.95275, 5.28756, -1.01379, 4.22143, 1.67046}, {4.00887, -0.711384, 1.23085, -1.07985, 3.872, 1.08301, -1.46134, -0.730093, -3.78093, -1.46768, -2.43052, 1.46707}, {-6.11172, -2.09613, -3.09899, -3.35065, 1.32617, 2.2044, 6.08523, -2.4085, 1.35769, 3.37714, 3.17846, -0.4631}, {0, -1.78762, -4.51512, 0, -1.19223, 4.51512, 2.9332, 1.45476, -2.90418, -2.9332, 1.52509, 2.90418}, {-8.88178e-16, 0, 7.0469, -3.0469, -4, -3.0469, -4, 4, -4, 7.0469, 0, 0}, {-1.83438, 2.64163, -0.00817939, 1.49822, -0.389218, 3.22599, -2.02268, -3.19987, 0.00990788, 2.35884, 0.947457, -3.22772}, {-3.58659, -3.58659, 0.548674, 1.12084, -3.39428, -1.90685, -0.156642, 4.35848, -1.19262, 2.6224, 2.6224, 2.5508}, {-3.52345, -3.52345, -3.52345, 3.52345, 3.52345, -3.52345, -3.52345, 3.52345, 3.52345, 3.52345, -3.52345, 3.52345}, {4.44089e-16, 0, 2.95197, 4.40828e-12, -4.51512, -1.73539, -3.2348, 1.28032, -0.721726, 3.2348, 3.2348, -0.494857}, {-4.24471, 1.77636e-15, -4.44089e-16, 1.287, -4, -4, -1.6658, 8.15492, 0.835098, 4.62351, -4.15492, 3.1649}, {0.885858, -4.33672, -0.444099, -4.24471, 0, 0, 3.16813, 2.96992, 3.89452, 0.190724, 1.3668, -3.45042}, {-2.32703e-11, -0.00283219, 4, 5.23939, 5.23851, -4, 0, -5.23568, 0, -5.23939, 0, 0}, {-5.23939, -4, -5.23939, 2.28255e-11, 4, 2.28255e-11, 0, 0, 5.23939, 5.23939, 0, 0}, {4.47576, -1.93017, 0, -2.90763, 1.52342, 2.9332, 2.90763, 1.45643, -2.9332, -4.47576, -1.04967, 0}, {-2.74183, 0.846161, -0.849296, 1.62977, 1.63119, -1.63119, 0.777461, 0.778141, 2.81224, 0.334598, -3.25549, -0.331753}, {-2.36134, 0, 0, 1.74759, 0, 2.9332, -0.525012, -2.9332, -2.9332, 1.13877, 2.9332, 0}, {-3.21511, 0.1024, -3.24338, 3.21511, -1.89002, -1.27174, 0, 2.97985, 0, -3.36919e-12, -1.19223, 4.51512}, {0, 5.23939, 4.12864e-16, 0, 0, 5.23939, -4, -5.23939, -5.23372, 4, 2.28255e-11, -0.00566839}, {-2.40793, -0.260266, -0.260266, 0.500707, 2.7974, 2.7974, 1.23528, -2.86224, 0.0709597, 0.671946, 0.325101, -2.6081}, {4, 5.23939, -5.23939, 0, 0, 5.23939, -4, 2.28278e-11, -2.36282e-11, 0, -5.23939, 0}, {-4.44089e-16, 7.0469, 0, -7.0469, 0, 0, 3.0469, -3.0469, -4, 4, -4, 4}, {3.22647, -1.69048, -3.25484, 1.27702, -0.254226, 3.22687, 0, 2.97985, 0, -4.5035, -1.03514, 0.0279753}, {-3.50419, 0, 2.04697e-16, -0.300503, -3.2348, 3.2348, 0.9543, -1.27452, -3.22084, 2.85039, 4.50932, -0.0139624}, {-2.58829, 1.58763, 2.59096, 3.47782, 1.19279, 1.76345, 1.14429, -4.10309, -1.14764, -2.03382, 1.32267, -3.20677}, {-0.0193683, 3.11794, -1.2591, 3.23344, 0.218445, 1.74096, -3.23197, -0.456248, 0.785873, 0.0178911, -2.88013, -1.26773}, {4, -4, -4, -7.0469, 0, 0, 3.0469, -3.0469, 4, 0, 7.0469, 0}, {2.09645, -2.09645, -0.829765, 1.02053, 4.21886, 1.6698, -1.9812, -3.25819, -5.80469, -1.13578, 1.13578, 4.96465}, {0, 3.04177, 0.0635186, 0, -2.06144, 2.64295, -2.9332, -0.059438, -2.99766, 2.9332, -0.920892, 0.29119}, {1.04124, -3.22316, -3.25521, -4.24471, 0, 0, -0.179146, -1.28383, 3.24097, 3.38261, 4.507, 0.0142405}, {3.21511, -2.56163, 1.27174, -3.21511, -1.61044, 3.24338, 0, 2.97985, 0, 3.36919e-12, 1.19223, -4.51512}, {-3.65939, -3.66043, -10.7063, -3.52295, 3.52295, 3.52395, 3.52295, -3.52295, 3.52295, 3.65939, 3.66043, 3.65939}, {0.841653, -8.14937, -0.83453, 0, 0, -3.59038, -4.00321, 3.99728, 3.99972, 3.16156, 4.15209, 0.425192}, {0, -8.88178e-16, -5.23939, -4, -5.23123, 5.23372, 4, -1.54883e-11, 0.00566839, 0, 5.23123, 0}, {3.88882, 3.89489, 2.97354, 5.23123, 0, 0, -3.44516, -3.45053, 1.3657, -5.6749, -0.444357, -4.33924}, {8.15548, 0.834427, -0.835156, 0, 0, -3.59038, -4.00272, -3.99679, 4.00028, -4.15276, 3.16236, 0.425261}, {1.3657, 3.45053, -3.45053, 0, 0, 3.59038, -4.33924, 0.444357, -0.444357, 2.97354, -3.89489, 0.304504}, {-0.837584, 3.2348, -1.28032, -0.944765, -3.55036e-12, 4.51512, -0.578996, -3.2348, -3.2348, 2.36134, 0, 0}, {-3.0469, 3.0469, -4, 0, -7.0469, 0, 7.0469, 0, 0, -4, 4, 4}, {0.832911, -2.82507, -0.828908, 0.808732, 3.17388, -0.81323, -3.40548, -0.230067, -1.83358, 1.76384, -0.118743, 3.47572}, {0, -3.01876, 0, 1.28032, 1.39906, -3.2348, -4.51512, 1.5799, -3.09855e-12, 3.2348, 0.0397999, 3.2348}, {1.27174, 3.21511, 0.89222, 0, 0, -2.4308, 3.24338, -3.21511, 0.698828, -4.51512, 3.70603e-12, 0.839751}, {-1.79652, -1.79386, -1.79496, 1.79652, 1.79386, -1.79543, -3.65719, 3.65719, -0.0700075, 3.65719, -3.65719, 3.66039}, {-2.2828e-11, 4, 0.0025524, 0, 0, 5.24273, -5.23939, 0, 0, 5.23939, -4, -5.24528}, {-1.75292, -4.51512, -4.40936e-12, 0.0630025, 1.28032, 3.2348, 2.36134, 0, 0, -0.671422, 3.2348, -3.2348}, {-1.82767, 3.81744, 1.76272, -0.114041, 1.46619, -3.70442, 2.43635, -0.964293, 2.43635, -0.494641, -4.31934, -0.494641}, {-3.45053, -1.3657, -3.45053, -0.444357, 4.33924, -5.68374, 0, 0, 5.23939, 3.89489, -2.97354, 3.89489}, {2.9332, 2.26271, -0.706418, -2.9332, 1.41766, 2.12097, 0, -0.989411, -3.33225, 0, -2.69097, 1.9177}, {0, -1.39581e-17, 4.03735, -3.2348, -3.2348, -3.14648, -1.28032, 3.2348, -2.28562, 4.51512, 4.40982e-12, 1.39475}, {3.25531, -1.69257, -3.22311, -3.621e-12, -1.19223, 4.51512, 0, 2.97985, 0, -3.25531, -0.095055, -1.29201}, {-2.43276, 1.15549, 1.15762, 2.22336, 2.22531, 2.22336, 0.45554, -3.13444, 0.45554, -0.246142, -0.246357, -3.83653}, {4.00272, -3.99679, 4.00378, -8.15548, 0.834427, -0.842284, 4.15276, 3.16236, 0.42889, 0, 0, -3.59038}, {-2.25991, 1.3285, 0.893907, -1.12519, -1.12617, -4.07005, 1.87562, 1.87726, -0.7419, 1.50948, -2.07958, 3.91804}, {-3.45053, 1.3657, -3.45053, -0.444357, -4.33924, -5.68374, 3.89489, 2.97354, 3.89489, 0, 0, 5.23939}, {-3.2348, 0.341949, -1.28032, 0, -3.12276, 0, 3.2348, 0.619904, -3.2348, -3.95817e-12, 2.1609, 4.51512}, {2.97704, 0.304595, -3.89524, -4.34434, -0.444491, 0.444879, 1.36731, -3.44735, 3.45037, 0, 3.58725, 0}, {1.27702, -1.8283, -3.22687, 3.22647, -0.102762, 3.25484, 0, 2.97985, 0, -4.5035, -1.04879, -0.0279753}, {5.67645, -4.33837, 0.445968, 3.45388, 1.36462, 3.44854, -3.89094, 2.97375, -3.89451, -5.23939, 0, 0}, {0, 0, -5.23568, -0.00566839, -4, 0.00283219, 5.24506, 4, 5.23285, -5.23939, 0, 0}, {2.97354, -3.89489, 3.89489, 1.3657, 3.45053, -3.45053, 0, -5.23939, 0, -4.33924, 5.68374, -0.444357}, {7.0469, 0, 4.44089e-16, 0, 0, -7.0469, -4, -4, 4, -3.0469, 4, 3.0469}, {0.676898, -0.676898, 2.91348, 1.85764, -1.85764, -1.85764, -2.8863, -0.704082, -0.704082, 0.351759, 3.23862, -0.351759}, {-1.71643, -3.77342, 1.87396, 2.40825, 0.953172, 2.40825, -0.071317, -1.44928, -3.6617, -0.620505, 4.26953, -0.620505}, {-3.52345, -3.52345, -3.52345, 3.52345, -3.52345, 3.52345, 3.52345, 3.52345, -3.52345, -3.52345, 3.52345, 3.52345}, {-1.16853, 4.05757, 2.41902, -2.70338, -1.07129, -2.70173, 3.36405, 1.3331, -0.22682, 0.507865, -4.31938, 0.509529}, {0.235286, 2.46776, -2.45659, -1.58499, 1.09747, 2.26228, -1.89674, -2.81329, -0.210235, 3.24644, -0.75193, 0.40455}, {1.72714, 0.683827, -1.72773, -2.24537, -3.98415, -1.34153, 0.964303, -1.03975, 2.62699, -0.446071, 4.34007, 0.442278}, {-7.18233, -0.137487, -7.18233, 1.86445, 1.86498, 5.45483, 3.52295, -3.52295, 3.52295, 1.79493, 1.79545, -1.79545}, {0, -8.88178e-16, -2.4308, -3.22687, 1.27702, -0.160385, -0.0279753, -4.5035, 1.80584, 3.25484, 3.22647, 0.785343}, {3.45037, 1.36731, 3.44826, -3.89524, 2.97704, -0.306029, 0, 0, -3.58881, 0.444879, -4.34434, 0.446582}, {3.24278, -1.28505, 1.07917, 0, 0, -2.6315, -3.21463, -3.24675, -0.442405, -0.0281511, 4.53179, 1.99473}, {1.7269, 0.683416, -1.72787, -1.27936, -5.02087, 1.28648, 3.27466, 5.8105, 1.9565, -3.7222, -1.47305, -1.5151}, {-5.23372, -4, 5.23939, -0.00566839, 4, -2.28255e-11, 5.23939, 0, 0, 0, 0, -5.23939}, {0.0281511, 4.53179, 2.33833, 0, 0, -2.884, 3.21463, -3.24675, 0.327026, -3.24278, -1.28505, 0.218644}, {-3.52345, -3.52345, 3.52345, -3.52345, 3.52345, -3.52345, 3.52395, 3.52295, 3.52295, 3.52295, -3.52295, -3.52295}, {1.3657, 3.45494, 3.45053, -4.33924, 5.691, 0.444357, 2.97354, -3.89986, -3.89489, 0, -5.24608, 0}, {-1.06097, 2.95229, -1.06649, 4.44047, 0.792573, -0.800037, -2.21214, -0.888535, 3.02699, -1.16736, -2.85632, -1.16047}, {4, 4, -4, -3.1649, -3.16386, -4.15492, 0, -7.04589, 0, -0.835098, 6.20975, 8.15492}, {-3.23839, -0.578016, 0.58346, 0.0195373, 3.14514, -1.26116, 3.23532, 0.0837745, 2.04552, -0.0164672, -2.6509, -1.36782}, {-3.59038, 0, -8.88178e-16, 4, 4, -4, -0.834843, -0.83804, 8.15243, 0.425226, -3.16196, -4.15243}, {-3.99679, -4.00028, -4.00272, 0, 3.59038, 0, 0.834427, 0.835156, 8.15548, 3.16236, -0.425261, -4.15276}, {-0.618598, -0.619625, 2.97076, -2.5319, -2.52969, -2.52969, -0.377606, 3.21154, -0.378844, 3.52811, -0.062223, -0.062223}, {-6.21002, 0.835098, 8.15492, 3.164, 3.1649, -4.15492, 7.04488, 0, 0, -3.99886, -4, -4}, {-2.96943, -3.89447, -0.304082, 0, 0, -3.59038, -1.36934, 3.45016, 3.45016, 4.33877, 0.444309, 0.444309}, {-4.44089e-16, 3.59038, 0, 0.834427, 0.835156, -8.15548, 3.16236, -0.425261, 4.15276, -3.99679, -4.00028, 4.00272}, {4.15492, 0.425481, -3.1649, 0, -3.59038, 0, 4, 4, 4, -8.15492, -0.835098, -0.835098}, {0.444309, -0.444309, -4.33877, -3.89447, 0.304082, 2.96943, 3.45016, -3.45016, 1.36934, 0, 3.59038, 0}, {-4.44089e-16, 7.0469, 0, -3.04603, -3.0469, -4, 7.04488, 0, 0, -3.99886, -4, 4}, {-1.90626e-16, 0, 4.03735, -3.2348, 3.2348, 1.14797, 3.2348, 1.28032, -2.18823, -4.40962e-12, -4.51512, -2.99709}, {-1.3657, -3.45053, -3.44934, 4.33924, -0.444357, -0.44815, -2.97354, 3.89489, 0.307102, 0, 0, 3.59038}, {-4, 4, -4, 0, 0, 7.0469, 0.835098, -8.15492, -6.2118, 3.1649, 4.15492, 3.1649}, {1.22258, -2.9332, -2.86482e-12, -0.434061, 0, 3.2348, 1.13877, 2.9332, 2.86495e-12, -1.92728, 0, -3.2348}, {0.619868, 0, -4.61952, 1.07793, -2.9332, 1.07793, 1.00404, 2.9332, 1.00404, -2.70184, 0, 2.53754}, {8.15492, -0.835098, -6.2118, -4, 4, -4, -4.15492, -3.1649, 3.1649, 0, 0, 7.0469}, {-1.77636e-15, 0, 7.0469, -4, -4, -4, -3.0469, 4, -3.0469, 7.0469, 0, 0}, {3.89735, -2.97221, -3.89314, -0.447948, 4.33729, 5.68119, 0, 0, -5.23939, -3.4494, -1.36509, 3.45133}, {0.300503, 3.2348, -3.2348, -3.50419, 0, 0, 0.773493, -3.22084, -1.27452, 2.43019, -0.0139624, 4.50932}, {-5.23939, 4, -5.23939, 5.23939, 0, 0, 0, 0, 5.23939, -2.28255e-11, -4, -2.28255e-11}, {5.23939, 0, -1.75044e-16, -5.24506, 4, 5.23939, 0, 0, -5.23939, 0.00566839, -4, 2.28255e-11}, {3.95255, -0.362167, 0.362483, -0.482349, -3.10803, -0.479633, -1.12077, 1.12077, 2.46863, -2.34943, 2.34943, -2.35148}, {1.27685, 3.22605, 0.364333, -1.43581, -3.62766, 3.62766, -4.79345, -0.703234, 0.703234, 4.95241, 1.10484, -4.69522}, {-3.45053, 3.45053, 1.3657, -0.444357, 0.444357, -4.33924, 3.89489, -0.304504, 2.97354, 0, -3.59038, 0}, {-1.03322, 0, 2.9332, -2.44657, -2.9332, -2.9332, -0.388139, 2.9332, 0, 3.86792, 0, 0}, {-2.86482e-12, -2.9332, 2.09032, -3.2348, 0, -0.999254, 2.86466e-12, 2.9332, 1.94703, 3.2348, 0, -3.03809}, {3.99728, -3.99972, -4.00321, -8.14937, 0.83453, 0.841653, 4.15209, -0.425192, 3.16156, 0, 3.59038, 0}, {-3.65719, -3.66039, -3.65719, -1.79386, 1.79496, 1.79652, 3.65719, 0.0700075, 3.65719, 1.79386, 1.79543, -1.79652}, {0.32313, 3.2444, -3.2106, 3.54154, -2.30319, 5.58401, -2.14916, 1.30205, 3.28335, -1.71551, -2.24325, -5.65675}, {-3.89489, 2.97354, -2.82238, 0, 0, 4.03735, 0.444357, -4.33924, -0.86478, 3.45053, 1.3657, -0.350185}, {1.84375, -4.52327, -0.014292, 0.315792, 3.2348, -3.2348, -3.14489, 0, 0, 0.985347, 1.28847, 3.24909}, {-4.33924, -0.444357, -5.6776, 0, 0, 5.23939, 1.3657, -3.45053, -3.45246, 2.97354, 3.89489, 3.89067}, {5.23939, 0, 0, -3.45053, 3.45053, 1.3657, -5.68374, 0.444357, -4.33924, 3.89489, -3.89489, 2.97354}, {7.0469, 8.88178e-16, 0, 3.16371, 4.15492, -3.1649, -6.20947, -8.15492, -0.835098, -4.00114, 4, 4}, {-0.782485, -3.2348, -1.28032, 2.60358, 0, 0, -0.410568, 3.2348, -3.2348, -1.41052, 3.55036e-12, 4.51512}, {-4, 4, -4, -4.15492, 0.425481, 3.1649, 0, -3.59038, 0, 8.15492, -0.835098, 0.835098}, {-1.75292, -4.51512, 4.40936e-12, -1.18742, 1.28032, -3.2348, 0.578996, 3.2348, 3.2348, 2.36134, 0, 0}, {-4, -4, -4, -6.2118, 8.15492, 0.835098, 3.1649, -4.15492, 3.1649, 7.0469, 0, 0}, {0.304504, -2.97354, 3.89489, -3.45053, -1.3657, -3.45053, -0.444357, 4.33924, -0.444357, 3.59038, 0, 0}, {-0.968585, 2.9332, 1.64782, -3.80236, -2.9332, 0.915743, 1.28259, 0, -3.64114, 3.48835, 0, 1.07758}, {8.15492, 0.835098, -3.7826, -4, -4, 0.45685, 0, 0, 5.36117, -4.15492, 3.1649, -2.03542}, {-4, 4, -4, 0, -7.0469, 0, 7.0469, 0, 0, -3.0469, 3.0469, 4}, {-2.33946, 1.78605, 2.34209, 3.03792, -2.3193, 2.20139, -2.35172, -2.20459, -2.89092, 1.65325, 2.73783, -1.65256}, {2.60358, 0, 3.0632e-16, -1.03055, -1.28032, -3.2348, 0.410568, -3.2348, 3.2348, -1.98359, 4.51512, -4.40967e-12}, {-3.59038, 1.77636e-15, -1.11022e-16, 4, -4, 4, 0.425226, -4.15243, -3.16196, -0.834843, 8.15243, -0.83804}, {0, 0, -5.23939, -4, 1.54883e-11, -0.00566839, 4, -5.23123, 5.24506, 0, 5.23123, 0}, {-1.62732e-11, 1.54703e-11, 4, 5.23939, 0, 0, 0, -5.23939, 0, -5.23939, 5.23939, -4}, {4.72393, 2.32297, -6.20162, -2.81181, -4.23508, -5.55986, 1.34415, -1.34415, 7.48662, -3.25627, 3.25627, 4.27486}, {-3.1649, -4.15492, -3.16386, -0.835098, 8.15492, 6.20975, 4, -4, 4, 0, 0, -7.04589}, {2.10128, 3.1649, 4.15492, 3.73608, 0.835098, -8.15492, -0.419151, -4, 4, -5.41822, 0, 0}, {0, 0, -7.0469, 7.0469, 0, 0, -4.00114, 4, 4, -3.04575, -4, 3.0469}, {-3.89511, 3.89452, 2.96992, -5.24608, 0, 0, 5.68769, -0.444099, -4.33672, 3.45349, -3.45042, 1.3668}, {-7.0469, 0, 0, 4.00114, 4, 4, 3.04575, -4, 3.0469, 0, 0, -7.0469}, {-5.24608, 0, 0, 5.24608, -5.24018, 4, 2.32367e-11, -0.0025524, -4, 0, 5.24273, 0}, {4.44089e-16, 4.44089e-16, 4.03735, -4.51512, 4.40818e-12, -1.39475, 3.2348, 3.2348, -1.306, 1.28032, -3.2348, -1.33659}, {6.38334, 0.936482, -0.936482, -5.90226, 2.17282, 1.41756, -3.46093, -0.129456, -3.46093, 2.97985, -2.97985, 2.97985}, {-0.252976, 0.252976, -3.84336, 0.368915, 3.22147, 0.368915, -2.40103, -1.18935, 1.18935, 2.28509, -2.28509, 2.28509}, {-1.44735, 2.54109, 0.82519, -0.346604, -3.63529, 3.61884, -1.58915, 0.412839, -3.42177, 3.3831, 0.681367, -1.02226}, {-2.32365e-11, 0.0025524, 4, -5.24608, 0, 0, 0, 5.24273, 0, 5.24608, -5.24528, -4}, {-3.59357e-12, 3.68038, 1.41455, 2.62736e-12, -2.69097, 1.9177, -3.2348, 0.574024, -0.993189, 3.2348, -1.56344, -2.33906}, {2.74148, 0.0555531, 2.80173, -2.9202, -2.12061, -0.341431, -0.0977885, 3.03978, -0.0364189, 0.27651, -0.974727, -2.42388}, {4.00321, 3.99728, 3.99972, 0, 0, -3.59038, -0.841653, -8.14937, -0.83453, -3.16156, 4.15209, 0.425192}, {0, 4.44089e-16, -7.0469, 0, 7.04488, 0, -4, -3.99886, 4, 4, -3.04603, 3.0469}, {-4.40759e-12, 4.51512, -3.21766, 0, 0, 4.03735, -3.2348, -1.28032, 0.328292, 3.2348, -3.2348, -1.14798}, {-3.2348, -3.2348, 1.306, 4.40977e-12, 4.51512, -3.21766, 0, 0, 4.03735, 3.2348, -1.28032, -2.12568}, {1.28032, 0.265417, 3.2348, -4.51512, 1.06793, -3.90061e-12, 3.2348, 1.75796, -3.2348, 0, -3.09131, 0}, {-2.85306, -1.28668, -1.28504, 3.1184, -0.694894, -0.694008, 0.0152986, 3.82424, -1.42003, -0.280638, -1.84266, 3.39908}, {3.0469, 4, -3.0469, -7.0469, 0, 0, 4, -4, -4, 0, 0, 7.0469}, {1.29201, -3.25531, 0.810704, 0, 0, -2.6315, -4.51512, -3.75807e-12, 1.37723, 3.22311, 3.25531, 0.443571}, {-3.66502, 2.14914, 1.43616, 0.752328, 1.90198, -1.90298, 4.02391, -1.24183, 1.24643, -1.11122, -2.8093, -0.779603}, {8.15492, -3.3488, 0.835098, -4.15492, -1.54688, 3.1649, 0, 4.85752, 0, -4, 0.0381551, -4}, {-3.45053, 1.3657, -3.45053, 3.59038, 0, 0, 0.304504, 2.97354, 3.89489, -0.444357, -4.33924, -0.444357}, {-4, 3.0469, -3.0469, 0, -7.0469, 0, 4, 4, -4, 0, 0, 7.0469}, {-10.7068, 3.65991, -3.65991, 3.52345, -3.52345, -3.52345, 3.52345, 3.52345, 3.52345, 3.65991, -3.65991, 3.65991}, {0, -3.59038, 4.44089e-16, 3.1649, 0.425481, 4.15492, 0.835098, -0.835098, -8.15492, -4, 4, 4}, {-1.94171, 5.28363, -1.94171, 2.66708, -5.57073, -2.5723, 2.43635, -0.964293, 2.43635, -3.16172, 1.25139, 2.07766}, {0.099584, -1.28032, 3.2348, -1.88193, 4.51512, 4.40977e-12, 2.36134, 0, 0, -0.578997, -3.2348, -3.2348}, {-6.2118, -0.835098, -8.15492, 3.1649, -3.1649, 4.15492, 7.0469, 0, 0, -4, 4, 4}, {0.75324, 1.90144, -1.90334, 5.34316, -3.13319, -2.09374, -1.32234, 1.89318, 3.34138, -4.77406, -0.661432, 0.655698}, {4.44089e-16, 7.04488, 0, -4.15492, 3.164, -3.1649, 8.15492, -6.21002, -0.835098, -4, -3.99886, 4}, {-2.97354, -3.89986, -3.89489, 4.33924, 5.691, 0.444357, -1.3657, 3.45494, 3.45053, 0, -5.24608, 0}, {0, 0, -5.23939, 4, 5.24608, 5.23939, -4, -1.55241e-11, -1.5915e-11, 0, -5.24608, 0}, {-0.444357, 5.68374, 4.33924, 3.89489, -3.89489, -2.97354, 0, -5.23939, 0, -3.45053, 3.45053, -1.3657}, {3.52345, -3.52345, -3.52345, -3.52345, -3.52345, 3.52345, 3.52345, 3.52345, 3.52345, -3.52345, 3.52345, -3.52345}, {3.59038, 0, 2.22045e-16, 0.304504, -3.89489, -2.97354, -0.444357, 0.444357, 4.33924, -3.45053, 3.45053, -1.3657}, {5.23123, -8.88178e-16, 0, -5.23123, -5.23939, -4, -1.6327e-11, -1.54706e-11, 4, 0, 5.23939, 0}, {-1.36374, -3.44772, 3.44954, -2.97575, 3.89171, -0.30733, 4.3395, -0.443995, 0.448176, 0, 0, -3.59038}, {-3.16371, 4.15492, -3.1649, 4.00114, 4, 4, -7.0469, 0, 0, 6.20947, -8.15492, -0.835098}, {-3.52395, -3.52295, -3.52295, -3.52295, 3.52295, 3.52295, 3.52295, -3.52295, 3.52395, 3.52395, 3.52295, -3.52395}, {4, -4, -4.00114, -8.15492, 0.835098, -6.20947, 0, 0, 7.0469, 4.15492, 3.1649, 3.16371}, {-0.425481, 4.15492, 3.1649, 0.835098, -8.15492, 0.835098, -4, 4, -4, 3.59038, 0, 0}, {-1.79519, 1.79519, -1.79519, -1.79519, -1.79519, 1.79519, -0.0700075, -3.65719, -3.65719, 3.66039, 3.65719, 3.65719}, {4, 4, -4, 0, 0, 7.0469, -7.0469, 0, 0, 3.0469, -4, -3.0469}, {1.16094, -1.15703, 4.97097, -1.66567, -3.57722, 1.41703, -2.89698, 2.8944, -1.14655, 3.40171, 1.83985, -5.24145}, {-2.7042, -1.06842, -2.70002, 1.70166, -5.90879, -3.52267, 2.19866, 5.37974, 2.18568, -1.19612, 1.59748, 4.03701}, {4.33729, -5.67235, 0.447948, -1.36509, -3.44596, 3.4494, 0, 5.23123, 0, -2.97221, 3.88708, -3.89735}, {3.2348, -3.2348, -1.14797, 0, 0, 4.03735, 1.28032, 3.2348, -1.49462, -4.51512, -4.40977e-12, -1.39475}, {4, 4, 4, -0.835098, -0.835098, -8.15492, 0, -3.59038, 0, -3.1649, 0.425481, 4.15492}, {-3.1649, -3.1649, 4.15492, -7.0469, 0, 0, 4, 4, 4, 6.2118, -0.835098, -8.15492}, {0.724826, 0.724826, -6.59499, -3.21143, -3.21143, -3.21143, 3.7299, 0.139517, 3.7299, -1.24329, 2.34709, 6.07653}, {2.48661, 2.48661, 9.80643, -3.21143, -3.21143, -3.21143, -1.7154, 5.33149, 5.33149, 2.44023, -4.60667, -11.9265}, {-4.95125, 1.10332, 1.10192, -1.44818, -1.58249, 3.65892, 0.833328, -2.10815, -2.10546, 5.5661, 2.58731, -2.65538}, {0.836183, -2.10682, -2.10682, 4.11656, 1.00419, 1.00419, -1.14088, 2.87451, -0.715871, -3.81187, -1.77188, 1.8185}, {0.343882, -3.2462, -1.28483, 0.297233, 0.297493, 4.63286, 2.13498, 2.13685, 0.845752, -2.7761, 0.811861, -4.19379}, {2.22045e-16, 5.23939, 0, -3.44772, -3.45309, -1.36374, 3.89171, 3.89778, -2.97575, -0.443995, -5.68407, 4.3395}, {3.58725, -4.44089e-16, 0, -3.44752, -3.45053, -1.3657, -0.443969, -0.444357, 4.33924, 0.304238, 3.89489, -2.97354}, {3.65991, -3.65991, -3.65991, 3.52345, 3.52345, -3.52345, -3.52345, -3.52345, -3.52345, -3.65991, 3.65991, 10.7068}, {3.1649, -4.15492, -3.1649, 0, 0, -7.0469, -4, -4, 4, 0.835098, 8.15492, 6.2118}, {-4, -4, 4, 0.835098, 8.15492, -0.835098, 3.59038, 0, 0, -0.425481, -4.15492, -3.1649}, {-1.3476, -0.0112467, -3.55949, 1.85019, -3.24836, -1.05487, 1.92324, 3.24442, -0.189939, -2.42583, 0.0151799, 4.80429}, {1.17675, 3.24909, 1.28847, -0.315792, -3.2348, 3.2348, -3.14489, 0, 0, 2.28393, -0.014292, -4.52327}, {8.15492, -0.835098, -0.835098, -4, 4, 4, 0, 0, -3.59038, -4.15492, -3.1649, 0.425481}, {-4.15492, -3.1649, -3.1649, -4, 4, 4, 0, -7.0469, 0, 8.15492, 6.2118, -0.835098}, {0.137487, 7.18233, 7.18233, -1.79519, 1.79519, -1.79519, 3.52295, -3.52295, -3.52295, -1.86524, -5.45458, -1.86419}, {3.52295, -3.52295, -3.52295, -3.66043, -3.65939, -3.65939, -3.52345, -3.52345, 3.52345, 3.66094, 10.7058, 3.65888}, {1.67988, -1.68212, -5.18466, -2.30896, 2.30807, 0.915293, -1.39444, -3.85015, -1.52682, 2.02352, 3.2242, 5.7962}, {3.4516, -3.45027, -1.36825, -3.89922, 3.89484, -2.97306, -5.24608, 0, 0, 5.6937, -0.444568, 4.3413}, {1.94453e-16, 2.70417, 0, 3.25531, -0.177688, 3.22311, -3.25531, -0.557762, 1.29201, 3.62091e-12, -1.96872, -4.51512}, {3.09726e-12, 1.01994, -3.86266, -3.25531, -0.69454, 0.97832, 3.25531, -2.18133, -1.3721, -3.41346e-12, 1.85593, 4.25643}, {2.90521, -1.78203, -2.9082, 2.41571, 1.84427, 2.82665, -2.85063, 1.82369, -2.38912, -2.47029, -1.88594, 2.47066}, {-5.23939, 0, -8.88178e-16, 0, 0, 5.24273, 2.28278e-11, -4, -0.0025524, 5.23939, 4, -5.24018}, {-3.52295, 3.52295, 3.52295, 1.79545, 1.79493, -1.79545, 7.18233, -7.18233, 0.137487, -5.45483, 1.86445, -1.86498}, {-3.52295, 3.52295, 3.52295, -3.52395, -3.52295, -3.52295, -3.65939, 3.65939, -3.66043, 10.7063, -3.65939, 3.66043}, {-0.835098, 0.835098, 8.15492, 0, 3.59038, 0, 4, -4, -4, -3.1649, -0.425481, -4.15492}, {-7.0469, 5.55112e-16, 0, 4, -4, -4, -3.1649, 3.1649, -4.15492, 6.2118, 0.835098, 8.15492}, {0.662971, 0.664005, -4.25288, 1.65703, 1.65961, 0.655439, -2.91351, 2.32133, -1.15244, 0.59351, -4.64495, 4.74988}, {1.19438, -3.49493, 0, -2.76951, 1.19435, 0, 1.94164, -0.567827, 2.9332, -0.366511, 2.8684, -2.9332}, {2.36134, 1.0718e-17, 8.88178e-16, 0.671422, -3.2348, 3.2348, -0.342675, 3.2348, 1.28032, -2.69009, 3.55093e-12, -4.51512}, {-1.10548, 3.2348, 0, -1.25586, -3.2348, 0, 0.613756, 2.30645e-12, -2.9332, 1.74759, -2.30645e-12, 2.9332}, {3.2348, 0.120997, 3.2348, 0, -3.09131, 0, -3.2348, -0.551371, 1.28032, 3.95817e-12, 3.52168, -4.51512}, {-3.2348, 0.76173, -0.403199, 2.15323e-12, -1.17552, -2.45621, 3.2348, 2.34907, 0.378214, -2.17514e-12, -1.93527, 2.4812}, {-3.53969, 3.53969, 2.69627, -1.11299, 1.11299, -6.1991, 5.13509, 1.9118, -3.91153, -0.482412, -6.56449, 7.41436}, {4.72983, -3.60283, 2.31706, -1.62186, -5.81149, 1.62186, -3.59839, 2.74098, 3.59839, 0.490411, 6.67334, -7.53731}, {-4, 4, -4, 4, -4, -3.0469, 0, 7.0469, 0, 0, -7.0469, 7.0469}, {0, 0, 7.0469, 4, -3.0469, -4, -4, -4, 4, 0, 7.0469, -7.0469}, {1.26315, 3.1826, -0.407781, -4.48373, 0.0790768, 0.0790768, -1.01464, -2.55645, -2.55645, 4.23522, -0.705229, 2.88515}, {-1.01079, -2.55709, -2.55383, 1.69808, -0.95029, 4.29031, 5.49464, 2.47799, 2.47483, -6.18193, 1.02939, -4.21131}, {-1.79519, -1.79519, 1.79519, -3.65991, 3.65991, -3.65991, 1.79519, 1.79519, 1.79519, 3.65991, -3.65991, 0.0695263}, {-1.79519, -1.79519, 1.79519, 5.4551, -1.86472, 1.86472, 3.52345, -3.52345, -3.52345, -7.18336, 7.18336, -0.13646}, {0, -4.44089e-16, 3.59038, -8.15492, -0.835098, 0.835098, 4, 4, -4, 4.15492, -3.1649, -0.425481}, {4.15492, -3.1649, 3.1649, 4, 4, -4, 0, -7.0469, 0, -8.15492, 6.2118, 0.835098}, {4.18211, -0.841369, 0.841369, 1.63378, -1.11155, -4.12784, -0.96395, -2.43548, 2.43548, -4.85193, 4.3884, 0.850991}, {-2.9332, -0.654372, 2.78087, 0, 0.366146, -3.84129, 0, 2.94119, 1.57488, 2.9332, -2.65297, -0.514459}, {4.51512, -1.06793, 3.90044e-12, 0, -3.09131, 0, -1.28032, 0.871067, 3.2348, -3.2348, 3.28817, -3.2348}, {0, -0.430374, 4.51512, -2.9332, -0.109716, -2.9332, 0, 3.52168, -4.51512, 2.9332, -2.98159, 2.9332}, {4.19026, 0.820764, 0.814826, 1.21474, -3.06912, 2.16855, -0.936049, 2.36499, 2.36631, -4.46895, -0.116634, -5.34969}, {0.972372, 0.736781, -3.03724, -3.79781, 2.2903, -1.05943, 0.111338, -3.09792, 0.84769, 2.7141, 0.0708344, 3.24899}, {-2.55729, 1.01135, -2.55763, -2.08284, -1.24835, 3.15697, 1.89416, -5.27077, 1.90402, 2.74596, 5.50777, -2.50336}, {3.77679, -1.49465, 0.187718, 0.660093, 4.25334, 0.656376, -2.557, 1.01192, -2.55789, -1.87988, -3.77061, 1.7138}, {-5.23939, 0, -5.55112e-17, 3.4502, -1.36448, 3.45065, -3.90439, -2.97758, -3.8953, 5.69358, 4.34205, 0.444645}, {-4.44089e-16, 4.44089e-16, -3.59038, 3.4494, -1.36509, 3.45059, 0.447948, 4.33729, 0.444157, -3.89735, -2.97221, -0.304367}, {4.28053, 0.593056, -0.587914, -0.673906, 1.70372, -1.70733, 1.45255, -3.67222, -1.55938, -5.05918, 1.37545, 3.85462}, {0, 4.47576, 0.618208, 0, -4.47576, 1.81259, -2.9332, -2.90763, -0.707734, 2.9332, 2.90763, -1.72306}, {-1.27174, 3.21511, 1.36527, 0, 0, -2.4308, 4.51512, -3.70603e-12, -0.839751, -3.24338, -3.21511, 1.90528}, {0.947177, -0.947177, -4.14023, -3.0344, -2.20499, -1.201, 1.74832, -1.74832, 0.691975, 0.338905, 4.90048, 4.64925}, {1.90928, 0.579177, 2.90015, -2.97176, -1.29918, -0.341631, 1.26427, 3.63788, 0.209764, -0.201792, -2.91787, -2.76828}, {3.04112e-12, -1.63545, -4.51512, 0, -3.01876, 0, 3.2348, 2.35061, 1.28032, -3.2348, 2.3036, 3.2348}, {4.04958, 1.77038, 0.465536, -2.40427, -1.3066, 2.40427, -4.10736, 1.28953, -0.407754, 2.46205, -1.7533, -2.46205}, {0.835098, -0.835098, 8.15492, -4, 4, -4, 3.59038, 0, 0, -0.425481, -3.1649, -4.15492}, {3.1649, -3.1649, -4.15492, -4, 4, -4, 0, -7.0469, 0, 0.835098, 6.2118, 8.15492}, {-3.65991, 3.65991, 3.65991, 1.79519, 1.79519, -1.79519, 1.79519, -1.79519, 1.79519, 0.0695263, -3.65991, -3.65991}, {1.79519, -1.79519, 1.79519, 1.86472, -1.86472, -5.4551, -3.52345, -3.52345, -3.52345, -0.13646, 7.18336, 7.18336}, {3.0611, -1.07112, 2.10077e-12, -0.369018, 1.30083, 3.2348, 0.267075, 1.7536, -3.2348, -2.95915, -1.98331, -2.03061e-12}, {-1.28032, 0.716498, -3.2348, -3.2348, -0.619904, 3.2348, 0, -3.12276, 0, 4.51512, 3.02616, 3.09876e-12}, {-3.24675, 0.177221, -3.21463, 0, 2.70417, 0, -1.28505, -0.665307, 3.24278, 4.53179, -2.21609, -0.0281511}, {-1.03768, -0.786269, 3.24125, 3.76174, 0.864649, -0.0233676, 1.42117, -2.10543, -3.24363, -4.14523, 2.02705, 0.0257498}, {-3.65991, -3.65991, 3.65991, -3.52345, 3.52345, 3.52345, 3.52345, -3.52345, 3.52345, 3.65991, 3.65991, -10.7068}, {-1.02588, -1.02588, -4.04576, 5.15074, -1.89616, -1.23707, -2.74863, 4.29827, 1.25677, -1.37623, -1.37623, 4.02606}, {4, -4, -4, -3.1649, -4.15492, 3.1649, 0, 0, 7.0469, -0.835098, 8.15492, -6.2118}, {4.27497, -6.68514, -1.95466, -0.750905, 7.33275, 1.46136, -3.95428, 3.55351, -2.7068, 0.430212, -4.20112, 3.20009}, {-0.675958, 1.70428, -1.70576, 3.47227, -0.944013, -2.64554, 0.813742, 1.53558, 2.05346, -3.61005, -2.29584, 2.29785}, {-2.9332, 0.268765, -0.269, 0, 1.01807, 2.57142, 0, -3.15223, -0.435397, 2.9332, 1.86539, -1.86702}, {2.9332, -2.86386e-12, 0.906086, 0, 3.2348, -2.30525, 0, -3.2348, -1.73209, -2.9332, 2.86386e-12, 3.13126}, {-1.28032, -3.2348, -0.365321, -3.2348, 3.2348, 1.14798, 0, 0, 4.03735, 4.51512, -4.40815e-12, -4.82}, {4.32811, 0.737725, -1.71304, -3.72649, -3.72649, 1.47492, -0.518804, -0.518804, 4.72046, -0.0828155, 3.50757, -4.48234}, {-5.23939, -3.88578e-16, 0, -3.90017, -3.8953, -2.97758, 3.45213, 3.45065, -1.36448, 5.68742, 0.444645, 4.34205}, {3.45053, 3.45053, -1.3657, 0, -3.59038, 0, 0.444357, 0.444357, 4.33924, -3.89489, -0.304504, -2.97354}, {0, 1.06747e-17, -2.884, -3.22311, 3.25531, -0.327888, -1.29201, -3.25531, 0.417097, 4.51512, 3.75787e-12, 2.79479}, {-0.0130226, -3.25531, 1.20877, -0.260244, 3.25531, 1.50608, 3.12118, 2.59785e-12, -0.952039, -2.84791, -2.3704e-12, -1.76282}, {0.578997, 3.2348, 3.2348, 2.36134, 0, 0, -0.250249, -3.2348, 1.28032, -2.69009, -3.55036e-12, -4.51512}, {-1.12419, -3.2348, -0.186522, 0.812252, -2.04448e-12, -2.60004, -1.39607, 3.2348, -0.0801962, 1.708, 2.2542e-12, 2.86675}, {-3.93279, 1.55848, -1.3088, 1.97526, -0.782753, -1.97415, -1.50913, 5.11867, 1.50188, 3.46666, -5.8944, 1.78108}, {-0.47019, -4.32902, 0.47019, 0.867473, 1.07771, 2.72291, 1.97453, -0.781507, -1.97453, -2.37181, 4.03281, -1.21857}, {-3.45037, 1.36731, 3.44843, 0, 0, -5.23939, 3.89524, 2.97704, -3.89946, -0.444879, -4.34434, 5.69042}, {-3.45053, 1.3657, 3.45053, 3.59038, 0, 0, -0.444357, -4.33924, 0.444357, 0.304504, 2.97354, -3.89489}, {2.40563, -3.3686, -2.16577, -4.01552, 0.313534, -3.06173, -1.35813, -0.303573, 2.96446, 2.96803, 3.35864, 2.26304}, {0.444309, 1.73608, 4.33877, 0, 4.85752, 0, 3.45016, -2.1866, -1.36934, -3.89447, -4.407, -2.96943}, {-1.77354, -2.8259, -5.08017, -1.99992, 2.80049, 1.80052, -0.192763, -1.93544, 1.91528, 3.96622, 1.96086, 1.36437}, {3.41957, -0.149544, 3.15791, -3.35877, 2.12868, 1.33307, 6.03338, 1.03375, -2.39461, -6.09418, -3.0129, -2.09638}, {1.36731, -2.16592, -3.45037, 0, 4.85752, 0, -4.34434, 1.78399, -0.444879, 2.97704, -4.4756, 3.89524}, {-2.95631, -0.302739, 1.37126, 3.02503, 0.309776, 3.95804, 2.1672, -3.36845, -2.40376, -2.23591, 3.36142, -2.92554}, {2.31112, 1.19654, -5.83206, -1.28659, 2.03806, 3.24669, -3.3095, 0.144731, -3.05627, 2.28498, -3.37933, 5.64163}, {-1.96264, -1.84718, 0.269133, -1.79514, 2.79017, 1.99109, 5.26848, -3.1772, 1.46969, -1.5107, 2.23422, -3.72992}, {-0.60788, 3.25394, -0.100754, 4.36982, -1.029, 0.544673, 0.0459483, -1.94609, 2.48692, -3.80789, -0.278843, -2.93084}, {-2.10446, -2.10356, 0.831802, -1.45971, -1.45589, -3.94218, -2.09284, 3.1452, -1.24369, 5.65702, 0.414251, 4.35407}, {3.27119, 4.85191, 0.362578, 0.814367, -4.35925, 0.134979, -0.753128, 2.3313, 2.35448, -3.33243, -2.82396, -2.85204}, {-3.50419, 0, -4.44089e-16, 2.14843, -3.22874, 1.27672, -2.43779, 0.014006, -4.52341, 3.79356, 3.21473, 3.24669}}
   ]
   + total size  : 2.1e+02kB
  ]
  + total size  : 2.1e+02kB
 ]
 
 Vector<double> [
  + id             : grad_on_quad
  + size           : 341
  + nb_component   : 6
  + allocated size : 341
  + memory size    : 16kB
  + values         : {{13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}, {13, 23, 31, 11, 7, 5}}
 ]
 
diff --git a/test/test_fem/test_gradient_triangle_3.verified b/test/test_fem/test_gradient_triangle_3.verified
index 33c14db4e..198cc73dd 100644
--- a/test/test_fem/test_gradient_triangle_3.verified
+++ b/test/test_fem/test_gradient_triangle_3.verified
@@ -1,155 +1,155 @@
 Epsilon : 1e-12
 FEM [
  + id                : my_fem
  + element dimension : 2
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 13
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 8
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
        ]
-        (not_ghost:triangle_3) [
+        (not_ghost:_triangle_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_3
+        + id             : mesh:connectivities:_triangle_3
         + size           : 16
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{3, 9, 6}, {0, 12, 7}, {2, 10, 5}, {1, 11, 4}, {7, 8, 9}, {6, 9, 8}, {6, 8, 10}, {7, 12, 8}, {5, 10, 8}, {4, 8, 12}, {4, 11, 8}, {5, 8, 11}, {0, 4, 12}, {3, 7, 9}, {1, 5, 11}, {2, 6, 10}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 13
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 8
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
        ]
-        (not_ghost:triangle_3) [
+        (not_ghost:_triangle_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_3
+        + id             : mesh:connectivities:_triangle_3
         + size           : 16
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{3, 9, 6}, {0, 12, 7}, {2, 10, 5}, {1, 11, 4}, {7, 8, 9}, {6, 9, 8}, {6, 8, 10}, {7, 12, 8}, {5, 10, 8}, {4, 8, 12}, {4, 11, 8}, {5, 8, 11}, {0, 4, 12}, {3, 7, 9}, {1, 5, 11}, {2, 6, 10}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 7
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_2
+   + id             : mesh:connectivities:_segment_2
    + size           : 8
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:triangle_3
+   + id             : mesh:connectivities:_triangle_3
    + size           : 16
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 23kB
    + values         : {{3, 9, 6}, {0, 12, 7}, {2, 10, 5}, {1, 11, 4}, {7, 8, 9}, {6, 9, 8}, {6, 8, 10}, {7, 12, 8}, {5, 10, 8}, {4, 8, 12}, {4, 11, 8}, {5, 8, 11}, {0, 4, 12}, {3, 7, 9}, {1, 5, 11}, {2, 6, 10}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 13
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:triangle_3
+   + id             : my_fem:jacobians:_triangle_3
    + size           : 16
    + nb_component   : 1
    + allocated size : 16
    + memory size    : 0.12kB
    + values         : {{0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:triangle_3
+   + id             : my_fem:quadrature_points:_triangle_3
    + size           : 1
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0.333333, 0.333333}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:triangle_3
+   + id             : my_fem:shapes:_triangle_3
    + size           : 16
    + nb_component   : 3
    + allocated size : 16
    + memory size    : 0.38kB
    + values         : {{0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:triangle_3
+   + id             : my_fem:shapes_derivatives:_triangle_3
    + size           : 16
    + nb_component   : 6
    + allocated size : 16
    + memory size    : 0.75kB
    + values         : {{-2, 2, 0, -4, 2, 2}, {-2, -2, 4, 0, -2, 2}, {2, 2, -4, 0, 2, -2}, {2, -2, 0, 4, -2, -2}, {-2, -2, 2, -2, 1.04929e-11, 4}, {2, 2, -4, 1.08926e-11, 2, -2}, {-2, 2, -2, -2, 4, -1.08926e-11}, {-2, 2, -1.04929e-11, -4, 2, 2}, {2, -2, 8.43547e-12, 4, -2, -2}, {2, -2, 2, 2, -4, 8.03579e-12}, {-2, -2, 4, -8.03579e-12, -2, 2}, {2, 2, -2, 2, -8.43547e-12, -4}, {-2, -2, 2, -2, 0, 4}, {-2, 2, -2, -2, 4, 0}, {2, -2, 2, 2, -4, 0}, {2, 2, -2, 2, 0, -4}}
   ]
   + total size  : 1e+02kB
  ]
  + total size  : 1e+02kB
 ]
 
 Vector<double> [
  + id             : grad_on_quad
  + size           : 16
  + nb_component   : 4
  + allocated size : 16
  + memory size    : 0.5kB
  + values         : {{13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}}
 ]
 
diff --git a/test/test_fem/test_gradient_triangle_6.verified b/test/test_fem/test_gradient_triangle_6.verified
index c0449195b..ec13b8644 100644
--- a/test/test_fem/test_gradient_triangle_6.verified
+++ b/test/test_fem/test_gradient_triangle_6.verified
@@ -1,155 +1,155 @@
 Epsilon : 1e-12
 FEM [
  + id                : my_fem
  + element dimension : 2
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 41
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}, {0.125, 0.875}, {0.375, 0.875}, {0.125, 0.125}, {0.125, 0.375}, {0.875, 0.875}, {0.875, 0.625}, {0.875, 0.125}, {0.625, 0.125}, {0.25, 0.5}, {0.375, 0.625}, {0.125, 0.625}, {0.5, 0.75}, {0.625, 0.625}, {0.625, 0.875}, {0.375, 0.375}, {0.75, 0.5}, {0.5, 0.25}, {0.375, 0.125}, {0.625, 0.375}, {0.875, 0.375}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 8
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{0, 4, 5}, {4, 1, 6}, {1, 7, 8}, {7, 2, 9}, {2, 10, 11}, {10, 3, 12}, {3, 13, 14}, {13, 0, 15}}
        ]
-        (not_ghost:triangle_6) [
+        (not_ghost:_triangle_6) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_6
+        + id             : mesh:connectivities:_triangle_6
         + size           : 16
         + nb_component   : 6
         + allocated size : 2000
         + memory size    : 47kB
         + values         : {{3, 17, 10, 21, 22, 12}, {0, 20, 13, 23, 24, 15}, {2, 18, 7, 25, 26, 9}, {1, 19, 4, 27, 28, 6}, {13, 16, 17, 29, 30, 31}, {10, 17, 16, 22, 30, 32}, {10, 16, 18, 32, 33, 34}, {13, 20, 16, 24, 35, 29}, {7, 18, 16, 26, 33, 36}, {4, 16, 20, 37, 35, 38}, {4, 19, 16, 28, 39, 37}, {7, 16, 19, 36, 39, 40}, {0, 4, 20, 5, 38, 23}, {3, 13, 17, 14, 31, 21}, {1, 7, 19, 8, 40, 27}, {2, 10, 18, 11, 34, 25}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 41
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}, {0.125, 0.875}, {0.375, 0.875}, {0.125, 0.125}, {0.125, 0.375}, {0.875, 0.875}, {0.875, 0.625}, {0.875, 0.125}, {0.625, 0.125}, {0.25, 0.5}, {0.375, 0.625}, {0.125, 0.625}, {0.5, 0.75}, {0.625, 0.625}, {0.625, 0.875}, {0.375, 0.375}, {0.75, 0.5}, {0.5, 0.25}, {0.375, 0.125}, {0.625, 0.375}, {0.875, 0.375}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 8
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{0, 4, 5}, {4, 1, 6}, {1, 7, 8}, {7, 2, 9}, {2, 10, 11}, {10, 3, 12}, {3, 13, 14}, {13, 0, 15}}
        ]
-        (not_ghost:triangle_6) [
+        (not_ghost:_triangle_6) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_6
+        + id             : mesh:connectivities:_triangle_6
         + size           : 16
         + nb_component   : 6
         + allocated size : 2000
         + memory size    : 47kB
         + values         : {{3, 17, 10, 21, 22, 12}, {0, 20, 13, 23, 24, 15}, {2, 18, 7, 25, 26, 9}, {1, 19, 4, 27, 28, 6}, {13, 16, 17, 29, 30, 31}, {10, 17, 16, 22, 30, 32}, {10, 16, 18, 32, 33, 34}, {13, 20, 16, 24, 35, 29}, {7, 18, 16, 26, 33, 36}, {4, 16, 20, 37, 35, 38}, {4, 19, 16, 28, 39, 37}, {7, 16, 19, 36, 39, 40}, {0, 4, 20, 5, 38, 23}, {3, 13, 17, 14, 31, 21}, {1, 7, 19, 8, 40, 27}, {2, 10, 18, 11, 34, 25}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 7
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_3
+   + id             : mesh:connectivities:_segment_3
    + size           : 8
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 23kB
    + values         : {{0, 4, 5}, {4, 1, 6}, {1, 7, 8}, {7, 2, 9}, {2, 10, 11}, {10, 3, 12}, {3, 13, 14}, {13, 0, 15}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:triangle_6
+   + id             : mesh:connectivities:_triangle_6
    + size           : 16
    + nb_component   : 6
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{3, 17, 10, 21, 22, 12}, {0, 20, 13, 23, 24, 15}, {2, 18, 7, 25, 26, 9}, {1, 19, 4, 27, 28, 6}, {13, 16, 17, 29, 30, 31}, {10, 17, 16, 22, 30, 32}, {10, 16, 18, 32, 33, 34}, {13, 20, 16, 24, 35, 29}, {7, 18, 16, 26, 33, 36}, {4, 16, 20, 37, 35, 38}, {4, 19, 16, 28, 39, 37}, {7, 16, 19, 36, 39, 40}, {0, 4, 20, 5, 38, 23}, {3, 13, 17, 14, 31, 21}, {1, 7, 19, 8, 40, 27}, {2, 10, 18, 11, 34, 25}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 41
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}, {0.125, 0.875}, {0.375, 0.875}, {0.125, 0.125}, {0.125, 0.375}, {0.875, 0.875}, {0.875, 0.625}, {0.875, 0.125}, {0.625, 0.125}, {0.25, 0.5}, {0.375, 0.625}, {0.125, 0.625}, {0.5, 0.75}, {0.625, 0.625}, {0.625, 0.875}, {0.375, 0.375}, {0.75, 0.5}, {0.5, 0.25}, {0.375, 0.125}, {0.625, 0.375}, {0.875, 0.375}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:triangle_6
+   + id             : my_fem:jacobians:_triangle_6
    + size           : 48
    + nb_component   : 1
    + allocated size : 48
    + memory size    : 0.38kB
    + values         : {{0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:triangle_6
+   + id             : my_fem:quadrature_points:_triangle_6
    + size           : 3
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0.166667, 0.166667}, {0.666667, 0.166667}, {0.166667, 0.666667}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:triangle_6
+   + id             : my_fem:shapes:_triangle_6
    + size           : 48
    + nb_component   : 6
    + allocated size : 48
    + memory size    : 2.2kB
    + values         : {{0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:triangle_6
+   + id             : my_fem:shapes_derivatives:_triangle_6
    + size           : 48
    + nb_component   : 12
    + allocated size : 48
    + memory size    : 4.5kB
    + values         : {{-3.33333, 3.33333, 0, 1.33333, -0.666667, -0.666667, -1.33333, -9.33333, 1.33333, -1.33333, 4, 6.66667}, {0.666667, -0.666667, 2.96059e-15, -6.66667, -0.666667, -0.666667, -5.33333, 2.66667, 5.33333, 2.66667, -7.40149e-16, 2.66667}, {0.666667, -0.666667, 0, 1.33333, 3.33333, 3.33333, -1.33333, -1.33333, 1.33333, -9.33333, -4, 6.66667}, {-3.33333, -3.33333, -1.33333, 0, 0.666667, -0.666667, 9.33333, -1.33333, 1.33333, 1.33333, -6.66667, 4}, {0.666667, 0.666667, 6.66667, 0, 0.666667, -0.666667, -2.66667, -5.33333, -2.66667, 5.33333, -2.66667, 4.44089e-16}, {0.666667, 0.666667, -1.33333, 0, -3.33333, 3.33333, 1.33333, -1.33333, 9.33333, 1.33333, -6.66667, -4}, {3.33333, 3.33333, 1.33333, 0, -0.666667, 0.666667, -9.33333, 1.33333, -1.33333, -1.33333, 6.66667, -4}, {-0.666667, -0.666667, -6.66667, -2.96059e-15, -0.666667, 0.666667, 2.66667, 5.33333, 2.66667, -5.33333, 2.66667, 7.40149e-16}, {-0.666667, -0.666667, 1.33333, 0, 3.33333, -3.33333, -1.33333, 1.33333, -9.33333, -1.33333, 6.66667, 4}, {3.33333, -3.33333, 0, -1.33333, 0.666667, 0.666667, 1.33333, 9.33333, -1.33333, 1.33333, -4, -6.66667}, {-0.666667, 0.666667, 0, 6.66667, 0.666667, 0.666667, 5.33333, -2.66667, -5.33333, -2.66667, -4.44089e-16, -2.66667}, {-0.666667, 0.666667, 0, -1.33333, -3.33333, -3.33333, 1.33333, 1.33333, -1.33333, 9.33333, 4, -6.66667}, {-3.33333, -3.33333, -0.666667, 0.666667, -3.49779e-12, -1.33333, 4, -6.66667, 1.33333, 1.33333, -1.33333, 9.33333}, {0.666667, 0.666667, 3.33333, -3.33333, -3.49779e-12, -1.33333, -4, -6.66667, 1.33333, 9.33333, -1.33333, 1.33333}, {0.666667, 0.666667, -0.666667, 0.666667, 1.74912e-11, 6.66667, -6.99581e-12, -2.66667, 5.33333, -2.66667, -5.33333, -2.66667}, {3.33333, 3.33333, 1.33333, -3.63028e-12, -0.666667, 0.666667, -9.33333, 1.33333, -1.33333, -1.33333, 6.66667, -4}, {-0.666667, -0.666667, -6.66667, 1.81499e-11, -0.666667, 0.666667, 2.66667, 5.33333, 2.66667, -5.33333, 2.66667, -7.26041e-12}, {-0.666667, -0.666667, 1.33333, -3.63087e-12, 3.33333, -3.33333, -1.33333, 1.33333, -9.33333, -1.33333, 6.66667, 4}, {-3.33333, 3.33333, 0.666667, 0.666667, -1.33333, 3.63087e-12, -6.66667, -4, 1.33333, -1.33333, 9.33333, 1.33333}, {0.666667, -0.666667, -3.33333, -3.33333, -1.33333, 3.63087e-12, -6.66667, 4, 9.33333, -1.33333, 1.33333, 1.33333}, {0.666667, -0.666667, 0.666667, 0.666667, 6.66667, -1.81544e-11, -2.66667, 7.26108e-12, -2.66667, -5.33333, -2.66667, 5.33333}, {-3.33333, 3.33333, 3.49705e-12, 1.33333, -0.666667, -0.666667, -1.33333, -9.33333, 1.33333, -1.33333, 4, 6.66667}, {0.666667, -0.666667, -1.74868e-11, -6.66667, -0.666667, -0.666667, -5.33333, 2.66667, 5.33333, 2.66667, 6.99515e-12, 2.66667}, {0.666667, -0.666667, 3.49765e-12, 1.33333, 3.33333, 3.33333, -1.33333, -1.33333, 1.33333, -9.33333, -4, 6.66667}, {3.33333, -3.33333, -2.81197e-12, -1.33333, 0.666667, 0.666667, 1.33333, 9.33333, -1.33333, 1.33333, -4, -6.66667}, {-0.666667, 0.666667, 1.40554e-11, 6.66667, 0.666667, 0.666667, 5.33333, -2.66667, -5.33333, -2.66667, -5.62261e-12, -2.66667}, {-0.666667, 0.666667, -2.81197e-12, -1.33333, -3.33333, -3.33333, 1.33333, 1.33333, -1.33333, 9.33333, 4, -6.66667}, {3.33333, -3.33333, -0.666667, -0.666667, 1.33333, -2.67845e-12, 6.66667, 4, -1.33333, 1.33333, -9.33333, -1.33333}, {-0.666667, 0.666667, 3.33333, 3.33333, 1.33333, -2.67904e-12, 6.66667, -4, -9.33333, 1.33333, -1.33333, -1.33333}, {-0.666667, 0.666667, -0.666667, -0.666667, -6.66667, 1.33937e-11, 2.66667, -5.35683e-12, 2.66667, 5.33333, 2.66667, -5.33333}, {-3.33333, -3.33333, -1.33333, 2.67815e-12, 0.666667, -0.666667, 9.33333, -1.33333, 1.33333, 1.33333, -6.66667, 4}, {0.666667, 0.666667, 6.66667, -1.33952e-11, 0.666667, -0.666667, -2.66667, -5.33333, -2.66667, 5.33333, -2.66667, 5.35853e-12}, {0.666667, 0.666667, -1.33333, 2.67904e-12, -3.33333, 3.33333, 1.33333, -1.33333, 9.33333, 1.33333, -6.66667, -4}, {3.33333, 3.33333, 0.666667, -0.666667, 2.81182e-12, 1.33333, -4, 6.66667, -1.33333, -1.33333, 1.33333, -9.33333}, {-0.666667, -0.666667, -3.33333, 3.33333, 2.81182e-12, 1.33333, 4, 6.66667, -1.33333, -9.33333, 1.33333, -1.33333}, {-0.666667, -0.666667, 0.666667, -0.666667, -1.40584e-11, -6.66667, 5.62269e-12, 2.66667, -5.33333, 2.66667, 5.33333, 2.66667}, {-3.33333, -3.33333, -0.666667, 0.666667, 0, -1.33333, 4, -6.66667, 1.33333, 1.33333, -1.33333, 9.33333}, {0.666667, 0.666667, 3.33333, -3.33333, 0, -1.33333, -4, -6.66667, 1.33333, 9.33333, -1.33333, 1.33333}, {0.666667, 0.666667, -0.666667, 0.666667, 0, 6.66667, 6.66134e-16, -2.66667, 5.33333, -2.66667, -5.33333, -2.66667}, {-3.33333, 3.33333, 0.666667, 0.666667, -1.33333, 0, -6.66667, -4, 1.33333, -1.33333, 9.33333, 1.33333}, {0.666667, -0.666667, -3.33333, -3.33333, -1.33333, 0, -6.66667, 4, 9.33333, -1.33333, 1.33333, 1.33333}, {0.666667, -0.666667, 0.666667, 0.666667, 6.66667, 0, -2.66667, -6.66134e-16, -2.66667, -5.33333, -2.66667, 5.33333}, {3.33333, -3.33333, -0.666667, -0.666667, 1.33333, 0, 6.66667, 4, -1.33333, 1.33333, -9.33333, -1.33333}, {-0.666667, 0.666667, 3.33333, 3.33333, 1.33333, 0, 6.66667, -4, -9.33333, 1.33333, -1.33333, -1.33333}, {-0.666667, 0.666667, -0.666667, -0.666667, -6.66667, 0, 2.66667, 6.66134e-16, 2.66667, 5.33333, 2.66667, -5.33333}, {3.33333, 3.33333, 0.666667, -0.666667, 0, 1.33333, -4, 6.66667, -1.33333, -1.33333, 1.33333, -9.33333}, {-0.666667, -0.666667, -3.33333, 3.33333, 0, 1.33333, 4, 6.66667, -1.33333, -9.33333, 1.33333, -1.33333}, {-0.666667, -0.666667, 0.666667, -0.666667, 0, -6.66667, -6.66134e-16, 2.66667, -5.33333, 2.66667, 5.33333, 2.66667}}
   ]
   + total size  : 1.4e+02kB
  ]
  + total size  : 1.4e+02kB
 ]
 
 Vector<double> [
  + id             : grad_on_quad
  + size           : 48
  + nb_component   : 4
  + allocated size : 48
  + memory size    : 1.5kB
  + values         : {{13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}, {13, 23, 11, 7}}
 ]
 
diff --git a/test/test_fem/test_integrate_hexahedron_8.verified b/test/test_fem/test_integrate_hexahedron_8.verified
index 1144d48d7..28a15b81e 100644
--- a/test/test_fem/test_integrate_hexahedron_8.verified
+++ b/test/test_fem/test_integrate_hexahedron_8.verified
@@ -1,172 +1,172 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 3
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 125
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.25, 0.75, 1}, {0.25, 0.5, 1}, {0.25, 0.25, 1}, {0.5, 0.75, 1}, {0.5, 0.5, 1}, {0.5, 0.25, 1}, {0.75, 0.75, 1}, {0.75, 0.5, 1}, {0.75, 0.25, 1}, {0.75, 1, 0.25}, {0.75, 1, 0.5}, {0.75, 1, 0.75}, {0.5, 1, 0.25}, {0.5, 1, 0.5}, {0.5, 1, 0.75}, {0.25, 1, 0.25}, {0.25, 1, 0.5}, {0.25, 1, 0.75}, {0.25, 0, 0.75}, {0.25, 0, 0.5}, {0.25, 0, 0.25}, {0.5, 0, 0.75}, {0.5, 0, 0.5}, {0.5, 0, 0.25}, {0.75, 0, 0.75}, {0.75, 0, 0.5}, {0.75, 0, 0.25}, {0.75, 0.75, 0}, {0.75, 0.5, 0}, {0.75, 0.25, 0}, {0.5, 0.75, 0}, {0.5, 0.5, 0}, {0.5, 0.25, 0}, {0.25, 0.75, 0}, {0.25, 0.5, 0}, {0.25, 0.25, 0}, {0, 0.75, 0.25}, {0, 0.5, 0.25}, {0, 0.25, 0.25}, {0, 0.75, 0.5}, {0, 0.5, 0.5}, {0, 0.25, 0.5}, {0, 0.75, 0.75}, {0, 0.5, 0.75}, {0, 0.25, 0.75}, {1, 0.75, 0.75}, {1, 0.75, 0.5}, {1, 0.75, 0.25}, {1, 0.5, 0.75}, {1, 0.5, 0.5}, {1, 0.5, 0.25}, {1, 0.25, 0.75}, {1, 0.25, 0.5}, {1, 0.25, 0.25}, {0.75, 0.75, 0.75}, {0.5, 0.75, 0.75}, {0.25, 0.75, 0.75}, {0.75, 0.75, 0.5}, {0.5, 0.75, 0.5}, {0.25, 0.75, 0.5}, {0.75, 0.75, 0.25}, {0.5, 0.75, 0.25}, {0.25, 0.75, 0.25}, {0.75, 0.5, 0.75}, {0.5, 0.5, 0.75}, {0.25, 0.5, 0.75}, {0.75, 0.5, 0.5}, {0.5, 0.5, 0.5}, {0.25, 0.5, 0.5}, {0.75, 0.5, 0.25}, {0.5, 0.5, 0.25}, {0.25, 0.5, 0.25}, {0.75, 0.25, 0.75}, {0.5, 0.25, 0.75}, {0.25, 0.25, 0.75}, {0.75, 0.25, 0.5}, {0.5, 0.25, 0.5}, {0.25, 0.25, 0.5}, {0.75, 0.25, 0.25}, {0.5, 0.25, 0.25}, {0.25, 0.25, 0.25}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 48
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
        ]
-        (not_ghost:quadrangle_4) [
+        (not_ghost:_quadrangle_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_4
+        + id             : mesh:connectivities:_quadrangle_4
         + size           : 96
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{6, 8, 44, 35}, {35, 44, 45, 36}, {36, 45, 46, 37}, {37, 46, 23, 4}, {8, 9, 47, 44}, {44, 47, 48, 45}, {45, 48, 49, 46}, {46, 49, 24, 23}, {9, 10, 50, 47}, {47, 50, 51, 48}, {48, 51, 52, 49}, {49, 52, 25, 24}, {10, 7, 38, 50}, {50, 38, 39, 51}, {51, 39, 40, 52}, {52, 40, 5, 25}, {3, 14, 53, 13}, {13, 53, 54, 12}, {12, 54, 55, 11}, {11, 55, 10, 7}, {14, 15, 56, 53}, {53, 56, 57, 54}, {54, 57, 58, 55}, {55, 58, 9, 10}, {15, 16, 59, 56}, {56, 59, 60, 57}, {57, 60, 61, 58}, {58, 61, 8, 9}, {16, 2, 17, 59}, {59, 17, 18, 60}, {60, 18, 19, 61}, {61, 19, 6, 8}, {4, 23, 62, 22}, {22, 62, 63, 21}, {21, 63, 64, 20}, {20, 64, 31, 0}, {23, 24, 65, 62}, {62, 65, 66, 63}, {63, 66, 67, 64}, {64, 67, 30, 31}, {24, 25, 68, 65}, {65, 68, 69, 66}, {66, 69, 70, 67}, {67, 70, 29, 30}, {25, 5, 26, 68}, {68, 26, 27, 69}, {69, 27, 28, 70}, {70, 28, 1, 29}, {3, 14, 71, 41}, {41, 71, 72, 42}, {42, 72, 73, 43}, {43, 73, 29, 1}, {14, 15, 74, 71}, {71, 74, 75, 72}, {72, 75, 76, 73}, {73, 76, 30, 29}, {15, 16, 77, 74}, {74, 77, 78, 75}, {75, 78, 79, 76}, {76, 79, 31, 30}, {16, 2, 32, 77}, {77, 32, 33, 78}, {78, 33, 34, 79}, {79, 34, 0, 31}, {2, 17, 80, 32}, {32, 80, 81, 33}, {33, 81, 82, 34}, {34, 82, 20, 0}, {17, 18, 83, 80}, {80, 83, 84, 81}, {81, 84, 85, 82}, {82, 85, 21, 20}, {18, 19, 86, 83}, {83, 86, 87, 84}, {84, 87, 88, 85}, {85, 88, 22, 21}, {19, 6, 35, 86}, {86, 35, 36, 87}, {87, 36, 37, 88}, {88, 37, 4, 22}, {7, 38, 89, 11}, {11, 89, 90, 12}, {12, 90, 91, 13}, {13, 91, 41, 3}, {38, 39, 92, 89}, {89, 92, 93, 90}, {90, 93, 94, 91}, {91, 94, 42, 41}, {39, 40, 95, 92}, {92, 95, 96, 93}, {93, 96, 97, 94}, {94, 97, 43, 42}, {40, 5, 26, 95}, {95, 26, 27, 96}, {96, 27, 28, 97}, {97, 28, 1, 43}}
        ]
-        (not_ghost:hexahedron_8) [
+        (not_ghost:_hexahedron_8) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:hexahedron_8
+        + id             : mesh:connectivities:_hexahedron_8
         + size           : 64
         + nb_component   : 8
         + allocated size : 2000
         + memory size    : 62kB
         + values         : {{89, 38, 7, 11, 98, 50, 10, 55}, {98, 50, 10, 55, 99, 47, 9, 58}, {99, 47, 9, 58, 100, 44, 8, 61}, {100, 44, 8, 61, 86, 35, 6, 19}, {90, 89, 11, 12, 101, 98, 55, 54}, {101, 98, 55, 54, 102, 99, 58, 57}, {102, 99, 58, 57, 103, 100, 61, 60}, {103, 100, 61, 60, 83, 86, 19, 18}, {91, 90, 12, 13, 104, 101, 54, 53}, {104, 101, 54, 53, 105, 102, 57, 56}, {105, 102, 57, 56, 106, 103, 60, 59}, {106, 103, 60, 59, 80, 83, 18, 17}, {41, 91, 13, 3, 71, 104, 53, 14}, {71, 104, 53, 14, 74, 105, 56, 15}, {74, 105, 56, 15, 77, 106, 59, 16}, {77, 106, 59, 16, 32, 80, 17, 2}, {92, 39, 38, 89, 107, 51, 50, 98}, {107, 51, 50, 98, 108, 48, 47, 99}, {108, 48, 47, 99, 109, 45, 44, 100}, {109, 45, 44, 100, 87, 36, 35, 86}, {93, 92, 89, 90, 110, 107, 98, 101}, {110, 107, 98, 101, 111, 108, 99, 102}, {111, 108, 99, 102, 112, 109, 100, 103}, {112, 109, 100, 103, 84, 87, 86, 83}, {94, 93, 90, 91, 113, 110, 101, 104}, {113, 110, 101, 104, 114, 111, 102, 105}, {114, 111, 102, 105, 115, 112, 103, 106}, {115, 112, 103, 106, 81, 84, 83, 80}, {42, 94, 91, 41, 72, 113, 104, 71}, {72, 113, 104, 71, 75, 114, 105, 74}, {75, 114, 105, 74, 78, 115, 106, 77}, {78, 115, 106, 77, 33, 81, 80, 32}, {95, 40, 39, 92, 116, 52, 51, 107}, {116, 52, 51, 107, 117, 49, 48, 108}, {117, 49, 48, 108, 118, 46, 45, 109}, {118, 46, 45, 109, 88, 37, 36, 87}, {96, 95, 92, 93, 119, 116, 107, 110}, {119, 116, 107, 110, 120, 117, 108, 111}, {120, 117, 108, 111, 121, 118, 109, 112}, {121, 118, 109, 112, 85, 88, 87, 84}, {97, 96, 93, 94, 122, 119, 110, 113}, {122, 119, 110, 113, 123, 120, 111, 114}, {123, 120, 111, 114, 124, 121, 112, 115}, {124, 121, 112, 115, 82, 85, 84, 81}, {43, 97, 94, 42, 73, 122, 113, 72}, {73, 122, 113, 72, 76, 123, 114, 75}, {76, 123, 114, 75, 79, 124, 115, 78}, {79, 124, 115, 78, 34, 82, 81, 33}, {26, 5, 40, 95, 68, 25, 52, 116}, {68, 25, 52, 116, 65, 24, 49, 117}, {65, 24, 49, 117, 62, 23, 46, 118}, {62, 23, 46, 118, 22, 4, 37, 88}, {27, 26, 95, 96, 69, 68, 116, 119}, {69, 68, 116, 119, 66, 65, 117, 120}, {66, 65, 117, 120, 63, 62, 118, 121}, {63, 62, 118, 121, 21, 22, 88, 85}, {28, 27, 96, 97, 70, 69, 119, 122}, {70, 69, 119, 122, 67, 66, 120, 123}, {67, 66, 120, 123, 64, 63, 121, 124}, {64, 63, 121, 124, 20, 21, 85, 82}, {1, 28, 97, 43, 29, 70, 122, 73}, {29, 70, 122, 73, 30, 67, 123, 76}, {30, 67, 123, 76, 31, 64, 124, 79}, {31, 64, 124, 79, 0, 20, 82, 34}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 125
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.25, 0.75, 1}, {0.25, 0.5, 1}, {0.25, 0.25, 1}, {0.5, 0.75, 1}, {0.5, 0.5, 1}, {0.5, 0.25, 1}, {0.75, 0.75, 1}, {0.75, 0.5, 1}, {0.75, 0.25, 1}, {0.75, 1, 0.25}, {0.75, 1, 0.5}, {0.75, 1, 0.75}, {0.5, 1, 0.25}, {0.5, 1, 0.5}, {0.5, 1, 0.75}, {0.25, 1, 0.25}, {0.25, 1, 0.5}, {0.25, 1, 0.75}, {0.25, 0, 0.75}, {0.25, 0, 0.5}, {0.25, 0, 0.25}, {0.5, 0, 0.75}, {0.5, 0, 0.5}, {0.5, 0, 0.25}, {0.75, 0, 0.75}, {0.75, 0, 0.5}, {0.75, 0, 0.25}, {0.75, 0.75, 0}, {0.75, 0.5, 0}, {0.75, 0.25, 0}, {0.5, 0.75, 0}, {0.5, 0.5, 0}, {0.5, 0.25, 0}, {0.25, 0.75, 0}, {0.25, 0.5, 0}, {0.25, 0.25, 0}, {0, 0.75, 0.25}, {0, 0.5, 0.25}, {0, 0.25, 0.25}, {0, 0.75, 0.5}, {0, 0.5, 0.5}, {0, 0.25, 0.5}, {0, 0.75, 0.75}, {0, 0.5, 0.75}, {0, 0.25, 0.75}, {1, 0.75, 0.75}, {1, 0.75, 0.5}, {1, 0.75, 0.25}, {1, 0.5, 0.75}, {1, 0.5, 0.5}, {1, 0.5, 0.25}, {1, 0.25, 0.75}, {1, 0.25, 0.5}, {1, 0.25, 0.25}, {0.75, 0.75, 0.75}, {0.5, 0.75, 0.75}, {0.25, 0.75, 0.75}, {0.75, 0.75, 0.5}, {0.5, 0.75, 0.5}, {0.25, 0.75, 0.5}, {0.75, 0.75, 0.25}, {0.5, 0.75, 0.25}, {0.25, 0.75, 0.25}, {0.75, 0.5, 0.75}, {0.5, 0.5, 0.75}, {0.25, 0.5, 0.75}, {0.75, 0.5, 0.5}, {0.5, 0.5, 0.5}, {0.25, 0.5, 0.5}, {0.75, 0.5, 0.25}, {0.5, 0.5, 0.25}, {0.25, 0.5, 0.25}, {0.75, 0.25, 0.75}, {0.5, 0.25, 0.75}, {0.25, 0.25, 0.75}, {0.75, 0.25, 0.5}, {0.5, 0.25, 0.5}, {0.25, 0.25, 0.5}, {0.75, 0.25, 0.25}, {0.5, 0.25, 0.25}, {0.25, 0.25, 0.25}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 48
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
        ]
-        (not_ghost:quadrangle_4) [
+        (not_ghost:_quadrangle_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_4
+        + id             : mesh:connectivities:_quadrangle_4
         + size           : 96
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{6, 8, 44, 35}, {35, 44, 45, 36}, {36, 45, 46, 37}, {37, 46, 23, 4}, {8, 9, 47, 44}, {44, 47, 48, 45}, {45, 48, 49, 46}, {46, 49, 24, 23}, {9, 10, 50, 47}, {47, 50, 51, 48}, {48, 51, 52, 49}, {49, 52, 25, 24}, {10, 7, 38, 50}, {50, 38, 39, 51}, {51, 39, 40, 52}, {52, 40, 5, 25}, {3, 14, 53, 13}, {13, 53, 54, 12}, {12, 54, 55, 11}, {11, 55, 10, 7}, {14, 15, 56, 53}, {53, 56, 57, 54}, {54, 57, 58, 55}, {55, 58, 9, 10}, {15, 16, 59, 56}, {56, 59, 60, 57}, {57, 60, 61, 58}, {58, 61, 8, 9}, {16, 2, 17, 59}, {59, 17, 18, 60}, {60, 18, 19, 61}, {61, 19, 6, 8}, {4, 23, 62, 22}, {22, 62, 63, 21}, {21, 63, 64, 20}, {20, 64, 31, 0}, {23, 24, 65, 62}, {62, 65, 66, 63}, {63, 66, 67, 64}, {64, 67, 30, 31}, {24, 25, 68, 65}, {65, 68, 69, 66}, {66, 69, 70, 67}, {67, 70, 29, 30}, {25, 5, 26, 68}, {68, 26, 27, 69}, {69, 27, 28, 70}, {70, 28, 1, 29}, {3, 14, 71, 41}, {41, 71, 72, 42}, {42, 72, 73, 43}, {43, 73, 29, 1}, {14, 15, 74, 71}, {71, 74, 75, 72}, {72, 75, 76, 73}, {73, 76, 30, 29}, {15, 16, 77, 74}, {74, 77, 78, 75}, {75, 78, 79, 76}, {76, 79, 31, 30}, {16, 2, 32, 77}, {77, 32, 33, 78}, {78, 33, 34, 79}, {79, 34, 0, 31}, {2, 17, 80, 32}, {32, 80, 81, 33}, {33, 81, 82, 34}, {34, 82, 20, 0}, {17, 18, 83, 80}, {80, 83, 84, 81}, {81, 84, 85, 82}, {82, 85, 21, 20}, {18, 19, 86, 83}, {83, 86, 87, 84}, {84, 87, 88, 85}, {85, 88, 22, 21}, {19, 6, 35, 86}, {86, 35, 36, 87}, {87, 36, 37, 88}, {88, 37, 4, 22}, {7, 38, 89, 11}, {11, 89, 90, 12}, {12, 90, 91, 13}, {13, 91, 41, 3}, {38, 39, 92, 89}, {89, 92, 93, 90}, {90, 93, 94, 91}, {91, 94, 42, 41}, {39, 40, 95, 92}, {92, 95, 96, 93}, {93, 96, 97, 94}, {94, 97, 43, 42}, {40, 5, 26, 95}, {95, 26, 27, 96}, {96, 27, 28, 97}, {97, 28, 1, 43}}
        ]
-        (not_ghost:hexahedron_8) [
+        (not_ghost:_hexahedron_8) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:hexahedron_8
+        + id             : mesh:connectivities:_hexahedron_8
         + size           : 64
         + nb_component   : 8
         + allocated size : 2000
         + memory size    : 62kB
         + values         : {{89, 38, 7, 11, 98, 50, 10, 55}, {98, 50, 10, 55, 99, 47, 9, 58}, {99, 47, 9, 58, 100, 44, 8, 61}, {100, 44, 8, 61, 86, 35, 6, 19}, {90, 89, 11, 12, 101, 98, 55, 54}, {101, 98, 55, 54, 102, 99, 58, 57}, {102, 99, 58, 57, 103, 100, 61, 60}, {103, 100, 61, 60, 83, 86, 19, 18}, {91, 90, 12, 13, 104, 101, 54, 53}, {104, 101, 54, 53, 105, 102, 57, 56}, {105, 102, 57, 56, 106, 103, 60, 59}, {106, 103, 60, 59, 80, 83, 18, 17}, {41, 91, 13, 3, 71, 104, 53, 14}, {71, 104, 53, 14, 74, 105, 56, 15}, {74, 105, 56, 15, 77, 106, 59, 16}, {77, 106, 59, 16, 32, 80, 17, 2}, {92, 39, 38, 89, 107, 51, 50, 98}, {107, 51, 50, 98, 108, 48, 47, 99}, {108, 48, 47, 99, 109, 45, 44, 100}, {109, 45, 44, 100, 87, 36, 35, 86}, {93, 92, 89, 90, 110, 107, 98, 101}, {110, 107, 98, 101, 111, 108, 99, 102}, {111, 108, 99, 102, 112, 109, 100, 103}, {112, 109, 100, 103, 84, 87, 86, 83}, {94, 93, 90, 91, 113, 110, 101, 104}, {113, 110, 101, 104, 114, 111, 102, 105}, {114, 111, 102, 105, 115, 112, 103, 106}, {115, 112, 103, 106, 81, 84, 83, 80}, {42, 94, 91, 41, 72, 113, 104, 71}, {72, 113, 104, 71, 75, 114, 105, 74}, {75, 114, 105, 74, 78, 115, 106, 77}, {78, 115, 106, 77, 33, 81, 80, 32}, {95, 40, 39, 92, 116, 52, 51, 107}, {116, 52, 51, 107, 117, 49, 48, 108}, {117, 49, 48, 108, 118, 46, 45, 109}, {118, 46, 45, 109, 88, 37, 36, 87}, {96, 95, 92, 93, 119, 116, 107, 110}, {119, 116, 107, 110, 120, 117, 108, 111}, {120, 117, 108, 111, 121, 118, 109, 112}, {121, 118, 109, 112, 85, 88, 87, 84}, {97, 96, 93, 94, 122, 119, 110, 113}, {122, 119, 110, 113, 123, 120, 111, 114}, {123, 120, 111, 114, 124, 121, 112, 115}, {124, 121, 112, 115, 82, 85, 84, 81}, {43, 97, 94, 42, 73, 122, 113, 72}, {73, 122, 113, 72, 76, 123, 114, 75}, {76, 123, 114, 75, 79, 124, 115, 78}, {79, 124, 115, 78, 34, 82, 81, 33}, {26, 5, 40, 95, 68, 25, 52, 116}, {68, 25, 52, 116, 65, 24, 49, 117}, {65, 24, 49, 117, 62, 23, 46, 118}, {62, 23, 46, 118, 22, 4, 37, 88}, {27, 26, 95, 96, 69, 68, 116, 119}, {69, 68, 116, 119, 66, 65, 117, 120}, {66, 65, 117, 120, 63, 62, 118, 121}, {63, 62, 118, 121, 21, 22, 88, 85}, {28, 27, 96, 97, 70, 69, 119, 122}, {70, 69, 119, 122, 67, 66, 120, 123}, {67, 66, 120, 123, 64, 63, 121, 124}, {64, 63, 121, 124, 20, 21, 85, 82}, {1, 28, 97, 43, 29, 70, 122, 73}, {29, 70, 122, 73, 30, 67, 123, 76}, {30, 67, 123, 76, 31, 64, 124, 79}, {31, 64, 124, 79, 0, 20, 82, 34}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 8
   Vector<unsigned int> [
-   + id             : mesh:connectivities:hexahedron_8
+   + id             : mesh:connectivities:_hexahedron_8
    + size           : 64
    + nb_component   : 8
    + allocated size : 2000
    + memory size    : 62kB
    + values         : {{89, 38, 7, 11, 98, 50, 10, 55}, {98, 50, 10, 55, 99, 47, 9, 58}, {99, 47, 9, 58, 100, 44, 8, 61}, {100, 44, 8, 61, 86, 35, 6, 19}, {90, 89, 11, 12, 101, 98, 55, 54}, {101, 98, 55, 54, 102, 99, 58, 57}, {102, 99, 58, 57, 103, 100, 61, 60}, {103, 100, 61, 60, 83, 86, 19, 18}, {91, 90, 12, 13, 104, 101, 54, 53}, {104, 101, 54, 53, 105, 102, 57, 56}, {105, 102, 57, 56, 106, 103, 60, 59}, {106, 103, 60, 59, 80, 83, 18, 17}, {41, 91, 13, 3, 71, 104, 53, 14}, {71, 104, 53, 14, 74, 105, 56, 15}, {74, 105, 56, 15, 77, 106, 59, 16}, {77, 106, 59, 16, 32, 80, 17, 2}, {92, 39, 38, 89, 107, 51, 50, 98}, {107, 51, 50, 98, 108, 48, 47, 99}, {108, 48, 47, 99, 109, 45, 44, 100}, {109, 45, 44, 100, 87, 36, 35, 86}, {93, 92, 89, 90, 110, 107, 98, 101}, {110, 107, 98, 101, 111, 108, 99, 102}, {111, 108, 99, 102, 112, 109, 100, 103}, {112, 109, 100, 103, 84, 87, 86, 83}, {94, 93, 90, 91, 113, 110, 101, 104}, {113, 110, 101, 104, 114, 111, 102, 105}, {114, 111, 102, 105, 115, 112, 103, 106}, {115, 112, 103, 106, 81, 84, 83, 80}, {42, 94, 91, 41, 72, 113, 104, 71}, {72, 113, 104, 71, 75, 114, 105, 74}, {75, 114, 105, 74, 78, 115, 106, 77}, {78, 115, 106, 77, 33, 81, 80, 32}, {95, 40, 39, 92, 116, 52, 51, 107}, {116, 52, 51, 107, 117, 49, 48, 108}, {117, 49, 48, 108, 118, 46, 45, 109}, {118, 46, 45, 109, 88, 37, 36, 87}, {96, 95, 92, 93, 119, 116, 107, 110}, {119, 116, 107, 110, 120, 117, 108, 111}, {120, 117, 108, 111, 121, 118, 109, 112}, {121, 118, 109, 112, 85, 88, 87, 84}, {97, 96, 93, 94, 122, 119, 110, 113}, {122, 119, 110, 113, 123, 120, 111, 114}, {123, 120, 111, 114, 124, 121, 112, 115}, {124, 121, 112, 115, 82, 85, 84, 81}, {43, 97, 94, 42, 73, 122, 113, 72}, {73, 122, 113, 72, 76, 123, 114, 75}, {76, 123, 114, 75, 79, 124, 115, 78}, {79, 124, 115, 78, 34, 82, 81, 33}, {26, 5, 40, 95, 68, 25, 52, 116}, {68, 25, 52, 116, 65, 24, 49, 117}, {65, 24, 49, 117, 62, 23, 46, 118}, {62, 23, 46, 118, 22, 4, 37, 88}, {27, 26, 95, 96, 69, 68, 116, 119}, {69, 68, 116, 119, 66, 65, 117, 120}, {66, 65, 117, 120, 63, 62, 118, 121}, {63, 62, 118, 121, 21, 22, 88, 85}, {28, 27, 96, 97, 70, 69, 119, 122}, {70, 69, 119, 122, 67, 66, 120, 123}, {67, 66, 120, 123, 64, 63, 121, 124}, {64, 63, 121, 124, 20, 21, 85, 82}, {1, 28, 97, 43, 29, 70, 122, 73}, {29, 70, 122, 73, 30, 67, 123, 76}, {30, 67, 123, 76, 31, 64, 124, 79}, {31, 64, 124, 79, 0, 20, 82, 34}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:quadrangle_4
+   + id             : mesh:connectivities:_quadrangle_4
    + size           : 96
    + nb_component   : 4
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{6, 8, 44, 35}, {35, 44, 45, 36}, {36, 45, 46, 37}, {37, 46, 23, 4}, {8, 9, 47, 44}, {44, 47, 48, 45}, {45, 48, 49, 46}, {46, 49, 24, 23}, {9, 10, 50, 47}, {47, 50, 51, 48}, {48, 51, 52, 49}, {49, 52, 25, 24}, {10, 7, 38, 50}, {50, 38, 39, 51}, {51, 39, 40, 52}, {52, 40, 5, 25}, {3, 14, 53, 13}, {13, 53, 54, 12}, {12, 54, 55, 11}, {11, 55, 10, 7}, {14, 15, 56, 53}, {53, 56, 57, 54}, {54, 57, 58, 55}, {55, 58, 9, 10}, {15, 16, 59, 56}, {56, 59, 60, 57}, {57, 60, 61, 58}, {58, 61, 8, 9}, {16, 2, 17, 59}, {59, 17, 18, 60}, {60, 18, 19, 61}, {61, 19, 6, 8}, {4, 23, 62, 22}, {22, 62, 63, 21}, {21, 63, 64, 20}, {20, 64, 31, 0}, {23, 24, 65, 62}, {62, 65, 66, 63}, {63, 66, 67, 64}, {64, 67, 30, 31}, {24, 25, 68, 65}, {65, 68, 69, 66}, {66, 69, 70, 67}, {67, 70, 29, 30}, {25, 5, 26, 68}, {68, 26, 27, 69}, {69, 27, 28, 70}, {70, 28, 1, 29}, {3, 14, 71, 41}, {41, 71, 72, 42}, {42, 72, 73, 43}, {43, 73, 29, 1}, {14, 15, 74, 71}, {71, 74, 75, 72}, {72, 75, 76, 73}, {73, 76, 30, 29}, {15, 16, 77, 74}, {74, 77, 78, 75}, {75, 78, 79, 76}, {76, 79, 31, 30}, {16, 2, 32, 77}, {77, 32, 33, 78}, {78, 33, 34, 79}, {79, 34, 0, 31}, {2, 17, 80, 32}, {32, 80, 81, 33}, {33, 81, 82, 34}, {34, 82, 20, 0}, {17, 18, 83, 80}, {80, 83, 84, 81}, {81, 84, 85, 82}, {82, 85, 21, 20}, {18, 19, 86, 83}, {83, 86, 87, 84}, {84, 87, 88, 85}, {85, 88, 22, 21}, {19, 6, 35, 86}, {86, 35, 36, 87}, {87, 36, 37, 88}, {88, 37, 4, 22}, {7, 38, 89, 11}, {11, 89, 90, 12}, {12, 90, 91, 13}, {13, 91, 41, 3}, {38, 39, 92, 89}, {89, 92, 93, 90}, {90, 93, 94, 91}, {91, 94, 42, 41}, {39, 40, 95, 92}, {92, 95, 96, 93}, {93, 96, 97, 94}, {94, 97, 43, 42}, {40, 5, 26, 95}, {95, 26, 27, 96}, {96, 27, 28, 97}, {97, 28, 1, 43}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_2
+   + id             : mesh:connectivities:_segment_2
    + size           : 48
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 125
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.25, 0.75, 1}, {0.25, 0.5, 1}, {0.25, 0.25, 1}, {0.5, 0.75, 1}, {0.5, 0.5, 1}, {0.5, 0.25, 1}, {0.75, 0.75, 1}, {0.75, 0.5, 1}, {0.75, 0.25, 1}, {0.75, 1, 0.25}, {0.75, 1, 0.5}, {0.75, 1, 0.75}, {0.5, 1, 0.25}, {0.5, 1, 0.5}, {0.5, 1, 0.75}, {0.25, 1, 0.25}, {0.25, 1, 0.5}, {0.25, 1, 0.75}, {0.25, 0, 0.75}, {0.25, 0, 0.5}, {0.25, 0, 0.25}, {0.5, 0, 0.75}, {0.5, 0, 0.5}, {0.5, 0, 0.25}, {0.75, 0, 0.75}, {0.75, 0, 0.5}, {0.75, 0, 0.25}, {0.75, 0.75, 0}, {0.75, 0.5, 0}, {0.75, 0.25, 0}, {0.5, 0.75, 0}, {0.5, 0.5, 0}, {0.5, 0.25, 0}, {0.25, 0.75, 0}, {0.25, 0.5, 0}, {0.25, 0.25, 0}, {0, 0.75, 0.25}, {0, 0.5, 0.25}, {0, 0.25, 0.25}, {0, 0.75, 0.5}, {0, 0.5, 0.5}, {0, 0.25, 0.5}, {0, 0.75, 0.75}, {0, 0.5, 0.75}, {0, 0.25, 0.75}, {1, 0.75, 0.75}, {1, 0.75, 0.5}, {1, 0.75, 0.25}, {1, 0.5, 0.75}, {1, 0.5, 0.5}, {1, 0.5, 0.25}, {1, 0.25, 0.75}, {1, 0.25, 0.5}, {1, 0.25, 0.25}, {0.75, 0.75, 0.75}, {0.5, 0.75, 0.75}, {0.25, 0.75, 0.75}, {0.75, 0.75, 0.5}, {0.5, 0.75, 0.5}, {0.25, 0.75, 0.5}, {0.75, 0.75, 0.25}, {0.5, 0.75, 0.25}, {0.25, 0.75, 0.25}, {0.75, 0.5, 0.75}, {0.5, 0.5, 0.75}, {0.25, 0.5, 0.75}, {0.75, 0.5, 0.5}, {0.5, 0.5, 0.5}, {0.25, 0.5, 0.5}, {0.75, 0.5, 0.25}, {0.5, 0.5, 0.25}, {0.25, 0.5, 0.25}, {0.75, 0.25, 0.75}, {0.5, 0.25, 0.75}, {0.25, 0.25, 0.75}, {0.75, 0.25, 0.5}, {0.5, 0.25, 0.5}, {0.25, 0.25, 0.5}, {0.75, 0.25, 0.25}, {0.5, 0.25, 0.25}, {0.25, 0.25, 0.25}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:hexahedron_8
+   + id             : my_fem:jacobians:_hexahedron_8
    + size           : 512
    + nb_component   : 1
    + allocated size : 512
    + memory size    : 4kB
    + values         : {{0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:hexahedron_8
+   + id             : my_fem:quadrature_points:_hexahedron_8
    + size           : 8
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{-0.57735, -0.57735, -0.57735}, {0.57735, -0.57735, -0.57735}, {0.57735, 0.57735, -0.57735}, {-0.57735, 0.57735, -0.57735}, {-0.57735, -0.57735, 0.57735}, {0.57735, -0.57735, 0.57735}, {0.57735, 0.57735, 0.57735}, {-0.57735, 0.57735, 0.57735}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:hexahedron_8
+   + id             : my_fem:shapes:_hexahedron_8
    + size           : 512
    + nb_component   : 8
    + allocated size : 512
    + memory size    : 32kB
    + values         : {{0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:hexahedron_8
+   + id             : my_fem:shapes_derivatives:_hexahedron_8
    + size           : 512
    + nb_component   : 24
    + allocated size : 512
    + memory size    : 96kB
    + values         : {{2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}}
   ]
   + total size  : 3.4e+02kB
  ]
  + total size  : 3.4e+02kB
 ]
 
diff --git a/test/test_fem/test_integrate_quadrangle_4.verified b/test/test_fem/test_integrate_quadrangle_4.verified
index 9ac3bea0a..31c13234c 100644
--- a/test/test_fem/test_integrate_quadrangle_4.verified
+++ b/test/test_fem/test_integrate_quadrangle_4.verified
@@ -1,146 +1,146 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 2
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 9
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 8
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
        ]
-        (not_ghost:quadrangle_4) [
+        (not_ghost:_quadrangle_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_4
+        + id             : mesh:connectivities:_quadrangle_4
         + size           : 4
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{2, 6, 8, 5}, {5, 8, 4, 1}, {6, 3, 7, 8}, {8, 7, 0, 4}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 9
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 8
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
        ]
-        (not_ghost:quadrangle_4) [
+        (not_ghost:_quadrangle_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_4
+        + id             : mesh:connectivities:_quadrangle_4
         + size           : 4
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{2, 6, 8, 5}, {5, 8, 4, 1}, {6, 3, 7, 8}, {8, 7, 0, 4}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 7
   Vector<unsigned int> [
-   + id             : mesh:connectivities:quadrangle_4
+   + id             : mesh:connectivities:_quadrangle_4
    + size           : 4
    + nb_component   : 4
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{2, 6, 8, 5}, {5, 8, 4, 1}, {6, 3, 7, 8}, {8, 7, 0, 4}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_2
+   + id             : mesh:connectivities:_segment_2
    + size           : 8
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 9
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:quadrangle_4
+   + id             : my_fem:jacobians:_quadrangle_4
    + size           : 16
    + nb_component   : 1
    + allocated size : 16
    + memory size    : 0.12kB
    + values         : {{0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:quadrangle_4
+   + id             : my_fem:quadrature_points:_quadrangle_4
    + size           : 4
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{-0.57735, -0.57735}, {0.57735, -0.57735}, {0.57735, 0.57735}, {-0.57735, 0.57735}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:quadrangle_4
+   + id             : my_fem:shapes:_quadrangle_4
    + size           : 16
    + nb_component   : 4
    + allocated size : 16
    + memory size    : 0.5kB
    + values         : {{0.622008, 0.166667, 0.0446582, 0.166667}, {0.166667, 0.622008, 0.166667, 0.0446582}, {0.0446582, 0.166667, 0.622008, 0.166667}, {0.166667, 0.0446582, 0.166667, 0.622008}, {0.622008, 0.166667, 0.0446582, 0.166667}, {0.166667, 0.622008, 0.166667, 0.0446582}, {0.0446582, 0.166667, 0.622008, 0.166667}, {0.166667, 0.0446582, 0.166667, 0.622008}, {0.622008, 0.166667, 0.0446582, 0.166667}, {0.166667, 0.622008, 0.166667, 0.0446582}, {0.0446582, 0.166667, 0.622008, 0.166667}, {0.166667, 0.0446582, 0.166667, 0.622008}, {0.622008, 0.166667, 0.0446582, 0.166667}, {0.166667, 0.622008, 0.166667, 0.0446582}, {0.0446582, 0.166667, 0.622008, 0.166667}, {0.166667, 0.0446582, 0.166667, 0.622008}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:quadrangle_4
+   + id             : my_fem:shapes_derivatives:_quadrangle_4
    + size           : 16
    + nb_component   : 8
    + allocated size : 16
    + memory size    : 1kB
    + values         : {{1.57735, 1.57735, -1.57735, 0.42265, -0.42265, -0.42265, 0.42265, -1.57735}, {1.57735, 0.42265, -1.57735, 1.57735, -0.42265, -1.57735, 0.42265, -0.42265}, {0.42265, 0.42265, -0.42265, 1.57735, -1.57735, -1.57735, 1.57735, -0.42265}, {0.42265, 1.57735, -0.42265, 0.42265, -1.57735, -0.42265, 1.57735, -1.57735}, {1.57735, 1.57735, -1.57735, 0.42265, -0.42265, -0.42265, 0.42265, -1.57735}, {1.57735, 0.42265, -1.57735, 1.57735, -0.42265, -1.57735, 0.42265, -0.42265}, {0.42265, 0.42265, -0.42265, 1.57735, -1.57735, -1.57735, 1.57735, -0.42265}, {0.42265, 1.57735, -0.42265, 0.42265, -1.57735, -0.42265, 1.57735, -1.57735}, {1.57735, 1.57735, -1.57735, 0.42265, -0.42265, -0.42265, 0.42265, -1.57735}, {1.57735, 0.42265, -1.57735, 1.57735, -0.42265, -1.57735, 0.42265, -0.42265}, {0.42265, 0.42265, -0.42265, 1.57735, -1.57735, -1.57735, 1.57735, -0.42265}, {0.42265, 1.57735, -0.42265, 0.42265, -1.57735, -0.42265, 1.57735, -1.57735}, {1.57735, 1.57735, -1.57735, 0.42265, -0.42265, -0.42265, 0.42265, -1.57735}, {1.57735, 0.42265, -1.57735, 1.57735, -0.42265, -1.57735, 0.42265, -0.42265}, {0.42265, 0.42265, -0.42265, 1.57735, -1.57735, -1.57735, 1.57735, -0.42265}, {0.42265, 1.57735, -0.42265, 0.42265, -1.57735, -0.42265, 1.57735, -1.57735}}
   ]
   + total size  : 1.1e+02kB
  ]
  + total size  : 1.1e+02kB
 ]
 
diff --git a/test/test_fem/test_integrate_quadrangle_8.verified b/test/test_fem/test_integrate_quadrangle_8.verified
index cb8d91a25..113e85a70 100644
--- a/test/test_fem/test_integrate_quadrangle_8.verified
+++ b/test/test_fem/test_integrate_quadrangle_8.verified
@@ -1,120 +1,120 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 2
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 21
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.5, 0.75}, {0.75, 0.5}, {0.5, 0.25}, {0.25, 0.5}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:quadrangle_8) [
+        (not_ghost:_quadrangle_8) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_8
+        + id             : mesh:connectivities:_quadrangle_8
         + size           : 4
         + nb_component   : 8
         + allocated size : 2000
         + memory size    : 62kB
         + values         : {{2, 10, 16, 7, 11, 17, 18, 9}, {7, 16, 4, 1, 18, 19, 6, 8}, {10, 3, 13, 16, 12, 14, 20, 17}, {16, 13, 0, 4, 20, 15, 5, 19}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 21
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.5, 0.75}, {0.75, 0.5}, {0.5, 0.25}, {0.25, 0.5}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:quadrangle_8) [
+        (not_ghost:_quadrangle_8) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_8
+        + id             : mesh:connectivities:_quadrangle_8
         + size           : 4
         + nb_component   : 8
         + allocated size : 2000
         + memory size    : 62kB
         + values         : {{2, 10, 16, 7, 11, 17, 18, 9}, {7, 16, 4, 1, 18, 19, 6, 8}, {10, 3, 13, 16, 12, 14, 20, 17}, {16, 13, 0, 4, 20, 15, 5, 19}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 6
   Vector<unsigned int> [
-   + id             : mesh:connectivities:quadrangle_8
+   + id             : mesh:connectivities:_quadrangle_8
    + size           : 4
    + nb_component   : 8
    + allocated size : 2000
    + memory size    : 62kB
    + values         : {{2, 10, 16, 7, 11, 17, 18, 9}, {7, 16, 4, 1, 18, 19, 6, 8}, {10, 3, 13, 16, 12, 14, 20, 17}, {16, 13, 0, 4, 20, 15, 5, 19}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 21
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.5, 0.75}, {0.75, 0.5}, {0.5, 0.25}, {0.25, 0.5}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:quadrangle_8
+   + id             : my_fem:jacobians:_quadrangle_8
    + size           : 36
    + nb_component   : 1
    + allocated size : 36
    + memory size    : 0.28kB
    + values         : {{0.0493827}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0493827}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0493827}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0493827}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0308642}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:quadrangle_8
+   + id             : my_fem:quadrature_points:_quadrangle_8
    + size           : 9
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0, 0}, {0.774597, 0.774597}, {-0.774597, 0.774597}, {-0.774597, -0.774597}, {0.774597, -0.774597}, {0, 0.774597}, {-0.774597, 0}, {0, -0.774597}, {0.774597, 0}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:quadrangle_8
+   + id             : my_fem:shapes:_quadrangle_8
    + size           : 36
    + nb_component   : 8
    + allocated size : 36
    + memory size    : 2.2kB
    + values         : {{-0.25, -0.25, -0.25, -0.25, 0.5, 0.5, 0.5, 0.5}, {-0.032379, -0.1, 0.432379, -0.1, 0.0450807, 0.354919, 0.354919, 0.0450807}, {-0.1, -0.032379, -0.1, 0.432379, 0.0450807, 0.0450807, 0.354919, 0.354919}, {0.432379, -0.1, -0.032379, -0.1, 0.354919, 0.0450807, 0.0450807, 0.354919}, {-0.1, 0.432379, -0.1, -0.032379, 0.354919, 0.354919, 0.0450807, 0.0450807}, {-0.1, -0.1, -0.1, -0.1, 0.112702, 0.2, 0.887298, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.112702, 0.2, 0.887298}, {-0.1, -0.1, -0.1, -0.1, 0.887298, 0.2, 0.112702, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.887298, 0.2, 0.112702}, {-0.25, -0.25, -0.25, -0.25, 0.5, 0.5, 0.5, 0.5}, {-0.032379, -0.1, 0.432379, -0.1, 0.0450807, 0.354919, 0.354919, 0.0450807}, {-0.1, -0.032379, -0.1, 0.432379, 0.0450807, 0.0450807, 0.354919, 0.354919}, {0.432379, -0.1, -0.032379, -0.1, 0.354919, 0.0450807, 0.0450807, 0.354919}, {-0.1, 0.432379, -0.1, -0.032379, 0.354919, 0.354919, 0.0450807, 0.0450807}, {-0.1, -0.1, -0.1, -0.1, 0.112702, 0.2, 0.887298, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.112702, 0.2, 0.887298}, {-0.1, -0.1, -0.1, -0.1, 0.887298, 0.2, 0.112702, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.887298, 0.2, 0.112702}, {-0.25, -0.25, -0.25, -0.25, 0.5, 0.5, 0.5, 0.5}, {-0.032379, -0.1, 0.432379, -0.1, 0.0450807, 0.354919, 0.354919, 0.0450807}, {-0.1, -0.032379, -0.1, 0.432379, 0.0450807, 0.0450807, 0.354919, 0.354919}, {0.432379, -0.1, -0.032379, -0.1, 0.354919, 0.0450807, 0.0450807, 0.354919}, {-0.1, 0.432379, -0.1, -0.032379, 0.354919, 0.354919, 0.0450807, 0.0450807}, {-0.1, -0.1, -0.1, -0.1, 0.112702, 0.2, 0.887298, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.112702, 0.2, 0.887298}, {-0.1, -0.1, -0.1, -0.1, 0.887298, 0.2, 0.112702, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.887298, 0.2, 0.112702}, {-0.25, -0.25, -0.25, -0.25, 0.5, 0.5, 0.5, 0.5}, {-0.032379, -0.1, 0.432379, -0.1, 0.0450807, 0.354919, 0.354919, 0.0450807}, {-0.1, -0.032379, -0.1, 0.432379, 0.0450807, 0.0450807, 0.354919, 0.354919}, {0.432379, -0.1, -0.032379, -0.1, 0.354919, 0.0450807, 0.0450807, 0.354919}, {-0.1, 0.432379, -0.1, -0.032379, 0.354919, 0.354919, 0.0450807, 0.0450807}, {-0.1, -0.1, -0.1, -0.1, 0.112702, 0.2, 0.887298, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.112702, 0.2, 0.887298}, {-0.1, -0.1, -0.1, -0.1, 0.887298, 0.2, 0.112702, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.887298, 0.2, 0.112702}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:quadrangle_8
+   + id             : my_fem:shapes_derivatives:_quadrangle_8
    + size           : 36
    + nb_component   : 16
    + allocated size : 36
    + memory size    : 4.5kB
    + values         : {{0, 0, 0, 0, 0, 0, 0, 0, 2.36611e-12, 2, -2, 1.88161e-12, -2.36611e-12, -2, 2, -1.88161e-12}, {-0.52379, -0.52379, -0.174597, -1.3746, -4.12379, -4.12379, -1.3746, -0.174597, 0.698387, 0.8, -0.8, 5.49839, 5.49839, -0.8, 0.8, 0.698387}, {0.174597, -1.3746, 0.52379, -0.52379, 1.3746, -0.174597, 4.12379, -4.12379, -0.698387, 0.8, -0.8, 0.698387, -5.49839, -0.8, 0.8, 5.49839}, {4.12379, 4.12379, 1.3746, 0.174597, 0.52379, 0.52379, 0.174597, 1.3746, -5.49839, 0.8, -0.8, -0.698387, -0.698387, -0.8, 0.8, -5.49839}, {-1.3746, 0.174597, -4.12379, 4.12379, -0.174597, 1.3746, -0.52379, 0.52379, 5.49839, 0.8, -0.8, -5.49839, 0.698387, -0.8, 0.8, -0.698387}, {-0.174597, -1.54919, 0.174597, -1.54919, -1.3746, -1.54919, 1.3746, -1.54919, 4.19886e-12, 2, -0.8, 3.09839, -4.19886e-12, -2, 0.8, 3.09839}, {1.54919, 1.3746, 1.54919, -0.174597, 1.54919, 0.174597, 1.54919, -1.3746, -3.09839, 0.8, -2, 3.39506e-13, -3.09839, -0.8, 2, -3.39506e-13}, {1.3746, 1.54919, -1.3746, 1.54919, 0.174597, 1.54919, -0.174597, 1.54919, 5.33573e-13, 2, -0.8, -3.09839, -5.33573e-13, -2, 0.8, -3.09839}, {-1.54919, -0.174597, -1.54919, 1.3746, -1.54919, -1.3746, -1.54919, 0.174597, 3.09839, 0.8, -2, 4.0048e-12, 3.09839, -0.8, 2, -4.0048e-12}, {0, 0, 0, 0, 0, 0, 0, 0, 2.07689e-12, 2, -2, 2.36611e-12, -2.07689e-12, -2, 2, -2.36611e-12}, {-0.52379, -0.52379, -0.174597, -1.3746, -4.12379, -4.12379, -1.3746, -0.174597, 0.698387, 0.8, -0.8, 5.49839, 5.49839, -0.8, 0.8, 0.698387}, {0.174597, -1.3746, 0.52379, -0.52379, 1.3746, -0.174597, 4.12379, -4.12379, -0.698387, 0.8, -0.8, 0.698387, -5.49839, -0.8, 0.8, 5.49839}, {4.12379, 4.12379, 1.3746, 0.174597, 0.52379, 0.52379, 0.174597, 1.3746, -5.49839, 0.8, -0.8, -0.698387, -0.698387, -0.8, 0.8, -5.49839}, {-1.3746, 0.174597, -4.12379, 4.12379, -0.174597, 1.3746, -0.52379, 0.52379, 5.49839, 0.8, -0.8, -5.49839, 0.698387, -0.8, 0.8, -0.698387}, {-0.174597, -1.54919, 0.174597, -1.54919, -1.3746, -1.54919, 1.3746, -1.54919, 4.17666e-13, 2, -0.8, 3.09839, -4.17666e-13, -2, 0.8, 3.09839}, {1.54919, 1.3746, 1.54919, -0.174597, 1.54919, 0.174597, 1.54919, -1.3746, -3.09839, 0.8, -2, 5.33573e-13, -3.09839, -0.8, 2, -5.33573e-13}, {1.3746, 1.54919, -1.3746, 1.54919, 0.174597, 1.54919, -0.174597, 1.54919, 4.08307e-12, 2, -0.8, -3.09839, -4.08307e-12, -2, 0.8, -3.09839}, {-1.54919, -0.174597, -1.54919, 1.3746, -1.54919, -1.3746, -1.54919, 0.174597, 3.09839, 0.8, -2, 4.19864e-12, 3.09839, -0.8, 2, -4.19864e-12}, {0, 0, 0, 0, 0, 0, 0, 0, 1.88161e-12, 2, -2, 2.36589e-12, -1.88161e-12, -2, 2, -2.36589e-12}, {-0.52379, -0.52379, -0.174597, -1.3746, -4.12379, -4.12379, -1.3746, -0.174597, 0.698387, 0.8, -0.8, 5.49839, 5.49839, -0.8, 0.8, 0.698387}, {0.174597, -1.3746, 0.52379, -0.52379, 1.3746, -0.174597, 4.12379, -4.12379, -0.698387, 0.8, -0.8, 0.698387, -5.49839, -0.8, 0.8, 5.49839}, {4.12379, 4.12379, 1.3746, 0.174597, 0.52379, 0.52379, 0.174597, 1.3746, -5.49839, 0.8, -0.8, -0.698387, -0.698387, -0.8, 0.8, -5.49839}, {-1.3746, 0.174597, -4.12379, 4.12379, -0.174597, 1.3746, -0.52379, 0.52379, 5.49839, 0.8, -0.8, -5.49839, 0.698387, -0.8, 0.8, -0.698387}, {-0.174597, -1.54919, 0.174597, -1.54919, -1.3746, -1.54919, 1.3746, -1.54919, 4.0048e-12, 2, -0.8, 3.09839, -4.0048e-12, -2, 0.8, 3.09839}, {1.54919, 1.3746, 1.54919, -0.174597, 1.54919, 0.174597, 1.54919, -1.3746, -3.09839, 0.8, -2, 4.19864e-12, -3.09839, -0.8, 2, -4.19864e-12}, {1.3746, 1.54919, -1.3746, 1.54919, 0.174597, 1.54919, -0.174597, 1.54919, 3.39284e-13, 2, -0.8, -3.09839, -3.39284e-13, -2, 0.8, -3.09839}, {-1.54919, -0.174597, -1.54919, 1.3746, -1.54919, -1.3746, -1.54919, 0.174597, 3.09839, 0.8, -2, 5.3324e-13, 3.09839, -0.8, 2, -5.3324e-13}, {0, 0, 0, 0, 0, 0, 0, 0, 2.36589e-12, 2, -2, 2.07689e-12, -2.36589e-12, -2, 2, -2.07689e-12}, {-0.52379, -0.52379, -0.174597, -1.3746, -4.12379, -4.12379, -1.3746, -0.174597, 0.698387, 0.8, -0.8, 5.49839, 5.49839, -0.8, 0.8, 0.698387}, {0.174597, -1.3746, 0.52379, -0.52379, 1.3746, -0.174597, 4.12379, -4.12379, -0.698387, 0.8, -0.8, 0.698387, -5.49839, -0.8, 0.8, 5.49839}, {4.12379, 4.12379, 1.3746, 0.174597, 0.52379, 0.52379, 0.174597, 1.3746, -5.49839, 0.8, -0.8, -0.698387, -0.698387, -0.8, 0.8, -5.49839}, {-1.3746, 0.174597, -4.12379, 4.12379, -0.174597, 1.3746, -0.52379, 0.52379, 5.49839, 0.8, -0.8, -5.49839, 0.698387, -0.8, 0.8, -0.698387}, {-0.174597, -1.54919, 0.174597, -1.54919, -1.3746, -1.54919, 1.3746, -1.54919, 5.3324e-13, 2, -0.8, 3.09839, -5.3324e-13, -2, 0.8, 3.09839}, {1.54919, 1.3746, 1.54919, -0.174597, 1.54919, 0.174597, 1.54919, -1.3746, -3.09839, 0.8, -2, 4.08307e-12, -3.09839, -0.8, 2, -4.08307e-12}, {1.3746, 1.54919, -1.3746, 1.54919, 0.174597, 1.54919, -0.174597, 1.54919, 4.19864e-12, 2, -0.8, -3.09839, -4.19864e-12, -2, 0.8, -3.09839}, {-1.54919, -0.174597, -1.54919, 1.3746, -1.54919, -1.3746, -1.54919, 0.174597, 3.09839, 0.8, -2, 4.17666e-13, 3.09839, -0.8, 2, -4.17666e-13}}
   ]
   + total size  : 1.3e+02kB
  ]
  + total size  : 1.3e+02kB
 ]
 
diff --git a/test/test_fem/test_integrate_segment_2.verified b/test/test_fem/test_integrate_segment_2.verified
index d374f2544..fe601f882 100644
--- a/test/test_fem/test_integrate_segment_2.verified
+++ b/test/test_fem/test_integrate_segment_2.verified
@@ -1,120 +1,120 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 1
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 1
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 11
      + nb_component   : 1
      + allocated size : 2000
      + memory size    : 16kB
      + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 10
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 2}, {2, 3}, {3, 4}, {4, 5}, {5, 6}, {6, 7}, {7, 8}, {8, 9}, {9, 10}, {10, 1}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 1
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 11
      + nb_component   : 1
      + allocated size : 2000
      + memory size    : 16kB
      + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 10
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 2}, {2, 3}, {3, 4}, {4, 5}, {5, 6}, {6, 7}, {7, 8}, {8, 9}, {9, 10}, {10, 1}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 6
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_2
+   + id             : mesh:connectivities:_segment_2
    + size           : 10
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0, 2}, {2, 3}, {3, 4}, {4, 5}, {5, 6}, {6, 7}, {7, 8}, {8, 9}, {9, 10}, {10, 1}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 11
    + nb_component   : 1
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:segment_2
+   + id             : my_fem:jacobians:_segment_2
    + size           : 10
    + nb_component   : 1
    + allocated size : 10
    + memory size    : 0.078kB
    + values         : {{0.1}, {0.1}, {0.1}, {0.1}, {0.1}, {0.1}, {0.1}, {0.1}, {0.1}, {0.1}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:segment_2
+   + id             : my_fem:quadrature_points:_segment_2
    + size           : 1
    + nb_component   : 1
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:segment_2
+   + id             : my_fem:shapes:_segment_2
    + size           : 10
    + nb_component   : 2
    + allocated size : 10
    + memory size    : 0.16kB
    + values         : {{0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:segment_2
+   + id             : my_fem:shapes_derivatives:_segment_2
    + size           : 10
    + nb_component   : 2
    + allocated size : 10
    + memory size    : 0.16kB
    + values         : {{-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}}
   ]
   + total size  : 47kB
  ]
  + total size  : 47kB
 ]
 
diff --git a/test/test_fem/test_integrate_segment_3.verified b/test/test_fem/test_integrate_segment_3.verified
index 218d2eb4d..78786579b 100644
--- a/test/test_fem/test_integrate_segment_3.verified
+++ b/test/test_fem/test_integrate_segment_3.verified
@@ -1,120 +1,120 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 1
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 1
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 21
      + nb_component   : 1
      + allocated size : 2000
      + memory size    : 16kB
      + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}, {0.05}, {0.15}, {0.25}, {0.35}, {0.45}, {0.55}, {0.65}, {0.75}, {0.85}, {0.95}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 10
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{0, 2, 11}, {2, 3, 12}, {3, 4, 13}, {4, 5, 14}, {5, 6, 15}, {6, 7, 16}, {7, 8, 17}, {8, 9, 18}, {9, 10, 19}, {10, 1, 20}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 1
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 21
      + nb_component   : 1
      + allocated size : 2000
      + memory size    : 16kB
      + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}, {0.05}, {0.15}, {0.25}, {0.35}, {0.45}, {0.55}, {0.65}, {0.75}, {0.85}, {0.95}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 10
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{0, 2, 11}, {2, 3, 12}, {3, 4, 13}, {4, 5, 14}, {5, 6, 15}, {6, 7, 16}, {7, 8, 17}, {8, 9, 18}, {9, 10, 19}, {10, 1, 20}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 6
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_3
+   + id             : mesh:connectivities:_segment_3
    + size           : 10
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 23kB
    + values         : {{0, 2, 11}, {2, 3, 12}, {3, 4, 13}, {4, 5, 14}, {5, 6, 15}, {6, 7, 16}, {7, 8, 17}, {8, 9, 18}, {9, 10, 19}, {10, 1, 20}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 21
    + nb_component   : 1
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}, {0.05}, {0.15}, {0.25}, {0.35}, {0.45}, {0.55}, {0.65}, {0.75}, {0.85}, {0.95}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:segment_3
+   + id             : my_fem:jacobians:_segment_3
    + size           : 20
    + nb_component   : 1
    + allocated size : 20
    + memory size    : 0.16kB
    + values         : {{0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:segment_3
+   + id             : my_fem:quadrature_points:_segment_3
    + size           : 2
    + nb_component   : 1
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{-0.57735}, {0.57735}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:segment_3
+   + id             : my_fem:shapes:_segment_3
    + size           : 20
    + nb_component   : 3
    + allocated size : 20
    + memory size    : 0.47kB
    + values         : {{0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:segment_3
+   + id             : my_fem:shapes_derivatives:_segment_3
    + size           : 20
    + nb_component   : 3
    + allocated size : 20
    + memory size    : 0.47kB
    + values         : {{-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}}
   ]
   + total size  : 56kB
  ]
  + total size  : 56kB
 ]
 
diff --git a/test/test_fem/test_integrate_tetrahedron_10.verified b/test/test_fem/test_integrate_tetrahedron_10.verified
index 5de98c2f8..1b2450abe 100644
--- a/test/test_fem/test_integrate_tetrahedron_10.verified
+++ b/test/test_fem/test_integrate_tetrahedron_10.verified
@@ -1,172 +1,172 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 3
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 722
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {0.125, 1, 1}, {0.375, 1, 1}, {0.625, 1, 1}, {0.875, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {1, 1, 0.875}, {1, 1, 0.625}, {1, 1, 0.375}, {1, 1, 0.125}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0.875, 1, 0}, {0.625, 1, 0}, {0.375, 1, 0}, {0.125, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 1, 0.125}, {0, 1, 0.375}, {0, 1, 0.625}, {0, 1, 0.875}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0, 0, 0.125}, {0, 0, 0.375}, {0, 0, 0.625}, {0, 0, 0.875}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {0.125, 0, 1}, {0.375, 0, 1}, {0.625, 0, 1}, {0.875, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {1, 0, 0.875}, {1, 0, 0.625}, {1, 0, 0.375}, {1, 0, 0.125}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0.875, 0, 0}, {0.625, 0, 0}, {0.375, 0, 0}, {0.125, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.875, 0}, {0, 0.625, 0}, {0, 0.375, 0}, {0, 0.125, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {0, 0.875, 1}, {0, 0.625, 1}, {0, 0.375, 1}, {0, 0.125, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.875, 1}, {1, 0.625, 1}, {1, 0.375, 1}, {1, 0.125, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {1, 0.875, 0}, {1, 0.625, 0}, {1, 0.375, 0}, {1, 0.125, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.234692, 0.610874, 1}, {0.095431, 0.625135, 1}, {0.139261, 0.735739, 1}, {0.264261, 0.860739, 1}, {0.375, 0.904691, 1}, {0.389261, 0.76543, 1}, {0.860739, 0.735739, 1}, {0.904569, 0.625135, 1}, {0.765308, 0.610874, 1}, {0.264261, 0.139383, 1}, {0.389261, 0.234962, 1}, {0.375, 0.0955798, 1}, {0.610739, 0.76543, 1}, {0.625, 0.904691, 1}, {0.735739, 0.860739, 1}, {0.095431, 0.375135, 1}, {0.234692, 0.389518, 1}, {0.139261, 0.264383, 1}, {0.625, 0.0955798, 1}, {0.610739, 0.234962, 1}, {0.735739, 0.139383, 1}, {0.860739, 0.264383, 1}, {0.765308, 0.389518, 1}, {0.904569, 0.375135, 1}, {0.095431, 0.500135, 1}, {0.904569, 0.500135, 1}, {0.5, 0.904691, 1}, {0.5, 0.0955798, 1}, {0.389261, 0.611834, 1}, {0.345431, 0.501231, 1}, {0.5, 0.655786, 1}, {0.610739, 0.611834, 1}, {0.389261, 0.390478, 1}, {0.654569, 0.501231, 1}, {0.5, 0.346675, 1}, {0.610739, 0.390478, 1}, {0.0709532, 0.804047, 1}, {0.210214, 0.789786, 1}, {0.195953, 0.929047, 1}, {0.789786, 0.789786, 1}, {0.929047, 0.804047, 1}, {0.195953, 0.0709735, 1}, {0.210214, 0.210356, 1}, {0.804047, 0.929047, 1}, {0.0709532, 0.195973, 1}, {0.789786, 0.210356, 1}, {0.804047, 0.0709735, 1}, {0.929047, 0.195973, 1}, {0.0709532, 0.0709735, 1}, {0.0709532, 0.929047, 1}, {0.929047, 0.929047, 1}, {0.929047, 0.0709735, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.904569, 1, 0.625}, {0.765308, 1, 0.610739}, {0.860739, 1, 0.735739}, {0.625, 1, 0.095431}, {0.610739, 1, 0.234692}, {0.735739, 1, 0.139261}, {0.375, 1, 0.904569}, {0.389261, 1, 0.765308}, {0.264261, 1, 0.860739}, {0.095431, 1, 0.375}, {0.234692, 1, 0.389261}, {0.139261, 1, 0.264261}, {0.735739, 1, 0.860739}, {0.610739, 1, 0.765308}, {0.625, 1, 0.904569}, {0.139261, 1, 0.735739}, {0.234692, 1, 0.610739}, {0.095431, 1, 0.625}, {0.860739, 1, 0.264261}, {0.765308, 1, 0.389261}, {0.904569, 1, 0.375}, {0.264261, 1, 0.139261}, {0.389261, 1, 0.234692}, {0.375, 1, 0.095431}, {0.5, 1, 0.095431}, {0.904569, 1, 0.5}, {0.095431, 1, 0.5}, {0.5, 1, 0.904569}, {0.654569, 1, 0.5}, {0.610739, 1, 0.610739}, {0.610739, 1, 0.389261}, {0.5, 1, 0.345431}, {0.389261, 1, 0.389261}, {0.5, 1, 0.654569}, {0.389261, 1, 0.610739}, {0.345431, 1, 0.5}, {0.789786, 1, 0.789786}, {0.929047, 1, 0.804047}, {0.789786, 1, 0.210214}, {0.804047, 1, 0.0709532}, {0.210214, 1, 0.789786}, {0.195953, 1, 0.929047}, {0.210214, 1, 0.210214}, {0.0709532, 1, 0.195953}, {0.804047, 1, 0.929047}, {0.0709532, 1, 0.804047}, {0.929047, 1, 0.195953}, {0.195953, 1, 0.0709532}, {0.0709532, 1, 0.0709532}, {0.929047, 1, 0.0709532}, {0.0709532, 1, 0.929047}, {0.929047, 1, 0.929047}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.904691, 0, 0.625}, {0.76543, 0, 0.610739}, {0.860739, 0, 0.735739}, {0.625135, 0, 0.095431}, {0.610874, 0, 0.234692}, {0.735739, 0, 0.139261}, {0.375135, 0, 0.904569}, {0.389518, 0, 0.765308}, {0.264383, 0, 0.860739}, {0.0955798, 0, 0.375}, {0.234962, 0, 0.389261}, {0.139383, 0, 0.264261}, {0.735739, 0, 0.860739}, {0.610874, 0, 0.765308}, {0.625135, 0, 0.904569}, {0.139383, 0, 0.735739}, {0.234962, 0, 0.610739}, {0.0955798, 0, 0.625}, {0.860739, 0, 0.264261}, {0.76543, 0, 0.389261}, {0.904691, 0, 0.375}, {0.264383, 0, 0.139261}, {0.389518, 0, 0.234692}, {0.375135, 0, 0.095431}, {0.500135, 0, 0.095431}, {0.904691, 0, 0.5}, {0.0955798, 0, 0.5}, {0.500135, 0, 0.904569}, {0.655786, 0, 0.5}, {0.611834, 0, 0.610739}, {0.611834, 0, 0.389261}, {0.501231, 0, 0.345431}, {0.390478, 0, 0.389261}, {0.501231, 0, 0.654569}, {0.390478, 0, 0.610739}, {0.346675, 0, 0.5}, {0.789786, 0, 0.789786}, {0.929047, 0, 0.804047}, {0.789786, 0, 0.210214}, {0.804047, 0, 0.0709532}, {0.210356, 0, 0.789786}, {0.195973, 0, 0.929047}, {0.210356, 0, 0.210214}, {0.0709735, 0, 0.195953}, {0.804047, 0, 0.929047}, {0.0709735, 0, 0.804047}, {0.929047, 0, 0.195953}, {0.195973, 0, 0.0709532}, {0.0709735, 0, 0.0709532}, {0.929047, 0, 0.0709532}, {0.0709735, 0, 0.929047}, {0.929047, 0, 0.929047}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0.860739, 0.735739, 0}, {0.765308, 0.610739, 0}, {0.904569, 0.625, 0}, {0.625, 0.904569, 0}, {0.610739, 0.765308, 0}, {0.735739, 0.860739, 0}, {0.735739, 0.139261, 0}, {0.610739, 0.234692, 0}, {0.625, 0.095431, 0}, {0.095431, 0.625, 0}, {0.234692, 0.610739, 0}, {0.139261, 0.735739, 0}, {0.264261, 0.860739, 0}, {0.389261, 0.765308, 0}, {0.375, 0.904569, 0}, {0.904569, 0.375, 0}, {0.765308, 0.389261, 0}, {0.860739, 0.264261, 0}, {0.139261, 0.264261, 0}, {0.234692, 0.389261, 0}, {0.095431, 0.375, 0}, {0.375, 0.095431, 0}, {0.389261, 0.234692, 0}, {0.264261, 0.139261, 0}, {0.904569, 0.5, 0}, {0.5, 0.904569, 0}, {0.5, 0.095431, 0}, {0.095431, 0.5, 0}, {0.5, 0.654569, 0}, {0.610739, 0.610739, 0}, {0.654569, 0.5, 0}, {0.389261, 0.610739, 0}, {0.610739, 0.389261, 0}, {0.345431, 0.5, 0}, {0.5, 0.345431, 0}, {0.389261, 0.389261, 0}, {0.789786, 0.789786, 0}, {0.804047, 0.929047, 0}, {0.929047, 0.804047, 0}, {0.804047, 0.0709532, 0}, {0.789786, 0.210214, 0}, {0.210214, 0.789786, 0}, {0.0709532, 0.804047, 0}, {0.929047, 0.195953, 0}, {0.195953, 0.929047, 0}, {0.210214, 0.210214, 0}, {0.195953, 0.0709532, 0}, {0.0709532, 0.195953, 0}, {0.929047, 0.0709532, 0}, {0.0709532, 0.929047, 0}, {0.929047, 0.929047, 0}, {0.0709532, 0.0709532, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {0, 0.735739, 0.139261}, {0, 0.610739, 0.234692}, {0, 0.625, 0.095431}, {0, 0.904569, 0.375}, {0, 0.765308, 0.389261}, {0, 0.860739, 0.264261}, {0, 0.625, 0.904569}, {0, 0.610739, 0.765308}, {0, 0.735739, 0.860739}, {0, 0.139261, 0.264261}, {0, 0.234692, 0.389261}, {0, 0.095431, 0.375}, {0, 0.860739, 0.735739}, {0, 0.765308, 0.610739}, {0, 0.904569, 0.625}, {0, 0.375, 0.095431}, {0, 0.389261, 0.234692}, {0, 0.264261, 0.139261}, {0, 0.095431, 0.625}, {0, 0.234692, 0.610739}, {0, 0.139261, 0.735739}, {0, 0.264261, 0.860739}, {0, 0.389261, 0.765308}, {0, 0.375, 0.904569}, {0, 0.5, 0.095431}, {0, 0.5, 0.904569}, {0, 0.904569, 0.5}, {0, 0.095431, 0.5}, {0, 0.610739, 0.389261}, {0, 0.5, 0.345431}, {0, 0.654569, 0.5}, {0, 0.610739, 0.610739}, {0, 0.389261, 0.389261}, {0, 0.5, 0.654569}, {0, 0.345431, 0.5}, {0, 0.389261, 0.610739}, {0, 0.804047, 0.0709532}, {0, 0.789786, 0.210214}, {0, 0.929047, 0.195953}, {0, 0.789786, 0.789786}, {0, 0.804047, 0.929047}, {0, 0.0709532, 0.195953}, {0, 0.210214, 0.210214}, {0, 0.929047, 0.804047}, {0, 0.195953, 0.0709532}, {0, 0.210214, 0.789786}, {0, 0.0709532, 0.804047}, {0, 0.195953, 0.929047}, {0, 0.0709532, 0.0709532}, {0, 0.929047, 0.0709532}, {0, 0.929047, 0.929047}, {0, 0.0709532, 0.929047}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {1, 0.860678, 0.735678}, {1, 0.76518, 0.610611}, {1, 0.904501, 0.624932}, {1, 0.624932, 0.904501}, {1, 0.610611, 0.76518}, {1, 0.735678, 0.860678}, {1, 0.0953701, 0.624939}, {1, 0.234631, 0.610678}, {1, 0.139261, 0.735739}, {1, 0.735739, 0.139261}, {1, 0.610678, 0.234631}, {1, 0.624939, 0.0953701}, {1, 0.904501, 0.374932}, {1, 0.76524, 0.389193}, {1, 0.860739, 0.264261}, {1, 0.264261, 0.860739}, {1, 0.389193, 0.76524}, {1, 0.374932, 0.904501}, {1, 0.374939, 0.0953701}, {1, 0.3892, 0.234631}, {1, 0.264261, 0.139261}, {1, 0.139261, 0.264261}, {1, 0.234631, 0.3892}, {1, 0.0953701, 0.374939}, {1, 0.904501, 0.499932}, {1, 0.499932, 0.904501}, {1, 0.0953701, 0.499939}, {1, 0.499939, 0.0953701}, {1, 0.610131, 0.610131}, {1, 0.499385, 0.653954}, {1, 0.653954, 0.499385}, {1, 0.610191, 0.388713}, {1, 0.388713, 0.610191}, {1, 0.499391, 0.344822}, {1, 0.344822, 0.499391}, {1, 0.388713, 0.388713}, {1, 0.929037, 0.804037}, {1, 0.789715, 0.789715}, {1, 0.804037, 0.929037}, {1, 0.210214, 0.789786}, {1, 0.0709532, 0.804047}, {1, 0.804047, 0.0709532}, {1, 0.789786, 0.210214}, {1, 0.195953, 0.929047}, {1, 0.929047, 0.195953}, {1, 0.0709532, 0.195953}, {1, 0.210214, 0.210214}, {1, 0.195953, 0.0709532}, {1, 0.0709532, 0.929047}, {1, 0.929047, 0.0709532}, {1, 0.929037, 0.929037}, {1, 0.0709532, 0.0709532}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}, {0.403787, 0.502163, 0.604301}, {0.59395, 0.335588, 0.588613}, {0.57425, 0.502163, 0.604301}, {0.533055, 0.519268, 0.479373}, {0.723218, 0.352693, 0.463685}, {0.552756, 0.352693, 0.463685}, {0.907719, 0.227933, 0.0932632}, {0.768458, 0.242194, 0.0932632}, {0.812288, 0.352933, 0.0932632}, {0.462839, 0.167794, 0.544306}, {0.592107, 0.184899, 0.419378}, {0.423487, 0.335588, 0.41815}, {0.552756, 0.352693, 0.293222}, {0.462839, 0.167794, 0.373844}, {0.610874, 0.139383, 0.904569}, {0.500135, 0.0955798, 0.904569}, {0.141927, 0.0709532, 0.0709532}, {0.0709735, 0.0709532, 0.141906}, {0.0709532, 0.141906, 0.0709532}, {0.307175, 0.417794, 0.123844}, {0.351005, 0.307055, 0.123844}, {0.095431, 0.5, 0.095431}, {0.139261, 0.389261, 0.095431}, {0.211744, 0.417794, 0.219275}, {0.633302, 0.167794, 0.544306}, {0.907719, 0.173886, 0.164216}, {0.907719, 0.242194, 0.232524}, {0.0709532, 0.210234, 0.860739}, {0.141927, 0.0709735, 0.929047}, {0.0709735, 0.139261, 0.789786}, {0.0709735, 0.0709532, 0.858094}, {0.0709532, 0.141927, 0.929047}, {0.210336, 0.0709735, 0.860739}, {0.139383, 0.139261, 0.721478}, {0.742945, 0.167794, 0.655045}, {0.786897, 0.167794, 0.544306}, {0.904691, 0.139261, 0.610739}, {0.882206, 0.307055, 0.655045}, {0.860739, 0.139261, 0.721478}, {0.442043, 0.585464, 0.809994}, {0.461744, 0.418889, 0.794306}, {0.632206, 0.418889, 0.794306}, {0.907719, 0.352872, 0.188633}, {0.836765, 0.173886, 0.0932632}, {0.549357, 0.674254, 0.636624}, {0.73952, 0.678141, 0.450474}, {0.57425, 0.672625, 0.433838}, {0.723218, 0.523156, 0.293222}, {0.698326, 0.524784, 0.496008}, {0.721478, 0.860739, 0.860739}, {0.610739, 0.904691, 0.860739}, {0.0709735, 0.139261, 0.210214}, {0.882206, 0.263164, 0.544245}, {0.882206, 0.417246, 0.543759}, {0.768458, 0.102933, 0.232524}, {0.907719, 0.102933, 0.218263}, {0.836765, 0.102933, 0.164216}, {0.73952, 0.507679, 0.620936}, {0.929047, 0.929037, 0.858083}, {0.403787, 0.672625, 0.433838}, {0.59395, 0.676512, 0.247688}, {0.552756, 0.523156, 0.293222}, {0.307175, 0.417929, 0.794306}, {0.351005, 0.307176, 0.794306}, {0.095431, 0.904569, 0.5}, {0.500135, 0.095431, 0.095431}, {0.858094, 0.929047, 0.929047}, {0.5, 0.904691, 0.904569}, {0.929047, 0.858083, 0.929037}, {0.423487, 0.50605, 0.41815}, {0.904569, 0.904501, 0.499932}, {0.139261, 0.860739, 0.278522}, {0.139261, 0.904569, 0.389261}, {0.351005, 0.838256, 0.263105}, {0.211744, 0.742825, 0.373844}, {0.211744, 0.698995, 0.263105}, {0.141906, 0.929047, 0.929047}, {0.210214, 0.860739, 0.929047}, {0.904569, 0.500068, 0.904501}, {0.745703, 0.184899, 0.419378}, {0.904691, 0.0953701, 0.499939}, {0.841012, 0.280269, 0.419318}, {0.607314, 0.59098, 0.82663}, {0.461879, 0.167794, 0.698875}, {0.572483, 0.167794, 0.655045}, {0.882206, 0.417726, 0.698808}, {0.0709532, 0.789786, 0.139261}, {0.139261, 0.721478, 0.139261}, {0.882206, 0.588195, 0.219214}, {0.841012, 0.434839, 0.264749}, {0.882206, 0.587709, 0.373296}, {0.841012, 0.434352, 0.418831}, {0.389261, 0.904569, 0.139261}, {0.5, 0.904569, 0.095431}, {0.389383, 0.095431, 0.139261}, {0.278522, 0.860739, 0.139261}, {0.287474, 0.834369, 0.559994}, {0.331304, 0.834369, 0.670734}, {0.192043, 0.695108, 0.670734}, {0.139261, 0.860739, 0.721478}, {0.095431, 0.860739, 0.610739}, {0.139261, 0.278644, 0.860739}, {0.278644, 0.139383, 0.860739}, {0.139261, 0.389383, 0.904569}, {0.192043, 0.584369, 0.559994}, {0.192043, 0.584369, 0.714563}, {0.211744, 0.417794, 0.698875}, {0.211744, 0.417794, 0.544306}, {0.0955798, 0.139261, 0.610739}, {0.351005, 0.698995, 0.123844}, {0.461744, 0.742825, 0.123844}, {0.461744, 0.838256, 0.219275}, {0.929047, 0.141906, 0.0709532}, {0.858094, 0.929047, 0.0709532}, {0.0955798, 0.095431, 0.5}, {0.307323, 0.167794, 0.544306}, {0.211744, 0.263225, 0.544306}, {0.211744, 0.307055, 0.655045}, {0.461744, 0.263225, 0.123844}, {0.351126, 0.167794, 0.263105}, {0.278644, 0.139261, 0.139261}, {0.461879, 0.167794, 0.219275}, {0.929047, 0.929047, 0.141906}, {0.860739, 0.860678, 0.721417}, {0.904569, 0.860678, 0.610678}, {0.442043, 0.834369, 0.559994}, {0.718053, 0.839885, 0.687369}, {0.857314, 0.700563, 0.687308}, {0.761883, 0.839885, 0.57663}, {0.857314, 0.744386, 0.576562}, {0.904569, 0.499939, 0.0953701}, {0.786775, 0.588256, 0.123844}, {0.745581, 0.434899, 0.169378}, {0.701751, 0.32416, 0.169378}, {0.748731, 0.287832, 0.262642}, {0.857314, 0.589817, 0.731131}, {0.857314, 0.589337, 0.576082}, {0.572483, 0.307055, 0.123844}, {0.461744, 0.417794, 0.123844}, {0.591012, 0.434899, 0.169378}, {0.929047, 0.858094, 0.0709532}, {0.882206, 0.713256, 0.123844}, {0.882206, 0.767303, 0.194797}, {0.882206, 0.698995, 0.263105}, {0.351126, 0.167794, 0.433567}, {0.351126, 0.167794, 0.655045}, {0.211744, 0.417794, 0.373844}, {0.423487, 0.50605, 0.247688}, {0.211744, 0.588256, 0.373844}, {0.929047, 0.0709532, 0.141906}, {0.287474, 0.584504, 0.809994}, {0.929047, 0.0709532, 0.858094}, {0.192043, 0.738938, 0.559994}, {0.461744, 0.838256, 0.373844}, {0.632206, 0.838256, 0.373844}, {0.139261, 0.210214, 0.0709532}, {0.210234, 0.139261, 0.0709532}, {0.789786, 0.0709735, 0.860739}, {0.721478, 0.139383, 0.860739}, {0.610739, 0.904569, 0.139261}, {0.721478, 0.860739, 0.139261}, {0.0709532, 0.929047, 0.141906}, {0.095431, 0.500135, 0.904569}, {0.442043, 0.834369, 0.714563}, {0.461744, 0.263374, 0.794306}, {0.860739, 0.278644, 0.860739}, {0.929047, 0.210234, 0.860739}, {0.211744, 0.307055, 0.263105}, {0.139261, 0.610739, 0.095431}, {0.211744, 0.588256, 0.219275}, {0.632206, 0.588256, 0.123844}, {0.461744, 0.588256, 0.123844}, {0.139383, 0.139261, 0.278522}, {0.139261, 0.278522, 0.139261}, {0.607314, 0.839885, 0.57663}, {0.904569, 0.610813, 0.860678}, {0.0709532, 0.858094, 0.929047}, {0.331304, 0.695108, 0.809994}, {0.139261, 0.721478, 0.860739}, {0.278522, 0.860739, 0.860739}, {0.0709532, 0.929047, 0.858094}, {0.718053, 0.700624, 0.82663}, {0.860739, 0.721417, 0.860678}, {0.761883, 0.59002, 0.82663}, {0.742945, 0.307176, 0.794306}, {0.786775, 0.417929, 0.794306}, {0.860739, 0.929037, 0.789776}, {0.389261, 0.904691, 0.860739}, {0.307175, 0.588256, 0.123844}, {0.789786, 0.860739, 0.0709532}, {0.0709532, 0.858094, 0.0709532}, {0.742945, 0.838256, 0.263105}, {0.632206, 0.742825, 0.123844}, {0.742945, 0.698995, 0.123844}, {0.841012, 0.32416, 0.308639}, {0.610874, 0.139261, 0.095431}, {0.782719, 0.102933, 0.0932632}, {0.860739, 0.789776, 0.929037}, {0.929047, 0.141927, 0.929047}, {0.811253, 0.838256, 0.194797}, {0.858094, 0.0709735, 0.929047}, {0.607314, 0.839885, 0.731199}, {0.607314, 0.744576, 0.82663}, {0.442043, 0.73906, 0.809994}, {0.389383, 0.0955798, 0.860739}, {0.141906, 0.929047, 0.0709532}, {0.0709532, 0.860739, 0.210214}, {0.929047, 0.860739, 0.210214}, {0.860739, 0.860739, 0.278522}, {0.139383, 0.095431, 0.389261}, {0.211744, 0.263225, 0.373844}, {0.139261, 0.789786, 0.929047}, {0.789786, 0.929047, 0.860739}, {0.904691, 0.139261, 0.389261}, {0.701751, 0.184899, 0.308639}, {0.929047, 0.139261, 0.789786}, {0.786775, 0.838256, 0.373844}, {0.875, 0.0709532, 0.0709532}, {0.210214, 0.929047, 0.139261}, {0.572483, 0.838256, 0.263105}, {0.591147, 0.184899, 0.264809}, {0.904569, 0.389396, 0.860739}, {0.572483, 0.307176, 0.794306}, {0.331304, 0.834369, 0.449255}, {0.139261, 0.929047, 0.789786}, {0.860739, 0.789786, 0.0709532}, {0.904569, 0.860739, 0.389261}, {0.139261, 0.610739, 0.904569}, {0.812409, 0.102933, 0.343263}, {0.657854, 0.102933, 0.188694}, {0.857314, 0.700624, 0.465891}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 48
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{6, 8, 11}, {8, 9, 12}, {9, 10, 13}, {10, 7, 14}, {7, 15, 18}, {15, 16, 19}, {16, 17, 20}, {17, 3, 21}, {3, 22, 25}, {22, 23, 26}, {23, 24, 27}, {24, 2, 28}, {2, 29, 32}, {29, 30, 33}, {30, 31, 34}, {31, 6, 35}, {0, 36, 39}, {36, 37, 40}, {37, 38, 41}, {38, 4, 42}, {4, 43, 46}, {43, 44, 47}, {44, 45, 48}, {45, 5, 49}, {5, 50, 53}, {50, 51, 54}, {51, 52, 55}, {52, 1, 56}, {1, 57, 60}, {57, 58, 61}, {58, 59, 62}, {59, 0, 63}, {2, 64, 67}, {64, 65, 68}, {65, 66, 69}, {66, 0, 70}, {6, 71, 74}, {71, 72, 75}, {72, 73, 76}, {73, 4, 77}, {7, 78, 81}, {78, 79, 82}, {79, 80, 83}, {80, 5, 84}, {3, 85, 88}, {85, 86, 89}, {86, 87, 90}, {87, 1, 91}}
        ]
-        (not_ghost:triangle_6) [
+        (not_ghost:_triangle_6) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_6
+        + id             : mesh:connectivities:_triangle_6
         + size           : 240
         + nb_component   : 6
         + allocated size : 2000
         + memory size    : 47kB
         + values         : {{93, 97, 71, 105, 106, 107}, {93, 8, 98, 108, 109, 110}, {94, 78, 99, 111, 112, 113}, {43, 95, 100, 114, 115, 116}, {94, 98, 10, 117, 118, 119}, {73, 97, 95, 120, 121, 122}, {45, 100, 96, 123, 124, 125}, {80, 96, 99, 126, 127, 128}, {71, 97, 72, 106, 129, 75}, {78, 79, 99, 82, 130, 112}, {8, 9, 98, 12, 131, 109}, {43, 100, 44, 116, 132, 47}, {72, 97, 73, 129, 120, 76}, {9, 10, 98, 13, 118, 131}, {79, 80, 99, 83, 128, 130}, {44, 100, 45, 132, 123, 48}, {93, 92, 97, 133, 134, 105}, {93, 98, 92, 110, 135, 133}, {94, 92, 98, 136, 135, 117}, {92, 95, 97, 137, 121, 134}, {94, 99, 92, 113, 138, 136}, {92, 100, 95, 139, 115, 137}, {92, 99, 96, 138, 127, 140}, {92, 96, 100, 140, 124, 139}, {93, 71, 101, 107, 141, 142}, {93, 101, 8, 142, 143, 108}, {94, 102, 78, 144, 145, 111}, {43, 103, 95, 146, 147, 114}, {94, 10, 102, 119, 148, 144}, {73, 95, 103, 122, 147, 149}, {45, 96, 104, 125, 150, 151}, {80, 104, 96, 152, 150, 126}, {4, 73, 103, 77, 149, 153}, {6, 101, 71, 154, 141, 74}, {7, 102, 10, 155, 148, 14}, {7, 78, 102, 81, 145, 155}, {6, 8, 101, 11, 143, 154}, {5, 104, 80, 156, 152, 84}, {4, 103, 43, 153, 146, 46}, {5, 45, 104, 49, 151, 156}, {15, 162, 158, 170, 171, 172}, {22, 163, 159, 173, 174, 175}, {8, 164, 160, 176, 177, 178}, {29, 165, 161, 179, 180, 181}, {10, 158, 164, 182, 183, 184}, {31, 160, 165, 185, 186, 187}, {17, 159, 162, 188, 189, 190}, {24, 161, 163, 191, 192, 193}, {22, 23, 163, 26, 194, 173}, {15, 16, 162, 19, 195, 170}, {29, 30, 165, 33, 196, 179}, {8, 9, 164, 12, 197, 176}, {16, 17, 162, 20, 190, 195}, {23, 24, 163, 27, 193, 194}, {9, 10, 164, 13, 184, 197}, {30, 31, 165, 34, 187, 196}, {158, 162, 157, 171, 198, 199}, {159, 157, 162, 200, 198, 189}, {159, 163, 157, 174, 201, 200}, {161, 157, 163, 202, 201, 192}, {158, 157, 164, 199, 203, 183}, {160, 164, 157, 177, 203, 204}, {160, 157, 165, 204, 205, 186}, {161, 165, 157, 180, 205, 202}, {15, 158, 167, 172, 206, 207}, {22, 159, 166, 175, 208, 209}, {8, 160, 169, 178, 210, 211}, {29, 161, 168, 181, 212, 213}, {10, 167, 158, 214, 206, 182}, {31, 169, 160, 215, 210, 185}, {17, 166, 159, 216, 208, 188}, {24, 168, 161, 217, 212, 191}, {2, 168, 24, 218, 217, 28}, {3, 166, 17, 219, 216, 21}, {6, 169, 31, 220, 215, 35}, {7, 167, 10, 221, 214, 14}, {7, 15, 167, 18, 207, 221}, {3, 22, 166, 25, 209, 219}, {6, 8, 169, 11, 211, 220}, {2, 29, 168, 32, 213, 218}, {50, 227, 223, 235, 236, 237}, {57, 228, 224, 238, 239, 240}, {43, 229, 225, 241, 242, 243}, {36, 230, 226, 244, 245, 246}, {45, 223, 229, 247, 248, 249}, {38, 225, 230, 250, 251, 252}, {52, 224, 227, 253, 254, 255}, {59, 226, 228, 256, 257, 258}, {57, 58, 228, 61, 259, 238}, {50, 51, 227, 54, 260, 235}, {36, 37, 230, 40, 261, 244}, {43, 44, 229, 47, 262, 241}, {51, 52, 227, 55, 255, 260}, {58, 59, 228, 62, 258, 259}, {44, 45, 229, 48, 249, 262}, {37, 38, 230, 41, 252, 261}, {223, 227, 222, 236, 263, 264}, {224, 222, 227, 265, 263, 254}, {224, 228, 222, 239, 266, 265}, {222, 228, 226, 266, 257, 267}, {223, 222, 229, 264, 268, 248}, {222, 225, 229, 269, 242, 268}, {222, 230, 225, 270, 251, 269}, {222, 226, 230, 267, 245, 270}, {50, 223, 232, 237, 271, 272}, {57, 224, 231, 240, 273, 274}, {43, 225, 234, 243, 275, 276}, {36, 226, 233, 246, 277, 278}, {45, 232, 223, 279, 271, 247}, {38, 234, 225, 280, 275, 250}, {52, 231, 224, 281, 273, 253}, {59, 233, 226, 282, 277, 256}, {0, 233, 59, 283, 282, 63}, {1, 231, 52, 284, 281, 56}, {4, 234, 38, 285, 280, 42}, {5, 232, 45, 286, 279, 49}, {5, 50, 232, 53, 272, 286}, {1, 57, 231, 60, 274, 284}, {4, 43, 234, 46, 276, 285}, {0, 36, 233, 39, 278, 283}, {85, 288, 292, 300, 301, 302}, {22, 293, 288, 303, 304, 305}, {57, 290, 294, 306, 307, 308}, {64, 295, 289, 309, 310, 311}, {24, 289, 293, 312, 313, 314}, {87, 292, 290, 315, 316, 317}, {66, 291, 295, 318, 319, 320}, {59, 294, 291, 321, 322, 323}, {85, 292, 86, 302, 324, 89}, {22, 23, 293, 26, 325, 303}, {57, 294, 58, 308, 326, 61}, {64, 65, 295, 68, 327, 309}, {86, 292, 87, 324, 315, 90}, {23, 24, 293, 27, 314, 325}, {65, 66, 295, 69, 320, 327}, {58, 294, 59, 326, 321, 62}, {288, 293, 287, 304, 328, 329}, {288, 287, 292, 329, 330, 301}, {289, 287, 293, 331, 328, 313}, {290, 292, 287, 316, 330, 332}, {289, 295, 287, 310, 333, 331}, {290, 287, 294, 332, 334, 307}, {291, 294, 287, 322, 334, 335}, {291, 287, 295, 335, 333, 319}, {22, 288, 296, 305, 336, 337}, {85, 296, 288, 338, 336, 300}, {57, 298, 290, 339, 340, 306}, {64, 289, 297, 311, 341, 342}, {87, 290, 298, 317, 340, 343}, {24, 297, 289, 344, 341, 312}, {59, 291, 299, 323, 345, 346}, {66, 299, 291, 347, 345, 318}, {1, 87, 298, 91, 343, 348}, {2, 297, 24, 349, 344, 28}, {3, 296, 85, 350, 338, 88}, {3, 22, 296, 25, 337, 350}, {1, 298, 57, 348, 339, 60}, {2, 64, 297, 67, 342, 349}, {0, 59, 299, 63, 346, 351}, {0, 299, 66, 351, 347, 70}, {64, 353, 357, 365, 366, 367}, {29, 358, 353, 368, 369, 370}, {71, 359, 354, 371, 372, 373}, {36, 355, 360, 374, 375, 376}, {31, 354, 358, 377, 378, 379}, {66, 357, 355, 380, 381, 382}, {38, 360, 356, 383, 384, 385}, {73, 356, 359, 386, 387, 388}, {64, 357, 65, 367, 389, 68}, {71, 72, 359, 75, 390, 371}, {29, 30, 358, 33, 391, 368}, {36, 360, 37, 376, 392, 40}, {65, 357, 66, 389, 380, 69}, {30, 31, 358, 34, 379, 391}, {72, 73, 359, 76, 388, 390}, {37, 360, 38, 392, 383, 41}, {353, 352, 357, 393, 394, 366}, {353, 358, 352, 369, 395, 393}, {354, 352, 358, 396, 395, 378}, {355, 357, 352, 381, 394, 397}, {354, 359, 352, 372, 398, 396}, {355, 352, 360, 397, 399, 375}, {356, 352, 359, 400, 398, 387}, {356, 360, 352, 384, 399, 400}, {64, 361, 353, 401, 402, 365}, {29, 353, 361, 370, 402, 403}, {71, 354, 362, 373, 404, 405}, {36, 363, 355, 406, 407, 374}, {31, 362, 354, 408, 404, 377}, {66, 355, 363, 382, 407, 409}, {38, 356, 364, 385, 410, 411}, {73, 364, 356, 412, 410, 386}, {0, 66, 363, 70, 409, 413}, {2, 361, 64, 414, 401, 67}, {6, 362, 31, 415, 408, 35}, {6, 71, 362, 74, 405, 415}, {2, 29, 361, 32, 403, 414}, {4, 364, 73, 416, 412, 77}, {0, 363, 36, 413, 406, 39}, {4, 38, 364, 42, 411, 416}, {15, 418, 423, 430, 431, 432}, {78, 422, 418, 433, 434, 435}, {50, 424, 420, 436, 437, 438}, {85, 419, 425, 439, 440, 441}, {17, 423, 419, 442, 443, 444}, {80, 420, 422, 445, 446, 447}, {87, 425, 421, 448, 449, 450}, {52, 421, 424, 451, 452, 453}, {15, 423, 16, 432, 454, 19}, {78, 79, 422, 82, 455, 433}, {50, 51, 424, 54, 456, 436}, {85, 425, 86, 441, 457, 89}, {79, 80, 422, 83, 447, 455}, {16, 423, 17, 454, 442, 20}, {86, 425, 87, 457, 448, 90}, {51, 52, 424, 55, 453, 456}, {417, 418, 422, 458, 434, 459}, {417, 423, 418, 460, 431, 458}, {419, 423, 417, 443, 460, 461}, {420, 417, 422, 462, 459, 446}, {419, 417, 425, 461, 463, 440}, {420, 424, 417, 437, 464, 462}, {421, 417, 424, 465, 464, 452}, {421, 425, 417, 449, 463, 465}, {15, 426, 418, 466, 467, 430}, {78, 418, 426, 435, 467, 468}, {50, 420, 428, 438, 469, 470}, {85, 427, 419, 471, 472, 439}, {80, 428, 420, 473, 469, 445}, {17, 419, 427, 444, 472, 474}, {52, 429, 421, 475, 476, 451}, {87, 421, 429, 450, 476, 477}, {5, 428, 80, 478, 473, 84}, {3, 17, 427, 21, 474, 479}, {7, 78, 426, 81, 468, 480}, {7, 426, 15, 480, 466, 18}, {5, 50, 428, 53, 470, 478}, {3, 427, 85, 479, 471, 88}, {1, 429, 52, 481, 475, 56}, {1, 87, 429, 91, 477, 481}}
        ]
-        (not_ghost:tetrahedron_10) [
+        (not_ghost:_tetrahedron_10) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:tetrahedron_10
+        + id             : mesh:connectivities:_tetrahedron_10
         + size           : 341
         + nb_component   : 10
         + allocated size : 2000
         + memory size    : 78kB
         + values         : {{484, 483, 485, 489, 491, 493, 492, 496, 494, 495}, {87, 290, 490, 292, 317, 498, 497, 315, 316, 499}, {222, 484, 489, 486, 500, 496, 501, 504, 502, 503}, {96, 229, 45, 100, 505, 249, 125, 124, 506, 123}, {59, 0, 233, 299, 63, 283, 282, 346, 351, 507}, {0, 363, 233, 299, 413, 508, 283, 351, 509, 507}, {486, 295, 291, 357, 510, 319, 511, 514, 512, 513}, {484, 222, 489, 485, 500, 501, 496, 492, 515, 495}, {87, 429, 421, 490, 477, 476, 450, 497, 516, 517}, {103, 356, 234, 364, 518, 520, 519, 522, 410, 521}, {356, 103, 234, 225, 518, 519, 520, 524, 523, 275}, {43, 103, 225, 234, 146, 523, 243, 276, 519, 275}, {223, 227, 485, 420, 236, 526, 525, 529, 527, 528}, {483, 92, 484, 485, 530, 531, 491, 493, 532, 492}, {87, 421, 425, 490, 450, 449, 448, 497, 517, 533}, {298, 87, 290, 490, 343, 317, 340, 534, 497, 498}, {482, 483, 488, 489, 535, 537, 536, 539, 494, 538}, {94, 10, 158, 98, 119, 182, 540, 117, 118, 541}, {355, 363, 233, 36, 407, 508, 542, 374, 406, 278}, {485, 420, 424, 417, 528, 437, 543, 544, 462, 464}, {231, 224, 52, 490, 273, 253, 281, 547, 545, 546}, {483, 482, 485, 489, 535, 548, 493, 494, 539, 495}, {167, 15, 7, 426, 207, 18, 221, 549, 466, 480}, {483, 487, 488, 489, 550, 551, 537, 494, 552, 538}, {484, 92, 97, 95, 531, 134, 553, 554, 137, 121}, {29, 165, 30, 358, 179, 196, 33, 368, 555, 391}, {228, 294, 58, 59, 556, 326, 259, 258, 321, 62}, {102, 10, 7, 167, 148, 14, 155, 557, 214, 221}, {9, 10, 98, 164, 13, 118, 131, 197, 184, 558}, {78, 102, 7, 426, 145, 155, 81, 468, 559, 480}, {483, 484, 487, 489, 491, 560, 550, 494, 496, 552}, {16, 423, 162, 17, 454, 561, 195, 20, 442, 190}, {353, 161, 358, 487, 562, 563, 369, 566, 564, 565}, {93, 101, 8, 169, 142, 143, 108, 568, 567, 211}, {78, 422, 79, 99, 433, 455, 82, 112, 569, 130}, {485, 227, 489, 424, 526, 570, 495, 543, 571, 572}, {482, 92, 483, 485, 573, 530, 535, 548, 532, 493}, {223, 222, 229, 484, 264, 268, 248, 575, 500, 574}, {422, 420, 485, 417, 446, 528, 576, 459, 462, 544}, {64, 297, 353, 289, 342, 577, 365, 311, 341, 578}, {101, 6, 8, 169, 154, 11, 143, 567, 220, 211}, {425, 488, 489, 417, 579, 538, 580, 463, 581, 582}, {163, 161, 24, 293, 192, 191, 193, 584, 583, 314}, {228, 294, 59, 226, 556, 321, 258, 257, 585, 256}, {161, 289, 24, 293, 586, 312, 191, 583, 313, 314}, {165, 483, 160, 354, 587, 588, 186, 591, 589, 590}, {103, 356, 95, 225, 518, 592, 147, 523, 524, 593}, {356, 95, 359, 73, 592, 594, 387, 386, 122, 388}, {352, 483, 359, 484, 595, 596, 398, 598, 491, 597}, {103, 43, 4, 234, 146, 46, 153, 519, 276, 285}, {230, 356, 38, 225, 599, 385, 252, 251, 524, 250}, {161, 289, 293, 487, 586, 313, 583, 564, 600, 601}, {161, 487, 293, 163, 564, 601, 583, 192, 602, 584}, {429, 87, 298, 490, 477, 343, 603, 516, 497, 534}, {364, 38, 234, 4, 411, 280, 521, 416, 42, 285}, {22, 296, 3, 166, 337, 350, 25, 209, 604, 219}, {230, 37, 360, 36, 261, 392, 605, 244, 40, 376}, {356, 230, 360, 484, 599, 605, 384, 608, 606, 607}, {22, 23, 293, 163, 26, 325, 303, 173, 194, 584}, {294, 486, 291, 226, 609, 511, 322, 585, 610, 611}, {294, 228, 486, 226, 556, 612, 609, 585, 257, 610}, {3, 17, 166, 427, 21, 216, 219, 479, 474, 613}, {364, 103, 4, 234, 522, 153, 416, 521, 519, 285}, {158, 15, 418, 162, 172, 430, 614, 171, 170, 615}, {15, 423, 418, 162, 432, 431, 430, 170, 561, 615}, {157, 483, 160, 165, 616, 588, 204, 205, 587, 186}, {482, 158, 418, 162, 617, 614, 618, 619, 171, 615}, {423, 482, 418, 162, 620, 618, 431, 561, 619, 615}, {425, 488, 292, 489, 579, 622, 621, 580, 538, 623}, {290, 489, 490, 292, 624, 625, 498, 316, 623, 499}, {222, 223, 485, 484, 264, 525, 515, 500, 575, 492}, {363, 0, 66, 299, 413, 70, 409, 509, 351, 347}, {482, 422, 485, 417, 626, 576, 548, 627, 459, 544}, {486, 290, 287, 489, 628, 332, 629, 503, 624, 630}, {296, 3, 166, 427, 350, 219, 604, 631, 479, 613}, {489, 290, 287, 292, 624, 332, 630, 623, 316, 330}, {488, 85, 427, 419, 632, 471, 633, 634, 439, 472}, {425, 488, 419, 85, 579, 634, 440, 441, 632, 439}, {15, 16, 423, 162, 19, 454, 432, 170, 195, 561}, {65, 64, 357, 295, 68, 367, 389, 327, 309, 512}, {222, 484, 486, 226, 500, 502, 504, 267, 635, 610}, {356, 484, 95, 225, 608, 554, 592, 524, 636, 593}, {352, 484, 486, 487, 598, 502, 637, 639, 560, 638}, {230, 222, 484, 225, 270, 500, 606, 251, 269, 636}, {294, 228, 58, 57, 556, 259, 326, 308, 238, 61}, {352, 483, 484, 487, 595, 491, 598, 639, 550, 560}, {23, 163, 24, 293, 194, 193, 27, 325, 584, 314}, {429, 231, 1, 52, 640, 284, 481, 475, 281, 56}, {228, 222, 486, 226, 266, 504, 612, 257, 267, 610}, {482, 422, 417, 418, 626, 459, 627, 618, 434, 458}, {489, 425, 490, 292, 580, 533, 625, 623, 621, 499}, {483, 92, 97, 484, 530, 134, 641, 491, 531, 553}, {50, 232, 5, 428, 272, 286, 53, 470, 642, 478}, {483, 165, 358, 354, 587, 555, 643, 589, 591, 378}, {157, 483, 487, 488, 616, 550, 644, 645, 537, 551}, {425, 488, 417, 419, 579, 581, 463, 440, 634, 461}, {222, 230, 484, 226, 270, 606, 500, 267, 245, 635}, {299, 363, 233, 291, 509, 508, 507, 345, 646, 647}, {103, 356, 73, 95, 518, 386, 149, 147, 592, 122}, {229, 44, 45, 100, 262, 48, 249, 506, 132, 123}, {356, 230, 38, 360, 599, 252, 385, 384, 605, 383}, {104, 223, 45, 96, 648, 247, 151, 150, 649, 125}, {22, 159, 293, 288, 175, 650, 303, 305, 651, 304}, {352, 356, 360, 484, 400, 384, 399, 598, 608, 607}, {2, 361, 168, 29, 414, 652, 218, 32, 403, 213}, {484, 483, 359, 97, 491, 596, 597, 553, 641, 653}, {483, 157, 160, 164, 616, 204, 588, 654, 203, 177}, {92, 484, 100, 95, 531, 655, 139, 137, 554, 115}, {223, 420, 96, 104, 529, 656, 649, 648, 657, 150}, {85, 425, 292, 86, 441, 621, 302, 89, 457, 324}, {355, 352, 486, 357, 397, 637, 658, 381, 394, 514}, {353, 289, 487, 357, 578, 600, 566, 366, 659, 660}, {66, 295, 357, 291, 320, 512, 380, 318, 319, 513}, {488, 487, 287, 489, 551, 662, 661, 538, 552, 630}, {486, 294, 287, 290, 609, 334, 629, 628, 307, 332}, {227, 223, 485, 222, 236, 525, 526, 263, 264, 515}, {355, 486, 226, 291, 658, 610, 663, 664, 511, 611}, {43, 103, 95, 225, 146, 147, 114, 243, 523, 593}, {356, 230, 484, 225, 599, 606, 608, 524, 251, 636}, {64, 295, 289, 357, 309, 310, 311, 367, 512, 659}, {157, 482, 162, 158, 665, 619, 198, 199, 617, 171}, {223, 229, 45, 96, 248, 249, 247, 649, 505, 125}, {222, 229, 484, 225, 268, 574, 500, 269, 242, 636}, {422, 78, 418, 99, 433, 435, 434, 569, 112, 666}, {422, 80, 79, 99, 447, 83, 455, 569, 128, 130}, {159, 22, 293, 163, 175, 303, 650, 174, 173, 584}, {101, 362, 71, 6, 667, 405, 141, 154, 415, 74}, {93, 483, 354, 160, 668, 589, 669, 670, 588, 590}, {355, 486, 291, 357, 658, 511, 664, 381, 514, 513}, {362, 101, 169, 6, 667, 567, 671, 415, 154, 220}, {94, 482, 418, 99, 672, 618, 673, 113, 674, 666}, {488, 482, 489, 417, 536, 539, 538, 581, 627, 582}, {484, 356, 95, 359, 608, 592, 554, 597, 387, 594}, {363, 355, 233, 291, 407, 542, 508, 646, 664, 647}, {485, 92, 96, 99, 532, 140, 675, 676, 138, 127}, {78, 94, 418, 99, 111, 673, 435, 112, 113, 666}, {92, 483, 97, 93, 530, 641, 134, 133, 668, 105}, {484, 95, 97, 359, 554, 121, 553, 597, 594, 653}, {72, 71, 97, 359, 75, 106, 129, 390, 371, 653}, {94, 482, 99, 92, 672, 674, 113, 136, 573, 138}, {102, 167, 7, 426, 557, 221, 155, 559, 549, 480}, {10, 164, 158, 98, 184, 183, 182, 118, 558, 541}, {482, 422, 99, 485, 626, 569, 674, 548, 576, 676}, {15, 158, 426, 167, 172, 677, 466, 207, 206, 549}, {92, 482, 99, 485, 573, 674, 138, 532, 548, 676}, {158, 15, 426, 418, 172, 466, 677, 614, 430, 467}, {38, 356, 234, 225, 385, 520, 280, 250, 524, 275}, {94, 482, 158, 418, 672, 617, 540, 673, 618, 614}, {364, 356, 234, 38, 410, 520, 521, 411, 385, 280}, {93, 160, 8, 98, 670, 178, 108, 110, 678, 109}, {355, 233, 226, 36, 542, 277, 663, 374, 278, 246}, {160, 93, 8, 169, 670, 108, 178, 210, 568, 211}, {227, 223, 50, 420, 236, 237, 235, 527, 529, 438}, {363, 0, 233, 36, 413, 283, 508, 406, 39, 278}, {486, 295, 287, 291, 510, 333, 629, 511, 319, 335}, {59, 294, 291, 226, 321, 322, 323, 256, 585, 611}, {66, 363, 299, 291, 409, 509, 347, 318, 646, 345}, {486, 352, 487, 357, 637, 639, 638, 514, 394, 660}, {295, 486, 487, 357, 510, 638, 679, 512, 514, 660}, {296, 22, 288, 166, 337, 305, 336, 604, 209, 680}, {361, 64, 2, 297, 401, 67, 414, 681, 342, 349}, {95, 97, 359, 73, 121, 653, 594, 122, 120, 388}, {423, 482, 417, 418, 620, 627, 460, 431, 618, 458}, {65, 295, 357, 66, 327, 512, 389, 69, 320, 380}, {97, 72, 359, 73, 129, 390, 653, 120, 76, 388}, {420, 223, 96, 485, 529, 649, 656, 528, 525, 675}, {159, 488, 293, 288, 682, 683, 650, 651, 684, 304}, {31, 165, 160, 354, 187, 186, 185, 377, 591, 590}, {484, 486, 487, 489, 502, 638, 560, 496, 503, 552}, {486, 295, 487, 287, 510, 679, 638, 629, 333, 662}, {59, 233, 226, 291, 282, 277, 256, 323, 647, 611}, {233, 355, 226, 291, 542, 663, 277, 647, 664, 611}, {425, 421, 489, 490, 449, 685, 580, 533, 517, 625}, {288, 488, 292, 85, 684, 622, 301, 300, 632, 302}, {421, 425, 489, 417, 449, 580, 685, 465, 463, 582}, {294, 228, 57, 290, 556, 238, 308, 307, 686, 306}, {165, 31, 358, 354, 187, 379, 555, 591, 377, 378}, {103, 356, 364, 73, 518, 410, 522, 149, 386, 412}, {352, 483, 358, 354, 595, 643, 395, 396, 589, 378}, {22, 159, 288, 166, 175, 651, 305, 209, 208, 680}, {356, 352, 359, 484, 400, 398, 387, 608, 598, 597}, {64, 361, 353, 297, 401, 402, 365, 342, 681, 577}, {355, 66, 357, 291, 382, 380, 381, 664, 318, 513}, {487, 486, 287, 489, 638, 629, 662, 552, 503, 630}, {298, 57, 490, 290, 339, 687, 534, 340, 306, 498}, {31, 362, 169, 6, 408, 671, 215, 35, 415, 220}, {488, 425, 292, 85, 579, 621, 622, 632, 441, 302}, {483, 352, 359, 354, 595, 398, 596, 589, 396, 372}, {94, 78, 418, 426, 111, 435, 673, 688, 468, 467}, {229, 43, 44, 100, 241, 47, 262, 506, 116, 132}, {31, 165, 358, 30, 187, 555, 379, 34, 196, 391}, {429, 231, 52, 490, 640, 281, 475, 516, 547, 546}, {94, 102, 78, 426, 144, 145, 111, 688, 559, 468}, {421, 429, 52, 490, 476, 475, 451, 517, 516, 546}, {364, 103, 73, 4, 522, 149, 412, 416, 153, 77}, {420, 227, 424, 50, 527, 571, 437, 438, 235, 436}, {104, 80, 5, 428, 152, 84, 156, 689, 473, 478}, {227, 51, 52, 424, 260, 55, 255, 571, 456, 453}, {487, 289, 293, 287, 600, 313, 601, 662, 331, 328}, {166, 159, 288, 488, 208, 651, 680, 690, 682, 684}, {289, 161, 353, 487, 586, 562, 578, 600, 564, 566}, {482, 485, 489, 417, 548, 495, 539, 627, 544, 582}, {50, 227, 424, 51, 235, 571, 436, 54, 260, 456}, {488, 489, 287, 292, 538, 630, 661, 622, 623, 330}, {482, 483, 157, 488, 535, 616, 665, 536, 537, 645}, {80, 420, 104, 96, 445, 657, 152, 126, 656, 150}, {232, 104, 45, 5, 691, 151, 279, 286, 156, 49}, {288, 488, 287, 292, 684, 661, 329, 301, 622, 330}, {295, 289, 487, 287, 310, 600, 679, 333, 331, 662}, {157, 161, 163, 487, 202, 192, 201, 644, 564, 602}, {483, 482, 164, 98, 535, 692, 654, 694, 693, 558}, {3, 296, 85, 427, 350, 338, 88, 479, 631, 471}, {92, 483, 93, 98, 530, 668, 133, 135, 694, 110}, {95, 484, 100, 225, 554, 655, 115, 593, 636, 695}, {231, 224, 490, 57, 273, 545, 547, 274, 240, 687}, {64, 289, 353, 357, 311, 578, 365, 367, 659, 366}, {2, 297, 24, 168, 349, 344, 28, 218, 696, 217}, {361, 297, 168, 353, 681, 696, 652, 402, 577, 697}, {353, 161, 168, 29, 562, 212, 697, 370, 181, 213}, {289, 295, 487, 357, 310, 679, 600, 659, 512, 660}, {352, 353, 487, 357, 393, 566, 639, 394, 366, 660}, {361, 353, 168, 29, 402, 697, 652, 403, 370, 213}, {484, 229, 100, 225, 574, 506, 655, 636, 242, 695}, {104, 223, 232, 45, 648, 271, 691, 151, 247, 279}, {160, 164, 8, 98, 177, 176, 178, 678, 558, 109}, {164, 9, 8, 98, 197, 12, 176, 558, 131, 109}, {165, 161, 358, 29, 180, 563, 555, 179, 181, 368}, {297, 361, 168, 2, 681, 652, 696, 349, 414, 218}, {161, 353, 358, 29, 562, 369, 563, 181, 370, 368}, {230, 37, 38, 360, 261, 41, 252, 605, 392, 383}, {43, 95, 100, 225, 114, 115, 116, 243, 593, 695}, {420, 80, 104, 428, 445, 152, 657, 469, 473, 689}, {232, 104, 5, 428, 691, 156, 286, 642, 689, 478}, {59, 299, 233, 291, 346, 507, 282, 323, 345, 647}, {355, 363, 66, 291, 407, 409, 382, 664, 646, 318}, {158, 94, 418, 426, 540, 673, 614, 677, 688, 467}, {87, 429, 298, 1, 477, 603, 343, 91, 481, 348}, {420, 227, 485, 424, 527, 526, 528, 437, 571, 543}, {482, 422, 418, 99, 626, 434, 618, 674, 569, 666}, {229, 43, 100, 225, 241, 116, 506, 242, 243, 695}, {294, 486, 287, 291, 609, 629, 334, 322, 511, 335}, {17, 166, 419, 159, 216, 698, 444, 188, 208, 699}, {419, 166, 17, 427, 698, 216, 444, 472, 613, 474}, {166, 488, 419, 159, 690, 634, 698, 208, 682, 699}, {419, 488, 166, 427, 634, 690, 698, 472, 633, 613}, {160, 98, 483, 164, 678, 694, 588, 177, 558, 654}, {483, 98, 160, 93, 694, 678, 588, 668, 110, 670}, {226, 360, 486, 355, 700, 701, 610, 663, 375, 658}, {360, 36, 226, 230, 376, 246, 700, 605, 244, 245}, {226, 36, 360, 355, 246, 376, 700, 663, 374, 375}, {93, 169, 362, 101, 568, 671, 702, 142, 567, 667}, {93, 362, 71, 101, 702, 405, 107, 142, 667, 141}, {71, 362, 93, 354, 405, 702, 107, 373, 404, 669}, {489, 424, 417, 485, 572, 464, 582, 495, 543, 544}, {417, 424, 489, 421, 464, 572, 582, 465, 452, 685}, {102, 10, 158, 94, 148, 182, 703, 144, 119, 540}, {158, 10, 102, 167, 182, 148, 703, 206, 214, 557}, {102, 158, 426, 94, 703, 677, 559, 144, 540, 688}, {426, 158, 102, 167, 677, 703, 559, 549, 206, 557}, {421, 489, 227, 424, 685, 570, 704, 452, 572, 571}, {52, 421, 227, 424, 451, 704, 255, 453, 452, 571}, {489, 227, 222, 224, 570, 263, 501, 705, 254, 265}, {489, 222, 227, 485, 501, 263, 570, 495, 515, 526}, {87, 425, 292, 490, 448, 621, 315, 497, 533, 499}, {292, 425, 87, 86, 621, 448, 315, 324, 457, 90}, {104, 420, 232, 223, 657, 706, 691, 648, 529, 271}, {104, 232, 420, 428, 691, 706, 657, 689, 642, 469}, {232, 420, 50, 223, 706, 438, 272, 271, 529, 237}, {232, 50, 420, 428, 272, 438, 706, 642, 470, 469}, {226, 484, 360, 230, 635, 607, 700, 245, 606, 605}, {226, 360, 484, 486, 700, 607, 635, 610, 701, 502}, {486, 360, 352, 355, 701, 399, 637, 658, 375, 397}, {352, 360, 486, 484, 399, 701, 637, 598, 607, 502}, {162, 488, 157, 159, 707, 645, 198, 189, 682, 200}, {157, 488, 162, 482, 645, 707, 198, 665, 536, 619}, {490, 57, 429, 231, 687, 708, 516, 547, 274, 640}, {429, 57, 490, 298, 708, 687, 516, 603, 339, 534}, {57, 1, 429, 231, 60, 481, 708, 274, 284, 640}, {429, 1, 57, 298, 481, 60, 708, 603, 348, 339}, {158, 98, 482, 94, 541, 693, 617, 540, 117, 672}, {482, 98, 158, 164, 693, 541, 617, 692, 558, 183}, {353, 297, 161, 289, 577, 709, 562, 578, 341, 586}, {353, 161, 297, 168, 562, 709, 577, 697, 212, 696}, {161, 297, 24, 289, 709, 344, 191, 586, 341, 312}, {161, 24, 297, 168, 191, 344, 709, 212, 217, 696}, {159, 293, 487, 163, 650, 601, 710, 174, 584, 602}, {487, 293, 159, 488, 601, 650, 710, 551, 683, 682}, {159, 487, 157, 163, 710, 644, 200, 174, 602, 201}, {157, 487, 159, 488, 644, 710, 200, 645, 551, 682}, {290, 228, 486, 294, 686, 612, 628, 307, 556, 609}, {290, 486, 228, 489, 628, 612, 686, 624, 503, 711}, {485, 99, 420, 422, 676, 712, 528, 576, 569, 446}, {420, 99, 485, 96, 712, 676, 528, 656, 127, 675}, {99, 80, 420, 422, 128, 445, 712, 569, 447, 446}, {420, 80, 99, 96, 445, 128, 712, 656, 126, 127}, {96, 484, 229, 100, 713, 574, 505, 124, 655, 506}, {92, 96, 484, 485, 140, 713, 531, 532, 675, 492}, {92, 484, 96, 100, 531, 713, 140, 139, 655, 124}, {161, 358, 483, 165, 563, 643, 714, 180, 555, 587}, {483, 358, 161, 487, 643, 563, 714, 550, 565, 564}, {161, 483, 157, 165, 714, 616, 202, 180, 587, 205}, {157, 483, 161, 487, 616, 714, 202, 644, 550, 564}, {362, 31, 160, 354, 408, 185, 715, 404, 377, 590}, {160, 31, 362, 169, 185, 408, 715, 210, 215, 671}, {362, 160, 93, 354, 715, 670, 702, 404, 590, 669}, {93, 160, 362, 169, 670, 715, 702, 568, 210, 671}, {482, 164, 157, 483, 692, 203, 665, 535, 654, 616}, {157, 164, 482, 158, 203, 692, 665, 199, 183, 617}, {228, 489, 222, 224, 711, 501, 266, 239, 705, 265}, {222, 489, 228, 486, 501, 711, 266, 504, 503, 612}, {288, 166, 427, 296, 680, 613, 716, 336, 604, 631}, {288, 427, 166, 488, 716, 613, 680, 684, 633, 690}, {85, 288, 427, 296, 300, 716, 471, 338, 336, 631}, {85, 427, 288, 488, 471, 716, 300, 632, 633, 684}, {484, 223, 96, 229, 575, 649, 713, 574, 248, 505}, {484, 96, 223, 485, 713, 649, 575, 492, 675, 525}, {488, 293, 287, 487, 683, 328, 661, 551, 601, 662}, {287, 293, 488, 288, 328, 683, 661, 329, 304, 684}, {419, 488, 162, 159, 634, 707, 717, 699, 682, 189}, {162, 419, 17, 423, 717, 444, 190, 561, 443, 442}, {17, 419, 162, 159, 444, 717, 190, 188, 699, 189}, {482, 98, 92, 94, 693, 135, 573, 672, 117, 136}, {92, 98, 482, 483, 135, 693, 573, 530, 694, 535}, {358, 487, 352, 353, 565, 639, 395, 369, 566, 393}, {352, 487, 358, 483, 639, 565, 395, 595, 550, 643}, {359, 483, 93, 97, 596, 668, 718, 653, 641, 105}, {359, 93, 483, 354, 718, 668, 596, 372, 669, 589}, {71, 359, 93, 97, 371, 718, 107, 106, 653, 105}, {71, 93, 359, 354, 107, 718, 371, 373, 669, 372}, {52, 490, 227, 421, 546, 719, 255, 451, 517, 704}, {227, 490, 52, 224, 719, 546, 255, 254, 545, 253}, {490, 489, 227, 421, 625, 570, 719, 517, 685, 704}, {227, 489, 490, 224, 570, 625, 719, 254, 705, 545}, {57, 490, 228, 224, 687, 720, 238, 240, 545, 239}, {228, 490, 57, 290, 720, 687, 238, 686, 498, 306}, {490, 489, 228, 224, 625, 711, 720, 545, 705, 239}, {228, 489, 490, 290, 711, 625, 720, 686, 624, 498}, {162, 419, 482, 488, 717, 721, 619, 707, 634, 536}, {482, 419, 162, 423, 721, 717, 619, 620, 443, 561}, {419, 417, 482, 488, 461, 627, 721, 634, 581, 536}, {482, 417, 419, 423, 627, 461, 721, 620, 460, 443}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 722
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {0.125, 1, 1}, {0.375, 1, 1}, {0.625, 1, 1}, {0.875, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {1, 1, 0.875}, {1, 1, 0.625}, {1, 1, 0.375}, {1, 1, 0.125}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0.875, 1, 0}, {0.625, 1, 0}, {0.375, 1, 0}, {0.125, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 1, 0.125}, {0, 1, 0.375}, {0, 1, 0.625}, {0, 1, 0.875}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0, 0, 0.125}, {0, 0, 0.375}, {0, 0, 0.625}, {0, 0, 0.875}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {0.125, 0, 1}, {0.375, 0, 1}, {0.625, 0, 1}, {0.875, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {1, 0, 0.875}, {1, 0, 0.625}, {1, 0, 0.375}, {1, 0, 0.125}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0.875, 0, 0}, {0.625, 0, 0}, {0.375, 0, 0}, {0.125, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.875, 0}, {0, 0.625, 0}, {0, 0.375, 0}, {0, 0.125, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {0, 0.875, 1}, {0, 0.625, 1}, {0, 0.375, 1}, {0, 0.125, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.875, 1}, {1, 0.625, 1}, {1, 0.375, 1}, {1, 0.125, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {1, 0.875, 0}, {1, 0.625, 0}, {1, 0.375, 0}, {1, 0.125, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.234692, 0.610874, 1}, {0.095431, 0.625135, 1}, {0.139261, 0.735739, 1}, {0.264261, 0.860739, 1}, {0.375, 0.904691, 1}, {0.389261, 0.76543, 1}, {0.860739, 0.735739, 1}, {0.904569, 0.625135, 1}, {0.765308, 0.610874, 1}, {0.264261, 0.139383, 1}, {0.389261, 0.234962, 1}, {0.375, 0.0955798, 1}, {0.610739, 0.76543, 1}, {0.625, 0.904691, 1}, {0.735739, 0.860739, 1}, {0.095431, 0.375135, 1}, {0.234692, 0.389518, 1}, {0.139261, 0.264383, 1}, {0.625, 0.0955798, 1}, {0.610739, 0.234962, 1}, {0.735739, 0.139383, 1}, {0.860739, 0.264383, 1}, {0.765308, 0.389518, 1}, {0.904569, 0.375135, 1}, {0.095431, 0.500135, 1}, {0.904569, 0.500135, 1}, {0.5, 0.904691, 1}, {0.5, 0.0955798, 1}, {0.389261, 0.611834, 1}, {0.345431, 0.501231, 1}, {0.5, 0.655786, 1}, {0.610739, 0.611834, 1}, {0.389261, 0.390478, 1}, {0.654569, 0.501231, 1}, {0.5, 0.346675, 1}, {0.610739, 0.390478, 1}, {0.0709532, 0.804047, 1}, {0.210214, 0.789786, 1}, {0.195953, 0.929047, 1}, {0.789786, 0.789786, 1}, {0.929047, 0.804047, 1}, {0.195953, 0.0709735, 1}, {0.210214, 0.210356, 1}, {0.804047, 0.929047, 1}, {0.0709532, 0.195973, 1}, {0.789786, 0.210356, 1}, {0.804047, 0.0709735, 1}, {0.929047, 0.195973, 1}, {0.0709532, 0.0709735, 1}, {0.0709532, 0.929047, 1}, {0.929047, 0.929047, 1}, {0.929047, 0.0709735, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.904569, 1, 0.625}, {0.765308, 1, 0.610739}, {0.860739, 1, 0.735739}, {0.625, 1, 0.095431}, {0.610739, 1, 0.234692}, {0.735739, 1, 0.139261}, {0.375, 1, 0.904569}, {0.389261, 1, 0.765308}, {0.264261, 1, 0.860739}, {0.095431, 1, 0.375}, {0.234692, 1, 0.389261}, {0.139261, 1, 0.264261}, {0.735739, 1, 0.860739}, {0.610739, 1, 0.765308}, {0.625, 1, 0.904569}, {0.139261, 1, 0.735739}, {0.234692, 1, 0.610739}, {0.095431, 1, 0.625}, {0.860739, 1, 0.264261}, {0.765308, 1, 0.389261}, {0.904569, 1, 0.375}, {0.264261, 1, 0.139261}, {0.389261, 1, 0.234692}, {0.375, 1, 0.095431}, {0.5, 1, 0.095431}, {0.904569, 1, 0.5}, {0.095431, 1, 0.5}, {0.5, 1, 0.904569}, {0.654569, 1, 0.5}, {0.610739, 1, 0.610739}, {0.610739, 1, 0.389261}, {0.5, 1, 0.345431}, {0.389261, 1, 0.389261}, {0.5, 1, 0.654569}, {0.389261, 1, 0.610739}, {0.345431, 1, 0.5}, {0.789786, 1, 0.789786}, {0.929047, 1, 0.804047}, {0.789786, 1, 0.210214}, {0.804047, 1, 0.0709532}, {0.210214, 1, 0.789786}, {0.195953, 1, 0.929047}, {0.210214, 1, 0.210214}, {0.0709532, 1, 0.195953}, {0.804047, 1, 0.929047}, {0.0709532, 1, 0.804047}, {0.929047, 1, 0.195953}, {0.195953, 1, 0.0709532}, {0.0709532, 1, 0.0709532}, {0.929047, 1, 0.0709532}, {0.0709532, 1, 0.929047}, {0.929047, 1, 0.929047}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.904691, 0, 0.625}, {0.76543, 0, 0.610739}, {0.860739, 0, 0.735739}, {0.625135, 0, 0.095431}, {0.610874, 0, 0.234692}, {0.735739, 0, 0.139261}, {0.375135, 0, 0.904569}, {0.389518, 0, 0.765308}, {0.264383, 0, 0.860739}, {0.0955798, 0, 0.375}, {0.234962, 0, 0.389261}, {0.139383, 0, 0.264261}, {0.735739, 0, 0.860739}, {0.610874, 0, 0.765308}, {0.625135, 0, 0.904569}, {0.139383, 0, 0.735739}, {0.234962, 0, 0.610739}, {0.0955798, 0, 0.625}, {0.860739, 0, 0.264261}, {0.76543, 0, 0.389261}, {0.904691, 0, 0.375}, {0.264383, 0, 0.139261}, {0.389518, 0, 0.234692}, {0.375135, 0, 0.095431}, {0.500135, 0, 0.095431}, {0.904691, 0, 0.5}, {0.0955798, 0, 0.5}, {0.500135, 0, 0.904569}, {0.655786, 0, 0.5}, {0.611834, 0, 0.610739}, {0.611834, 0, 0.389261}, {0.501231, 0, 0.345431}, {0.390478, 0, 0.389261}, {0.501231, 0, 0.654569}, {0.390478, 0, 0.610739}, {0.346675, 0, 0.5}, {0.789786, 0, 0.789786}, {0.929047, 0, 0.804047}, {0.789786, 0, 0.210214}, {0.804047, 0, 0.0709532}, {0.210356, 0, 0.789786}, {0.195973, 0, 0.929047}, {0.210356, 0, 0.210214}, {0.0709735, 0, 0.195953}, {0.804047, 0, 0.929047}, {0.0709735, 0, 0.804047}, {0.929047, 0, 0.195953}, {0.195973, 0, 0.0709532}, {0.0709735, 0, 0.0709532}, {0.929047, 0, 0.0709532}, {0.0709735, 0, 0.929047}, {0.929047, 0, 0.929047}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0.860739, 0.735739, 0}, {0.765308, 0.610739, 0}, {0.904569, 0.625, 0}, {0.625, 0.904569, 0}, {0.610739, 0.765308, 0}, {0.735739, 0.860739, 0}, {0.735739, 0.139261, 0}, {0.610739, 0.234692, 0}, {0.625, 0.095431, 0}, {0.095431, 0.625, 0}, {0.234692, 0.610739, 0}, {0.139261, 0.735739, 0}, {0.264261, 0.860739, 0}, {0.389261, 0.765308, 0}, {0.375, 0.904569, 0}, {0.904569, 0.375, 0}, {0.765308, 0.389261, 0}, {0.860739, 0.264261, 0}, {0.139261, 0.264261, 0}, {0.234692, 0.389261, 0}, {0.095431, 0.375, 0}, {0.375, 0.095431, 0}, {0.389261, 0.234692, 0}, {0.264261, 0.139261, 0}, {0.904569, 0.5, 0}, {0.5, 0.904569, 0}, {0.5, 0.095431, 0}, {0.095431, 0.5, 0}, {0.5, 0.654569, 0}, {0.610739, 0.610739, 0}, {0.654569, 0.5, 0}, {0.389261, 0.610739, 0}, {0.610739, 0.389261, 0}, {0.345431, 0.5, 0}, {0.5, 0.345431, 0}, {0.389261, 0.389261, 0}, {0.789786, 0.789786, 0}, {0.804047, 0.929047, 0}, {0.929047, 0.804047, 0}, {0.804047, 0.0709532, 0}, {0.789786, 0.210214, 0}, {0.210214, 0.789786, 0}, {0.0709532, 0.804047, 0}, {0.929047, 0.195953, 0}, {0.195953, 0.929047, 0}, {0.210214, 0.210214, 0}, {0.195953, 0.0709532, 0}, {0.0709532, 0.195953, 0}, {0.929047, 0.0709532, 0}, {0.0709532, 0.929047, 0}, {0.929047, 0.929047, 0}, {0.0709532, 0.0709532, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {0, 0.735739, 0.139261}, {0, 0.610739, 0.234692}, {0, 0.625, 0.095431}, {0, 0.904569, 0.375}, {0, 0.765308, 0.389261}, {0, 0.860739, 0.264261}, {0, 0.625, 0.904569}, {0, 0.610739, 0.765308}, {0, 0.735739, 0.860739}, {0, 0.139261, 0.264261}, {0, 0.234692, 0.389261}, {0, 0.095431, 0.375}, {0, 0.860739, 0.735739}, {0, 0.765308, 0.610739}, {0, 0.904569, 0.625}, {0, 0.375, 0.095431}, {0, 0.389261, 0.234692}, {0, 0.264261, 0.139261}, {0, 0.095431, 0.625}, {0, 0.234692, 0.610739}, {0, 0.139261, 0.735739}, {0, 0.264261, 0.860739}, {0, 0.389261, 0.765308}, {0, 0.375, 0.904569}, {0, 0.5, 0.095431}, {0, 0.5, 0.904569}, {0, 0.904569, 0.5}, {0, 0.095431, 0.5}, {0, 0.610739, 0.389261}, {0, 0.5, 0.345431}, {0, 0.654569, 0.5}, {0, 0.610739, 0.610739}, {0, 0.389261, 0.389261}, {0, 0.5, 0.654569}, {0, 0.345431, 0.5}, {0, 0.389261, 0.610739}, {0, 0.804047, 0.0709532}, {0, 0.789786, 0.210214}, {0, 0.929047, 0.195953}, {0, 0.789786, 0.789786}, {0, 0.804047, 0.929047}, {0, 0.0709532, 0.195953}, {0, 0.210214, 0.210214}, {0, 0.929047, 0.804047}, {0, 0.195953, 0.0709532}, {0, 0.210214, 0.789786}, {0, 0.0709532, 0.804047}, {0, 0.195953, 0.929047}, {0, 0.0709532, 0.0709532}, {0, 0.929047, 0.0709532}, {0, 0.929047, 0.929047}, {0, 0.0709532, 0.929047}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {1, 0.860678, 0.735678}, {1, 0.76518, 0.610611}, {1, 0.904501, 0.624932}, {1, 0.624932, 0.904501}, {1, 0.610611, 0.76518}, {1, 0.735678, 0.860678}, {1, 0.0953701, 0.624939}, {1, 0.234631, 0.610678}, {1, 0.139261, 0.735739}, {1, 0.735739, 0.139261}, {1, 0.610678, 0.234631}, {1, 0.624939, 0.0953701}, {1, 0.904501, 0.374932}, {1, 0.76524, 0.389193}, {1, 0.860739, 0.264261}, {1, 0.264261, 0.860739}, {1, 0.389193, 0.76524}, {1, 0.374932, 0.904501}, {1, 0.374939, 0.0953701}, {1, 0.3892, 0.234631}, {1, 0.264261, 0.139261}, {1, 0.139261, 0.264261}, {1, 0.234631, 0.3892}, {1, 0.0953701, 0.374939}, {1, 0.904501, 0.499932}, {1, 0.499932, 0.904501}, {1, 0.0953701, 0.499939}, {1, 0.499939, 0.0953701}, {1, 0.610131, 0.610131}, {1, 0.499385, 0.653954}, {1, 0.653954, 0.499385}, {1, 0.610191, 0.388713}, {1, 0.388713, 0.610191}, {1, 0.499391, 0.344822}, {1, 0.344822, 0.499391}, {1, 0.388713, 0.388713}, {1, 0.929037, 0.804037}, {1, 0.789715, 0.789715}, {1, 0.804037, 0.929037}, {1, 0.210214, 0.789786}, {1, 0.0709532, 0.804047}, {1, 0.804047, 0.0709532}, {1, 0.789786, 0.210214}, {1, 0.195953, 0.929047}, {1, 0.929047, 0.195953}, {1, 0.0709532, 0.195953}, {1, 0.210214, 0.210214}, {1, 0.195953, 0.0709532}, {1, 0.0709532, 0.929047}, {1, 0.929047, 0.0709532}, {1, 0.929037, 0.929037}, {1, 0.0709532, 0.0709532}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}, {0.403787, 0.502163, 0.604301}, {0.59395, 0.335588, 0.588613}, {0.57425, 0.502163, 0.604301}, {0.533055, 0.519268, 0.479373}, {0.723218, 0.352693, 0.463685}, {0.552756, 0.352693, 0.463685}, {0.907719, 0.227933, 0.0932632}, {0.768458, 0.242194, 0.0932632}, {0.812288, 0.352933, 0.0932632}, {0.462839, 0.167794, 0.544306}, {0.592107, 0.184899, 0.419378}, {0.423487, 0.335588, 0.41815}, {0.552756, 0.352693, 0.293222}, {0.462839, 0.167794, 0.373844}, {0.610874, 0.139383, 0.904569}, {0.500135, 0.0955798, 0.904569}, {0.141927, 0.0709532, 0.0709532}, {0.0709735, 0.0709532, 0.141906}, {0.0709532, 0.141906, 0.0709532}, {0.307175, 0.417794, 0.123844}, {0.351005, 0.307055, 0.123844}, {0.095431, 0.5, 0.095431}, {0.139261, 0.389261, 0.095431}, {0.211744, 0.417794, 0.219275}, {0.633302, 0.167794, 0.544306}, {0.907719, 0.173886, 0.164216}, {0.907719, 0.242194, 0.232524}, {0.0709532, 0.210234, 0.860739}, {0.141927, 0.0709735, 0.929047}, {0.0709735, 0.139261, 0.789786}, {0.0709735, 0.0709532, 0.858094}, {0.0709532, 0.141927, 0.929047}, {0.210336, 0.0709735, 0.860739}, {0.139383, 0.139261, 0.721478}, {0.742945, 0.167794, 0.655045}, {0.786897, 0.167794, 0.544306}, {0.904691, 0.139261, 0.610739}, {0.882206, 0.307055, 0.655045}, {0.860739, 0.139261, 0.721478}, {0.442043, 0.585464, 0.809994}, {0.461744, 0.418889, 0.794306}, {0.632206, 0.418889, 0.794306}, {0.907719, 0.352872, 0.188633}, {0.836765, 0.173886, 0.0932632}, {0.549357, 0.674254, 0.636624}, {0.73952, 0.678141, 0.450474}, {0.57425, 0.672625, 0.433838}, {0.723218, 0.523156, 0.293222}, {0.698326, 0.524784, 0.496008}, {0.721478, 0.860739, 0.860739}, {0.610739, 0.904691, 0.860739}, {0.0709735, 0.139261, 0.210214}, {0.882206, 0.263164, 0.544245}, {0.882206, 0.417246, 0.543759}, {0.768458, 0.102933, 0.232524}, {0.907719, 0.102933, 0.218263}, {0.836765, 0.102933, 0.164216}, {0.73952, 0.507679, 0.620936}, {0.929047, 0.929037, 0.858083}, {0.403787, 0.672625, 0.433838}, {0.59395, 0.676512, 0.247688}, {0.552756, 0.523156, 0.293222}, {0.307175, 0.417929, 0.794306}, {0.351005, 0.307176, 0.794306}, {0.095431, 0.904569, 0.5}, {0.500135, 0.095431, 0.095431}, {0.858094, 0.929047, 0.929047}, {0.5, 0.904691, 0.904569}, {0.929047, 0.858083, 0.929037}, {0.423487, 0.50605, 0.41815}, {0.904569, 0.904501, 0.499932}, {0.139261, 0.860739, 0.278522}, {0.139261, 0.904569, 0.389261}, {0.351005, 0.838256, 0.263105}, {0.211744, 0.742825, 0.373844}, {0.211744, 0.698995, 0.263105}, {0.141906, 0.929047, 0.929047}, {0.210214, 0.860739, 0.929047}, {0.904569, 0.500068, 0.904501}, {0.745703, 0.184899, 0.419378}, {0.904691, 0.0953701, 0.499939}, {0.841012, 0.280269, 0.419318}, {0.607314, 0.59098, 0.82663}, {0.461879, 0.167794, 0.698875}, {0.572483, 0.167794, 0.655045}, {0.882206, 0.417726, 0.698808}, {0.0709532, 0.789786, 0.139261}, {0.139261, 0.721478, 0.139261}, {0.882206, 0.588195, 0.219214}, {0.841012, 0.434839, 0.264749}, {0.882206, 0.587709, 0.373296}, {0.841012, 0.434352, 0.418831}, {0.389261, 0.904569, 0.139261}, {0.5, 0.904569, 0.095431}, {0.389383, 0.095431, 0.139261}, {0.278522, 0.860739, 0.139261}, {0.287474, 0.834369, 0.559994}, {0.331304, 0.834369, 0.670734}, {0.192043, 0.695108, 0.670734}, {0.139261, 0.860739, 0.721478}, {0.095431, 0.860739, 0.610739}, {0.139261, 0.278644, 0.860739}, {0.278644, 0.139383, 0.860739}, {0.139261, 0.389383, 0.904569}, {0.192043, 0.584369, 0.559994}, {0.192043, 0.584369, 0.714563}, {0.211744, 0.417794, 0.698875}, {0.211744, 0.417794, 0.544306}, {0.0955798, 0.139261, 0.610739}, {0.351005, 0.698995, 0.123844}, {0.461744, 0.742825, 0.123844}, {0.461744, 0.838256, 0.219275}, {0.929047, 0.141906, 0.0709532}, {0.858094, 0.929047, 0.0709532}, {0.0955798, 0.095431, 0.5}, {0.307323, 0.167794, 0.544306}, {0.211744, 0.263225, 0.544306}, {0.211744, 0.307055, 0.655045}, {0.461744, 0.263225, 0.123844}, {0.351126, 0.167794, 0.263105}, {0.278644, 0.139261, 0.139261}, {0.461879, 0.167794, 0.219275}, {0.929047, 0.929047, 0.141906}, {0.860739, 0.860678, 0.721417}, {0.904569, 0.860678, 0.610678}, {0.442043, 0.834369, 0.559994}, {0.718053, 0.839885, 0.687369}, {0.857314, 0.700563, 0.687308}, {0.761883, 0.839885, 0.57663}, {0.857314, 0.744386, 0.576562}, {0.904569, 0.499939, 0.0953701}, {0.786775, 0.588256, 0.123844}, {0.745581, 0.434899, 0.169378}, {0.701751, 0.32416, 0.169378}, {0.748731, 0.287832, 0.262642}, {0.857314, 0.589817, 0.731131}, {0.857314, 0.589337, 0.576082}, {0.572483, 0.307055, 0.123844}, {0.461744, 0.417794, 0.123844}, {0.591012, 0.434899, 0.169378}, {0.929047, 0.858094, 0.0709532}, {0.882206, 0.713256, 0.123844}, {0.882206, 0.767303, 0.194797}, {0.882206, 0.698995, 0.263105}, {0.351126, 0.167794, 0.433567}, {0.351126, 0.167794, 0.655045}, {0.211744, 0.417794, 0.373844}, {0.423487, 0.50605, 0.247688}, {0.211744, 0.588256, 0.373844}, {0.929047, 0.0709532, 0.141906}, {0.287474, 0.584504, 0.809994}, {0.929047, 0.0709532, 0.858094}, {0.192043, 0.738938, 0.559994}, {0.461744, 0.838256, 0.373844}, {0.632206, 0.838256, 0.373844}, {0.139261, 0.210214, 0.0709532}, {0.210234, 0.139261, 0.0709532}, {0.789786, 0.0709735, 0.860739}, {0.721478, 0.139383, 0.860739}, {0.610739, 0.904569, 0.139261}, {0.721478, 0.860739, 0.139261}, {0.0709532, 0.929047, 0.141906}, {0.095431, 0.500135, 0.904569}, {0.442043, 0.834369, 0.714563}, {0.461744, 0.263374, 0.794306}, {0.860739, 0.278644, 0.860739}, {0.929047, 0.210234, 0.860739}, {0.211744, 0.307055, 0.263105}, {0.139261, 0.610739, 0.095431}, {0.211744, 0.588256, 0.219275}, {0.632206, 0.588256, 0.123844}, {0.461744, 0.588256, 0.123844}, {0.139383, 0.139261, 0.278522}, {0.139261, 0.278522, 0.139261}, {0.607314, 0.839885, 0.57663}, {0.904569, 0.610813, 0.860678}, {0.0709532, 0.858094, 0.929047}, {0.331304, 0.695108, 0.809994}, {0.139261, 0.721478, 0.860739}, {0.278522, 0.860739, 0.860739}, {0.0709532, 0.929047, 0.858094}, {0.718053, 0.700624, 0.82663}, {0.860739, 0.721417, 0.860678}, {0.761883, 0.59002, 0.82663}, {0.742945, 0.307176, 0.794306}, {0.786775, 0.417929, 0.794306}, {0.860739, 0.929037, 0.789776}, {0.389261, 0.904691, 0.860739}, {0.307175, 0.588256, 0.123844}, {0.789786, 0.860739, 0.0709532}, {0.0709532, 0.858094, 0.0709532}, {0.742945, 0.838256, 0.263105}, {0.632206, 0.742825, 0.123844}, {0.742945, 0.698995, 0.123844}, {0.841012, 0.32416, 0.308639}, {0.610874, 0.139261, 0.095431}, {0.782719, 0.102933, 0.0932632}, {0.860739, 0.789776, 0.929037}, {0.929047, 0.141927, 0.929047}, {0.811253, 0.838256, 0.194797}, {0.858094, 0.0709735, 0.929047}, {0.607314, 0.839885, 0.731199}, {0.607314, 0.744576, 0.82663}, {0.442043, 0.73906, 0.809994}, {0.389383, 0.0955798, 0.860739}, {0.141906, 0.929047, 0.0709532}, {0.0709532, 0.860739, 0.210214}, {0.929047, 0.860739, 0.210214}, {0.860739, 0.860739, 0.278522}, {0.139383, 0.095431, 0.389261}, {0.211744, 0.263225, 0.373844}, {0.139261, 0.789786, 0.929047}, {0.789786, 0.929047, 0.860739}, {0.904691, 0.139261, 0.389261}, {0.701751, 0.184899, 0.308639}, {0.929047, 0.139261, 0.789786}, {0.786775, 0.838256, 0.373844}, {0.875, 0.0709532, 0.0709532}, {0.210214, 0.929047, 0.139261}, {0.572483, 0.838256, 0.263105}, {0.591147, 0.184899, 0.264809}, {0.904569, 0.389396, 0.860739}, {0.572483, 0.307176, 0.794306}, {0.331304, 0.834369, 0.449255}, {0.139261, 0.929047, 0.789786}, {0.860739, 0.789786, 0.0709532}, {0.904569, 0.860739, 0.389261}, {0.139261, 0.610739, 0.904569}, {0.812409, 0.102933, 0.343263}, {0.657854, 0.102933, 0.188694}, {0.857314, 0.700624, 0.465891}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 48
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{6, 8, 11}, {8, 9, 12}, {9, 10, 13}, {10, 7, 14}, {7, 15, 18}, {15, 16, 19}, {16, 17, 20}, {17, 3, 21}, {3, 22, 25}, {22, 23, 26}, {23, 24, 27}, {24, 2, 28}, {2, 29, 32}, {29, 30, 33}, {30, 31, 34}, {31, 6, 35}, {0, 36, 39}, {36, 37, 40}, {37, 38, 41}, {38, 4, 42}, {4, 43, 46}, {43, 44, 47}, {44, 45, 48}, {45, 5, 49}, {5, 50, 53}, {50, 51, 54}, {51, 52, 55}, {52, 1, 56}, {1, 57, 60}, {57, 58, 61}, {58, 59, 62}, {59, 0, 63}, {2, 64, 67}, {64, 65, 68}, {65, 66, 69}, {66, 0, 70}, {6, 71, 74}, {71, 72, 75}, {72, 73, 76}, {73, 4, 77}, {7, 78, 81}, {78, 79, 82}, {79, 80, 83}, {80, 5, 84}, {3, 85, 88}, {85, 86, 89}, {86, 87, 90}, {87, 1, 91}}
        ]
-        (not_ghost:triangle_6) [
+        (not_ghost:_triangle_6) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_6
+        + id             : mesh:connectivities:_triangle_6
         + size           : 240
         + nb_component   : 6
         + allocated size : 2000
         + memory size    : 47kB
         + values         : {{93, 97, 71, 105, 106, 107}, {93, 8, 98, 108, 109, 110}, {94, 78, 99, 111, 112, 113}, {43, 95, 100, 114, 115, 116}, {94, 98, 10, 117, 118, 119}, {73, 97, 95, 120, 121, 122}, {45, 100, 96, 123, 124, 125}, {80, 96, 99, 126, 127, 128}, {71, 97, 72, 106, 129, 75}, {78, 79, 99, 82, 130, 112}, {8, 9, 98, 12, 131, 109}, {43, 100, 44, 116, 132, 47}, {72, 97, 73, 129, 120, 76}, {9, 10, 98, 13, 118, 131}, {79, 80, 99, 83, 128, 130}, {44, 100, 45, 132, 123, 48}, {93, 92, 97, 133, 134, 105}, {93, 98, 92, 110, 135, 133}, {94, 92, 98, 136, 135, 117}, {92, 95, 97, 137, 121, 134}, {94, 99, 92, 113, 138, 136}, {92, 100, 95, 139, 115, 137}, {92, 99, 96, 138, 127, 140}, {92, 96, 100, 140, 124, 139}, {93, 71, 101, 107, 141, 142}, {93, 101, 8, 142, 143, 108}, {94, 102, 78, 144, 145, 111}, {43, 103, 95, 146, 147, 114}, {94, 10, 102, 119, 148, 144}, {73, 95, 103, 122, 147, 149}, {45, 96, 104, 125, 150, 151}, {80, 104, 96, 152, 150, 126}, {4, 73, 103, 77, 149, 153}, {6, 101, 71, 154, 141, 74}, {7, 102, 10, 155, 148, 14}, {7, 78, 102, 81, 145, 155}, {6, 8, 101, 11, 143, 154}, {5, 104, 80, 156, 152, 84}, {4, 103, 43, 153, 146, 46}, {5, 45, 104, 49, 151, 156}, {15, 162, 158, 170, 171, 172}, {22, 163, 159, 173, 174, 175}, {8, 164, 160, 176, 177, 178}, {29, 165, 161, 179, 180, 181}, {10, 158, 164, 182, 183, 184}, {31, 160, 165, 185, 186, 187}, {17, 159, 162, 188, 189, 190}, {24, 161, 163, 191, 192, 193}, {22, 23, 163, 26, 194, 173}, {15, 16, 162, 19, 195, 170}, {29, 30, 165, 33, 196, 179}, {8, 9, 164, 12, 197, 176}, {16, 17, 162, 20, 190, 195}, {23, 24, 163, 27, 193, 194}, {9, 10, 164, 13, 184, 197}, {30, 31, 165, 34, 187, 196}, {158, 162, 157, 171, 198, 199}, {159, 157, 162, 200, 198, 189}, {159, 163, 157, 174, 201, 200}, {161, 157, 163, 202, 201, 192}, {158, 157, 164, 199, 203, 183}, {160, 164, 157, 177, 203, 204}, {160, 157, 165, 204, 205, 186}, {161, 165, 157, 180, 205, 202}, {15, 158, 167, 172, 206, 207}, {22, 159, 166, 175, 208, 209}, {8, 160, 169, 178, 210, 211}, {29, 161, 168, 181, 212, 213}, {10, 167, 158, 214, 206, 182}, {31, 169, 160, 215, 210, 185}, {17, 166, 159, 216, 208, 188}, {24, 168, 161, 217, 212, 191}, {2, 168, 24, 218, 217, 28}, {3, 166, 17, 219, 216, 21}, {6, 169, 31, 220, 215, 35}, {7, 167, 10, 221, 214, 14}, {7, 15, 167, 18, 207, 221}, {3, 22, 166, 25, 209, 219}, {6, 8, 169, 11, 211, 220}, {2, 29, 168, 32, 213, 218}, {50, 227, 223, 235, 236, 237}, {57, 228, 224, 238, 239, 240}, {43, 229, 225, 241, 242, 243}, {36, 230, 226, 244, 245, 246}, {45, 223, 229, 247, 248, 249}, {38, 225, 230, 250, 251, 252}, {52, 224, 227, 253, 254, 255}, {59, 226, 228, 256, 257, 258}, {57, 58, 228, 61, 259, 238}, {50, 51, 227, 54, 260, 235}, {36, 37, 230, 40, 261, 244}, {43, 44, 229, 47, 262, 241}, {51, 52, 227, 55, 255, 260}, {58, 59, 228, 62, 258, 259}, {44, 45, 229, 48, 249, 262}, {37, 38, 230, 41, 252, 261}, {223, 227, 222, 236, 263, 264}, {224, 222, 227, 265, 263, 254}, {224, 228, 222, 239, 266, 265}, {222, 228, 226, 266, 257, 267}, {223, 222, 229, 264, 268, 248}, {222, 225, 229, 269, 242, 268}, {222, 230, 225, 270, 251, 269}, {222, 226, 230, 267, 245, 270}, {50, 223, 232, 237, 271, 272}, {57, 224, 231, 240, 273, 274}, {43, 225, 234, 243, 275, 276}, {36, 226, 233, 246, 277, 278}, {45, 232, 223, 279, 271, 247}, {38, 234, 225, 280, 275, 250}, {52, 231, 224, 281, 273, 253}, {59, 233, 226, 282, 277, 256}, {0, 233, 59, 283, 282, 63}, {1, 231, 52, 284, 281, 56}, {4, 234, 38, 285, 280, 42}, {5, 232, 45, 286, 279, 49}, {5, 50, 232, 53, 272, 286}, {1, 57, 231, 60, 274, 284}, {4, 43, 234, 46, 276, 285}, {0, 36, 233, 39, 278, 283}, {85, 288, 292, 300, 301, 302}, {22, 293, 288, 303, 304, 305}, {57, 290, 294, 306, 307, 308}, {64, 295, 289, 309, 310, 311}, {24, 289, 293, 312, 313, 314}, {87, 292, 290, 315, 316, 317}, {66, 291, 295, 318, 319, 320}, {59, 294, 291, 321, 322, 323}, {85, 292, 86, 302, 324, 89}, {22, 23, 293, 26, 325, 303}, {57, 294, 58, 308, 326, 61}, {64, 65, 295, 68, 327, 309}, {86, 292, 87, 324, 315, 90}, {23, 24, 293, 27, 314, 325}, {65, 66, 295, 69, 320, 327}, {58, 294, 59, 326, 321, 62}, {288, 293, 287, 304, 328, 329}, {288, 287, 292, 329, 330, 301}, {289, 287, 293, 331, 328, 313}, {290, 292, 287, 316, 330, 332}, {289, 295, 287, 310, 333, 331}, {290, 287, 294, 332, 334, 307}, {291, 294, 287, 322, 334, 335}, {291, 287, 295, 335, 333, 319}, {22, 288, 296, 305, 336, 337}, {85, 296, 288, 338, 336, 300}, {57, 298, 290, 339, 340, 306}, {64, 289, 297, 311, 341, 342}, {87, 290, 298, 317, 340, 343}, {24, 297, 289, 344, 341, 312}, {59, 291, 299, 323, 345, 346}, {66, 299, 291, 347, 345, 318}, {1, 87, 298, 91, 343, 348}, {2, 297, 24, 349, 344, 28}, {3, 296, 85, 350, 338, 88}, {3, 22, 296, 25, 337, 350}, {1, 298, 57, 348, 339, 60}, {2, 64, 297, 67, 342, 349}, {0, 59, 299, 63, 346, 351}, {0, 299, 66, 351, 347, 70}, {64, 353, 357, 365, 366, 367}, {29, 358, 353, 368, 369, 370}, {71, 359, 354, 371, 372, 373}, {36, 355, 360, 374, 375, 376}, {31, 354, 358, 377, 378, 379}, {66, 357, 355, 380, 381, 382}, {38, 360, 356, 383, 384, 385}, {73, 356, 359, 386, 387, 388}, {64, 357, 65, 367, 389, 68}, {71, 72, 359, 75, 390, 371}, {29, 30, 358, 33, 391, 368}, {36, 360, 37, 376, 392, 40}, {65, 357, 66, 389, 380, 69}, {30, 31, 358, 34, 379, 391}, {72, 73, 359, 76, 388, 390}, {37, 360, 38, 392, 383, 41}, {353, 352, 357, 393, 394, 366}, {353, 358, 352, 369, 395, 393}, {354, 352, 358, 396, 395, 378}, {355, 357, 352, 381, 394, 397}, {354, 359, 352, 372, 398, 396}, {355, 352, 360, 397, 399, 375}, {356, 352, 359, 400, 398, 387}, {356, 360, 352, 384, 399, 400}, {64, 361, 353, 401, 402, 365}, {29, 353, 361, 370, 402, 403}, {71, 354, 362, 373, 404, 405}, {36, 363, 355, 406, 407, 374}, {31, 362, 354, 408, 404, 377}, {66, 355, 363, 382, 407, 409}, {38, 356, 364, 385, 410, 411}, {73, 364, 356, 412, 410, 386}, {0, 66, 363, 70, 409, 413}, {2, 361, 64, 414, 401, 67}, {6, 362, 31, 415, 408, 35}, {6, 71, 362, 74, 405, 415}, {2, 29, 361, 32, 403, 414}, {4, 364, 73, 416, 412, 77}, {0, 363, 36, 413, 406, 39}, {4, 38, 364, 42, 411, 416}, {15, 418, 423, 430, 431, 432}, {78, 422, 418, 433, 434, 435}, {50, 424, 420, 436, 437, 438}, {85, 419, 425, 439, 440, 441}, {17, 423, 419, 442, 443, 444}, {80, 420, 422, 445, 446, 447}, {87, 425, 421, 448, 449, 450}, {52, 421, 424, 451, 452, 453}, {15, 423, 16, 432, 454, 19}, {78, 79, 422, 82, 455, 433}, {50, 51, 424, 54, 456, 436}, {85, 425, 86, 441, 457, 89}, {79, 80, 422, 83, 447, 455}, {16, 423, 17, 454, 442, 20}, {86, 425, 87, 457, 448, 90}, {51, 52, 424, 55, 453, 456}, {417, 418, 422, 458, 434, 459}, {417, 423, 418, 460, 431, 458}, {419, 423, 417, 443, 460, 461}, {420, 417, 422, 462, 459, 446}, {419, 417, 425, 461, 463, 440}, {420, 424, 417, 437, 464, 462}, {421, 417, 424, 465, 464, 452}, {421, 425, 417, 449, 463, 465}, {15, 426, 418, 466, 467, 430}, {78, 418, 426, 435, 467, 468}, {50, 420, 428, 438, 469, 470}, {85, 427, 419, 471, 472, 439}, {80, 428, 420, 473, 469, 445}, {17, 419, 427, 444, 472, 474}, {52, 429, 421, 475, 476, 451}, {87, 421, 429, 450, 476, 477}, {5, 428, 80, 478, 473, 84}, {3, 17, 427, 21, 474, 479}, {7, 78, 426, 81, 468, 480}, {7, 426, 15, 480, 466, 18}, {5, 50, 428, 53, 470, 478}, {3, 427, 85, 479, 471, 88}, {1, 429, 52, 481, 475, 56}, {1, 87, 429, 91, 477, 481}}
        ]
-        (not_ghost:tetrahedron_10) [
+        (not_ghost:_tetrahedron_10) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:tetrahedron_10
+        + id             : mesh:connectivities:_tetrahedron_10
         + size           : 341
         + nb_component   : 10
         + allocated size : 2000
         + memory size    : 78kB
         + values         : {{484, 483, 485, 489, 491, 493, 492, 496, 494, 495}, {87, 290, 490, 292, 317, 498, 497, 315, 316, 499}, {222, 484, 489, 486, 500, 496, 501, 504, 502, 503}, {96, 229, 45, 100, 505, 249, 125, 124, 506, 123}, {59, 0, 233, 299, 63, 283, 282, 346, 351, 507}, {0, 363, 233, 299, 413, 508, 283, 351, 509, 507}, {486, 295, 291, 357, 510, 319, 511, 514, 512, 513}, {484, 222, 489, 485, 500, 501, 496, 492, 515, 495}, {87, 429, 421, 490, 477, 476, 450, 497, 516, 517}, {103, 356, 234, 364, 518, 520, 519, 522, 410, 521}, {356, 103, 234, 225, 518, 519, 520, 524, 523, 275}, {43, 103, 225, 234, 146, 523, 243, 276, 519, 275}, {223, 227, 485, 420, 236, 526, 525, 529, 527, 528}, {483, 92, 484, 485, 530, 531, 491, 493, 532, 492}, {87, 421, 425, 490, 450, 449, 448, 497, 517, 533}, {298, 87, 290, 490, 343, 317, 340, 534, 497, 498}, {482, 483, 488, 489, 535, 537, 536, 539, 494, 538}, {94, 10, 158, 98, 119, 182, 540, 117, 118, 541}, {355, 363, 233, 36, 407, 508, 542, 374, 406, 278}, {485, 420, 424, 417, 528, 437, 543, 544, 462, 464}, {231, 224, 52, 490, 273, 253, 281, 547, 545, 546}, {483, 482, 485, 489, 535, 548, 493, 494, 539, 495}, {167, 15, 7, 426, 207, 18, 221, 549, 466, 480}, {483, 487, 488, 489, 550, 551, 537, 494, 552, 538}, {484, 92, 97, 95, 531, 134, 553, 554, 137, 121}, {29, 165, 30, 358, 179, 196, 33, 368, 555, 391}, {228, 294, 58, 59, 556, 326, 259, 258, 321, 62}, {102, 10, 7, 167, 148, 14, 155, 557, 214, 221}, {9, 10, 98, 164, 13, 118, 131, 197, 184, 558}, {78, 102, 7, 426, 145, 155, 81, 468, 559, 480}, {483, 484, 487, 489, 491, 560, 550, 494, 496, 552}, {16, 423, 162, 17, 454, 561, 195, 20, 442, 190}, {353, 161, 358, 487, 562, 563, 369, 566, 564, 565}, {93, 101, 8, 169, 142, 143, 108, 568, 567, 211}, {78, 422, 79, 99, 433, 455, 82, 112, 569, 130}, {485, 227, 489, 424, 526, 570, 495, 543, 571, 572}, {482, 92, 483, 485, 573, 530, 535, 548, 532, 493}, {223, 222, 229, 484, 264, 268, 248, 575, 500, 574}, {422, 420, 485, 417, 446, 528, 576, 459, 462, 544}, {64, 297, 353, 289, 342, 577, 365, 311, 341, 578}, {101, 6, 8, 169, 154, 11, 143, 567, 220, 211}, {425, 488, 489, 417, 579, 538, 580, 463, 581, 582}, {163, 161, 24, 293, 192, 191, 193, 584, 583, 314}, {228, 294, 59, 226, 556, 321, 258, 257, 585, 256}, {161, 289, 24, 293, 586, 312, 191, 583, 313, 314}, {165, 483, 160, 354, 587, 588, 186, 591, 589, 590}, {103, 356, 95, 225, 518, 592, 147, 523, 524, 593}, {356, 95, 359, 73, 592, 594, 387, 386, 122, 388}, {352, 483, 359, 484, 595, 596, 398, 598, 491, 597}, {103, 43, 4, 234, 146, 46, 153, 519, 276, 285}, {230, 356, 38, 225, 599, 385, 252, 251, 524, 250}, {161, 289, 293, 487, 586, 313, 583, 564, 600, 601}, {161, 487, 293, 163, 564, 601, 583, 192, 602, 584}, {429, 87, 298, 490, 477, 343, 603, 516, 497, 534}, {364, 38, 234, 4, 411, 280, 521, 416, 42, 285}, {22, 296, 3, 166, 337, 350, 25, 209, 604, 219}, {230, 37, 360, 36, 261, 392, 605, 244, 40, 376}, {356, 230, 360, 484, 599, 605, 384, 608, 606, 607}, {22, 23, 293, 163, 26, 325, 303, 173, 194, 584}, {294, 486, 291, 226, 609, 511, 322, 585, 610, 611}, {294, 228, 486, 226, 556, 612, 609, 585, 257, 610}, {3, 17, 166, 427, 21, 216, 219, 479, 474, 613}, {364, 103, 4, 234, 522, 153, 416, 521, 519, 285}, {158, 15, 418, 162, 172, 430, 614, 171, 170, 615}, {15, 423, 418, 162, 432, 431, 430, 170, 561, 615}, {157, 483, 160, 165, 616, 588, 204, 205, 587, 186}, {482, 158, 418, 162, 617, 614, 618, 619, 171, 615}, {423, 482, 418, 162, 620, 618, 431, 561, 619, 615}, {425, 488, 292, 489, 579, 622, 621, 580, 538, 623}, {290, 489, 490, 292, 624, 625, 498, 316, 623, 499}, {222, 223, 485, 484, 264, 525, 515, 500, 575, 492}, {363, 0, 66, 299, 413, 70, 409, 509, 351, 347}, {482, 422, 485, 417, 626, 576, 548, 627, 459, 544}, {486, 290, 287, 489, 628, 332, 629, 503, 624, 630}, {296, 3, 166, 427, 350, 219, 604, 631, 479, 613}, {489, 290, 287, 292, 624, 332, 630, 623, 316, 330}, {488, 85, 427, 419, 632, 471, 633, 634, 439, 472}, {425, 488, 419, 85, 579, 634, 440, 441, 632, 439}, {15, 16, 423, 162, 19, 454, 432, 170, 195, 561}, {65, 64, 357, 295, 68, 367, 389, 327, 309, 512}, {222, 484, 486, 226, 500, 502, 504, 267, 635, 610}, {356, 484, 95, 225, 608, 554, 592, 524, 636, 593}, {352, 484, 486, 487, 598, 502, 637, 639, 560, 638}, {230, 222, 484, 225, 270, 500, 606, 251, 269, 636}, {294, 228, 58, 57, 556, 259, 326, 308, 238, 61}, {352, 483, 484, 487, 595, 491, 598, 639, 550, 560}, {23, 163, 24, 293, 194, 193, 27, 325, 584, 314}, {429, 231, 1, 52, 640, 284, 481, 475, 281, 56}, {228, 222, 486, 226, 266, 504, 612, 257, 267, 610}, {482, 422, 417, 418, 626, 459, 627, 618, 434, 458}, {489, 425, 490, 292, 580, 533, 625, 623, 621, 499}, {483, 92, 97, 484, 530, 134, 641, 491, 531, 553}, {50, 232, 5, 428, 272, 286, 53, 470, 642, 478}, {483, 165, 358, 354, 587, 555, 643, 589, 591, 378}, {157, 483, 487, 488, 616, 550, 644, 645, 537, 551}, {425, 488, 417, 419, 579, 581, 463, 440, 634, 461}, {222, 230, 484, 226, 270, 606, 500, 267, 245, 635}, {299, 363, 233, 291, 509, 508, 507, 345, 646, 647}, {103, 356, 73, 95, 518, 386, 149, 147, 592, 122}, {229, 44, 45, 100, 262, 48, 249, 506, 132, 123}, {356, 230, 38, 360, 599, 252, 385, 384, 605, 383}, {104, 223, 45, 96, 648, 247, 151, 150, 649, 125}, {22, 159, 293, 288, 175, 650, 303, 305, 651, 304}, {352, 356, 360, 484, 400, 384, 399, 598, 608, 607}, {2, 361, 168, 29, 414, 652, 218, 32, 403, 213}, {484, 483, 359, 97, 491, 596, 597, 553, 641, 653}, {483, 157, 160, 164, 616, 204, 588, 654, 203, 177}, {92, 484, 100, 95, 531, 655, 139, 137, 554, 115}, {223, 420, 96, 104, 529, 656, 649, 648, 657, 150}, {85, 425, 292, 86, 441, 621, 302, 89, 457, 324}, {355, 352, 486, 357, 397, 637, 658, 381, 394, 514}, {353, 289, 487, 357, 578, 600, 566, 366, 659, 660}, {66, 295, 357, 291, 320, 512, 380, 318, 319, 513}, {488, 487, 287, 489, 551, 662, 661, 538, 552, 630}, {486, 294, 287, 290, 609, 334, 629, 628, 307, 332}, {227, 223, 485, 222, 236, 525, 526, 263, 264, 515}, {355, 486, 226, 291, 658, 610, 663, 664, 511, 611}, {43, 103, 95, 225, 146, 147, 114, 243, 523, 593}, {356, 230, 484, 225, 599, 606, 608, 524, 251, 636}, {64, 295, 289, 357, 309, 310, 311, 367, 512, 659}, {157, 482, 162, 158, 665, 619, 198, 199, 617, 171}, {223, 229, 45, 96, 248, 249, 247, 649, 505, 125}, {222, 229, 484, 225, 268, 574, 500, 269, 242, 636}, {422, 78, 418, 99, 433, 435, 434, 569, 112, 666}, {422, 80, 79, 99, 447, 83, 455, 569, 128, 130}, {159, 22, 293, 163, 175, 303, 650, 174, 173, 584}, {101, 362, 71, 6, 667, 405, 141, 154, 415, 74}, {93, 483, 354, 160, 668, 589, 669, 670, 588, 590}, {355, 486, 291, 357, 658, 511, 664, 381, 514, 513}, {362, 101, 169, 6, 667, 567, 671, 415, 154, 220}, {94, 482, 418, 99, 672, 618, 673, 113, 674, 666}, {488, 482, 489, 417, 536, 539, 538, 581, 627, 582}, {484, 356, 95, 359, 608, 592, 554, 597, 387, 594}, {363, 355, 233, 291, 407, 542, 508, 646, 664, 647}, {485, 92, 96, 99, 532, 140, 675, 676, 138, 127}, {78, 94, 418, 99, 111, 673, 435, 112, 113, 666}, {92, 483, 97, 93, 530, 641, 134, 133, 668, 105}, {484, 95, 97, 359, 554, 121, 553, 597, 594, 653}, {72, 71, 97, 359, 75, 106, 129, 390, 371, 653}, {94, 482, 99, 92, 672, 674, 113, 136, 573, 138}, {102, 167, 7, 426, 557, 221, 155, 559, 549, 480}, {10, 164, 158, 98, 184, 183, 182, 118, 558, 541}, {482, 422, 99, 485, 626, 569, 674, 548, 576, 676}, {15, 158, 426, 167, 172, 677, 466, 207, 206, 549}, {92, 482, 99, 485, 573, 674, 138, 532, 548, 676}, {158, 15, 426, 418, 172, 466, 677, 614, 430, 467}, {38, 356, 234, 225, 385, 520, 280, 250, 524, 275}, {94, 482, 158, 418, 672, 617, 540, 673, 618, 614}, {364, 356, 234, 38, 410, 520, 521, 411, 385, 280}, {93, 160, 8, 98, 670, 178, 108, 110, 678, 109}, {355, 233, 226, 36, 542, 277, 663, 374, 278, 246}, {160, 93, 8, 169, 670, 108, 178, 210, 568, 211}, {227, 223, 50, 420, 236, 237, 235, 527, 529, 438}, {363, 0, 233, 36, 413, 283, 508, 406, 39, 278}, {486, 295, 287, 291, 510, 333, 629, 511, 319, 335}, {59, 294, 291, 226, 321, 322, 323, 256, 585, 611}, {66, 363, 299, 291, 409, 509, 347, 318, 646, 345}, {486, 352, 487, 357, 637, 639, 638, 514, 394, 660}, {295, 486, 487, 357, 510, 638, 679, 512, 514, 660}, {296, 22, 288, 166, 337, 305, 336, 604, 209, 680}, {361, 64, 2, 297, 401, 67, 414, 681, 342, 349}, {95, 97, 359, 73, 121, 653, 594, 122, 120, 388}, {423, 482, 417, 418, 620, 627, 460, 431, 618, 458}, {65, 295, 357, 66, 327, 512, 389, 69, 320, 380}, {97, 72, 359, 73, 129, 390, 653, 120, 76, 388}, {420, 223, 96, 485, 529, 649, 656, 528, 525, 675}, {159, 488, 293, 288, 682, 683, 650, 651, 684, 304}, {31, 165, 160, 354, 187, 186, 185, 377, 591, 590}, {484, 486, 487, 489, 502, 638, 560, 496, 503, 552}, {486, 295, 487, 287, 510, 679, 638, 629, 333, 662}, {59, 233, 226, 291, 282, 277, 256, 323, 647, 611}, {233, 355, 226, 291, 542, 663, 277, 647, 664, 611}, {425, 421, 489, 490, 449, 685, 580, 533, 517, 625}, {288, 488, 292, 85, 684, 622, 301, 300, 632, 302}, {421, 425, 489, 417, 449, 580, 685, 465, 463, 582}, {294, 228, 57, 290, 556, 238, 308, 307, 686, 306}, {165, 31, 358, 354, 187, 379, 555, 591, 377, 378}, {103, 356, 364, 73, 518, 410, 522, 149, 386, 412}, {352, 483, 358, 354, 595, 643, 395, 396, 589, 378}, {22, 159, 288, 166, 175, 651, 305, 209, 208, 680}, {356, 352, 359, 484, 400, 398, 387, 608, 598, 597}, {64, 361, 353, 297, 401, 402, 365, 342, 681, 577}, {355, 66, 357, 291, 382, 380, 381, 664, 318, 513}, {487, 486, 287, 489, 638, 629, 662, 552, 503, 630}, {298, 57, 490, 290, 339, 687, 534, 340, 306, 498}, {31, 362, 169, 6, 408, 671, 215, 35, 415, 220}, {488, 425, 292, 85, 579, 621, 622, 632, 441, 302}, {483, 352, 359, 354, 595, 398, 596, 589, 396, 372}, {94, 78, 418, 426, 111, 435, 673, 688, 468, 467}, {229, 43, 44, 100, 241, 47, 262, 506, 116, 132}, {31, 165, 358, 30, 187, 555, 379, 34, 196, 391}, {429, 231, 52, 490, 640, 281, 475, 516, 547, 546}, {94, 102, 78, 426, 144, 145, 111, 688, 559, 468}, {421, 429, 52, 490, 476, 475, 451, 517, 516, 546}, {364, 103, 73, 4, 522, 149, 412, 416, 153, 77}, {420, 227, 424, 50, 527, 571, 437, 438, 235, 436}, {104, 80, 5, 428, 152, 84, 156, 689, 473, 478}, {227, 51, 52, 424, 260, 55, 255, 571, 456, 453}, {487, 289, 293, 287, 600, 313, 601, 662, 331, 328}, {166, 159, 288, 488, 208, 651, 680, 690, 682, 684}, {289, 161, 353, 487, 586, 562, 578, 600, 564, 566}, {482, 485, 489, 417, 548, 495, 539, 627, 544, 582}, {50, 227, 424, 51, 235, 571, 436, 54, 260, 456}, {488, 489, 287, 292, 538, 630, 661, 622, 623, 330}, {482, 483, 157, 488, 535, 616, 665, 536, 537, 645}, {80, 420, 104, 96, 445, 657, 152, 126, 656, 150}, {232, 104, 45, 5, 691, 151, 279, 286, 156, 49}, {288, 488, 287, 292, 684, 661, 329, 301, 622, 330}, {295, 289, 487, 287, 310, 600, 679, 333, 331, 662}, {157, 161, 163, 487, 202, 192, 201, 644, 564, 602}, {483, 482, 164, 98, 535, 692, 654, 694, 693, 558}, {3, 296, 85, 427, 350, 338, 88, 479, 631, 471}, {92, 483, 93, 98, 530, 668, 133, 135, 694, 110}, {95, 484, 100, 225, 554, 655, 115, 593, 636, 695}, {231, 224, 490, 57, 273, 545, 547, 274, 240, 687}, {64, 289, 353, 357, 311, 578, 365, 367, 659, 366}, {2, 297, 24, 168, 349, 344, 28, 218, 696, 217}, {361, 297, 168, 353, 681, 696, 652, 402, 577, 697}, {353, 161, 168, 29, 562, 212, 697, 370, 181, 213}, {289, 295, 487, 357, 310, 679, 600, 659, 512, 660}, {352, 353, 487, 357, 393, 566, 639, 394, 366, 660}, {361, 353, 168, 29, 402, 697, 652, 403, 370, 213}, {484, 229, 100, 225, 574, 506, 655, 636, 242, 695}, {104, 223, 232, 45, 648, 271, 691, 151, 247, 279}, {160, 164, 8, 98, 177, 176, 178, 678, 558, 109}, {164, 9, 8, 98, 197, 12, 176, 558, 131, 109}, {165, 161, 358, 29, 180, 563, 555, 179, 181, 368}, {297, 361, 168, 2, 681, 652, 696, 349, 414, 218}, {161, 353, 358, 29, 562, 369, 563, 181, 370, 368}, {230, 37, 38, 360, 261, 41, 252, 605, 392, 383}, {43, 95, 100, 225, 114, 115, 116, 243, 593, 695}, {420, 80, 104, 428, 445, 152, 657, 469, 473, 689}, {232, 104, 5, 428, 691, 156, 286, 642, 689, 478}, {59, 299, 233, 291, 346, 507, 282, 323, 345, 647}, {355, 363, 66, 291, 407, 409, 382, 664, 646, 318}, {158, 94, 418, 426, 540, 673, 614, 677, 688, 467}, {87, 429, 298, 1, 477, 603, 343, 91, 481, 348}, {420, 227, 485, 424, 527, 526, 528, 437, 571, 543}, {482, 422, 418, 99, 626, 434, 618, 674, 569, 666}, {229, 43, 100, 225, 241, 116, 506, 242, 243, 695}, {294, 486, 287, 291, 609, 629, 334, 322, 511, 335}, {17, 166, 419, 159, 216, 698, 444, 188, 208, 699}, {419, 166, 17, 427, 698, 216, 444, 472, 613, 474}, {166, 488, 419, 159, 690, 634, 698, 208, 682, 699}, {419, 488, 166, 427, 634, 690, 698, 472, 633, 613}, {160, 98, 483, 164, 678, 694, 588, 177, 558, 654}, {483, 98, 160, 93, 694, 678, 588, 668, 110, 670}, {226, 360, 486, 355, 700, 701, 610, 663, 375, 658}, {360, 36, 226, 230, 376, 246, 700, 605, 244, 245}, {226, 36, 360, 355, 246, 376, 700, 663, 374, 375}, {93, 169, 362, 101, 568, 671, 702, 142, 567, 667}, {93, 362, 71, 101, 702, 405, 107, 142, 667, 141}, {71, 362, 93, 354, 405, 702, 107, 373, 404, 669}, {489, 424, 417, 485, 572, 464, 582, 495, 543, 544}, {417, 424, 489, 421, 464, 572, 582, 465, 452, 685}, {102, 10, 158, 94, 148, 182, 703, 144, 119, 540}, {158, 10, 102, 167, 182, 148, 703, 206, 214, 557}, {102, 158, 426, 94, 703, 677, 559, 144, 540, 688}, {426, 158, 102, 167, 677, 703, 559, 549, 206, 557}, {421, 489, 227, 424, 685, 570, 704, 452, 572, 571}, {52, 421, 227, 424, 451, 704, 255, 453, 452, 571}, {489, 227, 222, 224, 570, 263, 501, 705, 254, 265}, {489, 222, 227, 485, 501, 263, 570, 495, 515, 526}, {87, 425, 292, 490, 448, 621, 315, 497, 533, 499}, {292, 425, 87, 86, 621, 448, 315, 324, 457, 90}, {104, 420, 232, 223, 657, 706, 691, 648, 529, 271}, {104, 232, 420, 428, 691, 706, 657, 689, 642, 469}, {232, 420, 50, 223, 706, 438, 272, 271, 529, 237}, {232, 50, 420, 428, 272, 438, 706, 642, 470, 469}, {226, 484, 360, 230, 635, 607, 700, 245, 606, 605}, {226, 360, 484, 486, 700, 607, 635, 610, 701, 502}, {486, 360, 352, 355, 701, 399, 637, 658, 375, 397}, {352, 360, 486, 484, 399, 701, 637, 598, 607, 502}, {162, 488, 157, 159, 707, 645, 198, 189, 682, 200}, {157, 488, 162, 482, 645, 707, 198, 665, 536, 619}, {490, 57, 429, 231, 687, 708, 516, 547, 274, 640}, {429, 57, 490, 298, 708, 687, 516, 603, 339, 534}, {57, 1, 429, 231, 60, 481, 708, 274, 284, 640}, {429, 1, 57, 298, 481, 60, 708, 603, 348, 339}, {158, 98, 482, 94, 541, 693, 617, 540, 117, 672}, {482, 98, 158, 164, 693, 541, 617, 692, 558, 183}, {353, 297, 161, 289, 577, 709, 562, 578, 341, 586}, {353, 161, 297, 168, 562, 709, 577, 697, 212, 696}, {161, 297, 24, 289, 709, 344, 191, 586, 341, 312}, {161, 24, 297, 168, 191, 344, 709, 212, 217, 696}, {159, 293, 487, 163, 650, 601, 710, 174, 584, 602}, {487, 293, 159, 488, 601, 650, 710, 551, 683, 682}, {159, 487, 157, 163, 710, 644, 200, 174, 602, 201}, {157, 487, 159, 488, 644, 710, 200, 645, 551, 682}, {290, 228, 486, 294, 686, 612, 628, 307, 556, 609}, {290, 486, 228, 489, 628, 612, 686, 624, 503, 711}, {485, 99, 420, 422, 676, 712, 528, 576, 569, 446}, {420, 99, 485, 96, 712, 676, 528, 656, 127, 675}, {99, 80, 420, 422, 128, 445, 712, 569, 447, 446}, {420, 80, 99, 96, 445, 128, 712, 656, 126, 127}, {96, 484, 229, 100, 713, 574, 505, 124, 655, 506}, {92, 96, 484, 485, 140, 713, 531, 532, 675, 492}, {92, 484, 96, 100, 531, 713, 140, 139, 655, 124}, {161, 358, 483, 165, 563, 643, 714, 180, 555, 587}, {483, 358, 161, 487, 643, 563, 714, 550, 565, 564}, {161, 483, 157, 165, 714, 616, 202, 180, 587, 205}, {157, 483, 161, 487, 616, 714, 202, 644, 550, 564}, {362, 31, 160, 354, 408, 185, 715, 404, 377, 590}, {160, 31, 362, 169, 185, 408, 715, 210, 215, 671}, {362, 160, 93, 354, 715, 670, 702, 404, 590, 669}, {93, 160, 362, 169, 670, 715, 702, 568, 210, 671}, {482, 164, 157, 483, 692, 203, 665, 535, 654, 616}, {157, 164, 482, 158, 203, 692, 665, 199, 183, 617}, {228, 489, 222, 224, 711, 501, 266, 239, 705, 265}, {222, 489, 228, 486, 501, 711, 266, 504, 503, 612}, {288, 166, 427, 296, 680, 613, 716, 336, 604, 631}, {288, 427, 166, 488, 716, 613, 680, 684, 633, 690}, {85, 288, 427, 296, 300, 716, 471, 338, 336, 631}, {85, 427, 288, 488, 471, 716, 300, 632, 633, 684}, {484, 223, 96, 229, 575, 649, 713, 574, 248, 505}, {484, 96, 223, 485, 713, 649, 575, 492, 675, 525}, {488, 293, 287, 487, 683, 328, 661, 551, 601, 662}, {287, 293, 488, 288, 328, 683, 661, 329, 304, 684}, {419, 488, 162, 159, 634, 707, 717, 699, 682, 189}, {162, 419, 17, 423, 717, 444, 190, 561, 443, 442}, {17, 419, 162, 159, 444, 717, 190, 188, 699, 189}, {482, 98, 92, 94, 693, 135, 573, 672, 117, 136}, {92, 98, 482, 483, 135, 693, 573, 530, 694, 535}, {358, 487, 352, 353, 565, 639, 395, 369, 566, 393}, {352, 487, 358, 483, 639, 565, 395, 595, 550, 643}, {359, 483, 93, 97, 596, 668, 718, 653, 641, 105}, {359, 93, 483, 354, 718, 668, 596, 372, 669, 589}, {71, 359, 93, 97, 371, 718, 107, 106, 653, 105}, {71, 93, 359, 354, 107, 718, 371, 373, 669, 372}, {52, 490, 227, 421, 546, 719, 255, 451, 517, 704}, {227, 490, 52, 224, 719, 546, 255, 254, 545, 253}, {490, 489, 227, 421, 625, 570, 719, 517, 685, 704}, {227, 489, 490, 224, 570, 625, 719, 254, 705, 545}, {57, 490, 228, 224, 687, 720, 238, 240, 545, 239}, {228, 490, 57, 290, 720, 687, 238, 686, 498, 306}, {490, 489, 228, 224, 625, 711, 720, 545, 705, 239}, {228, 489, 490, 290, 711, 625, 720, 686, 624, 498}, {162, 419, 482, 488, 717, 721, 619, 707, 634, 536}, {482, 419, 162, 423, 721, 717, 619, 620, 443, 561}, {419, 417, 482, 488, 461, 627, 721, 634, 581, 536}, {482, 417, 419, 423, 627, 461, 721, 620, 460, 443}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 8
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_3
+   + id             : mesh:connectivities:_segment_3
    + size           : 48
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 23kB
    + values         : {{6, 8, 11}, {8, 9, 12}, {9, 10, 13}, {10, 7, 14}, {7, 15, 18}, {15, 16, 19}, {16, 17, 20}, {17, 3, 21}, {3, 22, 25}, {22, 23, 26}, {23, 24, 27}, {24, 2, 28}, {2, 29, 32}, {29, 30, 33}, {30, 31, 34}, {31, 6, 35}, {0, 36, 39}, {36, 37, 40}, {37, 38, 41}, {38, 4, 42}, {4, 43, 46}, {43, 44, 47}, {44, 45, 48}, {45, 5, 49}, {5, 50, 53}, {50, 51, 54}, {51, 52, 55}, {52, 1, 56}, {1, 57, 60}, {57, 58, 61}, {58, 59, 62}, {59, 0, 63}, {2, 64, 67}, {64, 65, 68}, {65, 66, 69}, {66, 0, 70}, {6, 71, 74}, {71, 72, 75}, {72, 73, 76}, {73, 4, 77}, {7, 78, 81}, {78, 79, 82}, {79, 80, 83}, {80, 5, 84}, {3, 85, 88}, {85, 86, 89}, {86, 87, 90}, {87, 1, 91}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:tetrahedron_10
+   + id             : mesh:connectivities:_tetrahedron_10
    + size           : 341
    + nb_component   : 10
    + allocated size : 2000
    + memory size    : 78kB
    + values         : {{484, 483, 485, 489, 491, 493, 492, 496, 494, 495}, {87, 290, 490, 292, 317, 498, 497, 315, 316, 499}, {222, 484, 489, 486, 500, 496, 501, 504, 502, 503}, {96, 229, 45, 100, 505, 249, 125, 124, 506, 123}, {59, 0, 233, 299, 63, 283, 282, 346, 351, 507}, {0, 363, 233, 299, 413, 508, 283, 351, 509, 507}, {486, 295, 291, 357, 510, 319, 511, 514, 512, 513}, {484, 222, 489, 485, 500, 501, 496, 492, 515, 495}, {87, 429, 421, 490, 477, 476, 450, 497, 516, 517}, {103, 356, 234, 364, 518, 520, 519, 522, 410, 521}, {356, 103, 234, 225, 518, 519, 520, 524, 523, 275}, {43, 103, 225, 234, 146, 523, 243, 276, 519, 275}, {223, 227, 485, 420, 236, 526, 525, 529, 527, 528}, {483, 92, 484, 485, 530, 531, 491, 493, 532, 492}, {87, 421, 425, 490, 450, 449, 448, 497, 517, 533}, {298, 87, 290, 490, 343, 317, 340, 534, 497, 498}, {482, 483, 488, 489, 535, 537, 536, 539, 494, 538}, {94, 10, 158, 98, 119, 182, 540, 117, 118, 541}, {355, 363, 233, 36, 407, 508, 542, 374, 406, 278}, {485, 420, 424, 417, 528, 437, 543, 544, 462, 464}, {231, 224, 52, 490, 273, 253, 281, 547, 545, 546}, {483, 482, 485, 489, 535, 548, 493, 494, 539, 495}, {167, 15, 7, 426, 207, 18, 221, 549, 466, 480}, {483, 487, 488, 489, 550, 551, 537, 494, 552, 538}, {484, 92, 97, 95, 531, 134, 553, 554, 137, 121}, {29, 165, 30, 358, 179, 196, 33, 368, 555, 391}, {228, 294, 58, 59, 556, 326, 259, 258, 321, 62}, {102, 10, 7, 167, 148, 14, 155, 557, 214, 221}, {9, 10, 98, 164, 13, 118, 131, 197, 184, 558}, {78, 102, 7, 426, 145, 155, 81, 468, 559, 480}, {483, 484, 487, 489, 491, 560, 550, 494, 496, 552}, {16, 423, 162, 17, 454, 561, 195, 20, 442, 190}, {353, 161, 358, 487, 562, 563, 369, 566, 564, 565}, {93, 101, 8, 169, 142, 143, 108, 568, 567, 211}, {78, 422, 79, 99, 433, 455, 82, 112, 569, 130}, {485, 227, 489, 424, 526, 570, 495, 543, 571, 572}, {482, 92, 483, 485, 573, 530, 535, 548, 532, 493}, {223, 222, 229, 484, 264, 268, 248, 575, 500, 574}, {422, 420, 485, 417, 446, 528, 576, 459, 462, 544}, {64, 297, 353, 289, 342, 577, 365, 311, 341, 578}, {101, 6, 8, 169, 154, 11, 143, 567, 220, 211}, {425, 488, 489, 417, 579, 538, 580, 463, 581, 582}, {163, 161, 24, 293, 192, 191, 193, 584, 583, 314}, {228, 294, 59, 226, 556, 321, 258, 257, 585, 256}, {161, 289, 24, 293, 586, 312, 191, 583, 313, 314}, {165, 483, 160, 354, 587, 588, 186, 591, 589, 590}, {103, 356, 95, 225, 518, 592, 147, 523, 524, 593}, {356, 95, 359, 73, 592, 594, 387, 386, 122, 388}, {352, 483, 359, 484, 595, 596, 398, 598, 491, 597}, {103, 43, 4, 234, 146, 46, 153, 519, 276, 285}, {230, 356, 38, 225, 599, 385, 252, 251, 524, 250}, {161, 289, 293, 487, 586, 313, 583, 564, 600, 601}, {161, 487, 293, 163, 564, 601, 583, 192, 602, 584}, {429, 87, 298, 490, 477, 343, 603, 516, 497, 534}, {364, 38, 234, 4, 411, 280, 521, 416, 42, 285}, {22, 296, 3, 166, 337, 350, 25, 209, 604, 219}, {230, 37, 360, 36, 261, 392, 605, 244, 40, 376}, {356, 230, 360, 484, 599, 605, 384, 608, 606, 607}, {22, 23, 293, 163, 26, 325, 303, 173, 194, 584}, {294, 486, 291, 226, 609, 511, 322, 585, 610, 611}, {294, 228, 486, 226, 556, 612, 609, 585, 257, 610}, {3, 17, 166, 427, 21, 216, 219, 479, 474, 613}, {364, 103, 4, 234, 522, 153, 416, 521, 519, 285}, {158, 15, 418, 162, 172, 430, 614, 171, 170, 615}, {15, 423, 418, 162, 432, 431, 430, 170, 561, 615}, {157, 483, 160, 165, 616, 588, 204, 205, 587, 186}, {482, 158, 418, 162, 617, 614, 618, 619, 171, 615}, {423, 482, 418, 162, 620, 618, 431, 561, 619, 615}, {425, 488, 292, 489, 579, 622, 621, 580, 538, 623}, {290, 489, 490, 292, 624, 625, 498, 316, 623, 499}, {222, 223, 485, 484, 264, 525, 515, 500, 575, 492}, {363, 0, 66, 299, 413, 70, 409, 509, 351, 347}, {482, 422, 485, 417, 626, 576, 548, 627, 459, 544}, {486, 290, 287, 489, 628, 332, 629, 503, 624, 630}, {296, 3, 166, 427, 350, 219, 604, 631, 479, 613}, {489, 290, 287, 292, 624, 332, 630, 623, 316, 330}, {488, 85, 427, 419, 632, 471, 633, 634, 439, 472}, {425, 488, 419, 85, 579, 634, 440, 441, 632, 439}, {15, 16, 423, 162, 19, 454, 432, 170, 195, 561}, {65, 64, 357, 295, 68, 367, 389, 327, 309, 512}, {222, 484, 486, 226, 500, 502, 504, 267, 635, 610}, {356, 484, 95, 225, 608, 554, 592, 524, 636, 593}, {352, 484, 486, 487, 598, 502, 637, 639, 560, 638}, {230, 222, 484, 225, 270, 500, 606, 251, 269, 636}, {294, 228, 58, 57, 556, 259, 326, 308, 238, 61}, {352, 483, 484, 487, 595, 491, 598, 639, 550, 560}, {23, 163, 24, 293, 194, 193, 27, 325, 584, 314}, {429, 231, 1, 52, 640, 284, 481, 475, 281, 56}, {228, 222, 486, 226, 266, 504, 612, 257, 267, 610}, {482, 422, 417, 418, 626, 459, 627, 618, 434, 458}, {489, 425, 490, 292, 580, 533, 625, 623, 621, 499}, {483, 92, 97, 484, 530, 134, 641, 491, 531, 553}, {50, 232, 5, 428, 272, 286, 53, 470, 642, 478}, {483, 165, 358, 354, 587, 555, 643, 589, 591, 378}, {157, 483, 487, 488, 616, 550, 644, 645, 537, 551}, {425, 488, 417, 419, 579, 581, 463, 440, 634, 461}, {222, 230, 484, 226, 270, 606, 500, 267, 245, 635}, {299, 363, 233, 291, 509, 508, 507, 345, 646, 647}, {103, 356, 73, 95, 518, 386, 149, 147, 592, 122}, {229, 44, 45, 100, 262, 48, 249, 506, 132, 123}, {356, 230, 38, 360, 599, 252, 385, 384, 605, 383}, {104, 223, 45, 96, 648, 247, 151, 150, 649, 125}, {22, 159, 293, 288, 175, 650, 303, 305, 651, 304}, {352, 356, 360, 484, 400, 384, 399, 598, 608, 607}, {2, 361, 168, 29, 414, 652, 218, 32, 403, 213}, {484, 483, 359, 97, 491, 596, 597, 553, 641, 653}, {483, 157, 160, 164, 616, 204, 588, 654, 203, 177}, {92, 484, 100, 95, 531, 655, 139, 137, 554, 115}, {223, 420, 96, 104, 529, 656, 649, 648, 657, 150}, {85, 425, 292, 86, 441, 621, 302, 89, 457, 324}, {355, 352, 486, 357, 397, 637, 658, 381, 394, 514}, {353, 289, 487, 357, 578, 600, 566, 366, 659, 660}, {66, 295, 357, 291, 320, 512, 380, 318, 319, 513}, {488, 487, 287, 489, 551, 662, 661, 538, 552, 630}, {486, 294, 287, 290, 609, 334, 629, 628, 307, 332}, {227, 223, 485, 222, 236, 525, 526, 263, 264, 515}, {355, 486, 226, 291, 658, 610, 663, 664, 511, 611}, {43, 103, 95, 225, 146, 147, 114, 243, 523, 593}, {356, 230, 484, 225, 599, 606, 608, 524, 251, 636}, {64, 295, 289, 357, 309, 310, 311, 367, 512, 659}, {157, 482, 162, 158, 665, 619, 198, 199, 617, 171}, {223, 229, 45, 96, 248, 249, 247, 649, 505, 125}, {222, 229, 484, 225, 268, 574, 500, 269, 242, 636}, {422, 78, 418, 99, 433, 435, 434, 569, 112, 666}, {422, 80, 79, 99, 447, 83, 455, 569, 128, 130}, {159, 22, 293, 163, 175, 303, 650, 174, 173, 584}, {101, 362, 71, 6, 667, 405, 141, 154, 415, 74}, {93, 483, 354, 160, 668, 589, 669, 670, 588, 590}, {355, 486, 291, 357, 658, 511, 664, 381, 514, 513}, {362, 101, 169, 6, 667, 567, 671, 415, 154, 220}, {94, 482, 418, 99, 672, 618, 673, 113, 674, 666}, {488, 482, 489, 417, 536, 539, 538, 581, 627, 582}, {484, 356, 95, 359, 608, 592, 554, 597, 387, 594}, {363, 355, 233, 291, 407, 542, 508, 646, 664, 647}, {485, 92, 96, 99, 532, 140, 675, 676, 138, 127}, {78, 94, 418, 99, 111, 673, 435, 112, 113, 666}, {92, 483, 97, 93, 530, 641, 134, 133, 668, 105}, {484, 95, 97, 359, 554, 121, 553, 597, 594, 653}, {72, 71, 97, 359, 75, 106, 129, 390, 371, 653}, {94, 482, 99, 92, 672, 674, 113, 136, 573, 138}, {102, 167, 7, 426, 557, 221, 155, 559, 549, 480}, {10, 164, 158, 98, 184, 183, 182, 118, 558, 541}, {482, 422, 99, 485, 626, 569, 674, 548, 576, 676}, {15, 158, 426, 167, 172, 677, 466, 207, 206, 549}, {92, 482, 99, 485, 573, 674, 138, 532, 548, 676}, {158, 15, 426, 418, 172, 466, 677, 614, 430, 467}, {38, 356, 234, 225, 385, 520, 280, 250, 524, 275}, {94, 482, 158, 418, 672, 617, 540, 673, 618, 614}, {364, 356, 234, 38, 410, 520, 521, 411, 385, 280}, {93, 160, 8, 98, 670, 178, 108, 110, 678, 109}, {355, 233, 226, 36, 542, 277, 663, 374, 278, 246}, {160, 93, 8, 169, 670, 108, 178, 210, 568, 211}, {227, 223, 50, 420, 236, 237, 235, 527, 529, 438}, {363, 0, 233, 36, 413, 283, 508, 406, 39, 278}, {486, 295, 287, 291, 510, 333, 629, 511, 319, 335}, {59, 294, 291, 226, 321, 322, 323, 256, 585, 611}, {66, 363, 299, 291, 409, 509, 347, 318, 646, 345}, {486, 352, 487, 357, 637, 639, 638, 514, 394, 660}, {295, 486, 487, 357, 510, 638, 679, 512, 514, 660}, {296, 22, 288, 166, 337, 305, 336, 604, 209, 680}, {361, 64, 2, 297, 401, 67, 414, 681, 342, 349}, {95, 97, 359, 73, 121, 653, 594, 122, 120, 388}, {423, 482, 417, 418, 620, 627, 460, 431, 618, 458}, {65, 295, 357, 66, 327, 512, 389, 69, 320, 380}, {97, 72, 359, 73, 129, 390, 653, 120, 76, 388}, {420, 223, 96, 485, 529, 649, 656, 528, 525, 675}, {159, 488, 293, 288, 682, 683, 650, 651, 684, 304}, {31, 165, 160, 354, 187, 186, 185, 377, 591, 590}, {484, 486, 487, 489, 502, 638, 560, 496, 503, 552}, {486, 295, 487, 287, 510, 679, 638, 629, 333, 662}, {59, 233, 226, 291, 282, 277, 256, 323, 647, 611}, {233, 355, 226, 291, 542, 663, 277, 647, 664, 611}, {425, 421, 489, 490, 449, 685, 580, 533, 517, 625}, {288, 488, 292, 85, 684, 622, 301, 300, 632, 302}, {421, 425, 489, 417, 449, 580, 685, 465, 463, 582}, {294, 228, 57, 290, 556, 238, 308, 307, 686, 306}, {165, 31, 358, 354, 187, 379, 555, 591, 377, 378}, {103, 356, 364, 73, 518, 410, 522, 149, 386, 412}, {352, 483, 358, 354, 595, 643, 395, 396, 589, 378}, {22, 159, 288, 166, 175, 651, 305, 209, 208, 680}, {356, 352, 359, 484, 400, 398, 387, 608, 598, 597}, {64, 361, 353, 297, 401, 402, 365, 342, 681, 577}, {355, 66, 357, 291, 382, 380, 381, 664, 318, 513}, {487, 486, 287, 489, 638, 629, 662, 552, 503, 630}, {298, 57, 490, 290, 339, 687, 534, 340, 306, 498}, {31, 362, 169, 6, 408, 671, 215, 35, 415, 220}, {488, 425, 292, 85, 579, 621, 622, 632, 441, 302}, {483, 352, 359, 354, 595, 398, 596, 589, 396, 372}, {94, 78, 418, 426, 111, 435, 673, 688, 468, 467}, {229, 43, 44, 100, 241, 47, 262, 506, 116, 132}, {31, 165, 358, 30, 187, 555, 379, 34, 196, 391}, {429, 231, 52, 490, 640, 281, 475, 516, 547, 546}, {94, 102, 78, 426, 144, 145, 111, 688, 559, 468}, {421, 429, 52, 490, 476, 475, 451, 517, 516, 546}, {364, 103, 73, 4, 522, 149, 412, 416, 153, 77}, {420, 227, 424, 50, 527, 571, 437, 438, 235, 436}, {104, 80, 5, 428, 152, 84, 156, 689, 473, 478}, {227, 51, 52, 424, 260, 55, 255, 571, 456, 453}, {487, 289, 293, 287, 600, 313, 601, 662, 331, 328}, {166, 159, 288, 488, 208, 651, 680, 690, 682, 684}, {289, 161, 353, 487, 586, 562, 578, 600, 564, 566}, {482, 485, 489, 417, 548, 495, 539, 627, 544, 582}, {50, 227, 424, 51, 235, 571, 436, 54, 260, 456}, {488, 489, 287, 292, 538, 630, 661, 622, 623, 330}, {482, 483, 157, 488, 535, 616, 665, 536, 537, 645}, {80, 420, 104, 96, 445, 657, 152, 126, 656, 150}, {232, 104, 45, 5, 691, 151, 279, 286, 156, 49}, {288, 488, 287, 292, 684, 661, 329, 301, 622, 330}, {295, 289, 487, 287, 310, 600, 679, 333, 331, 662}, {157, 161, 163, 487, 202, 192, 201, 644, 564, 602}, {483, 482, 164, 98, 535, 692, 654, 694, 693, 558}, {3, 296, 85, 427, 350, 338, 88, 479, 631, 471}, {92, 483, 93, 98, 530, 668, 133, 135, 694, 110}, {95, 484, 100, 225, 554, 655, 115, 593, 636, 695}, {231, 224, 490, 57, 273, 545, 547, 274, 240, 687}, {64, 289, 353, 357, 311, 578, 365, 367, 659, 366}, {2, 297, 24, 168, 349, 344, 28, 218, 696, 217}, {361, 297, 168, 353, 681, 696, 652, 402, 577, 697}, {353, 161, 168, 29, 562, 212, 697, 370, 181, 213}, {289, 295, 487, 357, 310, 679, 600, 659, 512, 660}, {352, 353, 487, 357, 393, 566, 639, 394, 366, 660}, {361, 353, 168, 29, 402, 697, 652, 403, 370, 213}, {484, 229, 100, 225, 574, 506, 655, 636, 242, 695}, {104, 223, 232, 45, 648, 271, 691, 151, 247, 279}, {160, 164, 8, 98, 177, 176, 178, 678, 558, 109}, {164, 9, 8, 98, 197, 12, 176, 558, 131, 109}, {165, 161, 358, 29, 180, 563, 555, 179, 181, 368}, {297, 361, 168, 2, 681, 652, 696, 349, 414, 218}, {161, 353, 358, 29, 562, 369, 563, 181, 370, 368}, {230, 37, 38, 360, 261, 41, 252, 605, 392, 383}, {43, 95, 100, 225, 114, 115, 116, 243, 593, 695}, {420, 80, 104, 428, 445, 152, 657, 469, 473, 689}, {232, 104, 5, 428, 691, 156, 286, 642, 689, 478}, {59, 299, 233, 291, 346, 507, 282, 323, 345, 647}, {355, 363, 66, 291, 407, 409, 382, 664, 646, 318}, {158, 94, 418, 426, 540, 673, 614, 677, 688, 467}, {87, 429, 298, 1, 477, 603, 343, 91, 481, 348}, {420, 227, 485, 424, 527, 526, 528, 437, 571, 543}, {482, 422, 418, 99, 626, 434, 618, 674, 569, 666}, {229, 43, 100, 225, 241, 116, 506, 242, 243, 695}, {294, 486, 287, 291, 609, 629, 334, 322, 511, 335}, {17, 166, 419, 159, 216, 698, 444, 188, 208, 699}, {419, 166, 17, 427, 698, 216, 444, 472, 613, 474}, {166, 488, 419, 159, 690, 634, 698, 208, 682, 699}, {419, 488, 166, 427, 634, 690, 698, 472, 633, 613}, {160, 98, 483, 164, 678, 694, 588, 177, 558, 654}, {483, 98, 160, 93, 694, 678, 588, 668, 110, 670}, {226, 360, 486, 355, 700, 701, 610, 663, 375, 658}, {360, 36, 226, 230, 376, 246, 700, 605, 244, 245}, {226, 36, 360, 355, 246, 376, 700, 663, 374, 375}, {93, 169, 362, 101, 568, 671, 702, 142, 567, 667}, {93, 362, 71, 101, 702, 405, 107, 142, 667, 141}, {71, 362, 93, 354, 405, 702, 107, 373, 404, 669}, {489, 424, 417, 485, 572, 464, 582, 495, 543, 544}, {417, 424, 489, 421, 464, 572, 582, 465, 452, 685}, {102, 10, 158, 94, 148, 182, 703, 144, 119, 540}, {158, 10, 102, 167, 182, 148, 703, 206, 214, 557}, {102, 158, 426, 94, 703, 677, 559, 144, 540, 688}, {426, 158, 102, 167, 677, 703, 559, 549, 206, 557}, {421, 489, 227, 424, 685, 570, 704, 452, 572, 571}, {52, 421, 227, 424, 451, 704, 255, 453, 452, 571}, {489, 227, 222, 224, 570, 263, 501, 705, 254, 265}, {489, 222, 227, 485, 501, 263, 570, 495, 515, 526}, {87, 425, 292, 490, 448, 621, 315, 497, 533, 499}, {292, 425, 87, 86, 621, 448, 315, 324, 457, 90}, {104, 420, 232, 223, 657, 706, 691, 648, 529, 271}, {104, 232, 420, 428, 691, 706, 657, 689, 642, 469}, {232, 420, 50, 223, 706, 438, 272, 271, 529, 237}, {232, 50, 420, 428, 272, 438, 706, 642, 470, 469}, {226, 484, 360, 230, 635, 607, 700, 245, 606, 605}, {226, 360, 484, 486, 700, 607, 635, 610, 701, 502}, {486, 360, 352, 355, 701, 399, 637, 658, 375, 397}, {352, 360, 486, 484, 399, 701, 637, 598, 607, 502}, {162, 488, 157, 159, 707, 645, 198, 189, 682, 200}, {157, 488, 162, 482, 645, 707, 198, 665, 536, 619}, {490, 57, 429, 231, 687, 708, 516, 547, 274, 640}, {429, 57, 490, 298, 708, 687, 516, 603, 339, 534}, {57, 1, 429, 231, 60, 481, 708, 274, 284, 640}, {429, 1, 57, 298, 481, 60, 708, 603, 348, 339}, {158, 98, 482, 94, 541, 693, 617, 540, 117, 672}, {482, 98, 158, 164, 693, 541, 617, 692, 558, 183}, {353, 297, 161, 289, 577, 709, 562, 578, 341, 586}, {353, 161, 297, 168, 562, 709, 577, 697, 212, 696}, {161, 297, 24, 289, 709, 344, 191, 586, 341, 312}, {161, 24, 297, 168, 191, 344, 709, 212, 217, 696}, {159, 293, 487, 163, 650, 601, 710, 174, 584, 602}, {487, 293, 159, 488, 601, 650, 710, 551, 683, 682}, {159, 487, 157, 163, 710, 644, 200, 174, 602, 201}, {157, 487, 159, 488, 644, 710, 200, 645, 551, 682}, {290, 228, 486, 294, 686, 612, 628, 307, 556, 609}, {290, 486, 228, 489, 628, 612, 686, 624, 503, 711}, {485, 99, 420, 422, 676, 712, 528, 576, 569, 446}, {420, 99, 485, 96, 712, 676, 528, 656, 127, 675}, {99, 80, 420, 422, 128, 445, 712, 569, 447, 446}, {420, 80, 99, 96, 445, 128, 712, 656, 126, 127}, {96, 484, 229, 100, 713, 574, 505, 124, 655, 506}, {92, 96, 484, 485, 140, 713, 531, 532, 675, 492}, {92, 484, 96, 100, 531, 713, 140, 139, 655, 124}, {161, 358, 483, 165, 563, 643, 714, 180, 555, 587}, {483, 358, 161, 487, 643, 563, 714, 550, 565, 564}, {161, 483, 157, 165, 714, 616, 202, 180, 587, 205}, {157, 483, 161, 487, 616, 714, 202, 644, 550, 564}, {362, 31, 160, 354, 408, 185, 715, 404, 377, 590}, {160, 31, 362, 169, 185, 408, 715, 210, 215, 671}, {362, 160, 93, 354, 715, 670, 702, 404, 590, 669}, {93, 160, 362, 169, 670, 715, 702, 568, 210, 671}, {482, 164, 157, 483, 692, 203, 665, 535, 654, 616}, {157, 164, 482, 158, 203, 692, 665, 199, 183, 617}, {228, 489, 222, 224, 711, 501, 266, 239, 705, 265}, {222, 489, 228, 486, 501, 711, 266, 504, 503, 612}, {288, 166, 427, 296, 680, 613, 716, 336, 604, 631}, {288, 427, 166, 488, 716, 613, 680, 684, 633, 690}, {85, 288, 427, 296, 300, 716, 471, 338, 336, 631}, {85, 427, 288, 488, 471, 716, 300, 632, 633, 684}, {484, 223, 96, 229, 575, 649, 713, 574, 248, 505}, {484, 96, 223, 485, 713, 649, 575, 492, 675, 525}, {488, 293, 287, 487, 683, 328, 661, 551, 601, 662}, {287, 293, 488, 288, 328, 683, 661, 329, 304, 684}, {419, 488, 162, 159, 634, 707, 717, 699, 682, 189}, {162, 419, 17, 423, 717, 444, 190, 561, 443, 442}, {17, 419, 162, 159, 444, 717, 190, 188, 699, 189}, {482, 98, 92, 94, 693, 135, 573, 672, 117, 136}, {92, 98, 482, 483, 135, 693, 573, 530, 694, 535}, {358, 487, 352, 353, 565, 639, 395, 369, 566, 393}, {352, 487, 358, 483, 639, 565, 395, 595, 550, 643}, {359, 483, 93, 97, 596, 668, 718, 653, 641, 105}, {359, 93, 483, 354, 718, 668, 596, 372, 669, 589}, {71, 359, 93, 97, 371, 718, 107, 106, 653, 105}, {71, 93, 359, 354, 107, 718, 371, 373, 669, 372}, {52, 490, 227, 421, 546, 719, 255, 451, 517, 704}, {227, 490, 52, 224, 719, 546, 255, 254, 545, 253}, {490, 489, 227, 421, 625, 570, 719, 517, 685, 704}, {227, 489, 490, 224, 570, 625, 719, 254, 705, 545}, {57, 490, 228, 224, 687, 720, 238, 240, 545, 239}, {228, 490, 57, 290, 720, 687, 238, 686, 498, 306}, {490, 489, 228, 224, 625, 711, 720, 545, 705, 239}, {228, 489, 490, 290, 711, 625, 720, 686, 624, 498}, {162, 419, 482, 488, 717, 721, 619, 707, 634, 536}, {482, 419, 162, 423, 721, 717, 619, 620, 443, 561}, {419, 417, 482, 488, 461, 627, 721, 634, 581, 536}, {482, 417, 419, 423, 627, 461, 721, 620, 460, 443}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:triangle_6
+   + id             : mesh:connectivities:_triangle_6
    + size           : 240
    + nb_component   : 6
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{93, 97, 71, 105, 106, 107}, {93, 8, 98, 108, 109, 110}, {94, 78, 99, 111, 112, 113}, {43, 95, 100, 114, 115, 116}, {94, 98, 10, 117, 118, 119}, {73, 97, 95, 120, 121, 122}, {45, 100, 96, 123, 124, 125}, {80, 96, 99, 126, 127, 128}, {71, 97, 72, 106, 129, 75}, {78, 79, 99, 82, 130, 112}, {8, 9, 98, 12, 131, 109}, {43, 100, 44, 116, 132, 47}, {72, 97, 73, 129, 120, 76}, {9, 10, 98, 13, 118, 131}, {79, 80, 99, 83, 128, 130}, {44, 100, 45, 132, 123, 48}, {93, 92, 97, 133, 134, 105}, {93, 98, 92, 110, 135, 133}, {94, 92, 98, 136, 135, 117}, {92, 95, 97, 137, 121, 134}, {94, 99, 92, 113, 138, 136}, {92, 100, 95, 139, 115, 137}, {92, 99, 96, 138, 127, 140}, {92, 96, 100, 140, 124, 139}, {93, 71, 101, 107, 141, 142}, {93, 101, 8, 142, 143, 108}, {94, 102, 78, 144, 145, 111}, {43, 103, 95, 146, 147, 114}, {94, 10, 102, 119, 148, 144}, {73, 95, 103, 122, 147, 149}, {45, 96, 104, 125, 150, 151}, {80, 104, 96, 152, 150, 126}, {4, 73, 103, 77, 149, 153}, {6, 101, 71, 154, 141, 74}, {7, 102, 10, 155, 148, 14}, {7, 78, 102, 81, 145, 155}, {6, 8, 101, 11, 143, 154}, {5, 104, 80, 156, 152, 84}, {4, 103, 43, 153, 146, 46}, {5, 45, 104, 49, 151, 156}, {15, 162, 158, 170, 171, 172}, {22, 163, 159, 173, 174, 175}, {8, 164, 160, 176, 177, 178}, {29, 165, 161, 179, 180, 181}, {10, 158, 164, 182, 183, 184}, {31, 160, 165, 185, 186, 187}, {17, 159, 162, 188, 189, 190}, {24, 161, 163, 191, 192, 193}, {22, 23, 163, 26, 194, 173}, {15, 16, 162, 19, 195, 170}, {29, 30, 165, 33, 196, 179}, {8, 9, 164, 12, 197, 176}, {16, 17, 162, 20, 190, 195}, {23, 24, 163, 27, 193, 194}, {9, 10, 164, 13, 184, 197}, {30, 31, 165, 34, 187, 196}, {158, 162, 157, 171, 198, 199}, {159, 157, 162, 200, 198, 189}, {159, 163, 157, 174, 201, 200}, {161, 157, 163, 202, 201, 192}, {158, 157, 164, 199, 203, 183}, {160, 164, 157, 177, 203, 204}, {160, 157, 165, 204, 205, 186}, {161, 165, 157, 180, 205, 202}, {15, 158, 167, 172, 206, 207}, {22, 159, 166, 175, 208, 209}, {8, 160, 169, 178, 210, 211}, {29, 161, 168, 181, 212, 213}, {10, 167, 158, 214, 206, 182}, {31, 169, 160, 215, 210, 185}, {17, 166, 159, 216, 208, 188}, {24, 168, 161, 217, 212, 191}, {2, 168, 24, 218, 217, 28}, {3, 166, 17, 219, 216, 21}, {6, 169, 31, 220, 215, 35}, {7, 167, 10, 221, 214, 14}, {7, 15, 167, 18, 207, 221}, {3, 22, 166, 25, 209, 219}, {6, 8, 169, 11, 211, 220}, {2, 29, 168, 32, 213, 218}, {50, 227, 223, 235, 236, 237}, {57, 228, 224, 238, 239, 240}, {43, 229, 225, 241, 242, 243}, {36, 230, 226, 244, 245, 246}, {45, 223, 229, 247, 248, 249}, {38, 225, 230, 250, 251, 252}, {52, 224, 227, 253, 254, 255}, {59, 226, 228, 256, 257, 258}, {57, 58, 228, 61, 259, 238}, {50, 51, 227, 54, 260, 235}, {36, 37, 230, 40, 261, 244}, {43, 44, 229, 47, 262, 241}, {51, 52, 227, 55, 255, 260}, {58, 59, 228, 62, 258, 259}, {44, 45, 229, 48, 249, 262}, {37, 38, 230, 41, 252, 261}, {223, 227, 222, 236, 263, 264}, {224, 222, 227, 265, 263, 254}, {224, 228, 222, 239, 266, 265}, {222, 228, 226, 266, 257, 267}, {223, 222, 229, 264, 268, 248}, {222, 225, 229, 269, 242, 268}, {222, 230, 225, 270, 251, 269}, {222, 226, 230, 267, 245, 270}, {50, 223, 232, 237, 271, 272}, {57, 224, 231, 240, 273, 274}, {43, 225, 234, 243, 275, 276}, {36, 226, 233, 246, 277, 278}, {45, 232, 223, 279, 271, 247}, {38, 234, 225, 280, 275, 250}, {52, 231, 224, 281, 273, 253}, {59, 233, 226, 282, 277, 256}, {0, 233, 59, 283, 282, 63}, {1, 231, 52, 284, 281, 56}, {4, 234, 38, 285, 280, 42}, {5, 232, 45, 286, 279, 49}, {5, 50, 232, 53, 272, 286}, {1, 57, 231, 60, 274, 284}, {4, 43, 234, 46, 276, 285}, {0, 36, 233, 39, 278, 283}, {85, 288, 292, 300, 301, 302}, {22, 293, 288, 303, 304, 305}, {57, 290, 294, 306, 307, 308}, {64, 295, 289, 309, 310, 311}, {24, 289, 293, 312, 313, 314}, {87, 292, 290, 315, 316, 317}, {66, 291, 295, 318, 319, 320}, {59, 294, 291, 321, 322, 323}, {85, 292, 86, 302, 324, 89}, {22, 23, 293, 26, 325, 303}, {57, 294, 58, 308, 326, 61}, {64, 65, 295, 68, 327, 309}, {86, 292, 87, 324, 315, 90}, {23, 24, 293, 27, 314, 325}, {65, 66, 295, 69, 320, 327}, {58, 294, 59, 326, 321, 62}, {288, 293, 287, 304, 328, 329}, {288, 287, 292, 329, 330, 301}, {289, 287, 293, 331, 328, 313}, {290, 292, 287, 316, 330, 332}, {289, 295, 287, 310, 333, 331}, {290, 287, 294, 332, 334, 307}, {291, 294, 287, 322, 334, 335}, {291, 287, 295, 335, 333, 319}, {22, 288, 296, 305, 336, 337}, {85, 296, 288, 338, 336, 300}, {57, 298, 290, 339, 340, 306}, {64, 289, 297, 311, 341, 342}, {87, 290, 298, 317, 340, 343}, {24, 297, 289, 344, 341, 312}, {59, 291, 299, 323, 345, 346}, {66, 299, 291, 347, 345, 318}, {1, 87, 298, 91, 343, 348}, {2, 297, 24, 349, 344, 28}, {3, 296, 85, 350, 338, 88}, {3, 22, 296, 25, 337, 350}, {1, 298, 57, 348, 339, 60}, {2, 64, 297, 67, 342, 349}, {0, 59, 299, 63, 346, 351}, {0, 299, 66, 351, 347, 70}, {64, 353, 357, 365, 366, 367}, {29, 358, 353, 368, 369, 370}, {71, 359, 354, 371, 372, 373}, {36, 355, 360, 374, 375, 376}, {31, 354, 358, 377, 378, 379}, {66, 357, 355, 380, 381, 382}, {38, 360, 356, 383, 384, 385}, {73, 356, 359, 386, 387, 388}, {64, 357, 65, 367, 389, 68}, {71, 72, 359, 75, 390, 371}, {29, 30, 358, 33, 391, 368}, {36, 360, 37, 376, 392, 40}, {65, 357, 66, 389, 380, 69}, {30, 31, 358, 34, 379, 391}, {72, 73, 359, 76, 388, 390}, {37, 360, 38, 392, 383, 41}, {353, 352, 357, 393, 394, 366}, {353, 358, 352, 369, 395, 393}, {354, 352, 358, 396, 395, 378}, {355, 357, 352, 381, 394, 397}, {354, 359, 352, 372, 398, 396}, {355, 352, 360, 397, 399, 375}, {356, 352, 359, 400, 398, 387}, {356, 360, 352, 384, 399, 400}, {64, 361, 353, 401, 402, 365}, {29, 353, 361, 370, 402, 403}, {71, 354, 362, 373, 404, 405}, {36, 363, 355, 406, 407, 374}, {31, 362, 354, 408, 404, 377}, {66, 355, 363, 382, 407, 409}, {38, 356, 364, 385, 410, 411}, {73, 364, 356, 412, 410, 386}, {0, 66, 363, 70, 409, 413}, {2, 361, 64, 414, 401, 67}, {6, 362, 31, 415, 408, 35}, {6, 71, 362, 74, 405, 415}, {2, 29, 361, 32, 403, 414}, {4, 364, 73, 416, 412, 77}, {0, 363, 36, 413, 406, 39}, {4, 38, 364, 42, 411, 416}, {15, 418, 423, 430, 431, 432}, {78, 422, 418, 433, 434, 435}, {50, 424, 420, 436, 437, 438}, {85, 419, 425, 439, 440, 441}, {17, 423, 419, 442, 443, 444}, {80, 420, 422, 445, 446, 447}, {87, 425, 421, 448, 449, 450}, {52, 421, 424, 451, 452, 453}, {15, 423, 16, 432, 454, 19}, {78, 79, 422, 82, 455, 433}, {50, 51, 424, 54, 456, 436}, {85, 425, 86, 441, 457, 89}, {79, 80, 422, 83, 447, 455}, {16, 423, 17, 454, 442, 20}, {86, 425, 87, 457, 448, 90}, {51, 52, 424, 55, 453, 456}, {417, 418, 422, 458, 434, 459}, {417, 423, 418, 460, 431, 458}, {419, 423, 417, 443, 460, 461}, {420, 417, 422, 462, 459, 446}, {419, 417, 425, 461, 463, 440}, {420, 424, 417, 437, 464, 462}, {421, 417, 424, 465, 464, 452}, {421, 425, 417, 449, 463, 465}, {15, 426, 418, 466, 467, 430}, {78, 418, 426, 435, 467, 468}, {50, 420, 428, 438, 469, 470}, {85, 427, 419, 471, 472, 439}, {80, 428, 420, 473, 469, 445}, {17, 419, 427, 444, 472, 474}, {52, 429, 421, 475, 476, 451}, {87, 421, 429, 450, 476, 477}, {5, 428, 80, 478, 473, 84}, {3, 17, 427, 21, 474, 479}, {7, 78, 426, 81, 468, 480}, {7, 426, 15, 480, 466, 18}, {5, 50, 428, 53, 470, 478}, {3, 427, 85, 479, 471, 88}, {1, 429, 52, 481, 475, 56}, {1, 87, 429, 91, 477, 481}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 722
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {0.125, 1, 1}, {0.375, 1, 1}, {0.625, 1, 1}, {0.875, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {1, 1, 0.875}, {1, 1, 0.625}, {1, 1, 0.375}, {1, 1, 0.125}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0.875, 1, 0}, {0.625, 1, 0}, {0.375, 1, 0}, {0.125, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 1, 0.125}, {0, 1, 0.375}, {0, 1, 0.625}, {0, 1, 0.875}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0, 0, 0.125}, {0, 0, 0.375}, {0, 0, 0.625}, {0, 0, 0.875}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {0.125, 0, 1}, {0.375, 0, 1}, {0.625, 0, 1}, {0.875, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {1, 0, 0.875}, {1, 0, 0.625}, {1, 0, 0.375}, {1, 0, 0.125}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0.875, 0, 0}, {0.625, 0, 0}, {0.375, 0, 0}, {0.125, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.875, 0}, {0, 0.625, 0}, {0, 0.375, 0}, {0, 0.125, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {0, 0.875, 1}, {0, 0.625, 1}, {0, 0.375, 1}, {0, 0.125, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.875, 1}, {1, 0.625, 1}, {1, 0.375, 1}, {1, 0.125, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {1, 0.875, 0}, {1, 0.625, 0}, {1, 0.375, 0}, {1, 0.125, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.234692, 0.610874, 1}, {0.095431, 0.625135, 1}, {0.139261, 0.735739, 1}, {0.264261, 0.860739, 1}, {0.375, 0.904691, 1}, {0.389261, 0.76543, 1}, {0.860739, 0.735739, 1}, {0.904569, 0.625135, 1}, {0.765308, 0.610874, 1}, {0.264261, 0.139383, 1}, {0.389261, 0.234962, 1}, {0.375, 0.0955798, 1}, {0.610739, 0.76543, 1}, {0.625, 0.904691, 1}, {0.735739, 0.860739, 1}, {0.095431, 0.375135, 1}, {0.234692, 0.389518, 1}, {0.139261, 0.264383, 1}, {0.625, 0.0955798, 1}, {0.610739, 0.234962, 1}, {0.735739, 0.139383, 1}, {0.860739, 0.264383, 1}, {0.765308, 0.389518, 1}, {0.904569, 0.375135, 1}, {0.095431, 0.500135, 1}, {0.904569, 0.500135, 1}, {0.5, 0.904691, 1}, {0.5, 0.0955798, 1}, {0.389261, 0.611834, 1}, {0.345431, 0.501231, 1}, {0.5, 0.655786, 1}, {0.610739, 0.611834, 1}, {0.389261, 0.390478, 1}, {0.654569, 0.501231, 1}, {0.5, 0.346675, 1}, {0.610739, 0.390478, 1}, {0.0709532, 0.804047, 1}, {0.210214, 0.789786, 1}, {0.195953, 0.929047, 1}, {0.789786, 0.789786, 1}, {0.929047, 0.804047, 1}, {0.195953, 0.0709735, 1}, {0.210214, 0.210356, 1}, {0.804047, 0.929047, 1}, {0.0709532, 0.195973, 1}, {0.789786, 0.210356, 1}, {0.804047, 0.0709735, 1}, {0.929047, 0.195973, 1}, {0.0709532, 0.0709735, 1}, {0.0709532, 0.929047, 1}, {0.929047, 0.929047, 1}, {0.929047, 0.0709735, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.904569, 1, 0.625}, {0.765308, 1, 0.610739}, {0.860739, 1, 0.735739}, {0.625, 1, 0.095431}, {0.610739, 1, 0.234692}, {0.735739, 1, 0.139261}, {0.375, 1, 0.904569}, {0.389261, 1, 0.765308}, {0.264261, 1, 0.860739}, {0.095431, 1, 0.375}, {0.234692, 1, 0.389261}, {0.139261, 1, 0.264261}, {0.735739, 1, 0.860739}, {0.610739, 1, 0.765308}, {0.625, 1, 0.904569}, {0.139261, 1, 0.735739}, {0.234692, 1, 0.610739}, {0.095431, 1, 0.625}, {0.860739, 1, 0.264261}, {0.765308, 1, 0.389261}, {0.904569, 1, 0.375}, {0.264261, 1, 0.139261}, {0.389261, 1, 0.234692}, {0.375, 1, 0.095431}, {0.5, 1, 0.095431}, {0.904569, 1, 0.5}, {0.095431, 1, 0.5}, {0.5, 1, 0.904569}, {0.654569, 1, 0.5}, {0.610739, 1, 0.610739}, {0.610739, 1, 0.389261}, {0.5, 1, 0.345431}, {0.389261, 1, 0.389261}, {0.5, 1, 0.654569}, {0.389261, 1, 0.610739}, {0.345431, 1, 0.5}, {0.789786, 1, 0.789786}, {0.929047, 1, 0.804047}, {0.789786, 1, 0.210214}, {0.804047, 1, 0.0709532}, {0.210214, 1, 0.789786}, {0.195953, 1, 0.929047}, {0.210214, 1, 0.210214}, {0.0709532, 1, 0.195953}, {0.804047, 1, 0.929047}, {0.0709532, 1, 0.804047}, {0.929047, 1, 0.195953}, {0.195953, 1, 0.0709532}, {0.0709532, 1, 0.0709532}, {0.929047, 1, 0.0709532}, {0.0709532, 1, 0.929047}, {0.929047, 1, 0.929047}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.904691, 0, 0.625}, {0.76543, 0, 0.610739}, {0.860739, 0, 0.735739}, {0.625135, 0, 0.095431}, {0.610874, 0, 0.234692}, {0.735739, 0, 0.139261}, {0.375135, 0, 0.904569}, {0.389518, 0, 0.765308}, {0.264383, 0, 0.860739}, {0.0955798, 0, 0.375}, {0.234962, 0, 0.389261}, {0.139383, 0, 0.264261}, {0.735739, 0, 0.860739}, {0.610874, 0, 0.765308}, {0.625135, 0, 0.904569}, {0.139383, 0, 0.735739}, {0.234962, 0, 0.610739}, {0.0955798, 0, 0.625}, {0.860739, 0, 0.264261}, {0.76543, 0, 0.389261}, {0.904691, 0, 0.375}, {0.264383, 0, 0.139261}, {0.389518, 0, 0.234692}, {0.375135, 0, 0.095431}, {0.500135, 0, 0.095431}, {0.904691, 0, 0.5}, {0.0955798, 0, 0.5}, {0.500135, 0, 0.904569}, {0.655786, 0, 0.5}, {0.611834, 0, 0.610739}, {0.611834, 0, 0.389261}, {0.501231, 0, 0.345431}, {0.390478, 0, 0.389261}, {0.501231, 0, 0.654569}, {0.390478, 0, 0.610739}, {0.346675, 0, 0.5}, {0.789786, 0, 0.789786}, {0.929047, 0, 0.804047}, {0.789786, 0, 0.210214}, {0.804047, 0, 0.0709532}, {0.210356, 0, 0.789786}, {0.195973, 0, 0.929047}, {0.210356, 0, 0.210214}, {0.0709735, 0, 0.195953}, {0.804047, 0, 0.929047}, {0.0709735, 0, 0.804047}, {0.929047, 0, 0.195953}, {0.195973, 0, 0.0709532}, {0.0709735, 0, 0.0709532}, {0.929047, 0, 0.0709532}, {0.0709735, 0, 0.929047}, {0.929047, 0, 0.929047}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0.860739, 0.735739, 0}, {0.765308, 0.610739, 0}, {0.904569, 0.625, 0}, {0.625, 0.904569, 0}, {0.610739, 0.765308, 0}, {0.735739, 0.860739, 0}, {0.735739, 0.139261, 0}, {0.610739, 0.234692, 0}, {0.625, 0.095431, 0}, {0.095431, 0.625, 0}, {0.234692, 0.610739, 0}, {0.139261, 0.735739, 0}, {0.264261, 0.860739, 0}, {0.389261, 0.765308, 0}, {0.375, 0.904569, 0}, {0.904569, 0.375, 0}, {0.765308, 0.389261, 0}, {0.860739, 0.264261, 0}, {0.139261, 0.264261, 0}, {0.234692, 0.389261, 0}, {0.095431, 0.375, 0}, {0.375, 0.095431, 0}, {0.389261, 0.234692, 0}, {0.264261, 0.139261, 0}, {0.904569, 0.5, 0}, {0.5, 0.904569, 0}, {0.5, 0.095431, 0}, {0.095431, 0.5, 0}, {0.5, 0.654569, 0}, {0.610739, 0.610739, 0}, {0.654569, 0.5, 0}, {0.389261, 0.610739, 0}, {0.610739, 0.389261, 0}, {0.345431, 0.5, 0}, {0.5, 0.345431, 0}, {0.389261, 0.389261, 0}, {0.789786, 0.789786, 0}, {0.804047, 0.929047, 0}, {0.929047, 0.804047, 0}, {0.804047, 0.0709532, 0}, {0.789786, 0.210214, 0}, {0.210214, 0.789786, 0}, {0.0709532, 0.804047, 0}, {0.929047, 0.195953, 0}, {0.195953, 0.929047, 0}, {0.210214, 0.210214, 0}, {0.195953, 0.0709532, 0}, {0.0709532, 0.195953, 0}, {0.929047, 0.0709532, 0}, {0.0709532, 0.929047, 0}, {0.929047, 0.929047, 0}, {0.0709532, 0.0709532, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {0, 0.735739, 0.139261}, {0, 0.610739, 0.234692}, {0, 0.625, 0.095431}, {0, 0.904569, 0.375}, {0, 0.765308, 0.389261}, {0, 0.860739, 0.264261}, {0, 0.625, 0.904569}, {0, 0.610739, 0.765308}, {0, 0.735739, 0.860739}, {0, 0.139261, 0.264261}, {0, 0.234692, 0.389261}, {0, 0.095431, 0.375}, {0, 0.860739, 0.735739}, {0, 0.765308, 0.610739}, {0, 0.904569, 0.625}, {0, 0.375, 0.095431}, {0, 0.389261, 0.234692}, {0, 0.264261, 0.139261}, {0, 0.095431, 0.625}, {0, 0.234692, 0.610739}, {0, 0.139261, 0.735739}, {0, 0.264261, 0.860739}, {0, 0.389261, 0.765308}, {0, 0.375, 0.904569}, {0, 0.5, 0.095431}, {0, 0.5, 0.904569}, {0, 0.904569, 0.5}, {0, 0.095431, 0.5}, {0, 0.610739, 0.389261}, {0, 0.5, 0.345431}, {0, 0.654569, 0.5}, {0, 0.610739, 0.610739}, {0, 0.389261, 0.389261}, {0, 0.5, 0.654569}, {0, 0.345431, 0.5}, {0, 0.389261, 0.610739}, {0, 0.804047, 0.0709532}, {0, 0.789786, 0.210214}, {0, 0.929047, 0.195953}, {0, 0.789786, 0.789786}, {0, 0.804047, 0.929047}, {0, 0.0709532, 0.195953}, {0, 0.210214, 0.210214}, {0, 0.929047, 0.804047}, {0, 0.195953, 0.0709532}, {0, 0.210214, 0.789786}, {0, 0.0709532, 0.804047}, {0, 0.195953, 0.929047}, {0, 0.0709532, 0.0709532}, {0, 0.929047, 0.0709532}, {0, 0.929047, 0.929047}, {0, 0.0709532, 0.929047}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {1, 0.860678, 0.735678}, {1, 0.76518, 0.610611}, {1, 0.904501, 0.624932}, {1, 0.624932, 0.904501}, {1, 0.610611, 0.76518}, {1, 0.735678, 0.860678}, {1, 0.0953701, 0.624939}, {1, 0.234631, 0.610678}, {1, 0.139261, 0.735739}, {1, 0.735739, 0.139261}, {1, 0.610678, 0.234631}, {1, 0.624939, 0.0953701}, {1, 0.904501, 0.374932}, {1, 0.76524, 0.389193}, {1, 0.860739, 0.264261}, {1, 0.264261, 0.860739}, {1, 0.389193, 0.76524}, {1, 0.374932, 0.904501}, {1, 0.374939, 0.0953701}, {1, 0.3892, 0.234631}, {1, 0.264261, 0.139261}, {1, 0.139261, 0.264261}, {1, 0.234631, 0.3892}, {1, 0.0953701, 0.374939}, {1, 0.904501, 0.499932}, {1, 0.499932, 0.904501}, {1, 0.0953701, 0.499939}, {1, 0.499939, 0.0953701}, {1, 0.610131, 0.610131}, {1, 0.499385, 0.653954}, {1, 0.653954, 0.499385}, {1, 0.610191, 0.388713}, {1, 0.388713, 0.610191}, {1, 0.499391, 0.344822}, {1, 0.344822, 0.499391}, {1, 0.388713, 0.388713}, {1, 0.929037, 0.804037}, {1, 0.789715, 0.789715}, {1, 0.804037, 0.929037}, {1, 0.210214, 0.789786}, {1, 0.0709532, 0.804047}, {1, 0.804047, 0.0709532}, {1, 0.789786, 0.210214}, {1, 0.195953, 0.929047}, {1, 0.929047, 0.195953}, {1, 0.0709532, 0.195953}, {1, 0.210214, 0.210214}, {1, 0.195953, 0.0709532}, {1, 0.0709532, 0.929047}, {1, 0.929047, 0.0709532}, {1, 0.929037, 0.929037}, {1, 0.0709532, 0.0709532}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}, {0.403787, 0.502163, 0.604301}, {0.59395, 0.335588, 0.588613}, {0.57425, 0.502163, 0.604301}, {0.533055, 0.519268, 0.479373}, {0.723218, 0.352693, 0.463685}, {0.552756, 0.352693, 0.463685}, {0.907719, 0.227933, 0.0932632}, {0.768458, 0.242194, 0.0932632}, {0.812288, 0.352933, 0.0932632}, {0.462839, 0.167794, 0.544306}, {0.592107, 0.184899, 0.419378}, {0.423487, 0.335588, 0.41815}, {0.552756, 0.352693, 0.293222}, {0.462839, 0.167794, 0.373844}, {0.610874, 0.139383, 0.904569}, {0.500135, 0.0955798, 0.904569}, {0.141927, 0.0709532, 0.0709532}, {0.0709735, 0.0709532, 0.141906}, {0.0709532, 0.141906, 0.0709532}, {0.307175, 0.417794, 0.123844}, {0.351005, 0.307055, 0.123844}, {0.095431, 0.5, 0.095431}, {0.139261, 0.389261, 0.095431}, {0.211744, 0.417794, 0.219275}, {0.633302, 0.167794, 0.544306}, {0.907719, 0.173886, 0.164216}, {0.907719, 0.242194, 0.232524}, {0.0709532, 0.210234, 0.860739}, {0.141927, 0.0709735, 0.929047}, {0.0709735, 0.139261, 0.789786}, {0.0709735, 0.0709532, 0.858094}, {0.0709532, 0.141927, 0.929047}, {0.210336, 0.0709735, 0.860739}, {0.139383, 0.139261, 0.721478}, {0.742945, 0.167794, 0.655045}, {0.786897, 0.167794, 0.544306}, {0.904691, 0.139261, 0.610739}, {0.882206, 0.307055, 0.655045}, {0.860739, 0.139261, 0.721478}, {0.442043, 0.585464, 0.809994}, {0.461744, 0.418889, 0.794306}, {0.632206, 0.418889, 0.794306}, {0.907719, 0.352872, 0.188633}, {0.836765, 0.173886, 0.0932632}, {0.549357, 0.674254, 0.636624}, {0.73952, 0.678141, 0.450474}, {0.57425, 0.672625, 0.433838}, {0.723218, 0.523156, 0.293222}, {0.698326, 0.524784, 0.496008}, {0.721478, 0.860739, 0.860739}, {0.610739, 0.904691, 0.860739}, {0.0709735, 0.139261, 0.210214}, {0.882206, 0.263164, 0.544245}, {0.882206, 0.417246, 0.543759}, {0.768458, 0.102933, 0.232524}, {0.907719, 0.102933, 0.218263}, {0.836765, 0.102933, 0.164216}, {0.73952, 0.507679, 0.620936}, {0.929047, 0.929037, 0.858083}, {0.403787, 0.672625, 0.433838}, {0.59395, 0.676512, 0.247688}, {0.552756, 0.523156, 0.293222}, {0.307175, 0.417929, 0.794306}, {0.351005, 0.307176, 0.794306}, {0.095431, 0.904569, 0.5}, {0.500135, 0.095431, 0.095431}, {0.858094, 0.929047, 0.929047}, {0.5, 0.904691, 0.904569}, {0.929047, 0.858083, 0.929037}, {0.423487, 0.50605, 0.41815}, {0.904569, 0.904501, 0.499932}, {0.139261, 0.860739, 0.278522}, {0.139261, 0.904569, 0.389261}, {0.351005, 0.838256, 0.263105}, {0.211744, 0.742825, 0.373844}, {0.211744, 0.698995, 0.263105}, {0.141906, 0.929047, 0.929047}, {0.210214, 0.860739, 0.929047}, {0.904569, 0.500068, 0.904501}, {0.745703, 0.184899, 0.419378}, {0.904691, 0.0953701, 0.499939}, {0.841012, 0.280269, 0.419318}, {0.607314, 0.59098, 0.82663}, {0.461879, 0.167794, 0.698875}, {0.572483, 0.167794, 0.655045}, {0.882206, 0.417726, 0.698808}, {0.0709532, 0.789786, 0.139261}, {0.139261, 0.721478, 0.139261}, {0.882206, 0.588195, 0.219214}, {0.841012, 0.434839, 0.264749}, {0.882206, 0.587709, 0.373296}, {0.841012, 0.434352, 0.418831}, {0.389261, 0.904569, 0.139261}, {0.5, 0.904569, 0.095431}, {0.389383, 0.095431, 0.139261}, {0.278522, 0.860739, 0.139261}, {0.287474, 0.834369, 0.559994}, {0.331304, 0.834369, 0.670734}, {0.192043, 0.695108, 0.670734}, {0.139261, 0.860739, 0.721478}, {0.095431, 0.860739, 0.610739}, {0.139261, 0.278644, 0.860739}, {0.278644, 0.139383, 0.860739}, {0.139261, 0.389383, 0.904569}, {0.192043, 0.584369, 0.559994}, {0.192043, 0.584369, 0.714563}, {0.211744, 0.417794, 0.698875}, {0.211744, 0.417794, 0.544306}, {0.0955798, 0.139261, 0.610739}, {0.351005, 0.698995, 0.123844}, {0.461744, 0.742825, 0.123844}, {0.461744, 0.838256, 0.219275}, {0.929047, 0.141906, 0.0709532}, {0.858094, 0.929047, 0.0709532}, {0.0955798, 0.095431, 0.5}, {0.307323, 0.167794, 0.544306}, {0.211744, 0.263225, 0.544306}, {0.211744, 0.307055, 0.655045}, {0.461744, 0.263225, 0.123844}, {0.351126, 0.167794, 0.263105}, {0.278644, 0.139261, 0.139261}, {0.461879, 0.167794, 0.219275}, {0.929047, 0.929047, 0.141906}, {0.860739, 0.860678, 0.721417}, {0.904569, 0.860678, 0.610678}, {0.442043, 0.834369, 0.559994}, {0.718053, 0.839885, 0.687369}, {0.857314, 0.700563, 0.687308}, {0.761883, 0.839885, 0.57663}, {0.857314, 0.744386, 0.576562}, {0.904569, 0.499939, 0.0953701}, {0.786775, 0.588256, 0.123844}, {0.745581, 0.434899, 0.169378}, {0.701751, 0.32416, 0.169378}, {0.748731, 0.287832, 0.262642}, {0.857314, 0.589817, 0.731131}, {0.857314, 0.589337, 0.576082}, {0.572483, 0.307055, 0.123844}, {0.461744, 0.417794, 0.123844}, {0.591012, 0.434899, 0.169378}, {0.929047, 0.858094, 0.0709532}, {0.882206, 0.713256, 0.123844}, {0.882206, 0.767303, 0.194797}, {0.882206, 0.698995, 0.263105}, {0.351126, 0.167794, 0.433567}, {0.351126, 0.167794, 0.655045}, {0.211744, 0.417794, 0.373844}, {0.423487, 0.50605, 0.247688}, {0.211744, 0.588256, 0.373844}, {0.929047, 0.0709532, 0.141906}, {0.287474, 0.584504, 0.809994}, {0.929047, 0.0709532, 0.858094}, {0.192043, 0.738938, 0.559994}, {0.461744, 0.838256, 0.373844}, {0.632206, 0.838256, 0.373844}, {0.139261, 0.210214, 0.0709532}, {0.210234, 0.139261, 0.0709532}, {0.789786, 0.0709735, 0.860739}, {0.721478, 0.139383, 0.860739}, {0.610739, 0.904569, 0.139261}, {0.721478, 0.860739, 0.139261}, {0.0709532, 0.929047, 0.141906}, {0.095431, 0.500135, 0.904569}, {0.442043, 0.834369, 0.714563}, {0.461744, 0.263374, 0.794306}, {0.860739, 0.278644, 0.860739}, {0.929047, 0.210234, 0.860739}, {0.211744, 0.307055, 0.263105}, {0.139261, 0.610739, 0.095431}, {0.211744, 0.588256, 0.219275}, {0.632206, 0.588256, 0.123844}, {0.461744, 0.588256, 0.123844}, {0.139383, 0.139261, 0.278522}, {0.139261, 0.278522, 0.139261}, {0.607314, 0.839885, 0.57663}, {0.904569, 0.610813, 0.860678}, {0.0709532, 0.858094, 0.929047}, {0.331304, 0.695108, 0.809994}, {0.139261, 0.721478, 0.860739}, {0.278522, 0.860739, 0.860739}, {0.0709532, 0.929047, 0.858094}, {0.718053, 0.700624, 0.82663}, {0.860739, 0.721417, 0.860678}, {0.761883, 0.59002, 0.82663}, {0.742945, 0.307176, 0.794306}, {0.786775, 0.417929, 0.794306}, {0.860739, 0.929037, 0.789776}, {0.389261, 0.904691, 0.860739}, {0.307175, 0.588256, 0.123844}, {0.789786, 0.860739, 0.0709532}, {0.0709532, 0.858094, 0.0709532}, {0.742945, 0.838256, 0.263105}, {0.632206, 0.742825, 0.123844}, {0.742945, 0.698995, 0.123844}, {0.841012, 0.32416, 0.308639}, {0.610874, 0.139261, 0.095431}, {0.782719, 0.102933, 0.0932632}, {0.860739, 0.789776, 0.929037}, {0.929047, 0.141927, 0.929047}, {0.811253, 0.838256, 0.194797}, {0.858094, 0.0709735, 0.929047}, {0.607314, 0.839885, 0.731199}, {0.607314, 0.744576, 0.82663}, {0.442043, 0.73906, 0.809994}, {0.389383, 0.0955798, 0.860739}, {0.141906, 0.929047, 0.0709532}, {0.0709532, 0.860739, 0.210214}, {0.929047, 0.860739, 0.210214}, {0.860739, 0.860739, 0.278522}, {0.139383, 0.095431, 0.389261}, {0.211744, 0.263225, 0.373844}, {0.139261, 0.789786, 0.929047}, {0.789786, 0.929047, 0.860739}, {0.904691, 0.139261, 0.389261}, {0.701751, 0.184899, 0.308639}, {0.929047, 0.139261, 0.789786}, {0.786775, 0.838256, 0.373844}, {0.875, 0.0709532, 0.0709532}, {0.210214, 0.929047, 0.139261}, {0.572483, 0.838256, 0.263105}, {0.591147, 0.184899, 0.264809}, {0.904569, 0.389396, 0.860739}, {0.572483, 0.307176, 0.794306}, {0.331304, 0.834369, 0.449255}, {0.139261, 0.929047, 0.789786}, {0.860739, 0.789786, 0.0709532}, {0.904569, 0.860739, 0.389261}, {0.139261, 0.610739, 0.904569}, {0.812409, 0.102933, 0.343263}, {0.657854, 0.102933, 0.188694}, {0.857314, 0.700624, 0.465891}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:tetrahedron_10
+   + id             : my_fem:jacobians:_tetrahedron_10
    + size           : 1364
    + nb_component   : 1
    + allocated size : 1364
    + memory size    : 11kB
    + values         : {{0.00119768}, {0.00119768}, {0.00119768}, {0.00119768}, {0.000498855}, {0.000498855}, {0.000498855}, {0.000498855}, {0.00127072}, {0.00127072}, {0.00127072}, {0.00127072}, {0.000510867}, {0.000510867}, {0.000510867}, {0.000510867}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00023817}, {0.00023817}, {0.00023817}, {0.00023817}, {0.000731371}, {0.000731371}, {0.000731371}, {0.000731371}, {0.00123415}, {0.00123415}, {0.00123415}, {0.00123415}, {0.000262647}, {0.000262647}, {0.000262647}, {0.000262647}, {0.000229322}, {0.000229322}, {0.000229322}, {0.000229322}, {0.000450497}, {0.000450497}, {0.000450497}, {0.000450497}, {0.000202139}, {0.000202139}, {0.000202139}, {0.000202139}, {0.000887737}, {0.000887737}, {0.000887737}, {0.000887737}, {0.00187262}, {0.00187262}, {0.00187262}, {0.00187262}, {0.000493369}, {0.000493369}, {0.000493369}, {0.000493369}, {0.000265441}, {0.000265441}, {0.000265441}, {0.000265441}, {0.00172558}, {0.00172558}, {0.00172558}, {0.00172558}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000671175}, {0.000671175}, {0.000671175}, {0.000671175}, {0.000292964}, {0.000292964}, {0.000292964}, {0.000292964}, {0.00118606}, {0.00118606}, {0.00118606}, {0.00118606}, {0.000209795}, {0.000209795}, {0.000209795}, {0.000209795}, {0.00161203}, {0.00161203}, {0.00161203}, {0.00161203}, {0.00117664}, {0.00117664}, {0.00117664}, {0.00117664}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000378978}, {0.000378978}, {0.000378978}, {0.000378978}, {0.000209795}, {0.000209795}, {0.000209795}, {0.000209795}, {0.00121805}, {0.00121805}, {0.00121805}, {0.00121805}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00117268}, {0.00117268}, {0.00117268}, {0.00117268}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00083749}, {0.00083749}, {0.00083749}, {0.00083749}, {0.00191797}, {0.00191797}, {0.00191797}, {0.00191797}, {0.000953843}, {0.000953843}, {0.000953843}, {0.000953843}, {0.000672936}, {0.000672936}, {0.000672936}, {0.000672936}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00111398}, {0.00111398}, {0.00111398}, {0.00111398}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051068}, {0.00051068}, {0.00051068}, {0.00051068}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.00122601}, {0.00122601}, {0.00122601}, {0.00122601}, {0.000884197}, {0.000884197}, {0.000884197}, {0.000884197}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.00173384}, {0.00173384}, {0.00173384}, {0.00173384}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000209825}, {0.0007455}, {0.0007455}, {0.0007455}, {0.0007455}, {0.000899671}, {0.000899671}, {0.000899671}, {0.000899671}, {0.000616516}, {0.000616516}, {0.000616516}, {0.000616516}, {0.000200144}, {0.000200144}, {0.000200144}, {0.000200144}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000939334}, {0.000939334}, {0.000939334}, {0.000939334}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000930551}, {0.000930551}, {0.000930551}, {0.000930551}, {0.000638055}, {0.000638055}, {0.000638055}, {0.000638055}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000238204}, {0.000238204}, {0.000238204}, {0.000238204}, {0.000745217}, {0.000745217}, {0.000745217}, {0.000745217}, {0.000510776}, {0.000510776}, {0.000510776}, {0.000510776}, {0.000945026}, {0.000945026}, {0.000945026}, {0.000945026}, {0.000909981}, {0.000909981}, {0.000909981}, {0.000909981}, {0.000623877}, {0.000623877}, {0.000623877}, {0.000623877}, {0.000956672}, {0.000956672}, {0.000956672}, {0.000956672}, {0.000513725}, {0.000513725}, {0.000513725}, {0.000513725}, {0.00105581}, {0.00105581}, {0.00105581}, {0.00105581}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00115231}, {0.00115231}, {0.00115231}, {0.00115231}, {0.000871617}, {0.000871617}, {0.000871617}, {0.000871617}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000966407}, {0.000966407}, {0.000966407}, {0.000966407}, {0.000335259}, {0.000335259}, {0.000335259}, {0.000335259}, {0.000630433}, {0.000630433}, {0.000630433}, {0.000630433}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00037973}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.00106509}, {0.00106509}, {0.00106509}, {0.00106509}, {0.00198327}, {0.00198327}, {0.00198327}, {0.00198327}, {0.00205091}, {0.00205091}, {0.00205091}, {0.00205091}, {0.000963229}, {0.000963229}, {0.000963229}, {0.000963229}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.00215047}, {0.00215047}, {0.00215047}, {0.00215047}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000959836}, {0.000959836}, {0.000959836}, {0.000959836}, {0.000817692}, {0.000817692}, {0.000817692}, {0.000817692}, {0.000902791}, {0.000902791}, {0.000902791}, {0.000902791}, {0.00169951}, {0.00169951}, {0.00169951}, {0.00169951}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000840144}, {0.000840144}, {0.000840144}, {0.000840144}, {0.00173867}, {0.00173867}, {0.00173867}, {0.00173867}, {0.000671175}, {0.000671175}, {0.000671175}, {0.000671175}, {0.000963229}, {0.000963229}, {0.000963229}, {0.000963229}, {0.00022929}, {0.00022929}, {0.00022929}, {0.00022929}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000511246}, {0.000511246}, {0.000511246}, {0.000511246}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00161366}, {0.00161366}, {0.00161366}, {0.00161366}, {0.000945026}, {0.000945026}, {0.000945026}, {0.000945026}, {0.0011808}, {0.0011808}, {0.0011808}, {0.0011808}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000379219}, {0.000379219}, {0.000379219}, {0.000379219}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00105497}, {0.00105497}, {0.00105497}, {0.00105497}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00130751}, {0.00130751}, {0.00130751}, {0.00130751}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000951335}, {0.000951335}, {0.000951335}, {0.000951335}, {0.00145377}, {0.00145377}, {0.00145377}, {0.00145377}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000396677}, {0.00137036}, {0.00137036}, {0.00137036}, {0.00137036}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.000913554}, {0.000913554}, {0.000913554}, {0.000913554}, {0.000744668}, {0.000744668}, {0.000744668}, {0.000744668}, {0.000959836}, {0.000959836}, {0.000959836}, {0.000959836}, {0.000510776}, {0.000510776}, {0.000510776}, {0.000510776}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00173998}, {0.00173998}, {0.00173998}, {0.00173998}, {0.00106728}, {0.00106728}, {0.00106728}, {0.00106728}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000950017}, {0.000950017}, {0.000950017}, {0.000950017}, {0.00160036}, {0.00160036}, {0.00160036}, {0.00160036}, {0.00148765}, {0.00148765}, {0.00148765}, {0.00148765}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00117664}, {0.00117664}, {0.00117664}, {0.00117664}, {0.000744343}, {0.000744343}, {0.000744343}, {0.000744343}, {0.00108011}, {0.00108011}, {0.00108011}, {0.00108011}, {0.00102006}, {0.00102006}, {0.00102006}, {0.00102006}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000985542}, {0.000985542}, {0.000985542}, {0.000985542}, {0.00023817}, {0.00023817}, {0.00023817}, {0.00023817}, {0.000509799}, {0.000509799}, {0.000509799}, {0.000509799}, {0.00122872}, {0.00122872}, {0.00122872}, {0.00122872}, {0.000201973}, {0.000201973}, {0.000201973}, {0.000201973}, {0.00168481}, {0.00168481}, {0.00168481}, {0.00168481}, {0.000396652}, {0.000396652}, {0.000396652}, {0.000396652}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000396677}, {0.00127773}, {0.00127773}, {0.00127773}, {0.00127773}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00185969}, {0.00185969}, {0.00185969}, {0.00185969}, {0.00130224}, {0.00130224}, {0.00130224}, {0.00130224}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00051068}, {0.00051068}, {0.00051068}, {0.00051068}, {0.000817692}, {0.000817692}, {0.000817692}, {0.000817692}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.00137577}, {0.00137577}, {0.00137577}, {0.00137577}, {0.000708521}, {0.000708521}, {0.000708521}, {0.000708521}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.00125207}, {0.00125207}, {0.00125207}, {0.00125207}, {0.00108769}, {0.00108769}, {0.00108769}, {0.00108769}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000518452}, {0.000518452}, {0.000518452}, {0.000518452}, {0.000662427}, {0.000662427}, {0.000662427}, {0.000662427}, {0.000902637}, {0.000902637}, {0.000902637}, {0.000902637}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00109572}, {0.00109572}, {0.00109572}, {0.00109572}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.00100863}, {0.00100863}, {0.00100863}, {0.00100863}, {0.000265441}, {0.000265441}, {0.000265441}, {0.000265441}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000849291}, {0.000849291}, {0.000849291}, {0.000849291}, {0.00109572}, {0.00109572}, {0.00109572}, {0.00109572}, {0.000396652}, {0.000396652}, {0.000396652}, {0.000396652}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000196277}, {0.000196277}, {0.000196277}, {0.000196277}, {0.000201973}, {0.000201973}, {0.000201973}, {0.000201973}, {0.000262647}, {0.000262647}, {0.000262647}, {0.000262647}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000510096}, {0.000510096}, {0.000510096}, {0.000510096}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000378736}, {0.000378736}, {0.000378736}, {0.000378736}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000532051}, {0.000532051}, {0.000532051}, {0.000532051}, {0.0014145}, {0.0014145}, {0.0014145}, {0.0014145}, {0.00108638}, {0.00108638}, {0.00108638}, {0.00108638}, {0.000378736}, {0.000378736}, {0.000378736}, {0.000378736}, {0.0011856}, {0.0011856}, {0.0011856}, {0.0011856}, {0.00186025}, {0.00186025}, {0.00186025}, {0.00186025}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000922847}, {0.000922847}, {0.000922847}, {0.000922847}, {0.00132655}, {0.00132655}, {0.00132655}, {0.00132655}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00107727}, {0.00107727}, {0.00107727}, {0.00107727}, {0.00135137}, {0.00135137}, {0.00135137}, {0.00135137}, {0.000292964}, {0.000292964}, {0.000292964}, {0.000292964}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000722936}, {0.000722936}, {0.000722936}, {0.000722936}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000926941}, {0.000926941}, {0.000926941}, {0.000926941}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000509799}, {0.000509799}, {0.000509799}, {0.000509799}, {0.000378978}, {0.000378978}, {0.000378978}, {0.000378978}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000380053}, {0.0007455}, {0.0007455}, {0.0007455}, {0.0007455}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00023817}, {0.00023817}, {0.00023817}, {0.00023817}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000608086}, {0.000608086}, {0.000608086}, {0.000608086}, {0.000652377}, {0.000652377}, {0.000652377}, {0.000652377}, {0.000511476}, {0.000511476}, {0.000511476}, {0.000511476}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000493684}, {0.000493684}, {0.000493684}, {0.000493684}, {0.000251531}, {0.000251531}, {0.000251531}, {0.000251531}, {0.000835485}, {0.000835485}, {0.000835485}, {0.000835485}, {0.00121998}, {0.00121998}, {0.00121998}, {0.00121998}, {0.00120388}, {0.00120388}, {0.00120388}, {0.00120388}, {0.000510867}, {0.000510867}, {0.000510867}, {0.000510867}, {0.000745543}, {0.000745543}, {0.000745543}, {0.000745543}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000849837}, {0.000849837}, {0.000849837}, {0.000849837}, {0.000902637}, {0.000902637}, {0.000902637}, {0.000902637}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00022929}, {0.00022929}, {0.00022929}, {0.00022929}, {0.000761723}, {0.000761723}, {0.000761723}, {0.000761723}, {0.000509558}, {0.000509558}, {0.000509558}, {0.000509558}, {0.00104832}, {0.00104832}, {0.00104832}, {0.00104832}, {0.00111203}, {0.00111203}, {0.00111203}, {0.00111203}, {0.00080431}, {0.00080431}, {0.00080431}, {0.00080431}, {0.000379219}, {0.000379219}, {0.000379219}, {0.000379219}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00022929}, {0.00022929}, {0.00022929}, {0.00022929}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00106294}, {0.00106294}, {0.00106294}, {0.00106294}, {0.00172128}, {0.00172128}, {0.00172128}, {0.00172128}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00185969}, {0.00185969}, {0.00185969}, {0.00185969}, {0.000922847}, {0.000922847}, {0.000922847}, {0.000922847}, {0.00167934}, {0.00167934}, {0.00167934}, {0.00167934}, {0.000237043}, {0.000237043}, {0.000237043}, {0.000237043}, {0.000233177}, {0.000233177}, {0.000233177}, {0.000233177}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00100541}, {0.00100541}, {0.00100541}, {0.00100541}, {0.0006888}, {0.0006888}, {0.0006888}, {0.0006888}, {0.000883155}, {0.000883155}, {0.000883155}, {0.000883155}, {0.000449966}, {0.000449966}, {0.000449966}, {0.000449966}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000723193}, {0.000723193}, {0.000723193}, {0.000723193}, {0.00119627}, {0.00119627}, {0.00119627}, {0.00119627}, {0.000922847}, {0.000922847}, {0.000922847}, {0.000922847}, {0.00101774}, {0.00101774}, {0.00101774}, {0.00101774}, {0.00074475}, {0.00074475}, {0.00074475}, {0.00074475}, {0.00122628}, {0.00122628}, {0.00122628}, {0.00122628}, {0.000688235}, {0.000688235}, {0.000688235}, {0.000688235}, {0.00100531}, {0.00100531}, {0.00100531}, {0.00100531}, {0.00051012}, {0.00051012}, {0.00051012}, {0.00051012}, {0.000745227}, {0.000745227}, {0.000745227}, {0.000745227}, {0.00103381}, {0.00103381}, {0.00103381}, {0.00103381}, {0.00130566}, {0.00130566}, {0.00130566}, {0.00130566}, {0.0011808}, {0.0011808}, {0.0011808}, {0.0011808}, {0.00100744}, {0.00100744}, {0.00100744}, {0.00100744}, {0.00169196}, {0.00169196}, {0.00169196}, {0.00169196}, {0.000945026}, {0.000945026}, {0.000945026}, {0.000945026}, {0.00124164}, {0.00124164}, {0.00124164}, {0.00124164}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000883155}, {0.000883155}, {0.000883155}, {0.000883155}, {0.000449966}, {0.000449966}, {0.000449966}, {0.000449966}, {0.00139391}, {0.00139391}, {0.00139391}, {0.00139391}, {0.000913554}, {0.000913554}, {0.000913554}, {0.000913554}, {0.00105108}, {0.00105108}, {0.00105108}, {0.00105108}, {0.0011491}, {0.0011491}, {0.0011491}, {0.0011491}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000609681}, {0.000609681}, {0.000609681}, {0.000609681}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000391999}, {0.000391999}, {0.000391999}, {0.000391999}, {0.00150629}, {0.00150629}, {0.00150629}, {0.00150629}, {0.00185388}, {0.00185388}, {0.00185388}, {0.00185388}, {0.00108769}, {0.00108769}, {0.00108769}, {0.00108769}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.00068973}, {0.00068973}, {0.00068973}, {0.00068973}, {0.00051012}, {0.00051012}, {0.00051012}, {0.00051012}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000982951}, {0.000982951}, {0.000982951}, {0.000982951}, {0.00155838}, {0.00155838}, {0.00155838}, {0.00155838}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00190279}, {0.00190279}, {0.00190279}, {0.00190279}, {0.000890603}, {0.000890603}, {0.000890603}, {0.000890603}, {0.00130171}, {0.00130171}, {0.00130171}, {0.00130171}, {0.000509851}, {0.000509851}, {0.000509851}, {0.000509851}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000722514}, {0.000722514}, {0.000722514}, {0.000722514}, {0.000550638}, {0.000550638}, {0.000550638}, {0.000550638}, {0.000869085}, {0.000869085}, {0.000869085}, {0.000869085}, {0.00056562}, {0.00056562}, {0.00056562}, {0.00056562}, {0.000549932}, {0.000549932}, {0.000549932}, {0.000549932}, {0.000732214}, {0.000732214}, {0.000732214}, {0.000732214}, {0.00058443}, {0.00058443}, {0.00058443}, {0.00058443}, {0.000883971}, {0.000883971}, {0.000883971}, {0.000883971}, {0.00124314}, {0.00124314}, {0.00124314}, {0.00124314}, {0.000836794}, {0.000836794}, {0.000836794}, {0.000836794}, {0.00092794}, {0.00092794}, {0.00092794}, {0.00092794}, {0.000815143}, {0.000815143}, {0.000815143}, {0.000815143}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:tetrahedron_10
+   + id             : my_fem:quadrature_points:_tetrahedron_10
    + size           : 4
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{0.138197, 0.138197, 0.138197}, {0.58541, 0.138197, 0.138197}, {0.138197, 0.58541, 0.138197}, {0.138197, 0.138197, 0.58541}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:tetrahedron_10
+   + id             : my_fem:shapes:_tetrahedron_10
    + size           : 1364
    + nb_component   : 10
    + allocated size : 1364
    + memory size    : 1.1e+02kB
    + values         : {{0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:tetrahedron_10
+   + id             : my_fem:shapes_derivatives:_tetrahedron_10
    + size           : 1364
    + nb_component   : 30
    + allocated size : 1364
    + memory size    : 3.2e+02kB
    + values         : {{-3.9353, -4.55601, 0.673815, 0, -1.32529, -0.181463, -1.31177, -0.0269554, -1.36103, 0, -0.166427, 1.7671, -1.62143, 5.06211, 1.22778, 1.62143, 1.67146, 1.90663, 5.24706, -1.73604, 7.40408, -1.62143, -1.00576, -8.97503, 0, 1.84386, -1.95995, 1.62143, 0.239033, -0.501928}, {1.31177, 1.51867, -0.224605, 4.12325e-16, 3.97586, 0.54439, -1.31177, -0.0269554, -1.36103, 2.74179e-16, -0.166427, 1.7671, -6.86849, -6.31371, 1.40035, 6.86849, 1.77928, 7.35076, -1.56634e-16, -1.84386, 1.95995, -1.62143, -1.67146, -1.90663, -1.26573e-15, 2.50957, -9.02835, 1.62143, 0.239033, -0.501928}, {1.31177, 1.51867, -0.224605, 0, -1.32529, -0.181463, 3.9353, 0.0808662, 4.08309, 0, -0.166427, 1.7671, -1.62143, -0.239033, 0.501928, 1.62143, 6.97261, 2.63248, -5.24706, -7.91853, 2.85837, -1.62143, -1.67146, -1.90663, 0, 1.84386, -1.95995, 1.62143, 0.90474, -7.57033}, {1.31177, 1.51867, -0.224605, 0, -1.32529, -0.181463, -1.31177, -0.0269554, -1.36103, 0, 0.49928, -5.3013, -1.62143, -0.239033, 0.501928, 1.62143, 1.67146, 1.90663, -3.2565e-16, -1.84386, 1.95995, -6.86849, -7.74614, -1.00821, 0, 7.14501, -1.2341, 6.86849, 0.346855, 4.9422}, {4.62937, -1.83228, -3.04567, 1.74185, 1.32981, 2.03815, 0, 0, -2.39759, -0.198723, -1.94057, -0.655786, -7.21302, -7.71791, -11.9268, -2.15304, -1.64373, 0.444288, 1.90741, -0.754941, 11.2991, 2.94793, 9.40601, 2.17885, -1.90741, 0.754941, -1.7087, 0.245635, 2.39867, 3.77418}, {-1.54312, 0.61076, 1.01522, -5.22554, -3.98943, -6.11446, 0, 0, -2.39759, -0.198723, -1.94057, -0.655786, 5.92686, -4.84171, -7.83507, -2.15304, -1.64373, 10.0346, 1.90741, -0.754941, 1.7087, 2.15304, 1.64373, -0.444288, -1.11252, 8.51722, 0.914444, 0.245635, 2.39867, 3.77418}, {-1.54312, 0.61076, 1.01522, 1.74185, 1.32981, 2.03815, 0, 0, 7.19277, -0.198723, -1.94057, -0.655786, -0.245635, -2.39867, -3.77418, -9.12042, -6.96297, -7.70832, 8.0799, -3.19798, -2.35219, 2.15304, 1.64373, -0.444288, -1.90741, 0.754941, -1.7087, 1.04052, 10.1609, 6.39732}, {-1.54312, 0.61076, 1.01522, 1.74185, 1.32981, 2.03815, 0, 0, -2.39759, 0.596168, 5.82171, 1.96736, -0.245635, -2.39867, -3.77418, -2.15304, -1.64373, 0.444288, 1.90741, -0.754941, 1.7087, 8.32553, -0.799305, -4.50518, -8.87479, -4.5643, -9.86131, 0.245635, 2.39867, 13.3645}, {0.513102, -3.87755, 0, 0.57474, -0.851464, -1.31177, -1.67772, -0.393466, -9.15774e-16, 1.27402, -0.0475867, 1.31177, -2.79797, 2.86069, 6.86849, 1.36336, 1.53882, 1.62143, 8.99608, 0.462577, 4.66294e-15, -6.45943, -1.34847, -6.86849, -2.28519, 1.11129, -1.11022e-15, 0.499008, 0.545171, -1.62143}, {-0.171034, 1.29252, -2.22045e-16, -1.72422, 2.55439, 3.9353, -1.67772, -0.393466, -8.14021e-16, 1.27402, -0.0475867, 1.31177, 0.185129, -5.71524, 1.62143, 8.07425, 3.11268, 1.62143, 2.28519, -1.11129, 1.33227e-15, -1.36336, -1.53882, -1.62143, -7.38126, 1.30164, -5.24706, 0.499008, 0.545171, -1.62143}, {-0.171034, 1.29252, 4.44089e-16, 0.57474, -0.851464, -1.31177, 5.03317, 1.1804, 1.22103e-15, 1.27402, -0.0475867, 1.31177, -0.499008, -0.545171, 1.62143, -0.935598, 4.94468, 6.86849, 2.96933, -6.28136, -1.77636e-15, -1.36336, -1.53882, -1.62143, -2.28519, 1.11129, 0, -4.59706, 0.735518, -6.86849}, {-0.171034, 1.29252, 0, 0.57474, -0.851464, -1.31177, -1.67772, -0.393466, 5.5964e-16, -3.82205, 0.14276, -3.9353, -0.499008, -0.545171, 1.62143, 1.36336, 1.53882, 1.62143, 2.28519, -1.11129, -8.88178e-16, -0.679225, -6.70889, -1.62143, -4.58415, 4.51715, 5.24706, 7.2099, 2.11904, -1.62143}, {3.99239, 5.22128, -5.22376, -4.19346e-16, -1.90927e-15, 2.34313, -0.609885, 1.54187, -1.54513, 1.94068, 0.198561, -2.53925, 1.64495, 2.15129, -14.4211, 0.75386, -1.90585, -0.986372, 4.83836, -5.92203, 5.93812, -8.51658, 1.11161, 11.1434, -2.39881, -0.245434, 0.242418, -1.64495, -2.15129, 5.04857}, {-1.3308, -1.74043, 1.74125, -4.45091e-15, 2.34416e-15, -7.02938, -0.609885, 1.54187, -1.54513, 1.94068, 0.198561, -2.53925, 6.96814, 9.11299, -12.0136, 3.1934, -8.07331, 5.19416, 2.39881, 0.245434, -0.242418, -0.75386, 1.90585, 0.986372, -10.1615, -1.03968, 10.3994, -1.64495, -2.15129, 5.04857}, {-1.3308, -1.74043, 1.74125, 0, 0, 2.34313, 1.82966, -4.6256, 4.6354, 1.94068, 0.198561, -2.53925, 1.64495, 2.15129, -5.04857, 0.75386, -1.90585, -10.3589, 7.722, 7.20714, -7.20743, -0.75386, 1.90585, 0.986372, -2.39881, -0.245434, 0.242418, -9.40768, -2.94553, 15.2056}, {-1.3308, -1.74043, 1.74125, -1.12887e-15, -1.155e-16, 2.34313, -0.609885, 1.54187, -1.54513, -5.82204, -0.595682, 7.61774, 1.64495, 2.15129, -5.04857, 0.75386, -1.90585, -0.986372, 2.39881, 0.245434, -0.242418, 4.56932, 8.86756, -5.97864, -2.39881, -0.245434, -9.13008, 0.794587, -8.31875, 11.2291}, {5.36656, -5.36656, -5.3681, 1.78885, 1.36261, 1.3621, 0, 0, -3.15147, 0, -3.15147, 0, -7.15542, -9.34589, -9.34384, -2.21115, -1.68428, 2.21178, 2.21115, -2.21115, 14.2895, 2.21115, 14.2902, -2.21178, -2.21115, 2.21115, -1.68365, 0, 3.89543, 3.89543}, {-1.78885, 1.78885, 1.78937, -5.36656, -4.08784, -4.08631, 0, 0, -3.15147, 0, -3.15147, 0, 7.15542, -11.0508, -11.0529, -2.21115, -1.68428, 14.8177, 2.21115, -2.21115, 1.68365, 2.21115, 1.68428, -2.21178, -2.21115, 14.817, -1.68365, 0, 3.89543, 3.89543}, {-1.78885, 1.78885, 1.78937, 1.78885, 1.36261, 1.3621, 0, 0, 9.45441, 0, -3.15147, 0, 4.44089e-16, -3.89543, -3.89543, -9.36656, -7.13474, -3.23663, 9.36656, -9.36656, -5.47381, 2.21115, 1.68428, -2.21178, -2.21115, 2.21115, -1.68365, 0, 16.5013, 3.89543}, {-1.78885, 1.78885, 1.78937, 1.78885, 1.36261, 1.3621, 0, 0, -3.15147, 0, 9.45441, 0, 4.44089e-16, -3.89543, -3.89543, -2.21115, -1.68428, 2.21178, 2.21115, -2.21115, 1.68365, 9.36656, -5.47113, -9.36924, -9.36656, -3.23931, -7.13206, 0, 3.89543, 16.5013}, {-4.72653, -4.72788, -4.72653, 1.57551, -1.57551, -1.57596, -1.57551, 1.57551, -1.57551, -1.57551, -1.57596, 1.57596, -10.1969, 6.30148, 6.30439, -1.73195e-14, 1.73195e-14, 3.89543, 6.30204, -10.1975, 6.30204, 6.30204, 6.30384, -10.1993, 2.1394e-12, 3.89543, -2.14051e-12, 3.89487, 0.000556765, -0.000556765}, {1.57551, 1.57596, 1.57551, -4.72653, 4.72653, 4.72788, -1.57551, 1.57551, -1.57551, -1.57551, -1.57596, 1.57596, -10.1969, -6.30439, -6.30148, 6.30204, -6.30204, 10.1975, -2.13851e-12, -3.89543, 2.13829e-12, 1.42638e-14, -1.48241e-14, -3.89543, 6.30204, 10.1993, -6.30384, 3.89487, 0.000556765, -0.000556765}, {1.57551, 1.57596, 1.57551, 1.57551, -1.57551, -1.57596, 4.72653, -4.72653, 4.72653, -1.57551, -1.57596, 1.57596, -3.89487, -0.000556765, 0.000556765, -6.30204, 6.30204, 10.1993, -6.30204, -10.1993, -6.30204, 1.62622e-14, -1.72666e-14, -3.89543, 2.14029e-12, 3.89543, -2.14007e-12, 10.1969, 6.30439, -6.30439}, {1.57551, 1.57596, 1.57551, 1.57551, -1.57551, -1.57596, -1.57551, 1.57551, -1.57551, 4.72653, 4.72788, -4.72788, -3.89487, -0.000556765, 0.000556765, -1.70974e-14, 1.68754e-14, 3.89543, -2.14206e-12, -3.89543, 2.1414e-12, -6.30204, -6.30384, -10.1975, -6.30204, 10.1975, 6.30384, 10.1969, -6.30148, 6.30148}, {3.23101, 1.27881, 3.23101, -1.12016, -2.46258, 1.22297, 0.799503, 2.33566, 0.799503, 1.39766, 0.553185, -0.945467, 7.19648, 13.4211, -5.07228, 0.396353, 0.156874, -2.49991, -2.85501, -11.7028, -2.85501, -5.98699, -2.36962, 6.28178, -0.343007, 2.36014, -0.343007, -2.71584, -3.57081, 0.180421}, {-1.077, -0.426271, -1.077, 3.36048, 7.38773, -3.6689, 0.799503, 2.33566, 0.799503, 1.39766, 0.553185, -0.945467, 7.02385, 5.2759, 4.12759, -2.80166, -9.18577, -5.69792, 0.343007, -2.36014, 0.343007, -0.396353, -0.156874, 2.49991, -5.93364, 0.147394, 3.43886, -2.71584, -3.57081, 0.180421}, {-1.077, -0.426271, -1.077, -1.12016, -2.46258, 1.22297, -2.39851, -7.00698, -2.39851, 1.39766, 0.553185, -0.945467, 2.71584, 3.57081, -0.180421, 4.87699, 10.0072, -7.39177, 4.65101, -0.65505, 4.65101, -0.396353, -0.156874, 2.49991, -0.343007, 2.36014, -0.343007, -8.30647, -5.78355, 3.96229}, {-1.077, -0.426271, -1.077, -1.12016, -2.46258, 1.22297, 0.799503, 2.33566, 0.799503, -4.19298, -1.65956, 2.8364, 2.71584, 3.57081, -0.180421, 0.396353, 0.156874, -2.49991, 0.343007, -2.36014, 0.343007, 3.91165, 1.54821, 6.80792, 4.13763, 12.2104, -5.23487, -5.91385, -12.9135, -3.01759}, {-3.9353, 2.63698, 1.65871, 7.60332e-17, 1.28613, 0.176102, -3.18404e-16, -0.456132, 1.72743, -1.31177, 0.0489967, -1.35063, -1.62143, -5.64776, -0.238656, 2.99587e-16, -1.02593, -2.3529, -1.62143, 3.47483, -8.36153, 5.24706, 0.829946, 7.75543, 1.62143, -1.65031, 1.4518, 1.62143, 0.503247, -0.465751}, {1.31177, -0.878994, -0.552902, 8.56342e-16, -3.85839, -0.528305, 3.92674e-16, -0.456132, 1.72743, -1.31177, 0.0489967, -1.35063, -6.86849, 3.01273, 2.67736, -1.70324e-15, 0.798596, -9.26263, -1.62143, 1.65031, -1.4518, -1.93111e-16, 1.02593, 2.3529, 6.86849, -1.84629, 6.85433, 1.62143, 0.503247, -0.465751}, {1.31177, -0.878994, -0.552902, -5.33523e-16, 1.28613, 0.176102, 2.92961e-15, 1.3684, -5.1823, -1.31177, 0.0489967, -1.35063, -1.62143, -0.503247, 0.465751, 4.00063e-15, -6.17045, -3.0573, -6.86849, 5.16628, 0.75981, -2.19219e-15, 1.02593, 2.3529, 1.62143, -1.65031, 1.4518, 6.86849, 0.30726, 4.93678}, {1.31177, -0.878994, -0.552902, 7.60332e-17, 1.28613, 0.176102, -3.18404e-16, -0.456132, 1.72743, 3.9353, -0.14699, 4.0519, -1.62143, -0.503247, 0.465751, 2.99587e-16, -1.02593, -2.3529, -1.62143, 1.65031, -1.4518, -5.24706, 4.54191, 4.56451, 1.62143, -6.79482, 0.747392, 1.62143, 2.32778, -7.37548}, {0.56235, 5.36656, -5.36656, -1.24953, 3.64699, -0.373467, -0.986118, -1.85814, -1.41539, 2.4231, 0, 0, 6.77433, -16.8847, -0.255645, 2.76341, -2.21115, 2.21115, 5.39508, 11.9405, 5.19992, -12.4558, 2.21115, -2.21115, -1.45061, -4.50793, 0.461631, -1.77621, 2.29678, 1.74951}, {-0.18745, -1.78885, 1.78885, 3.74859, -10.941, 1.1204, -0.986118, -1.85814, -1.41539, 2.4231, 1.11775e-15, 8.51416e-16, 2.52601, 4.85864, -8.90493, 6.70789, 5.2214, 7.87269, 1.45061, 4.50793, -0.461631, -2.76341, 2.21115, -2.21115, -11.143, -4.50793, 0.461631, -1.77621, 2.29678, 1.74951}, {-0.18745, -1.78885, 1.78885, -1.24953, 3.64699, -0.373467, 2.95835, 5.57441, 4.24616, 2.4231, 0, 0, 1.77621, -2.29678, -1.74951, 7.76154, -16.7991, 3.70501, 2.20041, 11.6633, -7.61705, -2.76341, 2.21115, -2.21115, -1.45061, -4.50793, 0.461631, -11.4686, 2.29678, 1.74951}, {-0.18745, -1.78885, 1.78885, -1.24953, 3.64699, -0.373467, -0.986118, -1.85814, -1.41539, -7.2693, 0, 0, 1.77621, -2.29678, -1.74951, 2.76341, -2.21115, 2.21115, 1.45061, 4.50793, -0.461631, -2.01361, 9.36656, -9.36656, 3.54752, -19.0959, 1.9555, 2.16826, 9.72932, 7.41106}, {4.72585, 4.7272, 4.7272, -1.63629, -1.63676, 1.63676, -1.57573, 1.57528, 1.57528, 4.78731, 1.63721, -1.63631, 10.5149, 10.5179, -6.62248, 3.97028, 0.0759901, -3.97031, 10.1978, -6.30058, -6.30058, -23.1195, -6.62484, 10.5155, -3.89487, -0.000556685, -0.000556685, -3.96973, -3.97086, 0.0754336}, {-1.57528, -1.57573, -1.57573, 4.90888, 4.91028, -4.91028, -1.57573, 1.57528, 1.57528, 4.78731, 1.63721, -1.63631, 10.2709, 10.2738, 6.2275, 10.2732, -6.22515, -10.2714, 3.89487, 0.000556685, 0.000556685, -3.97028, -0.0759901, 3.97031, -23.0441, -6.5494, 6.54469, -3.96973, -3.97086, 0.0754336}, {-1.57528, -1.57573, -1.57573, -1.63629, -1.63676, 1.63676, 4.7272, -4.72585, -4.72585, 4.78731, 1.63721, -1.63631, 3.96973, 3.97086, -0.0754336, 10.5155, 6.62303, -10.5174, 10.196, 6.30349, 6.30349, -3.97028, -0.0759901, 3.97031, -3.89487, -0.000556685, -0.000556685, -23.119, -10.5197, 6.62068}, {-1.57528, -1.57573, -1.57573, -1.63629, -1.63676, 1.63676, -1.57573, 1.57528, 1.57528, -14.3619, -4.91163, 4.90893, 3.96973, 3.97086, -0.0754336, 3.97028, 0.0759901, -3.97031, 3.89487, 0.000556685, 0.000556685, 2.33085, 6.22695, 10.2732, 2.6503, 6.54649, -6.5476, 2.33321, -10.272, -6.2257}, {-2.40635, 2.40855, -2.40993, -1.57388, -1.57525, -1.57621, 3.20871, 3.21151, -0.0600473, -2.43695, -0.833412, 0.832954, 7.24946, 9.24051, 7.26022, -2.02076, -2.02253, 2.02253, -17.7925, -15.8233, -0.678532, 11.7686, 5.35618, -5.35435, 4.95766, 2.97727, 0.918721, -0.953948, -2.9395, -0.955365}, {0.802117, -0.80285, 0.803308, 4.72163, 4.72576, 4.72864, 3.20871, 3.21151, -0.0600473, -2.43695, -0.833412, 0.832954, -2.25452, 6.1509, -2.25787, -14.8556, -14.8686, 2.26272, -4.95766, -2.97727, -0.918721, 2.02076, 2.02253, -2.02253, 14.7055, 6.31092, -2.41309, -0.953948, -2.9395, -0.955365}, {0.802117, -0.80285, 0.803308, -1.57388, -1.57525, -1.57621, -9.62613, -9.63454, 0.180142, -2.43695, -0.833412, 0.832954, 0.953948, 2.9395, 0.955365, 4.27475, 4.27848, 8.32739, -8.16613, 0.234124, -4.13196, 2.02076, 2.02253, -2.02253, 4.95766, 2.97727, 0.918721, 8.79385, 0.394151, -4.28718}, {0.802117, -0.80285, 0.803308, -1.57388, -1.57525, -1.57621, 3.20871, 3.21151, -0.0600473, 7.31085, 2.50024, -2.49886, 0.953948, 2.9395, 0.955365, -2.02076, -2.02253, 2.02253, -4.95766, -2.97727, -0.918721, -1.18771, 5.23393, -5.23576, 11.2532, 9.27829, 7.22358, -13.7888, -15.7856, -0.715176}, {5.36291, -5.36781, 5.37088, 0, -3.15057, 0, -1.85687, -1.41402, 1.41389, 3.64451, 2.77532, 0.376399, 2.20964, 14.2849, 2.21292, 2.29522, 5.64214, -1.74767, 11.9323, 5.19225, -5.19032, -16.8733, -16.7434, 0.242074, -4.50486, 0.463834, -0.465254, -2.20964, -1.68266, -2.21292}, {-1.78764, 1.78927, -1.79029, 0, 9.4517, 0, -1.85687, -1.41402, 1.41389, 3.64451, 2.77532, 0.376399, 9.36019, -5.47442, 9.37409, 9.72271, 11.2982, -7.40324, 4.50486, -0.463834, 0.465254, -2.29522, -5.64214, 1.74767, -19.0829, -10.6374, -1.97085, -2.20964, -1.68266, -2.21292}, {-1.78764, 1.78927, -1.79029, 0, -3.15057, 0, 5.57061, 4.24206, -4.24168, 3.64451, 2.77532, 0.376399, 2.20964, 1.68266, 2.21292, 2.29522, 18.2444, -1.74767, 11.6554, -7.62091, 7.62642, -2.29522, -5.64214, 1.74767, -4.50486, 0.463834, -0.465254, -16.7877, -12.7839, -3.71852}, {-1.78764, 1.78927, -1.79029, 0, -3.15057, 0, -1.85687, -1.41402, 1.41389, -10.9335, -8.32596, -1.1292, 2.20964, 1.68266, 2.21292, 2.29522, 5.64214, -1.74767, 4.50486, -0.463834, 0.465254, 4.85533, -12.7992, 8.90884, -4.50486, 13.0661, -0.465254, 5.21784, 3.97342, -7.8685}, {-3.12618, -1.69082, 4.8169, -0.776768, 0.776768, 1.71093, 1.29482, -1.29482, 0.513906, -1.56011, -0.0455553, -0.619199, 2.77915, -4.76387, -6.97386, -0.640348, 0.640348, -2.75005, -8.06782, 6.08311, -0.706171, 6.8808, -0.458127, 5.22684, 2.88854, -0.903828, -1.34945, 0.32792, 1.6568, 0.130149}, {1.04206, 0.563608, -1.60563, 2.3303, -2.3303, -5.13278, 1.29482, -1.29482, 0.513906, -1.56011, -0.0455553, -0.619199, -4.49616, -3.91123, 6.29239, -5.81963, 5.81963, -4.80567, -2.88854, 0.903828, 1.34945, 0.640348, -0.640348, 2.75005, 9.12899, -0.721607, 1.12734, 0.32792, 1.6568, 0.130149}, {1.04206, 0.563608, -1.60563, -0.776768, 0.776768, 1.71093, -3.88446, 3.88446, -1.54172, -1.56011, -0.0455553, -0.619199, -0.32792, -1.6568, -0.130149, 2.46672, -2.46672, -9.59376, -7.05678, -1.3506, 7.77199, 0.640348, -0.640348, 2.75005, 2.88854, -0.903828, -1.34945, 6.56837, 1.83902, 2.60694}, {1.04206, 0.563608, -1.60563, -0.776768, 0.776768, 1.71093, 1.29482, -1.29482, 0.513906, 4.68034, 0.136666, 1.8576, -0.32792, -1.6568, -0.130149, -0.640348, 0.640348, -2.75005, -2.88854, 0.903828, 1.34945, -3.52789, -2.89478, 9.17259, 5.99561, -4.0109, -8.19316, -4.85136, 6.83608, -1.92547}, {0, 4.18682, -1.69558, 0, 0.106442, -1.13019, 1.31177, 1.47434, 0.246037, -1.31177, -0.185178, 0.318964, 0, 1.16773, 5.21915, -1.62143, -1.95396, 1.09288, -6.86849, -5.9947, -1.98688, 6.86849, 2.69467, -2.36873, 1.62143, 0.0973232, 1.00273, 0, -1.5935, -0.69838}, {6.66134e-16, -1.39561, 0.565192, -4.14281e-16, -0.319327, 3.39058, 1.31177, 1.47434, 0.246037, -1.31177, -0.185178, 0.318964, -3.55271e-15, 7.17592, -1.56239, -6.86849, -7.85133, 0.108727, -1.62143, -0.0973232, -1.00273, 1.62143, 1.95396, -1.09288, 6.86849, 0.838037, -0.273122, 1.11022e-15, -1.5935, -0.69838}, {6.66134e-16, -1.39561, 0.565192, -3.97019e-16, 0.106442, -1.13019, -3.9353, -4.42303, -0.738112, -1.31177, -0.185178, 0.318964, -2.22045e-16, 1.5935, 0.69838, -1.62143, -2.37973, 5.61365, -1.62143, 5.48511, -3.2635, 1.62143, 1.95396, -1.09288, 1.62143, 0.0973232, 1.00273, 5.24706, -0.852781, -1.97424}, {-2.22045e-16, -1.39561, 0.565192, 3.45234e-17, 0.106442, -1.13019, 1.31177, 1.47434, 0.246037, 3.9353, 0.555535, -0.956892, 2.22045e-16, 1.5935, 0.69838, -1.62143, -1.95396, 1.09288, -1.62143, -0.0973232, -1.00273, 1.62143, 7.53639, -3.35364, 1.62143, -0.328446, 5.52351, -5.24706, -7.49087, -1.68253}, {3.02999, -1.83569, -4.62902, -2.0783, 1.32959, -1.74182, 0.665193, -1.94149, 0.198817, 2.4231, 0, 0, 12.1305, -7.71818, 7.21305, 1.74669, 0.756347, 1.90726, -2.23457, 9.40942, -2.94828, -11.4391, -0.756347, -1.90726, -0.4262, -1.64347, 2.15301, -3.81734, 2.39981, -0.245751}, {-1.01, 0.611898, 1.54301, 6.23489, -3.98877, 5.22547, 0.665193, -1.94149, 0.198817, 2.4231, 1.16789e-15, -1.19597e-16, 7.85732, -4.8474, -5.92628, -0.91408, 8.5223, 1.11199, 0.4262, 1.64347, -2.15301, -1.74669, -0.756347, -1.90726, -10.1186, -1.64347, 2.15301, -3.81734, 2.39981, -0.245751}, {-1.01, 0.611898, 1.54301, -2.0783, 1.32959, -1.74182, -1.99558, 5.82447, -0.59645, 2.4231, 0, 0, 3.81734, -2.39981, 0.245751, 10.0599, -4.56202, 8.87456, 4.46618, -0.804126, -8.32504, -1.74669, -0.756347, -1.90726, -0.4262, -1.64347, 2.15301, -13.5097, 2.39981, -0.245751}, {-1.01, 0.611898, 1.54301, -2.0783, 1.32959, -1.74182, 0.665193, -1.94149, 0.198817, -7.2693, 0, 0, 3.81734, -2.39981, 0.245751, 1.74669, 0.756347, 1.90726, 0.4262, 1.64347, -2.15301, 2.29329, -3.20394, -8.07929, 7.88699, -6.96183, 9.12031, -6.47811, 10.1658, -1.04102}, {-1.1204, -10.941, -3.69733, -1.78885, -1.78885, 0.204309, 1.41539, -1.85814, 0.960835, 0, 0, -2.39759, 8.90493, 4.85864, -2.59316, 0.461631, 4.50793, -1.4402, -7.87269, 5.2214, -6.55438, -0.461631, -4.50793, 11.0306, 2.21115, 2.21115, 2.71104, -1.74951, 2.29678, 1.77593}, {0.373467, 3.64699, 1.23244, 5.36656, 5.36656, -0.612928, 1.41539, -1.85814, 0.960835, 0, 0, -2.39759, 0.255645, -16.8847, -6.70571, -5.19992, 11.9405, -5.28354, -2.21115, -2.21115, -2.71104, -0.461631, -4.50793, 1.4402, 2.21115, 2.21115, 12.3014, -1.74951, 2.29678, 1.77593}, {0.373467, 3.64699, 1.23244, -1.78885, -1.78885, 0.204309, -4.24616, 5.57441, -2.88251, 0, 0, -2.39759, 1.74951, -2.29678, -1.77593, 7.61705, 11.6633, -2.25744, -3.70501, -16.7991, -7.64082, -0.461631, -4.50793, 1.4402, 2.21115, 2.21115, 2.71104, -1.74951, 2.29678, 11.3663}, {0.373467, 3.64699, 1.23244, -1.78885, -1.78885, 0.204309, 1.41539, -1.85814, 0.960835, 0, 0, 7.19277, 1.74951, -2.29678, -1.77593, 0.461631, 4.50793, -1.4402, -2.21115, -2.21115, -2.71104, -1.9555, -19.0959, -3.48958, 9.36656, 9.36656, 1.89381, -7.41106, 9.72932, -2.06741}, {3.67635, 0.128375, 3.75827, 1.3465, -0.311871, 0.167791, -0.0738998, -1.11087, 1.10252, -0.0471455, 1.46553, -0.0175582, -5.53561, 1.68587, 0.669927, -1.57302, 1.7586, -1.5702, 1.90169, 5.86948, -4.2244, 1.7616, -7.62073, 1.64043, -1.60609, -1.426, -0.185698, 0.14962, -0.438387, -1.34109}, {-1.22545, -0.0427917, -1.25276, -4.03949, 0.935613, -0.503374, -0.0738998, -1.11087, 1.10252, -0.0471455, 1.46553, -0.0175582, 4.75218, 0.609554, 6.35212, -1.27742, 6.20208, -5.98029, 1.60609, 1.426, 0.185698, 1.57302, -1.7586, 1.5702, -1.4175, -7.28813, -0.115465, 0.14962, -0.438387, -1.34109}, {-1.22545, -0.0427917, -1.25276, 1.3465, -0.311871, 0.167791, 0.221699, 3.33261, -3.30757, -0.0471455, 1.46553, -0.0175582, -0.14962, 0.438387, 1.34109, -6.959, 3.00609, -2.24136, 6.50789, 1.59717, 5.19673, 1.57302, -1.7586, 1.5702, -1.60609, -1.426, -0.185698, 0.338202, -6.30052, -1.27086}, {-1.22545, -0.0427917, -1.25276, 1.3465, -0.311871, 0.167791, -0.0738998, -1.11087, 1.10252, 0.141437, -4.3966, 0.0526746, -0.14962, 0.438387, 1.34109, -1.57302, 1.7586, -1.5702, 1.60609, 1.426, 0.185698, 6.47482, -1.58744, 6.58122, -6.99207, -0.17852, -0.856863, 0.445219, 4.00509, -5.75119}, {3.98391, -5.22497, -0.407969, -0.61239, -1.54296, -1.54296, -3.86726e-16, 3.96024e-17, 1.60567, 1.94036, -0.198701, -0.198701, 4.84797, 5.92622, 7.91093, 0.756955, 1.9072, -0.0775154, 1.64146, -2.15281, -8.57548, -8.51839, -1.1124, 0.87232, -1.64146, 2.15281, 2.15281, -2.39842, 0.245608, -1.73911}, {-1.32797, 1.74166, 0.13599, 1.83717, 4.62887, 4.62887, -1.16018e-15, 1.18807e-16, 1.60567, 1.94036, -0.198701, -0.198701, 7.71029, -7.21224, 1.19515, 0.756955, 1.9072, -6.50019, 1.64146, -2.15281, -2.15281, -0.756955, -1.9072, 0.0775154, -9.4029, 2.94761, 2.94761, -2.39842, 0.245608, -1.73911}, {-1.32797, 1.74166, 0.13599, -0.61239, -1.54296, -1.54296, 0, 0, -4.817, 1.94036, -0.198701, -0.198701, 2.39842, -0.245608, 1.73911, 3.20651, 8.07903, 6.09431, 6.95334, -9.11944, -2.69677, -0.756955, -1.9072, 0.0775154, -1.64146, 2.15281, 2.15281, -10.1599, 1.04041, -0.944303}, {-1.32797, 1.74166, 0.13599, -0.61239, -1.54296, -1.54296, 1.16018e-15, -1.18807e-16, 1.60567, -5.82108, 0.596103, 0.596103, 2.39842, -0.245608, 1.73911, 0.756955, 1.9072, -0.0775154, 1.64146, -2.15281, -2.15281, 4.55492, -8.87383, -0.466443, 0.808098, 8.32463, 8.32463, -2.39842, 0.245608, -8.16178}, {4.24495, 4.24616, 5.57441, 2.77721, -0.373467, 3.64699, -3.15057, 0, 0, 1.78834, 1.78885, -1.78885, -12.7926, 3.70501, -16.7991, 0.461499, 0.461631, -4.50793, 18.2456, 1.74951, 2.29678, -7.61487, -7.61705, 11.6633, -5.64333, -1.74951, -2.29678, 1.6838, -2.21115, 2.21115}, {-1.41498, -1.41539, -1.85814, -8.33162, 1.1204, -10.941, -3.15057, 0, 0, 1.78834, 1.78885, -1.78885, 3.97613, 7.87269, 5.2214, 13.0638, 0.461631, -4.50793, 5.64333, 1.74951, 2.29678, -0.461499, -0.461631, 4.50793, -12.7967, -8.90493, 4.85864, 1.6838, -2.21115, 2.21115}, {-1.41498, -1.41539, -1.85814, 2.77721, -0.373467, 3.64699, 9.4517, 0, 0, 1.78834, 1.78885, -1.78885, -1.6838, 2.21115, -2.21115, -10.6473, 1.9555, -19.0959, 11.3033, 7.41106, 9.72932, -0.461499, -0.461631, 4.50793, -5.64333, -1.74951, -2.29678, -5.46957, -9.36656, 9.36656}, {-1.41498, -1.41539, -1.85814, 2.77721, -0.373467, 3.64699, -3.15057, 0, 0, -5.36503, -5.36656, 5.36656, -1.6838, 2.21115, -2.21115, 0.461499, 0.461631, -4.50793, 5.64333, 1.74951, 2.29678, 5.19843, 5.19992, 11.9405, -16.7522, -0.255645, -16.8847, 14.2861, -2.21115, 2.21115}, {-5.69487, -2.66454e-15, -8.88178e-16, -0.76309, -0.00636856, -2.01559, -0.460311, 1.45577, 1.44144, -0.67489, -1.4494, 0.574147, 1.64917, 0.0333462, 10.5538, 1.51221, -1.79156, 0.709685, 0.063805, -7.62252, -7.54749, 1.18735, 7.58918, -3.00627, 1.77744, 1.79943, 1.78172, 1.40319, -0.00787198, -2.49141}, {1.89829, -1.55431e-15, 3.33067e-16, 2.28927, 0.0191057, 6.04677, -0.460311, 1.45577, 1.44144, -0.67489, -1.4494, 0.574147, -8.99635, 0.00787198, 2.49141, 3.35345, -7.61465, -5.05609, -1.77744, -1.79943, -1.78172, -1.51221, 1.79156, -0.709685, 4.477, 7.59705, -0.514866, 1.40319, -0.00787198, -2.49141}, {1.89829, -1.9984e-15, -1.22125e-15, -0.76309, -0.00636856, -2.01559, 1.38093, -4.36732, -4.32433, -0.67489, -1.4494, 0.574147, -1.40319, 0.00787198, 2.49141, 4.56457, -1.76609, 8.77205, -9.3706, -1.79943, -1.78172, -1.51221, 1.79156, -0.709685, 1.77744, 1.79943, 1.78172, 4.10275, 5.78974, -4.78799}, {1.89829, 1.33227e-15, -5.55112e-16, -0.76309, -0.00636856, -2.01559, -0.460311, 1.45577, 1.44144, 2.02467, 4.34821, -1.72244, -1.40319, 0.00787198, 2.49141, 1.51221, -1.79156, 0.709685, -1.77744, -1.79943, -1.78172, -9.10537, 1.79156, -0.709685, 4.8298, 1.82491, 9.84408, 3.24443, -5.83096, -8.25718}, {-1.1204, -4.37783, -10.941, 1.41539, 0.69601, -1.85814, -1.78885, 0.0170635, -1.78885, 0, -2.17235, 0, -7.87269, -5.44812, 5.2214, 0.461631, -0.881407, 4.50793, 8.90493, -1.89311, 4.85864, -0.461631, 9.57081, -4.50793, -1.74951, 1.82486, 2.29678, 2.21115, 2.66408, 2.21115}, {0.373467, 1.45928, 3.64699, -4.24616, -2.08803, 5.57441, -1.78885, 0.0170635, -1.78885, 0, -2.17235, 0, -3.70501, -8.50119, -16.7991, 7.61705, -0.949661, 11.6633, 1.74951, -1.82486, -2.29678, -0.461631, 0.881407, -4.50793, -1.74951, 10.5143, 2.29678, 2.21115, 2.66408, 2.21115}, {0.373467, 1.45928, 3.64699, 1.41539, 0.69601, -1.85814, 5.36656, -0.0511904, 5.36656, 0, -2.17235, 0, -2.21115, -2.66408, -2.21115, -5.19992, -3.66545, 11.9405, 0.255645, -7.66197, -16.8847, -0.461631, 0.881407, -4.50793, -1.74951, 1.82486, 2.29678, 2.21115, 11.3535, 2.21115}, {0.373467, 1.45928, 3.64699, 1.41539, 0.69601, -1.85814, -1.78885, 0.0170635, -1.78885, 0, 6.51705, 0, -2.21115, -2.66408, -2.21115, 0.461631, -0.881407, 4.50793, 1.74951, -1.82486, -2.29678, -1.9555, -4.9557, -19.0959, -7.41106, -0.959181, 9.72932, 9.36656, 2.59583, 9.36656}, {-4.15743, -0.83732, 1.25624, -1.32462, -1.53355, 0.226806, 0.107516, 1.61619, -1.60405, -0.168703, -0.361739, 1.79599, 5.22286, 7.6848, -0.669975, 1.50443, -0.10214, 1.70236, -2.27592, -8.80746, 8.91649, -0.829614, 1.5491, -8.88631, 1.84585, 2.34271, -2.50031, 0.0756322, -1.55058, -0.237251}, {1.38581, 0.279107, -0.418747, 3.97387, 4.60066, -0.680419, 0.107516, 1.61619, -1.60405, -0.168703, -0.361739, 1.79599, -5.61888, 0.434156, 1.91224, 1.07436, -6.56689, 8.11854, -1.84585, -2.34271, 2.50031, -1.50443, 0.10214, -1.70236, 2.52067, 3.78967, -9.68425, 0.0756322, -1.55058, -0.237251}, {1.38581, 0.279107, -0.418747, -1.32462, -1.53355, 0.226806, -0.322547, -4.84856, 4.81214, -0.168703, -0.361739, 1.79599, -0.0756322, 1.55058, 0.237251, 6.80292, 6.03208, 0.795135, -7.3891, -3.45914, 4.1753, -1.50443, 0.10214, -1.70236, 1.84585, 2.34271, -2.50031, 0.750446, -0.103625, -7.4212}, {1.38581, 0.279107, -0.418747, -1.32462, -1.53355, 0.226806, 0.107516, 1.61619, -1.60405, 0.50611, 1.08522, -5.38796, -0.0756322, 1.55058, 0.237251, 1.50443, -0.10214, 1.70236, -1.84585, -2.34271, 2.50031, -7.04767, -1.01429, -0.0273746, 7.14434, 8.47693, -3.40753, -0.354431, -8.01533, 6.17893}, {-9.45441, -1.42109e-14, 0, -1.78885, -1.78885, 1.78885, -1.36261, -1.36216, -1.78885, 0, 3.15102, 0, 5.47113, 9.36656, -9.36656, 3.89543, 3.89487, 0, 3.23931, 7.13238, 9.36656, -3.89543, -16.4989, 0, 2.21115, -1.68373, -2.21115, 1.68428, -2.21115, 2.21115}, {3.15147, 5.77316e-15, -1.39933e-15, 5.36656, 5.36656, -5.36656, -1.36261, -1.36216, -1.78885, 1.06591e-15, 3.15102, 1.39933e-15, -14.2902, 2.21115, -2.21115, 9.34589, 9.34353, 7.15542, -2.21115, 1.68373, 2.21115, -3.89543, -3.89487, 3.47389e-31, 2.21115, -14.2878, -2.21115, 1.68428, -2.21115, 2.21115}, {3.15147, 1.77636e-15, 2.66454e-15, -1.78885, -1.78885, 1.78885, 4.08784, 4.08649, 5.36656, 0, 3.15102, 0, -1.68428, 2.21115, -2.21115, 11.0508, 11.0503, -7.15542, -14.817, 1.68373, 2.21115, -3.89543, -3.89487, -3.55271e-15, 2.21115, -1.68373, -2.21115, 1.68428, -14.8152, 2.21115}, {3.15147, -2.66454e-15, 0, -1.78885, -1.78885, 1.78885, -1.36261, -1.36216, -1.78885, 0, -9.45305, 0, -1.68428, 2.21115, -2.21115, 3.89543, 3.89487, 0, -2.21115, 1.68373, 2.21115, -16.5013, -3.89487, 0, 9.36656, 5.47169, -9.36656, 7.13474, 3.23751, 9.36656}, {1.36235e-15, 1.07667, 3.62612, 1.31177, 0.0458057, 1.34099, -1.31177, -1.15409, -0.162924, 1.0026e-17, 1.46718, 0.0306378, -6.86849, 0.20377, -5.52749, -6.66134e-16, 1.36992, -1.45618, 6.86849, 6.48653, 2.34713, 6.2603e-16, -7.23863, 1.33362, -1.62143, -1.87015, -1.69543, 1.62143, -0.386993, 0.163515}, {-7.28501e-17, -0.358889, -1.20871, -3.9353, -0.137417, -4.02298, -1.31177, -1.15409, -0.162924, 1.18307e-15, 1.46718, 0.0306378, -1.62143, 1.82255, 4.67132, 5.24706, 5.9863, -0.804479, 1.62143, 1.87015, 1.69543, -1.55431e-15, -1.36992, 1.45618, -1.62143, -7.73886, -1.81798, 1.62143, -0.386993, 0.163515}, {5.92827e-17, -0.358889, -1.20871, 1.31177, 0.0458057, 1.34099, 3.9353, 3.46228, 0.488772, -9.47461e-16, 1.46718, 0.0306378, -1.62143, 0.386993, -0.163515, -5.24706, 1.1867, -6.82015, 1.62143, 3.30571, 6.53026, 1.11022e-15, -1.36992, 1.45618, -1.62143, -1.87015, -1.69543, 1.62143, -6.25571, 0.0409633}, {0, -0.358889, -1.20871, 1.31177, 0.0458057, 1.34099, -1.31177, -1.15409, -0.162924, 0, -4.40153, -0.0919135, -1.62143, 0.386993, -0.163515, 0, 1.36992, -1.45618, 1.62143, 1.87015, 1.69543, 0, 0.0656375, 6.29101, -6.86849, -2.05337, -7.05941, 6.86849, 4.22939, 0.815211}, {1.26288e-15, -3.55271e-15, -3.26126, -1.4431, -0.571101, -0.587405, 1.45561, -1.44292, 0.31363, -0.0125109, 2.01402, -0.813311, 7.55617, 2.99032, 1.73198, -0.0154644, 2.48947, 0.338405, -7.62167, 7.55524, -2.9859, 0.0655081, -10.5456, 2.91484, 1.79923, -1.78355, 1.73138, -1.78377, -0.70592, 0.61764}, {9.0726e-16, -4.44089e-16, 1.08709, 4.3293, 1.7133, 1.76222, 1.45561, -1.44292, 0.31363, -0.0125109, 2.01402, -0.813311, 1.78377, 0.70592, -4.96598, -5.83791, 8.26116, -0.916114, -1.79923, 1.78355, -1.73138, 0.0154644, -2.48947, -0.338405, 1.84928, -9.83965, 4.98462, -1.78377, -0.70592, 0.61764}, {4.63171e-16, 8.88178e-16, 1.08709, -1.4431, -0.571101, -0.587405, -4.36683, 4.32877, -0.940889, -0.0125109, 2.01402, -0.813311, 1.78377, 0.70592, -0.61764, 5.75693, 4.77387, 2.68803, -1.79923, 1.78355, -6.07972, 0.0154644, -2.48947, -0.338405, 1.79923, -1.78355, 1.73138, -1.73373, -8.76202, 3.87088}, {0, -4.44089e-16, 1.08709, -1.4431, -0.571101, -0.587405, 1.45561, -1.44292, 0.31363, 0.0375328, -6.04207, 2.43993, 1.78377, 0.70592, -0.61764, -0.0154644, 2.48947, 0.338405, -1.79923, 1.78355, -1.73138, 0.0154644, -2.48947, -4.68675, 7.57163, 0.500853, 4.081, -7.60621, 5.06577, -0.63688}, {2.18368e-11, -2.07612e-11, -5.36656, -2.34313, 0, 0, 2.34313, -2.34313, -1.78885, 0, 2.34313, 0, 12.2688, -8.55449e-12, -2.21115, -8.99725e-12, 2.89626, 2.21115, -12.2688, 12.2688, 7.15542, 8.99725e-12, -12.2688, -2.21115, 2.89626, -2.89626, 0, -2.89626, 8.55449e-12, 2.21115}, {-7.27948e-12, 6.92291e-12, 1.78885, 7.02938, 0, 0, 2.34313, -2.34313, -1.78885, -1.36297e-15, 2.34313, 1.04056e-15, 2.89626, -3.62483e-11, -9.36656, -9.3725, 12.2688, 9.36656, -2.89626, 2.89626, 8.4211e-16, 8.99947e-12, -2.89626, -2.21115, 2.89626, -12.2688, -5.44843e-15, -2.89626, 8.55715e-12, 2.21115}, {-7.27773e-12, 6.92024e-12, 1.78885, -2.34313, 0, 0, -7.02938, 7.02938, 5.36656, 0, 2.34313, 0, 2.89626, -8.55405e-12, -2.21115, 9.3725, 2.89626, 2.21115, -2.89626, 2.89626, -7.15542, 8.99636e-12, -2.89626, -2.21115, 2.89626, -2.89626, 0, -2.89626, -9.3725, 2.21115}, {-7.27951e-12, 6.9198e-12, 1.78885, -2.34313, 0, 0, 2.34313, -2.34313, -1.78885, 0, -7.02938, 0, 2.89626, -8.55316e-12, -2.21115, -8.99814e-12, 2.89626, 2.21115, -2.89626, 2.89626, -4.44089e-16, 3.81171e-11, -2.89626, -9.36656, 12.2688, -2.89626, 0, -12.2688, 9.3725, 9.36656}, {0, -2.67212e-17, 7.02938, 0, -2.34313, 0, -1.78885, 2.34313, 2.34566, 1.78885, 1.02081e-11, -0.00253498, 0, 12.2688, 2.89626, 2.21115, 1.26184e-11, -2.8994, 9.36656, -12.2688, -9.38578, -9.36656, -5.34508e-11, 2.90954, -2.21115, 2.89626, 0.00313341, 0, -2.89626, -2.89626}, {0, 3.72666e-16, -2.34313, 0, 7.02938, 0, -1.78885, 2.34313, 2.34566, 1.78885, 1.02097e-11, -0.00253498, 0, 2.89626, 12.2688, 9.36656, -9.3725, -12.282, 2.21115, -2.89626, -0.00313341, -2.21115, -1.26201e-11, 2.8994, -9.36656, 2.89626, 0.0132733, 0, -2.89626, -2.89626}, {0, -1.47432e-16, -2.34313, 0, -2.34313, 0, 5.36656, -7.02938, -7.03698, 1.78885, 1.02102e-11, -0.00253498, 0, 2.89626, 2.89626, 2.21115, 9.3725, -2.8994, 2.21115, -2.89626, 9.36937, -2.21115, -1.26201e-11, 2.8994, -2.21115, 2.89626, 0.00313341, -7.15542, -2.89626, -2.88612}, {-2.22045e-16, -3.98999e-17, -2.34313, 0, -2.34313, 0, -1.78885, 2.34313, 2.34566, -5.36656, -3.06329e-11, 0.00760494, 4.44089e-16, 2.89626, 2.89626, 2.21115, 1.26215e-11, -2.8994, 2.21115, -2.89626, -0.00313341, -2.21115, -1.26209e-11, 12.2719, -2.21115, 12.2688, 0.00313341, 7.15542, -12.2688, -12.2789}, {3.55271e-15, -9.45441, -2.66454e-14, 1.78885, -1.78885, -1.78885, -1.78885, -1.36261, -1.36261, 0, 0, 3.15147, -9.36656, 5.47113, 9.36656, -1.77636e-15, 3.89543, 3.89543, 9.36656, 3.23931, 7.13474, 1.77636e-15, -3.89543, -16.5013, -2.21115, 2.21115, -1.68428, 2.21115, 1.68428, -2.21115}, {3.76824e-16, 3.15147, -2.22045e-15, -5.36656, 5.36656, 5.36656, -1.78885, -1.36261, -1.36261, 1.39953e-15, 1.06606e-15, 3.15147, -2.21115, -14.2902, 2.21115, 7.15542, 9.34589, 9.34589, 2.21115, -2.21115, 1.68428, -2.22045e-15, -3.89543, -3.89543, -2.21115, 2.21115, -14.2902, 2.21115, 1.68428, -2.21115}, {0, 3.15147, -7.10543e-15, 1.78885, -1.78885, -1.78885, 5.36656, 4.08784, 4.08784, 0, 0, 3.15147, -2.21115, -1.68428, 2.21115, -7.15542, 11.0508, 11.0508, 2.21115, -14.817, 1.68428, 0, -3.89543, -3.89543, -2.21115, 2.21115, -1.68428, 2.21115, 1.68428, -14.817}, {-5.55112e-15, 3.15147, 4.44089e-16, 1.78885, -1.78885, -1.78885, -1.78885, -1.36261, -1.36261, 0, 0, -9.45441, -2.21115, -1.68428, 2.21115, -7.10543e-15, 3.89543, 3.89543, 2.21115, -2.21115, 1.68428, 3.01981e-14, -16.5013, -3.89543, -9.36656, 9.36656, 5.47113, 9.36656, 7.13474, 3.23931}, {-5.36656, 7.03835, 7.02938, -1.78885, -6.94208e-12, -7.11741e-12, 0, 2.34612, 2.72942e-15, 0, 0, 2.34313, 7.15542, 2.89996, 2.89626, 2.21115, -2.89996, 8.79423e-12, -2.21115, -9.38447, 2.89626, -2.21115, 2.89996, -9.3725, 2.21115, 8.58089e-12, -2.89626, 0, -2.89996, -2.89626}, {1.78885, -2.34612, -2.34313, 5.36656, 2.08278e-11, 2.13522e-11, 0, 2.34612, 1.36471e-15, 0, -1.36471e-15, 2.34313, -7.15542, 12.2844, 12.2688, 2.21115, -12.2844, 8.79045e-12, -2.21115, -8.58264e-12, 2.89626, -2.21115, 2.89996, -8.79533e-12, 2.21115, 8.58868e-12, -12.2688, 0, -2.89996, -2.89626}, {1.78885, -2.34612, -2.34313, -1.78885, -6.94417e-12, -7.11741e-12, 0, -7.03835, 0, 0, 0, 2.34313, -4.44089e-16, 2.89996, 2.89626, 9.36656, -2.89996, 3.72672e-11, -9.36656, 9.38447, 12.2688, -2.21115, 2.89996, -8.79702e-12, 2.21115, 8.58346e-12, -2.89626, 0, -2.89996, -12.2688}, {1.78885, -2.34612, -2.34313, -1.78885, -6.94104e-12, -7.11845e-12, 0, 2.34612, 2.72942e-15, 0, 0, -7.02938, -4.44089e-16, 2.89996, 2.89626, 2.21115, -2.89996, 8.79551e-12, -2.21115, -8.57902e-12, 2.89626, -9.36656, 12.2844, 9.3725, 9.36656, 3.63438e-11, -2.89626, 0, -12.2844, -2.89626}, {5.36656, -5.36656, 5.36656, 3.15147, 0, 0, -1.36261, -1.78885, -1.36216, 0, 0, 3.15102, -14.2902, -2.21115, 2.21115, -2.21115, 2.21115, 1.68373, 9.34589, 7.15542, 9.34353, 2.21115, -2.21115, -14.2878, -3.89543, 0, -3.89487, 1.68428, 2.21115, -2.21115}, {-1.78885, 1.78885, -1.78885, -9.45441, -4.1986e-15, -1.05928e-14, -1.36261, -1.78885, -1.36216, 1.06591e-15, 1.39933e-15, 3.15102, 5.47113, -9.36656, 9.36656, 3.23931, 9.36656, 7.13238, 3.89543, 3.0155e-15, 3.89487, 2.21115, -2.21115, -1.68373, -3.89543, -9.05692e-15, -16.4989, 1.68428, 2.21115, -2.21115}, {-1.78885, 1.78885, -1.78885, 3.15147, 0, 0, 4.08784, 5.36656, 4.08649, 0, 0, 3.15102, -1.68428, -2.21115, 2.21115, -14.817, 2.21115, 1.68373, 11.0508, -7.15542, 11.0503, 2.21115, -2.21115, -1.68373, -3.89543, 0, -3.89487, 1.68428, 2.21115, -14.8152}, {-1.78885, 1.78885, -1.78885, 3.15147, 0, 0, -1.36261, -1.78885, -1.36216, 0, 0, -9.45305, -1.68428, -2.21115, 2.21115, -2.21115, 2.21115, 1.68373, 3.89543, -4.44089e-16, 3.89487, 9.36656, -9.36656, 5.47169, -16.5013, 0, -3.89487, 7.13474, 9.36656, 3.23751}, {3.37408, 4.04519, 4.04519, 1.73606, 1.52739, 0.215622, 1.28983, 0.0265046, 1.33827, -1.90119, -0.205494, -0.205494, -7.69991, -6.33079, 0.5377, -3.7402, -1.92072, -1.92072, -5.36342, 1.52793, -5.34056, 11.345, 2.74269, 2.74269, 0.204116, -1.63395, -0.0125188, 0.755686, 0.221243, -1.40019}, {-1.12469, -1.3484, -1.3484, -5.20817, -4.58216, -0.646866, 1.28983, 0.0265046, 1.33827, -1.90119, -0.205494, -0.205494, 3.74309, 5.17235, 6.79378, -8.89951, -2.02673, -7.27379, -0.204116, 1.63395, 0.0125188, 3.7402, 1.92072, 1.92072, 7.80888, -0.811974, 0.809457, 0.755686, 0.221243, -1.40019}, {-1.12469, -1.3484, -1.3484, 1.73606, 1.52739, 0.215622, -3.86948, -0.0795138, -4.01481, -1.90119, -0.205494, -0.205494, -0.755686, -0.221243, 1.40019, -10.6844, -8.03027, -2.7832, 4.29466, 7.02754, 5.40611, 3.7402, 1.92072, 1.92072, 0.204116, -1.63395, -0.0125188, 8.36045, 1.04322, -0.578212}, {-1.12469, -1.3484, -1.3484, 1.73606, 1.52739, 0.215622, 1.28983, 0.0265046, 1.33827, 5.70357, 0.616482, 0.616482, -0.755686, -0.221243, 1.40019, -3.7402, -1.92072, -1.92072, -0.204116, 1.63395, 0.0125188, 8.23897, 7.31431, 7.31431, -6.74011, -7.7435, -0.875007, -4.40362, 0.115225, -6.75327}, {7.02938, 7.0206, 5.36656, -2.72401e-15, 2.34147, -1.03982e-15, 2.34313, 0, 0, -1.04066e-11, -0.00126659, 1.78885, 2.89626, -9.36743, 2.21115, -2.89626, -2.89421, 1.28529e-15, -9.3725, 2.89265, 2.21115, 2.89626, 2.89928, -7.15542, 1.28666e-11, -2.89265, -2.21115, -2.89626, 0.00156559, -2.21115}, {-2.34313, -2.3402, -1.78885, 4.08602e-15, -7.0244, -3.11946e-15, 2.34313, 7.36763e-19, -1.04056e-15, -1.0403e-11, -0.00126659, 1.78885, 12.2688, 9.35923, 9.36656, -12.2688, -2.89421, 4.16314e-15, -1.28599e-11, 2.89265, 2.21115, 2.89626, 2.89421, 4.43179e-16, 5.44723e-11, -2.88758, -9.36656, -2.89626, 0.00156559, -2.21115}, {-2.34313, -2.3402, -1.78885, -2.41965e-26, 2.34147, 4.15928e-15, -7.02938, 0, 0, -1.04066e-11, -0.00126659, 1.78885, 2.89626, -0.00156559, 2.21115, -2.89626, -12.2601, -2.17783e-14, 9.3725, 12.2534, 9.36656, 2.89626, 2.89421, 5.58524e-15, 1.28633e-11, -2.89265, -2.21115, -2.89626, 0.00663197, -9.36656}, {-2.34313, -2.3402, -1.78885, 6.05094e-27, 2.34147, -1.03982e-15, 2.34313, 0, 0, 3.12292e-11, 0.00379978, -5.36656, 2.89626, -0.00156559, 2.21115, -2.89626, -2.89421, 1.28529e-15, -1.28666e-11, 2.89265, 2.21115, 12.2688, 12.255, 7.15542, 1.28671e-11, -12.2585, -2.21115, -12.2688, 0.00156559, -2.21115}, {-3.69587, -1.12113, -5.61393, -0.115297, -1.49037, 0.58988, -0.136463, 0.136463, -2.07323, -0.980196, 0.980196, -0.387956, -0.919078, 7.34175, -5.40172, 0.311194, 1.67352, 1.83353, -0.80825, -1.17646, 8.54253, 3.60959, -5.59431, -0.281701, 1.3541, 0.630611, -0.249592, 1.38027, -1.38027, 3.0422}, {1.23196, 0.373711, 1.87131, 0.345892, 4.47111, -1.76964, -0.136463, 0.136463, -2.07323, -0.980196, 0.980196, -0.387956, -6.30809, -0.114578, -10.5274, 0.857047, 1.12767, 10.1265, -1.3541, -0.630611, 0.249592, -0.311194, -1.67352, -1.83353, 5.27489, -3.29017, 1.30223, 1.38027, -1.38027, 3.0422}, {1.23196, 0.373711, 1.87131, -0.115297, -1.49037, 0.58988, 0.40939, -0.40939, 6.2197, -0.980196, 0.980196, -0.387956, -1.38027, 1.38027, -3.0422, 0.772383, 7.635, -0.525997, -6.28193, -2.12546, -7.23564, -0.311194, -1.67352, -1.83353, 1.3541, 0.630611, -0.249592, 5.30105, -5.30105, 4.59402}, {1.23196, 0.373711, 1.87131, -0.115297, -1.49037, 0.58988, -0.136463, 0.136463, -2.07323, 2.94059, -2.94059, 1.16387, -1.38027, 1.38027, -3.0422, 0.311194, 1.67352, 1.83353, -1.3541, -0.630611, 0.249592, -5.23902, -3.16837, -9.31876, 1.81529, 6.59209, -2.60911, 1.92612, -1.92612, 11.3351}, {5.57441, -4.24616, -4.24616, 3.64699, 0.373467, -2.778, -1.78885, -1.78885, -1.78885, 0, 0, 3.15147, -16.7991, -3.70501, 12.7963, -2.29678, 1.74951, 5.64494, 11.6633, 7.61705, 7.61705, 2.29678, -1.74951, -18.2508, -4.50793, -0.461631, -0.461631, 2.21115, 2.21115, -1.68428}, {-1.85814, 1.41539, 1.41539, -10.941, -1.1204, 8.334, -1.78885, -1.78885, -1.78885, 1.39953e-15, 1.39953e-15, 3.15147, 5.2214, -7.87269, -3.97726, 4.85864, 8.90493, 12.8004, 4.50793, 0.461631, 0.461631, 2.29678, -1.74951, -5.64494, -4.50793, -0.461631, -13.0675, 2.21115, 2.21115, -1.68428}, {-1.85814, 1.41539, 1.41539, 3.64699, 0.373467, -2.778, 5.36656, 5.36656, 5.36656, 0, 0, 3.15147, -2.21115, -2.21115, 1.68428, -16.8847, 0.255645, 16.7569, 11.9405, -5.19992, -5.19992, 2.29678, -1.74951, -5.64494, -4.50793, -0.461631, -0.461631, 2.21115, 2.21115, -14.2902}, {-1.85814, 1.41539, 1.41539, 3.64699, 0.373467, -2.778, -1.78885, -1.78885, -1.78885, 0, 0, -9.45441, -2.21115, -2.21115, 1.68428, -2.29678, 1.74951, 5.64494, 4.50793, 0.461631, 0.461631, 9.72932, -7.41106, -11.3065, -19.0959, -1.9555, 10.6504, 9.36656, 9.36656, 5.47113}, {0.00760494, 5.36656, -0.00379978, 1.35906e-15, -2.07964e-15, 2.34147, -2.34059, 1.78885, -2.34273, 2.34313, 0, 0, 0.00313341, 2.21115, -12.2616, 2.89313, -2.21115, 0.00156559, 12.2586, -7.15542, 12.2651, -12.2656, 2.21115, -0.00156559, -2.89626, 2.57058e-15, -2.89421, -0.00313341, -2.21115, 2.89578}, {-0.00253498, -1.78885, 0.00126659, -8.16761e-15, 3.11946e-15, -7.0244, -2.34059, 1.78885, -2.34273, 2.34313, -1.04056e-15, 1.36274e-15, 0.0132733, 9.36656, -2.90084, 12.2555, -9.36656, 9.3725, 2.89626, -2.1274e-15, 2.89421, -2.89313, 2.21115, -0.00156559, -12.2688, 6.73371e-15, -2.89421, -0.00313341, -2.21115, 2.89578}, {-0.00253498, -1.78885, 0.00126659, 5.44802e-15, 0, 2.34147, 7.02177, -5.36656, 7.0282, 2.34313, 0, 0, 0.00313341, 2.21115, -2.89578, 2.89313, -2.21115, -9.3643, 2.9064, 7.15542, 2.88915, -2.89313, 2.21115, -0.00156559, -2.89626, 0, -2.89421, -9.37564, -2.21115, 2.89578}, {-0.00253498, -1.78885, 0.00126659, -1.36201e-15, 0, 2.34147, -2.34059, 1.78885, -2.34273, -7.02938, 0, 0, 0.00313341, 2.21115, -2.89578, 2.89313, -2.21115, 0.00156559, 2.89626, 4.44089e-16, 2.89421, -2.88299, 9.36656, -0.00663197, -2.89626, 0, -12.2601, 9.35923, -9.36656, 12.2667}, {-2.0499, 2.05263, 6.32666, 0.872781, 1.47234, -0.0861955, 0.376973, -0.375702, 1.61414, -1.93305, -0.412429, 0.580942, -5.41454, -6.86355, 3.05805, -1.54478, -1.35552, -1.88864, -2.81846, 2.81293, -5.84502, 9.277, 3.00524, -0.435124, 1.31057, -1.31012, -0.61154, 1.92342, 0.974184, -2.71327}, {0.683301, -0.68421, -2.10889, -2.61834, -4.41703, 0.258586, 0.376973, -0.375702, 1.61414, -1.93305, -0.412429, 0.580942, -4.65662, 1.76266, 11.1488, -3.05267, 0.147289, -8.34521, -1.31057, 1.31012, 0.61154, 1.54478, 1.35552, 1.88864, 9.04279, 0.339593, -2.93531, 1.92342, 0.974184, -2.71327}, {0.683301, -0.68421, -2.10889, 0.872781, 1.47234, -0.0861955, -1.13092, 1.12711, -4.84242, -1.93305, -0.412429, 0.580942, -1.92342, -0.974184, 2.71327, -5.0359, -7.24489, -1.54386, -4.04377, 4.04697, 9.04709, 1.54478, 1.35552, 1.88864, 1.31057, -1.31012, -0.61154, 9.65564, 2.6239, -5.03704}, {0.683301, -0.68421, -2.10889, 0.872781, 1.47234, -0.0861955, 0.376973, -0.375702, 1.61414, 5.79916, 1.23729, -1.74283, -1.92342, -0.974184, 2.71327, -1.54478, -1.35552, -1.88864, -1.31057, 1.31012, 0.61154, -1.18842, 4.09236, 10.3242, -2.18055, -7.19949, -0.266758, 0.41553, 2.47699, -9.16983}, {3.84226, 4.31846, 0.720662, 0.104325, 0.223697, -1.11063, 1.27099, 0.0329107, 0.803582, -0.0945646, 1.18288, 0.547265, 1.03685, 0.608011, 6.11224, -1.69999, -0.317185, 0.379527, -5.07191, 1.60698, -3.91068, 2.07825, -4.41433, -2.56859, -0.0120645, -1.73863, 0.696352, -1.45415, -1.5028, -1.66974}, {-1.28075, -1.43949, -0.240221, -0.312975, -0.671092, 3.33188, 1.27099, 0.0329107, 0.803582, -0.0945646, 1.18288, 0.547265, 6.57716, 7.26075, 2.63062, -6.78396, -0.448828, -2.8348, 0.0120645, 1.73863, -0.696352, 1.69999, 0.317185, -0.379527, 0.366194, -6.47014, -1.49271, -1.45415, -1.5028, -1.66974}, {-1.28075, -1.43949, -0.240221, 0.104325, 0.223697, -1.11063, -3.81298, -0.0987322, -2.41075, -0.0945646, 1.18288, 0.547265, 1.45415, 1.5028, 1.66974, -2.11729, -1.21197, 4.82203, 5.13508, 7.49658, 0.26453, 1.69999, 0.317185, -0.379527, -0.0120645, -1.73863, 0.696352, -1.07589, -6.23432, -3.8588}, {-1.28075, -1.43949, -0.240221, 0.104325, 0.223697, -1.11063, 1.27099, 0.0329107, 0.803582, 0.283694, -3.54864, -1.64179, 1.45415, 1.5028, 1.66974, -1.69999, -0.317185, 0.379527, 0.0120645, 1.73863, -0.696352, 6.823, 6.07514, 0.581356, -0.429365, -2.63341, 5.13886, -6.53812, -1.63444, -4.88406}, {6.08004, 1.41594, 0.0377686, 0.57469, 1.08447, 1.45022, 1.45199, 0.720135, -1.43763, 0, -1.33263, 0, -0.504, -5.09498, -7.57787, -2.50511, -2.23062, -0.0155615, -5.09761, -3.18728, 7.54308, 2.50511, 7.56114, 0.0155615, -0.710355, 0.306735, -1.79257, -1.79476, 0.757084, 1.77701}, {-2.02668, -0.471981, -0.0125895, -1.72407, -3.25342, -4.35065, 1.45199, 0.720135, -1.43763, 0, -1.33263, 0, 9.90148, 1.13084, -1.72665, -8.31307, -5.11116, 5.73495, 0.710355, -0.306735, 1.79257, 2.50511, 2.23062, 0.0155615, -0.710355, 5.63725, -1.79257, -1.79476, 0.757084, 1.77701}, {-2.02668, -0.471981, -0.0125895, 0.57469, 1.08447, 1.45022, -4.35597, -2.1604, 4.31288, 0, -1.33263, 0, 1.79476, -0.757084, -1.77701, -4.80387, -6.56852, -5.81643, 8.81707, 1.58119, 1.84292, 2.50511, 2.23062, 0.0155615, -0.710355, 0.306735, -1.79257, -1.79476, 6.0876, 1.77701}, {-2.02668, -0.471981, -0.0125895, 0.57469, 1.08447, 1.45022, 1.45199, 0.720135, -1.43763, 0, 3.99789, 0, 1.79476, -0.757084, -1.77701, -2.50511, -2.23062, -0.0155615, 0.710355, -0.306735, 1.79257, 10.6118, 4.11854, 0.0659197, -3.00911, -4.03116, -7.59343, -7.60272, -2.12346, 7.52752}, {-1.37732, 4.35589, 4.31302, -1.40475, 2.02293, -0.00626368, 1.89829, -6.72683e-16, 1.70116e-15, -0.952649, -0.570969, 1.44394, 6.78788, -8.79749, 1.80986, -0.610051, -2.50048, 0.00774234, -10.5071, 1.79473, 1.77706, 4.42065, 4.78436, -5.78349, 2.9139, -1.79473, -1.77706, -1.16888, 0.705756, -1.7848}, {0.459107, -1.45196, -1.43767, 4.21425, -6.0688, 0.018791, 1.89829, -4.0361e-16, 1.0207e-15, -0.952649, -0.570969, 1.44394, -0.66755, 5.1021, 7.53549, -8.20322, -2.50048, 0.00774234, -2.9139, 1.79473, 1.77706, 0.610051, 2.50048, -0.00774234, 6.7245, 0.489149, -7.5528, -1.16888, 0.705756, -1.7848}, {0.459107, -1.45196, -1.43767, -1.40475, 2.02293, -0.00626368, -5.69487, 0, 0, -0.952649, -0.570969, 1.44394, 1.16888, -0.705756, 1.7848, 5.00895, -10.5922, 0.0327971, -4.75033, 7.60258, 7.52775, 0.610051, 2.50048, -0.00774234, 2.9139, -1.79473, -1.77706, 2.64172, 2.98963, -7.56055}, {0.459107, -1.45196, -1.43767, -1.40475, 2.02293, -0.00626368, 1.89829, -1.34537e-16, 3.40233e-16, 2.85795, 1.71291, -4.33181, 1.16888, -0.705756, 1.7848, -0.610051, -2.50048, 0.00774234, -2.9139, 1.79473, 1.77706, -1.22638, 8.30834, 5.74295, 8.5329, -9.88646, -1.75201, -8.76204, 0.705756, -1.7848}, {-5.36656, -5.36656, -5.36656, -0.373467, -3.64699, -0.373467, 0, 0, -1.60567, -1.41539, 1.85814, 0.190281, -0.255645, 16.8847, -0.255645, 0.461631, 4.50793, 2.44635, -2.21115, -2.21115, 6.19624, 5.19992, -11.9405, -3.20747, 2.21115, 2.21115, 0.226431, 1.74951, -2.29678, 1.74951}, {1.78885, 1.78885, 1.78885, 1.1204, 10.941, 1.1204, 0, 0, -1.60567, -1.41539, 1.85814, 0.190281, -8.90493, -4.85864, -8.90493, 0.461631, 4.50793, 8.86902, -2.21115, -2.21115, -0.226431, -0.461631, -4.50793, -2.44635, 7.87269, -5.2214, -0.534693, 1.74951, -2.29678, 1.74951}, {1.78885, 1.78885, 1.78885, -0.373467, -3.64699, -0.373467, 0, 0, 4.817, -1.41539, 1.85814, 0.190281, -1.74951, 2.29678, -1.74951, 1.9555, 19.0959, 3.94022, -9.36656, -9.36656, -7.38185, -0.461631, -4.50793, -2.44635, 2.21115, 2.21115, 0.226431, 7.41106, -9.72932, 0.988391}, {1.78885, 1.78885, 1.78885, -0.373467, -3.64699, -0.373467, 0, 0, -1.60567, 4.24616, -5.57441, -0.570843, -1.74951, 2.29678, -1.74951, 0.461631, 4.50793, 2.44635, -2.21115, -2.21115, -0.226431, -7.61705, -11.6633, -9.60176, 3.70501, 16.7991, 1.7203, 1.74951, -2.29678, 8.17219}, {-8.88178e-15, -9.45441, 5.32907e-15, 1.78885, -1.36261, -1.36261, -1.78885, -1.78885, -1.78885, 0, 0, 3.15147, -9.36656, 3.23931, 7.13474, 3.55271e-15, 3.89543, 3.89543, 9.36656, 5.47113, 9.36656, -3.55271e-15, -3.89543, -16.5013, -2.21115, 1.68428, -2.21115, 2.21115, 2.21115, -1.68428}, {1.48705e-15, 3.15147, -8.88178e-16, -5.36656, 4.08784, 4.08784, -1.78885, -1.78885, -1.78885, 1.39953e-15, 1.39953e-15, 3.15147, -2.21115, -14.817, 1.68428, 7.15542, 11.0508, 11.0508, 2.21115, -1.68428, 2.21115, -3.55271e-15, -3.89543, -3.89543, -2.21115, 1.68428, -14.817, 2.21115, 2.21115, -1.68428}, {2.88658e-15, 3.15147, -2.22045e-15, 1.78885, -1.36261, -1.36261, 5.36656, 5.36656, 5.36656, 0, 0, 3.15147, -2.21115, -2.21115, 1.68428, -7.15542, 9.34589, 9.34589, 2.21115, -14.2902, 2.21115, -3.55271e-15, -3.89543, -3.89543, -2.21115, 1.68428, -2.21115, 2.21115, 2.21115, -14.2902}, {0, 3.15147, 2.22045e-15, 1.78885, -1.36261, -1.36261, -1.78885, -1.78885, -1.78885, 0, 0, -9.45441, -2.21115, -2.21115, 1.68428, 0, 3.89543, 3.89543, 2.21115, -1.68428, 2.21115, 0, -16.5013, -3.89543, -9.36656, 7.13474, 3.23931, 9.36656, 9.36656, 5.47113}, {3.05492, -2.11527, -4.36034, 0.668117, -1.63909, -0.00517894, 0.911433, 1.21439, 0.00383706, -0.561241, -0.2804, -1.4521, -2.23961, 7.71083, -1.76944, -1.95243, 0.524948, 0.00165865, -3.51362, -7.23019, -1.81665, 4.1974, 0.59665, 5.80676, -0.132105, 2.37262, 1.8013, -0.43286, -1.15448, 1.79016}, {-1.01831, 0.705091, 1.45345, -2.00435, 4.91726, 0.0155368, 0.911433, 1.21439, 0.00383706, -0.561241, -0.2804, -1.4521, 4.50609, -1.66588, -7.60394, -5.59816, -4.33263, -0.0136896, 0.132105, -2.37262, -1.8013, 1.95243, -0.524948, -0.00165865, 2.11286, 3.49421, 7.60972, -0.43286, -1.15448, 1.79016}, {-1.01831, 0.705091, 1.45345, 0.668117, -1.63909, -0.00517894, -2.7343, -3.64318, -0.0115112, -0.561241, -0.2804, -1.4521, 0.43286, 1.15448, -1.79016, -4.6249, 7.08129, 0.0223744, 4.20534, -5.19298, -7.61508, 1.95243, -0.524948, -0.00165865, -0.132105, 2.37262, 1.8013, 1.81211, -0.0328828, 7.59857}, {-1.01831, 0.705091, 1.45345, 0.668117, -1.63909, -0.00517894, 0.911433, 1.21439, 0.00383706, 1.68372, 0.841199, 4.35631, 0.43286, 1.15448, -1.79016, -1.95243, 0.524948, 0.00165865, 0.132105, -2.37262, -1.8013, 6.02566, -3.34531, -5.81544, -2.80457, 8.92896, 1.82202, -4.07859, -6.01206, 1.77481}, {5.82171, 7.62554, -0.596168, 1.32981, 1.74185, -1.74185, 0.61076, -1.54312, 1.54312, 0, 2.34313, 0, -4.5643, -5.97853, 8.87479, -2.39867, -0.245635, 0.245635, -0.799305, 11.2218, -8.32553, 2.39867, -9.12687, -0.245635, -1.64373, -5.0493, 2.15304, -0.754941, -0.988857, -1.90741}, {-1.94057, -2.54185, 0.198723, -3.98943, -5.22554, 5.22554, 0.61076, -1.54312, 1.54312, -3.55272e-16, 2.34313, -8.97618e-16, 8.51722, 11.1562, 1.11252, -4.84171, 5.92686, -5.92686, 1.64373, 5.0493, -2.15304, 2.39867, 0.245635, -0.245635, -1.64373, -14.4218, 2.15304, -0.754941, -0.988857, -1.90741}, {-1.94057, -2.54185, 0.198723, 1.32981, 1.74185, -1.74185, -1.83228, 4.62937, -4.62937, 0, 2.34313, 0, 0.754941, 0.988857, 1.90741, -7.71791, -7.21302, 7.21302, 9.40601, 15.2167, -2.94793, 2.39867, 0.245635, -0.245635, -1.64373, -5.0493, 2.15304, -0.754941, -10.3614, -1.90741}, {-1.94057, -2.54185, 0.198723, 1.32981, 1.74185, -1.74185, 0.61076, -1.54312, 1.54312, 0, -7.02938, 0, 0.754941, 0.988857, 1.90741, -2.39867, -0.245635, 0.245635, 1.64373, 5.0493, -2.15304, 10.1609, 10.413, -1.04052, -6.96297, -12.0167, 9.12042, -3.19798, 5.18364, -8.0799}, {5.81909, -7.62212, -0.600985, 0, -2.34313, 0, 0.610485, 1.54348, 1.54262, 1.32921, -1.74106, -1.74295, 2.3976, 9.12828, -0.24762, -0.754601, 0.988412, -1.90678, -0.798945, -11.2223, -8.32487, -4.56224, 5.97584, 8.87857, -1.643, 5.04833, 2.1544, -2.3976, 0.244222, 0.24762}, {-1.9397, 2.54071, 0.200328, 0, 7.02938, 0, 0.610485, 1.54348, 1.54262, 1.32921, -1.74106, -1.74295, 10.1564, -10.407, -1.04893, -3.19654, -5.18552, -8.07725, 1.643, -5.04833, -2.1544, 0.754601, -0.988412, 1.90678, -6.95984, 12.0126, 9.12619, -2.3976, 0.244222, 0.24762}, {-1.9397, 2.54071, 0.200328, 0, -2.34313, 0, -1.83146, -4.63045, -4.62785, 1.32921, -1.74106, -1.74295, 2.3976, -0.244222, -0.24762, -0.754601, 10.3609, -1.90678, 9.40178, -15.2112, -2.95571, 0.754601, -0.988412, 1.90678, -1.643, 5.04833, 2.1544, -7.71444, 7.20847, 7.21941}, {-1.9397, 2.54071, 0.200328, 0, -2.34313, 0, 0.610485, 1.54348, 1.54262, -3.98763, 5.22319, 5.22884, 2.3976, -0.244222, -0.24762, -0.754601, 0.988412, -1.90678, 1.643, -5.04833, -2.1544, 8.51339, -11.1512, 1.10547, -1.643, 14.4208, 2.1544, -4.83954, -5.92971, -5.92285}, {8.88178e-16, -4.44089e-16, 4.817, 1.32981, 1.74185, -0.136178, 0.61076, -1.54312, 1.54312, -1.94057, -0.198723, 0.198723, -6.96297, -9.12042, 2.69775, -2.39867, -0.245635, -1.73908, -3.19798, 8.0799, -6.09519, 10.1609, 1.04052, 0.94419, 0.754941, -1.90741, -0.0773091, 1.64373, 2.15304, -2.15304}, {4.44089e-16, 1.66533e-16, -1.60567, -3.98943, -5.22554, 0.408534, 0.61076, -1.54312, 1.54312, -1.94057, -0.198723, 0.198723, -1.64373, -2.15304, 8.57571, -4.84171, 5.92686, -7.91157, -0.754941, 1.90741, 0.0773091, 2.39867, 0.245635, 1.73908, 8.51722, -1.11252, -0.872199, 1.64373, 2.15304, -2.15304}, {0, -3.05311e-16, -1.60567, 1.32981, 1.74185, -0.136178, -1.83228, 4.62937, -4.62937, -1.94057, -0.198723, 0.198723, -1.64373, -2.15304, 2.15304, -7.71791, -7.21302, -1.19437, -0.754941, 1.90741, 6.49998, 2.39867, 0.245635, 1.73908, 0.754941, -1.90741, -0.0773091, 9.40601, 2.94793, -2.94793}, {-4.44089e-16, -2.77556e-17, -1.60567, 1.32981, 1.74185, -0.136178, 0.61076, -1.54312, 1.54312, 5.82171, 0.596168, -0.596168, -1.64373, -2.15304, 2.15304, -2.39867, -0.245635, -1.73908, -0.754941, 1.90741, 0.0773091, 2.39867, 0.245635, 8.16175, -4.5643, -8.87479, 0.467403, -0.799305, 8.32553, -8.32553}, {-1.28888, 1.28888, -5.54754, -0.937563, 0.937563, 0.371082, -0.607159, -0.998509, -1.77891, 1.1151, 0.490571, -0.441349, 4.3781, -4.3781, -4.22872, 1.90938, 0.0753332, 1.74017, 2.64808, 5.7593, 7.02879, -6.36977, -2.03762, 0.0252242, -0.219445, -1.76527, 0.0868549, -0.627846, 0.627846, 2.74439}, {0.429625, -0.429625, 1.84918, 2.81269, -2.81269, -1.11325, -0.607159, -0.998509, -1.77891, 1.1151, 0.490571, -0.441349, -1.09065, 1.09065, -10.1411, 4.33802, 4.06937, 8.85582, 0.219445, 1.76527, -0.0868549, -1.90938, -0.0753332, -1.74017, -4.67983, -3.72755, 1.85225, -0.627846, 0.627846, 2.74439}, {0.429625, -0.429625, 1.84918, -0.937563, 0.937563, 0.371082, 1.82148, 2.99553, 5.33673, 1.1151, 0.490571, -0.441349, 0.627846, -0.627846, -2.74439, 5.65963, -3.67492, 0.255844, -1.49906, 3.48377, -7.48357, -1.90938, -0.0753332, -1.74017, -0.219445, -1.76527, 0.0868549, -5.08823, -1.33444, 4.50979}, {0.429625, -0.429625, 1.84918, -0.937563, 0.937563, 0.371082, -0.607159, -0.998509, -1.77891, -3.34529, -1.47171, 1.32405, 0.627846, -0.627846, -2.74439, 1.90938, 0.0753332, 1.74017, 0.219445, 1.76527, -0.0868549, -3.62788, 1.64317, -9.13689, 3.53081, -5.51552, -1.39747, 1.80079, 4.62188, 9.86004}, {-4.9045, -4.90878, 4.90879, 0.803078, -0.801888, 0.80329, -1.63483, -1.63626, 0.030594, -0.803078, 0.801888, 0.802378, -6.22574, 2.17621, -2.18355, 1.0281, 3.01372, -1.03074, 6.53933, 6.54504, 1.86234, 2.18421, -6.22127, -2.17877, 7.60503e-14, -7.59393e-14, -1.98471, 3.01342, 1.03134, -1.02961}, {1.63483, 1.63626, -1.63626, -2.40924, 2.40566, -2.40987, -1.63483, -1.63626, 0.030594, -0.803078, 0.801888, 0.802378, -9.55275, -7.57638, 7.57466, 7.56743, 9.55876, -1.15311, -7.62723e-14, 7.68274e-14, 1.98471, -1.0281, -3.01372, 1.03074, 3.21231, -3.20755, -5.19423, 3.01342, 1.03134, -1.02961}, {1.63483, 1.63626, -1.63626, 0.803078, -0.801888, 0.80329, 4.9045, 4.90878, -0.0917819, -0.803078, 0.801888, 0.802378, -3.01342, -1.03134, 1.02961, -2.18421, 6.22127, -4.2439, -6.53933, -6.54504, 8.52976, -1.0281, -3.01372, 1.03074, 7.52731e-14, -7.53841e-14, -1.98471, 6.22574, -2.17621, -4.23912}, {1.63483, 1.63626, -1.63626, 0.803078, -0.801888, 0.80329, -1.63483, -1.63626, 0.030594, 2.40924, -2.40566, -2.40713, -3.01342, -1.03134, 1.02961, 1.0281, 3.01372, -1.03074, -7.52731e-14, 7.43849e-14, 1.98471, -7.56743, -9.55876, 7.57579, -3.21231, 3.20755, -5.19788, 9.55275, 7.57638, -1.15199}, {0.412021, -3.98943, -5.22554, -1.60567, 0, 0, 0.200419, -1.94057, -0.198723, 1.54259, 0.61076, -1.54312, 8.57715, -1.64373, -2.15304, 1.73698, 2.39867, 0.245635, -0.879643, 8.51722, -1.11252, -7.90734, -4.84171, 5.92686, 0.0779689, -0.754941, 1.90741, -2.15448, 1.64373, 2.15304}, {-0.13734, 1.32981, 1.74185, 4.817, 0, 0, 0.200419, -1.94057, -0.198723, 1.54259, 0.61076, -1.54312, 2.70384, -6.96297, -9.12042, 0.93531, 10.1609, 1.04052, -0.0779689, 0.754941, -1.90741, -1.73698, -2.39867, -0.245635, -6.09239, -3.19798, 8.0799, -2.15448, 1.64373, 2.15304}, {-0.13734, 1.32981, 1.74185, -1.60567, 0, 0, -0.601256, 5.82171, 0.596168, 1.54259, 0.61076, -1.54312, 2.15448, -1.64373, -2.15304, 8.15966, 2.39867, 0.245635, 0.471392, -4.5643, -8.87479, -1.73698, -2.39867, -0.245635, 0.0779689, -0.754941, 1.90741, -8.32484, -0.799305, 8.32553}, {-0.13734, 1.32981, 1.74185, -1.60567, 0, 0, 0.200419, -1.94057, -0.198723, -4.62777, -1.83228, 4.62937, 2.15448, -1.64373, -2.15304, 1.73698, 2.39867, 0.245635, -0.0779689, 0.754941, -1.90741, -1.18762, -7.71791, -7.21302, 6.50064, -0.754941, 1.90741, -2.95615, 9.40601, 2.94793}, {-2.2024, 0.148267, -4.33994, -0.546238, -1.40698, 1.37428e-12, 0.372712, 0.180326, -1.44665, -0.560609, 1.27608, -1.24642e-12, 1.9527, 7.42813, -1.78815, 0.21449, 1.51623, 1.78815, -2.85899, -0.883108, 5.78659, 2.02795, -6.62053, -1.78815, 1.36814, 0.161805, -1.58045e-13, 0.232253, -1.80021, 1.78815}, {0.734135, -0.0494224, 1.44665, 1.63871, 4.22094, -4.12207e-12, 0.372712, 0.180326, -1.44665, -0.560609, 1.27608, -1.24619e-12, -3.16879, 1.9979, -7.57474, -1.27636, 0.794924, 7.57474, -1.36814, -0.161805, 1.57656e-13, -0.21449, -1.51623, -1.78815, 3.61057, -4.9425, 4.82673e-12, 0.232253, -1.80021, 1.78815}, {0.734135, -0.0494224, 1.44665, -0.546238, -1.40698, 1.37428e-12, -1.11814, -0.540977, 4.33994, -0.560609, 1.27608, -1.24642e-12, -0.232253, 1.80021, -1.78815, 2.39944, 7.14414, 1.78815, -4.30468, 0.0358845, -5.78659, -0.21449, -1.51623, -1.78815, 1.36814, 0.161805, -1.58045e-13, 2.47469, -6.90451, 1.78815}, {0.734135, -0.0494224, 1.44665, -0.546238, -1.40698, 1.3744e-12, 0.372712, 0.180326, -1.44665, 1.68183, -3.82823, 3.73959e-12, -0.232253, 1.80021, -1.78815, 0.21449, 1.51623, 1.78815, -1.36814, -0.161805, 1.577e-13, -3.15103, -1.31854, -7.57474, 3.55309, 5.78972, -5.65567e-12, -1.25859, -2.52151, 7.57474}, {0, 9.4517, 0, -1.78885, 1.78834, -1.78937, 1.78885, 1.36222, -1.3621, 0, 0, 3.15147, 9.36656, -5.46957, 9.36924, 0, -3.89432, 3.89543, -9.36656, -3.23838, 7.13206, 0, 3.89432, -16.5013, 2.21115, -2.21051, -1.68365, -2.21115, -1.6838, -2.21178}, {-1.54779e-16, -3.15057, 0, 5.36656, -5.36503, 5.3681, 1.78885, 1.36222, -1.3621, -1.39953e-15, -1.06575e-15, 3.15147, 2.21115, 14.2861, 2.21178, -7.15542, -9.34321, 9.34384, -2.21115, 2.21051, 1.68365, 1.77636e-15, 3.89432, -3.89543, 2.21115, -2.21051, -14.2895, -2.21115, -1.6838, -2.21178}, {0, -3.15057, -4.44089e-16, -1.78885, 1.78834, -1.78937, -5.36656, -4.08667, 4.08631, 0, 0, 3.15147, 2.21115, 1.6838, 2.21178, 7.15542, -11.0477, 11.0529, -2.21115, 14.8128, 1.68365, 0, 3.89432, -3.89543, 2.21115, -2.21051, -1.68365, -2.21115, -1.6838, -14.8177}, {0, -3.15057, 0, -1.78885, 1.78834, -1.78937, 1.78885, 1.36222, -1.3621, 0, 0, -9.45441, 2.21115, 1.6838, 2.21178, 0, -3.89432, 3.89543, -2.21115, 2.21051, 1.68365, 0, 16.4966, -3.89543, 9.36656, -9.36389, 5.47381, -9.36656, -7.1327, 3.23663}, {-0.595682, -0.596202, -5.82204, 0, -1.60567, 0, 1.54187, 1.54321, -0.609885, -1.74043, -0.136279, -1.3308, -0.245434, 8.16174, -2.39881, -1.90585, 0.0771985, 0.75386, -8.31875, -8.32602, 0.794587, 8.86756, 0.467918, 4.56932, 2.15129, 2.15317, 1.64495, 0.245434, -1.73907, 2.39881}, {0.198561, 0.198734, 1.94068, 0, 4.817, 0, 1.54187, 1.54321, -0.609885, -1.74043, -0.136279, -1.3308, -1.03968, 0.94413, -10.1615, -8.07331, -6.09565, 3.1934, -2.15129, -2.15317, -1.64495, 1.90585, -0.0771985, -0.75386, 9.11299, 2.69828, 6.96814, 0.245434, -1.73907, 2.39881}, {0.198561, 0.198734, 1.94068, 0, -1.60567, 0, -4.6256, -4.62964, 1.82966, -1.74043, -0.136279, -1.3308, -0.245434, 1.73907, -2.39881, -1.90585, 6.49987, 0.75386, -2.94553, -2.9481, -9.40768, 1.90585, -0.0771985, -0.75386, 2.15129, 2.15317, 1.64495, 7.20714, -1.19395, 7.722}, {0.198561, 0.198734, 1.94068, 0, -1.60567, 0, 1.54187, 1.54321, -0.609885, 5.22128, 0.408838, 3.99239, -0.245434, 1.73907, -2.39881, -1.90585, 0.0771985, 0.75386, -2.15129, -2.15317, -1.64495, 1.11161, -0.872135, -8.51658, 2.15129, 8.57584, 1.64495, -5.92203, -7.91192, 4.83836}, {-1.34911, 3.4086, 1.4084, 1.74422, 0.694821, 0.910847, -1.68823, -0.836265, 0.836265, -0.505685, 1.27764, -1.27764, -9.68869, -2.23371, -4.18896, -0.0691986, 0.174835, -2.15955, 8.28384, 5.78316, -3.79845, 2.09194, -5.28541, 7.27013, -1.53091, -2.4381, 0.453387, 2.71183, -0.545574, 0.545574}, {0.449702, -1.1362, -0.469468, -5.23265, -2.08446, -2.73254, -1.68823, -0.836265, 0.836265, -0.505685, 1.27764, -1.27764, -4.51064, 5.09037, 1.3323, 6.68373, 3.5199, -5.50461, 1.53091, 2.4381, -0.453387, 0.0691986, -0.174835, 2.15955, 0.49183, -7.54868, 5.56396, 2.71183, -0.545574, 0.545574}, {0.449702, -1.1362, -0.469468, 1.74422, 0.694821, 0.910847, 5.0647, 2.5088, -2.5088, -0.505685, 1.27764, -1.27764, -2.71183, 0.545574, -0.545574, -7.04606, -2.60445, -5.80294, -0.267898, 6.9829, 1.42448, 0.0691986, -0.174835, 2.15955, -1.53091, -2.4381, 0.453387, 4.73457, -5.65615, 5.65615}, {0.449702, -1.1362, -0.469468, 1.74422, 0.694821, 0.910847, -1.68823, -0.836265, 0.836265, 1.51705, -3.83293, 3.83293, -2.71183, 0.545574, -0.545574, -0.0691986, 0.174835, -2.15955, 1.53091, 2.4381, -0.453387, -1.72961, 4.36997, 4.03742, -8.50777, -5.21739, -3.19, 9.46476, 2.79949, -2.79949}, {-6.58175, 1.32414, -1.32414, -0.505685, 1.27764, -1.27764, 0.857073, 0.177676, 2.16545, -2.54531, -1.01394, -1.32918, -0.0640323, -6.14426, 6.14426, -0.43434, -1.79887, -1.09739, -7.19952, -0.384749, -11.884, 10.6156, 5.85464, 6.41412, 3.77123, -0.325955, 3.22222, 2.08677, 1.03368, -1.03368}, {2.19392, -0.441379, 0.441379, 1.51705, -3.83293, 3.83293, 0.857073, 0.177676, 2.16545, -2.54531, -1.01394, -1.32918, -10.8624, 0.731834, -0.731834, -3.86263, -2.50958, -9.75919, -3.77123, 0.325955, -3.22222, 0.43434, 1.79887, 1.09739, 13.9525, 3.72981, 8.53895, 2.08677, 1.03368, -1.03368}, {2.19392, -0.441379, 0.441379, -0.505685, 1.27764, -1.27764, -2.57122, -0.533028, -6.49635, -2.54531, -1.01394, -1.32918, -2.08677, -1.03368, 1.03368, 1.5884, -6.90945, 4.01319, -12.5469, 2.09147, -4.98773, 0.43434, 1.79887, 1.09739, 3.77123, -0.325955, 3.22222, 12.268, 5.08945, 4.28305}, {2.19392, -0.441379, 0.441379, -0.505685, 1.27764, -1.27764, 0.857073, 0.177676, 2.16545, 7.63592, 3.04182, 3.98755, -2.08677, -1.03368, 1.03368, -0.43434, -1.79887, -1.09739, -3.77123, 0.325955, -3.22222, -8.34133, 3.56439, -0.668128, 5.79397, -5.43653, 8.33279, -1.34152, 0.322977, -9.69548}, {5.63148, -7.39306, 3.82293, -0.845027, -3.02792, 0.845027, 1.29407, 2.43841, 1.8574, 1.42811, -1.87484, -1.42811, 6.74491, 12.8083, -2.84948, -0.55505, 0.728676, -3.34038, -4.45555, -15.8138, -8.15032, -5.15741, 6.7707, 9.05284, -0.720736, 6.06015, 0.720736, -3.36481, -0.696607, -0.530622}, {-1.87716, 2.46435, -1.27431, 2.53508, 9.08376, -2.53508, 1.29407, 2.43841, 1.8574, 1.42811, -1.87484, -1.42811, 10.8734, -9.16081, 5.62786, -5.73134, -9.02497, -10.77, 0.720736, -6.06015, -0.720736, 0.55505, -0.728676, 3.34038, -6.43319, 13.5595, 6.43319, -3.36481, -0.696607, -0.530622}, {-1.87716, 2.46435, -1.27431, -0.845027, -3.02792, 0.845027, -3.88221, -7.31523, -5.57219, 1.42811, -1.87484, -1.42811, 3.36481, 0.696607, 0.530622, 2.82506, 12.8404, -6.72049, 8.22937, -15.9176, 4.3765, 0.55505, -0.728676, 3.34038, -0.720736, 6.06015, 0.720736, -9.07726, 6.80277, 5.18184}, {-1.87716, 2.46435, -1.27431, -0.845027, -3.02792, 0.845027, 1.29407, 2.43841, 1.8574, -4.28434, 5.62453, 4.28434, 3.36481, 0.696607, 0.530622, -0.55505, 0.728676, -3.34038, 0.720736, -6.06015, -0.720736, 8.06369, -10.5861, 8.43762, 2.65937, 18.1718, -2.65937, -8.54109, -10.4502, -7.96021}, {8.88178e-16, 9.45441, -1.77636e-15, 1.78834, 1.78885, 1.78885, -3.15057, 0, 0, 1.36222, 1.36261, -1.78885, -9.36389, -5.47113, -9.36656, 1.6838, -2.21115, -2.21115, 16.4966, 3.89543, -4.44089e-16, -7.1327, -3.23931, 9.36656, -3.89432, -3.89543, 4.44089e-16, 2.21051, -1.68428, 2.21115}, {4.44089e-16, -3.15147, 2.22045e-16, -5.36503, -5.36656, -5.36656, -3.15057, 0, 0, 1.36222, 1.36261, -1.78885, -2.21051, 14.2902, -2.21115, 14.2861, -2.21115, -2.21115, 3.89432, 3.89543, 0, -1.6838, 2.21115, 2.21115, -9.34321, -9.34589, 7.15542, 2.21051, -1.68428, 2.21115}, {-4.44089e-16, -3.15147, 0, 1.78834, 1.78885, 1.78885, 9.4517, 0, 0, 1.36222, 1.36261, -1.78885, -2.21051, 1.68428, -2.21115, -5.46957, -9.36656, -9.36656, 3.89432, 16.5013, 0, -1.6838, 2.21115, 2.21115, -3.89432, -3.89543, 0, -3.23838, -7.13474, 9.36656}, {4.44089e-16, -3.15147, -2.22045e-16, 1.78834, 1.78885, 1.78885, -3.15057, 0, 0, -4.08667, -4.08784, 5.36656, -2.21051, 1.68428, -2.21115, 1.6838, -2.21115, -2.21115, 3.89432, 3.89543, 0, -1.6838, 14.817, 2.21115, -11.0477, -11.0508, -7.15542, 14.8128, -1.68428, 2.21115}, {-5.36656, 5.36656, -5.36656, 2.79907e-15, 3.15147, 3.33475e-16, -1.78885, -1.36261, 1.36261, 0, 0, -3.15147, -2.21115, -14.2902, -2.21115, 2.21115, -2.21115, -1.68428, 7.15542, 9.34589, -9.34589, -2.21115, 2.21115, 14.2902, -3.45984e-15, -3.89543, 3.89543, 2.21115, 1.68428, 2.21115}, {1.78885, -1.78885, 1.78885, -4.1986e-15, -9.45441, 1.0595e-14, -1.78885, -1.36261, 1.36261, 0, 0, -3.15147, -9.36656, 5.47113, -9.36656, 9.36656, 3.23931, -7.13474, 1.28583e-15, 3.89543, -3.89543, -2.21115, 2.21115, 1.68428, -1.72992e-15, -3.89543, 16.5013, 2.21115, 1.68428, 2.21115}, {1.78885, -1.78885, 1.78885, 0, 3.15147, 0, 5.36656, 4.08784, -4.08784, 0, 0, -3.15147, -2.21115, -1.68428, -2.21115, 2.21115, -14.817, -1.68428, -7.15542, 11.0508, -11.0508, -2.21115, 2.21115, 1.68428, 0, -3.89543, 3.89543, 2.21115, 1.68428, 14.817}, {1.78885, -1.78885, 1.78885, 0, 3.15147, 2.46559e-15, -1.78885, -1.36261, 1.36261, 0, 0, 9.45441, -2.21115, -1.68428, -2.21115, 2.21115, -2.21115, -1.68428, -4.44089e-16, 3.89543, -3.89543, -9.36656, 9.36656, -5.47113, 0, -16.5013, 3.89543, 9.36656, 7.13474, -3.23931}, {7.01844, 1.17551e-15, 0, 2.33948, 2.34313, -1.78885, 0, -2.34313, 0, -7.30165e-12, -6.9197e-12, 1.78885, -9.35791, -12.2688, 9.36656, -2.89175, -8.55405e-12, 2.21115, 2.89175, 12.2688, 0, 2.89175, 3.62329e-11, -9.36656, -2.89175, -2.89626, 0, 9.02534e-12, 2.89626, -2.21115}, {-2.33948, -1.95894e-17, 0, -7.01844, -7.02938, 5.36656, 0, -2.34313, 0, -7.30373e-12, -6.92022e-12, 1.78885, 9.35791, -2.89626, 2.21115, -2.89175, 9.3725, 2.21115, 2.89175, 2.89626, 0, 2.89175, 8.5536e-12, -2.21115, -2.89175, -2.89626, -7.15542, 9.02791e-12, 2.89626, -2.21115}, {-2.33948, 1.32789e-16, -4.44089e-16, 2.33948, 2.34313, -1.78885, 0, 7.02938, 0, -7.30321e-12, -6.92126e-12, 1.78885, -9.02668e-12, -2.89626, 2.21115, -12.2497, -9.3725, 9.36656, 12.2497, 2.89626, 1.77636e-15, 2.89175, 8.55493e-12, -2.21115, -2.89175, -2.89626, -4.44089e-16, 3.82401e-11, 2.89626, -9.36656}, {-2.33948, -8.31579e-16, -4.44089e-16, 2.33948, 2.34313, -1.78885, 0, -2.34313, 0, 2.19143e-11, 2.07622e-11, -5.36656, -9.02861e-12, -2.89626, 2.21115, -2.89175, -8.55538e-12, 2.21115, 2.89175, 2.89626, 4.44089e-16, 12.2497, 8.55648e-12, -2.21115, -12.2497, -12.2688, 7.15542, 9.02919e-12, 12.2688, -2.21115}, {-1.00651, -1.00808, 6.45666, -0.481765, 1.86061, -0.736419, 0.984821, -1.35677, 2.55622, -0.83856, -0.839867, 0.332415, 2.10785, -10.1576, 6.51623, -0.62181, -0.62278, -2.2494, -5.57129, 6.68879, -10.7243, 3.97605, 3.98225, 0.919744, 1.63201, -1.26171, 0.499377, -0.180789, 2.71519, -3.57055}, {0.335504, 0.336027, -2.15222, 1.4453, -5.58183, 2.20926, 0.984821, -1.35677, 2.55622, -0.83856, -0.839867, 0.332415, -1.16123, -4.0593, 12.1794, -4.56109, 4.8043, -12.4743, -1.63201, 1.26171, -0.499377, 0.62181, 0.62278, 2.2494, 4.98625, 2.09776, -0.830282, -0.180789, 2.71519, -3.57055}, {0.335504, 0.336027, -2.15222, -0.481765, 1.86061, -0.736419, -2.95446, 4.07031, -7.66867, -0.83856, -0.839867, 0.332415, 0.180789, -2.71519, 3.57055, 1.30525, -8.06522, 0.696272, -2.97403, -0.0824032, 8.1095, 0.62181, 0.62278, 2.2494, 1.63201, -1.26171, 0.499377, 3.17345, 6.07466, -4.90021}, {0.335504, 0.336027, -2.15222, -0.481765, 1.86061, -0.736419, 0.984821, -1.35677, 2.55622, 2.51568, 2.5196, -0.997244, 0.180789, -2.71519, 3.57055, -0.62181, -0.62278, -2.2494, -1.63201, 1.26171, -0.499377, -0.720207, -0.72133, 10.8583, 3.55907, -8.70414, 3.44505, -4.12007, 8.14227, -13.7954}, {5.36656, -5.48024e-11, 5.58682e-11, 1.78885, -2.34313, 2.34313, 0, 2.34313, 0, 0, 0, -2.34313, -7.15542, 12.2688, -12.2688, -2.21115, 2.25797e-11, -2.89626, 2.21115, -12.2688, 2.30194e-11, 2.21115, -2.25797e-11, 12.2688, -2.21115, 2.89626, -2.30194e-11, 0, -2.89626, 2.89626}, {-1.78885, 1.21112e-11, -1.24669e-11, -5.36656, 7.02938, -7.02938, 0, 2.34313, 1.36297e-15, 0, 0, -2.34313, 7.15542, 2.89626, -2.89626, -2.21115, -9.3725, -2.89626, 2.21115, -2.89626, 1.54086e-11, 2.21115, -1.49702e-11, 2.89626, -2.21115, 2.89626, 9.3725, 0, -2.89626, 2.89626}, {-1.78885, 1.21094e-11, -1.24669e-11, 1.78885, -2.34313, 2.34313, 0, -7.02938, 0, 0, 0, -2.34313, 4.44089e-16, 2.89626, -2.89626, -9.36656, 9.3725, -12.2688, 9.36656, -2.89626, 6.52776e-11, 2.21115, -1.49685e-11, 2.89626, -2.21115, 2.89626, -1.54099e-11, 0, -2.89626, 12.2688}, {-1.78885, 1.21099e-11, -1.24638e-11, 1.78885, -2.34313, 2.34313, 0, 2.34313, 0, 0, 0, 7.02938, 4.44089e-16, 2.89626, -2.89626, -2.21115, 1.49689e-11, -2.89626, 2.21115, -2.89626, 1.54063e-11, 9.36656, -6.34088e-11, 2.89626, -9.36656, 12.2688, -9.3725, 0, -12.2688, 2.89626}, {5.09908, -2.42192, -2.42638, -0.488904, -1.23525, -1.23482, 1.75382, -0.670557, 0.933579, 0.434779, 1.0985, -0.507552, 4.66087, 5.46995, 5.46587, -1.56352, 2.3557, 0.372353, -7.08218, 2.51319, -5.888, -0.175592, -6.74968, 1.65786, 0.0669023, 0.169033, 2.15369, -2.70526, -0.528962, -0.526598}, {-1.69969, 0.807307, 0.808792, 1.46671, 3.70574, 3.70446, 1.75382, -0.670557, 0.933579, 0.434779, 1.0985, -0.507552, 9.50403, -2.70027, -2.70857, -8.5788, 5.03793, -3.36196, -0.0669023, -0.169033, -2.15369, 1.56352, -2.3557, -0.372353, -1.67221, -4.22495, 4.1839, -2.70526, -0.528962, -0.526598}, {-1.69969, 0.807307, 0.808792, -0.488904, -1.23525, -1.23482, -5.26146, 2.01167, -2.80074, 0.434779, 1.0985, -0.507552, 2.70526, 0.528962, 0.526598, 0.392092, 7.29669, 5.31163, 6.73188, -3.39826, -5.38886, 1.56352, -2.3557, -0.372353, 0.0669023, 0.169033, 2.15369, -4.44437, -4.92294, 1.50361}, {-1.69969, 0.807307, 0.808792, -0.488904, -1.23525, -1.23482, 1.75382, -0.670557, 0.933579, -1.30434, -3.29549, 1.52266, 2.70526, 0.528962, 0.526598, -1.56352, 2.3557, 0.372353, -0.0669023, -0.169033, -2.15369, 8.3623, -5.58493, -3.60752, 2.02252, 5.11002, 7.09296, -9.72053, 2.15326, -4.26091}, {-2.57735, 0.513092, -6.51263, -2.5578, 0.977952, -1.36155, -0.488614, -1.23536, -1.23466, 2.1873, 0.428435, 0.425336, 12.3309, -4.90922, 4.44581, 3.76558, 0.31817, 3.2091, 1.49649, 6.67982, 3.78144, -12.5148, -2.03191, -4.91044, 0.457966, -1.73839, 1.15722, -2.09969, 0.99741, 1.00039}, {0.859116, -0.171031, 2.17088, 7.67341, -2.93386, 4.08465, -0.488614, -1.23536, -1.23466, 2.1873, 0.428435, 0.425336, -1.33677, -0.313288, -9.6839, 5.72003, 5.2596, 8.14775, -0.457966, 1.73839, -1.15722, -3.76558, -0.31817, -3.2091, -8.29124, -3.45213, -0.54412, -2.09969, 0.99741, 1.00039}, {0.859116, -0.171031, 2.17088, -2.5578, 0.977952, -1.36155, 1.46584, 3.70607, 3.70399, 2.1873, 0.428435, 0.425336, 2.09969, -0.99741, -1.00039, 13.9968, -3.59364, 8.65529, -3.89443, 2.42251, -9.84073, -3.76558, -0.31817, -3.2091, 0.457966, -1.73839, 1.15722, -10.8489, -0.716331, -0.700957}, {0.859116, -0.171031, 2.17088, -2.5578, 0.977952, -1.36155, -0.488614, -1.23536, -1.23466, -6.5619, -1.28531, -1.27601, 2.09969, -0.99741, -1.00039, 3.76558, 0.31817, 3.2091, -0.457966, 1.73839, -1.15722, -7.20204, 0.365952, -11.8926, 10.6892, -5.6502, 6.60342, -0.145237, 5.93884, 5.93904}, {4.08784, 4.08784, -5.36656, -1.78885, -1.78885, -1.78885, 3.15147, 2.46559e-15, 0, 0, 3.15147, 0, 11.0508, 11.0508, 7.15542, -1.68428, 2.21115, 2.21115, -14.817, 1.68428, -2.21115, 1.68428, -14.817, -2.21115, 2.21115, -1.68428, 2.21115, -3.89543, -3.89543, 0}, {-1.36261, -1.36261, 1.78885, 5.36656, 5.36656, 5.36656, 3.15147, 0, 0, -2.46559e-15, 3.15147, 0, 9.34589, 9.34589, -7.15542, -14.2902, 2.21115, 2.21115, -2.21115, 1.68428, -2.21115, 1.68428, -2.21115, -2.21115, 2.21115, -14.2902, 2.21115, -3.89543, -3.89543, 0}, {-1.36261, -1.36261, 1.78885, -1.78885, -1.78885, -1.78885, -9.45441, 0, 0, 0, 3.15147, 0, 3.89543, 3.89543, -4.44089e-16, 5.47113, 9.36656, 9.36656, 3.23931, 7.13474, -9.36656, 1.68428, -2.21115, -2.21115, 2.21115, -1.68428, 2.21115, -3.89543, -16.5013, 0}, {-1.36261, -1.36261, 1.78885, -1.78885, -1.78885, -1.78885, 3.15147, 2.46559e-15, 0, 0, -9.45441, 0, 3.89543, 3.89543, -4.44089e-16, -1.68428, 2.21115, 2.21115, -2.21115, 1.68428, -2.21115, 7.13474, 3.23931, -9.36656, 9.36656, 5.47113, 9.36656, -16.5013, -3.89543, 0}, {-4.7272, 4.72585, -4.72855, -1.57528, -1.57573, -1.57573, 1.57528, 1.57573, -1.57573, -1.57573, 1.57528, 1.57528, 6.30058, 10.1978, 6.30238, 2.11209e-12, -2.11164e-12, 3.89543, -10.196, -6.30349, 6.30238, 6.30294, -6.30114, -10.1966, 3.89487, 0.000556685, 0.000556685, 0.000556685, -3.89487, 0.000556844}, {1.57573, -1.57528, 1.57618, 4.72585, 4.7272, 4.7272, 1.57528, 1.57573, -1.57573, -1.57573, 1.57528, 1.57528, -6.30349, 10.196, -6.3053, -6.30114, -6.30294, 10.1984, -3.89487, -0.000556685, -0.000556685, -2.11226e-12, 2.11514e-12, -3.89543, 10.1978, -6.30058, -6.30058, 0.000556685, -3.89487, 0.000556844}, {1.57573, -1.57528, 1.57618, -1.57528, -1.57573, -1.57573, -4.72585, -4.7272, 4.7272, -1.57573, 1.57528, 1.57528, -0.000556685, 3.89487, -0.000556844, 6.30114, 6.30294, 10.1984, -10.1978, 6.30058, -6.3053, -2.11581e-12, 2.11492e-12, -3.89543, 3.89487, 0.000556685, 0.000556685, 6.30349, -10.196, -6.30058}, {1.57573, -1.57528, 1.57618, -1.57528, -1.57573, -1.57573, 1.57528, 1.57573, -1.57573, 4.7272, -4.72585, -4.72585, -0.000556685, 3.89487, -0.000556844, 2.11831e-12, -2.1172e-12, 3.89543, -3.89487, -0.000556685, -0.000556685, -6.30294, 6.30114, -10.2002, 10.196, 6.30349, 6.30349, -6.30058, -10.1978, 6.30349}, {-5.22554, -0.410098, 3.98943, -1.54312, -1.54218, -0.61076, 3.95893e-17, 1.60497, -3.86599e-16, -0.198723, -0.199483, 1.94057, 5.92686, 7.906, 4.84171, 1.90741, -0.0776051, 0.754941, -2.15304, -8.57268, 1.64373, -1.11252, 0.875539, -8.51722, 2.15304, 2.15282, -1.64373, 0.245635, -1.73727, -2.39867}, {1.74185, 0.136699, -1.32981, 4.62937, 4.62655, 1.83228, 1.18768e-16, 1.60497, -1.1598e-15, -0.198723, -0.199483, 1.94057, -7.21302, 1.19047, 7.71791, 1.90741, -6.49747, 0.754941, -2.15304, -2.15282, 1.64373, -1.90741, 0.0776051, -0.754941, 2.94793, 2.95075, -9.40601, 0.245635, -1.73727, -2.39867}, {1.74185, 0.136699, -1.32981, -1.54312, -1.54218, -0.61076, 0, -4.8149, 0, -0.198723, -0.199483, 1.94057, -0.245635, 1.73727, 2.39867, 8.0799, 6.09113, 3.19798, -9.12042, -2.69962, 6.96297, -1.90741, 0.0776051, -0.754941, 2.15304, 2.15282, -1.64373, 1.04052, -0.939339, -10.1609}, {1.74185, 0.136699, -1.32981, -1.54312, -1.54218, -0.61076, -1.18768e-16, 1.60497, 1.1598e-15, 0.596168, 0.59845, -5.82171, -0.245635, 1.73727, 2.39867, 1.90741, -0.0776051, 0.754941, -2.15304, -2.15282, 1.64373, -8.87479, -0.469193, 4.5643, 8.32553, 8.32155, 0.799305, 0.245635, -8.15714, -2.39867}, {4.63127, 4.6267, 1.83083, -2.54134, -0.199443, 1.94018, 1.74197, 1.74168, -1.3299, 2.34313, 0, 0, 15.2148, 2.9506, -9.40456, 0.988073, -1.9063, -0.754342, -7.21287, -7.21323, 7.7178, -10.3606, 1.9063, 0.754342, 0.245001, 0.246525, -2.39819, -5.04945, -2.15283, 1.64385}, {-1.54376, -1.54223, -0.610276, 7.62401, 0.598329, -5.82053, 1.74197, 1.74168, -1.3299, 2.34313, -1.01311e-15, 7.73589e-16, 11.2245, 8.32176, 0.797254, -5.9798, -8.87301, 4.56526, -0.245001, -0.246525, 2.39819, -0.988073, 1.9063, 0.754342, -9.1275, 0.246525, -2.39819, -5.04945, -2.15283, 1.64385}, {-1.54376, -1.54223, -0.610276, -2.54134, -0.199443, 1.94018, -5.2259, -5.22503, 3.9897, 2.34313, 0, 0, 5.04945, 2.15283, -1.64385, 11.1534, -1.10853, -8.51505, 5.93003, 5.92241, 4.83929, -0.988073, 1.9063, 0.754342, 0.245001, 0.246525, -2.39819, -14.422, -2.15283, 1.64385}, {-1.54376, -1.54223, -0.610276, -2.54134, -0.199443, 1.94018, 1.74197, 1.74168, -1.3299, -7.02938, 0, 0, 5.04945, 2.15283, -1.64385, 0.988073, -1.9063, -0.754342, -0.245001, -0.246525, 2.39819, 5.18696, 8.07523, 3.19544, 10.4103, 1.0443, -10.1589, -12.0173, -9.11953, 6.96345}, {4.33994, 1.90929, -1.71772, 1.45453e-15, 1.35003, 1.01047e-16, 1.36e-12, -0.731398, -2.01922, 1.44665, 0.0177991, 1.44665, 1.78815, -6.28218, -0.707741, -1.68285e-12, -0.764672, 2.4959, 1.78815, 4.61632, 9.86504, -5.78659, 0.693475, -8.28248, -1.78815, -1.69073, -1.78815, -1.78815, 0.882056, 0.707741}, {-1.44665, -0.636431, 0.572575, -4.36359e-15, -4.05009, -2.33336e-15, 1.35855e-12, -0.731398, -2.01922, 1.44665, 0.0177991, 1.44665, 7.57474, 1.66367, -2.99804, -7.11526e-12, 2.16092, 10.5728, 1.78815, 1.69073, 1.78815, 1.68142e-12, 0.764672, -2.4959, -7.57474, -1.76193, -7.57474, -1.78815, 0.882056, 0.707741}, {-1.44665, -0.636431, 0.572575, 0, 1.35003, 0, -4.08128e-12, 2.19419, 6.05767, 1.44665, 0.0177991, 1.44665, 1.78815, -0.882056, -0.707741, -1.68158e-12, -6.16479, 2.4959, 7.57474, 4.23646, -0.502145, 1.68194e-12, 0.764672, -2.4959, -1.78815, -1.69073, -1.78815, -7.57474, 0.81086, -5.07885}, {-1.44665, -0.636431, 0.572575, -4.84843e-16, 1.35003, -4.84843e-16, 1.3596e-12, -0.731398, -2.01922, -4.33994, -0.0533972, -4.33994, 1.78815, -0.882056, -0.707741, -1.67996e-12, -0.764672, 2.4959, 1.78815, 1.69073, 1.78815, 5.78659, 3.3104, -4.7862, -1.78815, -7.09085, -1.78815, -1.78815, 3.80765, 8.78463}, {-3.79117, -3.78885, -1.50052, 0.577052, -1.02738, -1.79083, -1.45233, 0.153525, -0.574823, -0.388446, -0.389091, 1.86548, -4.58353, 3.81836, 8.75865, 1.0819, 1.08015, 2.92411, 6.04244, -2.36496, 2.39156, 0.471884, 0.476215, -10.386, -0.233129, 1.75086, -0.0922713, 2.27532, 0.291177, -1.59534}, {1.26372, 1.26295, 0.500174, -1.73116, 3.08215, 5.37248, -1.45233, 0.153525, -0.574823, -0.388446, -0.389091, 1.86548, -7.33021, -5.34298, -0.40536, 6.89121, 0.466052, 5.2234, 0.233129, -1.75086, 0.0922713, -1.0819, -1.08015, -2.92411, 1.32066, 3.30723, -7.55418, 2.27532, 0.291177, -1.59534}, {1.26372, 1.26295, 0.500174, 0.577052, -1.02738, -1.79083, 4.35698, -0.460574, 1.72447, -0.388446, -0.389091, 1.86548, -2.27532, -0.291177, 1.59534, -1.22631, 5.18969, 10.0874, -4.82176, -6.80267, -1.90843, -1.0819, -1.08015, -2.92411, -0.233129, 1.75086, -0.0922713, 3.82911, 1.84754, -9.05724}, {1.26372, 1.26295, 0.500174, 0.577052, -1.02738, -1.79083, -1.45233, 0.153525, -0.574823, 1.16534, 1.16727, -5.59643, -2.27532, -0.291177, 1.59534, 1.0819, 1.08015, 2.92411, 0.233129, -1.75086, 0.0922713, -6.13679, -6.13196, -4.9248, -2.54134, 5.8604, 7.07104, 8.08463, -0.322922, 0.703957}, {2.52504, -4.49559, -7.83624, 1.26389, 1.26265, 0.49964, -0.875592, -0.873298, -2.36467, 0.453379, -1.88788, -0.747051, -5.57746, -8.46358, -5.84486, -0.479968, -0.48126, 2.3053, 5.62503, 2.72036, 9.15287, -1.33355, 8.03278, 0.682901, -2.12267, 0.772832, 0.305817, 0.521884, 3.413, 3.8463}, {-0.841681, 1.49853, 2.61208, -3.79168, -3.78794, -1.49892, -0.875592, -0.873298, -2.36467, 0.453379, -1.88788, -0.747051, 2.84484, -9.40713, -14.2946, 3.0224, 3.01193, 11.764, 2.12267, -0.772832, -0.305817, 0.479968, 0.48126, -2.3053, -3.93618, 8.32435, 3.29402, 0.521884, 3.413, 3.8463}, {-0.841681, 1.49853, 2.61208, 1.26389, 1.26265, 0.49964, 2.62678, 2.61989, 7.09401, 0.453379, -1.88788, -0.747051, -0.521884, -3.413, -3.8463, -5.53554, -5.53184, 0.306743, 5.48939, -6.76696, -10.7541, 0.479968, 0.48126, -2.3053, -2.12267, 0.772832, 0.305817, -1.29163, 10.9645, 6.8345}, {-0.841681, 1.49853, 2.61208, 1.26389, 1.26265, 0.49964, -0.875592, -0.873298, -2.36467, -1.36014, 5.66364, 2.24115, -0.521884, -3.413, -3.8463, -0.479968, -0.48126, 2.3053, 2.12267, -0.772832, -0.305817, 3.84669, -5.51287, -12.7536, -7.17824, -4.27775, -1.69274, 4.02425, 6.90619, 13.305}, {5.37846, -0.954422, 1.65136, 0.482922, -1.73161, -0.484335, 0.65353, 0.326507, 1.69088, 0.656368, 1.08696, -0.656093, -0.312565, 8.67359, 3.21641, -1.40473, 1.7368, -1.49137, -1.20588, -2.10286, -8.17318, -1.22074, -6.08465, 4.11575, -1.40824, 0.796829, 1.40965, -1.61912, -1.74715, -1.27907}, {-1.79282, 0.318141, -0.550454, -1.44877, 5.19483, 1.45301, 0.65353, 0.326507, 1.69088, 0.656368, 1.08696, -0.656093, 8.7904, 0.474582, 3.48088, -4.01885, 0.430774, -8.2549, 1.40824, -0.796829, -1.40965, 1.40473, -1.7368, 1.49137, -4.03371, -3.55102, 4.03402, -1.61912, -1.74715, -1.27907}, {-1.79282, 0.318141, -0.550454, 0.482922, -1.73161, -0.484335, -1.96059, -0.979522, -5.07265, 0.656368, 1.08696, -0.656093, 1.61912, 1.74715, 1.27907, -3.33642, 8.66325, 0.445966, 8.57952, -2.06939, 0.792169, 1.40473, -1.7368, 1.49137, -1.40824, 0.796829, 1.40965, -4.24459, -6.095, 1.3453}, {-1.79282, 0.318141, -0.550454, 0.482922, -1.73161, -0.484335, 0.65353, 0.326507, 1.69088, -1.9691, -3.26089, 1.96828, 1.61912, 1.74715, 1.27907, -1.40473, 1.7368, -1.49137, 1.40824, -0.796829, -1.40965, 8.57601, -3.00937, 3.69319, -3.33993, 7.72327, 3.34699, -4.23324, -3.05317, -8.0426}, {-8.19974, -2.81226, -4.15773, 1.49846, -0.593081, -0.985836, -2.7214, 1.07711, -0.607179, -1.5103, -1.42145, 0.207104, -11.2245, 1.9467, 3.44883, 1.51164, -0.598298, 1.96907, 10.8709, -6.79856, 1.46615, 4.52957, 6.28411, -2.79749, 0.0146435, 2.4901, 0.962565, 5.23067, 0.425625, 0.494519}, {2.73325, 0.937419, 1.38591, -4.49537, 1.77924, 2.95751, -2.7214, 1.07711, -0.607179, -1.5103, -1.42145, 0.207104, -16.1637, -4.1753, -6.03816, 12.3972, -4.90676, 4.39779, -0.0146435, -2.4901, -0.962565, -1.51164, 0.598298, -1.96907, 6.05586, 8.17591, 0.134147, 5.23067, 0.425625, 0.494519}, {2.73325, 0.937419, 1.38591, 1.49846, -0.593081, -0.985836, 8.16419, -3.23134, 1.82154, -1.5103, -1.42145, 0.207104, -5.23067, -0.425625, -0.494519, -4.48219, 1.77402, 5.91242, -10.9476, -6.23977, -6.50621, -1.51164, 0.598298, -1.96907, 0.0146435, 2.4901, 0.962565, 11.2719, 6.11143, -0.333899}, {2.73325, 0.937419, 1.38591, 1.49846, -0.593081, -0.985836, -2.7214, 1.07711, -0.607179, 4.53091, 4.26436, -0.621313, -5.23067, -0.425625, -0.494519, 1.51164, -0.598298, 1.96907, -0.0146435, -2.4901, -0.962565, -12.4446, -3.15138, -7.51272, -5.97918, 4.86242, 4.90591, 16.1163, -3.88283, 2.92323}, {-8.88178e-16, -2.39835, -6.05767, -3.06161e-16, 0.53318, -2.01922, -1.31177, -0.650588, 1.29879, 1.31177, -0.68204, -1.29879, 1.33227e-15, -3.77994, 8.07689, 1.62143, 0.145125, 0.890503, 6.86849, 2.41835, -9.29645, -6.86849, 2.58304, 4.30465, -1.62143, 0.184002, 4.10129, 0, 1.64722, 0}, {-2.22045e-16, 0.799449, 2.01922, -9.18483e-16, -1.59954, 6.05767, -1.31177, -0.650588, 1.29879, 1.31177, -0.68204, -1.29879, 8.88178e-16, -4.84502, -8.07689, 6.86849, 2.74748, -4.30465, 1.62143, -0.184002, -4.10129, -1.62143, -0.145125, -0.890503, -6.86849, 2.91216, 9.29645, 0, 1.64722, 0}, {1.77636e-15, 0.799449, 2.01922, -2.08189e-15, 0.53318, -2.01922, 3.9353, 1.95177, -3.89637, 1.31177, -0.68204, -1.29879, 2.22045e-16, -1.64722, -6.66134e-16, 1.62143, -1.98759, 8.96739, 1.62143, -3.3818, -12.1782, -1.62143, -0.145125, -0.890503, -1.62143, 0.184002, 4.10129, -5.24706, 4.37538, 5.19516}, {-6.66134e-16, 0.799449, 2.01922, 1.04095e-15, 0.53318, -2.01922, -1.31177, -0.650588, 1.29879, -3.9353, 2.04612, 3.89637, -6.66134e-16, -1.64722, -2.22045e-16, 1.62143, 0.145125, 0.890503, 1.62143, -0.184002, -4.10129, -1.62143, -3.34292, -8.96739, -1.62143, -1.94872, 12.1782, 5.24706, 4.24957, -5.19516}, {1.77636e-15, 0, 9.45441, 1.36261, 1.78885, 1.36261, 1.78885, -1.78885, 1.78885, -3.15147, 0, 0, -7.13474, -9.36656, -3.23931, -3.89543, 0, -3.89543, -9.36656, 9.36656, -5.47113, 16.5013, 0, 3.89543, 2.21115, -2.21115, -1.68428, 1.68428, 2.21115, -2.21115}, {4.44089e-16, -4.44089e-16, -3.15147, -4.08784, -5.36656, -4.08784, 1.78885, -1.78885, 1.78885, -3.15147, 0, 0, -1.68428, -2.21115, 14.817, -11.0508, 7.15542, -11.0508, -2.21115, 2.21115, 1.68428, 3.89543, 8.88178e-16, 3.89543, 14.817, -2.21115, -1.68428, 1.68428, 2.21115, -2.21115}, {0, 2.22045e-16, -3.15147, 1.36261, 1.78885, 1.36261, -5.36656, 5.36656, -5.36656, -3.15147, 0, 0, -1.68428, -2.21115, 2.21115, -9.34589, -7.15542, -9.34589, -2.21115, 2.21115, 14.2902, 3.89543, -4.44089e-16, 3.89543, 2.21115, -2.21115, -1.68428, 14.2902, 2.21115, -2.21115}, {4.44089e-16, 2.22045e-16, -3.15147, 1.36261, 1.78885, 1.36261, 1.78885, -1.78885, 1.78885, 9.45441, 0, 0, -1.68428, -2.21115, 2.21115, -3.89543, 4.44089e-16, -3.89543, -2.21115, 2.21115, 1.68428, 3.89543, 0, 16.5013, -3.23931, -9.36656, -7.13474, -5.47113, 9.36656, -9.36656}, {-2.46108, 3.54412, -0.0109738, -0.670026, 0.174063, -1.44271, 0.904569, 1.43103, -0.00443094, -1.0549, -0.423716, 1.44348, 2.49428, 0.548851, 7.54959, -0.28991, -1.984, 1.78876, -5.7504, -6.03269, 0.0186792, 4.50952, 3.67886, -7.56268, 2.13213, 0.308587, -0.000955489, 0.185824, -1.2451, -1.77876}, {0.820361, -1.18137, 0.00365793, 2.01008, -0.52219, 4.32812, 0.904569, 1.43103, -0.00443094, -1.0549, -0.423716, 1.44348, -3.46727, 5.9706, 1.76413, -3.90819, -7.7081, 1.80648, -2.13213, -0.308587, 0.000955489, 0.28991, 1.984, -1.78876, 6.35174, 2.00345, -5.77487, 0.185824, -1.2451, -1.77876}, {0.820361, -1.18137, 0.00365793, -0.670026, 0.174063, -1.44271, -2.71371, -4.29308, 0.0132928, -1.0549, -0.423716, 1.44348, -0.185824, 1.2451, 1.77876, 2.39019, -2.68025, 7.55959, -5.41357, 4.41691, -0.0136762, 0.28991, 1.984, -1.78876, 2.13213, 0.308587, -0.000955489, 4.40544, 0.449758, -7.55268}, {0.820361, -1.18137, 0.00365793, -0.670026, 0.174063, -1.44271, 0.904569, 1.43103, -0.00443094, 3.16471, 1.27115, -4.33044, -0.185824, 1.2451, 1.77876, -0.28991, -1.984, 1.78876, -2.13213, -0.308587, 0.000955489, -2.99153, 6.7095, -1.80339, 4.81224, -0.387667, 5.76987, -3.43245, -6.96921, -1.76104}, {-4.81192, -4.81192, 0.736124, -0.501255, 1.51797, 0.85277, 0.0700522, -1.94917, 0.533356, -1.17277, -1.17277, -1.14075, 0.641985, -9.9308, -4.16186, 0.532996, 0.532996, -1.71335, -2.34942, 8.22336, -2.48939, 4.15809, 4.15809, 6.27635, 2.06921, -0.426686, 0.355964, 1.36304, 3.85893, 0.750782}, {1.60397, 1.60397, -0.245375, 1.50376, -4.5539, -2.55831, 0.0700522, -1.94917, 0.533356, -1.17277, -1.17277, -1.14075, -7.77893, -10.2748, 0.230717, 0.252787, 8.32967, -3.84677, -2.06921, 0.426686, -0.355964, -0.532996, -0.532996, 1.71335, 6.76029, 4.2644, 4.91897, 1.36304, 3.85893, 0.750782}, {1.60397, 1.60397, -0.245375, -0.501255, 1.51797, 0.85277, -0.210157, 5.84751, -1.60007, -1.17277, -1.17277, -1.14075, -1.36304, -3.85893, -0.750782, 2.53802, -5.53887, -5.12443, -8.4851, -5.98921, 0.625534, -0.532996, -0.532996, 1.71335, 2.06921, -0.426686, 0.355964, 6.05412, 8.55001, 5.31379}, {1.60397, 1.60397, -0.245375, -0.501255, 1.51797, 0.85277, 0.0700522, -1.94917, 0.533356, 3.51831, 3.51831, 3.42225, -1.36304, -3.85893, -0.750782, 0.532996, 0.532996, -1.71335, -2.06921, 0.426686, -0.355964, -6.94889, -6.94889, 2.69484, 4.07423, -6.49855, -3.05512, 1.08283, 11.6556, -1.38264}, {-4.7272, -4.7272, -4.7272, -1.57573, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, 6.30294, 6.30294, -10.1984, -1.8181e-12, 3.89543, -1.80878e-12, -10.1984, 6.30294, 6.30294, 6.30294, -10.1984, 6.30294, 3.89543, -1.79678e-12, -1.79323e-12, 3.77476e-15, -3.77476e-15, 3.89543}, {1.57573, 1.57573, 1.57573, 4.7272, 4.7272, -4.7272, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, -6.30294, -6.30294, -10.1984, -6.30294, 10.1984, 6.30294, -3.89543, 1.79323e-12, 1.80544e-12, 1.81771e-12, -3.89543, 1.82415e-12, 10.1984, -6.30294, 6.30294, 3.55271e-15, -3.55271e-15, 3.89543}, {1.57573, 1.57573, 1.57573, -1.57573, -1.57573, 1.57573, -4.7272, 4.7272, 4.7272, -1.57573, 1.57573, -1.57573, -3.9968e-15, 3.10862e-15, -3.89543, 6.30294, 10.1984, -6.30294, -10.1984, -6.30294, -6.30294, 1.82792e-12, -3.89543, 1.81616e-12, 3.89543, -1.80234e-12, -1.79368e-12, 6.30294, -6.30294, 10.1984}, {1.57573, 1.57573, 1.57573, -1.57573, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, 4.7272, -4.7272, 4.7272, -2.66454e-15, 1.33227e-15, -3.89543, -1.81033e-12, 3.89543, -1.81055e-12, -3.89543, 1.80367e-12, 1.80389e-12, -6.30294, -10.1984, -6.30294, 10.1984, 6.30294, -6.30294, -6.30294, 6.30294, 10.1984}, {1.77636e-15, 8.88178e-16, 3.96048, -1.97452e-12, 2.01922, 0.776088, 1.44665, -0.572575, 0.322765, -1.44665, -1.44665, 0.221307, 1.03391e-11, -10.5728, -2.43184, -1.78815, -1.78815, -1.35826, -7.57474, 2.99804, -0.0582134, 7.57474, 7.57474, 0.47303, 1.78815, -0.707741, -1.23285, -2.44094e-12, 2.4959, -0.672511}, {2.22045e-16, 0, -1.32016, 5.92356e-12, -6.05767, -2.32827, 1.44665, -0.572575, 0.322765, -1.44665, -1.44665, 0.221307, 2.43894e-12, -2.4959, 5.95315, -7.57474, 0.502145, -2.64932, -1.78815, 0.707741, 1.23285, 1.78815, 1.78815, 1.35826, 7.57474, 5.07885, -2.11808, -2.44005e-12, 2.4959, -0.672511}, {4.44089e-16, 4.44089e-16, -1.32016, -1.97278e-12, 2.01922, 0.776088, -4.33994, 1.71772, -0.968296, -1.44665, -1.44665, 0.221307, 2.43805e-12, -2.4959, 0.672511, -1.78815, -9.86504, -4.46261, -1.78815, 0.707741, 6.51349, 1.78815, 1.78815, 1.35826, 1.78815, -0.707741, -1.23285, 5.78659, 8.28248, -1.55774}, {2.22045e-16, 2.22045e-16, -1.32016, -1.97211e-12, 2.01922, 0.776088, 1.44665, -0.572575, 0.322765, 4.33994, 4.33994, -0.663921, 2.43761e-12, -2.4959, 0.672511, -1.78815, -1.78815, -1.35826, -1.78815, 0.707741, 1.23285, 1.78815, 1.78815, 6.6389, 1.78815, -8.78463, -4.3372, -5.78659, 4.7862, -1.96357}, {-5.69487, 4.44089e-15, -2.66454e-15, -0.575562, 1.78885, 1.78885, 0.744968, -3.64699, -0.373467, -2.0677, 1.85814, -1.41539, 0.667265, -9.36656, -9.36656, -0.209397, 2.29678, -1.74951, -6.24712, 19.0959, 1.9555, 8.48018, -9.72932, 7.41106, 3.26725, -4.50793, -0.461631, 1.63498, 2.21115, 2.21115}, {1.89829, 2.66454e-15, -6.66134e-16, 1.72669, -5.36656, -5.36656, 0.744968, -3.64699, -0.373467, -2.0677, 1.85814, -1.41539, -9.22815, -2.21115, -2.21115, -3.18927, 16.8847, -0.255645, -3.26725, 4.50793, 0.461631, 0.209397, -2.29678, 1.74951, 11.538, -11.9405, 5.19992, 1.63498, 2.21115, 2.21115}, {1.89829, 3.55271e-15, 4.44089e-16, -0.575562, 1.78885, 1.78885, -2.2349, 10.941, 1.1204, -2.0677, 1.85814, -1.41539, -1.63498, -2.21115, -2.21115, 2.09285, -4.85864, -8.90493, -10.8604, 4.50793, 0.461631, 0.209397, -2.29678, 1.74951, 3.26725, -4.50793, -0.461631, 9.90577, -5.2214, 7.87269}, {1.89829, -2.44249e-15, 1.33227e-15, -0.575562, 1.78885, 1.78885, 0.744968, -3.64699, -0.373467, 6.20309, -5.57441, 4.24616, -1.63498, -2.21115, -2.21115, -0.209397, 2.29678, -1.74951, -3.26725, 4.50793, 0.461631, -7.38377, -2.29678, 1.74951, 5.5695, -11.6633, -7.61705, -1.34489, 16.7991, 3.70501}, {1.1885, -5.81832, -0.595821, 1.89829, -2.11601e-15, 5.39995e-16, -1.41683, -1.32819, -1.74168, -0.0852942, -0.611252, 1.54307, -9.44989, -2.39728, -0.245492, -0.59512, 1.64173, 2.15284, 7.9083, 4.5572, 8.87406, 0.936297, 0.803277, -8.32513, -2.24099, 0.755549, -1.90734, 1.85673, 2.39728, 0.245492}, {-0.396168, 1.93944, 0.198607, -5.69487, -1.01358e-15, -4.64389e-15, -1.41683, -1.32819, -1.74168, -0.0852942, -0.611252, 1.54307, -0.272056, -10.155, -1.03992, 5.0722, 6.95448, 9.11956, 2.24099, -0.755549, 1.90734, 0.59512, -1.64173, -2.15284, -1.89981, 3.20056, -8.07964, 1.85673, 2.39728, 0.245492}, {-0.396168, 1.93944, 0.198607, 1.89829, 0, 0, 4.25049, 3.98456, 5.22504, -0.0852942, -0.611252, 1.54307, -1.85673, -2.39728, -0.245492, -8.18828, 1.64173, 2.15284, 3.82566, -8.51331, 1.11292, 0.59512, -1.64173, -2.15284, -2.24099, 0.755549, -1.90734, 2.1979, 4.84229, -5.9268}, {-0.396168, 1.93944, 0.198607, 1.89829, 2.88057e-16, -7.27184e-16, -1.41683, -1.32819, -1.74168, 0.255883, 1.83376, -4.62922, -1.85673, -2.39728, -0.245492, -0.59512, 1.64173, 2.15284, 2.24099, -0.755549, 1.90734, 2.17979, -9.39949, -2.94726, -9.83415, 0.755549, -1.90734, 7.52404, 7.71003, 7.21221}, {-5.53939e-11, -0.00379978, 5.36656, -2.34313, -2.34273, 1.78885, -6.81003e-16, 2.34147, 0, 2.34313, 0, 0, 12.2688, 12.2651, -7.15542, 2.89626, 0.00156559, -2.21115, -2.28204e-11, -12.2616, 2.21115, -12.2688, -0.00156559, 2.21115, 2.28231e-11, 2.89578, -2.21115, -2.89626, -2.89421, 0}, {1.23088e-11, 0.00126659, -1.78885, 7.02938, 7.0282, -5.36656, -2.04301e-15, 2.34147, 0, 2.34313, -1.36201e-15, 0, 2.89626, 2.88915, 7.15542, 2.89626, -9.3643, -2.21115, -1.52118e-11, -2.89578, 2.21115, -2.89626, -0.00156559, 2.21115, -9.3725, 2.89578, -2.21115, -2.89626, -2.89421, 0}, {1.23057e-11, 0.00126659, -1.78885, -2.34313, -2.34273, 1.78885, 0, -7.0244, 0, 2.34313, 0, 0, 2.89626, 2.89421, 4.44089e-16, 12.2688, 9.3725, -9.36656, -6.44356e-11, -2.90084, 9.36656, -2.89626, -0.00156559, 2.21115, 1.52105e-11, 2.89578, -2.21115, -12.2688, -2.89421, 0}, {1.23084e-11, 0.00126659, -1.78885, -2.34313, -2.34273, 1.78885, 2.04301e-15, 2.34147, 0, -7.02938, 0, 0, 2.89626, 2.89421, 4.44089e-16, 2.89626, 0.00156559, -2.21115, -1.52163e-11, -2.89578, 2.21115, -2.89626, -0.00663197, 9.36656, 9.3725, 12.2667, -9.36656, -2.89626, -12.2601, 0}, {-7.02938, -5.36656, -7.02938, -1.21095e-11, -1.78885, -1.21105e-11, 0, 0, -2.34313, -2.34313, 0, 0, -2.89626, 7.15542, -2.89626, 1.49681e-11, 2.21115, 2.89626, -2.89626, -2.21115, 9.3725, 9.3725, -2.21115, -2.89626, 2.89626, 2.21115, 1.49694e-11, 2.89626, 0, 2.89626}, {2.34313, 1.78885, 2.34313, 5.47931e-11, 5.36656, 5.47978e-11, 0, 0, -2.34313, -2.34313, 0, 0, -12.2688, -7.15542, -12.2688, 2.2576e-11, 2.21115, 12.2688, -2.89626, -2.21115, -2.25785e-11, -2.25766e-11, -2.21115, -2.89626, 12.2688, 2.21115, 2.25779e-11, 2.89626, 0, 2.89626}, {2.34313, 1.78885, 2.34313, -1.21079e-11, -1.78885, -1.21105e-11, 0, 0, 7.02938, -2.34313, 0, 0, -2.89626, -4.44089e-16, -2.89626, 6.33979e-11, 9.36656, 2.89626, -12.2688, -9.36656, -9.3725, -1.49668e-11, -2.21115, -2.89626, 2.89626, 2.21115, 1.49694e-11, 12.2688, 0, 2.89626}, {2.34313, 1.78885, 2.34313, -1.21105e-11, -1.78885, -1.21079e-11, 0, 0, -2.34313, 7.02938, 0, 0, -2.89626, -4.44089e-16, -2.89626, 1.49694e-11, 2.21115, 2.89626, -2.89626, -2.21115, -1.49668e-11, -9.3725, -9.36656, -12.2688, 2.89626, 9.36656, 6.33979e-11, 2.89626, 0, 12.2688}, {6.00487, -2.5896, 0, 1.30033, -0.681296, -1.31177, -1.30033, -0.651333, 1.31177, 2.00162, 0.469428, 0, -4.33448, 2.50034, 6.86849, 0, 1.64722, 0, 9.28277, 2.34345, -6.86849, -8.00649, -3.52493, 0, -4.08144, 0.261882, 1.62143, -0.866843, 0.224847, -1.62143}, {-2.00162, 0.8632, -1.61346e-16, -3.901, 2.04389, 3.9353, -1.30033, -0.651333, 1.31177, 2.00162, 0.469428, -6.06985e-17, 8.87333, -3.67765, 1.62143, 5.20133, 4.25255, -5.24706, 4.08144, -0.261882, -1.62143, 5.28204e-17, -1.64722, 2.22045e-16, -12.0879, -1.61583, 1.62143, -0.866843, 0.224847, -1.62143}, {-2.00162, 0.8632, -1.00648e-16, 1.30033, -0.681296, -1.31177, 3.901, 1.954, -3.9353, 2.00162, 0.469428, -1.21397e-16, 0.866843, -0.224847, 1.62143, -5.20133, 4.3724, 5.24706, 12.0879, -3.71468, -1.62143, 4.9691e-16, -1.64722, 2.22045e-16, -4.08144, 0.261882, 1.62143, -8.87333, -1.65287, -1.62143}, {-2.00162, 0.8632, 0, 1.30033, -0.681296, -1.31177, -1.30033, -0.651333, 1.31177, -6.00487, -1.40829, 0, 0.866843, -0.224847, 1.62143, 0, 1.64722, 0, 4.08144, -0.261882, -1.62143, 8.00649, -5.10002, 0, -9.28277, 2.98706, 6.86849, 4.33448, 2.83018, -6.86849}, {-3.67855, 1.13524, -1.13945, -0.728854, -0.729491, 0.729491, -0.347691, -0.347995, -1.25767, -0.149637, 1.4559, 0.148365, 2.30068, 4.28741, -4.28915, 1.33068, 1.33185, 0.652868, 0.304891, 2.28987, 6.11578, -0.732135, -7.15545, -1.24633, 1.08587, -0.897892, -1.08509, 0.614731, -1.36945, 1.37118}, {1.22618, -0.378415, 0.379817, 2.18656, 2.18847, -2.18847, -0.347691, -0.347995, -1.25767, -0.149637, 1.4559, 0.148365, -5.51946, 2.8831, -2.89045, 2.72145, 2.72383, 5.68356, -1.08587, 0.897892, 1.08509, -1.33068, -1.33185, -0.652868, 1.68442, -6.72149, -1.67855, 0.614731, -1.36945, 1.37118}, {1.22618, -0.378415, 0.379817, -0.728854, -0.729491, 0.729491, 1.04307, 1.04399, 3.77302, -0.149637, 1.4559, 0.148365, -0.614731, 1.36945, -1.37118, 4.2461, 4.24981, -2.2651, -5.9906, 2.41155, -0.434178, -1.33068, -1.33185, -0.652868, 1.08587, -0.897892, -1.08509, 1.21328, -7.19305, 0.777722}, {1.22618, -0.378415, 0.379817, -0.728854, -0.729491, 0.729491, -0.347691, -0.347995, -1.25767, 0.448911, -4.3677, -0.445094, -0.614731, 1.36945, -1.37118, 1.33068, 1.33185, 0.652868, -1.08587, 0.897892, 1.08509, -6.23541, 0.181812, -2.17214, 4.00129, 2.02007, -4.00305, 2.0055, 0.0225343, 6.40187}, {-3.16808, 0, 5.09912e-16, -0.781545, 0, -1.31177, 0.234793, 1.31177, 1.31177, -0.509273, -1.31177, -1.26089e-16, 2.78691, 0, 6.86849, 0.675824, -1.62143, -2.22045e-16, -2.53471, -6.86849, -6.86849, 1.36127, 6.86849, 7.264e-16, 1.59554, 1.62143, 1.62143, 0.339276, 0, -1.62143}, {1.05603, 0, 6.58225e-17, 2.34464, 0, 3.9353, 0.234793, 1.31177, 1.31177, -0.509273, -1.31177, 3.78267e-16, -4.56338, 0, 1.62143, -0.263347, -6.86849, -5.24706, -1.59554, -1.62143, -1.62143, -0.675824, 1.62143, -4.44089e-16, 3.63263, 6.86849, 1.62143, 0.339276, 0, -1.62143}, {1.05603, -2.22045e-16, 6.02665e-17, -0.781545, 3.78267e-16, -1.31177, -0.704378, -3.9353, -3.9353, -0.509273, -1.31177, -5.04356e-16, -0.339276, -2.22045e-16, 1.62143, 3.80201, -1.62143, 5.24706, -5.81964, -1.62143, -1.62143, -0.675824, 1.62143, 4.44089e-16, 1.59554, 1.62143, 1.62143, 2.37637, 5.24706, -1.62143}, {1.05603, 0, 0, -0.781545, 0, -1.31177, 0.234793, 1.31177, 1.31177, 1.52782, 3.9353, 0, -0.339276, 0, 1.62143, 0.675824, -1.62143, 0, -1.59554, -1.62143, -1.62143, -4.89993, 1.62143, 0, 4.72172, 1.62143, 6.86849, -0.599895, -5.24706, -6.86849}, {-4.31352, 0.137385, -4.35145, -1.43784, 0.845244, 0.568738, 0, -1.33263, 0, 1.50855e-12, 0.53318, -2.01922, 5.75136, -4.36915, -4.77085, 1.77727, 0.602441, -0.702999, -1.77727, 7.03434, -1.7929, -1.77727, -2.73516, 8.77989, 1.77727, -1.70383, 1.7929, -1.86467e-12, 0.988174, 2.4959}, {1.43784, -0.0457949, 1.45048, 4.31352, -2.53573, -1.70622, 0, -1.33263, 0, 1.50567e-12, 0.53318, -2.01922, -5.75136, -0.804994, -8.29783, 1.77727, 5.93296, -0.702999, -1.77727, 1.70383, -1.7929, -1.77727, -0.602441, 0.702999, 1.77727, -3.83654, 9.86978, -1.86111e-12, 0.988174, 2.4959}, {1.43784, -0.0457949, 1.45048, -1.43784, 0.845244, 0.568738, 0, 3.99789, 0, 1.50891e-12, 0.53318, -2.01922, 1.86476e-12, -0.988174, -2.4959, 7.52863, -2.77854, -2.97795, -7.52863, 1.887, -7.59483, -1.77727, -0.602441, 0.702999, 1.77727, -1.70383, 1.7929, -7.90075e-12, -1.14454, 10.5728}, {1.43784, -0.0457949, 1.45048, -1.43784, 0.845244, 0.568738, 0, -1.33263, 0, -4.51484e-12, -1.59954, 6.05767, 1.85986e-12, -0.988174, -2.4959, 1.77727, 0.602441, -0.702999, -1.77727, 1.70383, -1.7929, -7.52863, -0.419261, -5.09894, 7.52863, -5.0848, -0.482057, -1.86021e-12, 6.31869, 2.4959}, {0, 7.02938, 1.2039e-15, 0, 0, -2.34313, 1.78885, 2.34313, 2.34059, -1.78885, -1.21095e-11, 0.00253498, 0, 2.89626, 12.2688, -2.21115, -2.89626, 0.00313341, -9.36656, -9.3725, -12.2555, 9.36656, 2.89626, -0.0132733, 2.21115, 1.49681e-11, 2.89313, 0, -2.89626, -2.89626}, {0, -2.34313, 2.70617e-16, 0, 0, 7.02938, 1.78885, 2.34313, 2.34059, -1.78885, -1.2111e-11, 0.00253498, 0, 12.2688, 2.89626, -9.36656, -12.2688, -9.35923, -2.21115, -1.49695e-11, -2.89313, 2.21115, 2.89626, -0.00313341, 9.36656, 6.34142e-11, 2.88299, 0, -2.89626, -2.89626}, {0, -2.34313, -2.48499e-16, 0, 0, -2.34313, -5.36656, -7.02938, -7.02177, -1.78885, -1.21116e-11, 0.00253498, 0, 2.89626, 2.89626, -2.21115, -2.89626, 9.37564, -2.21115, 9.3725, -2.89313, 2.21115, 2.89626, -0.00313341, 2.21115, 1.49707e-11, 2.89313, 7.15542, -2.89626, -2.9064}, {0, -2.34313, 5.31259e-16, 0, 0, -2.34313, 1.78885, 2.34313, 2.34059, 5.36656, 5.47978e-11, -0.00760494, 0, 2.89626, 2.89626, -2.21115, -2.89626, 0.00313341, -2.21115, -2.25774e-11, -2.89313, 2.21115, 12.2688, -0.00313341, 2.21115, 2.25779e-11, 12.2656, -7.15542, -12.2688, -12.2586}, {-3.23058, -0.349184, -0.349184, -0.223923, -1.25104, -1.25104, -0.552433, 1.28003, -0.0317341, -0.300503, -0.14539, 1.16638, -0.158596, 6.40664, 6.40664, 0.959628, -0.0358398, 1.58559, 1.56151, -6.8462, 0.0222906, 0.242385, 0.617398, -6.25109, 0.648226, 1.72608, 0.104646, 1.05429, -1.40249, -1.40249}, {1.07686, 0.116395, 0.116395, 0.671768, 3.75311, 3.75311, -0.552433, 1.28003, -0.0317341, -0.300503, -0.14539, 1.16638, -5.36172, 0.936916, 0.936916, 3.16936, -5.15596, 1.71253, -0.648226, -1.72608, -0.104646, -0.959628, 0.0358398, -1.58559, 1.85024, 2.30764, -4.56086, 1.05429, -1.40249, -1.40249}, {1.07686, 0.116395, 0.116395, -0.223923, -1.25104, -1.25104, 1.6573, -3.84009, 0.0952024, -0.300503, -0.14539, 1.16638, -1.05429, 1.40249, 1.40249, 1.85532, 4.96831, 6.58973, -4.95566, -2.19166, -0.570224, -0.959628, 0.0358398, -1.58559, 0.648226, 1.72608, 0.104646, 2.2563, -0.820936, -6.068}, {1.07686, 0.116395, 0.116395, -0.223923, -1.25104, -1.25104, -0.552433, 1.28003, -0.0317341, 0.90151, 0.436169, -3.49913, -1.05429, 1.40249, 1.40249, 0.959628, -0.0358398, 1.58559, -0.648226, -1.72608, -0.104646, -5.26706, -0.429738, -2.05117, 1.54392, 6.73022, 5.10879, 3.26402, -6.52262, -1.27556}, {5.36656, 7.02938, -7.02938, 0, 0, -2.34313, 1.78885, -1.02092e-11, 1.05679e-11, 0, 2.34313, 0, 2.21115, 2.89626, 9.3725, -2.21115, 1.26192e-11, 2.89626, -7.15542, 2.89626, -2.89626, 2.21115, -9.3725, -2.89626, 0, -2.89626, 2.89626, -2.21115, -2.89626, -1.30626e-11}, {-1.78885, -2.34313, 2.34313, 0, 0, 7.02938, 1.78885, -1.02081e-11, 1.05669e-11, -1.04056e-15, 2.34313, -6.14662e-27, 9.36656, 12.2688, -9.3725, -9.36656, 5.34504e-11, 2.89626, -8.4211e-16, 2.89626, -2.89626, 2.21115, -1.26174e-11, -2.89626, 5.44843e-15, -12.2688, 2.89626, -2.21115, -2.89626, -1.30613e-11}, {-1.78885, -2.34313, 2.34313, 0, 0, -2.34313, -5.36656, 3.06298e-11, -3.17084e-11, 0, 2.34313, 0, 2.21115, 2.89626, 1.3064e-11, -2.21115, 1.26202e-11, 12.2688, 7.15542, 12.2688, -12.2688, 2.21115, -1.26196e-11, -2.89626, 0, -2.89626, 2.89626, -2.21115, -12.2688, -1.30646e-11}, {-1.78885, -2.34313, 2.34313, 0, 0, -2.34313, 1.78885, -1.02092e-11, 1.05658e-11, 0, -7.02938, 0, 2.21115, 2.89626, 1.30595e-11, -2.21115, 1.26192e-11, 2.89626, 4.44089e-16, 2.89626, -2.89626, 9.36656, 9.3725, -12.2688, 0, -2.89626, 12.2688, -9.36656, -2.89626, -5.53233e-11}, {0, 9.45441, 0, 3.15147, 1.39953e-15, -1.39953e-15, -1.36261, 1.36261, 1.78885, -1.78885, 1.78885, -1.78885, -16.5013, 3.89543, 7.54952e-15, -2.21115, -1.68428, -2.21115, 7.13474, -3.23931, -9.36656, 9.36656, -5.47113, 9.36656, -1.68428, -2.21115, 2.21115, 3.89543, -3.89543, -1.77636e-15}, {8.88178e-16, -3.15147, 2.22045e-16, -9.45441, -1.00042e-15, 8.3972e-15, -1.36261, 1.36261, 1.78885, -1.78885, 1.78885, -1.78885, -3.89543, 16.5013, 5.32907e-15, 3.23931, -7.13474, -9.36656, 1.68428, 2.21115, -2.21115, 2.21115, 1.68428, 2.21115, 5.47113, -9.36656, 9.36656, 3.89543, -3.89543, -3.55271e-15}, {4.44089e-16, -3.15147, 0, 3.15147, 0, 0, 4.08784, -4.08784, -5.36656, -1.78885, 1.78885, -1.78885, -3.89543, 3.89543, 0, -14.817, -1.68428, -2.21115, 1.68428, 14.817, -2.21115, 2.21115, 1.68428, 2.21115, -1.68428, -2.21115, 2.21115, 11.0508, -11.0508, 7.15542}, {6.66134e-16, -3.15147, -2.22045e-16, 3.15147, 1.39953e-15, -1.39953e-15, -1.36261, 1.36261, 1.78885, 5.36656, -5.36656, 5.36656, -3.89543, 3.89543, 1.77636e-15, -2.21115, -1.68428, -2.21115, 1.68428, 2.21115, -2.21115, 2.21115, 14.2902, 2.21115, -14.2902, -2.21115, 2.21115, 9.34589, -9.34589, -7.15542}, {4.32877, -2.26802, -4.36683, -0.571101, 0.113693, -1.4431, 0, -1.33263, 0, 2.01402, 0.462931, -0.0125109, 4.77387, -1.52978, 5.75693, 0.70592, 1.50669, 1.78377, 1.78355, 6.04326, -1.79923, -8.76202, -3.35841, -1.73373, -1.78355, -0.712746, 1.79923, -2.48947, 1.07501, 0.0154644}, {-1.44292, 0.756005, 1.45561, 1.7133, -0.34108, 4.3293, 0, -1.33263, 0, 2.01402, 0.462931, -0.0125109, 8.26116, -4.09903, -5.83791, 0.70592, 6.8372, 1.78377, 1.78355, 0.712746, -1.79923, -0.70592, -1.50669, -1.78377, -9.83965, -2.56447, 1.84928, -2.48947, 1.07501, 0.0154644}, {-1.44292, 0.756005, 1.45561, -0.571101, 0.113693, -1.4431, 0, 3.99789, 0, 2.01402, 0.462931, -0.0125109, 2.48947, -1.07501, -0.0154644, 2.99032, 1.05191, 7.55617, 7.55524, -2.31127, -7.62167, -0.70592, -1.50669, -1.78377, -1.78355, -0.712746, 1.79923, -10.5456, -0.776716, 0.0655081}, {-1.44292, 0.756005, 1.45561, -0.571101, 0.113693, -1.4431, 0, -1.33263, 0, -6.04207, -1.38879, 0.0375328, 2.48947, -1.07501, -0.0154644, 0.70592, 1.50669, 1.78377, 1.78355, 0.712746, -1.79923, 5.06577, -4.53071, -7.60621, 0.500853, -1.16752, 7.57163, -2.48947, 6.40552, 0.0154644}, {-4.70136, -8.88178e-16, -1.57513e-15, 0.134389, 1.44665, -1.44665, -0.426776, 0.569981, 1.4404, -1.27473, -2.01663, 0.00624416, -2.64074, -7.57474, 7.57474, 0.36141, -2.49269, 0.00771821, 0.297559, -2.98446, -7.54205, 4.73753, 10.5592, -0.0326948, 1.40954, 0.704535, 1.78044, 2.10318, 1.78815, -1.78815}, {1.56712, -8.88178e-16, 1.00961e-15, -0.403167, -4.33994, 4.33994, -0.426776, 0.569981, 1.4404, -1.27473, -2.01663, 0.00624416, -8.37167, -1.78815, 1.78815, 2.06851, -4.77261, -5.75389, -1.40954, -0.704535, -1.78044, -0.36141, 2.49269, -0.00771821, 6.50848, 8.77105, 1.75546, 2.10318, 1.78815, -1.78815}, {1.56712, -1.33227e-15, 1.05818e-16, 0.134389, 1.44665, -1.44665, 1.28033, -1.70994, -4.32121, -1.27473, -2.01663, 0.00624416, -2.10318, -1.78815, 1.78815, -0.176146, -8.27928, 5.79431, -7.67803, -0.704535, -1.78044, -0.36141, 2.49269, -0.00771821, 1.40954, 0.704535, 1.78044, 7.20212, 9.85467, -1.81313}, {1.56712, 0, 2.67147e-16, 0.134389, 1.44665, -1.44665, -0.426776, 0.569981, 1.4404, 3.8242, 6.04988, -0.0187325, -2.10318, -1.78815, 1.78815, 0.36141, -2.49269, 0.00771821, -1.40954, -0.704535, -1.78044, -6.6299, 2.49269, -0.00771821, 0.871989, -5.08205, 7.56702, 3.81029, -0.491769, -7.54977}, {-3.47256, 2.13004, 3.47613, -1.55533, -0.53343, -0.78864, -0.511744, 1.83496, 0.513241, 0.909554, -0.591516, 1.43411, 6.71303, 3.6707, 5.56162, 2.55504, -1.60878, 0.340411, 1.24875, -8.73034, -1.25512, -6.19326, 3.97484, -6.07685, 0.798222, 1.39051, -0.797844, -0.49172, -1.53698, -2.40706}, {1.15752, -0.710012, -1.15871, 4.66599, 1.60029, 2.36592, -0.511744, 1.83496, 0.513241, 0.909554, -0.591516, 1.43411, -4.13836, 4.37703, 7.0419, 4.60202, -8.94861, -1.71255, -0.798222, -1.39051, 0.797844, -2.55504, 1.60878, -0.340411, -2.83999, 3.75657, -6.53428, -0.49172, -1.53698, -2.40706}, {1.15752, -0.710012, -1.15871, -1.55533, -0.53343, -0.78864, 1.53523, -5.50487, -1.53972, 0.909554, -0.591516, 1.43411, 0.49172, 1.53698, 2.40706, 8.77636, 0.524942, 3.49497, -5.4283, 1.44954, 5.43269, -2.55504, 1.60878, -0.340411, 0.798222, 1.39051, -0.797844, -4.12993, 0.829086, -8.14349}, {1.15752, -0.710012, -1.15871, -1.55533, -0.53343, -0.78864, -0.511744, 1.83496, 0.513241, -2.72866, 1.77455, -4.30233, 0.49172, 1.53698, 2.40706, 2.55504, -1.60878, 0.340411, -0.798222, -1.39051, 0.797844, -7.18512, 4.44882, 4.29443, 7.01954, 3.52423, 2.35672, 1.55526, -8.87681, -4.46002}, {-0.0259854, 4.18315, -1.68926, -1.44604, -0.0976914, -0.778579, 1.44538, 0.20404, -0.351453, -0.00800116, 1.28804, 0.566947, 7.56086, 2.23507, 3.38068, 0.000816584, -0.131455, 1.3968, -7.57881, 0.655184, 1.14422, 0.031188, -5.02069, -3.66458, 1.79729, -1.47135, 0.261592, -1.7767, -1.84431, -0.266365}, {0.00866179, -1.39438, 0.563086, 4.33812, 0.293074, 2.33574, 1.44538, 0.20404, -0.351453, -0.00800116, 1.28804, 0.566947, 1.74205, 7.42184, -1.98598, -5.7807, -0.947617, 2.80261, -1.79729, 1.47135, -0.261592, -0.000816584, 0.131455, -1.3968, 1.8293, -6.62349, -2.0062, -1.7767, -1.84431, -0.266365}, {0.00866179, -1.39438, 0.563086, -1.44604, -0.0976914, -0.778579, -4.33614, -0.612121, 1.05436, -0.00800116, 1.28804, 0.566947, 1.7767, 1.84431, 0.266365, 5.78498, 0.259311, 4.51111, -1.83194, 7.04888, -2.51393, -0.000816584, 0.131455, -1.3968, 1.79729, -1.47135, 0.261592, -1.74469, -6.99645, -2.53415}, {0.00866179, -1.39438, 0.563086, -1.44604, -0.0976914, -0.778579, 1.44538, 0.20404, -0.351453, 0.0240035, -3.86411, -1.70084, 1.7767, 1.84431, 0.266365, 0.000816584, -0.131455, 1.3968, -1.79729, 1.47135, -0.261592, -0.0354637, 5.70899, -3.64914, 7.58145, -1.08058, 3.37591, -7.55822, -2.66047, 1.13945}, {5.36656, -5.36656, -5.36656, 3.15147, -4.93118e-15, 0, -1.36261, 1.36261, -1.78885, 0, -3.15147, 0, -14.2902, -2.21115, -2.21115, -2.21115, -1.68428, 2.21115, 9.34589, -9.34589, 7.15542, 2.21115, 14.2902, -2.21115, -3.89543, 3.89543, 0, 1.68428, 2.21115, 2.21115}, {-1.78885, 1.78885, 1.78885, -9.45441, 1.0595e-14, -4.1986e-15, -1.36261, 1.36261, -1.78885, 0, -3.15147, 0, 5.47113, -9.36656, -9.36656, 3.23931, -7.13474, 9.36656, 3.89543, -3.89543, 1.28583e-15, 2.21115, 1.68428, -2.21115, -3.89543, 16.5013, -1.72992e-15, 1.68428, 2.21115, 2.21115}, {-1.78885, 1.78885, 1.78885, 3.15147, 0, 0, 4.08784, -4.08784, 5.36656, 0, -3.15147, 0, -1.68428, -2.21115, -2.21115, -14.817, -1.68428, 2.21115, 11.0508, -11.0508, -7.15542, 2.21115, 1.68428, -2.21115, -3.89543, 3.89543, 0, 1.68428, 14.817, 2.21115}, {-1.78885, 1.78885, 1.78885, 3.15147, -4.93118e-15, 0, -1.36261, 1.36261, -1.78885, 0, 9.45441, 0, -1.68428, -2.21115, -2.21115, -2.21115, -1.68428, 2.21115, 3.89543, -3.89543, -4.44089e-16, 9.36656, -5.47113, -9.36656, -16.5013, 3.89543, 0, 7.13474, -3.23931, 9.36656}, {2.81269, -2.81269, -1.11325, -0.456393, -1.88673, -0.746758, 0.886018, 1.45711, 2.59594, 0.507938, -0.507938, -2.22026, 3.5486, 8.72017, 3.45139, -0.531046, 0.531046, -2.28571, -3.48036, -8.78841, -14.0512, -1.50071, 1.50071, 11.1668, -0.0637129, 2.95998, 3.66744, -1.72302, -1.17324, -0.464361}, {-0.937563, 0.937563, 0.371082, 1.36918, 5.6602, 2.24027, 0.886018, 1.45711, 2.59594, 0.507938, -0.507938, -2.22026, 5.47328, -2.57701, -1.01997, -4.07512, -5.29738, -12.6695, 0.0637129, -2.95998, -3.66744, 0.531046, -0.531046, 2.28571, -2.09546, 4.99173, 12.5485, -1.72302, -1.17324, -0.464361}, {-0.937563, 0.937563, 0.371082, -0.456393, -1.88673, -0.746758, -2.65805, -4.37132, -7.78781, 0.507938, -0.507938, -2.22026, 1.72302, 1.17324, 0.464361, 1.29453, 8.07798, 0.701322, 3.81396, -6.71023, -5.15177, 0.531046, -0.531046, 2.28571, -0.0637129, 2.95998, 3.66744, -3.75477, 0.858512, 8.41668}, {-0.937563, 0.937563, 0.371082, -0.456393, -1.88673, -0.746758, 0.886018, 1.45711, 2.59594, -1.52381, 1.52381, 6.66078, 1.72302, 1.17324, 0.464361, -0.531046, 0.531046, -2.28571, 0.0637129, -2.95998, -3.66744, 4.2813, -4.2813, 0.801382, 1.76186, 10.5069, 6.65447, -5.2671, -7.00167, -10.8481}, {8.88178e-16, 4.08096, 0.0852192, 2.97466e-16, 0.921902, -1.18196, 1.31177, 0.0265815, 1.34059, -1.31177, 0.411835, -0.130224, -1.11022e-15, -3.1457, 6.22395, -1.62143, -1.17239, -0.196078, -6.86849, 1.54226, -6.98432, 6.86849, -0.474951, 0.716974, 1.62143, -1.64859, 1.62195, 0, -0.541913, -1.4961}, {-2.22045e-16, -1.36032, -0.0284064, -4.46199e-16, -2.76571, 3.54589, 1.31177, 0.0265815, 1.34059, -1.31177, 0.411835, -0.130224, 8.88178e-16, 5.98319, 1.60972, -6.86849, -1.27872, -5.55845, -1.62143, 1.64859, -1.62195, 1.62143, 1.17239, 0.196078, 6.86849, -3.29593, 2.14285, 0, -0.541913, -1.4961}, {-1.33227e-15, -1.36032, -0.0284064, 4.46199e-16, 0.921902, -1.18196, -3.9353, -0.0797444, -4.02178, -1.31177, 0.411835, -0.130224, 8.88178e-16, 0.541913, 1.4961, -1.62143, -4.86, 4.53177, -1.62143, 7.08987, -1.50833, 1.62143, 1.17239, 0.196078, 1.62143, -1.64859, 1.62195, 5.24706, -2.18925, -0.975202}, {1.55431e-15, -1.36032, -0.0284064, -1.04113e-15, 0.921902, -1.18196, 1.31177, 0.0265815, 1.34059, 3.9353, -1.23551, 0.390672, -4.44089e-16, 0.541913, 1.4961, -1.62143, -1.17239, -0.196078, -1.62143, 1.64859, -1.62195, 1.62143, 6.61367, 0.309704, 1.62143, -5.3362, 6.3498, -5.24706, -0.648239, -6.85847}, {1.39697, -4.32433, -4.36732, 1.89829, -2.30844e-15, -1.37509e-15, 0.0801166, 0.574147, -1.4494, -1.51275, -2.01559, -0.00636856, -9.364, -1.78172, -1.79943, -2.44545, -0.709685, 1.79156, 0.156089, -4.78799, 5.78974, 8.49644, 8.77205, -1.76609, -0.476556, 2.49141, 0.00787198, 1.77083, 1.78172, 1.79943}, {-0.465658, 1.44144, 1.45577, -5.69487, 3.6613e-15, -2.04012e-15, 0.0801166, 0.574147, -1.4494, -1.51275, -2.01559, -0.00636856, 0.0918014, -7.54749, -7.62252, -2.76591, -3.00627, 7.58918, 0.476556, -2.49141, -0.00787198, 2.44545, 0.709685, -1.79156, 5.57444, 10.5538, 0.0333462, 1.77083, 1.78172, 1.79943}, {-0.465658, 1.44144, 1.45577, 1.89829, 0, 0, -0.24035, -1.72244, 4.34821, -1.51275, -2.01559, -0.00636856, -1.77083, -1.78172, -1.79943, -10.0386, -0.709685, 1.79156, 2.33919, -8.25718, -5.83096, 2.44545, 0.709685, -1.79156, -0.476556, 2.49141, 0.00787198, 7.82183, 9.84408, 1.82491}, {-0.465658, 1.44144, 1.45577, 1.89829, 9.49861e-16, 3.00123e-18, 0.0801166, 0.574147, -1.4494, 4.53825, 6.04677, 0.0191057, -1.77083, -1.78172, -1.79943, -2.44545, -0.709685, 1.79156, 0.476556, -2.49141, -0.00787198, 4.30808, -5.05609, -7.61465, -8.06972, 2.49141, 0.00787198, 1.45037, -0.514866, 7.59705}, {4.31352, -3.43679, 1.70622, 1.43784, 0.720211, -1.45048, 0, -1.33263, 0, -1.50621e-12, -0.53318, 2.01922, -5.75136, -5.18711, 8.29783, -1.77727, 0.75699, 1.7929, 1.77727, 5.5617, 0.702999, 1.77727, 1.37573, -9.86978, -1.77727, -0.231184, -0.702999, 1.86177e-12, 2.30627, -2.4959}, {-1.43784, 1.1456, -0.568738, -4.31352, -2.16063, 4.35145, 0, -1.33263, 0, -1.50909e-12, -0.53318, 2.01922, 5.75136, -6.88865, 4.77085, -1.77727, 6.08751, 1.7929, 1.77727, 0.231184, 0.702999, 1.77727, -0.75699, -1.7929, -1.77727, 1.90153, -8.77989, 1.86534e-12, 2.30627, -2.4959}, {-1.43784, 1.1456, -0.568738, 1.43784, 0.720211, -1.45048, 0, 3.99789, 0, -1.50945e-12, -0.53318, 2.01922, -1.86543e-12, -2.30627, 2.4959, -7.52863, -2.12386, 7.59483, 7.52863, -4.3512, 2.97795, 1.77727, -0.75699, -1.7929, -1.77727, -0.231184, -0.702999, 7.90358e-12, 4.43898, -10.5728}, {-1.43784, 1.1456, -0.568738, 1.43784, 0.720211, -1.45048, 0, -1.33263, 0, 4.52348e-12, 1.59954, -6.05767, -1.86342e-12, -2.30627, 2.4959, -1.77727, 0.75699, 1.7929, 1.77727, 0.231184, 0.702999, 7.52863, -5.33938, 0.482057, -7.52863, -3.11203, 5.09894, 1.86378e-12, 7.63678, -2.4959}, {-4.90958, -4.91099, -14.364, 1.57551, -1.57551, -1.57596, -1.57551, 1.57551, -1.57551, -1.63653, -1.637, -1.63653, -10.2723, 6.22604, 2.33354, -1.68754e-14, 1.70974e-14, 3.89543, 6.22661, -10.2729, 2.33118, 6.54611, 6.54798, 2.65068, 0.0754226, 3.97087, 3.97085, 3.9703, 0.076001, 3.9703}, {1.63653, 1.637, 4.788, -4.72653, 4.72653, 4.72788, -1.57551, 1.57551, -1.57551, -1.63653, -1.637, -1.63653, -10.5164, -6.62398, -23.1223, 6.30204, -6.30204, 10.1975, -0.0754226, -3.97087, -3.97085, 1.38046e-14, -1.50613e-14, -3.89543, 6.62153, 10.5189, 10.517, 3.9703, 0.076001, 3.9703}, {1.63653, 1.637, 4.788, 1.57551, -1.57551, -1.57596, 4.72653, -4.72653, 4.72653, -1.63653, -1.637, -1.63653, -3.9703, -0.076001, -3.9703, -6.30204, 6.30204, 10.1993, -6.62153, -10.5189, -23.1228, 1.64691e-14, -1.72818e-14, -3.89543, 0.0754226, 3.97087, 3.97085, 10.5164, 6.62398, 10.5164}, {1.63653, 1.637, 4.788, 1.57551, -1.57551, -1.57596, -1.57551, 1.57551, -1.57551, 4.90958, 4.91099, 4.90958, -3.9703, -0.076001, -3.9703, -1.70974e-14, 1.68754e-14, 3.89543, -0.0754226, -3.97087, -3.97085, -6.54611, -6.54798, -23.0474, -6.22661, 10.2729, 10.2747, 10.2723, -6.22604, 10.2723}, {1.1292, -10.9335, -1.11964, 0, 0, 1.60567, 1.79029, -1.78764, -1.78873, -1.41389, -1.85687, -0.190152, 0.465254, -4.50486, -8.8687, -2.21292, 2.20964, 0.226277, -8.90884, 4.85533, 8.90459, 7.8685, 5.21784, 0.53433, 1.74767, 2.29522, -1.74967, -0.465254, 4.50486, 2.44603}, {-0.376399, 3.64451, 0.373213, 3.83169e-15, 8.27924e-17, -4.817, 1.79029, -1.78764, -1.78873, -1.41389, -1.85687, -0.190152, 1.97085, -19.0829, -3.93889, -9.37409, 9.36019, 7.3812, -1.74767, -2.29522, 1.74967, 2.21292, -2.20964, -0.226277, 7.40324, 9.72271, -0.989068, -0.465254, 4.50486, 2.44603}, {-0.376399, 3.64451, 0.373213, -2.25438e-15, -2.96069e-15, 1.60567, -5.37088, 5.36291, 5.36619, -1.41389, -1.85687, -0.190152, 0.465254, -4.50486, -2.44603, -2.21292, 2.20964, -6.1964, -0.242074, -16.8733, 0.256821, 2.21292, -2.20964, -0.226277, 1.74767, 2.29522, -1.74967, 5.19032, 11.9323, 3.20664}, {-0.376399, 3.64451, 0.373213, 0, 0, 1.60567, 1.79029, -1.78764, -1.78873, 4.24168, 5.57061, 0.570455, 0.465254, -4.50486, -2.44603, -2.21292, 2.20964, 0.226277, -1.74767, -2.29522, 1.74967, 3.71852, -16.7877, -1.71913, 1.74767, 2.29522, -8.17235, -7.62642, 11.6554, 9.60095}, {-9.76996e-15, 8.88178e-16, -7.02938, 1.78885, 2.33948, -2.34059, -1.78885, 6.92504e-12, -0.00253498, 0, -2.33948, 0, -9.36656, -12.2497, 9.35923, 3.9968e-15, -2.89175, 2.89626, 9.36656, -3.62599e-11, -2.88299, -3.9968e-15, 12.2497, -2.89626, -2.21115, 8.55982e-12, 2.89313, 2.21115, 2.89175, 0.00313341}, {-2.22045e-15, -1.33227e-15, 2.34313, -5.36656, -7.01844, 7.02177, -1.78885, 6.92556e-12, -0.00253498, 0, -2.33948, 0, -2.21115, -2.89175, -9.37564, 7.15542, -2.89175, 2.9064, 2.21115, -8.55893e-12, -2.89313, 2.66454e-15, 2.89175, -2.89626, -2.21115, 9.35791, 2.89313, 2.21115, 2.89175, 0.00313341}, {3.9968e-15, 3.55271e-15, 2.34313, 1.78885, 2.33948, -2.34059, 5.36656, -2.0786e-11, 0.00760494, 0, -2.33948, 0, -2.21115, -2.89175, -0.00313341, -7.15542, -12.2497, 12.2586, 2.21115, -8.58513e-12, -12.2656, -4.88498e-15, 2.89175, -2.89626, -2.21115, 8.5687e-12, 2.89313, 2.21115, 12.2497, 0.00313341}, {0, 4.44089e-16, 2.34313, 1.78885, 2.33948, -2.34059, -1.78885, 6.92763e-12, -0.00253498, 0, 7.01844, 0, -2.21115, -2.89175, -0.00313341, 0, -2.89175, 2.89626, 2.21115, -8.56337e-12, -2.89313, 0, 2.89175, -12.2688, -9.36656, -9.35791, 12.2555, 9.36656, 2.89175, 0.0132733}, {5.21741, 5.22554, 3.98943, -2.33948, 0, 0, 1.54072, 1.54312, -0.61076, 2.53789, 0.198723, 1.94057, 14.3994, 2.15304, 1.64373, 0.987318, -1.90741, 0.754941, -5.91764, -5.92686, 4.84171, -11.1389, 1.11252, -8.51722, -0.245252, -0.245635, -2.39867, -5.04144, -2.15304, -1.64373}, {-1.73914, -1.74185, -1.32981, 7.01844, 0, 0, 1.54072, 1.54312, -0.61076, 2.53789, 0.198723, 1.94057, 11.998, 9.12042, 6.96297, -5.17557, -8.0799, 3.19798, 0.245252, 0.245635, 2.39867, -0.987318, 1.90741, -0.754941, -10.3968, -1.04052, -10.1609, -5.04144, -2.15304, -1.64373}, {-1.73914, -1.74185, -1.32981, -2.33948, 0, 0, -4.62217, -4.62937, 1.83228, 2.53789, 0.198723, 1.94057, 5.04144, 2.15304, 1.64373, 10.3452, -1.90741, 0.754941, 7.20179, 7.21302, 7.71791, -0.987318, 1.90741, -0.754941, -0.245252, -0.245635, -2.39867, -15.193, -2.94793, -9.40601}, {-1.73914, -1.74185, -1.32981, -2.33948, 0, 0, 1.54072, 1.54312, -0.61076, -7.61368, -0.596168, -5.82171, 5.04144, 2.15304, 1.64373, 0.987318, -1.90741, 0.754941, 0.245252, 0.245635, 2.39867, 5.96922, 8.87479, 4.5643, 9.11266, -0.245635, -2.39867, -11.2043, -8.32553, 0.799305}, {10.9417, 1.1195, -1.12048, -2.16738e-15, -8.61236e-16, 1.60567, 1.79007, 1.78742, -1.78898, 1.85717, -1.41425, -0.190182, 4.50824, 0.46126, -8.86905, -2.21265, -2.20937, 0.226585, -4.86469, -8.89778, 8.90555, -5.21604, 7.86637, 0.534145, -2.29559, 1.74811, -1.74964, -4.50824, -0.46126, 2.44638}, {-3.64724, -0.373167, 0.373493, -8.02431e-17, 3.82867e-15, -4.817, 1.79007, 1.78742, -1.78898, 1.85717, -1.41425, -0.190182, 19.0972, 1.95393, -3.94035, -9.37293, -9.35904, 7.3825, 2.29559, -1.74811, 1.74964, 2.21265, 2.20937, -0.226585, -9.72428, 7.40511, -0.988907, -4.50824, -0.46126, 2.44638}, {-3.64724, -0.373167, 0.373493, 2.96117e-15, -2.25495e-15, 1.60567, -5.37021, -5.36225, 5.36694, 1.85717, -1.41425, -0.190182, 4.50824, 0.46126, -2.44638, -2.21265, -2.20937, -6.19609, 16.8846, -0.25544, 0.255663, 2.21265, 2.20937, -0.226585, -2.29559, 1.74811, -1.74964, -11.9369, 5.19574, 3.20711}, {-3.64724, -0.373167, 0.373493, -7.40292e-16, 5.63738e-16, 1.60567, 1.79007, 1.78742, -1.78898, -5.57152, 4.24275, 0.570547, 4.50824, 0.46126, -2.44638, -2.21265, -2.20937, 0.226585, 2.29559, -1.74811, 1.74964, 16.8016, 3.70204, -1.72056, -2.29559, 1.74811, -8.17231, -11.6685, -7.61093, 9.60229}, {1.83228, 4.62937, -4.62937, 0, 0, -1.60567, 1.94057, -0.198723, 0.198723, -1.32981, 1.74185, -0.136178, 0.754941, 1.90741, 6.49998, -2.39867, 0.245635, 1.73908, -9.40601, 2.94793, -2.94793, 7.71791, -7.21302, -1.19437, 1.64373, -2.15304, 2.15304, -0.754941, -1.90741, -0.0773091}, {-0.61076, -1.54312, 1.54312, 0, 0, 4.817, 1.94057, -0.198723, 0.198723, -1.32981, 1.74185, -0.136178, 3.19798, 8.0799, -6.09519, -10.1609, 1.04052, 0.94419, -1.64373, 2.15304, -2.15304, 2.39867, -0.245635, -1.73908, 6.96297, -9.12042, 2.69775, -0.754941, -1.90741, -0.0773091}, {-0.61076, -1.54312, 1.54312, 0, 0, -1.60567, -5.82171, 0.596168, -0.596168, -1.32981, 1.74185, -0.136178, 0.754941, 1.90741, 0.0773091, -2.39867, 0.245635, 8.16175, 0.799305, 8.32553, -8.32553, 2.39867, -0.245635, -1.73908, 1.64373, -2.15304, 2.15304, 4.5643, -8.87479, 0.467403}, {-0.61076, -1.54312, 1.54312, 0, 0, -1.60567, 1.94057, -0.198723, 0.198723, 3.98943, -5.22554, 0.408534, 0.754941, 1.90741, 0.0773091, -2.39867, 0.245635, 1.73908, -1.64373, 2.15304, -2.15304, 4.84171, 5.92686, -7.91157, 1.64373, -2.15304, 8.57571, -8.51722, -1.11252, -0.872199}, {-1.12374, 4.33994, -1.71772, 0.422512, 1.58777e-12, -2.01922, 0.258935, 1.44665, 1.44665, -1.05603, 0, 0, -2.6753, 1.78815, 9.86504, -0.842315, -1.78815, 0.707741, -1.81881, -5.78659, -8.28248, 5.06642, 1.78815, -0.707741, 0.783066, -1.96259e-12, 2.4959, 0.985258, -1.78815, -1.78815}, {0.374579, -1.44665, 0.572575, -1.26754, -4.76439e-12, 6.05767, 0.258935, 1.44665, 1.44665, -1.05603, 0, 0, -2.48357, 7.57474, -0.502145, -1.87805, -7.57474, -5.07885, -0.783066, 1.9634e-12, -2.4959, 0.842315, 1.78815, -0.707741, 5.00717, -1.96304e-12, 2.4959, 0.985258, -1.78815, -1.78815}, {0.374579, -1.44665, 0.572575, 0.422512, 1.58777e-12, -2.01922, -0.776805, -4.33994, -4.33994, -1.05603, 0, 0, -0.985258, 1.78815, 1.78815, -2.53236, -1.78815, 8.78463, -2.28138, 5.78659, -4.7862, 0.842315, 1.78815, -0.707741, 0.783066, -1.96259e-12, 2.4959, 5.20936, -1.78815, -1.78815}, {0.374579, -1.44665, 0.572575, 0.422512, 1.58813e-12, -2.01922, 0.258935, 1.44665, 1.44665, 3.16808, 0, 0, -0.985258, 1.78815, 1.78815, -0.842315, -1.78815, 0.707741, -0.783066, 1.9634e-12, -2.4959, -0.656, 7.57474, -2.99804, -0.906981, -8.31556e-12, 10.5728, -0.0504823, -7.57474, -7.57474}, {-4.08784, 4.08784, -5.36656, 0, 3.15147, 0, -3.15147, 0, 0, 1.78885, -1.78885, -1.78885, -1.68428, -14.817, -2.21115, 3.89543, -3.89543, 0, 14.817, 1.68428, -2.21115, -11.0508, 11.0508, 7.15542, -2.21115, -1.68428, 2.21115, 1.68428, 2.21115, 2.21115}, {1.36261, -1.36261, 1.78885, -1.15954e-14, -9.45441, 4.1986e-15, -3.15147, 0, 0, 1.78885, -1.78885, -1.78885, -7.13474, 3.23931, -9.36656, 16.5013, -3.89543, 1.72992e-15, 2.21115, 1.68428, -2.21115, -3.89543, 3.89543, -2.17401e-15, -9.36656, 5.47113, 9.36656, 1.68428, 2.21115, 2.21115}, {1.36261, -1.36261, 1.78885, 0, 3.15147, 0, 9.45441, 0, 0, 1.78885, -1.78885, -1.78885, -1.68428, -2.21115, -2.21115, 3.89543, -16.5013, 0, -3.23931, 7.13474, -9.36656, -3.89543, 3.89543, -4.44089e-16, -2.21115, -1.68428, 2.21115, -5.47113, 9.36656, 9.36656}, {1.36261, -1.36261, 1.78885, 0, 3.15147, 0, -3.15147, 0, 0, -5.36656, 5.36656, 5.36656, -1.68428, -2.21115, -2.21115, 3.89543, -3.89543, 0, 2.21115, 1.68428, -2.21115, -9.34589, 9.34589, -7.15542, -2.21115, -14.2902, 2.21115, 14.2902, 2.21115, 2.21115}, {1.11747, -3.79023, -1.1121, -0.361676, -1.4194, 0.363688, 1.52298, 0.102889, 0.820003, -0.788811, 0.0531033, -1.55439, 2.35418, 5.87043, -2.3625, -1.43545, 1.6273, -1.46312, -7.51399, -2.1004, -4.7518, 4.59069, -1.83971, 7.68068, 1.42208, 1.68884, 1.47179, -0.907478, -0.192817, 0.907751}, {-0.372489, 1.26341, 0.370699, 1.08503, 4.25821, -1.09106, 1.52298, 0.102889, 0.820003, -0.788811, 0.0531033, -1.55439, 2.39743, -4.86083, -2.39055, -7.52735, 1.21575, -4.74314, -1.42208, -1.68884, -1.47179, 1.43545, -1.6273, 1.46312, 4.57732, 1.47643, 7.68935, -0.907478, -0.192817, 0.907751}, {-0.372489, 1.26341, 0.370699, -0.361676, -1.4194, 0.363688, -4.56893, -0.308667, -2.46001, -0.788811, 0.0531033, -1.55439, 0.907478, 0.192817, -0.907751, 0.0112586, 7.30492, -2.91787, 0.0678761, -6.74249, -2.95458, 1.43545, -1.6273, 1.46312, 1.42208, 1.68884, 1.47179, 2.24777, -0.40523, 7.12531}, {-0.372489, 1.26341, 0.370699, -0.361676, -1.4194, 0.363688, 1.52298, 0.102889, 0.820003, 2.36643, -0.15931, 4.66317, 0.907478, 0.192817, -0.907751, -1.43545, 1.6273, -1.46312, -1.42208, -1.68884, -1.47179, 2.9254, -6.68095, -0.0196727, 2.86879, 7.36645, 0.0170383, -6.99938, -0.604373, -2.37226}, {4.44089e-15, -4.05009, 8.88178e-16, -0.572575, -0.625677, 1.44665, 2.01922, -0.706554, 1.38558e-12, -1.44665, -0.0177991, -1.44665, 2.99804, 1.60736, -7.57474, -1.78815, 1.64673, -1.78815, -10.5728, 2.03083, -7.25442e-12, 7.57474, -1.57553, 7.57474, 2.4959, 0.79538, 1.71219e-12, -0.707741, 0.895349, 1.78815}, {-4.44089e-16, 1.35003, -2.22045e-15, 1.71772, 1.87703, -4.33994, 2.01922, -0.706554, 1.3879e-12, -1.44665, -0.0177991, -1.44665, 0.707741, -6.29547, -1.78815, -9.86504, 4.47294, -1.78815, -2.4959, -0.79538, -1.71263e-12, 1.78815, -1.64673, 1.78815, 8.28248, 0.866577, 5.78659, -0.707741, 0.895349, 1.78815}, {8.88178e-16, 1.35003, 6.66134e-16, -0.572575, -0.625677, 1.44665, -6.05767, 2.11966, -4.15591e-12, -1.44665, -0.0177991, -1.44665, 0.707741, -0.895349, -1.78815, 0.502145, 4.14944, -7.57474, -2.4959, -6.1955, -1.71596e-12, 1.78815, -1.64673, 1.78815, 2.4959, 0.79538, 1.7133e-12, 5.07885, 0.966546, 7.57474}, {4.44089e-16, 1.35003, 0, -0.572575, -0.625677, 1.44665, 2.01922, -0.706554, 1.38489e-12, 4.33994, 0.0533972, 4.33994, 0.707741, -0.895349, -1.78815, -1.78815, 1.64673, -1.78815, -2.4959, -0.79538, -1.71174e-12, 1.78815, -7.04685, 1.78815, 4.7862, 3.29809, -5.78659, -8.78463, 3.72156, 1.78815}, {1.70622, 4.31352, 1.19704, 8.51907e-16, 7.76069e-16, 1.08709, -1.45048, 1.43784, -0.312525, 2.01922, -1.65855e-12, -0.375548, 0.702999, 1.77727, -5.19885, 1.7929, -1.77727, -0.95741, 8.29783, -5.75136, 2.12961, -9.86978, 1.77727, 2.4596, -2.4959, 2.04913e-12, -0.879509, -0.702999, -1.77727, 0.850505}, {-0.568738, -1.43784, -0.399013, -2.80914e-15, 1.1641e-15, -3.26126, -1.45048, 1.43784, -0.312525, 2.01922, -1.65923e-12, -0.375548, 2.97795, 7.52863, 0.745546, 7.59483, -7.52863, 0.292691, 2.4959, -2.05105e-12, 0.879509, -1.7929, 1.77727, 0.95741, -10.5728, 8.68834e-12, 0.622683, -0.702999, -1.77727, 0.850505}, {-0.568738, -1.43784, -0.399013, 0, 0, 1.08709, 4.35145, -4.31352, 0.937576, 2.01922, -1.65685e-12, -0.375548, 0.702999, 1.77727, -0.850505, 1.7929, -1.77727, -5.30575, 4.77085, 5.75136, 2.47556, -1.7929, 1.77727, 0.95741, -2.4959, 2.04797e-12, -0.879509, -8.77989, -1.77727, 2.3527}, {-0.568738, -1.43784, -0.399013, 0, 0, 1.08709, -1.45048, 1.43784, -0.312525, -6.05767, 4.97324e-12, 1.12664, 0.702999, 1.77727, -0.850505, 1.7929, -1.77727, -0.95741, 2.4959, -2.04873e-12, 0.879509, 0.482057, 7.52863, 2.55346, -2.4959, 2.04909e-12, -5.22785, 5.09894, -7.52863, 2.10061}, {-2.41029, -2.40672, -2.40819, -0.80343, -0.802238, 0.80294, 1.63555, -1.63555, 0.0313083, -1.63555, 1.63555, -1.63698, 3.21372, 3.20895, -5.19647, -1.02855, 3.01327, -1.03119, -9.55693, 7.57221, -1.15616, 7.57074, -9.55546, 7.57909, 3.01474, -1.03003, 1.03093, 8.88178e-15, 5.77316e-15, 1.98471}, {0.80343, 0.802238, 0.802728, 2.41029, 2.40672, -2.40882, 1.63555, -1.63555, 0.0313083, -1.63555, 1.63555, -1.63698, -3.21372, -3.20895, -5.19563, -7.57074, 9.55546, -1.15642, -3.01474, 1.03003, -1.03093, 1.02855, -3.01327, 1.03119, 9.55693, -7.57221, 7.57883, 8.43769e-15, 7.54952e-15, 1.98471}, {0.80343, 0.802238, 0.802728, -0.80343, -0.802238, 0.80294, -4.90664, 4.90664, -0.0939249, -1.63555, 1.63555, -1.63698, -8.88178e-15, -7.54952e-15, -1.98471, 2.18516, 6.22222, -4.24295, -6.22846, -2.17893, -4.24184, 1.02855, -3.01327, 1.03119, 3.01474, -1.03003, 1.03093, 6.54219, -6.54219, 8.53262}, {0.80343, 0.802238, 0.802728, -0.80343, -0.802238, 0.80294, 1.63555, -1.63555, 0.0313083, 4.90664, -4.90664, 4.91093, -7.54952e-15, -8.43769e-15, -1.98471, -1.02855, 3.01327, -1.03119, -3.01474, 1.03003, -1.03093, -2.18516, -6.22222, -2.17973, 6.22846, 2.17893, -2.18083, -6.54219, 6.54219, 1.85948}, {-5.48006e-11, 5.36656, 0.00342441, 0, 0, -2.34462, 2.34313, 0, 0, -2.34313, 1.78885, 2.34576, -2.25788e-11, 2.21115, 12.278, -2.89626, 0, 2.89811, -12.2688, 2.21115, 0.00141093, 12.2688, -7.15542, -12.2812, 2.89626, -2.21115, -0.00141093, 2.25788e-11, -2.21115, -2.89952}, {1.2113e-11, -1.78885, -0.00114147, 0, 0, 7.03386, 2.34313, -1.04056e-15, -1.3645e-15, -2.34313, 1.78885, 2.34576, -6.34248e-11, 9.36656, 2.90409, -12.2688, 5.44843e-15, 2.89811, -2.89626, 2.21115, 0.00141093, 2.89626, -8.4211e-16, -2.89811, 12.2688, -9.36656, -9.38446, 1.49729e-11, -2.21115, -2.89952}, {1.2109e-11, -1.78885, -0.00114147, 0, 0, -2.34462, -7.02938, 0, 0, -2.34313, 1.78885, 2.34576, -1.49676e-11, 2.21115, 2.89952, -2.89626, 0, 12.2766, -2.89626, 9.36656, 0.00597681, 2.89626, 4.44089e-16, -2.89811, 2.89626, -2.21115, -0.00141093, 9.3725, -9.36656, -12.2826}, {1.21134e-11, -1.78885, -0.00114147, 0, 0, -2.34462, 2.34313, 0, 0, 7.02938, -5.36656, -7.03729, -1.49729e-11, 2.21115, 2.89952, -2.89626, 0, 2.89811, -2.89626, 2.21115, 0.00141093, 2.89626, 7.15542, -2.89354, 2.89626, -2.21115, 9.37707, -9.3725, -2.21115, -2.89952}, {-2.3518, -6.05767, -5.91704e-12, -0.0281756, -0.572575, -1.44665, -1.05603, 0, 0, 0.300269, -1.44665, 1.44665, -0.821464, 0.502145, 7.57474, 1.34015, 0.707741, 1.78815, 4.56043, -2.4959, -2.43827e-12, -2.54122, 5.07885, -7.57474, -0.336326, 2.4959, 2.43827e-12, 0.934166, 1.78815, -1.78815}, {0.783932, 2.01922, 1.9722e-12, 0.0845268, 1.71772, 4.33994, -1.05603, 0, 0, 0.300269, -1.44665, 1.44665, -4.06989, -9.86504, 1.78815, 5.56425, 0.707741, 1.78815, 0.336326, -2.4959, -2.43761e-12, -1.34015, -0.707741, -1.78815, -1.5374, 8.28248, -5.78659, 0.934166, 1.78815, -1.78815}, {0.783932, 2.01922, 1.97353e-12, -0.0281756, -0.572575, -1.44665, 3.16808, 0, 0, 0.300269, -1.44665, 1.44665, -0.934166, -1.78815, 1.78815, 1.45285, 2.99804, 7.57474, -2.7994, -10.5728, -1.03331e-11, -1.34015, -0.707741, -1.78815, -0.336326, 2.4959, 2.43938e-12, -0.266911, 7.57474, -7.57474}, {0.783932, 2.01922, 1.97287e-12, -0.0281756, -0.572575, -1.44665, -1.05603, 0, 0, -0.900808, 4.33994, -4.33994, -0.934166, -1.78815, 1.78815, 1.34015, 0.707741, 1.78815, 0.336326, -2.4959, -2.43872e-12, -4.47587, -8.78463, -1.78815, -0.223624, 4.7862, 5.78659, 5.15827, 1.78815, -1.78815}, {-2.45207, 5.12164, 2.36493, 0.0510009, -0.6557, 1.65667, -1.08957, 0.431245, -1.08957, 0.22121, 1.93167, 0.22121, -1.27735, 5.54352, -7.70003, 1.28374, 0.277442, -0.700975, 4.69474, -0.147797, 6.67946, -2.16858, -8.00412, -0.183865, -0.336471, -1.57718, -2.32119, 1.07335, -2.92072, 1.07335}, {0.817357, -1.70721, -0.788311, -0.153003, 1.9671, -4.97001, -1.08957, 0.431245, -1.08957, 0.22121, 1.93167, 0.22121, -4.34278, 9.74957, 2.07989, 5.64201, -1.44754, 3.6573, 0.336471, 1.57718, 2.32119, -1.28374, -0.277442, 0.700975, -1.22131, -9.30386, -3.20603, 1.07335, -2.92072, 1.07335}, {0.817357, -1.70721, -0.788311, 0.0510009, -0.6557, 1.65667, 3.2687, -1.29374, 3.2687, 0.22121, 1.93167, 0.22121, -1.07335, 2.92072, -1.07335, 1.07974, 2.90024, -7.32765, -2.93296, 8.40603, 5.47443, -1.28374, -0.277442, 0.700975, -0.336471, -1.57718, -2.32119, 0.18851, -10.6474, 0.18851}, {0.817357, -1.70721, -0.788311, 0.0510009, -0.6557, 1.65667, -1.08957, 0.431245, -1.08957, -0.66363, -5.795, -0.66363, -1.07335, 2.92072, -1.07335, 1.28374, 0.277442, -0.700975, 0.336471, 1.57718, 2.32119, -4.55317, 6.55141, 3.85422, -0.540475, 1.04562, -8.94786, 5.43162, -4.6457, 5.43162}, {-4.62937, -1.83228, -4.62937, 0.198723, -1.94057, 2.54185, 0, 0, -2.34313, -1.74185, 1.32981, -1.74185, -2.94793, 9.40601, -15.2167, -0.245635, 2.39867, -0.245635, -1.90741, -0.754941, 10.3614, 7.21302, -7.71791, 7.21302, 1.90741, 0.754941, -0.988857, 2.15304, -1.64373, 5.0493}, {1.54312, 0.61076, 1.54312, -0.596168, 5.82171, -7.62554, 0, 0, -2.34313, -1.74185, 1.32981, -1.74185, -8.32553, -0.799305, -11.2218, -0.245635, 2.39867, 9.12687, -1.90741, -0.754941, 0.988857, 0.245635, -2.39867, 0.245635, 8.87479, -4.5643, 5.97853, 2.15304, -1.64373, 5.0493}, {1.54312, 0.61076, 1.54312, 0.198723, -1.94057, 2.54185, 0, 0, 7.02938, -1.74185, 1.32981, -1.74185, -2.15304, 1.64373, -5.0493, -1.04052, 10.1609, -10.413, -8.0799, -3.19798, -5.18364, 0.245635, -2.39867, 0.245635, 1.90741, 0.754941, -0.988857, 9.12042, -6.96297, 12.0167}, {1.54312, 0.61076, 1.54312, 0.198723, -1.94057, 2.54185, 0, 0, -2.34313, 5.22554, -3.98943, 5.22554, -2.15304, 1.64373, -5.0493, -0.245635, 2.39867, -0.245635, -1.90741, -0.754941, 0.988857, -5.92686, -4.84171, -5.92686, 1.11252, 8.51722, -11.1562, 2.15304, -1.64373, 14.4218}, {3.9353, 3.03575, -0.94776, 1.31177, -0.633999, -0.948528, 0, 0.442478, 1.49023, 0, 1.20344, -0.85762, -5.24706, 4.57046, 4.57606, -1.62143, 0.236733, -0.669578, 1.62143, -1.06605, -8.19343, 1.62143, -5.05048, 4.10006, -1.62143, -0.703864, 2.23252, 0, -2.03446, -0.781946}, {-1.31177, -1.01192, 0.31592, -3.9353, 1.902, 2.84558, 0, 0.442478, 1.49023, 0, 1.20344, -0.85762, 5.24706, 6.08213, -0.481733, -1.62143, -1.53318, -6.63049, 1.62143, 0.703864, -2.23252, 1.62143, -0.236733, 0.669578, -1.62143, -5.51761, 5.663, 0, -2.03446, -0.781946}, {-1.31177, -1.01192, 0.31592, 1.31177, -0.633999, -0.948528, 0, -1.32743, -4.47068, 0, 1.20344, -0.85762, 3.2565e-16, 2.03446, 0.781946, -6.86849, 2.77273, 3.12453, 6.86849, 4.75153, -3.4962, 1.62143, -0.236733, 0.669578, -1.62143, -0.703864, 2.23252, 0, -6.84821, 2.64853}, {-1.31177, -1.01192, 0.31592, 1.31177, -0.633999, -0.948528, 0, 0.442478, 1.49023, 0, -3.61031, 2.57286, 3.2565e-16, 2.03446, 0.781946, -1.62143, 0.236733, -0.669578, 1.62143, 0.703864, -2.23252, 6.86849, 3.81093, -0.594102, -6.86849, 1.83213, 6.02663, 0, -3.80438, -6.74286}, {8.88178e-16, -9.65337e-16, 5.41667, 1.44665, 1.44665, 1.40715, 0.572575, -1.44665, 1.02216, -2.01922, -1.9703e-12, -0.623753, -7.57474, -7.57474, -5.13614, -2.4959, -2.43516e-12, -3.00279, -2.99804, 7.57474, -3.1203, 10.5728, 1.03164e-11, 5.4978, 0.707741, -1.78815, -0.968332, 1.78815, 1.78815, -0.492457}, {-4.44089e-16, -2.99727e-18, -1.80556, -4.33994, -4.33994, -4.22145, 0.572575, -1.44665, 1.02216, -2.01922, -1.97286e-12, -0.623753, -1.78815, -1.78815, 7.71468, -4.7862, 5.78659, -7.09142, -0.707741, 1.78815, 0.968332, 2.4959, 2.43872e-12, 3.00279, 8.78463, -1.78815, 1.52668, 1.78815, 1.78815, -0.492457}, {0, 1.65544e-16, -1.80556, 1.44665, 1.44665, 1.40715, -1.71772, 4.33994, -3.06648, -2.01922, -1.97103e-12, -0.623753, -1.78815, -1.78815, 0.492457, -8.28248, -5.78659, -8.63139, -0.707741, 1.78815, 8.19056, 2.4959, 2.43605e-12, 3.00279, 0.707741, -1.78815, -0.968332, 9.86504, 1.78815, 2.00255}, {0, 7.512e-17, -1.80556, 1.44665, 1.44665, 1.40715, 0.572575, -1.44665, 1.02216, 6.05767, 5.91749e-12, 1.87126, -1.78815, -1.78815, 0.492457, -2.4959, -2.43805e-12, -3.00279, -0.707741, 1.78815, 0.968332, 2.4959, 2.43775e-12, 10.225, -5.07885, -7.57474, -6.59693, -0.502145, 7.57474, -4.58109}, {4.36745, -2.27082, -4.32425, 1.62046e-12, 0.53318, -2.01922, 0, -1.33263, 0, 1.45582, 0.0425099, 0.577805, 1.79949, -3.72739, 8.79109, -2.00299e-12, 0.988174, 2.4959, 1.79949, 6.04211, -1.78169, -5.82327, -1.15821, -4.80711, -1.79949, -0.711591, 1.78169, -1.79949, 1.59467, -0.714206}, {-1.45582, 0.756939, 1.44142, -4.85808e-12, -1.59954, 6.05767, 0, -1.33263, 0, 1.45582, 0.0425099, 0.577805, 7.62276, -4.62243, -5.05146, -2.00164e-12, 6.31869, 2.4959, 1.79949, 0.711591, -1.78169, 2.002e-12, -0.988174, -2.4959, -7.62276, -0.881631, -0.529529, -1.79949, 1.59467, -0.714206}, {-1.45582, 0.756939, 1.44142, 1.61717e-12, 0.53318, -2.01922, 0, 3.99789, 0, 1.45582, 0.0425099, 0.577805, 1.79949, -1.59467, 0.714206, -8.46762e-12, -1.14454, 10.5728, 7.62276, -2.31617, -7.54736, 1.9993e-12, -0.988174, -2.4959, -1.79949, -0.711591, 1.78169, -7.62276, 1.42464, -3.02542}, {-1.45582, 0.756939, 1.44142, 1.61827e-12, 0.53318, -2.01922, 0, -1.33263, 0, -4.36745, -0.12753, -1.73341, 1.79949, -1.59467, 0.714206, -2.00029e-12, 0.988174, 2.4959, 1.79949, 0.711591, -1.78169, 5.82327, -4.01593, -8.26156, -1.79949, -2.84431, 9.85858, -1.79949, 6.92519, -0.714206}, {-3.26389, 1.55026, 1.55311, -0.994319, -0.995188, -0.994319, -0.203724, 1.40177, -0.203724, 0.110078, 0.110174, 1.71575, 3.86152, 5.84961, 5.84624, 1.48086, -0.502558, 1.48086, -0.278087, -6.701, 1.70663, -1.92117, 0.0618612, -8.34385, 1.09298, 1.09394, -0.891733, 0.115752, -1.86886, -1.86896}, {1.08796, -0.516753, -0.517703, 2.98296, 2.98556, 2.98296, -0.203724, 1.40177, -0.203724, 0.110078, 0.110174, 1.71575, -4.46761, 3.93587, 3.93978, 2.29576, -6.10962, 2.29576, -1.09298, -1.09394, 0.891733, -1.48086, 0.502558, -1.48086, 0.65267, 0.65324, -7.75472, 0.115752, -1.86886, -1.86896}, {1.08796, -0.516753, -0.517703, -0.994319, -0.995188, -0.994319, 0.611171, -4.2053, 0.611171, 0.110078, 0.110174, 1.71575, -0.115752, 1.86886, 1.86896, 5.45814, 3.47819, 5.45814, -5.44484, 0.973073, 2.96255, -1.48086, 0.502558, -1.48086, 1.09298, 1.09394, -0.891733, -0.32456, -2.30956, -8.73195}, {1.08796, -0.516753, -0.517703, -0.994319, -0.995188, -0.994319, -0.203724, 1.40177, -0.203724, -0.330234, -0.330523, -5.14724, -0.115752, 1.86886, 1.86896, 1.48086, -0.502558, 1.48086, -1.09298, -1.09394, 0.891733, -5.83272, 2.56957, 0.589952, 5.07026, 5.07469, 3.08554, 0.930647, -7.47593, -1.05407}, {5.37021, -5.36225, 5.37163, 3.64724, -0.373167, 0.376681, -1.85717, -1.41425, -0.191806, 0, 0, 1.60567, -16.8846, -0.25544, 0.240906, -2.21265, 2.20937, -0.228519, 11.9369, 5.19574, 3.21754, 2.21265, -2.20937, -6.19415, -4.50824, 0.46126, -2.45032, 2.29559, 1.74811, -1.74763}, {-1.79007, 1.78742, -1.79054, -10.9417, 1.1195, -1.13004, -1.85717, -1.41425, -0.191806, 7.40292e-16, 5.63738e-16, 1.60567, 4.86469, -8.89778, 8.9098, 5.21604, 7.86637, 0.538704, 4.50824, -0.46126, 2.45032, 2.21265, -2.20937, 0.228519, -4.50824, 0.46126, -8.87299, 2.29559, 1.74811, -1.74763}, {-1.79007, 1.78742, -1.79054, 3.64724, -0.373167, 0.376681, 5.57152, 4.24275, 0.575417, 0, 0, 1.60567, -2.29559, -1.74811, 1.74763, -16.8016, 3.70204, -1.73524, 11.6685, -7.61093, 9.61249, 2.21265, -2.20937, 0.228519, -4.50824, 0.46126, -2.45032, 2.29559, 1.74811, -8.1703}, {-1.79007, 1.78742, -1.79054, 3.64724, -0.373167, 0.376681, -1.85717, -1.41425, -0.191806, 0, 0, -4.817, -2.29559, -1.74811, 1.74763, -2.21265, 2.20937, -0.228519, 4.50824, -0.46126, 2.45032, 9.37293, -9.35904, 7.39069, -19.0972, 1.95393, -3.95704, 9.72428, 7.40511, -0.980408}, {-3.03198, 1.78237, 1.1993, 0.5032, 0.50364, 1.82018, -0.838801, -0.839534, 0.331788, -0.67506, 0.930018, -1.7522, -3.88404, -1.90272, -9.03645, 0.414826, 0.415188, -2.65998, 3.14277, 5.13024, -1.24312, 2.28541, -4.13526, 9.66879, 0.212431, -1.7721, -0.084027, 1.87124, -0.111844, 1.75573}, {1.01066, -0.594124, -0.399767, -1.5096, -1.51092, -5.46054, -0.838801, -0.839534, 0.331788, -0.67506, 0.930018, -1.7522, -5.91388, 2.48834, -0.156659, 3.77003, 3.77333, -3.98713, -0.212431, 1.7721, 0.084027, -0.414826, -0.415188, 2.65998, 2.91267, -5.49217, 6.92478, 1.87124, -0.111844, 1.75573}, {1.01066, -0.594124, -0.399767, 0.5032, 0.50364, 1.82018, 2.5164, 2.5186, -0.995364, -0.67506, 0.930018, -1.7522, -1.87124, 0.111844, -1.75573, -1.59797, -1.59937, -9.9407, -4.25508, 4.14859, 1.6831, -0.414826, -0.415188, 2.65998, 0.212431, -1.7721, -0.084027, 4.57148, -3.83192, 8.76454}, {1.01066, -0.594124, -0.399767, 0.5032, 0.50364, 1.82018, -0.838801, -0.839534, 0.331788, 2.02518, -2.79005, 5.25661, -1.87124, 0.111844, -1.75573, 0.414826, 0.415188, -2.65998, -0.212431, 1.7721, 0.084027, -4.45747, 1.96131, 4.25905, -1.80037, -3.78666, -7.36475, 5.22644, 3.24629, 0.428576}, {-4.62937, 1.83228, -4.62937, 0.198723, 1.94057, 2.54185, -1.74185, -1.32981, -1.74185, 0, 0, -2.34313, -2.94793, -9.40601, -15.2167, 1.90741, -0.754941, -0.988857, 7.21302, 7.71791, 7.21302, -1.90741, 0.754941, 10.3614, -0.245635, -2.39867, -0.245635, 2.15304, 1.64373, 5.0493}, {1.54312, -0.61076, 1.54312, -0.596168, -5.82171, -7.62554, -1.74185, -1.32981, -1.74185, 0, 0, -2.34313, -8.32553, 0.799305, -11.2218, 8.87479, 4.5643, 5.97853, 0.245635, 2.39867, 0.245635, -1.90741, 0.754941, 0.988857, -0.245635, -2.39867, 9.12687, 2.15304, 1.64373, 5.0493}, {1.54312, -0.61076, 1.54312, 0.198723, 1.94057, 2.54185, 5.22554, 3.98943, 5.22554, 0, 0, -2.34313, -2.15304, -1.64373, -5.0493, 1.11252, -8.51722, -11.1562, -5.92686, 4.84171, -5.92686, -1.90741, 0.754941, 0.988857, -0.245635, -2.39867, -0.245635, 2.15304, 1.64373, 14.4218}, {1.54312, -0.61076, 1.54312, 0.198723, 1.94057, 2.54185, -1.74185, -1.32981, -1.74185, 0, 0, 7.02938, -2.15304, -1.64373, -5.0493, 1.90741, -0.754941, -0.988857, 0.245635, 2.39867, 0.245635, -8.0799, 3.19798, -5.18364, -1.04052, -10.1609, -10.413, 9.12042, 6.96297, 12.0167}, {-4.33994, 0.458772, -1.71772, 0, 1.39654, 0, -1.44665, -0.27723, 1.44665, 1.76979e-12, -0.966385, -2.01922, -1.78815, -7.12335, -0.707741, 1.78815, -1.38354, -1.78815, 5.78659, 1.64062, -8.28248, -1.78815, 5.24908, 9.86504, -2.18758e-12, -0.531699, 2.4959, 1.78815, 1.53719, 0.707741}, {1.44665, -0.152924, 0.572575, 1.50464e-15, -4.18962, 4.79586e-15, -1.44665, -0.27723, 1.44665, 1.77122e-12, -0.966385, -2.01922, -7.57474, -0.925496, -2.99804, 7.57474, -0.274623, -7.57474, 2.18837e-12, 0.531699, -2.4959, -1.78815, 1.38354, 1.78815, -9.27361e-12, 3.33384, 10.5728, 1.78815, 1.53719, 0.707741}, {1.44665, -0.152924, 0.572575, 2.45632e-27, 1.39654, -2.80022e-15, 4.33994, 0.831689, -4.33994, 1.77124e-12, -0.966385, -2.01922, -1.78815, -1.53719, -0.707741, 1.78815, -6.9697, -1.78815, -5.78659, 1.1434, -4.7862, -1.78815, 1.38354, 1.78815, -2.18937e-12, -0.531699, 2.4959, 1.78815, 5.40273, 8.78463}, {1.44665, -0.152924, 0.572575, 0, 1.39654, 0, -1.44665, -0.27723, 1.44665, -5.31262e-12, 2.89915, 6.05767, -1.78815, -1.53719, -0.707741, 1.78815, -1.38354, -1.78815, 2.18856e-12, 0.531699, -2.4959, -7.57474, 1.99524, -0.502145, -2.18892e-12, -6.11785, 2.4959, 7.57474, 2.64611, -5.07885}, {3.99411, 0.408657, -5.22602, 1.94285, 0.198782, -0.198956, -0.611477, 1.5417, -1.54305, 0, -1.60427, 0, -8.52722, -0.872462, -1.11149, -1.64567, -2.15136, 2.15324, 4.8474, -7.90408, 5.92628, 1.64567, 8.56842, -2.15324, -2.40149, 1.73727, 0.245923, 0.755828, 0.0773324, 1.90731}, {-1.33137, -0.136219, 1.74201, -5.82855, -0.596347, 0.596868, -0.611477, 1.5417, -1.54305, 0, -1.60427, 0, 4.56966, 0.467544, -8.87534, 0.800244, -8.31817, 8.32544, 2.40149, -1.73727, -0.245923, 1.64567, 2.15136, -2.15324, -2.40149, 8.15434, 0.245923, 0.755828, 0.0773324, 1.90731}, {-1.33137, -0.136219, 1.74201, 1.94285, 0.198782, -0.198956, 1.83443, -4.62511, 4.62915, 0, -1.60427, 0, -0.755828, -0.0773324, -1.90731, -9.41706, -2.94649, 2.94906, 7.72698, -1.1924, -7.21395, 1.64567, 2.15136, -2.15324, -2.40149, 1.73727, 0.245923, 0.755828, 6.4944, 1.90731}, {-1.33137, -0.136219, 1.74201, 1.94285, 0.198782, -0.198956, -0.611477, 1.5417, -1.54305, 0, 4.8128, 0, -0.755828, -0.0773324, -1.90731, -1.64567, -2.15136, 2.15324, 2.40149, -1.73727, -0.245923, 6.97115, 2.69623, -9.12126, -10.1729, 0.942144, 1.04175, 3.20174, -6.08948, 8.07952}, {1.7133, -2.45292, -4.3293, -1.44292, 0.0459567, -1.45561, 0, -1.33263, 0, 2.01402, 0.469033, 0.0125109, 8.26116, -1.25129, 5.83791, 1.78355, 1.59041, 1.79923, 0.70592, 5.96708, -1.78377, -9.83965, -3.46655, -1.84928, -0.70592, -0.636563, 1.78377, -2.48947, 1.06746, -0.0154644}, {-0.571101, 0.817639, 1.4431, 4.32877, -0.13787, 4.36683, 0, -1.33263, 0, 2.01402, 0.469033, 0.0125109, 4.77387, -4.33802, -5.75693, 1.78355, 6.92093, 1.79923, 0.70592, 0.636563, -1.78377, -1.78355, -1.59041, -1.79923, -8.76202, -2.5127, 1.73373, -2.48947, 1.06746, -0.0154644}, {-0.571101, 0.817639, 1.4431, -1.44292, 0.0459567, -1.45561, 0, 3.99789, 0, 2.01402, 0.469033, 0.0125109, 2.48947, -1.06746, 0.0154644, 7.55524, 1.40659, 7.62167, 2.99032, -2.63399, -7.55617, -1.78355, -1.59041, -1.79923, -0.70592, -0.636563, 1.78377, -10.5456, -0.808671, -0.0655081}, {-0.571101, 0.817639, 1.4431, -1.44292, 0.0459567, -1.45561, 0, -1.33263, 0, -6.04207, -1.4071, -0.0375328, 2.48947, -1.06746, 0.0154644, 1.78355, 1.59041, 1.79923, 0.70592, 0.636563, -1.78377, 0.500853, -4.86097, -7.57163, 5.06577, -0.82039, 7.60621, -2.48947, 6.39798, -0.0154644}, {7.61576, -5.82053, 0.598329, -1.54462, -0.610276, -1.54223, 1.74008, -1.3299, 1.74168, 2.34313, 0, 0, 11.2256, 0.797254, 8.32176, -0.241602, 2.39819, -0.246525, -5.97333, 4.56526, -8.87301, -9.1309, -2.39819, 0.246525, -0.987004, 0.754342, 1.9063, -5.04712, 1.64385, -2.15283}, {-2.53859, 1.94018, -0.199443, 4.63387, 1.83083, 4.6267, 1.74008, -1.3299, 1.74168, 2.34313, 7.73589e-16, -1.01311e-15, 15.2015, -9.40456, 2.9506, -7.20193, 7.7178, -7.21323, 0.987004, -0.754342, -1.9063, 0.241602, -2.39819, 0.246525, -10.3595, 0.754342, 1.9063, -5.04712, 1.64385, -2.15283}, {-2.53859, 1.94018, -0.199443, -1.54462, -0.610276, -1.54223, -5.22025, 3.9897, -5.22503, 2.34313, 0, 0, 5.04712, -1.64385, 2.15283, 5.93689, 4.83929, 5.92241, 11.1413, -8.51505, -1.10853, 0.241602, -2.39819, 0.246525, -0.987004, 0.754342, 1.9063, -14.4196, 1.64385, -2.15283}, {-2.53859, 1.94018, -0.199443, -1.54462, -0.610276, -1.54223, 1.74008, -1.3299, 1.74168, -7.02938, 0, 0, 5.04712, -1.64385, 2.15283, -0.241602, 2.39819, -0.246525, 0.987004, -0.754342, -1.9063, 10.3959, -10.1589, 1.0443, 5.19149, 3.19544, 8.07523, -12.0075, 6.96345, -9.11953}, {2.66454e-15, -8.88178e-15, -7.0244, 0.00253498, 1.78885, -0.00126659, -2.34566, -1.78885, -2.3402, 2.34313, 0, 0, -0.0132733, -9.36656, -2.88758, 2.89626, 3.10862e-15, 2.89421, 12.282, 9.36656, 9.35923, -12.2688, -3.10862e-15, -2.89421, -2.8994, -2.21115, 0.00156559, 0.00313341, 2.21115, 2.89265}, {-4.44089e-16, -2.81691e-15, 2.34147, -0.00760494, -5.36656, 0.00379978, -2.34566, -1.78885, -2.3402, 2.34313, 1.04056e-15, 1.36127e-15, -0.00313341, -2.21115, -12.2585, 12.2789, 7.15542, 12.255, 2.8994, 2.21115, -0.00156559, -2.89626, 2.22045e-15, -2.89421, -12.2719, -2.21115, 0.00156559, 0.00313341, 2.21115, 2.89265}, {-1.33227e-15, -1.9984e-15, 2.34147, 0.00253498, 1.78885, -0.00126659, 7.03698, 5.36656, 7.0206, 2.34313, 0, 0, -0.00313341, -2.21115, -2.89265, 2.88612, -7.15542, 2.89928, 2.8994, 2.21115, -9.36743, -2.89626, 2.66454e-15, -2.89421, -2.8994, -2.21115, 0.00156559, -9.36937, 2.21115, 2.89265}, {4.44089e-16, 0, 2.34147, 0.00253498, 1.78885, -0.00126659, -2.34566, -1.78885, -2.3402, -7.02938, 0, 0, -0.00313341, -2.21115, -2.89265, 2.89626, 0, 2.89421, 2.8994, 2.21115, -0.00156559, -2.89626, 0, -12.2601, -2.90954, -9.36656, 0.00663197, 9.38578, 9.36656, 12.2534}, {3.98943, -5.22554, 5.22554, -0.61076, -1.54312, 1.54312, 0, 2.34313, 0, 1.94057, -2.54185, 0.198723, 4.84171, 5.92686, -5.92686, 0.754941, -0.988857, -1.90741, 1.64373, -14.4218, 2.15304, -8.51722, 11.1562, 1.11252, -1.64373, 5.0493, -2.15304, -2.39867, 0.245635, -0.245635}, {-1.32981, 1.74185, -1.74185, 1.83228, 4.62937, -4.62937, -1.12881e-15, 2.34313, -1.15595e-16, 1.94057, -2.54185, 0.198723, 7.71791, -7.21302, 7.21302, 0.754941, -10.3614, -1.90741, 1.64373, -5.0493, 2.15304, -0.754941, 0.988857, 1.90741, -9.40601, 15.2167, -2.94793, -2.39867, 0.245635, -0.245635}, {-1.32981, 1.74185, -1.74185, -0.61076, -1.54312, 1.54312, 0, -7.02938, 0, 1.94057, -2.54185, 0.198723, 2.39867, -0.245635, 0.245635, 3.19798, 5.18364, -8.0799, 6.96297, -12.0167, 9.12042, -0.754941, 0.988857, 1.90741, -1.64373, 5.0493, -2.15304, -10.1609, 10.413, -1.04052}, {-1.32981, 1.74185, -1.74185, -0.61076, -1.54312, 1.54312, 0, 2.34313, 0, -5.82171, 7.62554, -0.596168, 2.39867, -0.245635, 0.245635, 0.754941, -0.988857, -1.90741, 1.64373, -5.0493, 2.15304, 4.5643, -5.97853, 8.87479, 0.799305, 11.2218, -8.32553, -2.39867, -9.12687, -0.245635}, {9.45441, 0, -1.77636e-15, 0, 0, 3.15147, 1.78885, 1.78885, -1.78885, 1.36261, -1.78885, -1.36261, 3.89543, 0, -16.5013, -2.21115, -2.21115, -1.68428, -5.47113, -9.36656, 9.36656, -3.23931, 9.36656, 7.13474, -1.68428, 2.21115, -2.21115, -3.89543, 0, 3.89543}, {-3.15147, 2.22045e-16, 2.22045e-16, 1.00042e-15, 8.3972e-15, -9.45441, 1.78885, 1.78885, -1.78885, 1.36261, -1.78885, -1.36261, 16.5013, 3.55271e-15, -3.89543, -9.36656, -9.36656, 5.47113, 1.68428, -2.21115, 2.21115, 2.21115, 2.21115, 1.68428, -7.13474, 9.36656, 3.23931, -3.89543, -3.10862e-15, 3.89543}, {-3.15147, 4.44089e-16, 4.44089e-16, 0, 0, 3.15147, -5.36656, -5.36656, 5.36656, 1.36261, -1.78885, -1.36261, 3.89543, -4.44089e-16, -3.89543, -2.21115, -2.21115, -14.2902, 14.2902, -2.21115, 2.21115, 2.21115, 2.21115, 1.68428, -1.68428, 2.21115, -2.21115, -9.34589, 7.15542, 9.34589}, {-3.15147, 0, 2.22045e-16, 0, 0, 3.15147, 1.78885, 1.78885, -1.78885, -4.08784, 5.36656, 4.08784, 3.89543, 0, -3.89543, -2.21115, -2.21115, -1.68428, 1.68428, -2.21115, 2.21115, 14.817, 2.21115, 1.68428, -1.68428, 2.21115, -14.817, -11.0508, -7.15542, 11.0508}, {0.908154, -0.908154, 3.90885, -0.830764, 0.830764, 0.830764, 1.29079, 0.314875, 0.314875, -0.157311, -1.44836, 0.157311, 4.72412, -4.72412, -2.7394, -0.568628, -1.41609, -1.41609, -6.3845, -2.02289, -0.0381727, 1.19787, 7.20951, 0.786843, 1.22133, 0.763387, -1.22133, -1.40106, 1.40106, -0.583654}, {-0.302718, 0.302718, -1.30295, 2.49229, -2.49229, -2.49229, 1.29079, 0.314875, 0.314875, -0.157311, -1.44836, 0.157311, 2.61193, -2.61193, 5.79545, -5.7318, -2.67559, -2.67559, -1.22133, -0.763387, 1.22133, 0.568628, 1.41609, 1.41609, 1.85057, 6.55681, -1.85057, -1.40106, 1.40106, -0.583654}, {-0.302718, 0.302718, -1.30295, -0.830764, 0.830764, 0.830764, -3.87238, -0.944625, -0.944625, -0.157311, -1.44836, 0.157311, 1.40106, -1.40106, 0.583654, 2.75443, -4.73914, -4.73914, -0.0104551, -1.97426, 6.43313, 0.568628, 1.41609, 1.41609, 1.22133, 0.763387, -1.22133, -0.771816, 7.19449, -1.2129}, {-0.302718, 0.302718, -1.30295, -0.830764, 0.830764, 0.830764, 1.29079, 0.314875, 0.314875, 0.471934, 4.34507, -0.471934, 1.40106, -1.40106, 0.583654, -0.568628, -1.41609, -1.41609, -1.22133, -0.763387, 1.22133, 1.7795, 0.205215, 6.62789, 4.54438, -2.55967, -4.54438, -6.56423, 0.14156, -1.84315}, {-2.30283, -5.06257, 2.51418, -1.077, -0.426271, -1.077, 0.0318939, 0.648138, 1.63756, 0.277498, -1.90939, 0.277498, 4.69044, 0.146092, 6.67515, 1.29182, -0.274242, -0.692891, -1.11582, -5.47959, -7.53849, -2.40182, 7.9118, -0.417103, 0.988241, 2.88704, 0.988241, -0.38243, 1.55899, -2.36714}, {0.767609, 1.68752, -0.838059, 3.23101, 1.27881, 3.23101, 0.0318939, 0.648138, 1.63756, 0.277498, -1.90939, 0.277498, -2.68801, -8.30908, 5.71938, 1.16425, -2.86679, -7.24314, -0.988241, -2.88704, -0.988241, -1.29182, 0.274242, 0.692891, -0.121753, 10.5246, -0.121753, -0.38243, 1.55899, -2.36714}, {0.767609, 1.68752, -0.838059, -1.077, -0.426271, -1.077, -0.0956818, -1.94441, -4.91269, 0.277498, -1.90939, 0.277498, 0.38243, -1.55899, 2.36714, 5.59983, 1.43084, 3.61512, -4.05868, -9.63713, 2.36399, -1.29182, 0.274242, 0.692891, 0.988241, 2.88704, 0.988241, -1.49242, 9.19655, -3.47714}, {0.767609, 1.68752, -0.838059, -1.077, -0.426271, -1.077, 0.0318939, 0.648138, 1.63756, -0.832495, 5.72817, -0.832495, 0.38243, -1.55899, 2.36714, 1.29182, -0.274242, -0.692891, -0.988241, -2.88704, -0.988241, -4.36226, -6.47585, 4.04513, 5.29625, 4.59212, 5.29625, -0.510006, -1.03356, -8.91739}, {-4.7272, -4.7272, -4.7272, -1.57573, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, 6.30294, -10.1984, 6.30294, 3.89543, 1.32738e-12, -1.3276e-12, 6.30294, 6.30294, -10.1984, -10.1984, 6.30294, 6.30294, 2.96874e-13, 3.04201e-13, 3.89543, 1.65046e-12, 3.89543, 1.64713e-12}, {1.57573, 1.57573, 1.57573, 4.7272, -4.7272, 4.7272, -1.57573, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, -6.30294, -10.1984, -6.30294, 10.1984, 6.30294, -6.30294, -2.96874e-13, -3.01537e-13, -3.89543, -3.89543, -1.32644e-12, 1.32544e-12, -6.30294, 6.30294, 10.1984, 1.64713e-12, 3.89543, 1.65001e-12}, {1.57573, 1.57573, 1.57573, -1.57573, 1.57573, -1.57573, 4.7272, 4.7272, -4.7272, 1.57573, -1.57573, -1.57573, -1.64602e-12, -3.89543, -1.64313e-12, 10.1984, -6.30294, 6.30294, -6.30294, -6.30294, -10.1984, -3.89543, -1.32733e-12, 1.32721e-12, 2.99982e-13, 3.06422e-13, 3.89543, -6.30294, 10.1984, 6.30294}, {1.57573, 1.57573, 1.57573, -1.57573, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -4.7272, 4.7272, 4.7272, -1.64313e-12, -3.89543, -1.64913e-12, 3.89543, 1.32672e-12, -1.32694e-12, -3.00648e-13, -2.97318e-13, -3.89543, -10.1984, -6.30294, -6.30294, 6.30294, -6.30294, 10.1984, 6.30294, 10.1984, -6.30294}, {-1.56775, 5.44381, 3.24545, 1.20899, 0.479095, 1.20825, -1.50445, -0.59618, 0.101437, -0.227124, 1.93169, -0.227868, -6.97629, -0.265605, -4.98928, 0.365209, 0.144724, -1.61886, 7.23144, 5.36461, 0.80607, 0.543287, -7.87147, 2.53034, -1.21365, -2.97989, -1.21182, 2.14034, -1.65078, 0.156278}, {0.522584, -1.8146, -1.08182, -3.62696, -1.43729, -3.62475, -1.50445, -0.59618, 0.101437, -0.227124, 1.93169, -0.227868, -4.23068, 8.90919, 4.171, 6.383, 2.52944, -2.02461, 1.21365, 2.97989, 1.21182, -0.365209, -0.144724, 1.61886, -0.305154, -10.7066, -0.300344, 2.14034, -1.65078, 0.156278}, {0.522584, -1.8146, -1.08182, 1.20899, 0.479095, 1.20825, 4.51334, 1.78854, -0.304311, -0.227124, 1.93169, -0.227868, -2.14034, 1.65078, -0.156278, -4.47074, -1.77166, -6.45186, -0.876686, 10.2383, 5.53909, -0.365209, -0.144724, 1.61886, -1.21365, -2.97989, -1.21182, 3.04884, -9.37752, 1.06775}, {0.522584, -1.8146, -1.08182, 1.20899, 0.479095, 1.20825, -1.50445, -0.59618, 0.101437, 0.681372, -5.79506, 0.683605, -2.14034, 1.65078, -0.156278, 0.365209, 0.144724, -1.61886, 1.21365, 2.97989, 1.21182, -2.45554, 7.11368, 5.94614, -6.0496, -4.89627, -6.04482, 8.15813, 0.733943, -0.24947}, {0.31567, 3.31084, -3.29586, 0.708828, -0.490803, -1.01172, 0.848249, 1.25814, 0.0940198, -1.45185, 0.336273, -0.18092, -3.58141, 3.93402, 3.93947, -1.92465, -0.948485, 1.13434, -4.31143, -5.22358, -1.85026, 7.73207, -0.396608, -0.41066, 0.91843, 0.191009, 1.47418, 0.746096, -1.97081, 0.107415}, {-0.105223, -1.10361, 1.09862, -2.12648, 1.47241, 3.03516, 0.848249, 1.25814, 0.0940198, -1.45185, 0.336273, -0.18092, -0.325203, 6.38527, -4.5019, -5.31765, -5.98106, 0.758261, -0.91843, -0.191009, -1.47418, 1.92465, 0.948485, -1.13434, 6.72585, -1.15408, 2.19787, 0.746096, -1.97081, 0.107415}, {-0.105223, -1.10361, 1.09862, 0.708828, -0.490803, -1.01172, -2.54475, -3.77443, -0.282059, -1.45185, 0.336273, -0.18092, -0.746096, 1.97081, -0.107415, -4.75996, 1.01473, 5.18122, -0.497537, 4.22345, -5.86867, 1.92465, 0.948485, -1.13434, 0.91843, 0.191009, 1.47418, 6.55351, -3.3159, 0.831095}, {-0.105223, -1.10361, 1.09862, 0.708828, -0.490803, -1.01172, 0.848249, 1.25814, 0.0940198, 4.35556, -1.00882, 0.54276, -0.746096, 1.97081, -0.107415, -1.92465, -0.948485, 1.13434, -0.91843, -0.191009, -1.47418, 2.34555, 5.36294, -5.52882, -1.91688, 2.15422, 5.52107, -2.6469, -7.00338, -0.268664}, {2.3172, 0.917451, -2.318, 1.00416, 1.78176, 0.599951, -0.431249, 0.464989, -1.17482, 0.199489, -1.94094, -0.197793, -4.30311, -8.95143, -4.09645, -0.708156, -2.77714, 0.710583, 3.21279, -2.0567, 5.1964, -0.0898, 10.5409, 0.0805874, -1.48779, 0.196748, -0.497096, 0.286472, 1.82437, 1.69665}, {-0.772399, -0.305817, 0.772666, -3.01248, -5.34529, -1.79985, -0.431249, 0.464989, -1.17482, 0.199489, -1.94094, -0.197793, 2.80312, -0.601104, -4.78731, 1.01684, -4.6371, 5.40988, 1.48779, -0.196748, 0.497096, 0.708156, 2.77714, -0.710583, -2.28575, 7.96049, 0.294074, 0.286472, 1.82437, 1.69665}, {-0.772399, -0.305817, 0.772666, 1.00416, 1.78176, 0.599951, 1.29375, -1.39497, 3.52447, 0.199489, -1.94094, -0.197793, -0.286472, -1.82437, -1.69665, -4.72479, -9.9042, -1.68922, 4.57739, 1.02652, -2.59357, 0.708156, 2.77714, -0.710583, -1.48779, 0.196748, -0.497096, -0.511484, 9.58812, 2.48782}, {-0.772399, -0.305817, 0.772666, 1.00416, 1.78176, 0.599951, -0.431249, 0.464989, -1.17482, -0.598467, 5.82281, 0.593378, -0.286472, -1.82437, -1.69665, -0.708156, -2.77714, 0.710583, 1.48779, -0.196748, 0.497096, 3.79775, 4.00041, -3.80125, -5.50443, -6.93031, -2.8969, 2.01147, -0.0355852, 6.39595}, {-9.63611, -0.184458, -9.63611, -0.833808, -0.834046, -2.43948, -1.57551, 1.57551, -1.57551, -0.802719, -0.802949, 0.802949, 0.39558, 4.29112, 8.80297, 2.97808, -0.916498, 4.96279, 4.27918, -8.32547, 4.27918, 0.232798, 4.12829, -8.17459, 2.02286, 2.02344, 2.02286, 2.93965, -0.954937, 0.954937}, {3.21204, 0.0614861, 3.21204, 2.50142, 2.50214, 7.31843, -1.57551, 1.57551, -1.57551, -0.802719, -0.802949, 0.802949, -15.7878, 0.708993, -13.8031, 9.28012, -7.21853, 11.2648, -2.02286, -2.02344, -2.02286, -2.97808, 0.916498, -4.96279, 5.23374, 5.23523, -1.18894, 2.93965, -0.954937, 0.954937}, {3.21204, 0.0614861, 3.21204, -0.833808, -0.834046, -2.43948, 4.72653, -4.72653, 4.72653, -0.802719, -0.802949, 0.802949, -2.93965, 0.954937, -0.954937, 6.31331, 2.41969, 14.7207, -14.871, -2.26938, -14.871, -2.97808, 0.916498, -4.96279, 2.02286, 2.02344, 2.02286, 6.15053, 2.25686, -2.25686}, {3.21204, 0.0614861, 3.21204, -0.833808, -0.834046, -2.43948, -1.57551, 1.57551, -1.57551, 2.40816, 2.40885, -2.40885, -2.93965, 0.954937, -0.954937, 2.97808, -0.916498, 4.96279, -2.02286, -2.02344, -2.02286, -15.8262, 0.670554, -17.8109, 5.35809, 5.35962, 11.7808, 9.24169, -7.25697, 7.25697}, {1.77636e-15, 3.55271e-15, -3.26126, 1.4431, -0.571101, 0.0717263, 0.0125109, 2.01402, -0.807596, -1.45561, -1.44292, -0.351216, -7.55617, 2.99032, -1.71928, -1.79923, -1.78355, 0.909586, -0.0655081, -10.5456, 2.88492, 7.62167, 7.55524, 0.495278, 0.0154644, 2.48947, 0.345468, 1.78377, -0.70592, 1.43237}, {-2.22045e-16, 6.66134e-16, 1.08709, -4.3293, 1.7133, -0.215179, 0.0125109, 2.01402, -0.807596, -1.45561, -1.44292, -0.351216, -1.78377, 0.70592, -5.78072, -1.84928, -9.83965, 4.13997, -0.0154644, -2.48947, -0.345468, 1.79923, 1.78355, -0.909586, 5.83791, 8.26116, 1.75033, 1.78377, -0.70592, 1.43237}, {-6.66134e-16, -2.22045e-16, 1.08709, 1.4431, -0.571101, 0.0717263, -0.0375328, -6.04207, 2.42279, -1.45561, -1.44292, -0.351216, -1.78377, 0.70592, -1.43237, -7.57163, 0.500853, 0.622681, -0.0154644, -2.48947, -4.69381, 1.79923, 1.78355, -0.909586, 0.0154644, 2.48947, 0.345468, 7.60621, 5.06577, 2.83723}, {-2.22045e-16, 4.44089e-16, 1.08709, 1.4431, -0.571101, 0.0717263, 0.0125109, 2.01402, -0.807596, 4.36683, 4.32877, 1.05365, -1.78377, 0.70592, -1.43237, -1.79923, -1.78355, 0.909586, -0.0154644, -2.48947, -0.345468, 1.79923, 1.78355, -5.25793, -5.75693, 4.77387, 0.0585632, 1.73373, -8.76202, 4.66276}, {4.62915, 1.83443, 4.62633, 1.74201, -1.33137, 0.13686, 3.96359e-17, -3.87053e-16, 1.60497, -0.198956, 1.94285, -0.199718, -7.21395, 7.72698, 1.18954, -2.15324, 1.64567, -2.15302, 1.90731, 0.755828, -6.49756, 2.94906, -9.41706, 2.95189, -1.90731, -0.755828, 0.0776963, 0.245923, -2.40149, -1.73698}, {-1.54305, -0.611477, -1.54211, -5.22602, 3.99411, -0.41058, 1.18908e-16, -1.16116e-15, 1.60497, -0.198956, 1.94285, -0.199718, 5.92628, 4.8474, 7.90542, -2.15324, 1.64567, -8.57288, 1.90731, 0.755828, -0.0776963, 2.15324, -1.64567, 2.15302, -1.11149, -8.52722, 0.876567, 0.245923, -2.40149, -1.73698}, {-1.54305, -0.611477, -1.54211, 1.74201, -1.33137, 0.13686, 0, 0, -4.8149, -0.198956, 1.94285, -0.199718, -0.245923, 2.40149, 1.73698, -9.12126, 6.97115, -2.70046, 8.07952, 3.20174, 6.09074, 2.15324, -1.64567, 2.15302, -1.90731, -0.755828, 0.0776963, 1.04175, -10.1729, -0.938112}, {-1.54305, -0.611477, -1.54211, 1.74201, -1.33137, 0.13686, -1.18908e-16, 1.16116e-15, 1.60497, 0.596868, -5.82855, 0.599153, -0.245923, 2.40149, 1.73698, -2.15324, 1.64567, -2.15302, 1.90731, 0.755828, -0.0776963, 8.32544, 0.800244, 8.32145, -8.87534, 4.56966, -0.469744, 0.245923, -2.40149, -8.15685}, {4.35065, -1.72407, 1.44786, 0, 0, 1.17684, 1.43763, 1.45199, 0.197849, 0.0125895, -2.02668, -0.892072, 1.79257, -0.710355, -5.56548, -1.77701, -1.79476, -1.69921, -5.73495, -8.31307, -0.439401, 1.72665, 9.90148, 5.2675, -0.0155615, 2.50511, -0.351997, -1.79257, 0.710355, 0.858106}, {-1.45022, 0.57469, -0.482621, -1.29313e-15, 4.05633e-15, -3.53053, 1.43763, 1.45199, 0.197849, 0.0125895, -2.02668, -0.892072, 7.59343, -3.00911, 1.07238, -7.52752, -7.60272, -2.49061, 0.0155615, -2.50511, 0.351997, 1.77701, 1.79476, 1.69921, -0.0659197, 10.6118, 3.21629, -1.79257, 0.710355, 0.858106}, {-1.45022, 0.57469, -0.482621, 0, 0, 1.17684, -4.31288, -4.35597, -0.593548, 0.0125895, -2.02668, -0.892072, 1.79257, -0.710355, -0.858106, -1.77701, -1.79476, -6.40659, 5.81643, -4.80387, 2.28248, 1.77701, 1.79476, 1.69921, -0.0155615, 2.50511, -0.351997, -1.84292, 8.81707, 4.42639}, {-1.45022, 0.57469, -0.482621, 0, 0, 1.17684, 1.43763, 1.45199, 0.197849, -0.0377686, 6.08004, 2.67622, 1.79257, -0.710355, -0.858106, -1.77701, -1.79476, -1.69921, 0.0155615, -2.50511, 0.351997, 7.57787, -0.504, 3.6297, -0.0155615, 2.50511, -5.05937, -7.54308, -5.09761, 0.0667081}, {2.31688, 0.916898, -2.31818, 0.572147, 2.2454, -0.575329, -1.46447, -2.59853, -0.874972, 1.66462, 0.658766, 0.677573, -2.04119, -11.3793, 2.05732, 1.10297, 0.436497, 1.79267, 8.62268, 13.9839, 3.62627, -7.76145, -3.07156, -4.50296, -2.76479, -3.58975, -0.126381, -0.247396, 2.39768, 0.243998}, {-0.772295, -0.305633, 0.772728, -1.71644, -6.7362, 1.72599, -1.46447, -2.59853, -0.874972, 1.66462, 0.658766, 0.677573, 3.33658, -1.17515, -3.33491, 6.96086, 10.8306, 5.29256, 2.76479, 3.58975, 0.126381, -1.10297, -0.436497, -1.79267, -9.42327, -6.22481, -2.83667, -0.247396, 2.39768, 0.243998}, {-0.772295, -0.305633, 0.772728, 0.572147, 2.2454, -0.575329, 4.39341, 7.7956, 2.62492, 1.66462, 0.658766, 0.677573, 0.247396, -2.39768, -0.243998, -1.18562, -8.5451, 4.09399, 5.85397, 4.81228, -2.96453, -1.10297, -0.436497, -1.79267, -2.76479, -3.58975, -0.126381, -6.90587, -0.237381, -2.46629}, {-0.772295, -0.305633, 0.772728, 0.572147, 2.2454, -0.575329, -1.46447, -2.59853, -0.874972, -4.99386, -1.9763, -2.03272, 0.247396, -2.39768, -0.243998, 1.10297, 0.436497, 1.79267, 2.76479, 3.58975, 0.126381, 1.98621, 0.786034, -4.88358, -5.05338, -12.5713, 2.17494, 5.61049, 12.7918, 3.74389}, {-7.02177, -5.36656, 7.02938, 0.00253498, -1.78885, 1.2111e-11, -2.34313, 0, 0, 0, 0, 2.34313, -2.9064, 7.15542, 2.89626, 2.89313, 2.21115, -1.49701e-11, 9.37564, -2.21115, 2.89626, -2.89313, -2.21115, -9.3725, -0.00313341, 2.21115, -2.89626, 2.89626, 0, -2.89626}, {2.34059, 1.78885, -2.34313, -0.00760494, 5.36656, -5.47978e-11, -2.34313, 0, 0, 1.36297e-15, 0, 2.34313, -12.2586, -7.15542, 12.2688, 12.2656, 2.21115, -2.25779e-11, 0.00313341, -2.21115, 2.89626, -2.89313, -2.21115, 2.25785e-11, -0.00313341, 2.21115, -12.2688, 2.89626, 0, -2.89626}, {2.34059, 1.78885, -2.34313, 0.00253498, -1.78885, 1.21079e-11, 7.02938, 0, 0, 0, 0, 2.34313, -2.89626, -4.44089e-16, 2.89626, 2.88299, 9.36656, -6.33979e-11, -9.35923, -9.36656, 12.2688, -2.89313, -2.21115, 1.49668e-11, -0.00313341, 2.21115, -2.89626, 2.89626, 0, -12.2688}, {2.34059, 1.78885, -2.34313, 0.00253498, -1.78885, 1.2111e-11, -2.34313, 0, 0, 0, 0, -7.02938, -2.89626, -4.44089e-16, 2.89626, 2.89313, 2.21115, -1.49701e-11, 0.00313341, -2.21115, 2.89626, -12.2555, -9.36656, 9.3725, -0.0132733, 9.36656, -2.89626, 12.2688, 0, -2.89626}, {0.0377686, 6.08004, 3.1372, 4.64343e-16, 1.84009e-16, 1.28977, -1.43763, 1.45199, -0.146251, 1.45022, 0.57469, -0.0977806, 0.0155615, 2.50511, -5.4607, 1.77701, -1.79476, -1.41346, 7.54308, -5.09761, 2.05838, -7.57787, -0.504, 1.80458, -1.79257, -0.710355, -1.47337, -0.0155615, -2.50511, 0.301639}, {-0.0125895, -2.02668, -1.04573, -2.77397e-15, 8.42705e-16, -3.8693, -1.43763, 1.45199, -0.146251, 1.45022, 0.57469, -0.0977806, 0.0659197, 10.6118, 3.8813, 7.52752, -7.60272, -0.82846, 1.79257, 0.710355, 1.47337, -1.77701, 1.79476, 1.41346, -7.59343, -3.00911, -1.08225, -0.0155615, -2.50511, 0.301639}, {-0.0125895, -2.02668, -1.04573, 0, 0, 1.28977, 4.31288, -4.35597, 0.438752, 1.45022, 0.57469, -0.0977806, 0.0155615, 2.50511, -0.301639, 1.77701, -1.79476, -6.57252, 1.84292, 8.81707, 5.65631, -1.77701, 1.79476, 1.41346, -1.79257, -0.710355, -1.47337, -5.81643, -4.80387, 0.692761}, {-0.0125895, -2.02668, -1.04573, 4.64343e-16, 1.84009e-16, 1.28977, -1.43763, 1.45199, -0.146251, -4.35065, -1.72407, 0.293342, 0.0155615, 2.50511, -0.301639, 1.77701, -1.79476, -1.41346, 1.79257, 0.710355, 1.47337, -1.72665, 9.90148, 5.5964, -1.79257, -0.710355, -6.63244, 5.73495, -8.31307, 0.886641}, {-4.7272, -4.7272, 4.7272, 1.57573, -1.57573, 1.57573, -1.57596, -1.57551, -1.57551, -1.57551, 1.57551, 1.57551, -10.1984, 6.30294, -6.30294, 0.000278382, 3.89515, -0.000278382, 6.30412, 6.30176, 10.1972, 6.30176, -10.1972, -6.30176, -0.000278382, 0.000278382, -3.89515, 3.89543, -9.10383e-15, 9.10383e-15}, {1.57573, 1.57573, -1.57573, -4.7272, 4.7272, -4.7272, -1.57596, -1.57551, -1.57551, -1.57551, 1.57551, 1.57551, -10.1984, -6.30294, 6.30294, 6.30412, 10.1972, 6.30176, 0.000278382, -0.000278382, 3.89515, -0.000278382, -3.89515, 0.000278382, 6.30176, -6.30176, -10.1972, 3.89543, -9.10383e-15, 9.10383e-15}, {1.57573, 1.57573, -1.57573, 1.57573, -1.57573, 1.57573, 4.72788, 4.72653, 4.72653, -1.57551, 1.57551, 1.57551, -3.89543, 2.66454e-15, -1.44329e-14, -6.30266, 10.1981, -6.30322, -6.30266, -6.30322, 10.1981, -0.000278382, -3.89515, 0.000278382, -0.000278382, 0.000278382, -3.89515, 10.1975, -6.30204, -6.30204}, {1.57573, 1.57573, -1.57573, 1.57573, -1.57573, 1.57573, -1.57596, -1.57551, -1.57551, 4.72653, -4.72653, -4.72653, -3.89543, 1.02141e-14, -6.66134e-16, 0.000278382, 3.89515, -0.000278382, 0.000278382, -0.000278382, 3.89515, -6.30322, -10.1981, 6.30322, -6.30322, 6.30322, -10.1981, 10.1993, 6.30204, 6.30204}, {1.83228, 4.63528, 4.62937, 1.94057, -2.54509, -0.198723, -1.32981, 1.74407, 1.74185, 0, 2.34612, 0, -9.40601, 15.2361, 2.94793, -0.754941, 0.990119, -1.90741, 7.71791, -7.22223, -7.21302, 0.754941, -10.3746, 1.90741, -2.39867, 0.245948, 0.245635, 1.64373, -5.05575, -2.15304}, {-0.61076, -1.54509, -1.54312, -5.82171, 7.63528, 0.596168, -1.32981, 1.74407, 1.74185, 7.74523e-16, 2.34612, -1.01451e-15, 0.799305, 11.2361, 8.32553, 4.5643, -5.98616, -8.87479, 2.39867, -0.245948, -0.245635, 0.754941, -0.990119, 1.90741, -2.39867, -9.13852, 0.245635, 1.64373, -5.05575, -2.15304}, {-0.61076, -1.54509, -1.54312, 1.94057, -2.54509, -0.198723, 3.98943, -5.23221, -5.22554, 0, 2.34612, 0, -1.64373, 5.05575, 2.15304, -8.51722, 11.1705, -1.11252, 4.84171, 5.93443, 5.92686, 0.754941, -0.990119, 1.90741, -2.39867, 0.245948, 0.245635, 1.64373, -14.4402, -2.15304}, {-0.61076, -1.54509, -1.54312, 1.94057, -2.54509, -0.198723, -1.32981, 1.74407, 1.74185, 0, -7.03835, 0, -1.64373, 5.05575, 2.15304, -0.754941, 0.990119, -1.90741, 2.39867, -0.245948, -0.245635, 3.19798, 5.19026, 8.0799, -10.1609, 10.4263, 1.04052, 6.96297, -12.032, -9.12042}, {-1.42344, 3.96091, -1.43084, -1.98584, -0.354449, 0.357788, 0.9893, 0.397365, -1.35371, 0.52206, 1.27739, 0.518977, 9.81149, 3.4879, -2.46294, 1.23179, -0.0530468, 1.23103, -5.76653, -0.448647, 6.49858, -3.32003, -5.0565, -3.30694, 1.80933, -1.14081, -1.08374, -1.86814, -2.07011, 1.03179}, {0.474478, -1.3203, 0.476947, 5.95751, 1.06335, -1.07336, 0.9893, 0.397365, -1.35371, 0.52206, 1.27739, 0.518977, -0.029771, 7.35132, -2.93958, -2.72541, -1.64251, 6.64587, -1.80933, 1.14081, 1.08374, -1.23179, 0.0530468, -1.23103, -0.278909, -6.25036, -3.15965, -1.86814, -2.07011, 1.03179}, {0.474478, -1.3203, 0.476947, -1.98584, -0.354449, 0.357788, -2.9679, -1.1921, 4.06113, 0.52206, 1.27739, 0.518977, 1.86814, 2.07011, -1.03179, 9.17514, 1.36475, -0.200121, -3.70724, 6.42202, -0.824048, -1.23179, 0.0530468, -1.23103, 1.80933, -1.14081, -1.08374, -3.95638, -7.17965, -1.04412}, {0.474478, -1.3203, 0.476947, -1.98584, -0.354449, 0.357788, 0.9893, 0.397365, -1.35371, -1.56618, -3.83216, -1.55693, 1.86814, 2.07011, -1.03179, 1.23179, -0.0530468, 1.23103, -1.80933, 1.14081, 1.08374, -3.1297, 5.33426, -3.13882, 9.75268, 0.276984, -2.51489, -5.82534, -3.65957, 6.44663}, {5.36656, 5.36656, -5.36656, 1.41539, 1.41492, 1.85814, 0, 3.15102, 0, 0.373467, -2.77708, -3.64699, -5.19992, -5.19747, -11.9405, -1.74951, -5.64381, -2.29678, 2.21115, -14.2878, -2.21115, 0.255645, 16.7521, 16.8847, -2.21115, 1.68373, 2.21115, -0.461631, -0.462209, 4.50793}, {-1.78885, -1.78885, 1.78885, -4.24616, -4.24476, -5.57441, -2.92145e-16, 3.15102, 2.85286e-15, 0.373467, -2.77708, -3.64699, 7.61705, 7.61763, -11.6633, -1.74951, -18.2479, -2.29678, 2.21115, -1.68373, -2.21115, 1.74951, 5.64381, 2.29678, -3.70501, 12.7921, 16.7991, -0.461631, -0.462209, 4.50793}, {-1.78885, -1.78885, 1.78885, 1.41539, 1.41492, 1.85814, 0, -9.45305, 0, 0.373467, -2.77708, -3.64699, 0.461631, 0.462209, -4.50793, -7.41106, -11.3035, -9.72932, 9.36656, 5.47169, -9.36656, 1.74951, 5.64381, 2.29678, -2.21115, 1.68373, 2.21115, -1.9555, 10.6461, 19.0959}, {-1.78885, -1.78885, 1.78885, 1.41539, 1.41492, 1.85814, 0, 3.15102, 0, -1.1204, 8.33125, 10.941, 0.461631, 0.462209, -4.50793, -1.74951, -5.64381, -2.29678, 2.21115, -1.68373, -2.21115, 8.90493, 12.7992, -4.85864, -7.87269, -3.97595, -5.2214, -0.461631, -13.0663, 4.50793}, {-4.34476, -0.77549, 0.782793, -0.00873736, -1.40655, 0.564008, -1.44688, -0.0374651, -0.914786, 0.00736434, 1.18552, 0.611709, -1.74439, 7.04528, -2.63065, 1.79924, 1.7849, 0.433585, 5.78582, -0.123349, 5.11241, -1.8287, -6.52698, -2.88042, 0.00169715, 0.27321, -1.45327, 1.77934, -1.41907, 0.374623}, {1.44825, 0.258497, -0.260931, 0.0262121, 4.21965, -1.69202, -1.44688, -0.0374651, -0.914786, 0.00736434, 1.18552, 0.611709, -7.57235, 0.385087, 0.669101, 7.58676, 1.93476, 4.09273, -0.00169715, -0.27321, 1.45327, -1.79924, -1.7849, -0.433585, -0.0277602, -4.46887, -3.9001, 1.77934, -1.41907, 0.374623}, {1.44825, 0.258497, -0.260931, -0.00873736, -1.40655, 0.564008, 4.34064, 0.112395, 2.74436, 0.00736434, 1.18552, 0.611709, -1.77934, 1.41907, -0.374623, 1.83419, 7.4111, -1.82245, -5.79471, -1.3072, 2.49699, -1.79924, -1.7849, -0.433585, 0.00169715, 0.27321, -1.45327, 1.74988, -6.16115, -2.07221}, {1.44825, 0.258497, -0.260931, -0.00873736, -1.40655, 0.564008, -1.44688, -0.0374651, -0.914786, -0.022093, -3.55656, -1.83513, -1.77934, 1.41907, -0.374623, 1.79924, 1.7849, 0.433585, -0.00169715, -0.27321, 1.45327, -7.59225, -2.81889, 0.610139, 0.0366466, 5.89941, -3.7093, 7.56686, -1.26921, 4.03377}, {-4.817, -2.66454e-15, -5.32907e-15, -1.78885, -1.78885, 1.78885, 0.373353, 0.374783, -3.64588, -0.190167, 1.41407, 1.85702, 7.38185, 9.36656, -9.36656, 1.74966, 1.74789, 2.29541, -3.93962, -1.96239, 19.0901, -0.988987, -7.40418, -9.72349, 2.4462, 0.463257, -4.50655, -0.226431, -2.21115, 2.21115}, {1.60567, 4.44089e-16, 1.77636e-15, 5.36656, 5.36656, -5.36656, 0.373353, 0.374783, -3.64588, -0.190167, 1.41407, 1.85702, -6.19624, 2.21115, -2.21115, 0.256242, 0.248757, 16.8789, -2.4462, -0.463257, 4.50655, -1.74966, -1.74789, -2.29541, 3.20687, -5.19303, -11.9346, -0.226431, -2.21115, 2.21115}, {1.60567, 0, 4.44089e-16, -1.78885, -1.78885, 1.78885, -1.12006, -1.12435, 10.9376, -0.190167, 1.41407, 1.85702, 0.226431, 2.21115, -2.21115, 8.90507, 8.90331, -4.86001, -8.86888, -0.463257, 4.50655, -1.74966, -1.74789, -2.29541, 2.4462, 0.463257, -4.50655, 0.534237, -7.86743, -5.21694}, {1.60567, 2.22045e-16, 1.11022e-15, -1.78885, -1.78885, 1.78885, 0.373353, 0.374783, -3.64588, 0.570501, -4.24221, -5.57107, 0.226431, 2.21115, -2.21115, 1.74966, 1.74789, 2.29541, -2.4462, -0.463257, 4.50655, -8.17233, -1.74789, -2.29541, 9.60162, 7.61867, -11.662, -1.71984, -3.71028, 16.7947}, {-5.36225, -5.36694, -5.37021, 0, -1.60567, 0, -0.373167, -0.373493, -3.64724, -1.41425, 0.190182, 1.85717, -2.20937, 6.19609, -2.21265, 0.46126, 2.44638, 4.50824, -0.25544, -0.255663, 16.8846, 5.19574, -3.20711, -11.9369, 1.74811, 1.74964, -2.29559, 2.20937, 0.226585, 2.21265}, {1.78742, 1.78898, 1.79007, 0, 4.817, 0, -0.373167, -0.373493, -3.64724, -1.41425, 0.190182, 1.85717, -9.35904, -7.3825, -9.37293, 1.95393, 3.94035, 19.0972, -1.74811, -1.74964, 2.29559, -0.46126, -2.44638, -4.50824, 7.40511, 0.988907, -9.72428, 2.20937, 0.226585, 2.21265}, {1.78742, 1.78898, 1.79007, 0, -1.60567, 0, 1.1195, 1.12048, 10.9417, -1.41425, 0.190182, 1.85717, -2.20937, -0.226585, -2.21265, 0.46126, 8.86905, 4.50824, -8.89778, -8.90555, -4.86469, -0.46126, -2.44638, -4.50824, 1.74811, 1.74964, -2.29559, 7.86637, -0.534145, -5.21604}, {1.78742, 1.78898, 1.79007, 0, -1.60567, 0, -0.373167, -0.373493, -3.64724, 4.24275, -0.570547, -5.57152, -2.20937, -0.226585, -2.21265, 0.46126, 2.44638, 4.50824, -1.74811, -1.74964, 2.29559, -7.61093, -9.60229, -11.6685, 1.74811, 8.17231, -2.29559, 3.70204, 1.72056, 16.8016}, {-0.829936, -0.831314, 3.98569, 1.1323, 1.13131, 1.13131, 0.168871, -1.43624, 0.169424, -1.57782, 0.027827, 0.027827, -6.27076, -6.26615, -4.28143, -1.60834, 0.376916, -1.6078, -1.22617, 7.17775, 0.755077, 7.9196, -0.488224, 1.49649, 0.550688, -1.43277, -1.43277, 1.74155, 1.7409, -0.243816}, {0.276645, 0.277105, -1.32856, -3.3969, -3.39394, -3.39394, 0.168871, -1.43624, 0.169424, -1.57782, 0.027827, 0.027827, -2.84813, -2.84932, 5.55807, -2.28382, 6.12189, -2.2855, -0.550688, 1.43277, 1.43277, 1.60834, -0.376916, 1.6078, 6.86195, -1.54408, -1.54408, 1.74155, 1.7409, -0.243816}, {0.276645, 0.277105, -1.32856, 1.1323, 1.13131, 1.13131, -0.506612, 4.30873, -0.508273, -1.57782, 0.027827, 0.027827, -1.74155, -1.7409, 0.243816, -6.13754, -4.14833, -6.13305, -1.65727, 0.324356, 6.74703, 1.60834, -0.376916, 1.6078, 0.550688, -1.43277, -1.43277, 8.05282, 1.62959, -0.355124}, {0.276645, 0.277105, -1.32856, 1.1323, 1.13131, 1.13131, 0.168871, -1.43624, 0.169424, 4.73345, -0.0834809, -0.0834809, -1.74155, -1.7409, 0.243816, -1.60834, 0.376916, -1.6078, -0.550688, 1.43277, 1.43277, 0.501756, -1.48534, 6.92205, -3.97852, -5.95802, -5.95802, 1.06607, 7.48587, -0.921513}, {-8.33162, 1.1204, 10.941, -1.41498, -1.41539, 1.85814, -3.15057, 0, 0, 1.78834, 1.78885, 1.78885, 3.97613, 7.87269, -5.2214, 5.64333, 1.74951, -2.29678, 13.0638, 0.461631, 4.50793, -12.7967, -8.90493, -4.85864, -0.461499, -0.461631, -4.50793, 1.6838, -2.21115, -2.21115}, {2.77721, -0.373467, -3.64699, 4.24495, 4.24616, -5.57441, -3.15057, 0, 0, 1.78834, 1.78885, 1.78885, -12.7926, 3.70501, 16.7991, 18.2456, 1.74951, -2.29678, 0.461499, 0.461631, 4.50793, -5.64333, -1.74951, 2.29678, -7.61487, -7.61705, -11.6633, 1.6838, -2.21115, -2.21115}, {2.77721, -0.373467, -3.64699, -1.41498, -1.41539, 1.85814, 9.4517, 0, 0, 1.78834, 1.78885, 1.78885, -1.6838, 2.21115, 2.21115, 11.3033, 7.41106, -9.72932, -10.6473, 1.9555, 19.0959, -5.64333, -1.74951, 2.29678, -0.461499, -0.461631, -4.50793, -5.46957, -9.36656, -9.36656}, {2.77721, -0.373467, -3.64699, -1.41498, -1.41539, 1.85814, -3.15057, 0, 0, -5.36503, -5.36656, -5.36656, -1.6838, 2.21115, 2.21115, 5.64333, 1.74951, -2.29678, 0.461499, 0.461631, 4.50793, -16.7522, -0.255645, 16.8847, 5.19843, 5.19992, -11.9405, 14.2861, -2.21115, -2.21115}, {-3.98391, -5.22497, -0.407969, -1.83214e-15, -1.4677e-15, 1.60567, 0.61239, -1.54296, -1.54296, -1.94036, -0.198701, -0.198701, -1.64146, -2.15281, -8.57548, -0.756955, 1.9072, -0.0775154, -4.84797, 5.92622, 7.91093, 8.51839, -1.1124, 0.87232, 2.39842, 0.245608, -1.73911, 1.64146, 2.15281, 2.15281}, {1.32797, 1.74166, 0.13599, 3.05267e-15, -1.60751e-15, -4.817, 0.61239, -1.54296, -1.54296, -1.94036, -0.198701, -0.198701, -6.95334, -9.11944, -2.69677, -3.20651, 8.07903, 6.09431, -2.39842, -0.245608, 1.73911, 0.756955, -1.9072, 0.0775154, 10.1599, 1.04041, -0.944303, 1.64146, 2.15281, 2.15281}, {1.32797, 1.74166, 0.13599, 0, 0, 1.60567, -1.83717, 4.62887, 4.62887, -1.94036, -0.198701, -0.198701, -1.64146, -2.15281, -2.15281, -0.756955, 1.9072, -6.50019, -7.71029, -7.21224, 1.19515, 0.756955, -1.9072, 0.0775154, 2.39842, 0.245608, -1.73911, 9.4029, 2.94761, 2.94761}, {1.32797, 1.74166, 0.13599, 7.73451e-16, 7.92047e-17, 1.60567, 0.61239, -1.54296, -1.54296, 5.82108, 0.596103, 0.596103, -1.64146, -2.15281, -2.15281, -0.756955, 1.9072, -0.0775154, -2.39842, -0.245608, 1.73911, -4.55492, -8.87383, -0.466443, 2.39842, 0.245608, -8.16178, -0.808098, 8.32463, 8.32463}, {-1.77636e-15, 4.817, 8.88178e-16, -0.373167, -0.373493, 3.64724, -1.41425, 0.190182, -1.85717, 1.78742, 1.78898, -1.79007, 1.95393, 3.94035, -19.0972, 2.20937, 0.226585, -2.21265, 7.40511, 0.988907, 9.72428, -9.35904, -7.3825, 9.37293, -1.74811, -1.74964, -2.29559, -0.46126, -2.44638, 4.50824}, {-2.22045e-16, -1.60567, -2.22045e-16, 1.1195, 1.12048, -10.9417, -1.41425, 0.190182, -1.85717, 1.78742, 1.78898, -1.79007, 0.46126, 8.86905, -4.50824, 7.86637, -0.534145, 5.21604, 1.74811, 1.74964, 2.29559, -2.20937, -0.226585, 2.21265, -8.89778, -8.90555, 4.86469, -0.46126, -2.44638, 4.50824}, {2.22045e-16, -1.60567, 6.66134e-16, -0.373167, -0.373493, 3.64724, 4.24275, -0.570547, 5.57152, 1.78742, 1.78898, -1.79007, 0.46126, 2.44638, -4.50824, 3.70204, 1.72056, -16.8016, 1.74811, 8.17231, 2.29559, -2.20937, -0.226585, 2.21265, -1.74811, -1.74964, -2.29559, -7.61093, -9.60229, 11.6685}, {-2.22045e-16, -1.60567, 6.66134e-16, -0.373167, -0.373493, 3.64724, -1.41425, 0.190182, -1.85717, -5.36225, -5.36694, 5.37021, 0.46126, 2.44638, -4.50824, 2.20937, 0.226585, -2.21265, 1.74811, 1.74964, 2.29559, -2.20937, 6.19609, 2.21265, -0.25544, -0.255663, -16.8846, 5.19574, -3.20711, 11.9369}, {5.57441, 0.570843, -4.24616, 1.45374e-15, 1.60567, 1.48869e-16, -1.78885, -1.78885, -1.78885, 3.64699, 0.373467, 0.373467, 2.29678, -8.17219, -1.74951, 2.21115, 0.226431, 2.21115, 11.6633, 9.60176, 7.61705, -16.7991, -1.7203, -3.70501, -4.50793, -2.44635, -0.461631, -2.29678, 1.74951, 1.74951}, {-1.85814, -0.190281, 1.41539, -6.50039e-15, -4.817, -2.58579e-15, -1.78885, -1.78885, -1.78885, 3.64699, 0.373467, 0.373467, 9.72932, -0.988391, -7.41106, 9.36656, 7.38185, 9.36656, 4.50793, 2.44635, 0.461631, -2.21115, -0.226431, -2.21115, -19.0959, -3.94022, -1.9555, -2.29678, 1.74951, 1.74951}, {-1.85814, -0.190281, 1.41539, 0, 1.60567, 0, 5.36656, 5.36656, 5.36656, 3.64699, 0.373467, 0.373467, 2.29678, -1.74951, -1.74951, 2.21115, -6.19624, 2.21115, 11.9405, 3.20747, -5.19992, -2.21115, -0.226431, -2.21115, -4.50793, -2.44635, -0.461631, -16.8847, 0.255645, 0.255645}, {-1.85814, -0.190281, 1.41539, 1.45374e-15, 1.60567, 1.48869e-16, -1.78885, -1.78885, -1.78885, -10.941, -1.1204, -1.1204, 2.29678, -1.74951, -1.74951, 2.21115, 0.226431, 2.21115, 4.50793, 2.44635, 0.461631, 5.2214, 0.534693, -7.87269, -4.50793, -8.86902, -0.461631, 4.85864, 8.90493, 8.90493}, {0.596103, -0.596103, -5.82108, 1.74166, -0.13599, -1.32797, -1.54296, 1.54296, -0.61239, 0, -1.60567, 0, -8.87383, 0.466443, 4.55492, -0.245608, -1.73911, 2.39842, 8.32463, -8.32463, 0.808098, 0.245608, 8.16178, -2.39842, -2.15281, 2.15281, 1.64146, 1.9072, 0.0775154, 0.756955}, {-0.198701, 0.198701, 1.94036, -5.22497, 0.407969, 3.98391, -1.54296, 1.54296, -0.61239, 0, -1.60567, 0, -1.1124, -0.87232, -8.51839, 5.92622, -7.91093, 4.84797, 2.15281, -2.15281, -1.64146, 0.245608, 1.73911, -2.39842, -2.15281, 8.57548, 1.64146, 1.9072, 0.0775154, 0.756955}, {-0.198701, 0.198701, 1.94036, 1.74166, -0.13599, -1.32797, 4.62887, -4.62887, 1.83717, 0, -1.60567, 0, -1.9072, -0.0775154, -0.756955, -7.21224, -1.19515, 7.71029, 2.94761, -2.94761, -9.4029, 0.245608, 1.73911, -2.39842, -2.15281, 2.15281, 1.64146, 1.9072, 6.50019, 0.756955}, {-0.198701, 0.198701, 1.94036, 1.74166, -0.13599, -1.32797, -1.54296, 1.54296, -0.61239, 0, 4.817, 0, -1.9072, -0.0775154, -0.756955, -0.245608, -1.73911, 2.39842, 2.15281, -2.15281, -1.64146, 1.04041, 0.944303, -10.1599, -9.11944, 2.69677, 6.95334, 8.07903, -6.09431, 3.20651}, {1.77636e-15, 9.45441, 0, 1.36222, 1.36261, 1.78885, -3.15057, 0, 0, 1.78834, 1.78885, -1.78885, -7.1327, -3.23931, -9.36656, 2.21051, -1.68428, -2.21115, 16.4966, 3.89543, 0, -9.36389, -5.47113, 9.36656, -3.89432, -3.89543, 0, 1.6838, -2.21115, 2.21115}, {-2.22045e-16, -3.15147, 0, -4.08667, -4.08784, -5.36656, -3.15057, 0, 0, 1.78834, 1.78885, -1.78885, -1.6838, 14.817, -2.21115, 14.8128, -1.68428, -2.21115, 3.89432, 3.89543, 0, -2.21051, 1.68428, 2.21115, -11.0477, -11.0508, 7.15542, 1.6838, -2.21115, 2.21115}, {2.22045e-16, -3.15147, 0, 1.36222, 1.36261, 1.78885, 9.4517, 0, 0, 1.78834, 1.78885, -1.78885, -1.6838, 2.21115, -2.21115, -3.23838, -7.13474, -9.36656, 3.89432, 16.5013, 0, -2.21051, 1.68428, 2.21115, -3.89432, -3.89543, 0, -5.46957, -9.36656, 9.36656}, {-2.22045e-16, -3.15147, 0, 1.36222, 1.36261, 1.78885, -3.15057, 0, 0, -5.36503, -5.36656, 5.36656, -1.6838, 2.21115, -2.21115, 2.21051, -1.68428, -2.21115, 3.89432, 3.89543, 0, -2.21051, 14.2902, 2.21115, -9.34321, -9.34589, -7.15542, 14.2861, -2.21115, 2.21115}, {-2.95778e-16, 8.88178e-16, 5.41667, 1.44665, -1.44665, -0.51339, -1.44665, -0.572575, 0.978606, 1.97314e-12, 2.01922, 1.34034, -7.57474, 7.57474, 4.91993, 2.43894e-12, 2.4959, -0.575039, 7.57474, 2.99804, -2.89226, -1.03315e-11, -10.5728, -4.78632, -1.78815, -0.707741, -1.02217, 1.78815, -1.78815, -2.86637}, {1.99359e-16, 4.44089e-16, -1.80556, -4.33994, 4.33994, 1.54017, -1.44665, -0.572575, 0.978606, 1.97222e-12, 2.01922, 1.34034, -1.78815, 1.78815, 10.0886, 5.78659, 4.7862, -4.48946, 1.78815, 0.707741, 1.02217, -2.43805e-12, -2.4959, 0.575039, -1.78815, -8.78463, -6.38352, 1.78815, -1.78815, -2.86637}, {8.21831e-17, -4.44089e-16, -1.80556, 1.44665, -1.44665, -0.51339, 4.33994, 1.71772, -2.93582, 1.97167e-12, 2.01922, 1.34034, -1.78815, 1.78815, 2.86637, -5.78659, 8.28248, 1.47852, 1.78815, 0.707741, 8.24439, -2.43716e-12, -2.4959, 0.575039, -1.78815, -0.707741, -1.02217, 1.78815, -9.86504, -8.22773}, {-1.03785e-17, 0, -1.80556, 1.44665, -1.44665, -0.51339, -1.44665, -0.572575, 0.978606, -5.91996e-12, -6.05767, -4.02102, -1.78815, 1.78815, 2.86637, 2.43916e-12, 2.4959, -0.575039, 1.78815, 0.707741, 1.02217, -2.43978e-12, -2.4959, 7.79726, -7.57474, 5.07885, 1.03139, 7.57474, 0.502145, -6.7808}, {-1.83228, -4.62937, -4.62777, -1.94057, 0.198723, 0.200419, 1.32981, -1.74185, -0.13734, 0, 0, -1.60567, 9.40601, -2.94793, -2.95615, 0.754941, 1.90741, -0.0779689, -7.71791, 7.21302, -1.18762, -0.754941, -1.90741, 6.50064, 2.39867, -0.245635, 1.73698, -1.64373, 2.15304, 2.15448}, {0.61076, 1.54312, 1.54259, 5.82171, -0.596168, -0.601256, 1.32981, -1.74185, -0.13734, 0, 0, -1.60567, -0.799305, -8.32553, -8.32484, -4.5643, 8.87479, 0.471392, -2.39867, 0.245635, -1.73698, -0.754941, -1.90741, 0.0779689, 2.39867, -0.245635, 8.15966, -1.64373, 2.15304, 2.15448}, {0.61076, 1.54312, 1.54259, -1.94057, 0.198723, 0.200419, -3.98943, 5.22554, 0.412021, 0, 0, -1.60567, 1.64373, -2.15304, -2.15448, 8.51722, 1.11252, -0.879643, -4.84171, -5.92686, -7.90734, -0.754941, -1.90741, 0.0779689, 2.39867, -0.245635, 1.73698, -1.64373, 2.15304, 8.57715}, {0.61076, 1.54312, 1.54259, -1.94057, 0.198723, 0.200419, 1.32981, -1.74185, -0.13734, 0, 0, 4.817, 1.64373, -2.15304, -2.15448, 0.754941, 1.90741, -0.0779689, -2.39867, 0.245635, -1.73698, -3.19798, -8.0799, -6.09239, 10.1609, -1.04052, 0.93531, -6.96297, 9.12042, 2.70384}, {-5.36656, 5.36656, -5.36656, 0, 0, -3.15147, -0.373467, 3.64699, 2.778, -1.41539, -1.85814, -1.41539, -2.21115, 2.21115, 14.2902, 0.461631, -4.50793, 0.461631, -0.255645, -16.8847, -16.7569, 5.19992, 11.9405, 5.19992, 1.74951, 2.29678, 5.64494, 2.21115, -2.21115, -1.68428}, {1.78885, -1.78885, 1.78885, 0, 0, 9.45441, -0.373467, 3.64699, 2.778, -1.41539, -1.85814, -1.41539, -9.36656, 9.36656, -5.47113, 1.9555, -19.0959, -10.6504, -1.74951, -2.29678, -5.64494, -0.461631, 4.50793, -0.461631, 7.41106, 9.72932, 11.3065, 2.21115, -2.21115, -1.68428}, {1.78885, -1.78885, 1.78885, 0, 0, -3.15147, 1.1204, -10.941, -8.334, -1.41539, -1.85814, -1.41539, -2.21115, 2.21115, 1.68428, 0.461631, -4.50793, 13.0675, -8.90493, 4.85864, -12.8004, -0.461631, 4.50793, -0.461631, 1.74951, 2.29678, 5.64494, 7.87269, 5.2214, 3.97726}, {1.78885, -1.78885, 1.78885, 0, 0, -3.15147, -0.373467, 3.64699, 2.778, 4.24616, 5.57441, 4.24616, -2.21115, 2.21115, 1.68428, 0.461631, -4.50793, 0.461631, -1.74951, -2.29678, -5.64494, -7.61705, 11.6633, -7.61705, 1.74951, 2.29678, 18.2508, 3.70501, -16.7991, -12.7963}, {1.64026, -3.9353, -3.8467e-12, 0.194118, 0, -1.44665, -0.509273, -1.31177, -1.28236e-12, 0.861908, 0, 1.44665, -0.34059, -1.62143, 7.57474, 0.389553, 1.62143, 1.78815, 3.34241, 5.24706, 5.12945e-12, -3.83718, -1.62143, -7.57474, -1.30532, 0, 0, -0.435881, 1.62143, -1.78815}, {-0.546753, 1.31177, 1.28098e-12, -0.582353, 3.77031e-16, 4.33994, -0.509273, -1.31177, -1.28138e-12, 0.861908, 8.26902e-17, 1.44665, 2.62289, -6.86849, 1.78815, 2.42664, 6.86849, 1.78815, 1.30532, -3.78785e-16, 4.44089e-16, -0.389553, -1.62143, -1.78815, -4.75295, -2.77626e-16, -5.78659, -0.435881, 1.62143, -1.78815}, {-0.546753, 1.31177, 1.28164e-12, 0.194118, 0, -1.44665, 1.52782, 3.9353, 3.84623e-12, 0.861908, 0, 1.44665, 0.435881, -1.62143, 1.78815, -0.386918, 1.62143, 7.57474, 3.49233, -5.24706, -5.12657e-12, -0.389553, -1.62143, -1.78815, -1.30532, 0, -4.44089e-16, -3.88351, 1.62143, -7.57474}, {-0.546753, 1.31177, 1.28164e-12, 0.194118, 0, -1.44665, -0.509273, -1.31177, -1.28138e-12, -2.58572, 0, -4.33994, 0.435881, -1.62143, 1.78815, 0.389553, 1.62143, 1.78815, 1.30532, -3.2565e-16, -2.22045e-16, 1.79746, -6.86849, -1.78815, -2.08179, 0, 5.78659, 1.60121, 6.86849, -1.78815}, {0.831641, 5.95736e-16, -6.19774, -0.482067, 1.31177, -0.482067, -0.449021, -1.31177, -0.449021, 1.2083, 1.98579e-16, -1.13482, 2.86679, -6.86849, -0.0294728, 1.15089, 0, 1.15089, 2.69376, 6.86849, -0.202503, -5.98409, -7.94315e-16, 3.38841, -0.897675, -1.62143, 1.99859, -0.938522, 1.62143, 1.95774}, {-0.277214, -1.75113e-16, 2.06591, 1.4462, -3.9353, 1.4462, -0.449021, -1.31177, -0.449021, 1.2083, 3.97157e-16, -1.13482, 2.04738, -1.62143, -10.2214, 2.94697, 5.24706, 2.94697, 0.897675, 1.62143, -1.99859, -1.15089, -2.22045e-16, -1.15089, -5.73088, -1.62143, 6.53788, -0.938522, 1.62143, 1.95774}, {-0.277214, 7.58234e-17, 2.06591, -0.482067, 1.31177, -0.482067, 1.34706, 3.9353, 1.34706, 1.2083, -2.97868e-16, -1.13482, 0.938522, -1.62143, -1.95774, 3.07916, -5.24706, 3.07916, 2.00653, 1.62143, -10.2622, -1.15089, 4.44089e-16, -1.15089, -0.897675, -1.62143, 1.99859, -5.77173, 1.62143, 6.49704}, {-0.277214, 0, 2.06591, -0.482067, 1.31177, -0.482067, -0.449021, -1.31177, -0.449021, -3.6249, 0, 3.40447, 0.938522, -1.62143, -1.95774, 1.15089, 0, 1.15089, 0.897675, 1.62143, -1.99859, -0.0420334, 0, -9.41454, 1.03059, -6.86849, 3.92685, 0.857562, 6.86849, 3.75382}, {10.941, -1.1204, -8.334, 1.78885, -1.78885, 1.78885, 1.85814, 1.41539, -1.41539, 0, 0, -3.15147, -4.85864, 8.90493, -12.8004, -4.50793, 0.461631, -0.461631, -5.2214, -7.87269, 3.97726, 4.50793, -0.461631, 13.0675, -2.21115, 2.21115, 1.68428, -2.29678, -1.74951, 5.64494}, {-3.64699, 0.373467, 2.778, -5.36656, 5.36656, -5.36656, 1.85814, 1.41539, -1.41539, 0, 0, -3.15147, 16.8847, 0.255645, -16.7569, -11.9405, -5.19992, 5.19992, 2.21115, -2.21115, -1.68428, 4.50793, -0.461631, 0.461631, -2.21115, 2.21115, 14.2902, -2.29678, -1.74951, 5.64494}, {-3.64699, 0.373467, 2.778, 1.78885, -1.78885, 1.78885, -5.57441, -4.24616, 4.24616, 0, 0, -3.15147, 2.29678, 1.74951, -5.64494, -11.6633, 7.61705, -7.61705, 16.7991, -3.70501, -12.7963, 4.50793, -0.461631, 0.461631, -2.21115, 2.21115, 1.68428, -2.29678, -1.74951, 18.2508}, {-3.64699, 0.373467, 2.778, 1.78885, -1.78885, 1.78885, 1.85814, 1.41539, -1.41539, 0, 0, 9.45441, 2.29678, 1.74951, -5.64494, -4.50793, 0.461631, -0.461631, 2.21115, -2.21115, -1.68428, 19.0959, -1.9555, -10.6504, -9.36656, 9.36656, -5.47113, -9.72932, -7.41106, 11.3065}, {1.77636e-15, 0, 9.45441, 1.78885, 1.78885, 1.78885, 1.36261, -1.78885, 1.36261, -3.15147, 0, 0, -9.36656, -9.36656, -5.47113, -3.89543, 0, -3.89543, -7.13474, 9.36656, -3.23931, 16.5013, 0, 3.89543, 1.68428, -2.21115, -2.21115, 2.21115, 2.21115, -1.68428}, {0, 0, -3.15147, -5.36656, -5.36656, -5.36656, 1.36261, -1.78885, 1.36261, -3.15147, 0, 0, -2.21115, -2.21115, 14.2902, -9.34589, 7.15542, -9.34589, -1.68428, 2.21115, 2.21115, 3.89543, 0, 3.89543, 14.2902, -2.21115, -2.21115, 2.21115, 2.21115, -1.68428}, {4.44089e-16, 0, -3.15147, 1.78885, 1.78885, 1.78885, -4.08784, 5.36656, -4.08784, -3.15147, 0, 0, -2.21115, -2.21115, 1.68428, -11.0508, -7.15542, -11.0508, -1.68428, 2.21115, 14.817, 3.89543, 0, 3.89543, 1.68428, -2.21115, -2.21115, 14.817, 2.21115, -1.68428}, {0, 0, -3.15147, 1.78885, 1.78885, 1.78885, 1.36261, -1.78885, 1.36261, 9.45441, 0, 0, -2.21115, -2.21115, 1.68428, -3.89543, 0, -3.89543, -1.68428, 2.21115, 2.21115, 3.89543, 0, 16.5013, -5.47113, -9.36656, -9.36656, -3.23931, 9.36656, -7.13474}, {5.22884, -3.98763, -5.22319, 0.200328, -1.9397, -2.54071, 8.97324e-16, 3.55112e-16, 2.34313, 1.54262, 0.610485, -1.54348, 1.10547, 8.51339, 11.1512, -0.24762, 2.3976, 0.244222, 2.1544, -1.643, -14.4208, -5.92285, -4.83954, 5.92971, -2.1544, 1.643, 5.04833, -1.90678, -0.754601, -0.988412}, {-1.74295, 1.32921, 1.74106, -0.600985, 5.81909, 7.62212, 0, 0, 2.34313, 1.54262, 0.610485, -1.54348, 8.87857, -4.56224, -5.97584, -0.24762, 2.3976, -9.12828, 2.1544, -1.643, -5.04833, 0.24762, -2.3976, -0.244222, -8.32487, -0.798945, 11.2223, -1.90678, -0.754601, -0.988412}, {-1.74295, 1.32921, 1.74106, 0.200328, -1.9397, -2.54071, 0, 0, -7.02938, 1.54262, 0.610485, -1.54348, 1.90678, 0.754601, 0.988412, -1.04893, 10.1564, 10.407, 9.12619, -6.95984, -12.0126, 0.24762, -2.3976, -0.244222, -2.1544, 1.643, 5.04833, -8.07725, -3.19654, 5.18552}, {-1.74295, 1.32921, 1.74106, 0.200328, -1.9397, -2.54071, 8.97324e-16, 3.55112e-16, 2.34313, -4.62785, -1.83146, 4.63045, 1.90678, 0.754601, 0.988412, -0.24762, 2.3976, 0.244222, 2.1544, -1.643, -5.04833, 7.21941, -7.71444, -7.20847, -2.95571, 9.40178, 15.2112, -1.90678, -0.754601, -10.3609}, {0.403167, 4.33994, -4.33994, 1.56712, -1.12319e-15, 3.41061e-16, -0.345916, 1.4404, 0.569981, -1.08682, 0.00624416, -2.01663, -8.03944, 1.78815, -1.78815, -1.50949, -1.78044, -0.704535, 1.97736, -5.75389, -4.77261, 5.85676, 1.75546, 8.77105, -0.59369, -0.00771821, 2.49269, 1.77095, -1.78815, 1.78815}, {-0.134389, -1.44665, 1.44665, -4.70136, 1.67385e-15, 3.01891e-15, -0.345916, 1.4404, 0.569981, -1.08682, 0.00624416, -2.01663, -1.2334, 7.57474, -7.57474, -0.125826, -7.54205, -2.98446, 0.59369, 0.00771821, -2.49269, 1.50949, 1.78044, 0.704535, 3.75357, -0.0326948, 10.5592, 1.77095, -1.78815, 1.78815}, {-0.134389, -1.44665, 1.44665, 1.56712, 0, 0, 1.03775, -4.32121, -1.70994, -1.08682, 0.00624416, -2.01663, -1.77095, 1.78815, -1.78815, -7.77798, -1.78044, -0.704535, 1.13125, 5.79431, -8.27928, 1.50949, 1.78044, 0.704535, -0.59369, -0.00771821, 2.49269, 6.11822, -1.81313, 9.85467}, {-0.134389, -1.44665, 1.44665, 1.56712, -2.42925e-18, 7.84555e-16, -0.345916, 1.4404, 0.569981, 3.26045, -0.0187325, 6.04988, -1.77095, 1.78815, -1.78815, -1.50949, -1.78044, -0.704535, 0.59369, 0.00771821, -2.49269, 2.04705, 7.56702, -5.08205, -6.86218, -0.00771821, 2.49269, 3.15462, -7.54977, -0.491769}, {-7.02938, 5.36656, -7.02938, -2.34313, 0, 0, 0, 0, -2.34313, 1.02097e-11, 1.78885, 1.02102e-11, 9.3725, 2.21115, -2.89626, 2.89626, 0, 2.89626, -2.89626, 2.21115, 9.3725, -2.89626, -7.15542, -2.89626, 2.89626, -2.21115, -1.26205e-11, -1.26199e-11, -2.21115, 2.89626}, {2.34313, -1.78885, 2.34313, 7.02938, 0, 0, 0, 0, -2.34313, 1.02086e-11, 1.78885, 1.02066e-11, -9.3725, 9.36656, -12.2688, 2.89626, 0, 12.2688, -2.89626, 2.21115, 1.26154e-11, -2.89626, 4.44089e-16, -2.89626, 2.89626, -9.36656, -5.34422e-11, -1.26186e-11, -2.21115, 2.89626}, {2.34313, -1.78885, 2.34313, -2.34313, 0, 0, 0, 0, 7.02938, 1.0206e-11, 1.78885, 1.02081e-11, 1.26148e-11, 2.21115, -2.89626, 12.2688, 0, 2.89626, -12.2688, 9.36656, -9.3725, -2.89626, 4.44089e-16, -2.89626, 2.89626, -2.21115, -1.26179e-11, -5.34395e-11, -9.36656, 2.89626}, {2.34313, -1.78885, 2.34313, -2.34313, 0, 0, 0, 0, -2.34313, -3.06361e-11, -5.36656, -3.06329e-11, 1.26222e-11, 2.21115, -2.89626, 2.89626, 0, 2.89626, -2.89626, 2.21115, 1.26209e-11, -12.2688, 7.15542, -12.2688, 12.2688, -2.21115, -1.26215e-11, -1.26228e-11, -2.21115, 12.2688}, {7.02938, 0, 8.88974e-16, 2.34566, -1.78885, -2.34313, -1.47457e-18, 1.04056e-15, 2.34313, -0.00253498, 1.78885, -1.02102e-11, -9.38578, 9.36656, 12.2688, -2.8994, 2.21115, -1.26206e-11, 2.89626, -4.88498e-15, -12.2688, 2.90954, -9.36656, 5.34614e-11, -2.89626, 8.88178e-16, 2.89626, 0.00313341, -2.21115, -2.89626}, {-2.34313, 0, 7.14229e-17, -7.03698, 5.36656, 7.02938, 0, 0, 2.34313, -0.00253498, 1.78885, -1.02097e-11, 9.36937, 2.21115, 2.89626, -2.8994, 2.21115, -9.3725, 2.89626, 0, -2.89626, 2.8994, -2.21115, 1.26197e-11, -2.88612, -7.15542, 2.89626, 0.00313341, -2.21115, -2.89626}, {-2.34313, 0, -3.09288e-16, 2.34566, -1.78885, -2.34313, 0, 0, -7.02938, -0.00253498, 1.78885, -1.02071e-11, -0.00313341, 2.21115, 2.89626, -12.282, 9.36656, 9.3725, 12.2688, 0, -2.89626, 2.8994, -2.21115, 1.2617e-11, -2.89626, 0, 2.89626, 0.0132733, -9.36656, -2.89626}, {-2.34313, -2.22045e-16, 6.36673e-16, 2.34566, -1.78885, -2.34313, -1.47457e-18, 1.04056e-15, 2.34313, 0.00760494, -5.36656, 3.06361e-11, -0.00313341, 2.21115, 2.89626, -2.8994, 2.21115, -1.26219e-11, 2.89626, -1.33227e-15, -2.89626, 12.2719, -2.21115, 1.26202e-11, -12.2789, 7.15542, 12.2688, 0.00313341, -2.21115, -12.2688}, {5.3029, -0.485897, 0.486322, 0.215713, 1.38996, 0.214498, 0.501223, -0.501223, -1.10401, 1.0507, -1.0507, 1.05162, 1.05543, -7.4781, -0.922752, -0.886182, -1.09853, 1.09949, -0.439523, 2.42424, 5.98103, -3.31661, 5.30132, -5.30596, -1.56537, -0.419345, -1.565, -1.91828, 1.91828, 0.0647586}, {-1.76763, 0.161966, -0.162107, -0.647139, -4.16987, -0.643495, 0.501223, -0.501223, -1.10401, 1.0507, -1.0507, 1.05162, 8.98882, -2.56614, 0.583671, -2.89107, 0.90636, 5.51552, 1.56537, 0.419345, 1.565, 0.886182, 1.09853, -1.09949, -5.76816, 3.78345, -5.77147, -1.91828, 1.91828, 0.0647586}, {-1.76763, 0.161966, -0.162107, 0.215713, 1.38996, 0.214498, -1.50367, 1.50367, 3.31202, 1.0507, -1.0507, 1.05162, 1.91828, -1.91828, -0.0647586, -1.74903, -6.65835, 0.2415, 8.63591, -0.228518, 2.21343, 0.886182, 1.09853, -1.09949, -1.56537, -0.419345, -1.565, -6.12107, 6.12107, -4.14171}, {-1.76763, 0.161966, -0.162107, 0.215713, 1.38996, 0.214498, 0.501223, -0.501223, -1.10401, -3.15209, 3.15209, -3.15485, 1.91828, -1.91828, -0.0647586, -0.886182, -1.09853, 1.09949, 1.56537, 0.419345, 1.565, 7.95672, 0.45067, -0.451064, -2.42822, -5.97917, -2.423, -3.92317, 3.92317, 4.48079}, {1.71308, 4.3282, 0.488804, 0.642112, 1.62234, -1.62234, 2.1437, 0.314496, -0.314496, -2.21478, -0.4941, 2.09977, -2.65632, -6.71135, 8.69607, -3.44345, -2.39406, 2.39406, -10.5187, 0.136594, 1.84812, 12.3026, 4.37046, -10.7931, 1.94393, -1.39458, -0.590137, 0.0878675, 0.222003, -2.20672}, {-0.571026, -1.44273, -0.162935, -1.92634, -4.86701, 4.86701, 2.1437, 0.314496, -0.314496, -2.21478, -0.4941, 2.09977, 2.19624, 5.54893, 2.85846, -12.0182, -3.65204, 3.65204, -1.94393, 1.39458, 0.590137, 3.44345, 2.39406, -2.39406, 10.8031, 0.581823, -8.98921, 0.0878675, 0.222003, -2.20672}, {-0.571026, -1.44273, -0.162935, 0.642112, 1.62234, -1.62234, -6.43109, -0.943488, 0.943488, -2.21478, -0.4941, 2.09977, -0.0878675, -0.222003, 2.20672, -6.0119, -8.88341, 8.88341, 0.340174, 7.16551, 1.24188, 3.44345, 2.39406, -2.39406, 1.94393, -1.39458, -0.590137, 8.947, 2.1984, -10.6058}, {-0.571026, -1.44273, -0.162935, 0.642112, 1.62234, -1.62234, 2.1437, 0.314496, -0.314496, 6.64435, 1.4823, -6.2993, -0.0878675, -0.222003, 2.20672, -3.44345, -2.39406, 2.39406, -1.94393, 1.39458, 0.590137, 5.72755, 8.16499, -1.74232, -0.624519, -7.88393, 5.89921, -8.48692, -1.03598, -0.948734}, {-4.62937, 4.62937, 1.83228, 0.198723, -0.198723, 1.94057, -1.74185, 0.136178, -1.32981, 0, 1.60567, 0, -2.94793, 2.94793, -9.40601, 1.90741, 0.0773091, -0.754941, 7.21302, 1.19437, 7.71791, -1.90741, -6.49998, 0.754941, -0.245635, -1.73908, -2.39867, 2.15304, -2.15304, 1.64373}, {1.54312, -1.54312, -0.61076, -0.596168, 0.596168, -5.82171, -1.74185, 0.136178, -1.32981, 6.94322e-16, 1.60567, 5.30079e-16, -8.32553, 8.32553, 0.799305, 8.87479, -0.467403, 4.5643, 0.245635, 1.73908, 2.39867, -1.90741, -0.0773091, 0.754941, -0.245635, -8.16175, -2.39867, 2.15304, -2.15304, 1.64373}, {1.54312, -1.54312, -0.61076, 0.198723, -0.198723, 1.94057, 5.22554, -0.408534, 3.98943, 0, 1.60567, 0, -2.15304, 2.15304, -1.64373, 1.11252, 0.872199, -8.51722, -5.92686, 7.91157, 4.84171, -1.90741, -0.0773091, 0.754941, -0.245635, -1.73908, -2.39867, 2.15304, -8.57571, 1.64373}, {1.54312, -1.54312, -0.61076, 0.198723, -0.198723, 1.94057, -1.74185, 0.136178, -1.32981, 0, -4.817, 0, -2.15304, 2.15304, -1.64373, 1.90741, 0.0773091, -0.754941, 0.245635, 1.73908, 2.39867, -8.0799, 6.09519, 3.19798, -1.04052, -0.94419, -10.1609, 9.12042, -2.69775, 6.96297}, {-1.38621, -1.33227e-15, 3.9353, 1.09414, 1.31177, 1.31177, 0.173581, -1.31177, 0, -1.72979, 0, 0, -6.30013, -6.86849, -5.24706, -1.56699, 4.44089e-16, -1.62143, -1.48003, 6.86849, 1.62143, 8.48614, -4.44089e-16, 1.62143, 0.785706, -1.62143, -1.62143, 1.92358, 1.62143, 0}, {0.462069, -5.96084e-17, -1.31177, -3.28242, -3.9353, -3.9353, 0.173581, -1.31177, 0, -1.72979, 2.81653e-16, 0, -3.77185, -1.62143, 5.24706, -2.26131, 5.24706, -1.62143, -0.785706, 1.62143, 1.62143, 1.56699, -2.22045e-16, 1.62143, 7.70486, -1.62143, -1.62143, 1.92358, 1.62143, 0}, {0.462069, -8.88178e-16, -1.31177, 1.09414, 1.31177, 1.31177, -0.520744, 3.9353, 0, -1.72979, 0, 0, -1.92358, -1.62143, 3.2565e-16, -5.94354, -5.24706, -6.86849, -2.63398, 1.62143, 6.86849, 1.56699, 1.11022e-15, 1.62143, 0.785706, -1.62143, -1.62143, 8.84273, 1.62143, 0}, {0.462069, 0, -1.31177, 1.09414, 1.31177, 1.31177, 0.173581, -1.31177, 0, 5.18937, 0, 0, -1.92358, -1.62143, 3.2565e-16, -1.56699, 0, -1.62143, -0.785706, 1.62143, 1.62143, -0.281287, 0, 6.86849, -3.59085, -6.86849, -6.86849, 1.22925, 6.86849, 0}, {-3.84404e-12, -3.9353, 2.80446, 1.44665, 0, 0.44688, -1.28111e-12, -1.31177, -0.870737, -1.44665, 0, 1.35868, -7.57474, -1.62143, -1.18439, -1.78815, 1.62143, 0.523916, 5.12412e-12, 5.24706, 5.71474, 7.57474, -1.62143, -5.95862, 2.22045e-16, 0, -2.23179, 1.78815, 1.62143, -0.603126}, {1.2812e-12, 1.31177, -0.934819, -4.33994, -8.15796e-16, -1.34064, -1.28111e-12, -1.31177, -0.870737, -1.44665, -1.24937e-16, 1.35868, -1.78815, -6.86849, 4.3424, -1.78815, 6.86849, 4.00686, 0, -1.43955e-16, 2.23179, 1.78815, -1.62143, -0.523916, 5.78659, 3.18053e-16, -7.66649, 1.78815, 1.62143, -0.603126}, {1.28053e-12, 1.31177, -0.934819, 1.44665, 0, 0.44688, 3.84227e-12, 3.9353, 2.61221, -1.44665, 0, 1.35868, -1.78815, -1.62143, 0.603126, -7.57474, 1.62143, -1.2636, -5.12124e-12, -5.24706, 5.97107, 1.78815, -1.62143, -0.523916, -4.44089e-16, 0, -2.23179, 7.57474, 1.62143, -6.03783}, {1.28098e-12, 1.31177, -0.934819, 1.44665, 0, 0.44688, -1.281e-12, -1.31177, -0.870737, 4.33994, 0, -4.07603, -1.78815, -1.62143, 0.603126, -1.78815, 1.62143, 0.523916, 0, -3.2565e-16, 2.23179, 1.78815, -6.86849, 3.21536, -5.78659, 0, -4.01931, 1.78815, 6.86849, 2.87982}, {5.36291, -5.36619, -5.37088, 3.64451, -0.373213, -0.376399, -1.85687, 0.190152, -1.41389, 0, -1.60567, 0, -16.8733, -0.256821, -0.242074, -2.20964, 0.226277, 2.21292, 11.9323, -3.20664, 5.19032, 2.20964, 6.1964, -2.21292, -4.50486, 2.44603, 0.465254, 2.29522, 1.74967, 1.74767}, {-1.78764, 1.78873, 1.79029, -10.9335, 1.11964, 1.1292, -1.85687, 0.190152, -1.41389, 0, -1.60567, 0, 4.85533, -8.90459, -8.90884, 5.21784, -0.53433, 7.8685, 4.50486, -2.44603, -0.465254, 2.20964, -0.226277, -2.21292, -4.50486, 8.8687, 0.465254, 2.29522, 1.74967, 1.74767}, {-1.78764, 1.78873, 1.79029, 3.64451, -0.373213, -0.376399, 5.57061, -0.570455, 4.24168, 0, -1.60567, 0, -2.29522, -1.74967, -1.74767, -16.7877, 1.71913, 3.71852, 11.6554, -9.60095, -7.62642, 2.20964, -0.226277, -2.21292, -4.50486, 2.44603, 0.465254, 2.29522, 8.17235, 1.74767}, {-1.78764, 1.78873, 1.79029, 3.64451, -0.373213, -0.376399, -1.85687, 0.190152, -1.41389, 0, 4.817, 0, -2.29522, -1.74967, -1.74767, -2.20964, 0.226277, 2.21292, 4.50486, -2.44603, -0.465254, 9.36019, -7.3812, -9.37409, -19.0829, 3.93889, 1.97085, 9.72271, 0.989068, 7.40324}, {-4.90664, -4.91093, -4.90664, 0.802238, -0.802728, -0.80343, -1.63555, -0.0313083, -1.63555, -0.802238, -0.80294, 0.80343, -6.22222, 2.17973, 2.18516, 1.03003, 1.03093, 3.01474, 6.54219, -1.85948, 6.54219, 2.17893, 2.18083, -6.22846, -3.78586e-14, 1.98471, 3.79696e-14, 3.01327, 1.03119, 1.02855}, {1.63555, 1.63698, 1.63555, -2.40672, 2.40819, 2.41029, -1.63555, -0.0313083, -1.63555, -0.802238, -0.80294, 0.80343, -9.55546, -7.57909, -7.57074, 7.57221, 1.15616, 9.55693, 3.71925e-14, -1.98471, -3.81917e-14, -1.03003, -1.03093, -3.01474, 3.20895, 5.19647, -3.21372, 3.01327, 1.03119, 1.02855}, {1.63555, 1.63698, 1.63555, 0.802238, -0.802728, -0.80343, 4.90664, 0.0939249, 4.90664, -0.802238, -0.80294, 0.80343, -3.01327, -1.03119, -1.02855, -2.17893, 4.24184, 6.22846, -6.54219, -8.53262, -6.54219, -1.03003, -1.03093, -3.01474, -3.78586e-14, 1.98471, 3.80806e-14, 6.22222, 4.24295, -2.18516}, {1.63555, 1.63698, 1.63555, 0.802238, -0.802728, -0.80343, -1.63555, -0.0313083, -1.63555, 2.40672, 2.40882, -2.41029, -3.01327, -1.03119, -1.02855, 1.03003, 1.03093, 3.01474, 3.73035e-14, -1.98471, -3.83027e-14, -7.57221, -7.57883, -9.55693, -3.20895, 5.19563, 3.21372, 9.55546, 1.15642, 7.57074}, {0.433524, 4.35281, -4.30748, -1.58383, 1.03002, -2.49725, 0.961132, -0.582294, -1.46836, 0.767201, 1.00321, 2.52978, 8.47164, -3.5998, 11.301, 0.769691, -0.553419, 4.90175, -4.85393, 4.84239, 5.91364, -3.83849, -3.45943, -15.0209, 1.0094, -2.51321, -0.0402101, -2.13634, -0.520284, -1.31199}, {-0.144508, -1.45094, 1.43583, 4.75148, -3.09006, 7.49174, 0.961132, -0.582294, -1.46836, 0.767201, 1.00321, 2.52978, 2.71437, 6.32404, -4.43132, -3.07484, 1.77576, 10.7752, -1.0094, 2.51321, 0.0402101, -0.769691, 0.553419, -4.90175, -2.0594, -6.52607, -10.1593, -2.13634, -0.520284, -1.31199}, {-0.144508, -1.45094, 1.43583, -1.58383, 1.03002, -2.49725, -2.8834, 1.74688, 4.40507, 0.767201, 1.00321, 2.52978, 2.13634, 0.520284, 1.31199, 7.10499, -4.6735, 14.8907, -0.431372, 8.31697, -5.70309, -0.769691, 0.553419, -4.90175, 1.0094, -2.51321, -0.0402101, -5.20514, -4.53314, -11.4311}, {-0.144508, -1.45094, 1.43583, -1.58383, 1.03002, -2.49725, 0.961132, -0.582294, -1.46836, -2.3016, -3.00964, -7.58933, 2.13634, 0.520284, 1.31199, 0.769691, -0.553419, 4.90175, -1.0094, 2.51321, 0.0402101, -0.191659, 6.35717, -10.6451, 7.3447, -6.63329, 9.94877, -5.98087, 1.80889, 4.56144}, {-5.22554, 3.98943, -3.78662, 0, 0, -1.80556, -0.198723, 1.94057, 0.386742, -1.54312, -0.61076, 0.156608, -2.15304, 1.64373, 7.89384, 0.245635, -2.39867, 1.75375, -1.11252, -8.51722, -3.58518, 5.92686, 4.84171, -2.38018, 1.90741, 0.754941, 2.03821, 2.15304, -1.64373, -0.671617}, {1.74185, -1.32981, 1.26221, 0, 0, 5.41667, -0.198723, 1.94057, 0.386742, -1.54312, -0.61076, 0.156608, -9.12042, 6.96297, -4.37721, 1.04052, -10.1609, 0.206785, -1.90741, -0.754941, -2.03821, -0.245635, 2.39867, -1.75375, 8.0799, 3.19798, 1.41178, 2.15304, -1.64373, -0.671617}, {1.74185, -1.32981, 1.26221, 0, 0, -1.80556, 0.596168, -5.82171, -1.16022, -1.54312, -0.61076, 0.156608, -2.15304, 1.64373, 0.671617, 0.245635, -2.39867, 8.97597, -8.87479, 4.5643, -7.08704, -0.245635, 2.39867, -1.75375, 1.90741, 0.754941, 2.03821, 8.32553, 0.799305, -1.29805}, {1.74185, -1.32981, 1.26221, 0, 0, -1.80556, -0.198723, 1.94057, 0.386742, 4.62937, 1.83228, -0.469823, -2.15304, 1.64373, 0.671617, 0.245635, -2.39867, 1.75375, -1.90741, -0.754941, -2.03821, -7.21302, 7.71791, -6.80258, 1.90741, 0.754941, 9.26043, 2.94793, -9.40601, -2.21858}, {2.47366, -6.0686, -0.0191747, -0.141226, -1.44665, 1.44665, 1.40644, 1.00594e-16, 2.53667e-16, -0.440661, -0.57622, -1.45304, 1.75867, 5.07434, -7.58264, -1.56389, 1.78815, -1.78815, -6.34501, -2.5004, -0.0079004, 3.32653, 0.516725, 7.60031, 0.719252, 2.5004, 0.0079004, -1.19377, 0.712247, 1.79605}, {-0.824552, 2.02287, 0.00639156, 0.423679, 4.33994, -4.33994, 1.40644, 3.01783e-16, 7.61e-16, -0.440661, -0.57622, -1.45304, 4.49197, -8.80371, -1.82162, -7.18964, 1.78815, -1.78815, -0.719252, -2.5004, -0.0079004, 1.56389, -1.78815, 1.78815, 2.48189, 4.80528, 5.82005, -1.19377, 0.712247, 1.79605}, {-0.824552, 2.02287, 0.00639156, -0.141226, -1.44665, 1.44665, -4.21932, 0, 0, -0.440661, -0.57622, -1.45304, 1.19377, -0.712247, -1.79605, -0.998983, 7.57474, -7.57474, 2.57896, -10.5919, -0.0334666, 1.56389, -1.78815, 1.78815, 0.719252, 2.5004, 0.0079004, 0.568875, 3.01713, 7.60821}, {-0.824552, 2.02287, 0.00639156, -0.141226, -1.44665, 1.44665, 1.40644, -3.01783e-16, -7.61e-16, 1.32198, 1.72866, 4.35912, 1.19377, -0.712247, -1.79605, -1.56389, 1.78815, -1.78815, -0.719252, -2.5004, -0.0079004, 4.8621, -9.87962, 1.76259, 1.28416, 8.28699, -5.77869, -6.81952, 0.712247, 1.79605}, {-5.82171, -0.596168, -7.61729, 0, 0, -2.34313, -0.61076, 1.54312, 1.54399, -1.32981, -1.74185, -1.73996, -2.39867, -0.245635, 9.13027, 0.754941, -1.90741, 0.987787, 0.799305, -8.32553, -11.2229, 4.5643, 8.87479, 5.97206, 1.64373, 2.15304, 5.04697, 2.39867, 0.245635, 0.242235}, {1.94057, 0.198723, 2.5391, 0, 0, 7.02938, -0.61076, 1.54312, 1.54399, -1.32981, -1.74185, -1.73996, -10.1609, -1.04052, -10.3986, 3.19798, -8.0799, -5.18817, -1.64373, -2.15304, -5.04697, -0.754941, 1.90741, -0.987787, 6.96297, 9.12042, 12.0068, 2.39867, 0.245635, 0.242235}, {1.94057, 0.198723, 2.5391, 0, 0, -2.34313, 1.83228, -4.62937, -4.63197, -1.32981, -1.74185, -1.73996, -2.39867, -0.245635, -0.242235, 0.754941, -1.90741, 10.3603, -9.40601, -2.94793, -15.2034, -0.754941, 1.90741, -0.987787, 1.64373, 2.15304, 5.04697, 7.71791, 7.21302, 7.20208}, {1.94057, 0.198723, 2.5391, 0, 0, -2.34313, -0.61076, 1.54312, 1.54399, 3.98943, 5.22554, 5.21989, -2.39867, -0.245635, -0.242235, 0.754941, -1.90741, 0.987787, -1.64373, -2.15304, -5.04697, -8.51722, 1.11252, -11.1442, 1.64373, 2.15304, 14.4195, 4.84171, -5.92686, -5.93372}, {7.02938, 8.88178e-16, -8.88178e-16, 1.54312, -1.54312, -0.61076, 2.54185, -0.198723, 1.94057, -1.74185, 1.74185, -1.32981, -5.18364, 8.0799, 3.19798, -5.0493, 2.15304, -1.64373, -10.413, 1.04052, -10.1609, 12.0167, -9.12042, 6.96297, 0.245635, -0.245635, 2.39867, -0.988857, -1.90741, -0.754941}, {-2.34313, 0, -4.44089e-16, -4.62937, 4.62937, 1.83228, 2.54185, -0.198723, 1.94057, -1.74185, 1.74185, -1.32981, 10.3614, 1.90741, 0.754941, -15.2167, 2.94793, -9.40601, -0.245635, 0.245635, -2.39867, 5.0493, -2.15304, 1.64373, 7.21302, -7.21302, 7.71791, -0.988857, -1.90741, -0.754941}, {-2.34313, 2.22045e-16, 0, 1.54312, -1.54312, -0.61076, -7.62554, 0.596168, -5.82171, -1.74185, 1.74185, -1.32981, 0.988857, 1.90741, 0.754941, -11.2218, 8.32553, 0.799305, 9.12687, 0.245635, -2.39867, 5.0493, -2.15304, 1.64373, 0.245635, -0.245635, 2.39867, 5.97853, -8.87479, 4.5643}, {-2.34313, 0, -2.22045e-16, 1.54312, -1.54312, -0.61076, 2.54185, -0.198723, 1.94057, 5.22554, -5.22554, 3.98943, 0.988857, 1.90741, 0.754941, -5.0493, 2.15304, -1.64373, -0.245635, 0.245635, -2.39867, 14.4218, -2.15304, 1.64373, -5.92686, 5.92686, 4.84171, -11.1562, -1.11252, -8.51722}, {9.45441, 8.88178e-16, 0, -1.41486, -1.85814, 1.41539, 2.77696, 3.64699, 0.373467, 1.78937, -1.78885, -1.78885, 11.3037, 9.72932, -7.41106, -1.68365, -2.21115, -2.21115, -10.6449, -19.0959, -1.9555, -5.47381, 9.36656, 9.36656, -0.46292, 4.50793, 0.461631, -5.64429, -2.29678, 1.74951}, {-3.15147, 8.88178e-16, 4.44089e-16, 4.24457, 5.57441, -4.24616, 2.77696, 3.64699, 0.373467, 1.78937, -1.78885, -1.78885, 18.2502, 2.29678, -1.74951, -12.7915, -16.7991, -3.70501, 0.46292, -4.50793, -0.461631, 1.68365, 2.21115, 2.21115, -7.62038, 11.6633, 7.61705, -5.64429, -2.29678, 1.74951}, {-3.15147, 4.44089e-16, 2.22045e-16, -1.41486, -1.85814, 1.41539, -8.33088, -10.941, -1.1204, 1.78937, -1.78885, -1.78885, 5.64429, 2.29678, -1.74951, 3.97577, 5.2214, -7.87269, 13.0688, -4.50793, -0.461631, 1.68365, 2.21115, 2.21115, -0.46292, 4.50793, 0.461631, -12.8018, 4.85864, 8.90493}, {-3.15147, -2.22045e-16, 0, -1.41486, -1.85814, 1.41539, 2.77696, 3.64699, 0.373467, -5.3681, 5.36656, 5.36656, 5.64429, 2.29678, -1.74951, -1.68365, -2.21115, -2.21115, 0.46292, -4.50793, -0.461631, 14.2895, 2.21115, 2.21115, 5.1965, 11.9405, -5.19992, -16.7521, -16.8847, 0.255645}, {-1.04981, -4.33994, -1.71772, -1.16436, 0, 0, 0.183612, -1.44665, 1.44665, 0.630806, -1.58777e-12, -2.01922, 5.6641, -1.78815, -0.707741, 1.21227, 1.78815, -1.78815, -1.39395, 5.78659, -8.28248, -3.73549, -1.78815, 9.86504, 0.659504, 1.96259e-12, 2.4959, -1.00668, 1.78815, 0.707741}, {0.349938, 1.44665, 0.572575, 3.49307, 0, 0, 0.183612, -1.44665, 1.44665, 0.630806, -1.5874e-12, -2.01922, -0.393077, -7.57474, -2.99804, 0.47782, 7.57474, -7.57474, -0.659504, -1.9625e-12, -2.4959, -1.21227, -1.78815, 1.78815, -1.86372, 8.31176e-12, 10.5728, -1.00668, 1.78815, 0.707741}, {0.349938, 1.44665, 0.572575, -1.16436, 0, 0, -0.550835, 4.33994, -4.33994, 0.630806, -1.58632e-12, -2.01922, 1.00668, -1.78815, -0.707741, 5.86969, 1.78815, -1.78815, -2.05926, -5.78659, -4.7862, -1.21227, -1.78815, 1.78815, 0.659504, 1.9608e-12, 2.4959, -3.5299, 1.78815, 8.78463}, {0.349938, 1.44665, 0.572575, -1.16436, 0, 0, 0.183612, -1.44665, 1.44665, -1.89242, 4.76004e-12, 6.05767, 1.00668, -1.78815, -0.707741, 1.21227, 1.78815, -1.78815, -0.659504, -1.9616e-12, -2.4959, -2.61202, -7.57474, -0.502145, 5.31693, 1.96124e-12, 2.4959, -1.74112, 7.57474, -5.07885}, {-5.36656, 5.36656, -5.36656, 1.85814, -0.190281, -1.41539, 0, 1.60567, 0, -3.64699, 0.373467, -0.373467, -11.9405, 3.20747, 5.19992, -2.29678, -1.74951, 1.74951, -2.21115, -6.19624, -2.21115, 16.8847, 0.255645, -0.255645, 2.21115, -0.226431, 2.21115, 4.50793, -2.44635, 0.461631}, {1.78885, -1.78885, 1.78885, -5.57441, 0.570843, 4.24616, 1.45374e-15, 1.60567, 1.48869e-16, -3.64699, 0.373467, -0.373467, -11.6633, 9.60176, -7.61705, -2.29678, -8.17219, 1.74951, -2.21115, 0.226431, -2.21115, 2.29678, 1.74951, -1.74951, 16.7991, -1.7203, 3.70501, 4.50793, -2.44635, 0.461631}, {1.78885, -1.78885, 1.78885, 1.85814, -0.190281, -1.41539, 0, -4.817, 0, -3.64699, 0.373467, -0.373467, -4.50793, 2.44635, -0.461631, -9.72932, -0.988391, 7.41106, -9.36656, 7.38185, -9.36656, 2.29678, 1.74951, -1.74951, 2.21115, -0.226431, 2.21115, 19.0959, -3.94022, 1.9555}, {1.78885, -1.78885, 1.78885, 1.85814, -0.190281, -1.41539, 0, 1.60567, 0, 10.941, -1.1204, 1.1204, -4.50793, 2.44635, -0.461631, -2.29678, -1.74951, 1.74951, -2.21115, 0.226431, -2.21115, -4.85864, 8.90493, -8.90493, -5.2214, 0.534693, 7.87269, 4.50793, -8.86902, 0.461631}, {-2.3518, -6.05767, 5.91882e-12, 0.531029, -0.572575, 1.44665, -0.258935, -1.44665, -1.44665, -1.05603, 0, 0, -3.7495, 0.502145, -7.57474, -0.336326, 2.4959, -2.43872e-12, 0.386809, 5.07885, 7.57474, 4.56043, -2.4959, 2.43872e-12, 0.648932, 0.707741, -1.78815, 1.62538, 1.78815, 1.78815}, {0.783932, 2.01922, -1.97264e-12, -1.59309, 1.71772, -4.33994, -0.258935, -1.44665, -1.44665, -1.05603, 0, 0, -4.76111, -9.86504, -1.78815, 0.699414, 8.28248, 5.78659, -0.648932, -0.707741, 1.78815, 0.336326, -2.4959, 2.43827e-12, 4.87303, 0.707741, -1.78815, 1.62538, 1.78815, 1.78815}, {0.783932, 2.01922, -1.9722e-12, 0.531029, -0.572575, 1.44665, 0.776805, 4.33994, 4.33994, -1.05603, 0, 0, -1.62538, -1.78815, -1.78815, -2.46044, 4.7862, -5.78659, -3.78466, -8.78463, 1.78815, 0.336326, -2.4959, 2.43783e-12, 0.648932, 0.707741, -1.78815, 5.84948, 1.78815, 1.78815}, {0.783932, 2.01922, -1.97309e-12, 0.531029, -0.572575, 1.44665, -0.258935, -1.44665, -1.44665, 3.16808, 0, 0, -1.62538, -1.78815, -1.78815, -0.336326, 2.4959, -2.43894e-12, -0.648932, -0.707741, 1.78815, -2.7994, -10.5728, 1.03313e-11, -1.47518, 2.99804, -7.57474, 2.66112, 7.57474, 7.57474}, {-5.36656, -5.36656, -5.36656, 2.778, -3.64699, -0.373467, -1.41539, 1.85814, -1.41539, -3.15147, 0, 0, -16.7569, 16.8847, -0.255645, -1.68428, 2.21115, 2.21115, 5.19992, -11.9405, 5.19992, 14.2902, -2.21115, -2.21115, 0.461631, 4.50793, 0.461631, 5.64494, -2.29678, 1.74951}, {1.78885, 1.78885, 1.78885, -8.334, 10.941, 1.1204, -1.41539, 1.85814, -1.41539, -3.15147, 0, 0, -12.8004, -4.85864, -8.90493, 3.97726, -5.2214, 7.87269, -0.461631, -4.50793, -0.461631, 1.68428, -2.21115, -2.21115, 13.0675, 4.50793, 0.461631, 5.64494, -2.29678, 1.74951}, {1.78885, 1.78885, 1.78885, 2.778, -3.64699, -0.373467, 4.24616, -5.57441, 4.24616, -3.15147, 0, 0, -5.64494, 2.29678, -1.74951, -12.7963, 16.7991, 3.70501, -7.61705, -11.6633, -7.61705, 1.68428, -2.21115, -2.21115, 0.461631, 4.50793, 0.461631, 18.2508, -2.29678, 1.74951}, {1.78885, 1.78885, 1.78885, 2.778, -3.64699, -0.373467, -1.41539, 1.85814, -1.41539, 9.45441, 0, 0, -5.64494, 2.29678, -1.74951, -1.68428, 2.21115, 2.21115, -0.461631, -4.50793, -0.461631, -5.47113, -9.36656, -9.36656, -10.6504, 19.0959, 1.9555, 11.3065, -9.72932, 7.41106}, {0.408534, -3.98943, 5.22554, 1.54312, 0.61076, 1.54312, 0.198723, -1.94057, 0.198723, -1.60567, 0, 0, -7.91157, -4.84171, -5.92686, -2.15304, 1.64373, -2.15304, -0.872199, 8.51722, 1.11252, 8.57571, -1.64373, 2.15304, 0.0773091, -0.754941, -1.90741, 1.73908, 2.39867, -0.245635}, {-0.136178, 1.32981, -1.74185, -4.62937, -1.83228, -4.62937, 0.198723, -1.94057, 0.198723, -1.60567, 0, 0, -1.19437, -7.71791, 7.21302, -2.94793, 9.40601, -2.94793, -0.0773091, 0.754941, 1.90741, 2.15304, -1.64373, 2.15304, 6.49998, -0.754941, -1.90741, 1.73908, 2.39867, -0.245635}, {-0.136178, 1.32981, -1.74185, 1.54312, 0.61076, 1.54312, -0.596168, 5.82171, -0.596168, -1.60567, 0, 0, -1.73908, -2.39867, 0.245635, -8.32553, -0.799305, -8.32553, 0.467403, -4.5643, 8.87479, 2.15304, -1.64373, 2.15304, 0.0773091, -0.754941, -1.90741, 8.16175, 2.39867, -0.245635}, {-0.136178, 1.32981, -1.74185, 1.54312, 0.61076, 1.54312, 0.198723, -1.94057, 0.198723, 4.817, 0, 0, -1.73908, -2.39867, 0.245635, -2.15304, 1.64373, -2.15304, -0.0773091, 0.754941, 1.90741, 2.69775, -6.96297, 9.12042, -6.09519, -3.19798, -8.0799, 0.94419, 10.1609, -1.04052}, {-1.29949, 3.9353, 2.21079, 1.70046, 1.31177, -0.409533, -0.573592, 0, 1.62837, -1.56004, 0, -0.481907, -9.43917, -5.24706, 3.05524, -1.39289, -1.62143, -1.50656, 2.46795, 1.62143, -7.61536, 7.63304, 1.62143, 3.43419, -0.173579, -1.62143, 1.10188, 2.63731, 0, -1.4171}, {0.433164, -1.31177, -0.736929, -5.10139, -3.9353, 1.2286, -0.573592, 0, 1.62837, -1.56004, 0, -0.481907, -4.36997, 5.24706, 4.36482, 0.901477, -1.62143, -8.02004, 0.173579, 1.62143, -1.10188, 1.39289, 1.62143, 1.50656, 6.06657, -1.62143, 3.02951, 2.63731, 0, -1.4171}, {0.433164, -1.31177, -0.736929, 1.70046, 1.31177, -0.409533, 1.72078, 0, -4.88511, -1.56004, 0, -0.481907, -2.63731, 3.2565e-16, 1.4171, -8.19475, -6.86849, 0.131566, -1.55908, 6.86849, 1.84584, 1.39289, 1.62143, 1.50656, -0.173579, -1.62143, 1.10188, 8.87746, 0, 0.510523}, {0.433164, -1.31177, -0.736929, 1.70046, 1.31177, -0.409533, -0.573592, 0, 1.62837, 4.68011, 0, 1.44572, -2.63731, 3.2565e-16, 1.4171, -1.39289, -1.62143, -1.50656, 0.173579, 1.62143, -1.10188, -0.339765, 6.86849, 4.45428, -6.97544, -6.86849, 2.74001, 4.93168, 0, -7.93058}, {10.941, 1.1204, -5.07489, 1.78885, 1.78885, -0.204309, 0, 0, -2.39759, 1.85814, -1.41539, 0.910268, -4.85864, -8.90493, -1.02119, -2.21115, -2.21115, 3.21612, 4.50793, 0.461631, 10.463, -5.2214, 7.87269, -6.8572, -4.50793, -0.461631, -0.872613, -2.29678, 1.74951, 1.83843}, {-3.64699, -0.373467, 1.69163, -5.36656, -5.36656, 0.612928, 0, 0, -2.39759, 1.85814, -1.41539, 0.910268, 16.8847, -0.255645, -8.60495, -2.21115, -2.21115, 12.8065, 4.50793, 0.461631, 0.872613, 2.21115, 2.21115, -3.21612, -11.9405, 5.19992, -4.51368, -2.29678, 1.74951, 1.83843}, {-3.64699, -0.373467, 1.69163, 1.78885, 1.78885, -0.204309, 0, 0, 7.19277, 1.85814, -1.41539, 0.910268, 2.29678, -1.74951, -1.83843, -9.36656, -9.36656, 4.03336, 19.0959, 1.9555, -5.89391, 2.21115, 2.21115, -3.21612, -4.50793, -0.461631, -0.872613, -9.72932, 7.41106, -1.80264}, {-3.64699, -0.373467, 1.69163, 1.78885, 1.78885, -0.204309, 0, 0, -2.39759, -5.57441, 4.24616, -2.7308, 2.29678, -1.74951, -1.83843, -2.21115, -2.21115, 3.21612, 4.50793, 0.461631, 0.872613, 16.7991, 3.70501, -9.98265, -11.6633, -7.61705, -0.0553752, -2.29678, 1.74951, 11.4288}, {-5.36656, 5.36656, -5.36656, 3.86512e-15, 3.15147, 1.39953e-15, -3.15147, 0, 0, 1.36261, -1.36261, -1.78885, -2.21115, -14.2902, -2.21115, 3.89543, -3.89543, -1.72992e-15, 14.2902, 2.21115, -2.21115, -9.34589, 9.34589, 7.15542, -1.68428, -2.21115, 2.21115, 2.21115, 1.68428, 2.21115}, {1.78885, -1.78885, 1.78885, -1.0595e-14, -9.45441, 4.1986e-15, -3.15147, 0, 0, 1.36261, -1.36261, -1.78885, -9.36656, 5.47113, -9.36656, 16.5013, -3.89543, 1.72992e-15, 1.68428, 2.21115, -2.21115, -3.89543, 3.89543, -2.17401e-15, -7.13474, 3.23931, 9.36656, 2.21115, 1.68428, 2.21115}, {1.78885, -1.78885, 1.78885, 0, 3.15147, 0, 9.45441, 0, 0, 1.36261, -1.36261, -1.78885, -2.21115, -1.68428, -2.21115, 3.89543, -16.5013, 0, -5.47113, 9.36656, -9.36656, -3.89543, 3.89543, -4.44089e-16, -1.68428, -2.21115, 2.21115, -3.23931, 7.13474, 9.36656}, {1.78885, -1.78885, 1.78885, -1.06606e-15, 3.15147, 1.39953e-15, -3.15147, 0, 0, -4.08784, 4.08784, 5.36656, -2.21115, -1.68428, -2.21115, 3.89543, -3.89543, -1.72992e-15, 1.68428, 2.21115, -2.21115, -11.0508, 11.0508, -7.15542, -1.68428, -14.817, 2.21115, 14.817, 1.68428, 2.21115}, {-3.13871, 2.39624, 3.14224, -1.3586, 1.03722, -0.984492, 1.05172, 0.985921, 1.29286, -0.739357, -1.22439, 0.739047, 5.8205, -4.44365, 6.44954, 0.379324, -2.50074, -0.381162, -6.8001, -4.17504, -5.47482, 2.5781, 7.39832, -2.57503, 2.59322, 0.231359, 0.303387, -0.386102, 0.294769, -2.51157}, {1.04624, -0.798747, -1.04741, 4.0758, -3.11166, 2.95348, 1.05172, 0.985921, 1.29286, -0.739357, -1.22439, 0.739047, -3.79884, 2.90022, 6.70123, -3.82756, -6.44442, -5.5526, -2.59322, -0.231359, -0.303387, -0.379324, 2.50074, 0.381162, 5.55064, 5.12894, -2.6528, -0.386102, 0.294769, -2.51157}, {1.04624, -0.798747, -1.04741, -1.3586, 1.03722, -0.984492, -3.15516, -2.95776, -3.87858, -0.739357, -1.22439, 0.739047, 0.386102, -0.294769, 2.51157, 5.81372, -6.64962, 3.55681, -6.77816, 2.96363, 3.88627, -0.379324, 2.50074, 0.381162, 2.59322, 0.231359, 0.303387, 2.57132, 5.19235, -5.46776}, {1.04624, -0.798747, -1.04741, -1.3586, 1.03722, -0.984492, 1.05172, 0.985921, 1.29286, 2.21807, 3.67318, -2.21714, 0.386102, -0.294769, 2.51157, 0.379324, -2.50074, -0.381162, -2.59322, -0.231359, -0.303387, -4.56427, 5.69573, 4.57082, 8.02762, -3.91752, 4.24135, -4.59298, -3.64891, -7.68301}, {3.49307, 0, -5.19009e-16, 0.460877, 0.572575, 1.44665, -0.183612, 1.44665, -1.44665, 0.88709, -2.01922, 1.97395e-12, -0.973962, -2.99804, -7.57474, -0.342719, -2.4959, 2.44027e-12, 2.40063, -7.57474, 7.57474, -3.20564, 10.5728, -1.03361e-11, -1.66618, 1.78815, -1.78815, -0.869547, 0.707741, 1.78815}, {-1.16436, 0, 2.63061e-17, -1.38263, -1.71772, -4.33994, -0.183612, 1.44665, -1.44665, 0.88709, -2.01922, 1.97018e-12, 5.52697, -0.707741, -1.78815, 0.391727, -8.28248, 5.78659, 1.66618, -1.78815, 1.78815, 0.342719, 2.4959, -2.43516e-12, -5.21454, 9.86504, -1.78815, -0.869547, 0.707741, 1.78815}, {-1.16436, 0, 1.0874e-16, 0.460877, 0.572575, 1.44665, 0.550835, -4.33994, 4.33994, 0.88709, -2.01922, 1.97254e-12, 0.869547, -0.707741, -1.78815, -2.18623, -4.7862, -5.78659, 6.3236, -1.78815, 1.78815, 0.342719, 2.4959, -2.43827e-12, -1.66618, 1.78815, -1.78815, -4.41791, 8.78463, 1.78815}, {-1.16436, 0, 2.47018e-16, 0.460877, 0.572575, 1.44665, -0.183612, 1.44665, -1.44665, -2.66127, 6.05767, -5.92185e-12, 0.869547, -0.707741, -1.78815, -0.342719, -2.4959, 2.44027e-12, 1.66618, -1.78815, 1.78815, 5.00014, 2.4959, -2.44081e-12, -3.50969, -0.502145, -7.57474, -0.135101, -5.07885, 7.57474}, {-4.817, 1.77636e-15, 1.9984e-15, -1.78885, 1.78885, -1.78885, -0.190167, 1.85702, 1.41407, 0.373353, -3.64588, 0.374783, 7.38185, -9.36656, 9.36656, 2.4462, -4.50655, 0.463257, -0.988987, -9.72349, -7.40418, -3.93962, 19.0901, -1.96239, 1.74966, 2.29541, 1.74789, -0.226431, 2.21115, -2.21115}, {1.60567, -4.44089e-16, -1.55431e-15, 5.36656, -5.36656, 5.36656, -0.190167, 1.85702, 1.41407, 0.373353, -3.64588, 0.374783, -6.19624, -2.21115, 2.21115, 3.20687, -11.9346, -5.19303, -1.74966, -2.29541, -1.74789, -2.4462, 4.50655, -0.463257, 0.256242, 16.8789, 0.248757, -0.226431, 2.21115, -2.21115}, {1.60567, 8.88178e-16, 0, -1.78885, 1.78885, -1.78885, 0.570501, -5.57107, -4.24221, 0.373353, -3.64588, 0.374783, 0.226431, -2.21115, 2.21115, 9.60162, -11.662, 7.61867, -8.17233, -2.29541, -1.74789, -2.4462, 4.50655, -0.463257, 1.74966, 2.29541, 1.74789, -1.71984, 16.7947, -3.71028}, {1.60567, -3.10862e-15, 1.11022e-16, -1.78885, 1.78885, -1.78885, -0.190167, 1.85702, 1.41407, -1.12006, 10.9376, -1.12435, 0.226431, -2.21115, 2.21115, 2.4462, -4.50655, 0.463257, -1.74966, -2.29541, -1.74789, -8.86888, 4.50655, -0.463257, 8.90507, -4.86001, 8.90331, 0.534237, -5.21694, -7.86743}, {-9.76996e-15, 1.33227e-14, -7.02938, 1.78885, -6.92972e-12, 0.00253498, -1.78885, 2.33948, -2.34566, 0, -2.33948, 0, -9.36656, 3.62896e-11, -2.90954, 3.9968e-15, -2.89175, 2.89626, 9.36656, -12.2497, 9.38578, -3.9968e-15, 12.2497, -2.89626, -2.21115, 2.89175, -0.00313341, 2.21115, -8.57092e-12, 2.8994}, {-1.9984e-15, 8.88178e-16, 2.34313, -5.36656, 2.07891e-11, -0.00760494, -1.78885, 2.33948, -2.34566, 0, -2.33948, 0, -2.21115, 8.55849e-12, -12.2719, 7.15542, -12.2497, 12.2789, 2.21115, -2.89175, 0.00313341, 2.66454e-15, 2.89175, -2.89626, -2.21115, 12.2497, -0.00313341, 2.21115, -8.56426e-12, 2.8994}, {4.21885e-15, -1.77636e-15, 2.34313, 1.78885, -6.9266e-12, 0.00253498, 5.36656, -7.01844, 7.03698, 0, -2.33948, 0, -2.21115, 8.56382e-12, -2.8994, -7.15542, -2.89175, 2.88612, 2.21115, -2.89175, -9.36937, -5.32907e-15, 2.89175, -2.89626, -2.21115, 2.89175, -0.00313341, 2.21115, 9.35791, 2.8994}, {0, 0, 2.34313, 1.78885, -6.92763e-12, 0.00253498, -1.78885, 2.33948, -2.34566, 0, 7.01844, 0, -2.21115, 8.56293e-12, -2.8994, 0, -2.89175, 2.89626, 2.21115, -2.89175, 0.00313341, 0, 2.89175, -12.2688, -9.36656, 2.89175, -0.0132733, 9.36656, -9.35791, 12.282}, {-2.1843e-11, 2.07647e-11, 5.36656, -2.34313, 0, 0, 0, 2.34313, 0, 2.34313, -2.34313, 1.78885, 12.2688, 8.55538e-12, 2.21115, 2.89626, -2.89626, 0, -8.99991e-12, -12.2688, 2.21115, -12.2688, 12.2688, -7.15542, 8.99991e-12, 2.89626, -2.21115, -2.89626, -8.55538e-12, -2.21115}, {7.27862e-12, -6.92069e-12, -1.78885, 7.02938, 0, 0, -1.36297e-15, 2.34313, -1.04056e-15, 2.34313, -2.34313, 1.78885, 2.89626, 3.62377e-11, 9.36656, 2.89626, -12.2688, 5.44843e-15, -8.99503e-12, -2.89626, 2.21115, -2.89626, 2.89626, -8.4211e-16, -9.3725, 12.2688, -9.36656, -2.89626, -8.55449e-12, -2.21115}, {7.2804e-12, -6.91935e-12, -1.78885, -2.34313, 0, 0, 0, -7.02938, 0, 2.34313, -2.34313, 1.78885, 2.89626, 8.55271e-12, 2.21115, 12.2688, -2.89626, 0, -3.81206e-11, -2.89626, 9.36656, -2.89626, 2.89626, 4.44089e-16, 8.99902e-12, 2.89626, -2.21115, -12.2688, 9.3725, -9.36656}, {7.27596e-12, -6.91802e-12, -1.78885, -2.34313, 0, 0, 0, 2.34313, 0, -7.02938, 7.02938, -5.36656, 2.89626, 8.55138e-12, 2.21115, 2.89626, -2.89626, 0, -8.99325e-12, -2.89626, 2.21115, -2.89626, 2.89626, 7.15542, 9.3725, 2.89626, -2.21115, -2.89626, -9.3725, -2.21115}, {6.33782, 3.11659, -8.32035, 1.25748, 1.89399, 2.48645, -0.601124, 0.601124, -3.34812, 1.45625, -1.45625, -1.91178, -3.97294, -8.63294, -16.4474, -0.811303, -3.08413, 1.06509, 5.75885, -1.86342, 14.1028, -5.01369, 8.90912, 6.58202, -3.35435, -0.541075, -0.71033, -1.05699, 1.05699, 6.50159}, {-2.11261, -1.03886, 2.77345, -3.77244, -5.68196, -7.45934, -0.601124, 0.601124, -3.34812, 1.45625, -1.45625, -1.91178, 9.50741, 3.09846, -17.5954, 1.59319, -5.48862, 14.4576, 3.35435, 0.541075, 0.71033, 0.811303, 3.08413, -1.06509, -9.17934, 5.28392, 6.93678, -1.05699, 1.05699, 6.50159}, {-2.11261, -1.03886, 2.77345, 1.25748, 1.89399, 2.48645, 1.80337, -1.80337, 10.0444, 1.45625, -1.45625, -1.91178, 1.05699, -1.05699, -6.50159, -5.84123, -10.6601, -8.8807, 11.8048, 4.69653, -10.3835, 0.811303, 3.08413, -1.06509, -3.35435, -0.541075, -0.71033, -6.88198, 6.88198, 14.1487}, {-2.11261, -1.03886, 2.77345, 1.25748, 1.89399, 2.48645, -0.601124, 0.601124, -3.34812, -4.36874, 4.36874, 5.73533, 1.05699, -1.05699, -6.50159, -0.811303, -3.08413, 1.06509, 3.35435, 0.541075, 0.71033, 9.26172, 7.23958, -12.1589, -8.38428, -8.11702, -10.6561, 1.34751, -1.34751, 19.8941}, {-4.24616, -5.57441, -4.24476, 0.373467, -3.64699, -2.77708, -1.78885, 1.78885, -1.78885, 0, 0, 3.15102, -3.70501, 16.7991, 12.7921, 1.74951, 2.29678, 5.64381, 7.61705, -11.6633, 7.61763, -1.74951, -2.29678, -18.2479, -0.461631, 4.50793, -0.462209, 2.21115, -2.21115, -1.68373}, {1.41539, 1.85814, 1.41492, -1.1204, 10.941, 8.33125, -1.78885, 1.78885, -1.78885, 1.39933e-15, -1.39933e-15, 3.15102, -7.87269, -5.2214, -3.97595, 8.90493, -4.85864, 12.7992, 0.461631, -4.50793, 0.462209, -1.74951, -2.29678, -5.64381, -0.461631, 4.50793, -13.0663, 2.21115, -2.21115, -1.68373}, {1.41539, 1.85814, 1.41492, 0.373467, -3.64699, -2.77708, 5.36656, -5.36656, 5.36656, 0, 0, 3.15102, -2.21115, 2.21115, 1.68373, 0.255645, 16.8847, 16.7521, -5.19992, -11.9405, -5.19747, -1.74951, -2.29678, -5.64381, -0.461631, 4.50793, -0.462209, 2.21115, -2.21115, -14.2878}, {1.41539, 1.85814, 1.41492, 0.373467, -3.64699, -2.77708, -1.78885, 1.78885, -1.78885, 0, 0, -9.45305, -2.21115, 2.21115, 1.68373, 1.74951, 2.29678, 5.64381, 0.461631, -4.50793, 0.462209, -7.41106, -9.72932, -11.3035, -1.9555, 19.0959, 10.6461, 9.36656, -9.36656, 5.47169}, {2.81917, 4.24616, 5.57441, -1.67083, -0.373467, 3.64699, 0.18745, 1.78885, -1.78885, 2.4231, 0, 0, 9.91012, 3.70501, -16.7991, 1.83355, -1.74951, -2.29678, 0.18006, -7.61705, 11.6633, -11.526, 1.74951, 2.29678, -0.929861, 0.461631, -4.50793, -3.22682, -2.21115, 2.21115}, {-0.939723, -1.41539, -1.85814, 5.01248, 1.1204, -10.941, 0.18745, 1.78885, -1.78885, 2.4231, -1.07607e-15, 1.07607e-15, 6.98571, 7.87269, 5.2214, 1.08375, -8.90493, 4.85864, 0.929861, -0.461631, 4.50793, -1.83355, 1.74951, 2.29678, -10.6223, 0.461631, -4.50793, -3.22682, -2.21115, 2.21115}, {-0.939723, -1.41539, -1.85814, -1.67083, -0.373467, 3.64699, -0.56235, -5.36656, 5.36656, 2.4231, 0, 0, 3.22682, 2.21115, -2.21115, 8.51686, -0.255645, -16.8847, 4.68875, 5.19992, 11.9405, -1.83355, 1.74951, 2.29678, -0.929861, 0.461631, -4.50793, -12.9192, -2.21115, 2.21115}, {-0.939723, -1.41539, -1.85814, -1.67083, -0.373467, 3.64699, 0.18745, 1.78885, -1.78885, -7.2693, 0, 0, 3.22682, 2.21115, -2.21115, 1.83355, -1.74951, -2.29678, 0.929861, -0.461631, 4.50793, 1.92534, 7.41106, 9.72932, 5.75345, 1.9555, -19.0959, -3.97662, -9.36656, 9.36656}, {-3.55271e-15, -7.99361e-15, -9.45441, -3.15147, 0, 0, 1.78937, -1.78885, -1.78885, 1.3621, 1.78885, -1.36261, 16.5013, -3.55271e-15, -3.89543, 1.68365, 2.21115, 2.21115, -9.36924, 9.36656, 5.47113, -7.13206, -9.36656, 3.23931, 2.21178, -2.21115, 1.68428, -3.89543, 3.55271e-15, 3.89543}, {-2.22045e-16, 2.88658e-15, 3.15147, 9.45441, 0, 0, 1.78937, -1.78885, -1.78885, 1.3621, 1.78885, -1.36261, 3.89543, -1.42109e-14, -16.5013, -5.47381, 9.36656, 9.36656, -2.21178, 2.21115, -1.68428, -1.68365, -2.21115, -2.21115, -3.23663, -9.36656, 7.13474, -3.89543, 3.55271e-15, 3.89543}, {2.22045e-16, 0, 3.15147, -3.15147, 0, 0, -5.3681, 5.36656, 5.36656, 1.3621, 1.78885, -1.36261, 3.89543, 0, -3.89543, 14.2895, 2.21115, 2.21115, -2.21178, 2.21115, -14.2902, -1.68365, -2.21115, -2.21115, 2.21178, -2.21115, 1.68428, -9.34384, -7.15542, 9.34589}, {8.88178e-16, 1.55431e-15, 3.15147, -3.15147, 0, 0, 1.78937, -1.78885, -1.78885, -4.08631, -5.36656, 4.08784, 3.89543, -2.22045e-15, -3.89543, 1.68365, 2.21115, 2.21115, -2.21178, 2.21115, -1.68428, -1.68365, -2.21115, -14.817, 14.8177, -2.21115, 1.68428, -11.0529, 7.15542, 11.0508}, {-5.22583, 5.22504, 3.98456, 2.34612, 2.92755e-15, 1.19114e-15, -2.54361, 0.198607, 1.93944, -1.54445, 1.54307, -0.611252, -14.4376, 2.15284, 1.64173, 0.244118, -0.245492, -2.39728, 11.1654, 1.11292, -8.51331, 5.93368, -5.9268, 4.84229, -0.990917, -1.90734, 0.755549, 5.05312, -2.15284, -1.64173}, {1.74194, -1.74168, -1.32819, -7.03835, -2.34918e-15, 4.45681e-15, -2.54361, 0.198607, 1.93944, -1.54445, 1.54307, -0.611252, -12.0209, 9.11956, 6.95448, 10.4186, -1.03992, -10.155, 0.990917, 1.90734, -0.755549, -0.244118, 0.245492, 2.39728, 5.18688, -8.07964, 3.20056, 5.05312, -2.15284, -1.64173}, {1.74194, -1.74168, -1.32819, 2.34612, 0, 0, 7.63084, -0.595821, -5.81832, -1.54445, 1.54307, -0.611252, -5.05312, 2.15284, 1.64173, -9.14035, -0.245492, -2.39728, -5.97686, 8.87406, 4.5572, -0.244118, 0.245492, 2.39728, -0.990917, -1.90734, 0.755549, 11.2309, -8.32513, 0.803277}, {1.74194, -1.74168, -1.32819, 2.34612, -8.98735e-16, 3.56012e-16, -2.54361, 0.198607, 1.93944, 4.63335, -4.62922, 1.83376, -5.05312, 2.15284, 1.64173, 0.244118, -0.245492, -2.39728, 0.990917, 1.90734, -0.755549, -7.21189, 7.21221, 7.71003, -10.3754, -1.90734, 0.755549, 15.2276, -2.94726, -9.39949}, {-9.45441, 1.33227e-14, -1.06581e-14, -1.78937, -1.78885, -1.78885, -1.3621, 1.78885, -1.36261, 0, 0, 3.15147, 5.47381, 9.36656, 9.36656, 3.89543, -5.32907e-15, 3.89543, 3.23663, -9.36656, 7.13474, -3.89543, 5.32907e-15, -16.5013, 2.21178, 2.21115, -1.68428, 1.68365, -2.21115, -2.21115}, {3.15147, 2.7318e-15, 0, 5.3681, 5.36656, 5.36656, -1.3621, 1.78885, -1.36261, 1.06566e-15, -1.39953e-15, 3.15147, -14.2895, 2.21115, 2.21115, 9.34384, -7.15542, 9.34589, -2.21178, -2.21115, 1.68428, -3.89543, -1.33227e-15, -3.89543, 2.21178, 2.21115, -14.2902, 1.68365, -2.21115, -2.21115}, {3.15147, 0, 2.22045e-15, -1.78937, -1.78885, -1.78885, 4.08631, -5.36656, 4.08784, 0, 0, 3.15147, -1.68365, 2.21115, 2.21115, 11.0529, 7.15542, 11.0508, -14.8177, -2.21115, 1.68428, -3.89543, 0, -3.89543, 2.21178, 2.21115, -1.68428, 1.68365, -2.21115, -14.817}, {3.15147, 0, 0, -1.78937, -1.78885, -1.78885, -1.3621, 1.78885, -1.36261, 0, 0, -9.45441, -1.68365, 2.21115, 2.21115, 3.89543, 0, 3.89543, -2.21178, -2.21115, 1.68428, -16.5013, 0, -3.89543, 9.36924, 9.36656, 5.47113, 7.13206, -9.36656, 3.23931}, {-7.03835, 0, -2.66454e-15, -2.34612, 2.34348, -1.78885, -1.03933e-11, 0.00114147, 1.78885, 0, -2.34462, 0, 9.38447, -12.2706, 9.36656, 2.89996, -2.89811, 1.33227e-15, -2.89996, -0.00597681, -9.36656, -2.89996, 12.2766, -1.33227e-15, 2.89996, 0.00141093, 2.21115, 1.28469e-11, 2.8967, -2.21115}, {2.34612, -3.9968e-15, 0, 7.03835, -7.03044, 5.36656, -1.03933e-11, 0.00114147, 1.78885, 0, -2.34462, 0, -9.38447, -2.8967, 2.21115, 2.89996, -2.90268, -7.15542, -2.89996, -0.00141093, -2.21115, -2.89996, 2.89811, 0, 2.89996, 9.37989, 2.21115, 1.28469e-11, 2.8967, -2.21115}, {2.34612, -1.77636e-15, 0, -2.34612, 2.34348, -1.78885, 3.11847e-11, -0.00342441, -5.36656, 0, -2.34462, 0, -1.28494e-11, -2.8967, 2.21115, 12.2844, -12.272, 7.15542, -12.2844, -0.00141093, -2.21115, -2.89996, 2.89811, 0, 2.89996, 0.00141093, 2.21115, 1.28488e-11, 12.2752, -2.21115}, {2.34612, 2.66454e-15, 0, -2.34612, 2.34348, -1.78885, -1.03918e-11, 0.00114147, 1.78885, 0, 7.03386, 0, -1.28455e-11, -2.8967, 2.21115, 2.89996, -2.89811, 0, -2.89996, -0.00141093, -2.21115, -12.2844, 2.89811, 0, 12.2844, -9.37251, 9.36656, 5.4412e-11, 2.89213, -9.36656}, {-4.44089e-16, 0, 5.41667, 2.01922, -1.97048e-12, 0.623753, -1.44665, -1.44665, 0.584061, -0.572575, 1.44665, 0.597742, -10.5728, 1.03177e-11, -1.03422, -0.707741, 1.78815, -1.49294, 7.57474, 7.57474, -0.826394, 2.99804, -7.57474, -0.898027, -1.78815, -1.78815, -1.50985, 2.4959, -2.43583e-12, -1.46079}, {-1.11022e-16, 2.22045e-16, -1.80556, -6.05767, 5.9153e-12, -1.87126, -1.44665, -1.44665, 0.584061, -0.572575, 1.44665, 0.597742, -2.4959, 2.43716e-12, 8.68301, 5.07885, 7.57474, -3.82918, 1.78815, 1.78815, 1.50985, 0.707741, -1.78815, 1.49294, 0.502145, -7.57474, -3.90082, 2.4959, -2.43716e-12, -1.46079}, {1.11022e-16, 0, -1.80556, 2.01922, -1.97103e-12, 0.623753, 4.33994, 4.33994, -1.75218, -0.572575, 1.44665, 0.597742, -2.4959, 2.43627e-12, 1.46079, -8.78463, 1.78815, -3.98795, 1.78815, 1.78815, 8.73207, 0.707741, -1.78815, 1.49294, -1.78815, -1.78815, -1.50985, 4.7862, -5.78659, -3.85176}, {-1.11022e-16, 2.22045e-16, -1.80556, 2.01922, -1.97085e-12, 0.623753, -1.44665, -1.44665, 0.584061, 1.71772, -4.33994, -1.79323, -2.4959, 2.43583e-12, 1.46079, -0.707741, 1.78815, -1.49294, 1.78815, 1.78815, 1.50985, 0.707741, -1.78815, 8.71516, -9.86504, -1.78815, -4.00486, 8.28248, 5.78659, -3.79703}, {8.56414, 1.25642, -1.25642, 2.63957, -0.971716, -0.633952, 1.54777, 0.0578944, 1.54777, -1.33263, 1.33263, -1.33263, -10.2923, 5.60564, 2.80174, -5.17584, 1.12955, -1.12955, -4.57563, 0.214536, -8.62192, 10.5064, -6.46006, 6.46006, -1.61547, -0.446113, 2.43083, -0.265934, -1.71878, -0.265934}, {-2.85471, -0.418807, 0.418807, -7.91871, 2.91515, 1.90186, 1.54777, 0.0578944, 1.54777, -1.33263, 1.33263, -1.33263, 11.6848, 3.39401, -1.4093, -11.3669, 0.897968, -7.32064, 1.61547, 0.446113, -2.43083, 5.17584, -1.12955, 1.12955, 3.71505, -5.77663, 7.76134, -0.265934, -1.71878, -0.265934}, {-2.85471, -0.418807, 0.418807, 2.63957, -0.971716, -0.633952, -4.64332, -0.173683, -4.64332, -1.33263, 1.33263, -1.33263, 0.265934, 1.71878, 0.265934, -15.7341, 5.01641, 1.40626, 13.0343, 2.12134, -4.10606, 5.17584, -1.12955, 1.12955, -1.61547, -0.446113, 2.43083, 5.06458, -7.0493, 5.06458}, {-2.85471, -0.418807, 0.418807, 2.63957, -0.971716, -0.633952, 1.54777, 0.0578944, 1.54777, 3.99789, -3.99789, 3.99789, 0.265934, 1.71878, 0.265934, -5.17584, 1.12955, -1.12955, 1.61547, 0.446113, -2.43083, 16.5947, 0.545684, -0.545684, -12.1737, 3.44075, 4.96664, -6.45703, -1.95036, -6.45703}, {-0.339403, 0.339403, -5.15641, -0.164984, -1.44068, -0.164984, 1.07377, 0.531894, -0.531894, -1.02192, 1.02192, -1.02192, 0.724024, 7.68336, -1.26069, -1.12333, 1.12333, 0.861388, -5.7622, -2.64519, 0.660475, 5.21103, -5.21103, 3.22631, 1.4671, 0.517615, 1.4671, -0.0640894, -1.92063, 1.92063}, {0.113134, -0.113134, 1.7188, 0.494951, 4.32205, 0.494951, 1.07377, 0.531894, -0.531894, -1.02192, 1.02192, -1.02192, -0.388448, 2.37316, -8.79583, -5.41842, -1.00425, 2.98896, -1.4671, -0.517615, -1.4671, 1.12333, -1.12333, -0.861388, 5.5548, -3.57008, 5.5548, -0.0640894, -1.92063, 1.92063}, {0.113134, -0.113134, 1.7188, -0.164984, -1.44068, -0.164984, -3.22132, -1.59568, 1.59568, -1.02192, 1.02192, -1.02192, 0.0640894, 1.92063, -1.92063, -0.463392, 6.88606, 1.52132, -1.91964, -0.0650781, -8.34231, 1.12333, -1.12333, -0.861388, 1.4671, 0.517615, 1.4671, 4.02361, -6.00832, 6.00832}, {0.113134, -0.113134, 1.7188, -0.164984, -1.44068, -0.164984, 1.07377, 0.531894, -0.531894, 3.06577, -3.06577, 3.06577, 0.0640894, 1.92063, -1.92063, -1.12333, 1.12333, 0.861388, -1.4671, -0.517615, -1.4671, 0.67079, -0.67079, -7.7366, 2.12703, 6.28035, 2.12703, -4.35919, -4.0482, 4.0482}, {-1.94182, 3.40923, 1.10711, 0.155006, 1.62575, -1.6184, 0.710689, -0.184627, 1.53026, -1.51297, -0.304717, 0.45717, -1.6117, -7.10787, 8.93018, -1.07006, -1.78133, 0.108939, -4.52129, 2.3714, -7.5564, 7.12193, 3.0002, -1.93762, 1.67853, -1.63289, 1.43535, 0.991672, 0.604862, -2.4566}, {0.647273, -1.13641, -0.369036, -0.465018, -4.87726, 4.85519, 0.710689, -0.184627, 1.53026, -1.51297, -0.304717, 0.45717, -3.58076, 3.94077, 3.93275, -3.91281, -1.04282, -6.01211, -1.67853, 1.63289, -1.43535, 1.07006, 1.78133, -0.108939, 7.73041, -0.414023, -0.393324, 0.991672, 0.604862, -2.4566}, {0.647273, -1.13641, -0.369036, 0.155006, 1.62575, -1.6184, -2.13207, 0.553881, -4.59079, -1.51297, -0.304717, 0.45717, -0.991672, -0.604862, 2.4566, -1.69008, -8.28434, 6.58252, -4.26763, 6.17852, 0.0407896, 1.07006, 1.78133, -0.108939, 1.67853, -1.63289, 1.43535, 7.04355, 1.82373, -4.28528}, {0.647273, -1.13641, -0.369036, 0.155006, 1.62575, -1.6184, 0.710689, -0.184627, 1.53026, 4.53891, 0.91415, -1.37151, -0.991672, -0.604862, 2.4566, -1.07006, -1.78133, 0.108939, -1.67853, 1.63289, -1.43535, -1.51903, 6.32696, 1.36721, 1.05851, -8.1359, 7.90894, -1.85108, 1.34337, -8.57765}, {-5.53886e-11, 0.00342441, 5.36656, 2.34612, 1.36758e-15, 3.12566e-15, 0, -2.34462, 0, -2.34612, 2.34576, 1.78885, -12.2844, 0.00141093, 2.21115, -2.89996, 2.89811, -3.86352e-15, -2.28213e-11, 12.278, 2.21115, 12.2844, -12.2812, -7.15542, 2.28213e-11, -2.89952, -2.21115, 2.89996, -0.00141093, -2.21115}, {1.22999e-11, -0.00114147, -1.78885, -7.03835, -8.19548e-15, -3.12566e-15, 0, -2.34462, 0, -2.34612, 2.34576, 1.78885, -2.89996, 0.00597681, 9.36656, -2.89996, 12.2766, -1.28784e-15, -1.52034e-11, 2.89952, 2.21115, 2.89996, -2.89811, 1.73193e-15, 9.38447, -12.2826, -9.36656, 2.89996, -0.00141093, -2.21115}, {1.22964e-11, -0.00114147, -1.78885, 2.34612, 0, 0, 0, 7.03386, 0, -2.34612, 2.34576, 1.78885, -2.89996, 0.00141093, 2.21115, -12.2844, 2.89811, 0, -6.43876e-11, 2.90409, 9.36656, 2.89996, -2.89811, 4.44089e-16, 1.51994e-11, -2.89952, -2.21115, 12.2844, -9.38446, -9.36656}, {1.22991e-11, -0.00114147, -1.78885, 2.34612, -1.36625e-15, -1.04189e-15, 0, -2.34462, 0, 7.03835, -7.03729, -5.36656, -2.89996, 0.00141093, 2.21115, -2.89996, 2.89811, 1.28784e-15, -1.52025e-11, 2.89952, 2.21115, 2.89996, -2.89354, 7.15542, -9.38447, -2.89952, -2.21115, 2.89996, 9.37707, -2.21115}, {-4.82547e-12, 4.93775, 1.89782, -1.17597e-12, 1.20344, -0.85762, 1.44665, -0.256711, 0.444168, -1.44665, 0.69919, 1.04606, 4.16911e-12, -4.26682, 5.2725, -1.78815, -1.17022, 0.511055, -7.57474, 3.37862, -1.54375, 7.57474, -1.62654, -4.69529, 1.78815, -2.35178, -0.232925, 5.34683e-13, -0.546933, -1.84202}, {1.60938e-12, -1.64592, -0.632608, 3.52988e-12, -3.61031, 2.57286, 1.44665, -0.256711, 0.444168, -1.44665, 0.69919, 1.04606, -6.97309e-12, 7.13059, 4.37245, -7.57474, -0.143371, -1.26562, -1.78815, 2.35178, 0.232925, 1.78815, 1.17022, -0.511055, 7.57474, -5.14853, -4.41716, 5.34905e-13, -0.546933, -1.84202}, {1.60738e-12, -1.64592, -0.632608, -1.17532e-12, 1.20344, -0.85762, -4.33994, 0.770134, -1.3325, -1.44665, 0.69919, 1.04606, -5.34239e-13, 0.546933, 1.84202, -1.78815, -5.98397, 3.94153, -1.78815, 8.93544, 2.76336, 1.78815, 1.17022, -0.511055, 1.78815, -2.35178, -0.232925, 5.78659, -3.34369, -6.02626}, {1.60805e-12, -1.64592, -0.632608, -1.17575e-12, 1.20344, -0.85762, 1.44665, -0.256711, 0.444168, 4.33994, -2.09757, -3.13818, -5.34461e-13, 0.546933, 1.84202, -1.78815, -1.17022, 0.511055, -1.78815, 2.35178, 0.232925, 1.78815, 7.75388, 2.01938, 1.78815, -7.16552, 3.19755, -5.78659, 0.479913, -3.61869}, {3.67809, 0.0745323, 3.75892, 1.30596, 0.948366, 0.152693, 0.0437324, -1.35943, 0.016287, -0.123659, 0.435911, 1.08399, -5.32262, -4.935, 0.74925, -1.66831, 0.508107, -0.20887, 1.28647, 7.14879, 1.46348, 2.16294, -2.25175, -4.1271, -1.4614, -1.71106, -1.52863, 0.0987948, 1.14154, -1.36002}, {-1.22603, -0.0248441, -1.25297, -3.91787, -2.8451, -0.458078, 0.0437324, -1.35943, 0.016287, -0.123659, 0.435911, 1.08399, 4.80532, -1.04216, 6.37191, -1.84323, 5.94584, -0.274019, 1.4614, 1.71106, 1.52863, 1.66831, -0.508107, 0.20887, -0.966762, -3.4547, -5.8646, 0.0987948, 1.14154, -1.36002}, {-1.22603, -0.0248441, -1.25297, 1.30596, 0.948366, 0.152693, -0.131197, 4.0783, -0.0488611, -0.123659, 0.435911, 1.08399, -0.0987948, -1.14154, 1.36002, -6.89213, -3.28536, -0.819641, 6.36551, 1.81044, 6.54052, 1.66831, -0.508107, 0.20887, -1.4614, -1.71106, -1.52863, 0.593431, -0.602108, -5.69599}, {-1.22603, -0.0248441, -1.25297, 1.30596, 0.948366, 0.152693, 0.0437324, -1.35943, 0.016287, 0.370977, -1.30773, -3.25198, -0.0987948, -1.14154, 1.36002, -1.66831, 0.508107, -0.20887, 1.4614, 1.71106, 1.52863, 6.57242, -0.40873, 5.22076, -6.68522, -5.50453, -2.1394, -0.0761347, 6.57927, -1.42517}, {5.37088, 5.36291, 5.36619, 1.99086e-15, 6.84977e-16, 1.60567, 0.376399, 3.64451, 0.373213, 1.41389, -1.85687, -0.190152, 2.21292, 2.20964, -6.1964, -0.465254, -4.50486, -2.44603, 0.242074, -16.8733, 0.256821, -5.19032, 11.9323, 3.20664, -1.74767, 2.29522, -1.74967, -2.21292, -2.20964, -0.226277}, {-1.79029, -1.78764, -1.78873, -1.24068e-15, 6.57876e-15, -4.817, 0.376399, 3.64451, 0.373213, 1.41389, -1.85687, -0.190152, 9.37409, 9.36019, 7.3812, -1.97085, -19.0829, -3.93889, 1.74767, -2.29522, 1.74967, 0.465254, 4.50486, 2.44603, -7.40324, 9.72271, -0.989068, -2.21292, -2.20964, -0.226277}, {-1.79029, -1.78764, -1.78873, 0, 0, 1.60567, -1.1292, -10.9335, -1.11964, 1.41389, -1.85687, -0.190152, 2.21292, 2.20964, 0.226277, -0.465254, -4.50486, -8.8687, 8.90884, 4.85533, 8.90459, 0.465254, 4.50486, 2.44603, -1.74767, 2.29522, -1.74967, -7.8685, 5.21784, 0.53433}, {-1.79029, -1.78764, -1.78873, -5.63596e-16, 7.40172e-16, 1.60567, 0.376399, 3.64451, 0.373213, -4.24168, 5.57061, 0.570455, 2.21292, 2.20964, 0.226277, -0.465254, -4.50486, -2.44603, 1.74767, -2.29522, 1.74967, 7.62642, 11.6554, 9.60095, -1.74767, 2.29522, -8.17235, -3.71852, -16.7877, -1.71913}, {1.24345e-14, 1.33227e-14, -9.45441, 0, -3.15057, 0, 1.78885, 1.78834, -1.78885, -1.78885, 1.36222, -1.36261, 4.88498e-15, 16.4966, -3.89543, -2.21115, 1.6838, 2.21115, -9.36656, -9.36389, 5.47113, 9.36656, -7.1327, 3.23931, 2.21115, 2.21051, 1.68428, -4.88498e-15, -3.89432, 3.89543}, {1.11022e-15, 3.77476e-15, 3.15147, 0, 9.4517, 0, 1.78885, 1.78834, -1.78885, -1.78885, 1.36222, -1.36261, -5.32907e-15, 3.89432, -16.5013, -9.36656, -5.46957, 9.36656, -2.21115, -2.21051, -1.68428, 2.21115, -1.6838, -2.21115, 9.36656, -3.23838, 7.13474, 1.33227e-15, -3.89432, 3.89543}, {-1.11022e-15, -8.65974e-15, 3.15147, 0, -3.15057, 0, -5.36656, -5.36503, 5.36656, -1.78885, 1.36222, -1.36261, 1.33227e-15, 3.89432, -3.89543, -2.21115, 14.2861, 2.21115, -2.21115, -2.21051, -14.2902, 2.21115, -1.6838, -2.21115, 2.21115, 2.21051, 1.68428, 7.15542, -9.34321, 9.34589}, {0, 2.22045e-16, 3.15147, 0, -3.15057, 0, 1.78885, 1.78834, -1.78885, 5.36656, -4.08667, 4.08784, 0, 3.89432, -3.89543, -2.21115, 1.6838, 2.21115, -2.21115, -2.21051, -1.68428, 2.21115, -1.6838, -14.817, 2.21115, 14.8128, 1.68428, -7.15542, -11.0477, 11.0508}, {-5.91616e-12, 6.05767, -4.31695, 0, 0, -1.80556, 1.44665, 0.572575, -0.146817, -1.44665, 1.44665, 0.51339, -2.43761e-12, 2.4959, 7.67533, -1.78815, -0.707741, 2.41326, -7.57474, -0.502145, -1.00994, 7.57474, -5.07885, -4.46683, 1.78815, -1.78815, 1.5972, 2.43761e-12, -2.4959, -0.45311}, {1.97087e-12, -2.01922, 1.43898, 0, 0, 5.41667, 1.44665, 0.572575, -0.146817, -1.44665, 1.44665, 0.51339, -1.03197e-11, 10.5728, -5.30282, -7.57474, -2.99804, 3.00053, -1.78815, 1.78815, -1.5972, 1.78815, 0.707741, -2.41326, 7.57474, -7.57474, -0.456356, 2.43605e-12, -2.4959, -0.45311}, {1.97242e-12, -2.01922, 1.43898, 0, 0, -1.80556, -4.33994, -1.71772, 0.44045, -1.44665, 1.44665, 0.51339, -2.43783e-12, 2.4959, 0.45311, -1.78815, -0.707741, 9.63549, -1.78815, 9.86504, -7.35313, 1.78815, 0.707741, -2.41326, 1.78815, -1.78815, 1.5972, 5.78659, -8.28248, -2.50667}, {1.97198e-12, -2.01922, 1.43898, 0, 0, -1.80556, 1.44665, 0.572575, -0.146817, 4.33994, -4.33994, -1.54017, -2.43761e-12, 2.4959, 0.45311, -1.78815, -0.707741, 2.41326, -1.78815, 1.78815, -1.5972, 1.78815, 8.78463, -8.16919, 1.78815, -1.78815, 8.81943, -5.78659, -4.7862, 0.134156}, {-4.33994, -4.33994, 1.75218, -1.97211e-12, -2.01922, 1.43898, 0, 0, -1.80556, -1.44665, 0.572575, 0.950635, -1.78815, 8.78463, -6.81267, 2.43766e-12, 2.4959, 0.45311, -1.78815, -1.78815, 10.176, 5.78659, -4.7862, -4.25565, 1.78815, 1.78815, -2.95373, 1.78815, -0.707741, 1.05674}, {1.44665, 1.44665, -0.584061, 5.92068e-12, 6.05767, -4.31695, 0, 0, -1.80556, -1.44665, 0.572575, 0.950635, -7.57474, -5.07885, 1.2795, 2.43945e-12, 2.4959, 7.67533, -1.78815, -1.78815, 2.95373, -2.43981e-12, -2.4959, -0.45311, 7.57474, -0.502145, -6.75627, 1.78815, -0.707741, 1.05674}, {1.44665, 1.44665, -0.584061, -1.97247e-12, -2.01922, 1.43898, 0, 0, 5.41667, -1.44665, 0.572575, 0.950635, -1.78815, 0.707741, -1.05674, 1.0328e-11, 10.5728, -5.30282, -7.57474, -7.57474, 5.28997, -2.43847e-12, -2.4959, -0.45311, 1.78815, 1.78815, -2.95373, 7.57474, -2.99804, -2.7458}, {1.44665, 1.44665, -0.584061, -1.97283e-12, -2.01922, 1.43898, 0, 0, -1.80556, 4.33994, -1.71772, -2.8519, -1.78815, 0.707741, -1.05674, 2.43856e-12, 2.4959, 0.45311, -1.78815, -1.78815, 2.95373, -5.78659, -8.28248, 1.88313, 1.78815, 9.86504, -8.70966, 1.78815, -0.707741, 8.27896}, {1.71772, 0.356094, 4.33994, 2.01922, -0.477594, 1.7444e-12, -1.44665, -0.786183, 1.44665, 0, 1.38248, 0, -9.86504, 2.64743, 1.78815, -0.707741, 1.56212, -1.78815, 8.28248, 4.26323, -5.78659, 0.707741, -7.09202, 1.78815, -2.4959, -1.11849, -2.1562e-12, 1.78815, -0.737058, -1.78815}, {-0.572575, -0.118698, -1.44665, -6.05767, 1.43278, -5.23264e-12, -1.44665, -0.786183, 1.44665, 4.96495e-16, 1.38248, -4.96495e-16, 0.502145, 1.21185, 7.57474, 5.07885, 4.70685, -7.57474, 2.4959, 1.11849, 2.15571e-12, 0.707741, -1.56212, 1.78815, -2.4959, -6.6484, -2.15337e-12, 1.78815, -0.737058, -1.78815}, {-0.572575, -0.118698, -1.44665, 2.01922, -0.477594, 1.7444e-12, 4.33994, 2.35855, -4.33994, 0, 1.38248, 0, -1.78815, 0.737058, 1.78815, -8.78463, 3.47249, -1.78815, 4.7862, 1.59329, 5.78659, 0.707741, -1.56212, 1.78815, -2.4959, -1.11849, -2.1562e-12, 1.78815, -6.26696, -1.78815}, {-0.572575, -0.118698, -1.44665, 2.01922, -0.477594, 1.74332e-12, -1.44665, -0.786183, 1.44665, 0, -4.14743, 0, -1.78815, 0.737058, 1.78815, -0.707741, 1.56212, -1.78815, 2.4959, 1.11849, 2.15522e-12, 2.99804, -1.08732, 7.57474, -10.5728, 0.791882, -9.12813e-12, 7.57474, 2.40768, -7.57474}, {-3.82778, -1.72626, -1.72406, -1.39459, 0.310766, 0.31037, -0.00684175, -1.71025, 0.635056, 0.125505, 0.824062, -1.52011, 5.72503, -2.33845, -2.33547, 1.73226, 1.72986, -1.16861, -1.54131, 8.24373, -4.03555, -2.23428, -5.02611, 7.24907, 1.56867, -1.40273, 1.49533, -0.146676, 1.09539, 1.09399}, {1.27593, 0.575422, 0.574688, 4.18377, -0.932299, -0.93111, -0.00684175, -1.71025, 0.635056, 0.125505, 0.824062, -1.52011, -4.95703, -3.39708, -3.39274, 1.75963, 8.57086, -3.70884, -1.56867, 1.40273, -1.49533, -1.73226, -1.72986, 1.16861, 1.06665, -4.69898, 7.57578, -0.146676, 1.09539, 1.09399}, {1.27593, 0.575422, 0.574688, -1.39459, 0.310766, 0.31037, 0.0205252, 5.13075, -1.90517, 0.125505, 0.824062, -1.52011, 0.146676, -1.09539, -1.09399, 7.31062, 0.486792, -2.41009, -6.67238, -0.898961, -3.79408, -1.73226, -1.72986, 1.16861, 1.56867, -1.40273, 1.49533, -0.648696, -2.20086, 7.17445}, {1.27593, 0.575422, 0.574688, -1.39459, 0.310766, 0.31037, -0.00684175, -1.71025, 0.635056, -0.376515, -2.47219, 4.56034, 0.146676, -1.09539, -1.09399, 1.73226, 1.72986, -1.16861, -1.56867, 1.40273, -1.49533, -6.83597, -4.03154, -1.13014, 7.14703, -2.64579, 0.253846, -0.119309, 7.93639, -1.44623}, {4.08784, 5.36656, -4.08784, 3.15147, -2.79907e-15, -3.33475e-16, -1.78885, 1.78885, 1.78885, 0, 0, -3.15147, -14.817, 2.21115, -1.68428, -1.68428, -2.21115, -2.21115, 11.0508, -7.15542, -11.0508, 1.68428, 2.21115, 14.817, -3.89543, 3.45984e-15, 3.89543, 2.21115, -2.21115, 1.68428}, {-1.36261, -1.78885, 1.36261, -9.45441, 4.1986e-15, 1.15954e-14, -1.78885, 1.78885, 1.78885, 0, 0, -3.15147, 3.23931, 9.36656, -7.13474, 5.47113, -9.36656, -9.36656, 3.89543, -1.28583e-15, -3.89543, 1.68428, 2.21115, 2.21115, -3.89543, 1.72992e-15, 16.5013, 2.21115, -2.21115, 1.68428}, {-1.36261, -1.78885, 1.36261, 3.15147, 0, 0, 5.36656, -5.36656, -5.36656, 0, 0, -3.15147, -2.21115, 2.21115, -1.68428, -14.2902, -2.21115, -2.21115, 9.34589, 7.15542, -9.34589, 1.68428, 2.21115, 2.21115, -3.89543, 0, 3.89543, 2.21115, -2.21115, 14.2902}, {-1.36261, -1.78885, 1.36261, 3.15147, 0, 2.46559e-15, -1.78885, 1.78885, 1.78885, 0, 0, 9.45441, -2.21115, 2.21115, -1.68428, -1.68428, -2.21115, -2.21115, 3.89543, 4.44089e-16, -3.89543, 7.13474, 9.36656, -3.23931, -16.5013, 0, 3.89543, 9.36656, -9.36656, -5.47113}, {1.73341, -4.36745, 1.08767, 0, 0, 1.17684, 2.01922, 1.68048e-12, -0.615915, -1.44142, -1.45582, -0.198371, 0.714206, -1.79949, -5.71389, -2.4959, -2.07719e-12, -0.693346, -9.85858, -1.79949, 3.67312, 8.26156, 5.82327, 1.48683, 1.78169, 1.79949, -1.20946, -0.714206, 1.79949, 1.00651}, {-0.577805, 1.45582, -0.362558, 2.02028e-15, 3.82793e-15, -3.53053, 2.01922, 1.68206e-12, -0.615915, -1.44142, -1.45582, -0.198371, 3.02542, -7.62276, 0.443719, -10.5728, -8.8058e-12, 1.77031, -1.78169, -1.79949, 1.20946, 2.4959, 2.0772e-12, 0.693346, 7.54736, 7.62276, -0.415974, -0.714206, 1.79949, 1.00651}, {-0.577805, 1.45582, -0.362558, 0, 0, 1.17684, -6.05767, -5.04417e-12, 1.84774, -1.44142, -1.45582, -0.198371, 0.714206, -1.79949, -1.00651, -2.4959, -2.07831e-12, -5.40072, 0.529529, -7.62276, 2.65969, 2.4959, 2.07795e-12, 0.693346, 1.78169, 1.79949, -1.20946, 5.05146, 7.62276, 1.8}, {-0.577805, 1.45582, -0.362558, 0, 0, 1.17684, 2.01922, 1.68121e-12, -0.615915, 4.32425, 4.36745, 0.595113, 0.714206, -1.79949, -1.00651, -2.4959, -2.07809e-12, -0.693346, -1.78169, -1.79949, 1.20946, 4.80711, -5.82327, 2.14358, 1.78169, 1.79949, -5.91683, -8.79109, 1.79949, 3.47017}, {-4.91714, 2.88338, 1.92681, -0.336451, -0.850591, 0.85104, -1.79955, 0.555362, -0.55742, 0.496952, 1.25636, 0.348649, -0.264293, 5.64177, -3.66222, 2.64024, 0.364922, -0.362934, 7.39658, -1.7199, 3.71258, -4.62805, -5.39034, -1.03166, -0.198389, -0.501553, -1.4829, 1.6101, -2.23941, 0.258056}, {1.63905, -0.961127, -0.642269, 1.00935, 2.55177, -2.55312, -1.79955, 0.555362, -0.55742, 0.496952, 1.25636, 0.348649, -8.16629, 6.08391, 2.31102, 9.83843, -1.85653, 1.86675, 0.198389, 0.501553, 1.4829, -2.64024, -0.364922, 0.362934, -2.1862, -5.52697, -2.87749, 1.6101, -2.23941, 0.258056}, {1.63905, -0.961127, -0.642269, -0.336451, -0.850591, 0.85104, 5.39864, -1.66609, 1.67226, 0.496952, 1.25636, 0.348649, -1.6101, 2.23941, -0.258056, 3.98605, 3.76729, -3.76709, -6.3578, 4.34606, 4.05197, -2.64024, -0.364922, 0.362934, -0.198389, -0.501553, -1.4829, -0.377708, -7.26483, -1.13654}, {1.63905, -0.961127, -0.642269, -0.336451, -0.850591, 0.85104, -1.79955, 0.555362, -0.55742, -1.49085, -3.76907, -1.04595, -1.6101, 2.23941, -0.258056, 2.64024, 0.364922, -0.362934, 0.198389, 0.501553, 1.4829, -9.19643, 3.47958, 2.93201, 1.14742, 2.90081, -4.88706, 8.80829, -4.46086, 2.48774}, {10.941, -4.49288, 1.1204, 1.85814, 0.691786, -1.41539, 0, -2.17235, 0, 1.78885, -0.0170635, 1.78885, -5.2214, -5.47341, 7.87269, -2.29678, 1.83008, 1.74951, 4.50793, 9.5234, 0.461631, -4.85864, -1.76182, -8.90493, -4.50793, -0.834003, -0.461631, -2.21115, 2.70626, -2.21115}, {-3.64699, 1.49763, -0.373467, -5.57441, -2.07536, 4.24616, 0, -2.17235, 0, 1.78885, -0.0170635, 1.78885, 16.7991, -8.69677, 3.70501, -2.29678, 10.5195, 1.74951, 4.50793, 0.834003, 0.461631, 2.29678, -1.83008, -1.74951, -11.6633, -0.76575, -7.61705, -2.21115, 2.70626, -2.21115}, {-3.64699, 1.49763, -0.373467, 1.85814, 0.691786, -1.41539, 0, 6.51705, 0, 1.78885, -0.0170635, 1.78885, 2.21115, -2.70626, 2.21115, -9.72932, -0.937068, 7.41106, 19.0959, -5.15651, 1.9555, 2.29678, -1.83008, -1.74951, -4.50793, -0.834003, -0.461631, -9.36656, 2.77452, -9.36656}, {-3.64699, 1.49763, -0.373467, 1.85814, 0.691786, -1.41539, 0, -2.17235, 0, -5.36656, 0.0511904, -5.36656, 2.21115, -2.70626, 2.21115, -2.29678, 1.83008, 1.74951, 4.50793, 0.834003, 0.461631, 16.8847, -7.82059, -0.255645, -11.9405, -3.60115, 5.19992, -2.21115, 11.3957, -2.21115}, {-4.62937, 1.83228, -4.62937, -1.60567, 0, 0, -0.136178, -1.32981, -1.74185, 0.198723, 1.94057, 0.198723, 6.49998, 0.754941, -1.90741, 2.15304, 1.64373, 2.15304, -1.19437, 7.71791, 7.21302, -2.94793, -9.40601, -2.94793, 1.73908, -2.39867, -0.245635, -0.0773091, -0.754941, 1.90741}, {1.54312, -0.61076, 1.54312, 4.817, 0, 0, -0.136178, -1.32981, -1.74185, 0.198723, 1.94057, 0.198723, -6.09519, 3.19798, -8.0799, 2.69775, 6.96297, 9.12042, -1.73908, 2.39867, 0.245635, -2.15304, -1.64373, -2.15304, 0.94419, -10.1609, -1.04052, -0.0773091, -0.754941, 1.90741}, {1.54312, -0.61076, 1.54312, -1.60567, 0, 0, 0.408534, 3.98943, 5.22554, 0.198723, 1.94057, 0.198723, 0.0773091, 0.754941, -1.90741, 8.57571, 1.64373, 2.15304, -7.91157, 4.84171, -5.92686, -2.15304, -1.64373, -2.15304, 1.73908, -2.39867, -0.245635, -0.872199, -8.51722, 1.11252}, {1.54312, -0.61076, 1.54312, -1.60567, 0, 0, -0.136178, -1.32981, -1.74185, -0.596168, -5.82171, -0.596168, 0.0773091, 0.754941, -1.90741, 2.15304, 1.64373, 2.15304, -1.73908, 2.39867, 0.245635, -8.32553, 0.799305, -8.32553, 8.16175, -2.39867, -0.245635, 0.467403, 4.5643, 8.87479}, {-5.36656, 4.08784, -4.08784, 0, 3.15147, 0, -1.78885, -1.78885, 1.78885, 0, 0, -3.15147, -2.21115, -14.817, -1.68428, 2.21115, -1.68428, -2.21115, 7.15542, 11.0508, -11.0508, -2.21115, 1.68428, 14.817, 0, -3.89543, 3.89543, 2.21115, 2.21115, 1.68428}, {1.78885, -1.36261, 1.36261, -4.1986e-15, -9.45441, 1.15954e-14, -1.78885, -1.78885, 1.78885, 0, 0, -3.15147, -9.36656, 3.23931, -7.13474, 9.36656, 5.47113, -9.36656, 1.28583e-15, 3.89543, -3.89543, -2.21115, 1.68428, 2.21115, -1.72992e-15, -3.89543, 16.5013, 2.21115, 2.21115, 1.68428}, {1.78885, -1.36261, 1.36261, 0, 3.15147, -9.86237e-15, 5.36656, 5.36656, -5.36656, 0, 0, -3.15147, -2.21115, -2.21115, -1.68428, 2.21115, -14.2902, -2.21115, -7.15542, 9.34589, -9.34589, -2.21115, 1.68428, 2.21115, 0, -3.89543, 3.89543, 2.21115, 2.21115, 14.2902}, {1.78885, -1.36261, 1.36261, 0, 3.15147, 0, -1.78885, -1.78885, 1.78885, 0, 0, 9.45441, -2.21115, -2.21115, -1.68428, 2.21115, -1.68428, -2.21115, -4.44089e-16, 3.89543, -3.89543, -9.36656, 7.13474, -3.23931, 0, -16.5013, 3.89543, 9.36656, 9.36656, -5.47113}, {-14.3647, 4.91028, -4.91028, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, -1.57573, -1.63676, 1.63676, -1.63676, 2.33207, -6.2275, -10.2738, 3.89543, -3.193e-13, -3.19522e-13, 2.33207, 10.2738, 6.2275, 2.65162, -6.54704, 6.54704, 3.97086, -3.97086, 0.0754334, 3.97086, -0.0754334, 3.97086}, {4.78823, -1.63676, 1.63676, 4.7272, -4.7272, -4.7272, -1.57573, -1.57573, -1.57573, -1.63676, 1.63676, -1.63676, -23.1238, 6.62248, -10.5179, 10.1984, 6.30294, 6.30294, -3.97086, 3.97086, -0.0754334, -3.89543, 3.18818e-13, 3.18006e-13, 10.5179, -10.5179, 6.62248, 3.97086, -0.0754334, 3.97086}, {4.78823, -1.63676, 1.63676, -1.57573, 1.57573, 1.57573, 4.7272, 4.7272, 4.7272, -1.63676, 1.63676, -1.63676, -3.97086, 0.0754334, -3.97086, 10.1984, -6.30294, -6.30294, -23.1238, 10.5179, -6.62248, -3.89543, 3.21483e-13, 3.20892e-13, 3.97086, -3.97086, 0.0754334, 10.5179, -6.62248, 10.5179}, {4.78823, -1.63676, 1.63676, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, -1.57573, 4.91028, -4.91028, 4.91028, -3.97086, 0.0754334, -3.97086, 3.89543, -3.19522e-13, -3.19078e-13, -3.97086, 3.97086, -0.0754334, -23.0483, 6.54704, -6.54704, 10.2738, -10.2738, -6.2275, 10.2738, 6.2275, 10.2738}, {0, -4.817, 7.10543e-15, -1.41539, -0.190281, -1.85814, -0.373467, 0.373467, 3.64699, 1.78885, -1.78885, -1.78885, 7.41106, -0.988391, 9.72932, 2.21115, -0.226431, -2.21115, 1.9555, -3.94022, -19.0959, -9.36656, 7.38185, 9.36656, -0.461631, 2.44635, 4.50793, -1.74951, 1.74951, -2.29678}, {-1.11022e-15, 1.60567, -1.55431e-15, 4.24616, 0.570843, 5.57441, -0.373467, 0.373467, 3.64699, 1.78885, -1.78885, -1.78885, 1.74951, -8.17219, 2.29678, 3.70501, -1.7203, -16.7991, 0.461631, -2.44635, -4.50793, -2.21115, 0.226431, 2.21115, -7.61705, 9.60176, 11.6633, -1.74951, 1.74951, -2.29678}, {-8.88178e-16, 1.60567, 1.11022e-15, -1.41539, -0.190281, -1.85814, 1.1204, -1.1204, -10.941, 1.78885, -1.78885, -1.78885, 1.74951, -1.74951, 2.29678, 7.87269, 0.534693, 5.2214, 0.461631, -8.86902, -4.50793, -2.21115, 0.226431, 2.21115, -0.461631, 2.44635, 4.50793, -8.90493, 8.90493, 4.85864}, {1.55431e-15, 1.60567, -4.44089e-16, -1.41539, -0.190281, -1.85814, -0.373467, 0.373467, 3.64699, -5.36656, 5.36656, 5.36656, 1.74951, -1.74951, 2.29678, 2.21115, -0.226431, -2.21115, 0.461631, -2.44635, -4.50793, -2.21115, -6.19624, 2.21115, 5.19992, 3.20747, 11.9405, -0.255645, 0.255645, -16.8847}, {-2.60507, 7.08874, -2.60507, -1.19276, 2.49131, 1.15037, -1.08957, 0.431245, -1.08957, 1.41397, -0.55964, -0.929159, 5.172, -10.1239, -7.09676, 2.82111, -3.61247, -0.0751544, 4.6317, 0.662693, 4.6317, -8.47697, 5.85103, 3.79179, -0.273431, -2.38767, -0.273431, -0.400978, 0.158705, 2.49528}, {0.868358, -2.36291, 0.868358, 3.57827, -7.47392, -3.45111, -1.08957, 0.431245, -1.08957, 1.41397, -0.55964, -0.929159, -3.07245, 9.29295, -5.96872, 7.17938, -5.33745, 4.28312, 0.273431, 2.38767, 0.273431, -2.82111, 3.61247, 0.0751544, -5.9293, -0.149113, 3.44321, -0.400978, 0.158705, 2.49528}, {0.868358, -2.36291, 0.868358, -1.19276, 2.49131, 1.15037, 3.2687, -1.29374, 3.2687, 1.41397, -0.55964, -0.929159, 0.400978, -0.158705, -2.49528, 7.59213, -13.5777, -4.67663, -3.2, 11.8393, -3.2, -2.82111, 3.61247, 0.0751544, -0.273431, -2.38767, -0.273431, -6.05684, 2.39726, 6.21192}, {0.868358, -2.36291, 0.868358, -1.19276, 2.49131, 1.15037, -1.08957, 0.431245, -1.08957, -4.2419, 1.67892, 2.78748, 0.400978, -0.158705, -2.49528, 2.82111, -3.61247, -0.0751544, 0.273431, 2.38767, 0.273431, -6.29454, 13.0641, -3.39828, 4.49759, -12.3529, -4.87491, 3.95729, -1.56628, 6.85356}, {0.133606, -1.71772, 4.33994, 0.841626, -2.01922, -1.9732e-12, -1.05603, 0, 0, 0.258935, 1.44665, 1.44665, -4.35176, 9.86504, 1.78815, 0.265013, 2.4959, 2.43901e-12, 5.58447, -0.707741, 1.78815, -1.30075, -8.28248, -5.78659, -1.36037, 0.707741, -1.78815, 0.985258, -1.78815, -1.78815}, {-0.0445353, 0.572575, -1.44665, -2.52488, 6.05767, 5.92285e-12, -1.05603, 0, 0, 0.258935, 1.44665, 1.44665, -0.807116, -0.502145, 7.57474, 4.48912, 2.4959, 2.44035e-12, 1.36037, -0.707741, 1.78815, -0.265013, -2.4959, -2.43999e-12, -2.39611, -5.07885, -7.57474, 0.985258, -1.78815, -1.78815}, {-0.0445353, 0.572575, -1.44665, 0.841626, -2.01922, -1.97392e-12, 3.16808, 0, 0, 0.258935, 1.44665, 1.44665, -0.985258, 1.78815, 1.78815, -3.10149, 10.5728, 1.03356e-11, 1.53851, -2.99804, 7.57474, -0.265013, -2.4959, -2.43954e-12, -1.36037, 0.707741, -1.78815, -0.0504837, -7.57474, -7.57474}, {-0.0445353, 0.572575, -1.44665, 0.841626, -2.01922, -1.97247e-12, -1.05603, 0, 0, -0.776806, -4.33994, -4.33994, -0.985258, 1.78815, 1.78815, 0.265013, 2.4959, 2.43811e-12, 1.36037, -0.707741, 1.78815, -0.0868717, -4.7862, 5.78659, -4.72687, 8.78463, -1.78815, 5.20936, -1.78815, -1.78815}, {-8.334, -1.1204, -10.941, -1.41539, 1.41539, -1.85814, -3.15147, 0, 0, 1.78885, -1.78885, -1.78885, 3.97726, -7.87269, 5.2214, 5.64494, -1.74951, 2.29678, 13.0675, -0.461631, -4.50793, -12.8004, 8.90493, 4.85864, -0.461631, 0.461631, 4.50793, 1.68428, 2.21115, 2.21115}, {2.778, 0.373467, 3.64699, 4.24616, -4.24616, 5.57441, -3.15147, 0, 0, 1.78885, -1.78885, -1.78885, -12.7963, -3.70501, -16.7991, 18.2508, -1.74951, 2.29678, 0.461631, -0.461631, -4.50793, -5.64494, 1.74951, -2.29678, -7.61705, 7.61705, 11.6633, 1.68428, 2.21115, 2.21115}, {2.778, 0.373467, 3.64699, -1.41539, 1.41539, -1.85814, 9.45441, 0, 0, 1.78885, -1.78885, -1.78885, -1.68428, -2.21115, -2.21115, 11.3065, -7.41106, 9.72932, -10.6504, -1.9555, -19.0959, -5.64494, 1.74951, -2.29678, -0.461631, 0.461631, 4.50793, -5.47113, 9.36656, 9.36656}, {2.778, 0.373467, 3.64699, -1.41539, 1.41539, -1.85814, -3.15147, 0, 0, -5.36656, 5.36656, 5.36656, -1.68428, -2.21115, -2.21115, 5.64494, -1.74951, 2.29678, 0.461631, -0.461631, -4.50793, -16.7569, 0.255645, -16.8847, 5.19992, -5.19992, 11.9405, 14.2902, 2.21115, 2.21115}, {1.01058, 2.55106, -2.5536, -2.38953, 1.40121, 0.936349, 0.591368, -0.846655, -1.49431, 2.13502, 0.295801, -0.293237, 12.9281, -6.28572, -5.95493, 2.22265, -0.685462, 0.68968, -2.68006, 5.48424, 6.77218, -10.7627, -0.497743, 0.483267, 0.314591, -2.09762, -0.794931, -3.37, 0.680893, 2.20953}, {-0.336859, -0.850352, 0.8512, 7.1686, -4.20362, -2.80905, 0.591368, -0.846655, -1.49431, 2.13502, 0.295801, -0.293237, 4.71744, 2.72051, -5.61433, -0.142821, 2.70116, 6.66693, -0.314591, 2.09762, 0.794931, -2.22265, 0.685462, -0.68968, -8.2255, -3.28082, 0.378017, -3.37, 0.680893, 2.20953}, {-0.336859, -0.850352, 0.8512, -2.38953, 1.40121, 0.936349, -1.77411, 2.53997, 4.48294, 2.13502, 0.295801, -0.293237, 3.37, -0.680893, -2.20953, 11.7808, -6.29028, -3.05572, 1.03285, 5.49902, -2.60987, -2.22265, 0.685462, -0.68968, 0.314591, -2.09762, -0.794931, -11.9101, -0.502312, 3.38248}, {-0.336859, -0.850352, 0.8512, -2.38953, 1.40121, 0.936349, 0.591368, -0.846655, -1.49431, -6.40507, -0.887404, 0.879711, 3.37, -0.680893, -2.20953, 2.22265, -0.685462, 0.68968, -0.314591, 2.09762, 0.794931, -0.875216, 4.08687, -4.09448, 9.87272, -7.70244, -4.54033, -5.73548, 4.06751, 8.18678}, {8.88178e-16, 9.4517, 0, 1.85814, -1.41498, 1.41539, -3.64699, 2.77721, 0.373467, 1.78885, 1.78834, -1.78885, -9.72932, 11.3033, -7.41106, 2.21115, -1.6838, -2.21115, 19.0959, -10.6473, -1.9555, -9.36656, -5.46957, 9.36656, -4.50793, -0.461499, 0.461631, 2.29678, -5.64333, 1.74951}, {-2.22045e-16, -3.15057, -2.22045e-16, -5.57441, 4.24495, -4.24616, -3.64699, 2.77721, 0.373467, 1.78885, 1.78834, -1.78885, -2.29678, 18.2456, -1.74951, 16.7991, -12.7926, -3.70501, 4.50793, 0.461499, -0.461631, -2.21115, 1.6838, 2.21115, -11.6633, -7.61487, 7.61705, 2.29678, -5.64333, 1.74951}, {8.88178e-16, -3.15057, 2.22045e-16, 1.85814, -1.41498, 1.41539, 10.941, -8.33162, -1.1204, 1.78885, 1.78834, -1.78885, -2.29678, 5.64333, -1.74951, -5.2214, 3.97613, -7.87269, 4.50793, 13.0638, -0.461631, -2.21115, 1.6838, 2.21115, -4.50793, -0.461499, 0.461631, -4.85864, -12.7967, 8.90493}, {2.22045e-16, -3.15057, 6.66134e-16, 1.85814, -1.41498, 1.41539, -3.64699, 2.77721, 0.373467, -5.36656, -5.36503, 5.36656, -2.29678, 5.64333, -1.74951, 2.21115, -1.6838, -2.21115, 4.50793, 0.461499, -0.461631, -2.21115, 14.2861, 2.21115, -11.9405, 5.19843, -5.19992, 16.8847, -16.7522, 0.255645}, {-3.98943, -5.23221, -5.22554, -1.94057, -2.54509, -0.198723, 0.61076, -1.54509, -1.54312, 0, 2.34612, 0, 8.51722, 11.1705, -1.11252, 1.64373, 5.05575, 2.15304, -4.84171, 5.93443, 5.92686, -1.64373, -14.4402, -2.15304, 2.39867, 0.245948, 0.245635, -0.754941, -0.990119, 1.90741}, {1.32981, 1.74407, 1.74185, 5.82171, 7.63528, 0.596168, 0.61076, -1.54509, -1.54312, -3.55726e-16, 2.34612, 8.98764e-16, -4.5643, -5.98616, -8.87479, -0.799305, 11.2361, 8.32553, -2.39867, -0.245948, -0.245635, -1.64373, -5.05575, -2.15304, 2.39867, -9.13852, 0.245635, -0.754941, -0.990119, 1.90741}, {1.32981, 1.74407, 1.74185, -1.94057, -2.54509, -0.198723, -1.83228, 4.63528, 4.62937, 0, 2.34612, 0, 0.754941, 0.990119, -1.90741, 9.40601, 15.2361, 2.94793, -7.71791, -7.22223, -7.21302, -1.64373, -5.05575, -2.15304, 2.39867, 0.245948, 0.245635, -0.754941, -10.3746, 1.90741}, {1.32981, 1.74407, 1.74185, -1.94057, -2.54509, -0.198723, 0.61076, -1.54509, -1.54312, 0, -7.03835, 0, 0.754941, 0.990119, -1.90741, 1.64373, 5.05575, 2.15304, -2.39867, -0.245948, -0.245635, -6.96297, -12.032, -9.12042, 10.1609, 10.4263, 1.04052, -3.19798, 5.19026, 8.0799}, {0, -8.88178e-15, -7.02938, -1.78885, -2.34612, -2.34313, 1.78885, 6.94391e-12, 7.11845e-12, 0, 2.34612, 0, 9.36656, 12.2844, 9.3725, 0, 2.89996, 2.89626, -9.36656, -3.63625e-11, -2.89626, 0, -12.2844, -2.89626, 2.21115, 8.58691e-12, 2.89626, -2.21115, -2.89996, -8.79889e-12}, {-9.56516e-16, 1.33227e-15, 2.34313, 5.36656, 7.03835, 7.02938, 1.78885, 6.94391e-12, 7.11845e-12, -1.04189e-15, 2.34612, -4.14601e-27, 2.21115, 2.89996, -9.3725, -7.15542, 2.89996, 2.89626, -2.21115, -8.58469e-12, -2.89626, 2.66454e-15, -2.89996, -2.89626, 2.21115, -9.38447, 2.89626, -2.21115, -2.89996, -8.79889e-12}, {0, -4.44089e-16, 2.34313, -1.78885, -2.34612, -2.34313, -5.36656, -2.08419e-11, -2.13616e-11, 0, 2.34612, 0, 2.21115, 2.89996, 8.80088e-12, 7.15542, 12.2844, 12.2688, -2.21115, -8.58691e-12, -12.2688, 0, -2.89996, -2.89626, 2.21115, 8.58691e-12, 2.89626, -2.21115, -12.2844, -8.80146e-12}, {0, 8.88178e-16, 2.34313, -1.78885, -2.34612, -2.34313, 1.78885, 6.94234e-12, 7.11741e-12, 0, -7.03835, 0, 2.21115, 2.89996, 8.79702e-12, 0, 2.89996, 2.89626, -2.21115, -8.58291e-12, -2.89626, 0, -2.89996, -12.2688, 9.36656, 9.38447, 12.2688, -9.36656, -2.89996, -3.72672e-11}, {-0.596168, 7.62554, 5.82171, -1.74185, 1.74185, 1.32981, 0, 2.34313, 0, 1.54312, -1.54312, 0.61076, 8.87479, -5.97853, -4.5643, 2.15304, -5.0493, -1.64373, -0.245635, -9.12687, 2.39867, -8.32553, 11.2218, -0.799305, 0.245635, -0.245635, -2.39867, -1.90741, -0.988857, -0.754941}, {0.198723, -2.54185, -1.94057, 5.22554, -5.22554, -3.98943, -8.97618e-16, 2.34313, -3.55272e-16, 1.54312, -1.54312, 0.61076, 1.11252, 11.1562, 8.51722, 2.15304, -14.4218, -1.64373, -0.245635, 0.245635, 2.39867, -2.15304, 5.0493, 1.64373, -5.92686, 5.92686, -4.84171, -1.90741, -0.988857, -0.754941}, {0.198723, -2.54185, -1.94057, -1.74185, 1.74185, 1.32981, 0, -7.02938, 0, 1.54312, -1.54312, 0.61076, 1.90741, 0.988857, 0.754941, 9.12042, -12.0167, -6.96297, -1.04052, 10.413, 10.1609, -2.15304, 5.0493, 1.64373, 0.245635, -0.245635, -2.39867, -8.0799, 5.18364, -3.19798}, {0.198723, -2.54185, -1.94057, -1.74185, 1.74185, 1.32981, 0, 2.34313, 0, -4.62937, 4.62937, -1.83228, 1.90741, 0.988857, 0.754941, 2.15304, -5.0493, -1.64373, -0.245635, 0.245635, 2.39867, -2.94793, 15.2167, 9.40601, 7.21302, -7.21302, -7.71791, -1.90741, -10.3614, -0.754941}, {4.7272, -4.7272, -4.7272, 1.57573, 1.57573, -1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, 1.57573, -6.30294, -10.1984, 6.30294, 1.80456e-12, 1.805e-12, 3.89543, 10.1984, 6.30294, 6.30294, -6.30294, 6.30294, -10.1984, -3.89543, 3.19078e-13, 3.19078e-13, -2.14295e-12, 3.89543, 2.13674e-12}, {-1.57573, 1.57573, 1.57573, -4.7272, -4.7272, 4.7272, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, 1.57573, 6.30294, -10.1984, -6.30294, 6.30294, 6.30294, 10.1984, 3.89543, -3.193e-13, -3.193e-13, -1.80505e-12, -1.80561e-12, -3.89543, -10.1984, 6.30294, -6.30294, -2.1394e-12, 3.89543, 2.13962e-12}, {-1.57573, 1.57573, 1.57573, 1.57573, 1.57573, -1.57573, 4.7272, 4.7272, 4.7272, 1.57573, -1.57573, 1.57573, 2.14007e-12, -3.89543, -2.14007e-12, -6.30294, -6.30294, 10.1984, 10.1984, -6.30294, -6.30294, -1.80394e-12, -1.80428e-12, -3.89543, -3.89543, 3.20188e-13, 3.193e-13, -6.30294, 10.1984, -6.30294}, {-1.57573, 1.57573, 1.57573, 1.57573, 1.57573, -1.57573, -1.57573, -1.57573, -1.57573, -4.7272, 4.7272, -4.7272, 2.1354e-12, -3.89543, -2.14473e-12, 1.80456e-12, 1.80456e-12, 3.89543, 3.89543, -3.19522e-13, -3.19522e-13, 6.30294, -6.30294, -10.1984, -10.1984, -6.30294, 6.30294, 6.30294, 10.1984, 6.30294}, {4.817, -8.88178e-16, 2.22045e-16, -0.136178, 1.74185, 1.32981, 0.198723, -0.198723, -1.94057, 1.54312, -1.54312, 0.61076, 2.69775, -9.12042, -6.96297, -0.0773091, -1.90741, 0.754941, 0.94419, 1.04052, 10.1609, -6.09519, 8.0799, -3.19798, -1.73908, -0.245635, -2.39867, -2.15304, 2.15304, 1.64373}, {-1.60567, 0, 2.22045e-16, 0.408534, -5.22554, -3.98943, 0.198723, -0.198723, -1.94057, 1.54312, -1.54312, 0.61076, 8.57571, -2.15304, -1.64373, -0.872199, -1.11252, 8.51722, 1.73908, 0.245635, 2.39867, 0.0773091, 1.90741, -0.754941, -7.91157, 5.92686, -4.84171, -2.15304, 2.15304, 1.64373}, {-1.60567, 0, 2.22045e-16, -0.136178, 1.74185, 1.32981, -0.596168, 0.596168, 5.82171, 1.54312, -1.54312, 0.61076, 2.15304, -2.15304, -1.64373, 0.467403, -8.87479, -4.5643, 8.16175, 0.245635, 2.39867, 0.0773091, 1.90741, -0.754941, -1.73908, -0.245635, -2.39867, -8.32553, 8.32553, -0.799305}, {-1.60567, -2.22045e-16, -2.22045e-16, -0.136178, 1.74185, 1.32981, 0.198723, -0.198723, -1.94057, -4.62937, 4.62937, -1.83228, 2.15304, -2.15304, -1.64373, -0.0773091, -1.90741, 0.754941, 1.73908, 0.245635, 2.39867, 6.49998, 1.90741, -0.754941, -1.19437, -7.21302, -7.71791, -2.94793, 2.94793, 9.40601}, {7.01844, 8.88178e-16, 0, 2.33948, 2.34313, 1.78885, 7.30061e-12, 6.91762e-12, -1.78885, 0, -2.34313, 0, -9.35791, -12.2688, -9.36656, -2.89175, -2.89626, 0, 2.89175, -3.62204e-11, 9.36656, 2.89175, 12.2688, 0, -2.89175, 8.55005e-12, -2.21115, -9.02405e-12, 2.89626, 2.21115}, {-2.33948, 0, 0, -7.01844, -7.02938, -5.36656, 7.30269e-12, 6.91918e-12, -1.78885, 0, -2.34313, 0, 9.35791, -2.89626, -2.21115, -2.89175, -2.89626, 7.15542, 2.89175, -8.55271e-12, 2.21115, 2.89175, 2.89626, 0, -2.89175, 9.3725, -2.21115, -9.02662e-12, 2.89626, 2.21115}, {-2.33948, 4.44089e-16, 2.22045e-16, 2.33948, 2.34313, 1.78885, -2.19003e-11, -2.07607e-11, 5.36656, 0, -2.34313, 0, 9.02399e-12, -2.89626, -2.21115, -12.2497, -12.2688, -7.15542, 12.2497, -8.55493e-12, 2.21115, 2.89175, 2.89626, -4.44089e-16, -2.89175, 8.55405e-12, -2.21115, -9.02341e-12, 12.2688, 2.21115}, {-2.33948, 4.44089e-16, 0, 2.33948, 2.34313, 1.78885, 7.30373e-12, 6.92178e-12, -1.78885, 0, 7.02938, 0, 9.02849e-12, -2.89626, -2.21115, -2.89175, -2.89626, 0, 2.89175, -8.55627e-12, 2.21115, 12.2497, 2.89626, 0, -12.2497, -9.3725, -9.36656, -3.82428e-11, 2.89626, 9.36656}, {-1.82966, -4.6256, 4.62804, 1.3308, -1.74043, 0.137442, -1.94068, 0.198561, -0.20043, 0, 0, 1.60567, -7.722, 7.20714, 1.1872, 0.75386, 1.90585, 0.0778573, 9.40768, -2.94553, 2.95632, -0.75386, -1.90585, -6.50053, -1.64495, 2.15129, -2.1546, 2.39881, -0.245434, -1.73697}, {0.609885, 1.54187, -1.54268, -3.99239, 5.22128, -0.412327, -1.94068, 0.198561, -0.20043, 7.7358e-16, -7.91487e-17, 1.60567, -4.83836, -5.92203, 7.90769, 8.51658, 1.11161, 0.879578, 1.64495, -2.15129, 2.1546, -0.75386, -1.90585, -0.0778573, -1.64495, 2.15129, -8.57728, 2.39881, -0.245434, -1.73697}, {0.609885, 1.54187, -1.54268, 1.3308, -1.74043, 0.137442, 5.82204, -0.595682, 0.601291, 0, 0, 1.60567, -2.39881, 0.245434, 1.73697, -4.56932, 8.86756, -0.471912, -0.794587, -8.31875, 8.32532, -0.75386, -1.90585, -0.0778573, -1.64495, 2.15129, -2.1546, 2.39881, -0.245434, -8.15964}, {0.609885, 1.54187, -1.54268, 1.3308, -1.74043, 0.137442, -1.94068, 0.198561, -0.20043, 0, 0, -4.817, -2.39881, 0.245434, 1.73697, 0.75386, 1.90585, 0.0778573, 1.64495, -2.15129, 2.1546, -3.1934, -8.07331, 6.09286, -6.96814, 9.11299, -2.70437, 10.1615, -1.03968, -0.935249}, {-4.24457, 5.57441, -4.24616, -1.78937, -1.78885, -1.78885, 3.15147, -2.85327e-15, -2.92187e-16, -2.77696, 3.64699, 0.373467, 7.62038, 11.6633, 7.61705, -1.68365, 2.21115, 2.21115, -18.2502, 2.29678, -1.74951, 12.7915, -16.7991, -3.70501, 5.64429, -2.29678, 1.74951, -0.46292, -4.50793, -0.461631}, {1.41486, -1.85814, 1.41539, 5.3681, 5.36656, 5.36656, 3.15147, 5.70654e-15, 5.84374e-16, -2.77696, 3.64699, 0.373467, -5.1965, 11.9405, -5.19992, -14.2895, 2.21115, 2.21115, -5.64429, 2.29678, -1.74951, 1.68365, -2.21115, -2.21115, 16.7521, -16.8847, 0.255645, -0.46292, -4.50793, -0.461631}, {1.41486, -1.85814, 1.41539, -1.78937, -1.78885, -1.78885, -9.45441, 0, 0, -2.77696, 3.64699, 0.373467, 0.46292, 4.50793, 0.461631, 5.47381, 9.36656, 9.36656, -11.3037, 9.72932, -7.41106, 1.68365, -2.21115, -2.21115, 5.64429, -2.29678, 1.74951, 10.6449, -19.0959, -1.9555}, {1.41486, -1.85814, 1.41539, -1.78937, -1.78885, -1.78885, 3.15147, 2.85327e-15, 2.92187e-16, 8.33088, -10.941, -1.1204, 0.46292, 4.50793, 0.461631, -1.68365, 2.21115, 2.21115, -5.64429, 2.29678, -1.74951, -3.97577, 5.2214, -7.87269, 12.8018, 4.85864, 8.90493, -13.0688, -4.50793, -0.461631}, {-4.72788, -4.72653, -4.72653, 1.57551, -1.57551, -1.57551, -1.57551, 1.57551, -1.57596, -1.57596, -1.57551, 1.57596, -10.1975, 6.30204, 6.30204, -4.83169e-13, -4.92273e-13, 3.89543, 6.30148, -10.1969, 6.30439, 6.30384, 6.30204, -10.1993, 0.000556765, 3.89487, -0.000556765, 3.89543, -1.82077e-12, -1.81766e-12}, {1.57596, 1.57551, 1.57551, -4.72653, 4.72653, 4.72653, -1.57551, 1.57551, -1.57596, -1.57596, -1.57551, 1.57596, -10.1993, -6.30204, -6.30204, 6.30204, -6.30204, 10.1993, -0.000556765, -3.89487, 0.000556765, 4.86997e-13, 4.81002e-13, -3.89543, 6.30439, 10.1969, -6.30439, 3.89543, -1.81322e-12, -1.80744e-12}, {1.57596, 1.57551, 1.57551, 1.57551, -1.57551, -1.57551, 4.72653, -4.72653, 4.72788, -1.57596, -1.57551, 1.57596, -3.89543, 1.8201e-12, 1.81388e-12, -6.30204, 6.30204, 10.1975, -6.30439, -10.1969, -6.30148, 4.87441e-13, 4.99209e-13, -3.89543, 0.000556765, 3.89487, -0.000556765, 10.1993, 6.30204, -6.30384}, {1.57596, 1.57551, 1.57551, 1.57551, -1.57551, -1.57551, -1.57551, 1.57551, -1.57596, 4.72788, 4.72653, -4.72788, -3.89543, 1.81255e-12, 1.81877e-12, -4.87832e-13, -4.87388e-13, 3.89543, -0.000556765, -3.89487, 0.000556765, -6.30384, -6.30204, -10.1975, -6.30148, 10.1969, 6.30148, 10.1975, -6.30204, 6.30384}, {5.36656, -5.36656, -5.3681, 3.64699, -0.373467, 2.77696, 0, 0, -3.15147, -1.85814, -1.41539, -1.41486, -16.8847, -0.255645, -16.7521, -4.50793, 0.461631, 0.46292, 2.21115, -2.21115, 14.2895, 11.9405, 5.19992, 5.1965, -2.21115, 2.21115, -1.68365, 2.29678, 1.74951, 5.64429}, {-1.78885, 1.78885, 1.78937, -10.941, 1.1204, -8.33088, 0, 0, -3.15147, -1.85814, -1.41539, -1.41486, 4.85864, -8.90493, -12.8018, -4.50793, 0.461631, 13.0688, 2.21115, -2.21115, 1.68365, 4.50793, -0.461631, -0.46292, 5.2214, 7.87269, 3.97577, 2.29678, 1.74951, 5.64429}, {-1.78885, 1.78885, 1.78937, 3.64699, -0.373467, 2.77696, 0, 0, 9.45441, -1.85814, -1.41539, -1.41486, -2.29678, -1.74951, -5.64429, -19.0959, 1.9555, -10.6449, 9.36656, -9.36656, -5.47381, 4.50793, -0.461631, -0.46292, -2.21115, 2.21115, -1.68365, 9.72932, 7.41106, 11.3037}, {-1.78885, 1.78885, 1.78937, 3.64699, -0.373467, 2.77696, 0, 0, -3.15147, 5.57441, 4.24616, 4.24457, -2.29678, -1.74951, -5.64429, -4.50793, 0.461631, 0.46292, 2.21115, -2.21115, 1.68365, 11.6633, -7.61705, -7.62038, -16.7991, 3.70501, -12.7915, 2.29678, 1.74951, 18.2502}, {-0.570843, 5.57441, 4.24616, -0.373467, 3.64699, -0.373467, 1.78885, -1.78885, 1.78885, -1.60567, 0, 0, 1.7203, -16.7991, 3.70501, -1.74951, -2.29678, -1.74951, -9.60176, 11.6633, -7.61705, 8.17219, 2.29678, 1.74951, 2.44635, -4.50793, 0.461631, -0.226431, 2.21115, -2.21115}, {0.190281, -1.85814, -1.41539, 1.1204, -10.941, 1.1204, 1.78885, -1.78885, 1.78885, -1.60567, 0, 0, -0.534693, 5.2214, 7.87269, -8.90493, 4.85864, -8.90493, -2.44635, 4.50793, -0.461631, 1.74951, 2.29678, 1.74951, 8.86902, -4.50793, 0.461631, -0.226431, 2.21115, -2.21115}, {0.190281, -1.85814, -1.41539, -0.373467, 3.64699, -0.373467, -5.36656, 5.36656, -5.36656, -1.60567, 0, 0, 0.226431, -2.21115, 2.21115, -0.255645, -16.8847, -0.255645, -3.20747, 11.9405, 5.19992, 1.74951, 2.29678, 1.74951, 2.44635, -4.50793, 0.461631, 6.19624, 2.21115, -2.21115}, {0.190281, -1.85814, -1.41539, -0.373467, 3.64699, -0.373467, 1.78885, -1.78885, 1.78885, 4.817, 0, 0, 0.226431, -2.21115, 2.21115, -1.74951, -2.29678, -1.74951, -2.44635, 4.50793, -0.461631, 0.988391, 9.72932, 7.41106, 3.94022, -19.0959, 1.9555, -7.38185, 9.36656, -9.36656}, {-2.4085, 2.4085, -2.4085, 0.802834, 0.802834, -0.802834, 0.0313083, 1.63555, 1.63555, -1.63698, -1.63555, -1.63555, -5.19605, -3.21134, 3.21134, -1.03106, -3.014, -1.02929, -1.15629, -7.57148, -9.55619, 7.57896, 9.55619, 7.57148, 1.03106, 1.02929, 3.014, 1.98471, -8.43769e-15, 6.21725e-15}, {0.802834, -0.802834, 0.802834, -2.4085, -2.4085, 2.4085, 0.0313083, 1.63555, 1.63555, -1.63698, -1.63555, -1.63555, -5.19605, 3.21134, -3.21134, -1.15629, -9.55619, -7.57148, -1.03106, -1.02929, -3.014, 1.03106, 3.014, 1.02929, 7.57896, 7.57148, 9.55619, 1.98471, -7.54952e-15, 7.10543e-15}, {0.802834, -0.802834, 0.802834, 0.802834, 0.802834, -0.802834, -0.0939249, -4.90664, -4.90664, -1.63698, -1.63555, -1.63555, -1.98471, 7.10543e-15, -6.66134e-15, -4.24239, -6.22534, 2.18205, -4.24239, 2.18205, -6.22534, 1.03106, 3.014, 1.02929, 1.03106, 1.02929, 3.014, 8.53262, 6.54219, 6.54219}, {0.802834, -0.802834, 0.802834, 0.802834, 0.802834, -0.802834, 0.0313083, 1.63555, 1.63555, 4.91093, 4.90664, 4.90664, -1.98471, 6.21725e-15, -6.66134e-15, -1.03106, -3.014, -1.02929, -1.03106, -1.02929, -3.014, -2.18028, 6.22534, -2.18205, -2.18028, -2.18205, 6.22534, 1.85948, -6.54219, -6.54219}, {5.36656, 5.36656, -5.36656, 0, 0, -3.15147, 3.15147, -1.39953e-15, -1.06606e-15, -1.36261, 1.78885, 1.36261, 2.21115, 2.21115, 14.2902, -3.89543, 1.72992e-15, 3.89543, -14.2902, 2.21115, -2.21115, 9.34589, -7.15542, -9.34589, 1.68428, -2.21115, 2.21115, -2.21115, -2.21115, -1.68428}, {-1.78885, -1.78885, 1.78885, 0, 0, 9.45441, 3.15147, 2.79907e-15, 2.13212e-15, -1.36261, 1.78885, 1.36261, 9.36656, 9.36656, -5.47113, -16.5013, -1.46561e-14, 3.89543, -1.68428, 2.21115, -2.21115, 3.89543, 3.90393e-15, -3.89543, 7.13474, -9.36656, -3.23931, -2.21115, -2.21115, -1.68428}, {-1.78885, -1.78885, 1.78885, 0, 0, -3.15147, -9.45441, 0, 0, -1.36261, 1.78885, 1.36261, 2.21115, 2.21115, 1.68428, -3.89543, 0, 16.5013, 5.47113, 9.36656, -9.36656, 3.89543, 4.44089e-16, -3.89543, 1.68428, -2.21115, 2.21115, 3.23931, -9.36656, -7.13474}, {-1.78885, -1.78885, 1.78885, 0, 0, -3.15147, 3.15147, 1.39953e-15, 1.06606e-15, 4.08784, -5.36656, -4.08784, 2.21115, 2.21115, 1.68428, -3.89543, -1.72992e-15, 3.89543, -1.68428, 2.21115, -2.21115, 11.0508, 7.15542, -11.0508, 1.68428, -2.21115, 14.817, -14.817, -2.21115, -1.68428}, {1.55756, -1.55231, 6.66925, 0.74491, 1.59978, -0.633715, 1.29557, -1.29442, 0.512752, -1.52129, -0.822804, 2.34405, -3.25865, -9.01615, 6.06606, -2.52217, -0.377453, 0.149519, -6.14194, 6.13806, 0.0630791, 8.60734, 3.66867, -9.52571, 0.95966, -0.960396, -2.11409, 0.279008, 2.61703, -3.5312}, {-0.519188, 0.517438, -2.22308, -2.23473, -4.79934, 1.90115, 1.29557, -1.29442, 0.512752, -1.52129, -0.822804, 2.34405, 1.79774, -4.68678, 12.4235, -7.70445, 4.80021, -1.90149, -0.95966, 0.960396, 2.11409, 2.52217, 0.377453, -0.149519, 7.04482, 2.33082, -11.4903, 0.279008, 2.61703, -3.5312}, {-0.519188, 0.517438, -2.22308, 0.74491, 1.59978, -0.633715, -3.88671, 3.88325, -1.53826, -1.52129, -0.822804, 2.34405, -0.279008, -2.61703, 3.5312, -5.50181, -6.77658, 2.68438, 1.11709, -1.10936, 11.0064, 2.52217, 0.377453, -0.149519, 0.95966, -0.960396, -2.11409, 6.36417, 5.90824, -12.9074}, {-0.519188, 0.517438, -2.22308, 0.74491, 1.59978, -0.633715, 1.29557, -1.29442, 0.512752, 4.56387, 2.46841, -7.03214, -0.279008, -2.61703, 3.5312, -2.52217, -0.377453, 0.149519, -0.95966, 0.960396, 2.11409, 4.59892, -1.6923, 8.74282, -2.01998, -7.35952, 0.420775, -4.90327, 7.79469, -5.58221}, {-3.62807, -1.43344, -3.62246, -0.761007, 2.64249, 1.57539, -0.983272, -2.40589, -0.977465, 0.534922, -0.714416, -1.80541, 2.48984, -14.4269, -9.74136, 2.15605, -0.292457, -0.73907, 3.65363, 12.0068, 3.62554, -4.29574, 3.15012, 7.96069, 0.279456, -2.38324, 0.28432, 0.554191, 3.85691, 3.43982}, {1.20936, 0.477813, 1.20749, 2.28302, -7.92748, -4.72616, -0.983272, -2.40589, -0.977465, 0.534922, -0.714416, -1.80541, -5.39162, -5.76816, -8.26976, 6.08913, 9.33111, 3.17079, -0.279456, 2.38324, -0.28432, -2.15605, 0.292457, 0.73907, -1.86023, 0.474427, 7.50594, 0.554191, 3.85691, 3.43982}, {1.20936, 0.477813, 1.20749, -0.761007, 2.64249, 1.57539, 2.94982, 7.21767, 2.9324, 0.534922, -0.714416, -1.80541, -0.554191, -3.85691, -3.43982, 5.20007, -10.8624, -7.04061, -5.11688, 0.471983, -5.11426, -2.15605, 0.292457, 0.73907, 0.279456, -2.38324, 0.28432, -1.5855, 6.71457, 10.6614}, {1.20936, 0.477813, 1.20749, -0.761007, 2.64249, 1.57539, -0.983272, -2.40589, -0.977465, -1.60477, 2.14325, 5.41622, -0.554191, -3.85691, -3.43982, 2.15605, -0.292457, -0.73907, -0.279456, 2.38324, -0.28432, -6.99347, -1.6188, -4.09087, 3.32348, -12.9532, -6.01722, 4.48728, 13.4805, 7.34968}, {5.81909, -7.61025, 0.600985, 0.610485, 1.54108, -1.54262, 0, -2.33948, 0, 1.32921, -1.73835, 1.74295, -0.798945, -11.2048, 8.32487, -0.754601, 0.986874, 1.90678, 2.3976, 9.11407, 0.24762, -4.56224, 5.96654, -8.87857, -2.3976, 0.243842, -0.24762, -1.643, 5.04048, -2.1544}, {-1.9397, 2.53675, -0.200328, -1.83146, -4.62324, 4.62785, 0, -2.33948, 0, 1.32921, -1.73835, 1.74295, 9.40178, -15.1875, 2.95571, -0.754601, 10.3448, 1.90678, 2.3976, -0.243842, 0.24762, 0.754601, -0.986874, -1.90678, -7.71444, 7.19725, -7.21941, -1.643, 5.04048, -2.1544}, {-1.9397, 2.53675, -0.200328, 0.610485, 1.54108, -1.54262, 0, 7.01844, 0, 1.32921, -1.73835, 1.74295, 1.643, -5.04048, 2.1544, -3.19654, -5.17745, 8.07725, 10.1564, -10.3908, 1.04893, 0.754601, -0.986874, -1.90678, -2.3976, 0.243842, -0.24762, -6.95984, 11.9939, -9.12619}, {-1.9397, 2.53675, -0.200328, 0.610485, 1.54108, -1.54262, 0, -2.33948, 0, -3.98763, 5.21506, -5.22884, 1.643, -5.04048, 2.1544, -0.754601, 0.986874, 1.90678, 2.3976, -0.243842, 0.24762, 8.51339, -11.1339, -1.10547, -4.83954, -5.92048, 5.92285, -1.643, 14.3984, -2.1544}, {4.33994, -4.33994, -1.54017, 0, 0, -1.80556, -0.572575, -1.44665, 0.668413, 2.01922, 1.97175e-12, 0.623753, 1.78815, -1.78815, 8.81943, 0.707741, 1.78815, 1.40559, 4.7862, 5.78659, -4.13444, -8.78463, -1.78815, -3.9006, -2.4959, -2.43721e-12, 1.46079, -1.78815, 1.78815, -1.5972}, {-1.44665, 1.44665, 0.51339, 0, 0, 5.41667, -0.572575, -1.44665, 0.668413, 2.01922, 1.97138e-12, 0.623753, 7.57474, -7.57474, -0.456355, 2.99804, 7.57474, -1.26807, 2.4959, 2.43641e-12, -1.46079, -0.707741, -1.78815, -1.40559, -10.5728, -1.03223e-11, -1.03422, -1.78815, 1.78815, -1.5972}, {-1.44665, 1.44665, 0.51339, 0, 0, -1.80556, 1.71772, 4.33994, -2.00524, 2.01922, 1.97175e-12, 0.623753, 1.78815, -1.78815, 1.5972, 0.707741, 1.78815, 8.62781, 8.28248, -5.78659, -3.51435, -0.707741, -1.78815, -1.40559, -2.4959, -2.43721e-12, 1.46079, -9.86504, 1.78815, -4.09222}, {-1.44665, 1.44665, 0.51339, 0, 0, -1.80556, -0.572575, -1.44665, 0.668413, -6.05767, -5.91959e-12, -1.87126, 1.78815, -1.78815, 1.5972, 0.707741, 1.78815, 1.40559, 2.4959, 2.43865e-12, -1.46079, 5.07885, -7.57474, -3.45914, -2.4959, -2.43901e-12, 8.68301, 0.502145, 7.57474, -4.27086}, {5.36656, 5.36656, 5.36656, 0.373467, 0.373467, 3.64699, 1.41048e-15, 1.60567, -1.85169e-15, 1.41539, -0.190281, -1.85814, 0.255645, 0.255645, -16.8847, -0.461631, -2.44635, -4.50793, 2.21115, -6.19624, 2.21115, -5.19992, 3.20747, 11.9405, -2.21115, -0.226431, -2.21115, -1.74951, -1.74951, 2.29678}, {-1.78885, -1.78885, -1.78885, -1.1204, -1.1204, -10.941, 8.46287e-16, 1.60567, -1.11101e-15, 1.41539, -0.190281, -1.85814, 8.90493, 8.90493, 4.85864, -0.461631, -8.86902, -4.50793, 2.21115, 0.226431, 2.21115, 0.461631, 2.44635, 4.50793, -7.87269, 0.534693, 5.2214, -1.74951, -1.74951, 2.29678}, {-1.78885, -1.78885, -1.78885, 0.373467, 0.373467, 3.64699, 0, -4.817, 0, 1.41539, -0.190281, -1.85814, 1.74951, 1.74951, -2.29678, -1.9555, -3.94022, -19.0959, 9.36656, 7.38185, 9.36656, 0.461631, 2.44635, 4.50793, -2.21115, -0.226431, -2.21115, -7.41106, -0.988391, 9.72932}, {-1.78885, -1.78885, -1.78885, 0.373467, 0.373467, 3.64699, 2.82096e-16, 1.60567, -3.70338e-16, -4.24616, 0.570843, 5.57441, 1.74951, 1.74951, -2.29678, -0.461631, -2.44635, -4.50793, 2.21115, 0.226431, 2.21115, 7.61705, 9.60176, 11.6633, -3.70501, -1.7203, -16.7991, -1.74951, -8.17219, 2.29678}, {-4.24616, -4.24616, 5.57441, 3.15147, 2.92187e-16, 2.85327e-15, -1.78885, -1.78885, -1.78885, -2.778, 0.373467, 3.64699, -18.2508, -1.74951, 2.29678, -1.68428, 2.21115, 2.21115, 7.61705, 7.61705, 11.6633, 12.7963, -3.70501, -16.7991, -0.461631, -0.461631, -4.50793, 5.64494, 1.74951, -2.29678}, {1.41539, 1.41539, -1.85814, -9.45441, -5.07516e-15, -1.27584e-14, -1.78885, -1.78885, -1.78885, -2.778, 0.373467, 3.64699, -11.3065, -7.41106, 9.72932, 5.47113, 9.36656, 9.36656, 0.461631, 0.461631, 4.50793, 1.68428, -2.21115, -2.21115, 10.6504, -1.9555, -19.0959, 5.64494, 1.74951, -2.29678}, {1.41539, 1.41539, -1.85814, 3.15147, 0, 0, 5.36656, 5.36656, 5.36656, -2.778, 0.373467, 3.64699, -5.64494, -1.74951, 2.29678, -14.2902, 2.21115, 2.21115, -5.19992, -5.19992, 11.9405, 1.68428, -2.21115, -2.21115, -0.461631, -0.461631, -4.50793, 16.7569, 0.255645, -16.8847}, {1.41539, 1.41539, -1.85814, 3.15147, 2.92187e-16, 2.85327e-15, -1.78885, -1.78885, -1.78885, 8.334, -1.1204, -10.941, -5.64494, -1.74951, 2.29678, -1.68428, 2.21115, 2.21115, 0.461631, 0.461631, 4.50793, -3.97726, -7.87269, 5.2214, -13.0675, -0.461631, -4.50793, 12.8004, 8.90493, 4.85864}, {0.972456, 0.972456, -8.84811, 1.4362, 1.4362, 1.4362, -1.66806, -0.0623937, -1.66806, 0.556017, -1.04965, -2.71751, -7.11935, -7.11935, -11.1656, 0.286601, -1.69811, 0.286601, 9.13476, 0.727372, 5.08846, -2.51067, 5.89672, 10.5834, -2.46251, -0.477797, 1.58378, 1.37456, 1.37456, 5.42086}, {-0.324152, -0.324152, 2.94937, -4.30859, -4.30859, -4.30859, -1.66806, -0.0623937, -1.66806, 0.556017, -1.04965, -2.71751, -0.0779551, -0.0779551, -17.2183, 6.95885, -1.44854, 6.95885, 2.46251, 0.477797, -1.58378, -0.286601, 1.69811, -0.286601, -4.68658, 3.72081, 12.4538, 1.37456, 1.37456, 5.42086}, {-0.324152, -0.324152, 2.94937, 1.4362, 1.4362, 1.4362, 5.00419, 0.187181, 5.00419, 0.556017, -1.04965, -2.71751, -1.37456, -1.37456, -5.42086, -5.45818, -7.4429, -5.45818, 3.75912, 1.7744, -13.3813, -0.286601, 1.69811, -0.286601, -2.46251, -0.477797, 1.58378, -0.849506, 5.57317, 16.2909}, {-0.324152, -0.324152, 2.94937, 1.4362, 1.4362, 1.4362, -1.66806, -0.0623937, -1.66806, -1.66805, 3.14895, 8.15252, -1.37456, -1.37456, -5.42086, 0.286601, -1.69811, 0.286601, 2.46251, 0.477797, -1.58378, 1.01001, 2.99472, -12.0841, -8.2073, -6.22258, -4.161, 8.04681, 1.62414, 12.0931}, {3.33613, 3.33613, 13.1567, 1.4362, 1.4362, 1.4362, 0.767151, -2.38432, -2.38432, -1.0913, 2.06017, 5.33369, -6.14546, -6.14546, -2.09916, -2.72349, 1.17194, 1.17194, -2.64229, 13.859, 17.9053, 7.0887, -9.4126, -22.5067, -0.426311, -4.32174, -8.36804, 0.400674, 0.400674, -3.64562}, {-1.11204, -1.11204, -4.38557, -4.30859, -4.30859, -4.30859, 0.767151, -2.38432, -2.38432, -1.0913, 2.06017, 5.33369, 4.0475, 4.0475, 21.1879, -5.79209, 10.7092, 10.7092, 0.426311, 4.32174, 8.36804, 2.72349, -1.17194, -1.17194, 3.9389, -12.5624, -29.7028, 0.400674, 0.400674, -3.64562}, {-1.11204, -1.11204, -4.38557, 1.4362, 1.4362, 1.4362, -2.30145, 7.15295, 7.15295, -1.0913, 2.06017, 5.33369, -0.400674, -0.400674, 3.64562, -8.46827, -4.57284, -4.57284, 4.87449, 8.76992, 25.9103, 2.72349, -1.17194, -1.17194, -0.426311, -4.32174, -8.36804, 4.76589, -7.83999, -24.9804}, {-1.11204, -1.11204, -4.38557, 1.4362, 1.4362, 1.4362, 0.767151, -2.38432, -2.38432, 3.27391, -6.1805, -16.0011, -0.400674, -0.400674, 3.64562, -2.72349, 1.17194, 1.17194, 0.426311, 4.32174, 8.36804, 7.17167, 3.27624, 16.3703, -6.1711, -10.0665, -14.1128, -2.66793, 9.93794, 5.89165}, {-6.6428, 1.48026, 1.47837, 0.647646, 0.70771, -1.63632, -0.372676, 0.942791, 0.941589, -2.48924, -1.15708, 1.18752, -6.1281, -3.09572, 9.177, -0.339882, -2.04013, 0.858732, -0.785628, -4.32662, -4.3211, 10.2968, 6.66845, -5.60881, 2.27633, 0.555453, 0.554744, 3.53752, 0.264876, -2.63172}, {2.21427, -0.493421, -0.492791, -1.94294, -2.12313, 4.90895, -0.372676, 0.942791, 0.941589, -2.48924, -1.15708, 1.18752, -12.3946, 1.70881, 4.60289, 1.15082, -5.8113, -2.90762, -2.27633, -0.555453, -0.554744, 0.339882, 2.04013, -0.858732, 12.2333, 5.18378, -4.19534, 3.53752, 0.264876, -2.63172}, {2.21427, -0.493421, -0.492791, 0.647646, 0.70771, -1.63632, 1.11803, -2.82837, -2.82477, -2.48924, -1.15708, 1.18752, -3.53752, -0.264876, 2.63172, -2.93046, -4.87097, 7.404, -11.1334, 1.41823, 1.41642, 0.339882, 2.04013, -0.858732, 2.27633, 0.555453, 0.554744, 13.4945, 4.8932, -7.38181}, {2.21427, -0.493421, -0.492791, 0.647646, 0.70771, -1.63632, -0.372676, 0.942791, 0.941589, 7.46771, 3.47124, -3.56256, -3.53752, -0.264876, 2.63172, -0.339882, -2.04013, 0.858732, -2.27633, -0.555453, -0.554744, -8.51718, 4.01381, 1.11243, -0.314251, -2.27539, 7.10002, 5.02822, -3.50629, -6.39808}, {1.12186, -2.82659, -2.82659, -1.84098, -0.449088, -0.449088, 0.510215, -1.28552, 0.320147, 1.70472, 0.792411, -0.813257, 10.1017, 1.18683, 1.18683, 1.64492, 2.14409, 0.15938, -2.20929, 5.56645, -2.84093, -8.4638, -5.31374, 3.09365, 0.16843, -0.424371, 1.56034, -2.73781, 0.609518, 0.609518}, {-0.373952, 0.942198, 0.942198, 5.52295, 1.34726, 1.34726, 0.510215, -1.28552, 0.320147, 1.70472, 0.792411, -0.813257, 4.23362, -4.37831, -4.37831, -0.395942, 7.28618, -1.12121, -0.16843, 0.424371, -1.56034, -1.64492, -2.14409, -0.15938, -6.65045, -3.59401, 4.81337, -2.73781, 0.609518, 0.609518}, {-0.373952, 0.942198, 0.942198, -1.84098, -0.449088, -0.449088, -1.53064, 3.85656, -0.960441, 1.70472, 0.792411, -0.813257, 2.73781, -0.609518, -0.609518, 9.00885, 3.94045, 1.95573, 1.32738, -3.34442, -5.32914, -1.64492, -2.14409, -0.15938, 0.16843, -0.424371, 1.56034, -9.55669, -2.56013, 3.86255}, {-0.373952, 0.942198, 0.942198, -1.84098, -0.449088, -0.449088, 0.510215, -1.28552, 0.320147, -5.11416, -2.37723, 2.43977, 2.73781, -0.609518, -0.609518, 1.64492, 2.14409, 0.15938, -0.16843, 0.424371, -1.56034, -0.149109, -5.91289, -3.92817, 7.53236, 1.37198, 3.3567, -4.77867, 5.7516, -0.67107}, {0.461366, -4.35523, -1.72378, -0.132927, -0.133043, -2.07188, -0.954792, -0.955627, -0.378232, 1.24151, -0.363075, 1.87552, 0.886107, -1.09783, 10.1383, 1.34449, 1.34567, 3.0285, 5.18945, 3.20927, 1.27021, -6.31053, 0.10663, -10.5306, -1.37028, 0.613236, 0.242715, -0.3544, 1.63001, -1.85075}, {-0.153789, 1.45174, 0.574593, 0.39878, 0.399129, 6.21564, -0.954792, -0.955627, -0.378232, 1.24151, -0.363075, 1.87552, 0.969555, -7.43698, -0.447622, 5.16366, 5.16818, 4.54143, 1.37028, -0.613236, -0.242715, -1.34449, -1.34567, -3.0285, -6.33631, 2.06554, -7.25936, -0.3544, 1.63001, -1.85075}, {-0.153789, 1.45174, 0.574593, -0.132927, -0.133043, -2.07188, 2.86438, 2.86688, 1.1347, 1.24151, -0.363075, 1.87552, 0.3544, -1.63001, 1.85075, 1.8762, 1.87784, 11.316, 1.98544, -6.42021, -2.54109, -1.34449, -1.34567, -3.0285, -1.37028, 0.613236, 0.242715, -5.32043, 3.08231, -9.35282}, {-0.153789, 1.45174, 0.574593, -0.132927, -0.133043, -2.07188, -0.954792, -0.955627, -0.378232, -3.72452, 1.08923, -5.62656, 0.3544, -1.63001, 1.85075, 1.34449, 1.34567, 3.0285, 1.37028, -0.613236, -0.242715, -0.72934, -7.15265, -5.32687, -0.838575, 1.14541, 8.53023, 3.46477, 5.45251, -0.337821}, {4.44089e-16, 7.02938, 0, 1.54187, 1.54427, 0.609885, -1.74043, -1.74314, 1.3308, 0.198561, 2.542, -1.94068, -8.07331, -5.18964, -3.1934, 0.245434, 0.245817, -2.39881, 9.11299, 12.0235, -6.96814, -1.03968, -10.4138, 10.1615, -2.15129, -5.0509, 1.64495, 1.90585, -0.987441, 0.75386}, {3.05311e-16, -2.34313, -2.22045e-16, -4.6256, -4.63281, -1.82966, -1.74043, -1.74314, 1.3308, 0.198561, 2.542, -1.94068, -1.90585, 10.3599, -0.75386, 7.20714, 7.21837, -7.722, 2.15129, 5.0509, -1.64495, -0.245434, -0.245817, 2.39881, -2.94553, -15.2189, 9.40768, 1.90585, -0.987441, 0.75386}, {-3.60822e-16, -2.34313, -2.22045e-16, 1.54187, 1.54427, 0.609885, 5.22128, 5.22942, -3.99239, 0.198561, 2.542, -1.94068, -1.90585, 0.987441, -0.75386, -5.92203, -5.93126, -4.83836, 2.15129, 14.4234, -1.64495, -0.245434, -0.245817, 2.39881, -2.15129, -5.0509, 1.64495, 1.11161, -11.1554, 8.51658}, {-5.55112e-17, -2.34313, 0, 1.54187, 1.54427, 0.609885, -1.74043, -1.74314, 1.3308, -0.595682, -7.62599, 5.82204, -1.90585, 0.987441, -0.75386, 0.245434, 0.245817, -2.39881, 2.15129, 5.0509, -1.64495, -0.245434, 9.12668, 2.39881, -8.31875, -11.228, -0.794587, 8.86756, 5.98512, -4.56932}, {4.8128, 0, 0, 1.54178, 1.54312, 0.61076, 0.198549, 0.198723, -1.94057, -0.136059, -1.74185, 1.32981, -6.08986, -8.0799, -3.19798, -2.15116, -2.15304, 1.64373, 0.943366, -1.04052, 10.1609, 2.6954, 9.12042, -6.96297, -1.73756, 0.245635, -2.39867, -0.0772416, 1.90741, 0.754941}, {-1.60427, 0, 0, -4.62533, -4.62937, -1.83228, 0.198549, 0.198723, -1.94057, -0.136059, -1.74185, 1.32981, 6.49431, -1.90741, -0.754941, -2.94536, -2.94793, 9.40601, 1.73756, -0.245635, 2.39867, 2.15116, 2.15304, -1.64373, -1.19332, 7.21302, -7.71791, -0.0772416, 1.90741, 0.754941}, {-1.60427, 2.22045e-16, -2.22045e-16, 1.54178, 1.54312, 0.61076, -0.595647, -0.596168, 5.82171, -0.136059, -1.74185, 1.32981, 0.0772416, -1.90741, -0.754941, -8.31826, -8.32553, -0.799305, 8.15463, -0.245635, 2.39867, 2.15116, 2.15304, -1.64373, -1.73756, 0.245635, -2.39867, 0.466995, 8.87479, -4.5643}, {-1.60427, 0, -2.22045e-16, 1.54178, 1.54312, 0.61076, 0.198549, 0.198723, -1.94057, 0.408178, 5.22554, -3.98943, 0.0772416, -1.90741, -0.754941, -2.15116, -2.15304, 1.64373, 1.73756, -0.245635, 2.39867, 8.56822, 2.15304, -1.64373, -7.90467, -5.92686, -4.84171, -0.871438, 1.11252, 8.51722}, {4.91028, -4.91028, -4.91028, -1.57573, -1.57573, 1.57573, 1.57573, 1.57573, 1.57573, 1.63676, -1.63676, -4.78823, 10.2738, 6.2275, -10.2738, -3.02869e-13, -3.06644e-13, -3.89543, -6.2275, -10.2738, -10.2738, -6.54704, 6.54704, 23.0483, -0.0754334, 3.97086, 3.97086, -3.97086, 0.0754334, 3.97086}, {-1.63676, 1.63676, 1.63676, 4.7272, 4.7272, -4.7272, 1.57573, 1.57573, 1.57573, 1.63676, -1.63676, -4.78823, 10.5179, -6.62248, -10.5179, -6.30294, -6.30294, -10.1984, 0.0754334, -3.97086, -3.97086, 3.01943e-13, 3.04683e-13, 3.89543, -6.62248, 10.5179, 23.1238, -3.97086, 0.0754334, 3.97086}, {-1.63676, 1.63676, 1.63676, -1.57573, -1.57573, 1.57573, -4.7272, -4.7272, -4.7272, 1.63676, -1.63676, -4.78823, 3.97086, -0.0754334, -3.97086, 6.30294, 6.30294, -10.1984, 6.62248, -10.5179, -10.5179, 3.00389e-13, 2.99798e-13, 3.89543, -0.0754334, 3.97086, 3.97086, -10.5179, 6.62248, 23.1238}, {-1.63676, 1.63676, 1.63676, -1.57573, -1.57573, 1.57573, 1.57573, 1.57573, 1.57573, -4.91028, 4.91028, 14.3647, 3.97086, -0.0754334, -3.97086, -2.96652e-13, -3.00426e-13, -3.89543, 0.0754334, -3.97086, -3.97086, 6.54704, -6.54704, -2.65162, 6.2275, 10.2738, -2.33207, -10.2738, -6.2275, -2.33207}, {4.24616, -5.57441, -4.24616, 0, 0, 3.15147, 1.78885, 1.78885, -1.78885, -0.373467, -3.64699, -2.778, 1.74951, -2.29678, -18.2508, -2.21115, -2.21115, -1.68428, -7.61705, -11.6633, 7.61705, 3.70501, 16.7991, 12.7963, 0.461631, 4.50793, -0.461631, -1.74951, 2.29678, 5.64494}, {-1.41539, 1.85814, 1.41539, 5.07516e-15, 1.27584e-14, -9.45441, 1.78885, 1.78885, -1.78885, -0.373467, -3.64699, -2.778, 7.41106, -9.72932, -11.3065, -9.36656, -9.36656, 5.47113, -0.461631, -4.50793, 0.461631, 2.21115, 2.21115, 1.68428, 1.9555, 19.0959, 10.6504, -1.74951, 2.29678, 5.64494}, {-1.41539, 1.85814, 1.41539, 0, 0, 3.15147, -5.36656, -5.36656, 5.36656, -0.373467, -3.64699, -2.778, 1.74951, -2.29678, -5.64494, -2.21115, -2.21115, -14.2902, 5.19992, -11.9405, -5.19992, 2.21115, 2.21115, 1.68428, 0.461631, 4.50793, -0.461631, -0.255645, 16.8847, 16.7569}, {-1.41539, 1.85814, 1.41539, 0, 0, 3.15147, 1.78885, 1.78885, -1.78885, 1.1204, 10.941, 8.334, 1.74951, -2.29678, -5.64494, -2.21115, -2.21115, -1.68428, -0.461631, -4.50793, 0.461631, 7.87269, -5.2214, -3.97726, 0.461631, 4.50793, -13.0675, -8.90493, -4.85864, 12.8004}, {-5.36656, -5.36656, 5.36656, -0.373467, -3.64699, 0.373467, -1.60567, 0, 0, 0.190281, 1.85814, 1.41539, -0.255645, 16.8847, 0.255645, 2.44635, 4.50793, -0.461631, 6.19624, -2.21115, 2.21115, -3.20747, -11.9405, -5.19992, 0.226431, 2.21115, -2.21115, 1.74951, -2.29678, -1.74951}, {1.78885, 1.78885, -1.78885, 1.1204, 10.941, -1.1204, -1.60567, 0, 0, 0.190281, 1.85814, 1.41539, -8.90493, -4.85864, 8.90493, 8.86902, 4.50793, -0.461631, -0.226431, -2.21115, 2.21115, -2.44635, -4.50793, 0.461631, -0.534693, -5.2214, -7.87269, 1.74951, -2.29678, -1.74951}, {1.78885, 1.78885, -1.78885, -0.373467, -3.64699, 0.373467, 4.817, 0, 0, 0.190281, 1.85814, 1.41539, -1.74951, 2.29678, 1.74951, 3.94022, 19.0959, -1.9555, -7.38185, -9.36656, 9.36656, -2.44635, -4.50793, 0.461631, 0.226431, 2.21115, -2.21115, 0.988391, -9.72932, -7.41106}, {1.78885, 1.78885, -1.78885, -0.373467, -3.64699, 0.373467, -1.60567, 0, 0, -0.570843, -5.57441, -4.24616, -1.74951, 2.29678, 1.74951, 2.44635, 4.50793, -0.461631, -0.226431, -2.21115, 2.21115, -9.60176, -11.6633, 7.61705, 1.7203, 16.7991, -3.70501, 8.17219, -2.29678, -1.74951}, {-1.80799, -0.0150891, -4.77555, -0.827431, 1.45271, 0.471751, -0.860099, -1.45095, 0.0849431, 1.08487, -0.00678866, -2.14855, 3.58755, -7.6127, -4.43776, 2.0859, -0.00217419, -0.688112, 3.7586, 7.59105, -2.4124, -6.42536, 0.0293288, 9.28229, -0.318207, -1.78726, 2.07263, -0.277826, 1.80186, 2.55075}, {0.602665, 0.0050297, 1.59185, 2.48229, -4.35813, -1.41525, -0.860099, -1.45095, 0.0849431, 1.08487, -0.00678866, -2.14855, -2.13283, -1.82198, -8.91816, 5.5263, 5.80162, -1.02788, 0.318207, 1.78726, -2.07263, -2.0859, 0.00217419, 0.688112, -4.65767, -1.7601, 10.6668, -0.277826, 1.80186, 2.55075}, {0.602665, 0.0050297, 1.59185, -0.827431, 1.45271, 0.471751, 2.5803, 4.35285, -0.254829, 1.08487, -0.00678866, -2.14855, 0.277826, -1.80186, -2.55075, 5.39562, -5.81301, -2.57512, -2.09245, 1.76714, -8.44004, -2.0859, 0.00217419, 0.688112, -0.318207, -1.78726, 2.07263, -4.61729, 1.82902, 11.1449}, {0.602665, 0.0050297, 1.59185, -0.827431, 1.45271, 0.471751, -0.860099, -1.45095, 0.0849431, -3.2546, 0.020366, 6.44564, 0.277826, -1.80186, -2.55075, 2.0859, -0.00217419, -0.688112, 0.318207, 1.78726, -2.07263, -4.49656, -0.0179446, -5.67929, 2.99152, -7.59809, 0.185628, 3.16257, 7.60566, 2.21098}, {1.57878, 4.35912, 1.72866, 0.141226, 1.44665, -1.44665, 1.40644, -1.11582e-18, -3.53145e-16, -1.02141, 0.00639156, 2.02287, -0.0889792, -5.77869, 8.28699, -1.91302, -1.78815, 1.78815, -6.71372, 1.79605, 0.712247, 5.99864, 1.76259, -9.87962, 1.08796, -1.79605, -0.712247, -0.475926, -0.0079004, -2.5004}, {-0.526258, -1.45304, -0.57622, -0.423679, -4.33994, 4.33994, 1.40644, -3.34745e-18, -1.05944e-15, -1.02141, 0.00639156, 2.02287, 2.58096, 5.82005, 4.80528, -7.53877, -1.78815, 1.78815, -1.08796, 1.79605, 0.712247, 1.91302, 1.78815, -1.78815, 5.17359, -1.82162, -8.80371, -0.475926, -0.0079004, -2.5004}, {-0.526258, -1.45304, -0.57622, 0.141226, 1.44665, -1.44665, -4.21932, 0, 0, -1.02141, 0.00639156, 2.02287, 0.475926, 0.0079004, 2.5004, -2.47792, -7.57474, 7.57474, 1.01707, 7.60821, 3.01713, 1.91302, 1.78815, -1.78815, 1.08796, -1.79605, -0.712247, 3.6097, -0.0334666, -10.5919}, {-0.526258, -1.45304, -0.57622, 0.141226, 1.44665, -1.44665, 1.40644, 3.34745e-18, 1.05944e-15, 3.06422, -0.0191747, -6.0686, 0.475926, 0.0079004, 2.5004, -1.91302, -1.78815, 1.78815, -1.08796, 1.79605, 0.712247, 4.01805, 7.60031, 0.516725, 0.523057, -7.58264, 5.07434, -6.10168, -0.0079004, -2.5004}, {10.941, -1.1204, -1.1204, 1.78885, -1.78885, -1.78885, -3.70338e-16, -2.82096e-16, 1.60567, 1.85814, 1.41539, -0.190281, -4.85864, 8.90493, 8.90493, -2.21115, 2.21115, 0.226431, 4.50793, -0.461631, -8.86902, -5.2214, -7.87269, 0.534693, -4.50793, 0.461631, 2.44635, -2.29678, -1.74951, -1.74951}, {-3.64699, 0.373467, 0.373467, -5.36656, 5.36656, 5.36656, -1.11101e-15, -8.46287e-16, 1.60567, 1.85814, 1.41539, -0.190281, 16.8847, 0.255645, 0.255645, -2.21115, 2.21115, -6.19624, 4.50793, -0.461631, -2.44635, 2.21115, -2.21115, -0.226431, -11.9405, -5.19992, 3.20747, -2.29678, -1.74951, -1.74951}, {-3.64699, 0.373467, 0.373467, 1.78885, -1.78885, -1.78885, 0, 0, -4.817, 1.85814, 1.41539, -0.190281, 2.29678, 1.74951, 1.74951, -9.36656, 9.36656, 7.38185, 19.0959, -1.9555, -3.94022, 2.21115, -2.21115, -0.226431, -4.50793, 0.461631, 2.44635, -9.72932, -7.41106, -0.988391}, {-3.64699, 0.373467, 0.373467, 1.78885, -1.78885, -1.78885, 1.11101e-15, 8.46287e-16, 1.60567, -5.57441, -4.24616, 0.570843, 2.29678, 1.74951, 1.74951, -2.21115, 2.21115, 0.226431, 4.50793, -0.461631, -2.44635, 16.7991, -3.70501, -1.7203, -11.6633, 7.61705, 9.60176, -2.29678, -1.74951, -8.17219}, {-5.57441, -4.24616, -4.24616, 1.78885, -1.78885, -1.78885, 2.85327e-15, 3.15147, -2.92187e-16, -3.64699, -2.778, 0.373467, -11.6633, 7.61705, 7.61705, -2.21115, -1.68428, 2.21115, -2.29678, -18.2508, -1.74951, 16.7991, 12.7963, -3.70501, 2.29678, 5.64494, 1.74951, 4.50793, -0.461631, -0.461631}, {1.85814, 1.41539, 1.41539, -5.36656, 5.36656, 5.36656, -5.70654e-15, 3.15147, 5.84374e-16, -3.64699, -2.778, 0.373467, -11.9405, -5.19992, -5.19992, -2.21115, -14.2902, 2.21115, -2.29678, -5.64494, -1.74951, 2.21115, 1.68428, -2.21115, 16.8847, 16.7569, 0.255645, 4.50793, -0.461631, -0.461631}, {1.85814, 1.41539, 1.41539, 1.78885, -1.78885, -1.78885, 0, -9.45441, 0, -3.64699, -2.778, 0.373467, -4.50793, 0.461631, 0.461631, -9.36656, 5.47113, 9.36656, -9.72932, -11.3065, -7.41106, 2.21115, 1.68428, -2.21115, 2.29678, 5.64494, 1.74951, 19.0959, 10.6504, -1.9555}, {1.85814, 1.41539, 1.41539, 1.78885, -1.78885, -1.78885, -2.85327e-15, 3.15147, 2.92187e-16, 10.941, 8.334, -1.1204, -4.50793, 0.461631, 0.461631, -2.21115, -1.68428, 2.21115, -2.29678, -5.64494, -1.74951, -5.2214, -3.97726, -7.87269, -4.85864, 12.8004, 8.90493, 4.50793, -13.0675, -0.461631}, {0.184458, 9.63611, 9.63611, 0.802834, -0.802834, 0.802834, -1.57551, 1.57551, 1.57551, 0.834161, 2.43936, 0.833693, -4.12769, 8.17399, -0.233398, 0.955079, -0.955079, -2.93979, 8.32547, -4.27918, -4.27918, -4.29172, -8.80237, -0.394979, -2.02344, -2.02286, -2.02286, 0.916356, -4.96265, -2.97794}, {-0.0614861, -3.21204, -3.21204, -2.4085, 2.4085, -2.4085, -1.57551, 1.57551, 1.57551, 0.834161, 2.43936, 0.833693, -0.670412, 17.8108, 15.8261, 7.25711, -7.25711, -9.24183, 2.02344, 2.02286, 2.02286, -0.955079, 0.955079, 2.93979, -5.36008, -11.7803, -5.35763, 0.916356, -4.96265, -2.97794}, {-0.0614861, -3.21204, -3.21204, 0.802834, -0.802834, 0.802834, 4.72653, -4.72653, -4.72653, 0.834161, 2.43936, 0.833693, -0.916356, 4.96265, 2.97794, -2.25626, 2.25626, -6.15113, 2.26938, 14.871, 14.871, -0.955079, 0.955079, 2.93979, -2.02344, -2.02286, -2.02286, -2.42029, -14.7201, -6.31271}, {-0.0614861, -3.21204, -3.21204, 0.802834, -0.802834, 0.802834, -1.57551, 1.57551, 1.57551, -2.50248, -7.31808, -2.50108, -0.916356, 4.96265, 2.97794, 0.955079, -0.955079, -2.93979, 2.02344, 2.02286, 2.02286, -0.709135, 13.8032, 15.7879, -5.23477, 1.18848, -5.23419, 7.21839, -11.2647, -9.27997}, {4.72653, -4.72653, -4.72653, 1.637, 1.63653, 1.63653, 1.57573, 1.57573, -1.57573, -1.63722, -4.78777, -1.6363, -6.62398, -10.5164, -10.5164, -3.97115, -3.97057, -0.0751443, -6.30322, -10.1981, 6.30322, 10.52, 23.1217, 6.62035, 0.000278382, 3.89515, -0.000278382, 0.076001, 3.9703, 3.9703}, {-1.57551, 1.57551, 1.57551, -4.91099, -4.90958, -4.90958, 1.57573, 1.57573, -1.57573, -1.63722, -4.78777, -1.6363, 6.22604, -10.2723, -10.2723, -10.2741, -10.2735, 6.22779, -0.000278382, -3.89515, 0.000278382, 3.97115, 3.97057, 0.0751443, 6.54916, 23.0462, 6.54493, 0.076001, 3.9703, 3.9703}, {-1.57551, 1.57551, 1.57551, 1.637, 1.63653, 1.63653, -4.7272, -4.7272, 4.7272, -1.63722, -4.78777, -1.6363, -0.076001, -3.9703, -3.9703, -10.5191, -10.5167, -6.62125, 6.30176, -10.1972, -6.30176, 3.97115, 3.97057, 0.0751443, 0.000278382, 3.89515, -0.000278382, 6.62488, 23.1214, 10.5155}, {-1.57551, 1.57551, 1.57551, 1.637, 1.63653, 1.63653, 1.57573, 1.57573, -1.57573, 4.91166, 14.3633, 4.90891, -0.076001, -3.9703, -3.9703, -3.97115, -3.97057, -0.0751443, -0.000278382, -3.89515, 0.000278382, 10.2732, -2.33146, -6.22689, -6.5477, -2.65096, -6.54639, -6.22694, -2.33264, 10.2732}, {2.2538, -2.2568, -6.95596, 1.0326, -1.0322, -0.409331, 0.623613, 1.72184, 0.682817, -0.904944, -1.44191, -2.59214, -4.47814, 4.47482, -0.722725, -2.04719, -0.852443, -0.338046, -2.33666, -9.94553, -6.44129, 5.66697, 6.62007, 10.7066, -0.157789, 3.05817, 3.71002, 0.347745, -0.346017, 2.36005}, {-0.751267, 0.752267, 2.31865, -3.09779, 3.0966, 1.22799, 0.623613, 1.72184, 0.682817, -0.904944, -1.44191, -2.59214, 2.65732, -2.66305, -11.6347, -4.54164, -7.73981, -3.06931, 0.157789, -3.05817, -3.71002, 2.04719, 0.852443, 0.338046, 3.46199, 8.8258, 14.0786, 0.347745, -0.346017, 2.36005}, {-0.751267, 0.752267, 2.31865, 1.0326, -1.0322, -0.409331, -1.87084, -5.16552, -2.04845, -0.904944, -1.44191, -2.59214, -0.347745, 0.346017, -2.36005, -6.17758, 3.27636, 1.29928, 3.16286, -6.06723, -12.9846, 2.04719, 0.852443, 0.338046, -0.157789, 3.05817, 3.71002, 3.96752, 5.42161, 12.7286}, {-0.751267, 0.752267, 2.31865, 1.0326, -1.0322, -0.409331, 0.623613, 1.72184, 0.682817, 2.71483, 4.32572, 7.77641, -0.347745, 0.346017, -2.36005, -2.04719, -0.852443, -0.338046, 0.157789, -3.05817, -3.71002, 5.05226, -2.15663, -8.93656, -4.28818, 7.18697, 5.34735, -2.14671, -7.23338, -0.371216}, {4.6308, -4.62902, -1.83569, 1.74378, -1.74182, 1.32959, 2.34612, 3.47392e-16, -3.39235e-15, -2.5463, 0.198817, -1.94149, -7.22258, 7.21305, -7.71818, -5.0554, 2.15301, -1.64347, -10.3764, -1.90726, -0.756347, 15.2406, -2.94828, 9.40942, 0.991964, 1.90726, 0.756347, 0.24744, -0.245751, 2.39981}, {-1.5436, 1.54301, 0.611898, -5.23135, 5.22547, -3.98877, 2.34612, -2.31594e-16, 2.26157e-15, -2.5463, 0.198817, -1.94149, 5.92697, -5.92628, -4.8474, -14.4399, 2.15301, -1.64347, -0.991964, -1.90726, -0.756347, 5.0554, -2.15301, 1.64347, 11.1772, 1.11199, 8.5223, 0.24744, -0.245751, 2.39981}, {-1.5436, 1.54301, 0.611898, 1.74378, -1.74182, 1.32959, -7.03835, 0, 0, -2.5463, 0.198817, -1.94149, -0.24744, 0.245751, -2.39981, -12.0305, 9.12031, -6.96183, 5.18244, -8.07929, -3.20394, 5.0554, -2.15301, 1.64347, 0.991964, 1.90726, 0.756347, 10.4326, -1.04102, 10.1658}, {-1.5436, 1.54301, 0.611898, 1.74378, -1.74182, 1.32959, 2.34612, 1.15797e-16, -1.13078e-15, 7.6389, -0.59645, 5.82447, -0.24744, 0.245751, -2.39981, -5.0554, 2.15301, -1.64347, -0.991964, -1.90726, -0.756347, 11.2298, -8.32504, -0.804126, -5.98318, 8.87456, -4.56202, -9.13703, -0.245751, 2.39981}, {7.47016e-18, 3.62803, 8.88178e-16, -1.45582, 0.0794645, -1.44142, 1.45582, 0.249439, -0.577805, -1.62092e-12, 0.88044, 2.01922, 7.62276, 1.07875, 7.54736, -2.00373e-12, -0.406547, 2.4959, -7.62276, 0.188753, 3.02542, 8.48742e-12, -3.11521, -10.5728, 1.79949, -1.18651, -0.714206, -1.79949, -1.39661, -1.78169}, {-1.75097e-16, -1.20934, 0, 4.36745, -0.238394, 4.32425, 1.45582, 0.249439, -0.577805, -1.62031e-12, 0.88044, 2.01922, 1.79949, 6.23398, 1.78169, -5.82327, -1.4043, 4.80711, -1.79949, 1.18651, 0.714206, 2.00284e-12, 0.406547, -2.4959, 1.79949, -4.70827, -8.79109, -1.79949, -1.39661, -1.78169}, {-7.62205e-17, -1.20934, 0, -1.45582, 0.0794645, -1.44142, -4.36745, -0.748316, 1.73341, -1.61907e-12, 0.88044, 2.01922, 1.79949, 1.39661, 1.78169, 5.82327, -0.724405, 8.26156, -1.79949, 6.02388, 0.714206, 2.00151e-12, 0.406547, -2.4959, 1.79949, -1.18651, -0.714206, -1.79949, -4.91837, -9.85858}, {-1.9973e-16, -1.20934, 4.44089e-16, -1.45582, 0.0794645, -1.44142, 1.45582, 0.249439, -0.577805, 4.86018e-12, -2.64132, -6.05767, 1.79949, 1.39661, 1.78169, -2.00262e-12, -0.406547, 2.4959, -1.79949, 1.18651, 0.714206, 2.00364e-12, 5.24392, -2.4959, 7.62276, -1.50437, 5.05146, -7.62276, -2.39436, 0.529529}, {4.15997e-12, 1.3684, -5.1823, 1.45582, 0.310608, -0.437518, -1.45582, 0.975521, 0.61362, 1.52817e-12, -0.829997, -1.90353, -7.62276, -1.06255, 0.155649, 1.74971e-13, -1.58974, -0.217674, 7.62276, -4.54408, -5.34818, -6.28766e-12, 4.90973, 7.83181, -1.79949, 0.642, 2.8937, 1.79949, -0.179878, 1.59442}, {-1.3859e-12, -0.456132, 1.72743, -4.36745, -0.931824, 1.31255, -1.45582, 0.975521, 0.61362, 1.52713e-12, -0.829997, -1.90353, -1.79949, 2.00441, -8.50415, 5.82327, -5.49183, -2.67215, 1.79949, -0.642, -2.8937, -1.74749e-13, 1.58974, 0.217674, -1.79949, 3.96199, 10.5078, 1.79949, -0.179878, 1.59442}, {-1.38592e-12, -0.456132, 1.72743, 1.45582, 0.310608, -0.437518, 4.36745, -2.92656, -1.84086, 1.52736e-12, -0.829997, -1.90353, -1.79949, 0.179878, -1.59442, -5.82327, -2.83217, 1.5324, 1.79949, 1.18253, -9.80343, -1.74749e-13, 1.58974, 0.217674, -1.79949, 0.642, 2.8937, 1.79949, 3.14011, 9.20856}, {-1.38453e-12, -0.456132, 1.72743, 1.45582, 0.310608, -0.437518, -1.45582, 0.975521, 0.61362, -4.57858e-12, 2.48999, 5.7106, -1.79949, 0.179878, -1.59442, 1.75193e-13, -1.58974, -0.217674, 1.79949, -0.642, -2.8937, 5.36315e-12, 3.41427, -6.69206, -7.62276, -0.600431, 4.64377, 7.62276, -4.08196, -0.860057}, {3.89774, -2.39084, -3.90175, -1.08034, -0.824783, -1.26412, 1.27484, -0.81558, 1.06845, 1.10475, 0.843417, -1.10491, 7.26269, 3.33354, 5.01139, -0.240416, 2.0276, 0.241863, -5.06919, 3.28535, -7.20207, -4.17857, -5.40127, 4.17779, -0.0301684, -0.023032, 2.92828, -2.94133, -0.0344082, 0.0450763}, {-1.29925, 0.796947, 1.30058, 3.24102, 2.47435, 3.79235, 1.27484, -0.81558, 1.06845, 1.10475, 0.843417, -1.10491, 8.13832, -3.15338, -5.24742, -5.33978, 5.28992, -4.03192, 0.0301684, 0.023032, -2.92828, 0.240416, -2.0276, -0.241863, -4.44916, -3.3967, 7.34794, -2.94133, -0.0344082, 0.0450763}, {-1.29925, 0.796947, 1.30058, -1.08034, -0.824783, -1.26412, -3.82452, 2.44674, -3.20534, 1.10475, 0.843417, -1.10491, 2.94133, 0.0344082, -0.0450763, 4.08094, 5.32673, 5.29833, 5.22716, -3.16475, -8.13062, 0.240416, -2.0276, -0.241863, -0.0301684, -0.023032, 2.92828, -7.36032, -3.40808, 4.46473}, {-1.29925, 0.796947, 1.30058, -1.08034, -0.824783, -1.26412, 1.27484, -0.81558, 1.06845, -3.31424, -2.53025, 3.31474, 2.94133, 0.0344082, -0.0450763, -0.240416, 2.0276, 0.241863, 0.0301684, 0.023032, -2.92828, 5.43741, -5.21539, -5.4442, 4.29119, 3.2761, 7.98475, -8.04069, 3.22791, -4.22871}, {-7.02938, 0, 7.99361e-15, 0, 0, -2.34462, -1.02079e-11, 1.78885, 0.00114147, -2.34313, -1.78885, 2.34348, -2.89626, 0, 12.2766, 1.26176e-11, -2.21115, 2.8967, -2.89626, -9.36656, -0.00597681, 9.3725, 9.36656, -12.2706, 2.89626, 2.21115, 0.00141093, 2.89626, 0, -2.89811}, {2.34313, 0, 4.44089e-15, 0, 0, 7.03386, -1.02099e-11, 1.78885, 0.00114147, -2.34313, -1.78885, 2.34348, -12.2688, 0, 2.89811, 5.346e-11, -9.36656, 2.89213, -2.89626, -2.21115, -0.00141093, -1.26208e-11, 2.21115, -2.8967, 12.2688, 9.36656, -9.37251, 2.89626, 0, -2.89811}, {2.34313, -4.21885e-15, 2.22045e-15, 0, 0, -2.34462, 3.06361e-11, -5.36656, -0.00342441, -2.34313, -1.78885, 2.34348, -2.89626, 5.32907e-15, 2.89811, 1.26228e-11, -2.21115, 12.2752, -12.2688, -2.21115, -0.00141093, -1.26233e-11, 2.21115, -2.8967, 2.89626, 2.21115, 0.00141093, 12.2688, 7.15542, -12.272}, {2.34313, 3.10862e-15, -3.9968e-15, 0, 0, -2.34462, -1.0211e-11, 1.78885, 0.00114147, 7.02938, 5.36656, -7.03044, -2.89626, -3.55271e-15, 2.89811, 1.26215e-11, -2.21115, 2.8967, -2.89626, -2.21115, -0.00141093, -9.3725, 2.21115, -2.8967, 2.89626, 2.21115, 9.37989, 2.89626, -7.15542, -2.90268}, {-4.72653, 4.72653, 4.72653, -0.802949, -0.802719, 0.802949, -3.21204, 3.21204, -0.0614861, 2.43948, -0.833808, 0.834046, 2.25686, 6.15053, -2.25686, 4.96279, -2.97808, -0.916498, 14.871, -14.871, 2.26938, -14.7207, 6.31331, -2.41969, -2.02286, 2.02286, -2.02344, 0.954937, -2.93965, -0.954937}, {1.57551, -1.57551, -1.57551, 2.40885, 2.40816, -2.40885, -3.21204, 3.21204, -0.0614861, 2.43948, -0.833808, 0.834046, -7.25697, 9.24169, 7.25697, 17.8109, -15.8262, -0.670554, 2.02286, -2.02286, 2.02344, -4.96279, 2.97808, 0.916498, -11.7808, 5.35809, -5.35962, 0.954937, -2.93965, -0.954937}, {1.57551, -1.57551, -1.57551, -0.802949, -0.802719, 0.802949, 9.63611, -9.63611, 0.184458, 2.43948, -0.833808, 0.834046, -0.954937, 2.93965, 0.954937, 8.17459, 0.232798, -4.12829, -4.27918, 4.27918, 8.32547, -4.96279, 2.97808, 0.916498, -2.02286, 2.02286, -2.02344, -8.80297, 0.39558, -4.29112}, {1.57551, -1.57551, -1.57551, -0.802949, -0.802719, 0.802949, -3.21204, 3.21204, -0.0614861, -7.31843, 2.50142, -2.50214, -0.954937, 2.93965, 0.954937, 4.96279, -2.97808, -0.916498, 2.02286, -2.02286, 2.02344, -11.2648, 9.28012, 7.21853, 1.18894, 5.23374, -5.23523, 13.8031, -15.7878, -0.708993}, {-4.72653, 4.72653, 4.72653, 1.57596, 1.57551, 1.57551, 1.63653, -1.63653, 1.637, -4.788, 1.63653, -1.637, -10.1993, -6.30204, -6.30204, -3.97085, 0.0754226, -3.97087, -10.5164, 10.5164, -6.62398, 23.1228, -6.62153, 10.5189, 3.9703, -3.9703, 0.076001, 3.89543, -1.81144e-12, -1.80922e-12}, {1.57551, -1.57551, -1.57551, -4.72788, -4.72653, -4.72653, 1.63653, -1.63653, 1.637, -4.788, 1.63653, -1.637, -10.1975, 6.30204, 6.30204, -10.517, 6.62153, -10.5189, -3.9703, 3.9703, -0.076001, 3.97085, -0.0754226, 3.97087, 23.1223, -10.5164, 6.62398, 3.89543, -1.81766e-12, -1.81499e-12}, {1.57551, -1.57551, -1.57551, 1.57596, 1.57551, 1.57551, -4.90958, 4.90958, -4.91099, -4.788, 1.63653, -1.637, -3.89543, 1.81677e-12, 1.81988e-12, -10.2747, -6.22661, -10.2729, -10.2723, 10.2723, 6.22604, 3.97085, -0.0754226, 3.97087, 3.9703, -3.9703, 0.076001, 23.0474, -6.54611, 6.54798}, {1.57551, -1.57551, -1.57551, 1.57596, 1.57551, 1.57551, 1.63653, -1.63653, 1.637, 14.364, -4.90958, 4.91099, -3.89543, 1.81632e-12, 1.81677e-12, -3.97085, 0.0754226, -3.97087, -3.9703, 3.9703, -0.076001, -2.33118, 6.22661, 10.2729, -2.33354, -10.2723, -6.22604, -2.65068, 6.54611, -6.54798}, {-1.1204, 1.1204, 10.941, 0, -1.60567, 0, -1.78885, 1.78885, 1.78885, 1.41539, 0.190281, 1.85814, -0.461631, 8.86902, 4.50793, 2.21115, -0.226431, -2.21115, 8.90493, -8.90493, -4.85864, -7.87269, -0.534693, -5.2214, -1.74951, 1.74951, -2.29678, 0.461631, -2.44635, -4.50793}, {0.373467, -0.373467, -3.64699, 0, 4.817, 0, -1.78885, 1.78885, 1.78885, 1.41539, 0.190281, 1.85814, -1.9555, 3.94022, 19.0959, 9.36656, -7.38185, -9.36656, 1.74951, -1.74951, 2.29678, -2.21115, 0.226431, 2.21115, -7.41106, 0.988391, -9.72932, 0.461631, -2.44635, -4.50793}, {0.373467, -0.373467, -3.64699, 0, -1.60567, 0, 5.36656, -5.36656, -5.36656, 1.41539, 0.190281, 1.85814, -0.461631, 2.44635, 4.50793, 2.21115, 6.19624, -2.21115, 0.255645, -0.255645, 16.8847, -2.21115, 0.226431, 2.21115, -1.74951, 1.74951, -2.29678, -5.19992, -3.20747, -11.9405}, {0.373467, -0.373467, -3.64699, 0, -1.60567, 0, -1.78885, 1.78885, 1.78885, -4.24616, -0.570843, -5.57441, -0.461631, 2.44635, 4.50793, 2.21115, -0.226431, -2.21115, 1.74951, -1.74951, 2.29678, -3.70501, 1.7203, 16.7991, -1.74951, 8.17219, -2.29678, 7.61705, -9.60176, -11.6633}, {-9.45441, 1.33227e-15, 1.59872e-14, -1.78885, 1.78885, 1.78885, 1.41539, -1.41539, 1.85814, -2.778, -0.373467, -3.64699, 5.47113, -9.36656, -9.36656, 0.461631, -0.461631, -4.50793, -11.3065, 7.41106, -9.72932, 10.6504, 1.9555, 19.0959, 5.64494, -1.74951, 2.29678, 1.68428, 2.21115, 2.21115}, {3.15147, -1.88738e-15, -7.10543e-15, 5.36656, -5.36656, -5.36656, 1.41539, -1.41539, 1.85814, -2.778, -0.373467, -3.64699, -14.2902, -2.21115, -2.21115, -5.19992, 5.19992, -11.9405, -5.64494, 1.74951, -2.29678, -0.461631, 0.461631, 4.50793, 16.7569, -0.255645, 16.8847, 1.68428, 2.21115, 2.21115}, {3.15147, 2.55351e-15, -3.10862e-15, -1.78885, 1.78885, 1.78885, -4.24616, 4.24616, -5.57441, -2.778, -0.373467, -3.64699, -1.68428, -2.21115, -2.21115, 7.61705, -7.61705, -11.6633, -18.2508, 1.74951, -2.29678, -0.461631, 0.461631, 4.50793, 5.64494, -1.74951, 2.29678, 12.7963, 3.70501, 16.7991}, {3.15147, 6.10623e-16, 3.9968e-15, -1.78885, 1.78885, 1.78885, 1.41539, -1.41539, 1.85814, 8.334, 1.1204, 10.941, -1.68428, -2.21115, -2.21115, 0.461631, -0.461631, -4.50793, -5.64494, 1.74951, -2.29678, -13.0675, 0.461631, 4.50793, 12.8004, -8.90493, -4.85864, -3.97726, 7.87269, -5.2214}, {0.889469, 0.890856, -5.70584, -0.741046, -0.742202, -0.293121, 1.30296, -1.03813, 0.515387, -0.265426, 2.07729, -2.12421, 4.24665, 4.25327, -0.816132, -0.694566, 2.20061, -0.274736, -6.45592, 5.80278, -5.04953, 1.75627, -10.5098, 8.77158, 1.24407, -1.65026, 2.98799, -1.28247, -1.28446, 1.98862}, {-0.29649, -0.296952, 1.90195, 2.22314, 2.2266, 0.879363, 1.30296, -1.03813, 0.515387, -0.265426, 2.07729, -2.12421, 2.46842, 2.47227, -9.5964, -5.90641, 6.35314, -2.33628, -1.24407, 1.65026, -2.98799, 0.694566, -2.20061, 0.274736, 2.30577, -9.9594, 11.4848, -1.28247, -1.28446, 1.98862}, {-0.29649, -0.296952, 1.90195, -0.741046, -0.742202, -0.293121, -3.90889, 3.1144, -1.54616, -0.265426, 2.07729, -2.12421, 1.28247, 1.28446, -1.98862, 2.26962, 5.16942, 0.897749, -0.0581089, 2.83806, -10.5958, 0.694566, -2.20061, 0.274736, 1.24407, -1.65026, 2.98799, -0.220762, -9.59361, 10.4855}, {-0.29649, -0.296952, 1.90195, -0.741046, -0.742202, -0.293121, 1.30296, -1.03813, 0.515387, 0.796277, -6.23186, 6.37263, 1.28247, 1.28446, -1.98862, -0.694566, 2.20061, -0.274736, -1.24407, 1.65026, -2.98799, 1.88052, -1.01281, -7.33305, 4.20825, 1.31855, 4.16047, -6.49431, 2.86807, -0.0729313}, {1.60243, -4.68893, 4.44089e-16, 1.23856, -0.534131, 1.50236e-16, -0.868329, 0.25394, -1.31177, 0.163908, -1.28279, 1.31177, -5.82496, 0.864798, -6.66134e-16, -0.457635, 0.346335, 1.62143, 5.20686, -3.26159, 6.86849, -0.197999, 4.78481, -6.86849, -1.73355, 2.24583, -1.62143, 0.870711, 1.27173, 0}, {-0.534143, 1.56298, -2.22045e-16, -3.71569, 1.60239, -6.76061e-16, -0.868329, 0.25394, -1.31177, 0.163908, -1.28279, 1.31177, 1.26586, -7.52364, 8.88178e-16, 3.01568, -0.669425, 6.86849, 1.73355, -2.24583, 1.62143, 0.457635, -0.346335, -1.62143, -2.38918, 7.37698, -6.86849, 0.870711, 1.27173, 0}, {-0.534143, 1.56298, 2.22045e-16, 1.23856, -0.534131, -3.00472e-16, 2.60499, -0.76182, 3.9353, 0.163908, -1.28279, 1.31177, -0.870711, -1.27173, 0, -5.41189, 2.48286, 1.62143, 3.87012, -8.49775, 1.62143, 0.457635, -0.346335, -1.62143, -1.73355, 2.24583, -1.62143, 0.215077, 6.40287, -5.24706}, {-0.534143, 1.56298, 0, 1.23856, -0.534131, 4.50708e-16, -0.868329, 0.25394, -1.31177, -0.491725, 3.84836, -3.9353, -0.870711, -1.27173, -4.44089e-16, -0.457635, 0.346335, 1.62143, 1.73355, -2.24583, 1.62143, 2.59421, -6.59825, -1.62143, -6.6878, 4.38236, -1.62143, 4.34403, 0.255965, 5.24706}, {3.16808, 2.71157e-16, -8.88178e-16, -0.300269, 1.44665, -1.44665, 0.153249, -1.44665, -0.572575, 1.20305, -1.58738e-12, 2.01922, 2.87755, -7.57474, 7.57474, 0.181727, -1.96199e-12, 2.4959, 0.502898, 7.57474, 2.99804, -4.99391, 8.31151e-12, -10.5728, -1.11589, -1.78815, -0.707741, -1.67647, 1.78815, -1.78815}, {-1.05603, 1.56152e-17, 0, 0.900808, -4.33994, 4.33994, 0.153249, -1.44665, -0.572575, 1.20305, -1.58652e-12, 2.01922, 5.90057, -1.78815, 1.78815, -0.431268, 5.78659, 4.7862, 1.11589, 1.78815, 0.707741, -0.181727, 1.9611e-12, -2.4959, -5.92808, -1.78815, -8.78463, -1.67647, 1.78815, -1.78815}, {-1.05603, -4.03605e-17, 0, -0.300269, 1.44665, -1.44665, -0.459746, 4.33994, 1.71772, 1.20305, -1.58802e-12, 2.01922, 1.67647, -1.78815, 1.78815, 1.3828, -5.78659, 8.28248, 5.34, 1.78815, 0.707741, -0.181727, 1.96287e-12, -2.4959, -1.11589, -1.78815, -0.707741, -6.48866, 1.78815, -9.86504}, {-1.05603, -1.63709e-17, 4.44089e-16, -0.300269, 1.44665, -1.44665, 0.153249, -1.44665, -0.572575, -3.60914, 4.76214e-12, -6.05767, 1.67647, -1.78815, 1.78815, 0.181727, -1.96221e-12, 2.4959, 1.11589, 1.78815, 0.707741, 4.04237, 1.96294e-12, -2.4959, 0.0851836, -7.57474, 5.07885, -2.28947, 7.57474, 0.502145}, {-1.48316, 4.33994, 1.33227e-15, 0.561638, 1.44665, 4.17162e-16, -0.27448, -1.03171e-12, 1.31177, -0.781545, 1.03171e-12, -1.31177, -3.55187, -5.78659, -1.77636e-15, -0.354947, -1.78815, -1.62143, 0.8261, 1.78815, -6.86849, 3.48113, 1.78815, 6.86849, 0.27182, -1.78815, 1.62143, 1.30532, 0, 0}, {0.494387, -1.44665, 2.22045e-16, -1.68492, -4.33994, 8.34324e-16, -0.27448, -1.03124e-12, 1.31177, -0.781545, 1.03124e-12, -1.31177, -3.28287, 5.78659, -8.88178e-16, 0.742973, -1.78815, -6.86849, -0.27182, 1.78815, -1.62143, 0.354947, 1.78815, 1.62143, 3.398, -1.78815, 6.86849, 1.30532, 0, 0}, {0.494387, -1.44665, -2.22045e-16, 0.561638, 1.44665, 2.78108e-16, 0.82344, 3.09443e-12, -3.9353, -0.781545, 1.03148e-12, -1.31177, -1.30532, 3.59135e-16, 0, -2.6015, -7.57474, -1.62143, -2.24937, 7.57474, -1.62143, 0.354947, 1.78815, 1.62143, 0.27182, -1.78815, 1.62143, 4.4315, -4.1259e-12, 5.24706}, {0.494387, -1.44665, 2.22045e-16, 0.561638, 1.44665, -2.78108e-16, -0.27448, -1.03171e-12, 1.31177, 2.34464, -3.09513e-12, 3.9353, -1.30532, 3.59135e-16, 0, -0.354947, -1.78815, -1.62143, -0.27182, 1.78815, -1.62143, -1.6226, 7.57474, 1.62143, -1.97473, -7.57474, 1.62143, 2.40324, 4.12684e-12, -5.24706}, {4.33994, 0.162335, 4.33994, 0, 1.38248, 0, 1.44665, 0.246581, -0.572575, -1.76997e-12, -1.57494, 2.01922, 1.78815, -7.17185, 1.78815, -1.78815, -2.01362, 0.707741, -5.78659, -1.22423, 4.7862, 1.78815, 8.3134, -8.78463, 2.1878e-12, 0.237905, -2.4959, -1.78815, 1.64195, -1.78815}, {-1.44665, -0.0541117, -1.44665, -1.48949e-15, -4.14743, -5.64752e-15, 1.44665, 0.246581, -0.572575, -1.77017e-12, -1.57494, 2.01922, 7.57474, -1.4255, 7.57474, -7.57474, -2.99995, 2.99804, -2.18708e-12, -0.237905, 2.4959, 1.78815, 2.01362, -0.707741, 9.26812e-12, 6.53768, -10.5728, -1.78815, 1.64195, -1.78815}, {-1.44665, -0.0541117, -1.44665, -2.42885e-27, 1.38248, 2.77202e-15, -4.33994, -0.739742, 1.71772, -1.76924e-12, -1.57494, 2.01922, 1.78815, -1.64195, 1.78815, -1.78815, -7.54353, 0.707741, 5.78659, -0.021458, 8.28248, 1.78815, 2.01362, -0.707741, 2.1869e-12, 0.237905, -2.4959, -1.78815, 7.94173, -9.86504}, {-1.44665, -0.0541117, -1.44665, 0, 1.38248, 0, 1.44665, 0.246581, -0.572575, 5.31045e-12, 4.72483, -6.05767, 1.78815, -1.64195, 1.78815, -1.78815, -2.01362, 0.707741, -2.18766e-12, -0.237905, 2.4959, 7.57474, 2.23007, 5.07885, 2.18802e-12, -5.292, -2.4959, -7.57474, 0.655625, 0.502145}, {-4.33994, 1.02197, -0.540949, -9.62561e-13, 0.52571, 1.09845, -1.44665, -1.05053, -0.169142, 9.72352e-13, 0.86548, -1.10962, -1.78815, -2.33158, -5.97445, 1.78815, 0.648718, -1.14869, 5.78659, 5.92175, 0.662758, -1.78815, -4.11064, 5.58719, -1.2103e-14, -1.71961, 0.0138116, 1.78815, 0.22874, 1.58064}, {1.44665, -0.340656, 0.180316, 2.88884e-12, -1.57713, -3.29535, -1.44665, -1.05053, -0.169142, 9.72241e-13, 0.86548, -1.10962, -7.57474, 1.13389, -2.30191, 7.57474, 4.85086, -0.472119, 1.11288e-14, 1.71961, -0.0138116, -1.78815, -0.648718, 1.14869, -3.90045e-12, -5.18153, 4.45231, 1.78815, 0.22874, 1.58064}, {1.44665, -0.340656, 0.180316, -9.63744e-13, 0.52571, 1.09845, 4.33994, 3.1516, 0.507427, 9.73548e-13, 0.86548, -1.10962, -1.78815, -0.22874, -1.58064, 1.78815, -1.45412, -5.54249, -5.78659, 3.08223, -0.735077, -1.78815, -0.648718, 1.14869, -1.21179e-14, -1.71961, 0.0138116, 1.78815, -3.23318, 6.01914}, {1.44665, -0.340656, 0.180316, -9.6335e-13, 0.52571, 1.09845, -1.44665, -1.05053, -0.169142, -2.91945e-12, -2.59644, 3.32887, -1.78815, -0.22874, -1.58064, 1.78815, 0.648718, -1.14869, 1.17538e-14, 1.71961, -0.0138116, -7.57474, 0.713906, 0.427423, 3.84129e-12, -3.82245, -4.37999, 7.57474, 4.43088, 2.25721}, {-4.74899, 4.74899, 3.61742, 0.497745, -0.497745, 2.77232, -2.29648, -0.854984, 1.74929, 0.215741, 2.93573, -3.3158, -4.56292, 4.56292, -13.0256, 2.22336, 1.67207, -5.58902, 10.0679, 6.43345, -7.66893, -3.08633, -13.415, 18.8522, -0.881918, -3.01351, 0.671778, 2.57194, -2.57194, 1.93632}, {1.583, -1.583, -1.20581, -1.49324, 1.49324, -8.31697, -2.29648, -0.854984, 1.74929, 0.215741, 2.93573, -3.3158, -8.90393, 8.90393, 2.88691, 11.4093, 5.092, -12.5862, 0.881918, 3.01351, -0.671778, -2.22336, -1.67207, 5.58902, -1.74488, -14.7564, 13.935, 2.57194, -2.57194, 1.93632}, {1.583, -1.583, -1.20581, 0.497745, -0.497745, 2.77232, 6.88945, 2.56495, -5.24786, 0.215741, 2.93573, -3.3158, -2.57194, 2.57194, -1.93632, 0.232383, 3.66305, -16.6783, -5.45007, 9.3455, 4.15145, -2.22336, -1.67207, 5.58902, -0.881918, -3.01351, 0.671778, 1.70898, -14.3148, 15.1995}, {1.583, -1.583, -1.20581, 0.497745, -0.497745, 2.77232, -2.29648, -0.854984, 1.74929, -0.647223, -8.80718, 9.94741, -2.57194, 2.57194, -1.93632, 2.22336, 1.67207, -5.58902, 0.881918, 3.01351, -0.671778, -8.55536, 4.65993, 10.4123, -2.8729, -1.02253, -10.4175, 11.7579, 0.847997, -5.06083}, {6.34574, -4.8337, 3.10867, 0.725317, 2.59898, -0.725317, 1.60925, -1.2258, -1.60925, -0.219319, -2.98441, 3.37079, -1.18322, -15.6, 5.07865, -2.88568, -1.69734, 2.88568, -5.81154, 4.42679, 9.70697, 3.76295, 13.635, -16.3688, -0.625449, 0.47642, -3.26998, -1.71805, 5.20411, -2.17738}, {-2.11525, 1.61123, -1.03622, -2.17595, -7.79693, 2.17595, 1.60925, -1.2258, -1.60925, -0.219319, -2.98441, 3.37079, 10.179, -11.649, 6.32227, -9.32267, 3.20588, 9.32267, 0.625449, -0.47642, 3.26998, 2.88568, 1.69734, -2.88568, 0.251825, 12.4141, -16.7531, -1.71805, 5.20411, -2.17738}, {-2.11525, 1.61123, -1.03622, 0.725317, 2.59898, -0.725317, -4.82774, 3.67741, 4.82774, -0.219319, -2.98441, 3.37079, 1.71805, -5.20411, 2.17738, -5.78695, -12.0932, 5.78695, 9.08643, -6.92136, 7.41487, 2.88568, 1.69734, -2.88568, -0.625449, 0.47642, -3.26998, -0.840773, 17.1417, -15.6605}, {-2.11525, 1.61123, -1.03622, 0.725317, 2.59898, -0.725317, 1.60925, -1.2258, -1.60925, 0.657956, 8.95322, -10.1124, 1.71805, -5.20411, 2.17738, -2.88568, -1.69734, 2.88568, 0.625449, -0.47642, 3.26998, 11.3467, -4.7476, 1.25921, -3.52672, -9.91949, -0.36871, -8.15504, 10.1073, 4.25961}, {-5.36656, 5.36656, -5.36656, -1.78885, 1.78885, 1.36261, 0, -3.15147, 0, 0, 3.15147, -3.15147, 7.15542, -7.15542, -9.34589, 2.21115, 1.68428, -1.68428, -2.21115, 18.7124, -2.21115, -2.21115, -14.2902, 14.2902, 2.21115, -6.10657, 2.21115, 0, 3.63087e-12, 3.89543}, {1.78885, -1.78885, 1.78885, 5.36656, -5.36656, -4.08784, 0, -3.15147, 0, 0, 3.15147, -3.15147, -7.15542, 7.15542, -11.0508, 2.21115, 14.2902, -1.68428, -2.21115, 6.10657, -2.21115, -2.21115, -1.68428, 1.68428, 2.21115, -18.7124, 14.817, 0, 3.63087e-12, 3.89543}, {1.78885, -1.78885, 1.78885, -1.78885, 1.78885, 1.36261, 0, 9.45441, 0, 0, 3.15147, -3.15147, -4.44089e-16, -3.63354e-12, -3.89543, 9.36656, -5.47113, -7.13474, -9.36656, 13.262, -9.36656, -2.21115, -1.68428, 1.68428, 2.21115, -6.10657, 2.21115, 0, -12.6059, 16.5013}, {1.78885, -1.78885, 1.78885, -1.78885, 1.78885, 1.36261, 0, -3.15147, 0, 0, -9.45441, 9.45441, -4.44089e-16, -3.62865e-12, -3.89543, 2.21115, 1.68428, -1.68428, -2.21115, 6.10657, -2.21115, -9.36656, 5.47113, -5.47113, 9.36656, -13.262, -3.23931, 0, 12.6059, 3.89543}, {0, -1.77636e-15, 9.45441, -1.78885, 1.36261, 1.78885, 1.78885, 1.78885, -1.78885, 0, -3.15147, 3.15147, 9.36656, -7.13474, -5.47113, 0, -3.89543, -3.6291e-12, -9.36656, -9.36656, 13.262, 0, 16.5013, -12.6059, 2.21115, 2.21115, -6.10657, -2.21115, 1.68428, -1.68428}, {3.08199e-16, 0, -3.15147, 5.36656, -4.08784, -5.36656, 1.78885, 1.78885, -1.78885, -3.08199e-16, -3.15147, 3.15147, 2.21115, -1.68428, 14.2902, -7.15542, -11.0508, 7.15542, -2.21115, -2.21115, 6.10657, -7.65114e-32, 3.89543, 3.62544e-12, 2.21115, 14.817, -18.7124, -2.21115, 1.68428, -1.68428}, {-3.08199e-16, 8.88178e-16, -3.15147, -1.78885, 1.36261, 1.78885, -5.36656, -5.36656, 5.36656, 3.08199e-16, -3.15147, 3.15147, 2.21115, -1.68428, 1.68428, 7.15542, -9.34589, -7.15542, -2.21115, -2.21115, 18.7124, 7.65114e-32, 3.89543, 3.62633e-12, 2.21115, 2.21115, -6.10657, -2.21115, 14.2902, -14.2902}, {-3.08199e-16, 0, -3.15147, -1.78885, 1.36261, 1.78885, 1.78885, 1.78885, -1.78885, -9.24597e-16, 9.45441, -9.45441, 2.21115, -1.68428, 1.68428, 0, -3.89543, -3.62776e-12, -2.21115, -2.21115, 6.10657, 1.2328e-15, 3.89543, 12.6059, 9.36656, -3.23931, -13.262, -9.36656, -5.47113, 5.47113}, {1.6947, 4.26991, -0.547096, 2.00519, -0.0353642, -0.0353642, 0.45376, 1.14328, 1.14328, -1.89405, 0.315388, -1.29028, -9.80104, 1.94447, -0.0402465, -3.03942, -1.36946, -1.36946, -1.67766, -4.22699, -6.2117, 10.6156, 0.107907, 6.53058, -0.137376, -0.346128, 1.63859, 1.78029, -1.80301, 0.181703}, {-0.5649, -1.4233, 0.182365, -6.01556, 0.106093, 0.106093, 0.45376, 1.14328, 1.14328, -1.89405, 0.315388, -1.29028, 0.479306, 7.49622, -0.911165, -4.85446, -5.94257, -5.94257, 0.137376, 0.346128, -1.63859, 3.03942, 1.36946, 1.36946, 7.43881, -1.60768, 6.79971, 1.78029, -1.80301, 0.181703}, {-0.5649, -1.4233, 0.182365, 2.00519, -0.0353642, -0.0353642, -1.36128, -3.42984, -3.42984, -1.89405, 0.315388, -1.29028, -1.78029, 1.80301, -0.181703, -11.0602, -1.228, -1.228, 2.39697, 6.03934, -2.36805, 3.03942, 1.36946, 1.36946, -0.137376, -0.346128, 1.63859, 9.35648, -3.06456, 5.34282}, {-0.5649, -1.4233, 0.182365, 2.00519, -0.0353642, -0.0353642, 0.45376, 1.14328, 1.14328, 5.68214, -0.946164, 3.87084, -1.78029, 1.80301, -0.181703, -3.03942, -1.36946, -1.36946, 0.137376, 0.346128, -1.63859, 5.29902, 7.06267, 0.639997, -8.15812, -0.204671, 1.78004, -0.0347482, -6.37613, -4.39141}, {-1.35612, -3.4307, -3.42632, -0.759405, 0.424983, -1.91868, -2.45728, -1.10819, -1.10678, 2.76464, -0.460356, 1.88336, 3.41754, -3.63876, 8.63464, 3.97604, 0.844494, 3.73968, 12.3077, 4.38905, 4.38345, -15.0346, 0.996929, -11.2731, -2.47861, 0.0437235, 0.0436678, -0.379924, 1.93883, -0.959903}, {0.45204, 1.14357, 1.14211, 2.27821, -1.27495, 5.75605, -2.45728, -1.10819, -1.10678, 2.76464, -0.460356, 1.88336, -1.42823, -6.51309, -3.60853, 13.8052, 5.27726, 8.1668, 2.47861, -0.0437235, -0.0436678, -3.97604, -0.844494, -3.73968, -13.5372, 1.88515, -7.48976, -0.379924, 1.93883, -0.959903}, {0.45204, 1.14357, 1.14211, -0.759405, 0.424983, -1.91868, 7.37184, 3.32458, 3.32034, 2.76464, -0.460356, 1.88336, 0.379924, -1.93883, 0.959903, 7.01366, -0.855437, 11.4144, 0.670454, -4.61799, -4.6121, -3.97604, -0.844494, -3.73968, -2.47861, 0.0437235, 0.0436678, -11.4385, 3.78026, -8.49333}, {0.45204, 1.14357, 1.14211, -0.759405, 0.424983, -1.91868, -2.45728, -1.10819, -1.10678, -8.29393, 1.38107, -5.65007, 0.379924, -1.93883, 0.959903, 3.97604, 0.844494, 3.73968, 2.47861, -0.0437235, -0.0436678, -5.7842, -5.41876, -8.30811, 0.559007, -1.65621, 7.71841, 9.44919, 6.3716, 3.46721}, {-2.4085, -2.4085, 2.4085, 1.63676, -1.63676, 1.63676, -0.802834, -0.802834, -0.802834, -1.63676, 1.63676, -0.0310931, -9.56255, 7.57784, -7.57784, -1.03079, 3.01551, -1.03079, 3.21134, 3.21134, 5.19605, 7.57784, -9.56255, 1.15516, 3.73035e-14, 3.64153e-14, -1.98471, 3.01551, -1.03079, 1.03079}, {0.802834, 0.802834, -0.802834, -4.91028, 4.91028, -4.91028, -0.802834, -0.802834, -0.802834, -1.63676, 1.63676, -0.0310931, -6.22684, -2.18055, 2.18055, 2.18055, 6.22684, 2.18055, -3.73035e-14, -3.68594e-14, 1.98471, 1.03079, -3.01551, 1.03079, 6.54704, -6.54704, -1.86034, 3.01551, -1.03079, 1.03079}, {0.802834, 0.802834, -0.802834, 1.63676, -1.63676, 1.63676, 2.4085, 2.4085, 2.4085, -1.63676, 1.63676, -0.0310931, -3.01551, 1.03079, -1.03079, -7.57784, 9.56255, -7.57784, -3.21134, -3.21134, 5.19605, 1.03079, -3.01551, 1.03079, 3.77476e-14, 3.68594e-14, -1.98471, 9.56255, -7.57784, 1.15516}, {0.802834, 0.802834, -0.802834, 1.63676, -1.63676, 1.63676, -0.802834, -0.802834, -0.802834, 4.91028, -4.91028, 0.0932794, -3.01551, 1.03079, -1.03079, -1.03079, 3.01551, -1.03079, -3.68594e-14, -3.68594e-14, 1.98471, -2.18055, -6.22684, 4.24213, -6.54704, 6.54704, -8.53176, 6.22684, 2.18055, 4.24213}, {-2.4085, -2.4085, 2.4085, -2.4396, 0.833927, -0.833927, -1.57573, 1.57573, 1.57573, 3.2125, -3.2125, 0.0610269, 11.7815, -5.35886, 5.35886, 4.96322, -2.97851, -0.916924, 7.25829, -9.24301, -7.25829, -17.8132, 15.8285, 0.672816, -0.955357, 2.94007, 0.955357, -2.02315, 2.02315, -2.02315}, {0.802834, 0.802834, -0.802834, 7.31879, -2.50178, 2.50178, -1.57573, 1.57573, 1.57573, 3.2125, -3.2125, 0.0610269, -1.18819, -5.23448, 5.23448, 11.2662, -9.28144, -7.21986, 0.955357, -2.94007, -0.955357, -4.96322, 2.97851, 0.916924, -13.8053, 15.7901, 0.71125, -2.02315, 2.02315, -2.02315}, {0.802834, 0.802834, -0.802834, -2.4396, 0.833927, -0.833927, 4.7272, -4.7272, -4.7272, 3.2125, -3.2125, 0.0610269, 2.02315, -2.02315, 2.02315, 14.7216, -6.31421, 2.41878, -2.25598, -6.15141, 2.25598, -4.96322, 2.97851, 0.916924, -0.955357, 2.94007, 0.955357, -14.8731, 14.8731, -2.26726}, {0.802834, 0.802834, -0.802834, -2.4396, 0.833927, -0.833927, -1.57573, 1.57573, 1.57573, -9.63749, 9.63749, -0.183081, 2.02315, -2.02315, 2.02315, 4.96322, -2.97851, -0.916924, 0.955357, -2.94007, -0.955357, -8.17456, -0.232831, 4.12826, 8.80302, -0.395637, 4.29107, 4.27979, -4.27979, -8.32609}, {-8.88178e-16, 0, 4.817, 3.64699, 0.373467, -0.373467, -1.78885, -1.78885, 1.78885, -1.85814, 1.41539, 0.190281, -19.0959, -1.9555, 3.94022, -2.29678, 1.74951, -1.74951, 9.36656, 9.36656, -7.38185, 9.72932, -7.41106, 0.988391, -2.21115, -2.21115, 0.226431, 4.50793, 0.461631, -2.44635}, {2.22045e-16, -4.44089e-16, -1.60567, -10.941, -1.1204, 1.1204, -1.78885, -1.78885, 1.78885, -1.85814, 1.41539, 0.190281, -4.50793, -0.461631, 8.86902, 4.85864, 8.90493, -8.90493, 2.21115, 2.21115, -0.226431, 2.29678, -1.74951, 1.74951, 5.2214, -7.87269, -0.534693, 4.50793, 0.461631, -2.44635}, {-6.66134e-16, -4.44089e-16, -1.60567, 3.64699, 0.373467, -0.373467, 5.36656, 5.36656, -5.36656, -1.85814, 1.41539, 0.190281, -4.50793, -0.461631, 2.44635, -16.8847, 0.255645, -0.255645, 2.21115, 2.21115, 6.19624, 2.29678, -1.74951, 1.74951, -2.21115, -2.21115, 0.226431, 11.9405, -5.19992, -3.20747}, {-6.66134e-16, 0, -1.60567, 3.64699, 0.373467, -0.373467, -1.78885, -1.78885, 1.78885, 5.57441, -4.24616, -0.570843, -4.50793, -0.461631, 2.44635, -2.29678, 1.74951, -1.74951, 2.21115, 2.21115, -0.226431, 2.29678, -1.74951, 8.17219, -16.7991, -3.70501, 1.7203, 11.6633, 7.61705, -9.60176}, {5.57441, -4.24616, 4.24616, -1.78885, -1.78885, 1.78885, 0, 3.15147, 0, 3.64699, -2.778, -0.373467, 11.6633, 7.61705, -7.61705, 2.21115, -1.68428, -2.21115, 2.29678, -18.2508, 1.74951, -16.7991, 12.7963, 3.70501, -2.29678, 5.64494, -1.74951, -4.50793, -0.461631, 0.461631}, {-1.85814, 1.41539, -1.41539, 5.36656, 5.36656, -5.36656, -2.85327e-15, 3.15147, 2.92187e-16, 3.64699, -2.778, -0.373467, 11.9405, -5.19992, 5.19992, 2.21115, -14.2902, -2.21115, 2.29678, -5.64494, 1.74951, -2.21115, 1.68428, 2.21115, -16.8847, 16.7569, -0.255645, -4.50793, -0.461631, 0.461631}, {-1.85814, 1.41539, -1.41539, -1.78885, -1.78885, 1.78885, 0, -9.45441, 0, 3.64699, -2.778, -0.373467, 4.50793, 0.461631, -0.461631, 9.36656, 5.47113, -9.36656, 9.72932, -11.3065, 7.41106, -2.21115, 1.68428, 2.21115, -2.29678, 5.64494, -1.74951, -19.0959, 10.6504, 1.9555}, {-1.85814, 1.41539, -1.41539, -1.78885, -1.78885, 1.78885, 0, 3.15147, 0, -10.941, 8.334, 1.1204, 4.50793, 0.461631, -0.461631, 2.21115, -1.68428, -2.21115, 2.29678, -5.64494, 1.74951, 5.2214, -3.97726, 7.87269, 4.85864, 12.8004, -8.90493, -4.50793, -13.0675, 0.461631}, {5.61089, -1.12882, 1.12882, -0.730647, 0.497098, 1.84603, 0.431092, 1.08918, -1.08918, 2.16985, -1.96255, -0.380575, 6.13753, -3.06794, -9.20083, 0.370271, -1.96075, -0.935513, 0.0545869, -6.16812, 6.16812, -9.04968, 9.81095, 2.45781, -1.77895, 1.8114, -1.8114, -3.21494, 1.07954, 1.81672}, {-1.8703, 0.376272, -0.376272, 2.19194, -1.49129, -5.53808, 0.431092, 1.08918, -1.08918, 2.16985, -1.96255, -0.380575, 10.6961, -2.58463, -0.311631, -1.3541, -6.31747, 3.42121, 1.77895, -1.8114, 1.8114, -0.370271, 1.96075, 0.935513, -10.4584, 9.6616, -0.289101, -3.21494, 1.07954, 1.81672}, {-1.8703, 0.376272, -0.376272, -0.730647, 0.497098, 1.84603, -1.29328, -3.26754, 3.26754, 2.16985, -1.96255, -0.380575, 3.21494, -1.07954, -1.81672, 3.29286, -3.94914, -8.31962, 9.26014, -3.31649, 3.31649, -0.370271, 1.96075, 0.935513, -1.77895, 1.8114, -1.8114, -11.8943, 8.92975, 3.33902}, {-1.8703, 0.376272, -0.376272, -0.730647, 0.497098, 1.84603, 0.431092, 1.08918, -1.08918, -6.50955, 5.88765, 1.14172, 3.21494, -1.07954, -1.81672, 0.370271, -1.96075, -0.935513, 1.77895, -1.8114, 1.8114, 7.11091, 0.455662, 2.4406, 1.14364, -0.176994, -9.19551, -4.93931, -3.27718, 6.17344}, {-3.9353, -0.877932, 3.73093, -2.19842e-16, -0.163745, 1.71788, -5.85173e-16, -1.31534, -0.704307, -1.31177, 1.18644, 0.230073, -1.62143, 0.495654, -7.45769, 9.95053e-16, 1.82825, -1.25284, -1.62143, 6.52549, 5.22503, 5.24706, -6.57403, 0.33255, 1.62143, -1.26412, -2.4078, 1.62143, 0.159328, 0.586185}, {1.31177, 0.292644, -1.24364, 2.59599e-16, 0.491236, -5.15363, 4.85681e-16, -1.31534, -0.704307, -1.31177, 1.18644, 0.230073, -6.86849, -1.3299, 4.38839, -2.4361e-15, 7.08962, 1.56438, -1.62143, 1.26412, 2.4078, 1.67724e-16, -1.82825, 1.25284, 6.86849, -6.0099, -3.32809, 1.62143, 0.159328, 0.586185}, {1.31177, 0.292644, -1.24364, 0, -0.163745, 1.71788, 0, 3.94603, 2.11292, -1.31177, 1.18644, 0.230073, -1.62143, -0.159328, -0.586185, 0, 2.48323, -8.12435, -6.86849, 0.0935482, 7.38238, -3.2565e-16, -1.82825, 1.25284, 1.62143, -1.26412, -2.4078, 6.86849, -4.58645, -0.334108}, {1.31177, 0.292644, -1.24364, -2.66619e-17, -0.163745, 1.71788, -2.14171e-16, -1.31534, -0.704307, 3.9353, -3.55933, -0.690219, -1.62143, -0.159328, -0.586185, 2.97685e-16, 1.82825, -1.25284, -1.62143, 1.26412, 2.4078, -5.24706, -2.99883, 6.22742, 1.62143, -0.609143, -9.27931, 1.62143, 5.4207, 3.40341}, {6.05767, -1.43278, 5.23226e-12, 0, 1.38248, 0, 0.572575, -0.389553, -1.44665, 1.44665, -1.47052, 1.44665, 2.4959, -7.82907, 2.15583e-12, -0.707741, -1.22732, 1.78815, -0.502145, 1.44939, 7.57474, -5.07885, 7.10939, -7.57474, -1.78815, 0.108825, -1.78815, -2.4959, 2.29917, -2.15583e-12}, {-2.01922, 0.477594, -1.74416e-12, -5.05799e-15, -4.14743, -2.97897e-15, 0.572575, -0.389553, -1.44665, 1.44665, -1.47052, 1.44665, 10.5728, -4.20955, 9.13047e-12, -2.99804, 0.330893, 7.57474, 1.78815, -0.108825, 1.78815, 0.707741, 1.22732, -1.78815, -7.57474, 5.99089, -7.57474, -2.4959, 2.29917, -2.15472e-12}, {-2.01922, 0.477594, -1.74438e-12, 1.98598e-15, 1.38248, 1.98598e-15, -1.71772, 1.16866, 4.33994, 1.44665, -1.47052, 1.44665, 2.4959, -2.29917, 2.15383e-12, -0.707741, -6.75722, 1.78815, 9.86504, -2.0192, 1.78815, 0.707741, 1.22732, -1.78815, -1.78815, 0.108825, -1.78815, -8.28248, 8.18124, -5.78659}, {-2.01922, 0.477594, -1.74438e-12, 0, 1.38248, 0, 0.572575, -0.389553, -1.44665, -4.33994, 4.41155, -4.33994, 2.4959, -2.29917, 2.15628e-12, -0.707741, -1.22732, 1.78815, 1.78815, -0.108825, 1.78815, 8.78463, -0.683057, -1.78815, -1.78815, -5.42108, -1.78815, -4.7862, 3.85739, 5.78659}, {-1.33227e-15, -0.577407, 6.05767, 1.31177, 0.0490665, 1.31177, 7.62271e-16, -1.57494, 2.01922, -1.31177, 1.33341, -1.31177, -6.86849, -0.49482, -4.3726, -1.62143, 1.88609, -4.11733, -4.66294e-15, 8.00861, -8.07689, 6.86849, -7.21973, 9.36439, 1.55431e-15, -1.70883, 1.33227e-15, 1.62143, 0.298554, -0.874465}, {-2.22045e-16, 0.192469, -2.01922, -3.9353, -0.147199, -3.9353, 5.0818e-16, -1.57494, 2.01922, -1.31177, 1.33341, -1.31177, -1.62143, -1.06843, 8.95135, -1.62143, 8.18587, -12.1942, -2.22045e-16, 1.70883, 1.11022e-15, 1.62143, -1.88609, 4.11733, 5.24706, -7.04247, 5.24706, 1.62143, 0.298554, -0.874465}, {0, 0.192469, -2.01922, 1.31177, 0.0490665, 1.31177, 7.62271e-16, 4.72483, -6.05767, -1.31177, 1.33341, -1.31177, -1.62143, -0.298554, 0.874465, -6.86849, 1.68982, -9.36439, 0, 0.938958, 8.07689, 1.62143, -1.88609, 4.11733, -4.44089e-16, -1.70883, -4.44089e-16, 6.86849, -5.03508, 4.3726}, {-2.22045e-16, 0.192469, -2.01922, 1.31177, 0.0490665, 1.31177, 1.52454e-15, -1.57494, 2.01922, 3.9353, -4.00023, 3.9353, -1.62143, -0.298554, 0.874465, -1.62143, 1.88609, -4.11733, -1.55431e-15, 1.70883, -1.55431e-15, 1.62143, -2.65597, 12.1942, -5.24706, -1.9051, -5.24706, 1.62143, 6.59833, -8.95135}, {5.62183, 1.10117, 1.0932, -0.543248, 1.37255, -0.969804, 0.418614, -1.05765, -1.05825, 1.99858, 0.0521603, 2.39245, 5.16081, -6.73306, 5.52839, 0.154056, -0.389233, 2.50681, 0.12443, 5.99166, 5.99148, -8.14837, 0.180592, -12.0766, -1.79889, -1.76104, -1.75849, -2.98781, 1.24286, -1.64917}, {-1.87394, -0.367057, -0.364401, 1.62974, -4.11765, 2.90941, 0.418614, -1.05765, -1.05825, 1.99858, 0.0521603, 2.39245, 10.4836, 0.225367, 3.10677, -1.5204, 3.84139, 6.7398, 1.79889, 1.76104, 1.75849, -0.154056, 0.389233, -2.50681, -9.79319, -1.96968, -11.3283, -2.98781, 1.24286, -1.64917}, {-1.87394, -0.367057, -0.364401, -0.543248, 1.37255, -0.969804, -1.25584, 3.17296, 3.17474, 1.99858, 0.0521603, 2.39245, 2.98781, -1.24286, 1.64917, 2.32705, -5.87944, 6.38603, 9.29466, 3.22927, 3.2161, -0.154056, 0.389233, -2.50681, -1.79889, -1.76104, -1.75849, -10.9821, 1.03422, -11.219}, {-1.87394, -0.367057, -0.364401, -0.543248, 1.37255, -0.969804, 0.418614, -1.05765, -1.05825, -5.99573, -0.156481, -7.17736, 2.98781, -1.24286, 1.64917, 0.154056, -0.389233, 2.50681, 1.79889, 1.76104, 1.75849, 7.34172, 1.85746, -1.04921, 0.374107, -7.25124, 2.12073, -4.66227, 5.47348, 2.58382}, {1.30457, 0.988495, -4.07489, 1.69843, -1.02425, 0.473793, -0.0497917, 1.38543, -0.379098, -1.21378, -0.0316781, -1.45299, -8.35558, 5.77034, -4.15976, -2.03783, -0.446439, -0.117049, 0.798227, -6.84692, 0.306038, 6.89295, 0.573151, 5.92901, -0.59906, 1.3052, 1.21036, 1.56186, -1.67333, 2.26459}, {-0.434858, -0.329498, 1.3583, -5.09529, 3.07276, -1.42138, -0.0497917, 1.38543, -0.379098, -1.21378, -0.0316781, -1.45299, 0.17757, 2.99132, -7.69777, -1.83866, -5.98816, 1.39934, 0.59906, -1.3052, -1.21036, 2.03783, 0.446439, 0.117049, 4.25606, 1.43192, 7.02232, 1.56186, -1.67333, 2.26459}, {-0.434858, -0.329498, 1.3583, 1.69843, -1.02425, 0.473793, 0.149375, -4.15629, 1.1373, -1.21378, -0.0316781, -1.45299, -1.56186, 1.67333, -2.26459, -8.83155, 3.65057, -2.01222, 2.33849, 0.0127912, -6.64354, 2.03783, 0.446439, 0.117049, -0.59906, 1.3052, 1.21036, 6.41699, -1.54662, 8.07655}, {-0.434858, -0.329498, 1.3583, 1.69843, -1.02425, 0.473793, -0.0497917, 1.38543, -0.379098, 3.64134, 0.0950343, 4.35897, -1.56186, 1.67333, -2.26459, -2.03783, -0.446439, -0.117049, 0.59906, -1.3052, -1.21036, 3.77726, 1.76443, -5.31614, -7.39278, 5.40222, -0.684818, 1.76103, -7.21505, 3.78098}, {-3.43097, 1.35687, -3.43142, 0.931473, 0.558277, -1.41184, -0.847096, 2.35716, -0.851503, -1.22803, -2.46315, 1.11954, -6.29089, -2.36411, 5.97866, -0.104296, -3.60368, 2.79764, 3.02181, -11.7832, 3.0447, 5.01642, 13.4563, -7.27579, 0.366568, 2.35455, 0.361307, 2.565, 0.131007, -0.331307}, {1.14366, -0.45229, 1.14381, -2.79442, -1.67483, 4.23552, -0.847096, 2.35716, -0.851503, -1.22803, -2.46315, 1.11954, -7.13962, 1.67815, -4.24392, 3.28409, -13.0323, 6.20366, -0.366568, -2.35455, -0.361307, 0.104296, 3.60368, -2.79764, 5.2787, 12.2071, -4.11684, 2.565, 0.131007, -0.331307}, {1.14366, -0.45229, 1.14381, 0.931473, 0.558277, -1.41184, 2.54129, -7.07148, 2.55451, -1.22803, -2.46315, 1.11954, -2.565, -0.131007, 0.331307, -3.83019, -5.83679, 8.445, -4.94119, -0.545391, -4.93653, 0.104296, 3.60368, -2.79764, 0.366568, 2.35455, 0.361307, 7.47713, 9.9836, -4.80945}, {1.14366, -0.45229, 1.14381, 0.931473, 0.558277, -1.41184, -0.847096, 2.35716, -0.851503, 3.6841, 7.38945, -3.35861, -2.565, -0.131007, 0.331307, -0.104296, -3.60368, 2.79764, -0.366568, -2.35455, -0.361307, -4.47033, 5.41284, -7.37287, -3.35932, 0.121443, 6.00866, 5.95338, -9.29764, 3.0747}, {5.0671, -2.00529, 0.25185, -0.295203, -1.90215, -0.29354, 1.14353, -0.452546, 1.14392, 0.840709, 1.68627, -0.766433, 3.63346, 9.13356, 1.64076, -1.04859, 2.91057, -1.05113, -3.89983, 1.54334, -5.88589, -2.31425, -9.65564, 4.11686, -0.674283, 0.266845, 1.3102, -2.45265, -1.52496, -0.466604}, {-1.68903, 0.668429, -0.0839499, 0.885608, 5.70645, 0.880621, 1.14353, -0.452546, 1.14392, 0.840709, 1.68627, -0.766433, 9.20879, -1.14875, 0.802403, -5.6227, 4.72075, -5.62682, 0.674283, -0.266845, -1.3102, 1.04859, -2.91057, 1.05113, -4.03712, -6.47823, 4.37593, -2.45265, -1.52496, -0.466604}, {-1.68903, 0.668429, -0.0839499, -0.295203, -1.90215, -0.29354, -3.43058, 1.35764, -3.43177, 0.840709, 1.68627, -0.766433, 2.45265, 1.52496, 0.466604, 0.132224, 10.5192, 0.123031, 7.43042, -2.94056, -0.974399, 1.04859, -2.91057, 1.05113, -0.674283, 0.266845, 1.3102, -5.81549, -8.27004, 2.59913}, {-1.68903, 0.668429, -0.0839499, -0.295203, -1.90215, -0.29354, 1.14353, -0.452546, 1.14392, -2.52213, -5.0588, 2.2993, 2.45265, 1.52496, 0.466604, -1.04859, 2.91057, -1.05113, 0.674283, -0.266845, -1.3102, 7.80472, -5.58428, 1.38693, 0.506528, 7.87545, 2.48436, -7.02676, 0.285222, -5.04229}, {-7.02938, 6.21725e-15, 4.44089e-16, -1.54298, 0.610212, -1.54318, 1.7461, 1.33161, 1.74203, -2.54625, -1.94182, -0.198851, 5.18286, -3.19511, 8.08019, -0.25107, -2.40023, -0.245794, -12.0389, -6.97241, -9.12139, 10.4361, 10.1675, 1.0412, 5.05456, 1.64596, 2.15327, 0.989039, 0.754264, -1.90748}, {2.34313, -1.77636e-15, -1.22125e-15, 4.62893, -1.83064, 4.62954, 1.7461, 1.33161, 1.74203, -2.54625, -1.94182, -0.198851, -10.3615, -0.754264, 1.90748, -7.23545, -7.72668, -7.21392, -5.05456, -1.64596, -2.15327, 0.25107, 2.40023, 0.245794, 15.2395, 9.41326, 2.94867, 0.989039, 0.754264, -1.90748}, {2.34313, 0, 1.38778e-16, -1.54298, 0.610212, -1.54318, -5.23829, -3.99484, -5.22609, -2.54625, -1.94182, -0.198851, -0.989039, -0.754264, 1.90748, 5.92083, -4.84108, 5.92693, -14.4271, -1.64596, -2.15327, 0.25107, 2.40023, 0.245794, 5.05456, 1.64596, 2.15327, 11.174, 8.52156, -1.11207}, {2.34313, -1.11022e-15, -3.05311e-16, -1.54298, 0.610212, -1.54318, 1.7461, 1.33161, 1.74203, 7.63874, 5.82547, 0.596554, -0.989039, -0.754264, 1.90748, -0.25107, -2.40023, -0.245794, -5.05456, -1.64596, -2.15327, -9.12143, 2.40023, 0.245794, 11.2265, -0.794885, 8.32599, -5.99534, -4.57219, -8.8756}, {2.66454e-15, 3.55271e-15, -4.817, -1.54262, 0.610485, -1.54315, -0.200328, -1.9397, -0.198633, 1.74295, 1.32921, 0.136117, 8.07725, -3.19654, 6.09533, 2.1544, 1.643, 2.15296, 1.04893, 10.1564, -0.944658, -9.12619, -6.95984, -2.69743, -0.24762, -2.3976, 1.73919, -1.90678, 0.754601, 0.0772744}, {1.55431e-15, 8.88178e-16, 1.60567, 4.62785, -1.83146, 4.62946, -0.200328, -1.9397, -0.198633, 1.74295, 1.32921, 0.136117, 1.90678, -0.754601, -6.49995, 2.95571, 9.40178, 2.9475, 0.24762, 2.3976, -1.73919, -2.1544, -1.643, -2.15296, -7.21941, -7.71444, 1.19472, -1.90678, 0.754601, 0.0772744}, {2.22045e-16, 2.22045e-16, 1.60567, -1.54262, 0.610485, -1.54315, 0.600985, 5.81909, 0.5959, 1.74295, 1.32921, 0.136117, 1.90678, -0.754601, -0.0772744, 8.32487, -0.798945, 8.32557, 0.24762, 2.3976, -8.16186, -2.1544, -1.643, -2.15296, -0.24762, -2.3976, 1.73919, -8.87857, -4.56224, -0.467193}, {-1.33227e-15, -1.11022e-15, 1.60567, -1.54262, 0.610485, -1.54315, -0.200328, -1.9397, -0.198633, -5.22884, -3.98763, -0.408351, 1.90678, -0.754601, -0.0772744, 2.1544, 1.643, 2.15296, 0.24762, 2.3976, -1.73919, -2.1544, -1.643, -8.57564, 5.92285, -4.83954, 7.9118, -1.10547, 8.51339, 0.871807}, {5.74294, 0.795668, -0.78877, 0.30138, -0.761926, 0.76354, -0.6496, 1.64227, 0.697377, 2.26253, -0.61512, -1.72384, 0.788176, 4.31733, -4.32294, 0.430423, -1.08816, -1.80579, 5.76757, -8.2712, -3.9765, -9.48055, 3.54864, 8.70115, -3.16917, 1.70212, 1.187, -1.9937, -1.26962, 1.26878}, {-1.91431, -0.265223, 0.262923, -0.904139, 2.28578, -2.29062, -0.6496, 1.64227, 0.697377, 2.26253, -0.61512, -1.72384, 9.65095, 2.33052, -2.32047, 3.02882, -7.65724, -4.5953, 3.16917, -1.70212, -1.187, -0.430423, 1.08816, 1.80579, -12.2193, 4.1626, 8.08236, -1.9937, -1.26962, 1.26878}, {-1.91431, -0.265223, 0.262923, 0.30138, -0.761926, 0.76354, 1.9488, -4.9268, -2.09213, 2.26253, -0.61512, -1.72384, 1.9937, 1.26962, -1.26878, -0.775096, 1.95954, -4.85995, 10.8264, -0.641232, -2.23869, -0.430423, 1.08816, 1.80579, -3.16917, 1.70212, 1.187, -11.0438, 1.19086, 8.16414}, {-1.91431, -0.265223, 0.262923, 0.30138, -0.761926, 0.76354, -0.6496, 1.64227, 0.697377, -6.7876, 1.84536, 5.17152, 1.9937, 1.26962, -1.26878, 0.430423, -1.08816, -1.80579, 3.16917, -1.70212, -1.187, 7.22683, 2.14905, 0.7541, -4.37469, 4.74982, -1.86717, 0.604703, -7.8387, -1.52073}, {1.33227e-15, 6.00487, 0.829413, -3.96116e-16, 2.00162, -0.810615, 1.31177, 1.30033, 0.316508, -1.31177, -1.30033, 0.770578, 2.66454e-15, -8.00649, 4.58617, -1.62143, -4.08144, 0.61075, -6.86849, -4.33448, -1.31552, 6.86849, 9.28277, -3.69306, 1.62143, -0.866843, 0.0494889, -1.11022e-15, -6.66134e-16, -1.34371}, {4.44089e-16, -2.00162, -0.276471, -2.97087e-15, -6.00487, 2.43185, 1.31177, 1.30033, 0.316508, -1.31177, -1.30033, 0.770578, -2.66454e-15, 8.00649, 2.4496, -6.86849, -9.28277, -0.655284, -1.62143, 0.866843, -0.0494889, 1.62143, 4.08144, -0.61075, 6.86849, 4.33448, -3.03282, 1.55431e-15, 1.33227e-15, -1.34371}, {-2.22045e-16, -2.00162, -0.276471, 1.38641e-15, 2.00162, -0.810615, -3.9353, -3.901, -0.949525, -1.31177, -1.30033, 0.770578, -1.33227e-15, -1.11022e-15, 1.34371, -1.62143, -12.0879, 3.85321, -1.62143, 8.87333, 1.0564, 1.62143, 4.08144, -0.61075, 1.62143, -0.866843, 0.0494889, 5.24706, 5.20133, -4.42602}, {-6.66134e-16, -2.00162, -0.276471, -1.18835e-15, 2.00162, -0.810615, 1.31177, 1.30033, 0.316508, 3.9353, 3.901, -2.31173, 2.22045e-15, 2.66454e-15, 1.34371, -1.62143, -4.08144, 0.61075, -1.62143, 0.866843, -0.0494889, 1.62143, 12.0879, 0.495134, 1.62143, -8.87333, 3.29195, -5.24706, -5.20133, -2.60975}, {-1.70622, 4.31352, 1.8317, 8.44721e-17, 1.1641e-15, 1.08709, -2.01922, 1.65815e-12, 0.375548, 1.45048, 1.43784, -0.852066, -0.702999, 1.77727, -4.93735, 2.4959, -2.05102e-12, -1.80792, 9.86978, 1.77727, -1.21169, -8.29783, -5.75136, 5.21618, -1.7929, -1.77727, -0.290501, 0.702999, -1.77727, 0.589009}, {0.568738, -1.43784, -0.610568, -2.80914e-15, -1.1641e-15, -3.26126, -2.01922, 1.65896e-12, 0.375548, 1.45048, 1.43784, -0.852066, -2.97795, 7.52863, 1.85326, 10.5728, -8.68691e-12, -3.31011, 1.7929, 1.77727, 0.290501, -2.4959, 2.05143e-12, 1.80792, -7.59483, -7.52863, 3.11776, 0.702999, -1.77727, 0.589009}, {0.568738, -1.43784, -0.610568, 0, 0, 1.08709, 6.05767, -4.97324e-12, -1.12664, 1.45048, 1.43784, -0.852066, -0.702999, 1.77727, -0.589009, 2.4959, -2.04909e-12, -6.15626, -0.482057, 7.52863, 2.73277, -2.4959, 2.04944e-12, 1.80792, -1.7929, -1.77727, -0.290501, -5.09894, -7.52863, 3.99727}, {0.568738, -1.43784, -0.610568, 0, 0, 1.08709, -2.01922, 1.6563e-12, 0.375548, -4.35145, -4.31352, 2.5562, -0.702999, 1.77727, -0.589009, 2.4959, -2.04731e-12, -1.80792, 1.7929, 1.77727, 0.290501, -4.77085, 5.75136, 4.25019, -1.7929, -1.77727, -4.63885, 8.77989, -1.77727, -0.913184}, {1.27077, -1.27077, -5.5547, 1.35703, 0.9861, 0.537103, -0.781872, 0.781872, -0.309461, -0.151563, -2.19156, -2.07921, -6.58189, -5.68687, -5.10097, -0.710928, -2.18533, -0.281381, 4.61752, -4.61752, -0.668306, 1.31718, 10.9516, 8.59822, -1.49003, 1.49003, 1.90615, 1.15379, 1.74247, 2.95256}, {-0.42359, 0.42359, 1.85157, -4.07108, -2.9583, -1.61131, -0.781872, 0.781872, -0.309461, -0.151563, -2.19156, -2.07921, 0.540572, -3.43683, -10.3588, 2.41656, -5.31282, 0.956461, 1.49003, -1.49003, -1.90615, 0.710928, 2.18533, 0.281381, -0.883782, 10.2563, 10.223, 1.15379, 1.74247, 2.95256}, {-0.42359, 0.42359, 1.85157, 1.35703, 0.9861, 0.537103, 2.34562, -2.34562, 0.928382, -0.151563, -2.19156, -2.07921, -1.15379, -1.74247, -2.95256, -6.13903, -6.12973, -2.42979, 3.18439, -3.18439, -9.31242, 0.710928, 2.18533, 0.281381, -1.49003, 1.49003, 1.90615, 1.76004, 10.5087, 11.2694}, {-0.42359, 0.42359, 1.85157, 1.35703, 0.9861, 0.537103, -0.781872, 0.781872, -0.309461, 0.454689, 6.57469, 6.23763, -1.15379, -1.74247, -2.95256, -0.710928, -2.18533, -0.281381, 1.49003, -1.49003, -1.90615, 2.40529, 0.490973, -7.12489, -6.91814, -2.45437, -0.242264, 4.28128, -1.38502, 4.1904}, {2.56157, 0.777047, 3.89096, 1.32901, 0.581011, 0.152782, -0.565397, -1.62691, -0.0938093, 0.0902443, 1.30491, 1.23801, -5.90336, -2.72205, 0.803187, -0.943878, 1.2928, -0.0728941, 4.01589, 8.83876, 2.09436, 0.5829, -6.51244, -4.87916, -1.7543, -2.33113, -1.71912, 0.587321, 0.398009, -1.41431}, {-0.853857, -0.259016, -1.29699, -3.98703, -1.74303, -0.458346, -0.565397, -1.62691, -0.0938093, 0.0902443, 1.30491, 1.23801, 2.82811, 0.638054, 6.60226, 1.31771, 7.80043, 0.302343, 1.7543, 2.33113, 1.71912, 0.943878, -1.2928, 0.0728941, -2.11527, -7.55078, -6.67117, 0.587321, 0.398009, -1.41431}, {-0.853857, -0.259016, -1.29699, 1.32901, 0.581011, 0.152782, 1.69619, 4.88072, 0.281428, 0.0902443, 1.30491, 1.23801, -0.587321, -0.398009, 1.41431, -6.25992, -1.03125, -0.684022, 5.16973, 3.36719, 6.90706, 0.943878, -1.2928, 0.0728941, -1.7543, -2.33113, -1.71912, 0.226344, -4.82164, -6.36637}, {-0.853857, -0.259016, -1.29699, 1.32901, 0.581011, 0.152782, -0.565397, -1.62691, -0.0938093, -0.270733, -3.91473, -3.71404, -0.587321, -0.398009, 1.41431, -0.943878, 1.2928, -0.0728941, 1.7543, 2.33113, 1.71912, 4.35931, -0.256736, 5.26084, -7.07034, -4.65518, -2.33025, 2.84891, 6.90564, -1.03908}, {4.07496e-12, -2.19419, -6.05767, 4.84843e-16, 1.35003, -1.83833e-15, -1.44665, -1.05122, -0.572575, 1.44665, -1.0302, -1.44665, 1.67644e-12, -7.97291, -2.4959, 1.78815, -0.369344, 0.707741, 7.57474, 4.60023, 0.502145, -7.57474, 4.49015, 5.07885, -1.78815, -0.395328, 1.78815, -1.67844e-12, 2.57279, 2.4959}, {-1.3598e-12, 0.731398, 2.01922, -2.90906e-15, -4.05009, 4.93928e-15, -1.44665, -1.05122, -0.572575, 1.44665, -1.0302, -1.44665, 7.11964e-12, -5.49838, -10.5728, 7.57474, 3.83556, 2.99804, 1.78815, 0.395328, -1.78815, -1.78815, 0.369344, -0.707741, -7.57474, 3.72548, 7.57474, -1.67977e-12, 2.57279, 2.4959}, {-1.36091e-12, 0.731398, 2.01922, 0, 1.35003, 0, 4.33994, 3.15367, 1.71772, 1.44665, -1.0302, -1.44665, 1.68221e-12, -2.57279, -2.4959, 1.78815, -5.76946, 0.707741, 1.78815, -2.53026, -9.86504, -1.78815, 0.369344, -0.707741, -1.78815, -0.395328, 1.78815, -5.78659, 6.6936, 8.28248}, {-1.36047e-12, 0.731398, 2.01922, -4.84843e-16, 1.35003, 4.84843e-16, -1.44665, -1.05122, -0.572575, -4.33994, 3.09061, 4.33994, 1.68221e-12, -2.57279, -2.4959, 1.78815, -0.369344, 0.707741, 1.78815, 0.395328, -1.78815, -1.78815, -2.55625, -8.78463, -1.78815, -5.79545, 1.78815, 5.78659, 6.77769, 4.7862}, {5.43308, 2.37521, 0.624583, 1.07522, 0.584331, -1.07522, 1.83687, -0.576694, 0.182353, -1.10106, 0.784101, 1.10106, -3.39138, -2.08096, 5.88727, -3.59954, -0.00943971, 1.10365, -7.37942, 3.99825, -0.697471, 8.00379, -3.12696, -5.50789, 0.0319413, -1.69148, -0.0319413, -0.909507, -0.256369, -1.58639}, {-1.81103, -0.791738, -0.208194, -3.22566, -1.75299, 3.22566, 1.83687, -0.576694, 0.182353, -1.10106, 0.784101, 1.10106, 8.15362, 3.42332, 2.41917, -10.947, 2.29734, 0.374233, -0.0319413, 1.69148, 0.0319413, 3.59954, 0.00943971, -1.10365, 4.43619, -4.82788, -4.43619, -0.909507, -0.256369, -1.58639}, {-1.81103, -0.791738, -0.208194, 1.07522, 0.584331, -1.07522, -5.51061, 1.73008, -0.547059, -1.10106, 0.784101, 1.10106, 0.909507, 0.256369, 1.58639, -7.90043, -2.34676, 5.40453, 7.21217, 4.85843, 0.864718, 3.59954, 0.00943971, -1.10365, 0.0319413, -1.69148, -0.0319413, 3.49474, -3.39277, -5.99064}, {-1.81103, -0.791738, -0.208194, 1.07522, 0.584331, -1.07522, 1.83687, -0.576694, 0.182353, 3.30319, -2.3523, -3.30319, 0.909507, 0.256369, 1.58639, -3.59954, -0.00943971, 1.10365, -0.0319413, 1.69148, 0.0319413, 10.8437, 3.17639, -0.270869, -4.26894, -4.0288, 4.26894, -8.25698, 2.05041, -2.3158}, {1.1204, -1.1204, 10.941, 1.78885, -1.78885, 1.78885, -1.60567, 0, 0, 0.190281, 1.41539, 1.85814, -8.90493, 8.90493, -4.85864, -0.226431, 2.21115, -2.21115, 8.86902, -0.461631, 4.50793, -0.534693, -7.87269, -5.2214, -2.44635, 0.461631, -4.50793, 1.74951, -1.74951, -2.29678}, {-0.373467, 0.373467, -3.64699, -5.36656, 5.36656, -5.36656, -1.60567, 0, 0, 0.190281, 1.41539, 1.85814, -0.255645, 0.255645, 16.8847, 6.19624, 2.21115, -2.21115, 2.44635, -0.461631, 4.50793, 0.226431, -2.21115, 2.21115, -3.20747, -5.19992, -11.9405, 1.74951, -1.74951, -2.29678}, {-0.373467, 0.373467, -3.64699, 1.78885, -1.78885, 1.78885, 4.817, 0, 0, 0.190281, 1.41539, 1.85814, -1.74951, 1.74951, 2.29678, -7.38185, 9.36656, -9.36656, 3.94022, -1.9555, 19.0959, 0.226431, -2.21115, 2.21115, -2.44635, 0.461631, -4.50793, 0.988391, -7.41106, -9.72932}, {-0.373467, 0.373467, -3.64699, 1.78885, -1.78885, 1.78885, -1.60567, 0, 0, -0.570843, -4.24616, -5.57441, -1.74951, 1.74951, 2.29678, -0.226431, 2.21115, -2.21115, 2.44635, -0.461631, 4.50793, 1.7203, -3.70501, 16.7991, -9.60176, 7.61705, -11.6633, 8.17219, -1.74951, -2.29678}, {4.24616, -4.24616, -5.57441, 1.78885, -1.78885, 1.78885, 2.92187e-16, 3.15147, 2.85327e-15, -0.373467, -2.778, -3.64699, -7.61705, 7.61705, -11.6633, -2.21115, -1.68428, -2.21115, 1.74951, -18.2508, -2.29678, 3.70501, 12.7963, 16.7991, -1.74951, 5.64494, 2.29678, 0.461631, -0.461631, 4.50793}, {-1.41539, 1.41539, 1.85814, -5.36656, 5.36656, -5.36656, -5.84374e-16, 3.15147, -5.70654e-15, -0.373467, -2.778, -3.64699, 5.19992, -5.19992, -11.9405, -2.21115, -14.2902, -2.21115, 1.74951, -5.64494, -2.29678, 2.21115, 1.68428, 2.21115, -0.255645, 16.7569, 16.8847, 0.461631, -0.461631, 4.50793}, {-1.41539, 1.41539, 1.85814, 1.78885, -1.78885, 1.78885, 0, -9.45441, 0, -0.373467, -2.778, -3.64699, -0.461631, 0.461631, -4.50793, -9.36656, 5.47113, -9.36656, 7.41106, -11.3065, -9.72932, 2.21115, 1.68428, 2.21115, -1.74951, 5.64494, 2.29678, 1.9555, 10.6504, 19.0959}, {-1.41539, 1.41539, 1.85814, 1.78885, -1.78885, 1.78885, -2.92187e-16, 3.15147, -2.85327e-15, 1.1204, 8.334, 10.941, -0.461631, 0.461631, -4.50793, -2.21115, -1.68428, -2.21115, 1.74951, -5.64494, -2.29678, 7.87269, -3.97726, -5.2214, -8.90493, 12.8004, -4.85864, 0.461631, -13.0675, 4.50793}, {-4.91028, 4.91028, 4.91028, -0.802834, -0.802834, 0.802834, -0.802834, 0.802834, -0.802834, -0.0310931, 1.63676, 1.63676, 2.18055, 6.22684, -2.18055, 1.98471, -5.77316e-15, 5.88418e-15, 2.18055, -2.18055, 6.22684, -1.86034, -6.54704, -6.54704, 1.03079, -1.03079, -3.01551, 1.03079, -3.01551, -1.03079}, {1.63676, -1.63676, -1.63676, 2.4085, 2.4085, -2.4085, -0.802834, 0.802834, -0.802834, -0.0310931, 1.63676, 1.63676, -7.57784, 9.56255, 7.57784, 5.19605, -3.21134, 3.21134, -1.03079, 1.03079, 3.01551, -1.98471, 6.51256e-15, -5.03376e-15, 1.15516, -7.57784, -9.56255, 1.03079, -3.01551, -1.03079}, {1.63676, -1.63676, -1.63676, -0.802834, -0.802834, 0.802834, 2.4085, -2.4085, 2.4085, -0.0310931, 1.63676, 1.63676, -1.03079, 3.01551, 1.03079, 5.19605, 3.21134, -3.21134, -7.57784, 7.57784, 9.56255, -1.98471, 6.51256e-15, -5.58887e-15, 1.03079, -1.03079, -3.01551, 1.15516, -9.56255, -7.57784}, {1.63676, -1.63676, -1.63676, -0.802834, -0.802834, 0.802834, -0.802834, 0.802834, -0.802834, 0.0932794, -4.91028, -4.91028, -1.03079, 3.01551, 1.03079, 1.98471, -5.55112e-15, 5.66214e-15, -1.03079, 1.03079, 3.01551, -8.53176, 6.54704, 6.54704, 4.24213, 2.18055, -6.22684, 4.24213, -6.22684, 2.18055}, {2.4085, -2.4085, 2.4085, -0.833927, 0.833927, 2.4396, 1.57573, 1.57573, 1.57573, 0.0610269, -3.2125, -3.2125, 5.35886, -5.35886, -11.7815, -0.916924, -2.97851, -4.96322, -7.25829, -9.24301, -7.25829, 0.672816, 15.8285, 17.8132, 0.955357, 2.94007, 0.955357, -2.02315, 2.02315, 2.02315}, {-0.802834, 0.802834, -0.802834, 2.50178, -2.50178, -7.31879, 1.57573, 1.57573, 1.57573, 0.0610269, -3.2125, -3.2125, 5.23448, -5.23448, 1.18819, -7.21986, -9.28144, -11.2662, -0.955357, -2.94007, -0.955357, 0.916924, 2.97851, 4.96322, 0.71125, 15.7901, 13.8053, -2.02315, 2.02315, 2.02315}, {-0.802834, 0.802834, -0.802834, -0.833927, 0.833927, 2.4396, -4.7272, -4.7272, -4.7272, 0.0610269, -3.2125, -3.2125, 2.02315, -2.02315, -2.02315, 2.41878, -6.31421, -14.7216, 2.25598, -6.15141, 2.25598, 0.916924, 2.97851, 4.96322, 0.955357, 2.94007, 0.955357, -2.26726, 14.8731, 14.8731}, {-0.802834, 0.802834, -0.802834, -0.833927, 0.833927, 2.4396, 1.57573, 1.57573, 1.57573, -0.183081, 9.63749, 9.63749, 2.02315, -2.02315, -2.02315, -0.916924, -2.97851, -4.96322, -0.955357, -2.94007, -0.955357, 4.12826, -0.232831, 8.17456, 4.29107, -0.395637, -8.80302, -8.32609, -4.27979, -4.27979}, {4.10689, -1.43706, 2.8235e-12, 0.16503, -0.581747, -1.44665, -0.119439, -0.784236, 1.44665, 1.32337, 0.886963, 9.09785e-13, 0.828026, 2.45397, 7.57474, -0.0563528, 1.68845, -3.88578e-14, 2.31753, 3.51421, -7.57474, -5.23714, -5.2363, -3.60028e-12, -1.83977, -0.377268, 1.78815, -1.48814, -0.126978, -1.78815}, {-1.36896, 0.47902, -9.395e-13, -0.495089, 1.74524, 4.33994, -0.119439, -0.784236, 1.44665, 1.32337, 0.886963, 9.08857e-13, 6.964, -1.7891, 1.78815, 0.421405, 4.82539, -5.78659, 1.83977, 0.377268, -1.78815, 0.0563528, -1.68845, 3.79696e-14, -7.13326, -3.92512, 1.78815, -1.48814, -0.126978, -1.78815}, {-1.36896, 0.47902, -9.39941e-13, 0.16503, -0.581747, -1.44665, 0.358318, 2.35271, -4.33994, 1.32337, 0.886963, 9.07744e-13, 1.48814, 0.126978, 1.78815, -0.716472, 4.01544, 5.78659, 7.31562, -1.53881, -1.78815, 0.0563528, -1.68845, 3.9968e-14, -1.83977, -0.377268, 1.78815, -6.78164, -3.67483, -1.78815}, {-1.36896, 0.47902, -9.38462e-13, 0.16503, -0.581747, -1.44665, -0.119439, -0.784236, 1.44665, -3.97012, -2.66089, -2.72546e-12, 1.48814, 0.126978, 1.78815, -0.0563528, 1.68845, -3.70814e-14, 1.83977, 0.377268, -1.78815, 5.53221, -3.60453, 3.79027e-12, -2.49989, 1.94972, 7.57474, -1.01039, 3.00996, -7.57474}, {-1.71772, 0.961283, -4.33994, 1.44665, 0.27723, -1.44665, 0, 1.39654, 0, -2.01922, -1.35334, -1.38544e-12, -8.28248, -1.05552, 5.78659, -1.78815, -2.06889, 1.78815, -0.707741, -6.9163, -1.78815, 9.86504, 7.48225, -1.78815, 0.707741, 1.33015, 1.78815, 2.4959, -0.0533958, 1.7125e-12}, {0.572575, -0.320428, 1.44665, -4.33994, -0.831689, 4.33994, 7.00055e-16, 1.39654, 4.80579e-28, -2.01922, -1.35334, -1.38617e-12, -4.7862, 1.33511, -5.78659, -1.78815, -7.65505, 1.78815, -0.707741, -1.33015, -1.78815, 1.78815, 2.06889, -1.78815, 8.78463, 6.74351, 1.78815, 2.4959, -0.0533958, 1.7134e-12}, {0.572575, -0.320428, 1.44665, 1.44665, 0.27723, -1.44665, 4.20033e-15, -4.18962, 2.88423e-27, -2.01922, -1.35334, -1.38653e-12, -2.4959, 0.0533958, -1.71421e-12, -7.57474, -3.17781, 7.57474, -2.99804, -0.0484352, -7.57474, 1.78815, 2.06889, -1.78815, 0.707741, 1.33015, 1.78815, 10.5728, 5.35997, 7.25997e-12}, {0.572575, -0.320428, 1.44665, 1.44665, 0.27723, -1.44665, 0, 1.39654, 0, 6.05767, 4.06002, 4.16395e-12, -2.4959, 0.0533958, -1.716e-12, -1.78815, -2.06889, 1.78815, -0.707741, -1.33015, -1.78815, -0.502145, 3.3506, -7.57474, -5.07885, 0.221228, 7.57474, 2.4959, -5.63955, 1.71564e-12}, {-4.35597, 0.237767, -4.31288, 0, -1.20934, 0, 0.57469, 0.297534, -1.45022, -2.02668, 0.991065, 0.0125895, -1.79476, 6.43017, -1.77701, -0.710355, 1.12706, 1.79257, -4.80387, -1.45994, 5.81643, 8.81707, -5.09132, -1.84292, 2.50511, 0.269807, -0.0155615, 1.79476, -1.5928, 1.77701}, {1.45199, -0.0792556, 1.43763, 0, 3.62803, 0, 0.57469, 0.297534, -1.45022, -2.02668, 0.991065, 0.0125895, -7.60272, 1.90982, -7.52752, -3.00911, -0.0630793, 7.59343, -2.50511, -0.269807, 0.0155615, 0.710355, -1.12706, -1.79257, 10.6118, -3.69445, -0.0659197, 1.79476, -1.5928, 1.77701}, {1.45199, -0.0792556, 1.43763, 0, -1.20934, 0, -1.72407, -0.892603, 4.35065, -2.02668, 0.991065, 0.0125895, -1.79476, 1.5928, -1.77701, -0.710355, 5.96443, 1.79257, -8.31307, 0.047215, -5.73495, 0.710355, -1.12706, -1.79257, 2.50511, 0.269807, -0.0155615, 9.90148, -5.55705, 1.72665}, {1.45199, -0.0792556, 1.43763, 0, -1.20934, 0, 0.57469, 0.297534, -1.45022, 6.08004, -2.97319, -0.0377686, -1.79476, 1.5928, -1.77701, -0.710355, 1.12706, 1.79257, -2.50511, -0.269807, 0.0155615, -5.09761, -0.810036, -7.54308, 2.50511, 5.10718, -0.0155615, -0.504, -2.78293, 7.57787}, {-1.3922, -1.05489, 4.34859, -1.6823, -0.386683, 0.0104503, -0.635567, 0.941579, 1.4506, 1.8538, -0.906526, -0.0115156, 8.23503, 1.59006, 1.737, 2.86504, -0.685889, -1.80595, 2.75426, -5.36481, -5.8037, -10.2803, 4.31199, 1.85201, -0.211987, 1.59849, 0.00131684, -1.50582, -0.0433277, -1.7788}, {0.464066, 0.35163, -1.44953, 5.0469, 1.16005, -0.0313509, -0.635567, 0.941579, 1.4506, 1.8538, -0.906526, -0.0115156, -0.350444, -1.36319, 7.57692, 5.40731, -4.4522, -7.60833, 0.211987, -1.59849, -0.00131684, -2.86504, 0.685889, 1.80595, -7.6272, 5.2246, 0.0473794, -1.50582, -0.0433277, -1.7788}, {0.464066, 0.35163, -1.44953, -1.6823, -0.386683, 0.0104503, 1.9067, -2.82474, -4.35179, 1.8538, -0.906526, -0.0115156, 1.50582, 0.0433277, 1.7788, 9.59425, 0.860843, -1.84775, -1.64428, -3.00501, 5.7968, -2.86504, 0.685889, 1.80595, -0.211987, 1.59849, 0.00131684, -8.92103, 3.58278, -1.73274}, {0.464066, 0.35163, -1.44953, -1.6823, -0.386683, 0.0104503, -0.635567, 0.941579, 1.4506, -5.56141, 2.71958, 0.0345469, 1.50582, 0.0433277, 1.7788, 2.86504, -0.685889, -1.80595, 0.211987, -1.59849, -0.00131684, -4.72131, -0.720632, 7.60407, 6.51722, 3.14523, -0.0404844, 1.03645, -3.80964, -7.58118}, {-4.91028, -4.91028, 4.91028, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, -1.63676, -1.63676, 4.78823, -10.2738, 6.2275, 10.2738, 3.77476e-15, -3.10862e-15, 3.89543, 6.2275, -10.2738, 10.2738, 6.54704, 6.54704, -23.0483, 0.0754334, 3.97086, -3.97086, 3.97086, 0.0754334, -3.97086}, {1.63676, 1.63676, -1.63676, -4.7272, 4.7272, 4.7272, -1.57573, 1.57573, -1.57573, -1.63676, -1.63676, 4.78823, -10.5179, -6.62248, 10.5179, 6.30294, -6.30294, 10.1984, -0.0754334, -3.97086, 3.97086, -3.07087e-15, 3.59047e-15, -3.89543, 6.62248, 10.5179, -23.1238, 3.97086, 0.0754334, -3.97086}, {1.63676, 1.63676, -1.63676, 1.57573, -1.57573, -1.57573, 4.7272, -4.7272, 4.7272, -1.63676, -1.63676, 4.78823, -3.97086, -0.0754334, 3.97086, -6.30294, 6.30294, 10.1984, -6.62248, -10.5179, 10.5179, -1.51655e-15, 1.81411e-15, -3.89543, 0.0754334, 3.97086, -3.97086, 10.5179, 6.62248, -23.1238}, {1.63676, 1.63676, -1.63676, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, 4.91028, 4.91028, -14.3647, -3.97086, -0.0754334, 3.97086, 3.10862e-15, -2.44249e-15, 3.89543, -0.0754334, -3.97086, 3.97086, -6.54704, -6.54704, 2.65162, -6.2275, 10.2738, 2.33207, 10.2738, -6.2275, 2.33207}, {-1.37636, -1.37636, -5.42796, -2.30348, 0.847989, 0.553233, 1.22922, -1.92224, -0.562043, 0.615468, 0.615468, -1.80051, 11.4941, -5.00722, -5.1332, 1.32785, 1.32785, 0.0108901, -7.00339, 9.49791, 0.706454, -3.78972, -3.78972, 7.19114, 2.0865, -1.80893, 1.54172, -2.28016, 1.61526, 2.92027}, {0.458787, 0.458787, 1.80932, 6.91044, -2.54397, -1.6597, 1.22922, -1.92224, -0.562043, 0.615468, 0.615468, -1.80051, 0.445015, -3.45041, -10.1575, -3.58904, 9.01683, 2.25906, -2.0865, 1.80893, -1.54172, -1.32785, -1.32785, -0.0108901, -0.375375, -4.2708, 8.74375, -2.28016, 1.61526, 2.92027}, {0.458787, 0.458787, 1.80932, -2.30348, 0.847989, 0.553233, -3.68767, 5.76673, 1.68613, 0.615468, 0.615468, -1.80051, 2.28016, -1.61526, -2.92027, 10.5418, -2.0641, -2.20204, -3.92165, -0.0262169, -8.77899, -1.32785, -1.32785, -0.0108901, 2.0865, -1.80893, 1.54172, -4.74204, -0.846607, 10.1223}, {0.458787, 0.458787, 1.80932, -2.30348, 0.847989, 0.553233, 1.22922, -1.92224, -0.562043, -1.8464, -1.8464, 5.40152, 2.28016, -1.61526, -2.92027, 1.32785, 1.32785, 0.0108901, -2.0865, 1.80893, -1.54172, -3.163, -3.163, -7.24816, 11.3004, -5.20089, -0.671213, -7.19706, 9.30424, 5.16845}, {5.36656, -5.36656, -5.36656, 1.41539, 1.85814, -1.41539, 0, 0, -3.15147, 0.373467, -3.64699, 2.778, -5.19992, -11.9405, 5.19992, -1.74951, -2.29678, 5.64494, 2.21115, -2.21115, 14.2902, 0.255645, 16.8847, -16.7569, -2.21115, 2.21115, -1.68428, -0.461631, 4.50793, 0.461631}, {-1.78885, 1.78885, 1.78885, -4.24616, -5.57441, 4.24616, 0, 0, -3.15147, 0.373467, -3.64699, 2.778, 7.61705, -11.6633, -7.61705, -1.74951, -2.29678, 18.2508, 2.21115, -2.21115, 1.68428, 1.74951, 2.29678, -5.64494, -3.70501, 16.7991, -12.7963, -0.461631, 4.50793, 0.461631}, {-1.78885, 1.78885, 1.78885, 1.41539, 1.85814, -1.41539, 0, 0, 9.45441, 0.373467, -3.64699, 2.778, 0.461631, -4.50793, -0.461631, -7.41106, -9.72932, 11.3065, 9.36656, -9.36656, -5.47113, 1.74951, 2.29678, -5.64494, -2.21115, 2.21115, -1.68428, -1.9555, 19.0959, -10.6504}, {-1.78885, 1.78885, 1.78885, 1.41539, 1.85814, -1.41539, 0, 0, -3.15147, -1.1204, 10.941, -8.334, 0.461631, -4.50793, -0.461631, -1.74951, -2.29678, 5.64494, 2.21115, -2.21115, 1.68428, 8.90493, -4.85864, -12.8004, -7.87269, -5.2214, 3.97726, -0.461631, 4.50793, 13.0675}, {5.73547, -8.96906, -2.62245, 0.335815, -3.2793, -0.653542, 1.76841, -1.58918, 1.21052, -0.192397, 1.8788, -1.43113, 0.604796, 13.4752, 2.34148, -2.60096, 6.01778, -0.688458, -6.89635, 4.62559, -7.41885, 3.37055, -13.533, 6.41296, -0.177274, 1.73112, 2.57679, -1.94806, -0.357987, 0.272688}, {-1.91182, 2.98969, 0.874151, -1.00744, 9.83791, 1.96063, 1.76841, -1.58918, 1.21052, -0.192397, 1.8788, -1.43113, 9.59535, -11.6008, -3.76929, -9.67459, 12.3745, -5.53052, 0.177274, -1.73112, -2.57679, 2.60096, -6.01778, 0.688458, 0.592313, -5.78406, 8.30129, -1.94806, -0.357987, 0.272688}, {-1.91182, 2.98969, 0.874151, 0.335815, -3.2793, -0.653542, -5.30522, 4.76754, -3.63155, -0.192397, 1.8788, -1.43113, 1.94806, 0.357987, -0.272688, -3.94422, 19.135, 1.92571, 7.82457, -13.6899, -6.07339, 2.60096, -6.01778, 0.688458, -0.177274, 1.73112, 2.57679, -1.17847, -7.87317, 5.99719}, {-1.91182, 2.98969, 0.874151, 0.335815, -3.2793, -0.653542, 1.76841, -1.58918, 1.21052, 0.57719, -5.63639, 4.29338, 1.94806, 0.357987, -0.272688, -2.60096, 6.01778, -0.688458, 0.177274, -1.73112, -2.57679, 10.2483, -17.9765, -2.80815, -1.52053, 14.8483, 5.19096, -9.02168, 5.99873, -4.56938}, {-0.906892, 2.28653, -2.28852, -1.55284, 0.422175, 1.18312, -0.363916, -0.686733, -0.918335, 1.61446, 1.02673, -1.02763, 7.75714, -1.26844, -7.13784, 2.36925, 0.327011, -0.327296, 1.53183, 4.53788, 3.86554, -8.8271, -4.43394, 4.43781, -0.0761652, -1.79095, -0.192201, -1.54576, -0.420263, 2.40534}, {0.302297, -0.762175, 0.762841, 4.65853, -1.26653, -3.54937, -0.363916, -0.686733, -0.918335, 1.61446, 1.02673, -1.02763, 0.336571, 3.46896, -5.45671, 3.82491, 3.07394, 3.34604, 0.0761652, 1.79095, 0.192201, -2.36925, -0.327011, 0.327296, -6.53402, -5.89788, 3.91832, -1.54576, -0.420263, 2.40534}, {0.302297, -0.762175, 0.762841, -1.55284, 0.422175, 1.18312, 1.09175, 2.0602, 2.75501, 1.61446, 1.02673, -1.02763, 1.54576, 0.420263, -2.40534, 8.58063, -1.36169, -5.05979, -1.13302, 4.83965, -2.85916, -2.36925, -0.327011, 0.327296, -0.0761652, -1.79095, -0.192201, -8.00362, -4.52719, 6.51586}, {0.302297, -0.762175, 0.762841, -1.55284, 0.422175, 1.18312, -0.363916, -0.686733, -0.918335, -4.84339, -3.0802, 3.08289, 1.54576, 0.420263, -2.40534, 2.36925, 0.327011, -0.327296, 0.0761652, 1.79095, 0.192201, -3.57844, 2.72169, -2.72407, 6.13521, -3.47965, -4.9247, -0.0900956, 2.32667, 6.07869}, {-3.9353, 0.360586, -0.360901, -2.42845e-16, -0.455297, -1.14997, 2.03858e-16, 1.40972, 0.194715, -1.31177, -0.834228, 0.834958, -1.62143, 2.53253, 5.87264, 4.81904e-17, -1.17973, 1.18076, -1.62143, -7.23282, -1.16824, 5.24706, 4.51665, -4.52059, 1.62143, 1.59394, 0.389381, 1.62143, -0.711347, -1.27275}, {1.31177, -0.120195, 0.1203, 7.28534e-16, 1.36589, 3.44992, 2.03858e-16, 1.40972, 0.194715, -1.31177, -0.834228, 0.834958, -6.86849, 1.19213, 0.791545, -7.67241e-16, -6.81861, 0.401902, -1.62143, -1.59394, -0.389381, -3.73841e-16, 1.17973, -1.18076, 6.86849, 4.93085, -2.95045, 1.62143, -0.711347, -1.27275}, {1.31177, -0.120195, 0.1203, 7.41337e-17, -0.455297, -1.14997, 6.88614e-16, -4.22916, -0.584146, -1.31177, -0.834228, 0.834958, -1.62143, 0.711347, 1.27275, -1.04445e-16, 0.641455, 5.78066, -6.86849, -1.11316, -0.870582, -5.1774e-16, 1.17973, -1.18076, 1.62143, 1.59394, 0.389381, 6.86849, 2.62557, -4.61258}, {1.31177, -0.120195, 0.1203, -1.68711e-16, -0.455297, -1.14997, -2.56799e-17, 1.40972, 0.194715, 3.9353, 2.50269, -2.50487, -1.62143, 0.711347, 1.27275, 2.4028e-16, -1.17973, 1.18076, -1.62143, -1.59394, -0.389381, -5.24706, 1.66051, -1.66196, 1.62143, 3.41513, 4.98927, 1.62143, -6.35023, -2.05161}, {3.9353, -3.83942e-12, 1.21564, 0, -1.44665, 1.03094, 0, 1.44665, 0.774615, 1.31177, -1.27981e-12, -1.40034, 1.62143, 7.57474, -4.89721, 0, 0, -2.23179, 1.62143, -7.57474, -3.55506, -5.24706, 5.11922e-12, 7.83316, -1.62143, 1.78815, 0.456604, -1.62143, -1.78815, 0.773441}, {-1.31177, 1.28052e-12, -0.405214, 3.53326e-15, 4.33994, -3.09282, 1.17775e-15, 1.44665, 0.774615, 1.31177, -1.28052e-12, -1.40034, 6.86849, 1.78815, 0.847415, -4.71101e-15, -5.78659, -5.33025, 1.62143, -1.78815, -0.456604, 3.2565e-16, -3.17893e-28, 2.23179, -6.86849, 1.78815, 6.05797, -1.62143, -1.78815, 0.773441}, {-1.31177, 1.28099e-12, -0.405214, -9.42202e-16, -1.44665, 1.03094, -2.82661e-15, -4.33994, -2.32384, 1.31177, -1.28099e-12, -1.40034, 1.62143, 1.78815, -0.773441, 3.76881e-15, 5.78659, -6.35555, 6.86849, -1.78815, 1.16425, 3.2565e-16, -3.18011e-28, 2.23179, -1.62143, 1.78815, 0.456604, -6.86849, -1.78815, 6.37481}, {-1.31177, 1.27957e-12, -0.405214, 0, -1.44665, 1.03094, 0, 1.44665, 0.774615, -3.9353, 3.83871e-12, 4.20103, 1.62143, 1.78815, -0.773441, 0, 0, -2.23179, 1.62143, -1.78815, -0.456604, 5.24706, -5.11827e-12, 3.85265, -1.62143, 7.57474, -3.66716, -1.62143, -7.57474, -2.32502}, {-1.71772, -4.33994, -0.49013, 1.44665, -1.44665, -0.51339, 0, 0, -1.80556, -2.01922, 1.97175e-12, 2.15557, -8.28248, 5.78659, 2.4862, -1.78815, 1.78815, 2.86637, -0.707741, -1.78815, 9.25207, 9.86504, -1.78815, -11.4887, 0.707741, 1.78815, -2.02984, 2.4959, -2.43721e-12, -0.432641}, {0.572575, 1.44665, 0.163377, -4.33994, 4.33994, 1.54017, 0, 0, -1.80556, -2.01922, 1.97102e-12, 2.15557, -4.7862, -5.78659, -0.220866, -1.78815, 1.78815, 10.0886, -0.707741, -1.78815, 2.02984, 1.78815, -1.78815, -2.86637, 8.78463, 1.78815, -10.6521, 2.4959, -2.43632e-12, -0.432641}, {0.572575, 1.44665, 0.163377, 1.44665, -1.44665, -0.51339, 0, 0, 5.41667, -2.01922, 1.97175e-12, 2.15557, -2.4959, 2.43685e-12, 0.432641, -7.57474, 7.57474, 4.91994, -2.99804, -7.57474, 1.37634, 1.78815, -1.78815, -2.86637, 0.707741, 1.78815, -2.02984, 10.5728, -1.03242e-11, -9.05492}, {0.572575, 1.44665, 0.163377, 1.44665, -1.44665, -0.51339, 0, 0, -1.80556, 6.05767, -5.91306e-12, -6.46671, -2.4959, 2.43596e-12, 0.432641, -1.78815, 1.78815, 2.86637, -0.707741, -1.78815, 2.02984, -0.502145, -7.57474, -3.51988, -5.07885, 7.57474, 0.0237159, 2.4959, -2.43632e-12, 6.78958}, {5.80677, 0.989763, -2.29829, 1.66654, 1.66654, -0.659606, 0.232016, 0.232016, -2.11105, 0.0370362, -1.56863, 2.00456, -6.33358, -8.31829, 2.5068, -2.34674, -2.34674, 3.42472, 1.17767, -0.807048, 10.1067, 2.1986, 8.62127, -11.443, -2.10573, -0.121017, -1.66246, -0.332567, 1.65215, 0.131628}, {-1.93559, -0.329921, 0.766095, -4.99961, -4.99961, 1.97882, 0.232016, 0.232016, -2.11105, 0.0370362, -1.56863, 2.00456, 8.07492, -0.332464, -3.19601, -3.2748, -3.2748, 11.8689, 2.10573, 0.121017, 1.66246, 2.34674, 2.34674, -3.42472, -2.25388, 6.15351, -9.68071, -0.332567, 1.65215, 0.131628}, {-1.93559, -0.329921, 0.766095, 1.66654, 1.66654, -0.659606, -0.696049, -0.696049, 6.33316, 0.0370362, -1.56863, 2.00456, 0.332567, -1.65215, -0.131628, -9.01289, -9.01289, 6.06315, 9.84809, 1.4407, -1.40192, 2.34674, 2.34674, -3.42472, -2.10573, -0.121017, -1.66246, -0.480712, 7.92668, -7.88662}, {-1.93559, -0.329921, 0.766095, 1.66654, 1.66654, -0.659606, 0.232016, 0.232016, -2.11105, -0.111109, 4.7059, -6.01369, 0.332567, -1.65215, -0.131628, -2.34674, -2.34674, 3.42472, 2.10573, 0.121017, 1.66246, 10.0891, 3.66642, -6.4891, -8.77188, -6.78716, 0.975965, -1.26063, 0.724083, 8.57584}, {-7.02938, -6.32827e-15, -4.44089e-15, 1.74421, 1.74203, 1.33161, -1.54384, -1.54318, 0.610212, -2.54349, -0.198851, -1.94182, -12.0291, -9.12139, -6.97241, -0.247668, -0.245794, -2.40023, 5.18739, 8.08019, -3.19511, 10.4216, 1.0412, 10.1675, 0.98797, -1.90748, 0.754264, 5.05222, 2.15327, 1.64596}, {2.34313, -1.05471e-15, -8.88178e-16, -5.23263, -5.22609, -3.99484, -1.54384, -1.54318, 0.610212, -2.54349, -0.198851, -1.94182, -14.4247, -2.15327, -1.64596, 5.92769, 5.92693, -4.84108, -0.98797, 1.90748, -0.754264, 0.247668, 0.245794, 2.40023, 11.1619, -1.11207, 8.52156, 5.05222, 2.15327, 1.64596}, {2.34313, 2.33147e-15, 1.77636e-15, 1.74421, 1.74203, 1.33161, 4.63152, 4.62954, -1.83064, -2.54349, -0.198851, -1.94182, -5.05222, -2.15327, -1.64596, -7.2245, -7.21392, -7.72668, -10.3605, 1.90748, -0.754264, 0.247668, 0.245794, 2.40023, 0.98797, -1.90748, 0.754264, 15.2262, 2.94867, 9.41326}, {2.34313, -2.77556e-16, -8.88178e-16, 1.74421, 1.74203, 1.33161, -1.54384, -1.54318, 0.610212, 7.63048, 0.596554, 5.82547, -5.05222, -2.15327, -1.64596, -0.247668, -0.245794, -2.40023, -0.98797, 1.90748, -0.754264, -9.12483, 0.245794, 2.40023, -5.98886, -8.8756, -4.57219, 11.2276, 8.32599, -0.794885}, {4.62937, 4.62937, -1.83228, 1.92454e-15, 1.60567, 4.31655e-17, -0.198723, -0.198723, -1.94057, 1.74185, 0.136178, 1.32981, 1.90741, -6.49998, -0.754941, 0.245635, -1.73908, 2.39867, 2.94793, 2.94793, 9.40601, -7.21302, 1.19437, -7.71791, -2.15304, -2.15304, -1.64373, -1.90741, 0.0773091, 0.754941}, {-1.54312, -1.54312, 0.61076, -2.32061e-15, -4.817, -3.91084e-15, -0.198723, -0.198723, -1.94057, 1.74185, 0.136178, 1.32981, 8.0799, 6.09519, -3.19798, 1.04052, -0.94419, 10.1609, 2.15304, 2.15304, 1.64373, -0.245635, 1.73908, -2.39867, -9.12042, -2.69775, -6.96297, -1.90741, 0.0773091, 0.754941}, {-1.54312, -1.54312, 0.61076, 0, 1.60567, 0, 0.596168, 0.596168, 5.82171, 1.74185, 0.136178, 1.32981, 1.90741, -0.0773091, -0.754941, 0.245635, -8.16175, 2.39867, 8.32553, 8.32553, -0.799305, -0.245635, 1.73908, -2.39867, -2.15304, -2.15304, -1.64373, -8.87479, -0.467403, -4.5643}, {-1.54312, -1.54312, 0.61076, -6.94322e-16, 1.60567, -5.30079e-16, -0.198723, -0.198723, -1.94057, -5.22554, -0.408534, -3.98943, 1.90741, -0.0773091, -0.754941, 0.245635, -1.73908, 2.39867, 2.15304, 2.15304, 1.64373, 5.92686, 7.91157, -4.84171, -2.15304, -8.57571, -1.64373, -1.11252, 0.872199, 8.51722}, {-8.88178e-16, 3.03985e-15, -3.8693, 1.44142, -1.45582, 0.146636, 0.577805, 1.45582, -0.186531, -2.01922, -1.68031e-12, -1.24987, -7.54736, 7.62276, -2.36203, -2.4959, -2.07812e-12, 0.0493134, -3.02542, -7.62276, -0.617546, 10.5728, 8.79935e-12, 4.95017, 0.714206, 1.79949, 1.36367, 1.78169, -1.79949, 1.77549}, {0, -1.49289e-16, 1.28977, -4.32425, 4.36745, -0.439908, 0.577805, 1.45582, -0.186531, -2.01922, -1.67873e-12, -1.24987, -1.78169, 1.79949, -6.93455, -4.80711, -5.82327, 0.795439, -0.714206, -1.79949, -1.36367, 2.4959, 2.07523e-12, -0.0493134, 8.79109, 1.79949, 6.36315, 1.78169, -1.79949, 1.77549}, {8.88178e-16, 3.43166e-16, 1.28977, 1.44142, -1.45582, 0.146636, -1.73341, -4.36745, 0.559594, -2.01922, -1.68189e-12, -1.24987, -1.78169, 1.79949, -1.77549, -8.26156, 5.82327, -0.537231, -0.714206, -1.79949, -6.52273, 2.4959, 2.07834e-12, -0.0493134, 0.714206, 1.79949, 1.36367, 9.85858, -1.79949, 6.77497}, {0, 1.48625e-17, 1.28977, 1.44142, -1.45582, 0.146636, 0.577805, 1.45582, -0.186531, 6.05767, 5.03935e-12, 3.74961, -1.78169, 1.79949, -1.77549, -2.4959, -2.07634e-12, 0.0493134, -0.714206, -1.79949, -1.36367, 2.4959, 2.0765e-12, -5.20838, -5.05146, 7.62276, 0.777128, -0.529529, -7.62276, 2.52162}, {-0.0174717, -4.36745, 1.62174, 0.116385, -1.45582, -0.673541, -1.39583, -1.1623e-12, 0.425765, 1.27362, 1.06054e-12, 0.788355, -0.616596, 5.82327, 4.1949, 1.58148, 1.79949, 0.306268, 7.30147, -1.79949, -1.56114, -6.67598, -1.79949, -3.45969, -1.71815, 1.79949, -0.141919, 0.151058, 1.25785e-13, -1.50074}, {0.0058239, 1.45582, -0.54058, -0.349154, 4.36745, 2.02062, -1.39583, -1.1623e-12, 0.425765, 1.27362, 1.06054e-12, 0.788355, -0.174354, -5.82327, 3.66305, 7.16481, 1.79949, -1.39679, 1.71815, -1.79949, 0.141919, -1.58148, -1.79949, -0.306268, -6.81264, 1.79949, -3.29534, 0.151058, 1.25785e-13, -1.50074}, {0.0058239, 1.45582, -0.54058, 0.116385, -1.45582, -0.673541, 4.1875, 3.48841e-12, -1.27729, 1.27362, 1.061e-12, 0.788355, -0.151058, -1.26201e-13, 1.50074, 1.11595, 7.62276, 3.00043, 1.69485, -7.62276, 2.30424, -1.58148, -1.79949, -0.306268, -1.71815, 1.79949, -0.141919, -4.94344, -4.11815e-12, -4.65416}, {0.0058239, 1.45582, -0.54058, 0.116385, -1.45582, -0.673541, -1.39583, -1.16331e-12, 0.425765, -3.82087, -3.18437e-12, -2.36507, -0.151058, -1.26255e-13, 1.50074, 1.58148, 1.79949, 0.306268, 1.71815, -1.79949, 0.141919, -1.60478, -7.62276, 1.85605, -2.18368, 7.62276, 2.55224, 5.73439, 4.77913e-12, -3.20379}, {0.776806, 4.33994, 4.33994, -1.05603, 0, 0, 0.111915, 1.44665, -0.572575, 1.20305, 1.58813e-12, 2.01922, 5.84948, 1.78815, 1.78815, 1.16698, -1.78815, 0.707741, -0.265932, -5.78659, 4.7862, -5.97917, 1.78815, -8.78463, -0.181727, -1.96304e-12, -2.4959, -1.62538, -1.78815, -1.78815}, {-0.258935, -1.44665, -1.44665, 3.16808, 0, 0, 0.111915, 1.44665, -0.572575, 1.20305, 1.58704e-12, 2.01922, 2.66112, 7.57474, 7.57474, 0.719326, -7.57474, 2.99804, 0.181727, 1.96205e-12, 2.4959, -1.16698, 1.78815, -0.707741, -4.99391, -8.30986e-12, -10.5728, -1.62538, -1.78815, -1.78815}, {-0.258935, -1.44665, -1.44665, -1.05603, 0, 0, -0.335745, -4.33994, 1.71772, 1.20305, 1.58813e-12, 2.01922, 1.62538, 1.78815, 1.78815, 5.39109, -1.78815, 0.707741, 1.21747, 5.78659, 8.28248, -1.16698, 1.78815, -0.707741, -0.181727, -1.96304e-12, -2.4959, -6.43757, -1.78815, -9.86504}, {-0.258935, -1.44665, -1.44665, -1.05603, 0, 0, 0.111915, 1.44665, -0.572575, -3.60914, -4.76221e-12, -6.05767, 1.62538, 1.78815, 1.78815, 1.16698, -1.78815, 0.707741, 0.181727, 1.9625e-12, 2.4959, -0.131244, 7.57474, 5.07885, 4.04237, -1.96214e-12, -2.4959, -2.07304, -7.57474, 0.502145}, {-1.50826, -4.33994, -0.250246, -0.36325, 9.14735e-13, 1.16277, 0.624341, -1.44665, 0.0358648, -0.763842, -1.00857e-12, -1.28205, 1.28057, -1.78815, -6.19146, -0.322725, 1.78815, -1.4816, -3.89052, 5.78659, -0.290898, 3.37809, -1.78815, 6.6098, 1.39316, 1.15988e-13, 0.147438, 0.172433, 1.78815, 1.54037}, {0.502752, 1.44665, 0.0834153, 1.08975, -2.74233e-12, -3.48831, 0.624341, -1.44665, 0.0358648, -0.763842, -1.00788e-12, -1.28205, -2.18344, -7.57474, -1.87403, -2.82009, 7.57474, -1.62505, -1.39316, -1.16267e-13, -0.147438, 0.322725, -1.78815, 1.4816, 4.44853, 4.14743e-12, 5.27564, 0.172433, 1.78815, 1.54037}, {0.502752, 1.44665, 0.0834153, -0.36325, 9.139e-13, 1.16277, -1.87302, 4.33994, -0.107594, -0.763842, -1.00765e-12, -1.28205, -0.172433, -1.78815, -1.54037, 1.13028, 1.78815, -6.13268, -3.40417, -5.78659, -0.4811, 0.322725, -1.78815, 1.4816, 1.39316, 1.15882e-13, 0.147438, 3.2278, 1.78815, 6.66858}, {0.502752, 1.44665, 0.0834153, -0.36325, 9.14526e-13, 1.16277, 0.624341, -1.44665, 0.0358648, 2.29153, 3.02502e-12, 3.84615, -0.172433, -1.78815, -1.54037, -0.322725, 1.78815, -1.4816, -1.39316, -1.1632e-13, -0.147438, -1.68828, -7.57474, 1.14793, 2.84616, -3.54214e-12, -4.50365, -2.32493, 7.57474, 1.39691}, {-5.2764, 2.09092, -1.75594, -0.883363, 0.350058, 0.882867, 0.674903, -2.28914, -0.671659, -1.55034, 2.63606, -0.796523, 2.45135, -0.971419, -5.34624, 0.257671, 2.39684, -0.261068, -5.70783, 12.8476, 2.79336, 5.94368, -12.9411, 3.44716, 3.00822, -3.69104, -0.106727, 1.0821, -0.428812, 1.81477}, {1.7588, -0.696974, 0.585315, 2.65009, -1.05017, -2.6486, 0.674903, -2.28914, -0.671659, -1.55034, 2.63606, -0.796523, -8.11729, 3.21671, -4.15603, -2.44194, 11.5534, 2.42557, -3.00822, 3.69104, 0.106727, -0.257671, -2.39684, 0.261068, 9.20957, -14.2353, 3.07936, 1.0821, -0.428812, 1.81477}, {1.7588, -0.696974, 0.585315, -0.883363, 0.350058, 0.882867, -2.02471, 6.86742, 2.01498, -1.55034, 2.63606, -0.796523, -1.0821, 0.428812, -1.81477, 3.79112, 0.996607, -3.79254, -10.0434, 6.47894, -2.23453, -0.257671, -2.39684, 0.261068, 3.00822, -3.69104, -0.106727, 7.28345, -10.973, 5.00086}, {1.7588, -0.696974, 0.585315, -0.883363, 0.350058, 0.882867, 0.674903, -2.28914, -0.671659, 4.65101, -7.90817, 2.38957, -1.0821, 0.428812, -1.81477, 0.257671, 2.39684, -0.261068, -3.00822, 3.69104, 0.106727, -7.29286, 0.391057, -2.08019, 6.54167, -5.09127, -3.6382, -1.61751, 8.72775, 4.50141}, {-0.630826, -5.80799, 0.630826, -0.387946, -0.481968, -1.21772, -0.883035, 0.3495, 0.883035, 1.06071, -1.80353, 0.544962, 1.7714, 0.130593, 6.63599, 1.57102, 0.163739, 0.413696, 4.36372, -4.22303, -4.36372, -5.81384, 7.05038, -2.59355, -0.831577, 2.82503, 0.831577, -0.219612, 1.79728, -1.7651}, {0.210275, 1.936, -0.210275, 1.16384, 1.4459, 3.65317, -0.883035, 0.3495, 0.883035, 1.06071, -1.80353, 0.544962, -0.621489, -9.54126, 2.6062, 5.10316, -1.23426, -3.11845, 0.831577, -2.82503, -0.831577, -1.57102, -0.163739, -0.413696, -5.0744, 10.0391, -1.34827, -0.219612, 1.79728, -1.7651}, {0.210275, 1.936, -0.210275, -0.387946, -0.481968, -1.21772, 2.64911, -1.0485, -2.64911, 1.06071, -1.80353, 0.544962, 0.219612, -1.79728, 1.7651, 3.1228, 2.09161, 5.28459, -0.00952469, -10.569, 0.00952469, -1.57102, -0.163739, -0.413696, -0.831577, 2.82503, 0.831577, -4.46243, 9.01139, -3.94495}, {0.210275, 1.936, -0.210275, -0.387946, -0.481968, -1.21772, -0.883035, 0.3495, 0.883035, -3.18212, 5.41059, -1.63489, 0.219612, -1.79728, 1.7651, 1.57102, 0.163739, 0.413696, 0.831577, -2.82503, -0.831577, -2.41212, -7.90772, 0.427406, 0.720206, 4.7529, 5.70247, 3.31253, 0.399276, -5.29724}, {-4.62915, 1.83443, 4.62655, 1.15731e-16, 1.13013e-15, 2.34313, -1.74201, -1.33137, 1.74389, 0.198956, 1.94285, -2.54483, -1.90731, 0.755828, -10.3625, 2.15324, 1.64567, -5.05183, 7.21395, 7.72698, -7.2249, -2.94906, -9.41706, 15.2312, -0.245923, -2.40149, 0.249326, 1.90731, -0.755828, 0.990019}, {1.54305, -0.611477, -1.54218, -3.38711e-15, -5.71373e-15, -7.02938, -1.74201, -1.33137, 1.74389, 0.198956, 1.94285, -2.54483, -8.07952, 3.20174, 5.17872, 9.12126, 6.97115, -12.0274, 0.245923, 2.40149, -0.249326, -2.15324, -1.64567, 5.05183, -1.04175, -10.1729, 10.4287, 1.90731, -0.755828, 0.990019}, {1.54305, -0.611477, -1.54218, 0, 0, 2.34313, 5.22602, 3.99411, -5.23168, 0.198956, 1.94285, -2.54483, -1.90731, 0.755828, -0.990019, 2.15324, 1.64567, -14.4243, -5.92628, 4.8474, 5.91941, -2.15324, -1.64567, 5.05183, -0.245923, -2.40149, 0.249326, 1.11149, -8.52722, 11.1694}, {1.54305, -0.611477, -1.54218, 1.15731e-16, 1.13013e-15, 2.34313, -1.74201, -1.33137, 1.74389, -0.596868, -5.82855, 7.6345, -1.90731, 0.755828, -0.990019, 2.15324, 1.64567, -5.05183, 0.245923, 2.40149, -0.249326, -8.32544, 0.800244, 11.2206, -0.245923, -2.40149, -9.12318, 8.87534, 4.56966, -5.98555}, {-4.62937, 1.83228, 4.62937, -1.60567, 0, 0, 0.198723, 1.94057, -0.198723, -0.136178, -1.32981, 1.74185, 6.49998, 0.754941, 1.90741, 1.73908, -2.39867, 0.245635, -2.94793, -9.40601, 2.94793, -1.19437, 7.71791, -7.21302, 2.15304, 1.64373, -2.15304, -0.0773091, -0.754941, -1.90741}, {1.54312, -0.61076, -1.54312, 4.817, 0, 0, 0.198723, 1.94057, -0.198723, -0.136178, -1.32981, 1.74185, -6.09519, 3.19798, 8.0799, 0.94419, -10.1609, 1.04052, -2.15304, -1.64373, 2.15304, -1.73908, 2.39867, -0.245635, 2.69775, 6.96297, -9.12042, -0.0773091, -0.754941, -1.90741}, {1.54312, -0.61076, -1.54312, -1.60567, 0, 0, -0.596168, -5.82171, 0.596168, -0.136178, -1.32981, 1.74185, 0.0773091, 0.754941, 1.90741, 8.16175, -2.39867, 0.245635, -8.32553, 0.799305, 8.32553, -1.73908, 2.39867, -0.245635, 2.15304, 1.64373, -2.15304, 0.467403, 4.5643, -8.87479}, {1.54312, -0.61076, -1.54312, -1.60567, 0, 0, 0.198723, 1.94057, -0.198723, 0.408534, 3.98943, -5.22554, 0.0773091, 0.754941, 1.90741, 1.73908, -2.39867, 0.245635, -2.15304, -1.64373, 2.15304, -7.91157, 4.84171, 5.92686, 8.57571, 1.64373, -2.15304, -0.872199, -8.51722, -1.11252}, {3.22749, -4.51945, -2.90569, 1.79579, -0.140217, 1.36925, 0.607375, 0.135762, -1.32575, -1.32734, -1.50203, -1.01206, -8.0731, -1.12793, -8.36668, -2.97048, 0.00550629, -0.0537701, -1.85046, -2.57298, 5.74449, 8.27985, 6.00261, 4.10202, -0.57904, 2.02993, -0.441503, 0.889927, 1.6888, 2.88969}, {-1.07583, 1.50648, 0.968563, -5.38738, 0.42065, -4.10774, 0.607375, 0.135762, -1.32575, -1.32734, -1.50203, -1.01206, 3.41339, -7.71473, -6.76394, -5.39998, -0.537542, 5.24921, 0.57904, -2.02993, 0.441503, 2.97048, -0.00550629, 0.0537701, 4.73032, 8.03804, 3.60675, 0.889927, 1.6888, 2.88969}, {-1.07583, 1.50648, 0.968563, 1.79579, -0.140217, 1.36925, -1.82213, -0.407286, 3.97724, -1.32734, -1.50203, -1.01206, -0.889927, -1.6888, -2.88969, -10.1537, 0.566373, -5.53076, 4.88236, -8.05586, -3.43275, 2.97048, -0.00550629, 0.0537701, -0.57904, 2.02993, -0.441503, 6.19929, 7.69691, 6.93795}, {-1.07583, 1.50648, 0.968563, 1.79579, -0.140217, 1.36925, 0.607375, 0.135762, -1.32575, 3.98202, 4.50609, 3.03619, -0.889927, -1.6888, -2.88969, -2.97048, 0.00550629, -0.0537701, 0.57904, -2.02993, 0.441503, 7.2738, -6.03144, -3.82048, -7.76222, 2.59079, -5.91849, -1.53958, 1.14575, 8.19268}, {0.596103, 2.3292, 5.82108, 0, -2.17235, 0, -1.54296, 0.977878, 0.61239, 1.74166, 1.97087, 1.32797, 0.245608, 12.3343, 2.39842, 1.9072, 1.47645, -0.756955, 8.32463, -4.16055, -0.808098, -8.87383, -9.35994, -4.55492, -2.15281, 0.249041, -1.64146, -0.245608, -3.64486, -2.39842}, {-0.198701, -0.7764, -1.94036, 0, 6.51705, 0, -1.54296, 0.977878, 0.61239, 1.74166, 1.97087, 1.32797, 1.04041, 6.75045, 10.1599, 8.07903, -2.43506, -3.20651, 2.15281, -0.249041, 1.64146, -1.9072, -1.47645, 0.756955, -9.11944, -7.63445, -6.95334, -0.245608, -3.64486, -2.39842}, {-0.198701, -0.7764, -1.94036, 0, -2.17235, 0, 4.62887, -2.93363, -1.83717, 1.74166, 1.97087, 1.32797, 0.245608, 3.64486, 2.39842, 1.9072, 10.1659, -0.756955, 2.94761, 2.85656, 9.4029, -1.9072, -1.47645, 0.756955, -2.15281, 0.249041, -1.64146, -7.21224, -11.5283, -7.71029}, {-0.198701, -0.7764, -1.94036, 0, -2.17235, 0, -1.54296, 0.977878, 0.61239, -5.22497, -5.91262, -3.98391, 0.245608, 3.64486, 2.39842, 1.9072, 1.47645, -0.756955, 2.15281, -0.249041, 1.64146, -1.1124, 1.62915, 8.51839, -2.15281, 8.93844, -1.64146, 5.92622, -7.55637, -4.84797}, {-2.37946, -3.79135, -6.81576, 0.894391, -1.25242, -0.805215, 0.086206, 0.865556, -0.85654, -1.77375, -0.876923, -0.610165, -5.66348, 4.99561, 1.40791, -1.21208, 0.478185, 2.05404, -1.43177, -6.09423, 1.67666, 8.30708, 3.02951, 0.386615, 1.08695, 2.63201, 1.74951, 2.08592, 0.0140506, 1.81295}, {0.793153, 1.26378, 2.27192, -2.68317, 3.75725, 2.41565, 0.086206, 0.865556, -0.85654, -1.77375, -0.876923, -0.610165, -5.25853, -5.06918, -10.9006, -1.55691, -2.98404, 5.4802, -1.08695, -2.63201, -1.74951, 1.21208, -0.478185, -2.05404, 8.18195, 6.1397, 4.19016, 2.08592, 0.0140506, 1.81295}, {0.793153, 1.26378, 2.27192, 0.894391, -1.25242, -0.805215, -0.258618, -2.59667, 2.56962, -1.77375, -0.876923, -0.610165, -2.08592, -0.0140506, -1.81295, -4.78965, 5.48785, 5.2749, -4.25956, -7.68714, -10.8372, 1.21208, -0.478185, -2.05404, 1.08695, 2.63201, 1.74951, 9.18092, 3.52174, 4.25361}, {0.793153, 1.26378, 2.27192, 0.894391, -1.25242, -0.805215, 0.086206, 0.865556, -0.85654, 5.32125, 2.63077, 1.83049, -2.08592, -0.0140506, -1.81295, -1.21208, 0.478185, 2.05404, -1.08695, -2.63201, -1.74951, -1.96053, -5.53332, -11.1417, -2.49062, 7.64167, 4.97037, 1.74109, -3.44817, 5.23911}, {4.58783, -0.200634, 4.23679, 1.50209, -0.951977, -0.596169, -2.69821, -0.462309, 1.0709, 2.7254, 1.34741, 0.937529, -5.97475, 4.90195, 4.86723, 1.47849, 1.74815, -0.586802, 16.0183, 2.33802, -3.86166, -12.3801, -7.13778, -3.16331, -5.22546, -0.48878, -0.421944, -0.0336074, -1.09404, -2.48256}, {-1.52928, 0.0668781, -1.41226, -4.50626, 2.85593, 1.78851, -2.69821, -0.462309, 1.0709, 2.7254, 1.34741, 0.937529, 6.15072, 0.82653, 8.1316, 12.2713, 3.59739, -4.87041, 5.22546, 0.48878, 0.421944, -1.47849, -1.74815, 0.586802, -16.1271, -5.87841, -4.17206, -0.0336074, -1.09404, -2.48256}, {-1.52928, 0.0668781, -1.41226, 1.50209, -0.951977, -0.596169, 8.09463, 1.38693, -3.21271, 2.7254, 1.34741, 0.937529, 0.0336074, 1.09404, 2.48256, -4.52987, 5.55606, 1.79787, 11.3426, 0.221267, 6.07099, -1.47849, -1.74815, 0.586802, -5.22546, -0.48878, -0.421944, -10.9352, -6.48367, -6.23267}, {-1.52928, 0.0668781, -1.41226, 1.50209, -0.951977, -0.596169, -2.69821, -0.462309, 1.0709, -8.1762, -4.04222, -2.81259, 0.0336074, 1.09404, 2.48256, 1.47849, 1.74815, -0.586802, 5.22546, 0.48878, 0.421944, 4.63862, -2.01567, 6.23585, -11.2338, 3.31913, 1.96273, 10.7592, 0.755194, -6.76616}, {1.83443, -2.90588, -4.62915, 0, -2.17235, 0, 1.94285, -0.797826, 0.198956, -1.33137, 2.00155, -1.74201, 0.755828, 10.1773, -1.90731, -2.40149, 3.67134, -0.245923, -9.41706, 2.98018, -2.94906, 7.72698, -11.6775, 7.21395, 1.64567, 0.211121, 2.15324, -0.755828, -1.48788, 1.90731}, {-0.611477, 0.968627, 1.54305, 0, 6.51705, 0, 1.94285, -0.797826, 0.198956, -1.33137, 2.00155, -1.74201, 3.20174, -2.38662, -8.07952, -10.1729, 6.86264, -1.04175, -1.64567, -0.211121, -2.15324, 2.40149, -3.67134, 0.245923, 6.97115, -7.79508, 9.12126, -0.755828, -1.48788, 1.90731}, {-0.611477, 0.968627, 1.54305, 0, -2.17235, 0, -5.82855, 2.39348, -0.596868, -1.33137, 2.00155, -1.74201, 0.755828, 1.48788, -1.90731, -2.40149, 12.3607, -0.245923, 0.800244, -4.08563, -8.32544, 2.40149, -3.67134, 0.245923, 1.64567, 0.211121, 2.15324, 4.56966, -9.49408, 8.87534}, {-0.611477, 0.968627, 1.54305, 0, -2.17235, 0, 1.94285, -0.797826, 0.198956, 3.99411, -6.00465, 5.22602, 0.755828, 1.48788, -1.90731, -2.40149, 3.67134, -0.245923, -1.64567, -0.211121, -2.15324, 4.8474, -7.54585, -5.92628, 1.64567, 8.90052, 2.15324, -8.52722, 1.70342, 1.11149}, {-3.96631, -0.406167, 1.83974, -1.35283, -0.138536, -1.77009, -0.9692, 1.50642, 1.075, 0.999931, -1.50327, 1.30834, 5.44932, 0.558033, 10.0263, 2.87019, -1.6908, 0.859181, 3.44059, -8.05506, -4.87073, -6.86992, 7.70388, -6.09254, 0.436211, 2.02938, 0.570751, -0.0379859, -0.00388992, -2.94596}, {1.3221, 0.135389, -0.613248, 4.0585, 0.415608, 5.31026, -0.9692, 1.50642, 1.075, 0.999931, -1.50327, 1.30834, -5.25042, -0.537666, 5.39896, 6.74699, -7.71647, -3.4408, -0.436211, -2.02938, -0.570751, -2.87019, 1.6908, -0.859181, -3.56351, 8.04247, -4.66261, -0.0379859, -0.00388992, -2.94596}, {1.3221, 0.135389, -0.613248, -1.35283, -0.138536, -1.77009, 2.9076, -4.51925, -3.22499, 0.999931, -1.50327, 1.30834, 0.0379859, 0.00388992, 2.94596, 8.28152, -1.13665, 7.93953, -5.72462, -2.57094, 1.88224, -2.87019, 1.6908, -0.859181, 0.436211, 2.02938, 0.570751, -4.03771, 6.00919, -8.17932}, {1.3221, 0.135389, -0.613248, -1.35283, -0.138536, -1.77009, -0.9692, 1.50642, 1.075, -2.99979, 4.50981, -3.92502, 0.0379859, 0.00388992, 2.94596, 2.87019, -1.6908, 0.859181, -0.436211, -2.02938, -0.570751, -8.1586, 1.14924, 1.59381, 5.84754, 2.58353, 7.6511, 3.83881, -6.02956, -7.24594}, {3.10069, 1.60532, -7.82452, 0.575383, -0.91145, -1.45197, 1.48006, -0.0647255, 1.36681, -1.02187, 1.51128, -2.52301, -1.73519, 5.43384, 4.37871, -2.54066, 1.20662, 0.105263, -6.47211, 1.00034, -10.3806, 6.62816, -7.25175, 9.9868, 0.551894, -0.741434, 4.91335, -0.566342, -1.78804, 1.42915}, {-1.03356, -0.535107, 2.60817, -1.72615, 2.73435, 4.3559, 1.48006, -0.0647255, 1.36681, -1.02187, 1.51128, -2.52301, 4.7006, 3.92847, -11.8619, -8.46088, 1.46552, -5.36196, -0.551894, 0.741434, -4.91335, 2.54066, -1.20662, -0.105263, 4.63939, -6.78657, 15.0054, -0.566342, -1.78804, 1.42915}, {-1.03356, -0.535107, 2.60817, 0.575383, -0.91145, -1.45197, -4.44017, 0.194177, -4.10042, -1.02187, 1.51128, -2.52301, 0.566342, 1.78804, -1.42915, -4.84219, 4.85242, 5.91313, 3.58236, 2.88186, -15.346, 2.54066, -1.20662, -0.105263, 0.551894, -0.741434, 4.91335, 3.52116, -7.83317, 11.5212}, {-1.03356, -0.535107, 2.60817, 0.575383, -0.91145, -1.45197, 1.48006, -0.0647255, 1.36681, 3.06562, -4.53385, 7.56904, 0.566342, 1.78804, -1.42915, -2.54066, 1.20662, 0.105263, -0.551894, 0.741434, -4.91335, 6.67491, 0.933809, -10.538, -1.74964, 2.90437, 10.7212, -6.48656, -1.52914, -4.03807}, {-2.63316, -2.47826, 0.36108, 0.802811, -1.2478, -0.890444, -2.35614, 1.42089, -0.657266, 0.675604, -0.999172, 1.66807, -5.2885, 5.51247, 4.8112, 1.92002, -0.213947, 1.91307, 11.252, -8.46096, 3.59026, -4.62243, 4.21063, -8.58536, -1.82742, 2.77741, -0.961199, 2.07725, -0.52127, -1.24942}, {0.877721, 0.826085, -0.12036, -2.40843, 3.7434, 2.67133, -2.35614, 1.42089, -0.657266, 0.675604, -0.999172, 1.66807, -5.58814, -2.78307, 1.73086, 11.3446, -5.8975, 4.54214, 1.82742, -2.77741, 0.961199, -1.92002, 0.213947, -1.91307, -4.52984, 6.7741, -7.63348, 2.07725, -0.52127, -1.24942}, {0.877721, 0.826085, -0.12036, 0.802811, -1.2478, -0.890444, 7.06841, -4.26266, 1.9718, 0.675604, -0.999172, 1.66807, -2.07725, 0.52127, 1.24942, -1.29123, 4.77726, 5.47485, -1.68346, -6.08175, 1.44264, -1.92002, 0.213947, -1.91307, -1.82742, 2.77741, -0.961199, -0.625163, 3.47542, -7.9217}, {0.877721, 0.826085, -0.12036, 0.802811, -1.2478, -0.890444, -2.35614, 1.42089, -0.657266, -2.02681, 2.99752, -5.00421, -2.07725, 0.52127, 1.24942, 1.92002, -0.213947, 1.91307, 1.82742, -2.77741, 0.961199, -5.4309, -3.09039, -1.43164, -5.03867, 7.76862, 2.60058, 11.5018, -6.20482, 1.37964}, {-0.815557, 4.36562, -0.135176, -1.95424, 0.460185, -0.243585, -0.0205487, 0.870319, -1.11219, 1.70294, 0.124702, 1.31071, 9.89652, -0.610825, 1.21973, 2.44098, -1.64459, 1.67583, -0.228434, -2.75832, 5.76778, -9.25274, 1.14578, -6.91867, 0.310628, -0.722961, -1.31904, -2.07955, -1.22991, -0.245392}, {0.271852, -1.45521, 0.0450587, 5.86273, -1.38055, 0.730756, -0.0205487, 0.870319, -1.11219, 1.70294, 0.124702, 1.31071, 0.99214, 7.05074, 0.0651576, 2.52317, -5.12587, 6.12457, -0.310628, 0.722961, 1.31904, -2.44098, 1.64459, -1.67583, -6.50113, -1.22177, -6.56189, -2.07955, -1.22991, -0.245392}, {0.271852, -1.45521, 0.0450587, -1.95424, 0.460185, -0.243585, 0.0616461, -2.61096, 3.33656, 1.70294, 0.124702, 1.31071, 2.07955, 1.22991, 0.245392, 10.258, -3.48533, 2.65017, -1.39804, 6.54379, 1.13881, -2.44098, 1.64459, -1.67583, 0.310628, -0.722961, -1.31904, -8.89131, -1.72872, -5.48824}, {0.271852, -1.45521, 0.0450587, -1.95424, 0.460185, -0.243585, -0.0205487, 0.870319, -1.11219, -5.10882, -0.374107, -3.93214, 2.07955, 1.22991, 0.245392, 2.44098, -1.64459, 1.67583, -0.310628, 0.722961, 1.31904, -3.52839, 7.46542, -1.85606, 8.1276, -2.5637, -0.344701, -1.99736, -4.71119, 4.20335}, {-2.82343, -2.82223, 1.11598, 0.652804, 0.651093, 1.763, 0.935946, -1.40658, 0.556196, -2.52989, -0.185258, -1.9472, -4.58144, -4.57199, -8.77136, -1.9638, 0.933829, -2.86668, -6.064, 6.20211, -2.45247, 12.0834, -0.192795, 10.6555, 2.32021, -0.575803, 0.227687, 1.97023, 1.96762, 1.71938}, {0.941145, 0.940742, -0.371993, -1.95841, -1.95328, -5.28899, 0.935946, -1.40658, 0.556196, -2.52989, -0.185258, -1.9472, -5.73481, -5.73058, -0.231403, -5.70759, 6.56014, -5.09146, -2.32021, 0.575803, -0.227687, 1.9638, -0.933829, 2.86668, 12.4398, 0.165231, 8.01649, 1.97023, 1.96762, 1.71938}, {0.941145, 0.940742, -0.371993, 0.652804, 0.651093, 1.763, -2.80784, 4.21973, -1.66859, -2.52989, -0.185258, -1.9472, -1.97023, -1.96762, -1.71938, -4.57502, -1.67054, -9.91867, -6.08479, -3.18716, 1.26029, 1.9638, -0.933829, 2.86668, 2.32021, -0.575803, 0.227687, 12.0898, 2.70865, 9.50817}, {0.941145, 0.940742, -0.371993, 0.652804, 0.651093, 1.763, 0.935946, -1.40658, 0.556196, 7.58968, 0.555775, 5.8416, -1.97023, -1.96762, -1.71938, -1.9638, 0.933829, -2.86668, -2.32021, 0.575803, -0.227687, -1.80078, -4.6968, 4.35465, -0.291002, -3.18018, -6.8243, -1.77356, 7.59392, -0.505409}, {4.38876, 6.50951, 0.486449, -0.364196, 1.94951, -0.0603643, 0.336809, -1.04259, -1.05295, 1.49031, 1.26291, 1.27547, 3.71522, -7.52572, 0.5165, 0.0338521, -1.12102, 1.37614, 0.0447138, 8.14114, 5.71377, -5.99508, -3.93064, -6.47801, -1.39195, -3.97078, -1.50195, -2.25844, -0.272335, -0.275043}, {-1.46292, -2.16984, -0.16215, 1.09259, -5.84854, 0.181093, 0.336809, -1.04259, -1.05295, 1.49031, 1.26291, 1.27547, 8.11012, 8.95169, 0.923642, -1.31338, 3.04934, 5.58796, 1.39195, 3.97078, 1.50195, -0.0338521, 1.12102, -1.37614, -7.35318, -9.02244, -6.60383, -2.25844, -0.272335, -0.275043}, {-1.46292, -2.16984, -0.16215, -0.364196, 1.94951, -0.0603643, -1.01043, 3.12777, 3.15886, 1.49031, 1.26291, 1.27547, 2.25844, 0.272335, 0.275043, 1.49064, -8.91908, 1.6176, 7.24363, 12.6501, 2.15055, -0.0338521, 1.12102, -1.37614, -1.39195, -3.97078, -1.50195, -8.21966, -5.32399, -5.37692}, {-1.46292, -2.16984, -0.16215, -0.364196, 1.94951, -0.0603643, 0.336809, -1.04259, -1.05295, -4.47092, -3.78874, -3.82641, 2.25844, 0.272335, 0.275043, 0.0338521, -1.12102, 1.37614, 1.39195, 3.97078, 1.50195, 5.81783, 9.80037, -0.727539, 0.0648337, -11.7688, -1.26049, -3.60567, 3.89803, 3.93678}, {-4.70136, 0, -1.77636e-15, -0.960805, 1.44394, -0.570969, 1.09021, -0.00626368, 2.02293, -1.69653, -1.43767, -1.45196, 3.09377, -7.56055, 2.98963, -0.159958, -1.77706, -1.79473, -7.6455, 0.0327971, -10.5922, 6.94608, 7.52775, 7.60258, 3.28465, -0.00774234, 2.50048, 0.749448, 1.7848, -0.705756}, {1.56712, -2.22045e-16, 1.11022e-15, 2.88242, -4.33181, 1.71291, 1.09021, -0.00626368, 2.02293, -1.69653, -1.43767, -1.45196, -7.01793, -1.7848, 0.705756, -4.52081, -1.75201, -9.88646, -3.28465, 0.00774234, -2.50048, 0.159958, 1.77706, 1.79473, 10.0708, 5.74295, 8.30834, 0.749448, 1.7848, -0.705756}, {1.56712, -8.88178e-16, -8.88178e-16, -0.960805, 1.44394, -0.570969, -3.27064, 0.018791, -6.0688, -1.69653, -1.43767, -1.45196, -0.749448, -1.7848, 0.705756, 3.68326, -7.5528, 0.489149, -9.55313, 0.00774234, -2.50048, 0.159958, 1.77706, 1.79473, 3.28465, -0.00774234, 2.50048, 7.53557, 7.53549, 5.1021}, {1.56712, 0, 0, -0.960805, 1.44394, -0.570969, 1.09021, -0.00626368, 2.02293, 5.08959, 4.31302, 4.35589, -0.749448, -1.7848, 0.705756, -0.159958, -1.77706, -1.79473, -3.28465, 0.00774234, -2.50048, -6.10853, 1.77706, 1.79473, 7.12787, -5.78349, 4.78436, -3.61141, 1.80986, -8.79749}}
   ]
   + total size  : 6.8e+02kB
  ]
  + total size  : 6.8e+02kB
 ]
 
diff --git a/test/test_fem/test_integrate_tetrahedron_4.verified b/test/test_fem/test_integrate_tetrahedron_4.verified
index b7131ed74..d00d0fcc7 100644
--- a/test/test_fem/test_integrate_tetrahedron_4.verified
+++ b/test/test_fem/test_integrate_tetrahedron_4.verified
@@ -1,172 +1,172 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 3
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 131
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 48
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
        ]
-        (not_ghost:triangle_3) [
+        (not_ghost:_triangle_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_3
+        + id             : mesh:connectivities:_triangle_3
         + size           : 240
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{45, 49, 35}, {45, 8, 50}, {46, 38, 51}, {23, 47, 52}, {46, 50, 10}, {37, 49, 47}, {25, 52, 48}, {40, 48, 51}, {35, 49, 36}, {38, 39, 51}, {8, 9, 50}, {23, 52, 24}, {36, 49, 37}, {9, 10, 50}, {39, 40, 51}, {24, 52, 25}, {45, 44, 49}, {45, 50, 44}, {46, 44, 50}, {44, 47, 49}, {46, 51, 44}, {44, 52, 47}, {44, 51, 48}, {44, 48, 52}, {45, 35, 53}, {45, 53, 8}, {46, 54, 38}, {23, 55, 47}, {46, 10, 54}, {37, 47, 55}, {25, 48, 56}, {40, 56, 48}, {4, 37, 55}, {6, 53, 35}, {7, 54, 10}, {7, 38, 54}, {6, 8, 53}, {5, 56, 40}, {4, 55, 23}, {5, 25, 56}, {11, 62, 58}, {14, 63, 59}, {8, 64, 60}, {17, 65, 61}, {10, 58, 64}, {19, 60, 65}, {13, 59, 62}, {16, 61, 63}, {14, 15, 63}, {11, 12, 62}, {17, 18, 65}, {8, 9, 64}, {12, 13, 62}, {15, 16, 63}, {9, 10, 64}, {18, 19, 65}, {58, 62, 57}, {59, 57, 62}, {59, 63, 57}, {61, 57, 63}, {58, 57, 64}, {60, 64, 57}, {60, 57, 65}, {61, 65, 57}, {11, 58, 67}, {14, 59, 66}, {8, 60, 69}, {17, 61, 68}, {10, 67, 58}, {19, 69, 60}, {13, 66, 59}, {16, 68, 61}, {2, 68, 16}, {3, 66, 13}, {6, 69, 19}, {7, 67, 10}, {7, 11, 67}, {3, 14, 66}, {6, 8, 69}, {2, 17, 68}, {26, 75, 71}, {29, 76, 72}, {23, 77, 73}, {20, 78, 74}, {25, 71, 77}, {22, 73, 78}, {28, 72, 75}, {31, 74, 76}, {29, 30, 76}, {26, 27, 75}, {20, 21, 78}, {23, 24, 77}, {27, 28, 75}, {30, 31, 76}, {24, 25, 77}, {21, 22, 78}, {71, 75, 70}, {72, 70, 75}, {72, 76, 70}, {70, 76, 74}, {71, 70, 77}, {70, 73, 77}, {70, 78, 73}, {70, 74, 78}, {26, 71, 80}, {29, 72, 79}, {23, 73, 82}, {20, 74, 81}, {25, 80, 71}, {22, 82, 73}, {28, 79, 72}, {31, 81, 74}, {0, 81, 31}, {1, 79, 28}, {4, 82, 22}, {5, 80, 25}, {5, 26, 80}, {1, 29, 79}, {4, 23, 82}, {0, 20, 81}, {41, 84, 88}, {14, 89, 84}, {29, 86, 90}, {32, 91, 85}, {16, 85, 89}, {43, 88, 86}, {34, 87, 91}, {31, 90, 87}, {41, 88, 42}, {14, 15, 89}, {29, 90, 30}, {32, 33, 91}, {42, 88, 43}, {15, 16, 89}, {33, 34, 91}, {30, 90, 31}, {84, 89, 83}, {84, 83, 88}, {85, 83, 89}, {86, 88, 83}, {85, 91, 83}, {86, 83, 90}, {87, 90, 83}, {87, 83, 91}, {14, 84, 92}, {41, 92, 84}, {29, 94, 86}, {32, 85, 93}, {43, 86, 94}, {16, 93, 85}, {31, 87, 95}, {34, 95, 87}, {1, 43, 94}, {2, 93, 16}, {3, 92, 41}, {3, 14, 92}, {1, 94, 29}, {2, 32, 93}, {0, 31, 95}, {0, 95, 34}, {32, 97, 101}, {17, 102, 97}, {35, 103, 98}, {20, 99, 104}, {19, 98, 102}, {34, 101, 99}, {22, 104, 100}, {37, 100, 103}, {32, 101, 33}, {35, 36, 103}, {17, 18, 102}, {20, 104, 21}, {33, 101, 34}, {18, 19, 102}, {36, 37, 103}, {21, 104, 22}, {97, 96, 101}, {97, 102, 96}, {98, 96, 102}, {99, 101, 96}, {98, 103, 96}, {99, 96, 104}, {100, 96, 103}, {100, 104, 96}, {32, 105, 97}, {17, 97, 105}, {35, 98, 106}, {20, 107, 99}, {19, 106, 98}, {34, 99, 107}, {22, 100, 108}, {37, 108, 100}, {0, 34, 107}, {2, 105, 32}, {6, 106, 19}, {6, 35, 106}, {2, 17, 105}, {4, 108, 37}, {0, 107, 20}, {4, 22, 108}, {11, 110, 115}, {38, 114, 110}, {26, 116, 112}, {41, 111, 117}, {13, 115, 111}, {40, 112, 114}, {43, 117, 113}, {28, 113, 116}, {11, 115, 12}, {38, 39, 114}, {26, 27, 116}, {41, 117, 42}, {39, 40, 114}, {12, 115, 13}, {42, 117, 43}, {27, 28, 116}, {109, 110, 114}, {109, 115, 110}, {111, 115, 109}, {112, 109, 114}, {111, 109, 117}, {112, 116, 109}, {113, 109, 116}, {113, 117, 109}, {11, 118, 110}, {38, 110, 118}, {26, 112, 120}, {41, 119, 111}, {40, 120, 112}, {13, 111, 119}, {28, 121, 113}, {43, 113, 121}, {5, 120, 40}, {3, 13, 119}, {7, 38, 118}, {7, 118, 11}, {5, 26, 120}, {3, 119, 41}, {1, 121, 28}, {1, 43, 121}}
        ]
-        (not_ghost:tetrahedron_4) [
+        (not_ghost:_tetrahedron_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:tetrahedron_4
+        + id             : mesh:connectivities:_tetrahedron_4
         + size           : 341
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{124, 123, 125, 129}, {43, 86, 130, 88}, {70, 124, 129, 126}, {48, 77, 25, 52}, {31, 0, 81, 95}, {0, 107, 81, 95}, {126, 91, 87, 101}, {124, 70, 129, 125}, {43, 121, 113, 130}, {55, 100, 82, 108}, {100, 55, 82, 73}, {23, 55, 73, 82}, {71, 75, 125, 112}, {123, 44, 124, 125}, {43, 113, 117, 130}, {94, 43, 86, 130}, {122, 123, 128, 129}, {46, 10, 58, 50}, {99, 107, 81, 20}, {125, 112, 116, 109}, {79, 72, 28, 130}, {123, 122, 125, 129}, {67, 11, 7, 118}, {123, 127, 128, 129}, {124, 44, 49, 47}, {17, 65, 18, 102}, {76, 90, 30, 31}, {54, 10, 7, 67}, {9, 10, 50, 64}, {38, 54, 7, 118}, {123, 124, 127, 129}, {12, 115, 62, 13}, {97, 61, 102, 127}, {45, 53, 8, 69}, {38, 114, 39, 51}, {125, 75, 129, 116}, {122, 44, 123, 125}, {71, 70, 77, 124}, {114, 112, 125, 109}, {32, 93, 97, 85}, {53, 6, 8, 69}, {117, 128, 129, 109}, {63, 61, 16, 89}, {76, 90, 31, 74}, {61, 85, 16, 89}, {65, 123, 60, 98}, {55, 100, 47, 73}, {100, 47, 103, 37}, {96, 123, 103, 124}, {55, 23, 4, 82}, {78, 100, 22, 73}, {61, 85, 89, 127}, {61, 127, 89, 63}, {121, 43, 94, 130}, {108, 22, 82, 4}, {14, 92, 3, 66}, {78, 21, 104, 20}, {100, 78, 104, 124}, {14, 15, 89, 63}, {90, 126, 87, 74}, {90, 76, 126, 74}, {3, 13, 66, 119}, {108, 55, 4, 82}, {58, 11, 110, 62}, {11, 115, 110, 62}, {57, 123, 60, 65}, {122, 58, 110, 62}, {115, 122, 110, 62}, {117, 128, 88, 129}, {86, 129, 130, 88}, {70, 71, 125, 124}, {107, 0, 34, 95}, {122, 114, 125, 109}, {126, 86, 83, 129}, {92, 3, 66, 119}, {129, 86, 83, 88}, {128, 41, 119, 111}, {117, 128, 111, 41}, {11, 12, 115, 62}, {33, 32, 101, 91}, {70, 124, 126, 74}, {100, 124, 47, 73}, {96, 124, 126, 127}, {78, 70, 124, 73}, {90, 76, 30, 29}, {96, 123, 124, 127}, {15, 63, 16, 89}, {121, 79, 1, 28}, {76, 70, 126, 74}, {122, 114, 109, 110}, {129, 117, 130, 88}, {123, 44, 49, 124}, {26, 80, 5, 120}, {123, 65, 102, 98}, {57, 123, 127, 128}, {117, 128, 109, 111}, {70, 78, 124, 74}, {95, 107, 81, 87}, {55, 100, 37, 47}, {77, 24, 25, 52}, {100, 78, 22, 104}, {56, 71, 25, 48}, {14, 59, 89, 84}, {96, 100, 104, 124}, {2, 105, 68, 17}, {124, 123, 103, 49}, {123, 57, 60, 64}, {44, 124, 52, 47}, {71, 112, 48, 56}, {41, 117, 88, 42}, {99, 96, 126, 101}, {97, 85, 127, 101}, {34, 91, 101, 87}, {128, 127, 83, 129}, {126, 90, 83, 86}, {75, 71, 125, 70}, {99, 126, 74, 87}, {23, 55, 47, 73}, {100, 78, 124, 73}, {32, 91, 85, 101}, {57, 122, 62, 58}, {71, 77, 25, 48}, {70, 77, 124, 73}, {114, 38, 110, 51}, {114, 40, 39, 51}, {59, 14, 89, 63}, {53, 106, 35, 6}, {45, 123, 98, 60}, {99, 126, 87, 101}, {106, 53, 69, 6}, {46, 122, 110, 51}, {128, 122, 129, 109}, {124, 100, 47, 103}, {107, 99, 81, 87}, {125, 44, 48, 51}, {38, 46, 110, 51}, {44, 123, 49, 45}, {124, 47, 49, 103}, {36, 35, 49, 103}, {46, 122, 51, 44}, {54, 67, 7, 118}, {10, 64, 58, 50}, {122, 114, 51, 125}, {11, 58, 118, 67}, {44, 122, 51, 125}, {58, 11, 118, 110}, {22, 100, 82, 73}, {46, 122, 58, 110}, {108, 100, 82, 22}, {45, 60, 8, 50}, {99, 81, 74, 20}, {60, 45, 8, 69}, {75, 71, 26, 112}, {107, 0, 81, 20}, {126, 91, 83, 87}, {31, 90, 87, 74}, {34, 107, 95, 87}, {126, 96, 127, 101}, {91, 126, 127, 101}, {92, 14, 84, 66}, {105, 32, 2, 93}, {47, 49, 103, 37}, {115, 122, 109, 110}, {33, 91, 101, 34}, {49, 36, 103, 37}, {112, 71, 48, 125}, {59, 128, 89, 84}, {19, 65, 60, 98}, {124, 126, 127, 129}, {126, 91, 127, 83}, {31, 81, 74, 87}, {81, 99, 74, 87}, {117, 113, 129, 130}, {84, 128, 88, 41}, {113, 117, 129, 109}, {90, 76, 29, 86}, {65, 19, 102, 98}, {55, 100, 108, 37}, {96, 123, 102, 98}, {14, 59, 84, 66}, {100, 96, 103, 124}, {32, 105, 97, 93}, {99, 34, 101, 87}, {127, 126, 83, 129}, {94, 29, 130, 86}, {19, 106, 69, 6}, {128, 117, 88, 41}, {123, 96, 103, 98}, {46, 38, 110, 118}, {77, 23, 24, 52}, {19, 65, 102, 18}, {121, 79, 28, 130}, {46, 54, 38, 118}, {113, 121, 28, 130}, {108, 55, 37, 4}, {112, 75, 116, 26}, {56, 40, 5, 120}, {75, 27, 28, 116}, {127, 85, 89, 83}, {66, 59, 84, 128}, {85, 61, 97, 127}, {122, 125, 129, 109}, {26, 75, 116, 27}, {128, 129, 83, 88}, {122, 123, 57, 128}, {40, 112, 56, 48}, {80, 56, 25, 5}, {84, 128, 83, 88}, {91, 85, 127, 83}, {57, 61, 63, 127}, {123, 122, 64, 50}, {3, 92, 41, 119}, {44, 123, 45, 50}, {47, 124, 52, 73}, {79, 72, 130, 29}, {32, 85, 97, 101}, {2, 93, 16, 68}, {105, 93, 68, 97}, {97, 61, 68, 17}, {85, 91, 127, 101}, {96, 97, 127, 101}, {105, 97, 68, 17}, {124, 77, 52, 73}, {56, 71, 80, 25}, {60, 64, 8, 50}, {64, 9, 8, 50}, {65, 61, 102, 17}, {93, 105, 68, 2}, {61, 97, 102, 17}, {78, 21, 22, 104}, {23, 47, 52, 73}, {112, 40, 56, 120}, {80, 56, 5, 120}, {31, 95, 81, 87}, {99, 107, 34, 87}, {58, 46, 110, 118}, {43, 121, 94, 1}, {112, 75, 125, 116}, {122, 114, 110, 51}, {77, 23, 52, 73}, {90, 126, 83, 87}, {13, 66, 111, 59}, {111, 66, 13, 119}, {66, 128, 111, 59}, {111, 128, 66, 119}, {60, 50, 123, 64}, {123, 50, 60, 45}, {74, 104, 126, 99}, {104, 20, 74, 78}, {74, 20, 104, 99}, {45, 69, 106, 53}, {45, 106, 35, 53}, {35, 106, 45, 98}, {129, 116, 109, 125}, {109, 116, 129, 113}, {54, 10, 58, 46}, {58, 10, 54, 67}, {54, 58, 118, 46}, {118, 58, 54, 67}, {113, 129, 75, 116}, {28, 113, 75, 116}, {129, 75, 70, 72}, {129, 70, 75, 125}, {43, 117, 88, 130}, {88, 117, 43, 42}, {56, 112, 80, 71}, {56, 80, 112, 120}, {80, 112, 26, 71}, {80, 26, 112, 120}, {74, 124, 104, 78}, {74, 104, 124, 126}, {126, 104, 96, 99}, {96, 104, 126, 124}, {62, 128, 57, 59}, {57, 128, 62, 122}, {130, 29, 121, 79}, {121, 29, 130, 94}, {29, 1, 121, 79}, {121, 1, 29, 94}, {58, 50, 122, 46}, {122, 50, 58, 64}, {97, 93, 61, 85}, {97, 61, 93, 68}, {61, 93, 16, 85}, {61, 16, 93, 68}, {59, 89, 127, 63}, {127, 89, 59, 128}, {59, 127, 57, 63}, {57, 127, 59, 128}, {86, 76, 126, 90}, {86, 126, 76, 129}, {125, 51, 112, 114}, {112, 51, 125, 48}, {51, 40, 112, 114}, {112, 40, 51, 48}, {48, 124, 77, 52}, {44, 48, 124, 125}, {44, 124, 48, 52}, {61, 102, 123, 65}, {123, 102, 61, 127}, {61, 123, 57, 65}, {57, 123, 61, 127}, {106, 19, 60, 98}, {60, 19, 106, 69}, {106, 60, 45, 98}, {45, 60, 106, 69}, {122, 64, 57, 123}, {57, 64, 122, 58}, {76, 129, 70, 72}, {70, 129, 76, 126}, {84, 66, 119, 92}, {84, 119, 66, 128}, {41, 84, 119, 92}, {41, 119, 84, 128}, {124, 71, 48, 77}, {124, 48, 71, 125}, {128, 89, 83, 127}, {83, 89, 128, 84}, {111, 128, 62, 59}, {62, 111, 13, 115}, {13, 111, 62, 59}, {122, 50, 44, 46}, {44, 50, 122, 123}, {102, 127, 96, 97}, {96, 127, 102, 123}, {103, 123, 45, 49}, {103, 45, 123, 98}, {35, 103, 45, 49}, {35, 45, 103, 98}, {28, 130, 75, 113}, {75, 130, 28, 72}, {130, 129, 75, 113}, {75, 129, 130, 72}, {29, 130, 76, 72}, {76, 130, 29, 86}, {130, 129, 76, 72}, {76, 129, 130, 86}, {62, 111, 122, 128}, {122, 111, 62, 115}, {111, 109, 122, 128}, {122, 109, 111, 115}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 131
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 48
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
        ]
-        (not_ghost:triangle_3) [
+        (not_ghost:_triangle_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_3
+        + id             : mesh:connectivities:_triangle_3
         + size           : 240
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{45, 49, 35}, {45, 8, 50}, {46, 38, 51}, {23, 47, 52}, {46, 50, 10}, {37, 49, 47}, {25, 52, 48}, {40, 48, 51}, {35, 49, 36}, {38, 39, 51}, {8, 9, 50}, {23, 52, 24}, {36, 49, 37}, {9, 10, 50}, {39, 40, 51}, {24, 52, 25}, {45, 44, 49}, {45, 50, 44}, {46, 44, 50}, {44, 47, 49}, {46, 51, 44}, {44, 52, 47}, {44, 51, 48}, {44, 48, 52}, {45, 35, 53}, {45, 53, 8}, {46, 54, 38}, {23, 55, 47}, {46, 10, 54}, {37, 47, 55}, {25, 48, 56}, {40, 56, 48}, {4, 37, 55}, {6, 53, 35}, {7, 54, 10}, {7, 38, 54}, {6, 8, 53}, {5, 56, 40}, {4, 55, 23}, {5, 25, 56}, {11, 62, 58}, {14, 63, 59}, {8, 64, 60}, {17, 65, 61}, {10, 58, 64}, {19, 60, 65}, {13, 59, 62}, {16, 61, 63}, {14, 15, 63}, {11, 12, 62}, {17, 18, 65}, {8, 9, 64}, {12, 13, 62}, {15, 16, 63}, {9, 10, 64}, {18, 19, 65}, {58, 62, 57}, {59, 57, 62}, {59, 63, 57}, {61, 57, 63}, {58, 57, 64}, {60, 64, 57}, {60, 57, 65}, {61, 65, 57}, {11, 58, 67}, {14, 59, 66}, {8, 60, 69}, {17, 61, 68}, {10, 67, 58}, {19, 69, 60}, {13, 66, 59}, {16, 68, 61}, {2, 68, 16}, {3, 66, 13}, {6, 69, 19}, {7, 67, 10}, {7, 11, 67}, {3, 14, 66}, {6, 8, 69}, {2, 17, 68}, {26, 75, 71}, {29, 76, 72}, {23, 77, 73}, {20, 78, 74}, {25, 71, 77}, {22, 73, 78}, {28, 72, 75}, {31, 74, 76}, {29, 30, 76}, {26, 27, 75}, {20, 21, 78}, {23, 24, 77}, {27, 28, 75}, {30, 31, 76}, {24, 25, 77}, {21, 22, 78}, {71, 75, 70}, {72, 70, 75}, {72, 76, 70}, {70, 76, 74}, {71, 70, 77}, {70, 73, 77}, {70, 78, 73}, {70, 74, 78}, {26, 71, 80}, {29, 72, 79}, {23, 73, 82}, {20, 74, 81}, {25, 80, 71}, {22, 82, 73}, {28, 79, 72}, {31, 81, 74}, {0, 81, 31}, {1, 79, 28}, {4, 82, 22}, {5, 80, 25}, {5, 26, 80}, {1, 29, 79}, {4, 23, 82}, {0, 20, 81}, {41, 84, 88}, {14, 89, 84}, {29, 86, 90}, {32, 91, 85}, {16, 85, 89}, {43, 88, 86}, {34, 87, 91}, {31, 90, 87}, {41, 88, 42}, {14, 15, 89}, {29, 90, 30}, {32, 33, 91}, {42, 88, 43}, {15, 16, 89}, {33, 34, 91}, {30, 90, 31}, {84, 89, 83}, {84, 83, 88}, {85, 83, 89}, {86, 88, 83}, {85, 91, 83}, {86, 83, 90}, {87, 90, 83}, {87, 83, 91}, {14, 84, 92}, {41, 92, 84}, {29, 94, 86}, {32, 85, 93}, {43, 86, 94}, {16, 93, 85}, {31, 87, 95}, {34, 95, 87}, {1, 43, 94}, {2, 93, 16}, {3, 92, 41}, {3, 14, 92}, {1, 94, 29}, {2, 32, 93}, {0, 31, 95}, {0, 95, 34}, {32, 97, 101}, {17, 102, 97}, {35, 103, 98}, {20, 99, 104}, {19, 98, 102}, {34, 101, 99}, {22, 104, 100}, {37, 100, 103}, {32, 101, 33}, {35, 36, 103}, {17, 18, 102}, {20, 104, 21}, {33, 101, 34}, {18, 19, 102}, {36, 37, 103}, {21, 104, 22}, {97, 96, 101}, {97, 102, 96}, {98, 96, 102}, {99, 101, 96}, {98, 103, 96}, {99, 96, 104}, {100, 96, 103}, {100, 104, 96}, {32, 105, 97}, {17, 97, 105}, {35, 98, 106}, {20, 107, 99}, {19, 106, 98}, {34, 99, 107}, {22, 100, 108}, {37, 108, 100}, {0, 34, 107}, {2, 105, 32}, {6, 106, 19}, {6, 35, 106}, {2, 17, 105}, {4, 108, 37}, {0, 107, 20}, {4, 22, 108}, {11, 110, 115}, {38, 114, 110}, {26, 116, 112}, {41, 111, 117}, {13, 115, 111}, {40, 112, 114}, {43, 117, 113}, {28, 113, 116}, {11, 115, 12}, {38, 39, 114}, {26, 27, 116}, {41, 117, 42}, {39, 40, 114}, {12, 115, 13}, {42, 117, 43}, {27, 28, 116}, {109, 110, 114}, {109, 115, 110}, {111, 115, 109}, {112, 109, 114}, {111, 109, 117}, {112, 116, 109}, {113, 109, 116}, {113, 117, 109}, {11, 118, 110}, {38, 110, 118}, {26, 112, 120}, {41, 119, 111}, {40, 120, 112}, {13, 111, 119}, {28, 121, 113}, {43, 113, 121}, {5, 120, 40}, {3, 13, 119}, {7, 38, 118}, {7, 118, 11}, {5, 26, 120}, {3, 119, 41}, {1, 121, 28}, {1, 43, 121}}
        ]
-        (not_ghost:tetrahedron_4) [
+        (not_ghost:_tetrahedron_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:tetrahedron_4
+        + id             : mesh:connectivities:_tetrahedron_4
         + size           : 341
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{124, 123, 125, 129}, {43, 86, 130, 88}, {70, 124, 129, 126}, {48, 77, 25, 52}, {31, 0, 81, 95}, {0, 107, 81, 95}, {126, 91, 87, 101}, {124, 70, 129, 125}, {43, 121, 113, 130}, {55, 100, 82, 108}, {100, 55, 82, 73}, {23, 55, 73, 82}, {71, 75, 125, 112}, {123, 44, 124, 125}, {43, 113, 117, 130}, {94, 43, 86, 130}, {122, 123, 128, 129}, {46, 10, 58, 50}, {99, 107, 81, 20}, {125, 112, 116, 109}, {79, 72, 28, 130}, {123, 122, 125, 129}, {67, 11, 7, 118}, {123, 127, 128, 129}, {124, 44, 49, 47}, {17, 65, 18, 102}, {76, 90, 30, 31}, {54, 10, 7, 67}, {9, 10, 50, 64}, {38, 54, 7, 118}, {123, 124, 127, 129}, {12, 115, 62, 13}, {97, 61, 102, 127}, {45, 53, 8, 69}, {38, 114, 39, 51}, {125, 75, 129, 116}, {122, 44, 123, 125}, {71, 70, 77, 124}, {114, 112, 125, 109}, {32, 93, 97, 85}, {53, 6, 8, 69}, {117, 128, 129, 109}, {63, 61, 16, 89}, {76, 90, 31, 74}, {61, 85, 16, 89}, {65, 123, 60, 98}, {55, 100, 47, 73}, {100, 47, 103, 37}, {96, 123, 103, 124}, {55, 23, 4, 82}, {78, 100, 22, 73}, {61, 85, 89, 127}, {61, 127, 89, 63}, {121, 43, 94, 130}, {108, 22, 82, 4}, {14, 92, 3, 66}, {78, 21, 104, 20}, {100, 78, 104, 124}, {14, 15, 89, 63}, {90, 126, 87, 74}, {90, 76, 126, 74}, {3, 13, 66, 119}, {108, 55, 4, 82}, {58, 11, 110, 62}, {11, 115, 110, 62}, {57, 123, 60, 65}, {122, 58, 110, 62}, {115, 122, 110, 62}, {117, 128, 88, 129}, {86, 129, 130, 88}, {70, 71, 125, 124}, {107, 0, 34, 95}, {122, 114, 125, 109}, {126, 86, 83, 129}, {92, 3, 66, 119}, {129, 86, 83, 88}, {128, 41, 119, 111}, {117, 128, 111, 41}, {11, 12, 115, 62}, {33, 32, 101, 91}, {70, 124, 126, 74}, {100, 124, 47, 73}, {96, 124, 126, 127}, {78, 70, 124, 73}, {90, 76, 30, 29}, {96, 123, 124, 127}, {15, 63, 16, 89}, {121, 79, 1, 28}, {76, 70, 126, 74}, {122, 114, 109, 110}, {129, 117, 130, 88}, {123, 44, 49, 124}, {26, 80, 5, 120}, {123, 65, 102, 98}, {57, 123, 127, 128}, {117, 128, 109, 111}, {70, 78, 124, 74}, {95, 107, 81, 87}, {55, 100, 37, 47}, {77, 24, 25, 52}, {100, 78, 22, 104}, {56, 71, 25, 48}, {14, 59, 89, 84}, {96, 100, 104, 124}, {2, 105, 68, 17}, {124, 123, 103, 49}, {123, 57, 60, 64}, {44, 124, 52, 47}, {71, 112, 48, 56}, {41, 117, 88, 42}, {99, 96, 126, 101}, {97, 85, 127, 101}, {34, 91, 101, 87}, {128, 127, 83, 129}, {126, 90, 83, 86}, {75, 71, 125, 70}, {99, 126, 74, 87}, {23, 55, 47, 73}, {100, 78, 124, 73}, {32, 91, 85, 101}, {57, 122, 62, 58}, {71, 77, 25, 48}, {70, 77, 124, 73}, {114, 38, 110, 51}, {114, 40, 39, 51}, {59, 14, 89, 63}, {53, 106, 35, 6}, {45, 123, 98, 60}, {99, 126, 87, 101}, {106, 53, 69, 6}, {46, 122, 110, 51}, {128, 122, 129, 109}, {124, 100, 47, 103}, {107, 99, 81, 87}, {125, 44, 48, 51}, {38, 46, 110, 51}, {44, 123, 49, 45}, {124, 47, 49, 103}, {36, 35, 49, 103}, {46, 122, 51, 44}, {54, 67, 7, 118}, {10, 64, 58, 50}, {122, 114, 51, 125}, {11, 58, 118, 67}, {44, 122, 51, 125}, {58, 11, 118, 110}, {22, 100, 82, 73}, {46, 122, 58, 110}, {108, 100, 82, 22}, {45, 60, 8, 50}, {99, 81, 74, 20}, {60, 45, 8, 69}, {75, 71, 26, 112}, {107, 0, 81, 20}, {126, 91, 83, 87}, {31, 90, 87, 74}, {34, 107, 95, 87}, {126, 96, 127, 101}, {91, 126, 127, 101}, {92, 14, 84, 66}, {105, 32, 2, 93}, {47, 49, 103, 37}, {115, 122, 109, 110}, {33, 91, 101, 34}, {49, 36, 103, 37}, {112, 71, 48, 125}, {59, 128, 89, 84}, {19, 65, 60, 98}, {124, 126, 127, 129}, {126, 91, 127, 83}, {31, 81, 74, 87}, {81, 99, 74, 87}, {117, 113, 129, 130}, {84, 128, 88, 41}, {113, 117, 129, 109}, {90, 76, 29, 86}, {65, 19, 102, 98}, {55, 100, 108, 37}, {96, 123, 102, 98}, {14, 59, 84, 66}, {100, 96, 103, 124}, {32, 105, 97, 93}, {99, 34, 101, 87}, {127, 126, 83, 129}, {94, 29, 130, 86}, {19, 106, 69, 6}, {128, 117, 88, 41}, {123, 96, 103, 98}, {46, 38, 110, 118}, {77, 23, 24, 52}, {19, 65, 102, 18}, {121, 79, 28, 130}, {46, 54, 38, 118}, {113, 121, 28, 130}, {108, 55, 37, 4}, {112, 75, 116, 26}, {56, 40, 5, 120}, {75, 27, 28, 116}, {127, 85, 89, 83}, {66, 59, 84, 128}, {85, 61, 97, 127}, {122, 125, 129, 109}, {26, 75, 116, 27}, {128, 129, 83, 88}, {122, 123, 57, 128}, {40, 112, 56, 48}, {80, 56, 25, 5}, {84, 128, 83, 88}, {91, 85, 127, 83}, {57, 61, 63, 127}, {123, 122, 64, 50}, {3, 92, 41, 119}, {44, 123, 45, 50}, {47, 124, 52, 73}, {79, 72, 130, 29}, {32, 85, 97, 101}, {2, 93, 16, 68}, {105, 93, 68, 97}, {97, 61, 68, 17}, {85, 91, 127, 101}, {96, 97, 127, 101}, {105, 97, 68, 17}, {124, 77, 52, 73}, {56, 71, 80, 25}, {60, 64, 8, 50}, {64, 9, 8, 50}, {65, 61, 102, 17}, {93, 105, 68, 2}, {61, 97, 102, 17}, {78, 21, 22, 104}, {23, 47, 52, 73}, {112, 40, 56, 120}, {80, 56, 5, 120}, {31, 95, 81, 87}, {99, 107, 34, 87}, {58, 46, 110, 118}, {43, 121, 94, 1}, {112, 75, 125, 116}, {122, 114, 110, 51}, {77, 23, 52, 73}, {90, 126, 83, 87}, {13, 66, 111, 59}, {111, 66, 13, 119}, {66, 128, 111, 59}, {111, 128, 66, 119}, {60, 50, 123, 64}, {123, 50, 60, 45}, {74, 104, 126, 99}, {104, 20, 74, 78}, {74, 20, 104, 99}, {45, 69, 106, 53}, {45, 106, 35, 53}, {35, 106, 45, 98}, {129, 116, 109, 125}, {109, 116, 129, 113}, {54, 10, 58, 46}, {58, 10, 54, 67}, {54, 58, 118, 46}, {118, 58, 54, 67}, {113, 129, 75, 116}, {28, 113, 75, 116}, {129, 75, 70, 72}, {129, 70, 75, 125}, {43, 117, 88, 130}, {88, 117, 43, 42}, {56, 112, 80, 71}, {56, 80, 112, 120}, {80, 112, 26, 71}, {80, 26, 112, 120}, {74, 124, 104, 78}, {74, 104, 124, 126}, {126, 104, 96, 99}, {96, 104, 126, 124}, {62, 128, 57, 59}, {57, 128, 62, 122}, {130, 29, 121, 79}, {121, 29, 130, 94}, {29, 1, 121, 79}, {121, 1, 29, 94}, {58, 50, 122, 46}, {122, 50, 58, 64}, {97, 93, 61, 85}, {97, 61, 93, 68}, {61, 93, 16, 85}, {61, 16, 93, 68}, {59, 89, 127, 63}, {127, 89, 59, 128}, {59, 127, 57, 63}, {57, 127, 59, 128}, {86, 76, 126, 90}, {86, 126, 76, 129}, {125, 51, 112, 114}, {112, 51, 125, 48}, {51, 40, 112, 114}, {112, 40, 51, 48}, {48, 124, 77, 52}, {44, 48, 124, 125}, {44, 124, 48, 52}, {61, 102, 123, 65}, {123, 102, 61, 127}, {61, 123, 57, 65}, {57, 123, 61, 127}, {106, 19, 60, 98}, {60, 19, 106, 69}, {106, 60, 45, 98}, {45, 60, 106, 69}, {122, 64, 57, 123}, {57, 64, 122, 58}, {76, 129, 70, 72}, {70, 129, 76, 126}, {84, 66, 119, 92}, {84, 119, 66, 128}, {41, 84, 119, 92}, {41, 119, 84, 128}, {124, 71, 48, 77}, {124, 48, 71, 125}, {128, 89, 83, 127}, {83, 89, 128, 84}, {111, 128, 62, 59}, {62, 111, 13, 115}, {13, 111, 62, 59}, {122, 50, 44, 46}, {44, 50, 122, 123}, {102, 127, 96, 97}, {96, 127, 102, 123}, {103, 123, 45, 49}, {103, 45, 123, 98}, {35, 103, 45, 49}, {35, 45, 103, 98}, {28, 130, 75, 113}, {75, 130, 28, 72}, {130, 129, 75, 113}, {75, 129, 130, 72}, {29, 130, 76, 72}, {76, 130, 29, 86}, {130, 129, 76, 72}, {76, 129, 130, 86}, {62, 111, 122, 128}, {122, 111, 62, 115}, {111, 109, 122, 128}, {122, 109, 111, 115}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 8
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_2
+   + id             : mesh:connectivities:_segment_2
    + size           : 48
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:tetrahedron_4
+   + id             : mesh:connectivities:_tetrahedron_4
    + size           : 341
    + nb_component   : 4
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{124, 123, 125, 129}, {43, 86, 130, 88}, {70, 124, 129, 126}, {48, 77, 25, 52}, {31, 0, 81, 95}, {0, 107, 81, 95}, {126, 91, 87, 101}, {124, 70, 129, 125}, {43, 121, 113, 130}, {55, 100, 82, 108}, {100, 55, 82, 73}, {23, 55, 73, 82}, {71, 75, 125, 112}, {123, 44, 124, 125}, {43, 113, 117, 130}, {94, 43, 86, 130}, {122, 123, 128, 129}, {46, 10, 58, 50}, {99, 107, 81, 20}, {125, 112, 116, 109}, {79, 72, 28, 130}, {123, 122, 125, 129}, {67, 11, 7, 118}, {123, 127, 128, 129}, {124, 44, 49, 47}, {17, 65, 18, 102}, {76, 90, 30, 31}, {54, 10, 7, 67}, {9, 10, 50, 64}, {38, 54, 7, 118}, {123, 124, 127, 129}, {12, 115, 62, 13}, {97, 61, 102, 127}, {45, 53, 8, 69}, {38, 114, 39, 51}, {125, 75, 129, 116}, {122, 44, 123, 125}, {71, 70, 77, 124}, {114, 112, 125, 109}, {32, 93, 97, 85}, {53, 6, 8, 69}, {117, 128, 129, 109}, {63, 61, 16, 89}, {76, 90, 31, 74}, {61, 85, 16, 89}, {65, 123, 60, 98}, {55, 100, 47, 73}, {100, 47, 103, 37}, {96, 123, 103, 124}, {55, 23, 4, 82}, {78, 100, 22, 73}, {61, 85, 89, 127}, {61, 127, 89, 63}, {121, 43, 94, 130}, {108, 22, 82, 4}, {14, 92, 3, 66}, {78, 21, 104, 20}, {100, 78, 104, 124}, {14, 15, 89, 63}, {90, 126, 87, 74}, {90, 76, 126, 74}, {3, 13, 66, 119}, {108, 55, 4, 82}, {58, 11, 110, 62}, {11, 115, 110, 62}, {57, 123, 60, 65}, {122, 58, 110, 62}, {115, 122, 110, 62}, {117, 128, 88, 129}, {86, 129, 130, 88}, {70, 71, 125, 124}, {107, 0, 34, 95}, {122, 114, 125, 109}, {126, 86, 83, 129}, {92, 3, 66, 119}, {129, 86, 83, 88}, {128, 41, 119, 111}, {117, 128, 111, 41}, {11, 12, 115, 62}, {33, 32, 101, 91}, {70, 124, 126, 74}, {100, 124, 47, 73}, {96, 124, 126, 127}, {78, 70, 124, 73}, {90, 76, 30, 29}, {96, 123, 124, 127}, {15, 63, 16, 89}, {121, 79, 1, 28}, {76, 70, 126, 74}, {122, 114, 109, 110}, {129, 117, 130, 88}, {123, 44, 49, 124}, {26, 80, 5, 120}, {123, 65, 102, 98}, {57, 123, 127, 128}, {117, 128, 109, 111}, {70, 78, 124, 74}, {95, 107, 81, 87}, {55, 100, 37, 47}, {77, 24, 25, 52}, {100, 78, 22, 104}, {56, 71, 25, 48}, {14, 59, 89, 84}, {96, 100, 104, 124}, {2, 105, 68, 17}, {124, 123, 103, 49}, {123, 57, 60, 64}, {44, 124, 52, 47}, {71, 112, 48, 56}, {41, 117, 88, 42}, {99, 96, 126, 101}, {97, 85, 127, 101}, {34, 91, 101, 87}, {128, 127, 83, 129}, {126, 90, 83, 86}, {75, 71, 125, 70}, {99, 126, 74, 87}, {23, 55, 47, 73}, {100, 78, 124, 73}, {32, 91, 85, 101}, {57, 122, 62, 58}, {71, 77, 25, 48}, {70, 77, 124, 73}, {114, 38, 110, 51}, {114, 40, 39, 51}, {59, 14, 89, 63}, {53, 106, 35, 6}, {45, 123, 98, 60}, {99, 126, 87, 101}, {106, 53, 69, 6}, {46, 122, 110, 51}, {128, 122, 129, 109}, {124, 100, 47, 103}, {107, 99, 81, 87}, {125, 44, 48, 51}, {38, 46, 110, 51}, {44, 123, 49, 45}, {124, 47, 49, 103}, {36, 35, 49, 103}, {46, 122, 51, 44}, {54, 67, 7, 118}, {10, 64, 58, 50}, {122, 114, 51, 125}, {11, 58, 118, 67}, {44, 122, 51, 125}, {58, 11, 118, 110}, {22, 100, 82, 73}, {46, 122, 58, 110}, {108, 100, 82, 22}, {45, 60, 8, 50}, {99, 81, 74, 20}, {60, 45, 8, 69}, {75, 71, 26, 112}, {107, 0, 81, 20}, {126, 91, 83, 87}, {31, 90, 87, 74}, {34, 107, 95, 87}, {126, 96, 127, 101}, {91, 126, 127, 101}, {92, 14, 84, 66}, {105, 32, 2, 93}, {47, 49, 103, 37}, {115, 122, 109, 110}, {33, 91, 101, 34}, {49, 36, 103, 37}, {112, 71, 48, 125}, {59, 128, 89, 84}, {19, 65, 60, 98}, {124, 126, 127, 129}, {126, 91, 127, 83}, {31, 81, 74, 87}, {81, 99, 74, 87}, {117, 113, 129, 130}, {84, 128, 88, 41}, {113, 117, 129, 109}, {90, 76, 29, 86}, {65, 19, 102, 98}, {55, 100, 108, 37}, {96, 123, 102, 98}, {14, 59, 84, 66}, {100, 96, 103, 124}, {32, 105, 97, 93}, {99, 34, 101, 87}, {127, 126, 83, 129}, {94, 29, 130, 86}, {19, 106, 69, 6}, {128, 117, 88, 41}, {123, 96, 103, 98}, {46, 38, 110, 118}, {77, 23, 24, 52}, {19, 65, 102, 18}, {121, 79, 28, 130}, {46, 54, 38, 118}, {113, 121, 28, 130}, {108, 55, 37, 4}, {112, 75, 116, 26}, {56, 40, 5, 120}, {75, 27, 28, 116}, {127, 85, 89, 83}, {66, 59, 84, 128}, {85, 61, 97, 127}, {122, 125, 129, 109}, {26, 75, 116, 27}, {128, 129, 83, 88}, {122, 123, 57, 128}, {40, 112, 56, 48}, {80, 56, 25, 5}, {84, 128, 83, 88}, {91, 85, 127, 83}, {57, 61, 63, 127}, {123, 122, 64, 50}, {3, 92, 41, 119}, {44, 123, 45, 50}, {47, 124, 52, 73}, {79, 72, 130, 29}, {32, 85, 97, 101}, {2, 93, 16, 68}, {105, 93, 68, 97}, {97, 61, 68, 17}, {85, 91, 127, 101}, {96, 97, 127, 101}, {105, 97, 68, 17}, {124, 77, 52, 73}, {56, 71, 80, 25}, {60, 64, 8, 50}, {64, 9, 8, 50}, {65, 61, 102, 17}, {93, 105, 68, 2}, {61, 97, 102, 17}, {78, 21, 22, 104}, {23, 47, 52, 73}, {112, 40, 56, 120}, {80, 56, 5, 120}, {31, 95, 81, 87}, {99, 107, 34, 87}, {58, 46, 110, 118}, {43, 121, 94, 1}, {112, 75, 125, 116}, {122, 114, 110, 51}, {77, 23, 52, 73}, {90, 126, 83, 87}, {13, 66, 111, 59}, {111, 66, 13, 119}, {66, 128, 111, 59}, {111, 128, 66, 119}, {60, 50, 123, 64}, {123, 50, 60, 45}, {74, 104, 126, 99}, {104, 20, 74, 78}, {74, 20, 104, 99}, {45, 69, 106, 53}, {45, 106, 35, 53}, {35, 106, 45, 98}, {129, 116, 109, 125}, {109, 116, 129, 113}, {54, 10, 58, 46}, {58, 10, 54, 67}, {54, 58, 118, 46}, {118, 58, 54, 67}, {113, 129, 75, 116}, {28, 113, 75, 116}, {129, 75, 70, 72}, {129, 70, 75, 125}, {43, 117, 88, 130}, {88, 117, 43, 42}, {56, 112, 80, 71}, {56, 80, 112, 120}, {80, 112, 26, 71}, {80, 26, 112, 120}, {74, 124, 104, 78}, {74, 104, 124, 126}, {126, 104, 96, 99}, {96, 104, 126, 124}, {62, 128, 57, 59}, {57, 128, 62, 122}, {130, 29, 121, 79}, {121, 29, 130, 94}, {29, 1, 121, 79}, {121, 1, 29, 94}, {58, 50, 122, 46}, {122, 50, 58, 64}, {97, 93, 61, 85}, {97, 61, 93, 68}, {61, 93, 16, 85}, {61, 16, 93, 68}, {59, 89, 127, 63}, {127, 89, 59, 128}, {59, 127, 57, 63}, {57, 127, 59, 128}, {86, 76, 126, 90}, {86, 126, 76, 129}, {125, 51, 112, 114}, {112, 51, 125, 48}, {51, 40, 112, 114}, {112, 40, 51, 48}, {48, 124, 77, 52}, {44, 48, 124, 125}, {44, 124, 48, 52}, {61, 102, 123, 65}, {123, 102, 61, 127}, {61, 123, 57, 65}, {57, 123, 61, 127}, {106, 19, 60, 98}, {60, 19, 106, 69}, {106, 60, 45, 98}, {45, 60, 106, 69}, {122, 64, 57, 123}, {57, 64, 122, 58}, {76, 129, 70, 72}, {70, 129, 76, 126}, {84, 66, 119, 92}, {84, 119, 66, 128}, {41, 84, 119, 92}, {41, 119, 84, 128}, {124, 71, 48, 77}, {124, 48, 71, 125}, {128, 89, 83, 127}, {83, 89, 128, 84}, {111, 128, 62, 59}, {62, 111, 13, 115}, {13, 111, 62, 59}, {122, 50, 44, 46}, {44, 50, 122, 123}, {102, 127, 96, 97}, {96, 127, 102, 123}, {103, 123, 45, 49}, {103, 45, 123, 98}, {35, 103, 45, 49}, {35, 45, 103, 98}, {28, 130, 75, 113}, {75, 130, 28, 72}, {130, 129, 75, 113}, {75, 129, 130, 72}, {29, 130, 76, 72}, {76, 130, 29, 86}, {130, 129, 76, 72}, {76, 129, 130, 86}, {62, 111, 122, 128}, {122, 111, 62, 115}, {111, 109, 122, 128}, {122, 109, 111, 115}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:triangle_3
+   + id             : mesh:connectivities:_triangle_3
    + size           : 240
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 23kB
    + values         : {{45, 49, 35}, {45, 8, 50}, {46, 38, 51}, {23, 47, 52}, {46, 50, 10}, {37, 49, 47}, {25, 52, 48}, {40, 48, 51}, {35, 49, 36}, {38, 39, 51}, {8, 9, 50}, {23, 52, 24}, {36, 49, 37}, {9, 10, 50}, {39, 40, 51}, {24, 52, 25}, {45, 44, 49}, {45, 50, 44}, {46, 44, 50}, {44, 47, 49}, {46, 51, 44}, {44, 52, 47}, {44, 51, 48}, {44, 48, 52}, {45, 35, 53}, {45, 53, 8}, {46, 54, 38}, {23, 55, 47}, {46, 10, 54}, {37, 47, 55}, {25, 48, 56}, {40, 56, 48}, {4, 37, 55}, {6, 53, 35}, {7, 54, 10}, {7, 38, 54}, {6, 8, 53}, {5, 56, 40}, {4, 55, 23}, {5, 25, 56}, {11, 62, 58}, {14, 63, 59}, {8, 64, 60}, {17, 65, 61}, {10, 58, 64}, {19, 60, 65}, {13, 59, 62}, {16, 61, 63}, {14, 15, 63}, {11, 12, 62}, {17, 18, 65}, {8, 9, 64}, {12, 13, 62}, {15, 16, 63}, {9, 10, 64}, {18, 19, 65}, {58, 62, 57}, {59, 57, 62}, {59, 63, 57}, {61, 57, 63}, {58, 57, 64}, {60, 64, 57}, {60, 57, 65}, {61, 65, 57}, {11, 58, 67}, {14, 59, 66}, {8, 60, 69}, {17, 61, 68}, {10, 67, 58}, {19, 69, 60}, {13, 66, 59}, {16, 68, 61}, {2, 68, 16}, {3, 66, 13}, {6, 69, 19}, {7, 67, 10}, {7, 11, 67}, {3, 14, 66}, {6, 8, 69}, {2, 17, 68}, {26, 75, 71}, {29, 76, 72}, {23, 77, 73}, {20, 78, 74}, {25, 71, 77}, {22, 73, 78}, {28, 72, 75}, {31, 74, 76}, {29, 30, 76}, {26, 27, 75}, {20, 21, 78}, {23, 24, 77}, {27, 28, 75}, {30, 31, 76}, {24, 25, 77}, {21, 22, 78}, {71, 75, 70}, {72, 70, 75}, {72, 76, 70}, {70, 76, 74}, {71, 70, 77}, {70, 73, 77}, {70, 78, 73}, {70, 74, 78}, {26, 71, 80}, {29, 72, 79}, {23, 73, 82}, {20, 74, 81}, {25, 80, 71}, {22, 82, 73}, {28, 79, 72}, {31, 81, 74}, {0, 81, 31}, {1, 79, 28}, {4, 82, 22}, {5, 80, 25}, {5, 26, 80}, {1, 29, 79}, {4, 23, 82}, {0, 20, 81}, {41, 84, 88}, {14, 89, 84}, {29, 86, 90}, {32, 91, 85}, {16, 85, 89}, {43, 88, 86}, {34, 87, 91}, {31, 90, 87}, {41, 88, 42}, {14, 15, 89}, {29, 90, 30}, {32, 33, 91}, {42, 88, 43}, {15, 16, 89}, {33, 34, 91}, {30, 90, 31}, {84, 89, 83}, {84, 83, 88}, {85, 83, 89}, {86, 88, 83}, {85, 91, 83}, {86, 83, 90}, {87, 90, 83}, {87, 83, 91}, {14, 84, 92}, {41, 92, 84}, {29, 94, 86}, {32, 85, 93}, {43, 86, 94}, {16, 93, 85}, {31, 87, 95}, {34, 95, 87}, {1, 43, 94}, {2, 93, 16}, {3, 92, 41}, {3, 14, 92}, {1, 94, 29}, {2, 32, 93}, {0, 31, 95}, {0, 95, 34}, {32, 97, 101}, {17, 102, 97}, {35, 103, 98}, {20, 99, 104}, {19, 98, 102}, {34, 101, 99}, {22, 104, 100}, {37, 100, 103}, {32, 101, 33}, {35, 36, 103}, {17, 18, 102}, {20, 104, 21}, {33, 101, 34}, {18, 19, 102}, {36, 37, 103}, {21, 104, 22}, {97, 96, 101}, {97, 102, 96}, {98, 96, 102}, {99, 101, 96}, {98, 103, 96}, {99, 96, 104}, {100, 96, 103}, {100, 104, 96}, {32, 105, 97}, {17, 97, 105}, {35, 98, 106}, {20, 107, 99}, {19, 106, 98}, {34, 99, 107}, {22, 100, 108}, {37, 108, 100}, {0, 34, 107}, {2, 105, 32}, {6, 106, 19}, {6, 35, 106}, {2, 17, 105}, {4, 108, 37}, {0, 107, 20}, {4, 22, 108}, {11, 110, 115}, {38, 114, 110}, {26, 116, 112}, {41, 111, 117}, {13, 115, 111}, {40, 112, 114}, {43, 117, 113}, {28, 113, 116}, {11, 115, 12}, {38, 39, 114}, {26, 27, 116}, {41, 117, 42}, {39, 40, 114}, {12, 115, 13}, {42, 117, 43}, {27, 28, 116}, {109, 110, 114}, {109, 115, 110}, {111, 115, 109}, {112, 109, 114}, {111, 109, 117}, {112, 116, 109}, {113, 109, 116}, {113, 117, 109}, {11, 118, 110}, {38, 110, 118}, {26, 112, 120}, {41, 119, 111}, {40, 120, 112}, {13, 111, 119}, {28, 121, 113}, {43, 113, 121}, {5, 120, 40}, {3, 13, 119}, {7, 38, 118}, {7, 118, 11}, {5, 26, 120}, {3, 119, 41}, {1, 121, 28}, {1, 43, 121}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 131
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:tetrahedron_4
+   + id             : my_fem:jacobians:_tetrahedron_4
    + size           : 341
    + nb_component   : 1
    + allocated size : 341
    + memory size    : 2.7kB
    + values         : {{0.00479073}, {0.00199542}, {0.00508286}, {0.00204347}, {0.00083906}, {0.00095268}, {0.00292548}, {0.00493659}, {0.00105059}, {0.00091729}, {0.00180199}, {0.000808556}, {0.00355095}, {0.00749049}, {0.00197348}, {0.00106177}, {0.00690231}, {0.00297989}, {0.000808006}, {0.0026847}, {0.00117185}, {0.00474423}, {0.00083918}, {0.00644814}, {0.00470655}, {0.00151785}, {0.00151785}, {0.00083906}, {0.00151591}, {0.00083918}, {0.00487222}, {0.00151892}, {0.00469074}, {0.000807775}, {0.00151892}, {0.00334996}, {0.00767187}, {0.00381537}, {0.00269174}, {0.00158543}, {0.00083906}, {0.00445593}, {0.0020418}, {0.00204272}, {0.00297957}, {0.00490403}, {0.00353679}, {0.00297957}, {0.00693536}, {0.000839299}, {0.002982}, {0.00359869}, {0.00246606}, {0.000800576}, {0.000839299}, {0.00083906}, {0.00152021}, {0.00375734}, {0.00151785}, {0.00372221}, {0.00255222}, {0.00083906}, {0.000952816}, {0.00298087}, {0.00204311}, {0.0037801}, {0.00363992}, {0.00249551}, {0.00382669}, {0.0020549}, {0.00422323}, {0.00083906}, {0.00460922}, {0.00348647}, {0.000952544}, {0.00386563}, {0.00134104}, {0.00252173}, {0.00151892}, {0.00151785}, {0.00426036}, {0.00793308}, {0.00820365}, {0.00385292}, {0.00151785}, {0.00860188}, {0.00151785}, {0.00083906}, {0.00383935}, {0.00327077}, {0.00361116}, {0.00679806}, {0.00083906}, {0.00336058}, {0.00695467}, {0.0026847}, {0.00385292}, {0.000917159}, {0.00158651}, {0.00152021}, {0.00204498}, {0.00158671}, {0.00297957}, {0.00483251}, {0.00083906}, {0.00645464}, {0.0037801}, {0.00472318}, {0.00353524}, {0.00151688}, {0.00483251}, {0.00421987}, {0.0020418}, {0.00523002}, {0.00282642}, {0.00380534}, {0.00581509}, {0.00158671}, {0.00548144}, {0.0020418}, {0.00365422}, {0.00297867}, {0.00383935}, {0.00204311}, {0.00151892}, {0.0020418}, {0.00083906}, {0.00695993}, {0.00426911}, {0.000952544}, {0.00380007}, {0.00640143}, {0.00595062}, {0.00180012}, {0.00470655}, {0.00297737}, {0.00432043}, {0.00408022}, {0.00151785}, {0.00394217}, {0.00095268}, {0.0020392}, {0.00491487}, {0.000807891}, {0.00673925}, {0.00158661}, {0.00158671}, {0.00511093}, {0.000808006}, {0.00297989}, {0.00158671}, {0.00158543}, {0.00297989}, {0.000839299}, {0.00282642}, {0.00297957}, {0.000807775}, {0.00743876}, {0.00520896}, {0.000807775}, {0.00083906}, {0.00204272}, {0.00327077}, {0.00151785}, {0.00151785}, {0.00550306}, {0.00283408}, {0.00297957}, {0.00500828}, {0.00435075}, {0.00158651}, {0.00353524}, {0.00207381}, {0.00264971}, {0.00361055}, {0.0020418}, {0.0020418}, {0.000807775}, {0.0043829}, {0.00158543}, {0.00483251}, {0.000807775}, {0.00297957}, {0.00403452}, {0.00106177}, {0.00083906}, {0.00339716}, {0.0043829}, {0.00158661}, {0.00152021}, {0.00151785}, {0.00078511}, {0.000807891}, {0.00105059}, {0.00083906}, {0.00204038}, {0.00083906}, {0.00151494}, {0.00282642}, {0.00212821}, {0.005658}, {0.0043455}, {0.00151494}, {0.00474239}, {0.00744101}, {0.00158651}, {0.000839299}, {0.00282642}, {0.00282642}, {0.00369139}, {0.00530618}, {0.00083906}, {0.00430907}, {0.00540547}, {0.00117185}, {0.00297957}, {0.00083906}, {0.000917028}, {0.00158543}, {0.00289174}, {0.00483251}, {0.000807775}, {0.00370776}, {0.000808006}, {0.0020392}, {0.00151591}, {0.0020418}, {0.000952544}, {0.00297957}, {0.00152021}, {0.002982}, {0.000807775}, {0.00095268}, {0.000807775}, {0.00158543}, {0.00353524}, {0.00083906}, {0.00243234}, {0.00260951}, {0.0020459}, {0.00282642}, {0.00158543}, {0.000807775}, {0.00197474}, {0.00100612}, {0.00334194}, {0.00487991}, {0.00481554}, {0.00204347}, {0.00298217}, {0.000917028}, {0.000807775}, {0.00158543}, {0.00339935}, {0.00361055}, {0.00158543}, {0.000807775}, {0.00180012}, {0.000917159}, {0.00304689}, {0.00203823}, {0.00419327}, {0.00444812}, {0.00321724}, {0.00151688}, {0.00180012}, {0.000917159}, {0.00158543}, {0.000807775}, {0.00425176}, {0.0068851}, {0.00483251}, {0.00743876}, {0.00369139}, {0.00671734}, {0.000948173}, {0.000932706}, {0.00083906}, {0.00083906}, {0.00402163}, {0.0027552}, {0.00353262}, {0.00179986}, {0.00158543}, {0.000807775}, {0.00289277}, {0.00478507}, {0.00369139}, {0.00407095}, {0.002979}, {0.00490513}, {0.00275294}, {0.00402124}, {0.00204048}, {0.00298091}, {0.00413525}, {0.00522266}, {0.00472318}, {0.00402975}, {0.00676786}, {0.0037801}, {0.00496655}, {0.00158543}, {0.000807775}, {0.00353262}, {0.00179986}, {0.00557565}, {0.00365422}, {0.00420433}, {0.0045964}, {0.000917028}, {0.00243872}, {0.000807775}, {0.001568}, {0.00602516}, {0.0074155}, {0.00435075}, {0.00282642}, {0.00275892}, {0.00204048}, {0.00297957}, {0.0039318}, {0.00623354}, {0.00483251}, {0.00761117}, {0.00356241}, {0.00520686}, {0.0020394}, {0.00297957}, {0.00289006}, {0.00220255}, {0.00347634}, {0.00226248}, {0.00219973}, {0.00292886}, {0.00233772}, {0.00353589}, {0.00497258}, {0.00334717}, {0.00371176}, {0.00326057}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:tetrahedron_4
+   + id             : my_fem:quadrature_points:_tetrahedron_4
    + size           : 1
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{0.25, 0.25, 0.25}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:tetrahedron_4
+   + id             : my_fem:shapes:_tetrahedron_4
    + size           : 341
    + nb_component   : 4
    + allocated size : 341
    + memory size    : 11kB
    + values         : {{0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:tetrahedron_4
+   + id             : my_fem:shapes_derivatives:_tetrahedron_4
    + size           : 341
    + nb_component   : 12
    + allocated size : 341
    + memory size    : 32kB
    + values         : {{-2.9332, -3.39585, 0.502232, 0, 2.96343, 0.405765, 2.9332, 0.0602741, 3.04336, 0, 0.372141, -3.95136}, {3.45053, -1.3657, -2.27011, -3.89489, -2.97354, -4.55745, 0, 0, 5.36117, 0.444357, 4.33924, 1.46638}, {0.382444, -2.89016, 0, -1.28516, 1.90393, 2.9332, 3.7515, 0.879817, 0, -2.84879, 0.106407, -2.9332}, {2.97575, 3.89171, -3.89356, 0, 0, -5.23939, 1.36374, -3.44772, 3.45502, -4.3395, -0.443995, 5.67793}, {4, -4, -4.00114, -4, -3.0469, -3.04575, 0, 0, 7.0469, 0, 7.0469, 0}, {-3.52295, -3.52395, -3.52295, -3.52295, 3.52295, 3.52395, 3.52295, -3.52295, 3.52295, 3.52295, 3.52395, -3.52395}, {2.40825, 0.953172, 2.40825, 2.50475, 5.50649, -2.73463, -1.78774, -5.2227, -1.78774, -3.12526, -1.23696, 2.11413}, {-2.9332, 1.96549, 1.23633, 0, -2.87587, -0.393776, 0, 1.01994, -3.86266, 2.9332, -0.10956, 3.0201}, {0.419151, 4, -4, 2.79404, -8.15492, 0.835098, 2.20503, 4.15492, 3.1649, -5.41822, 0, 0}, {3.52244, 3.52345, 3.52345, 3.65886, 3.65991, -3.65991, 3.52345, -3.52244, -3.52244, -10.7048, -3.66092, 3.6589}, {-1.79359, 1.79523, -1.79625, 3.5193, 3.52237, 3.52452, -7.1749, -7.18117, 0.13427, 5.44919, 1.86357, -1.86254}, {3.99728, -4.00093, 4.00321, 0, 7.04488, 0, 4.15209, 3.16185, -3.16156, -8.14937, -6.2058, -0.841653}, {-2.33012, -1.26027, 3.59031, 1.73691, -1.73691, -3.82575, -2.89531, 2.89531, -1.14913, 3.48852, 0.101865, 1.38457}, {0, 3.12067, -1.26381, 0, -0.238012, 2.52719, -2.9332, -3.29673, -0.550156, 2.9332, 0.414072, -0.713225}, {2.25842, -1.36825, -3.45027, 4.64721, -2.97306, 3.89484, -1.48742, 4.3413, -0.444568, -5.41822, 0, 0}, {-0.835098, -8.15492, -2.75583, 4, 4, -0.45685, -3.1649, 4.15492, -2.14849, 0, 0, 5.36117}, {2.74019, 0.0956852, 2.80125, -3.01086, 0.697365, -0.375193, 0.165245, 2.48398, -2.46532, 0.105421, -3.27703, 0.0392613}, {2.96943, -3.89447, -0.304082, 1.36934, 3.45016, 3.45016, 0, 0, -3.59038, -4.33877, 0.444309, 0.444309}, {3.164, 3.1649, 4.15492, -6.21002, 0.835098, -8.15492, 7.04488, 0, 0, -3.99886, -4, 4}, {-4.24471, 0, -2.22045e-16, 1.70632, 0.0142405, 4.507, 1.02929, -3.25521, -3.22316, 1.5091, 3.24097, -1.28383}, {-0.835098, -3.26304, -8.15492, -3.1649, -1.55632, 4.15492, 4, -0.0381551, 4, 0, 4.85752, 0}, {-3.09877, -0.624101, 0.936346, 2.96195, 3.42913, -0.507155, -0.240412, -3.6139, 3.58676, 0.377232, 0.808874, -4.01595}, {-7.0469, 0, 0, 4, 4, -4, 3.0469, 3.04589, 4, 0, -7.04589, 0}, {0, 0.802501, 2.70275, -2.9332, -0.102425, -2.99855, 2.9332, 2.58063, 0.364309, 0, -3.28071, -0.0685083}, {4.16334e-16, -8.88178e-16, -2.4308, 3.22687, 1.27702, 1.31348, -3.25484, 3.22647, -0.701298, 0.0279753, -4.5035, 1.81862}, {1.62741e-11, -1.54712e-11, -4, 5.23939, 0, 0, -5.23939, 5.23939, 4, 0, -5.23939, 0}, {0, -7.13135e-16, 5.23939, 0, 5.23939, 0, 4, -5.23939, -5.24506, -4, -2.28255e-11, 0.00566839}, {0, -7.0469, 8.88178e-16, -4, 4, 4, 4, 3.0469, 3.0469, 0, 0, -7.0469}, {-4, 5.24608, 5.23939, 4, 1.55241e-11, 1.5915e-11, 0, -5.24608, 0, 0, 0, -5.23939}, {4, -4, 4, -7.0469, 0, 0, 3.0469, 4, 3.04589, 0, 0, -7.04589}, {2.51489, 3.01511, 3.01511, -3.88194, -3.41534, -0.482145, -2.88414, -0.0592661, -2.99246, 4.25119, 0.459499, 0.459499}, {5.23939, 5.23285, 4, 0, -5.23568, 0, -5.23939, 0, 0, 2.32699e-11, 0.00283219, -4}, {-2.75474, -0.835644, -4.18437, 0.257813, 3.33257, -1.31901, 0.305142, -0.305142, 4.63589, 2.19179, -2.19179, 0.867496}, {4.15492, -3.1649, -3.1649, -8.15492, -0.835098, 6.2118, 4, 4, 4, 0, 0, -7.0469}, {0.00566839, 4, -0.00283219, 0, 0, -5.23568, 5.23372, -4, 5.23851, -5.23939, 0, 0}, {-1.52791, 1.52994, 4.71561, -1.9516, -3.29226, 0.192739, -0.842937, 0.840096, -3.60933, 4.32244, 0.92222, -1.29903}, {2.86385, 3.21879, 0.53715, -0.233278, -0.500202, 2.48343, -2.84203, -0.0735906, -1.79686, 0.211453, -2.645, -1.22372}, {4.53179, 1.05538, 0.0281511, -1.28505, -2.42496, -3.24278, -3.24675, -1.61027, 3.21463, 0, 2.97985, 0}, {-1.02659, 3.24669, 3.21473, 3.14112, -4.52341, 0.014006, -4.24471, 0, 0, 2.13019, 1.27672, -3.22874}, {-4, -4, -4, 0.835098, 8.15492, 0.835098, 0, 0, 3.59038, 3.1649, -4.15492, -0.425481}, {0, -7.0469, 0, -4, 3.0469, 3.0469, 4, 4, 4, 0, 0, -7.0469}, {2.27701, -1.57663, -3.25, -1.49395, 3.66511, 0.0115805, -2.03803, -2.71547, -0.00857994, 1.25497, 0.626993, 3.247}, {4.33924, 5.68374, -0.444357, -2.97354, -3.89489, 3.89489, -1.3657, 3.45053, -3.45053, 0, -5.23939, 0}, {4.33729, -5.68119, -0.447948, 0, 5.23939, 0, -1.36509, -3.45133, -3.4494, -2.97221, 3.89314, 3.89735}, {0, 4.44089e-16, 3.59038, -2.97354, -3.89489, 0.304504, -1.3657, 3.45053, -3.45053, 4.33924, 0.444357, -0.444357}, {-0.960671, 0.960671, -4.13489, 2.09645, -2.09645, -0.829765, 1.35765, 2.23273, 3.97777, -2.49343, -1.09695, 0.986887}, {-3.6556, -3.65879, 3.65879, -1.79574, 1.79308, -1.79621, 3.6556, 3.65879, -0.0684102, 1.79574, -1.79308, -1.79417}, {0.307102, -2.97354, -3.89489, 3.59038, 0, 0, -0.44815, 4.33924, 0.444357, -3.44934, -1.3657, 3.45053}, {-1.64157, 0.110512, -3.2348, 1.22142, 3.1461, -3.07269e-12, -0.833409, -0.40322, 3.2348, 1.25356, -2.85339, 2.78682e-12}, {0, 7.04488, 0, 4, -3.99886, 4.00114, -4, -3.04603, 3.04575, 0, 0, -7.0469}, {-0.443995, -0.444383, -4.3395, 0, 3.59038, 0, -3.44772, -3.45073, 1.36374, 3.89171, 0.30473, 2.97575}, {-1.00556, 2.54062, 1.04976, -3.90018, -1.55367, -2.03672, 3.775, 1.86995, -1.86995, 1.13075, -2.8569, 2.8569}, {-4.90575, 0.986953, -0.986953, 1.13075, -2.8569, 2.8569, -1.91647, -0.397296, -4.84209, 5.69148, 2.26724, 2.97215}, {4.19746, -5.51046, 2.84944, 1.88954, 6.77064, -1.88954, -2.89363, -5.45245, -4.15327, -3.19336, 4.19228, 3.19336}, {8.88178e-16, 7.0469, 0, -3.99886, -4, -4, 7.04488, 0, 0, -3.04603, -3.0469, 4}, {-4, 4, -4, 0, -7.0469, 0, 4, 3.0469, -3.0469, 0, 0, 7.0469}, {5.23123, 5.81945e-16, 0, -5.23123, -5.23939, 4, 0, 5.23939, 0, 1.6327e-11, 1.54706e-11, -4}, {-0.750211, -0.75138, 4.81251, 1.07726, -4.16045, 1.64668, -2.20213, 3.03383, -5.71589, 1.87508, 1.878, -0.743302}, {4, -2.28271e-11, 2.36273e-11, -4, 5.23939, -5.23939, 0, -5.23939, 0, 0, 0, 5.23939}, {3.80063, -1.80519, -1.80851, 1.09322, 2.76209, 2.76114, -3.92166, 1.49941, -2.08755, -0.972194, -2.45631, 1.13492}, {-1.92104, 0.382436, -4.85423, 5.71942, -2.18677, 3.04452, 1.09257, 2.76234, 2.76079, -4.89095, -0.95801, -0.95108}, {3.0469, 3.0469, -4, 4, 4, 4, -7.0469, 0, 0, 0, -7.0469, 0}, {-3.52345, 3.52244, -3.52446, 3.52244, 3.52345, 3.52345, -3.52244, -3.52345, 3.52345, 3.52345, -3.52244, -3.52244}, {-3.89489, -0.305669, 2.97354, 3.45053, 3.44843, 1.3657, 0, -3.58881, 0, 0.444357, 0.446058, -4.33924}, {3.45195, 3.44854, 1.36462, 5.6826, 0.445968, -4.33837, -3.89516, -3.89451, 2.97375, -5.23939, 0, 0}, {3.2348, 1.4231, -1.28032, 0, -3.01876, 0, -3.04119e-12, 1.63545, 4.51512, -3.2348, -0.0397999, -3.2348}, {-2.82577, -2.82405, -1.11842, -1.29033, 2.2973, 4.00441, 3.2475, -0.343291, 1.28534, 0.868592, 0.870035, -4.17133}, {1.88206, -3.35082, -5.84079, -2.82615, -2.82336, -1.11723, 1.95788, 1.95275, 5.28756, -1.01379, 4.22143, 1.67046}, {4.00887, -0.711384, 1.23085, -1.07985, 3.872, 1.08301, -1.46134, -0.730093, -3.78093, -1.46768, -2.43052, 1.46707}, {-6.11172, -2.09613, -3.09899, -3.35065, 1.32617, 2.2044, 6.08523, -2.4085, 1.35769, 3.37714, 3.17846, -0.4631}, {0, -1.78762, -4.51512, 0, -1.19223, 4.51512, 2.9332, 1.45476, -2.90418, -2.9332, 1.52509, 2.90418}, {-8.88178e-16, 0, 7.0469, -3.0469, -4, -3.0469, -4, 4, -4, 7.0469, 0, 0}, {-1.83438, 2.64163, -0.00817939, 1.49822, -0.389218, 3.22599, -2.02268, -3.19987, 0.00990788, 2.35884, 0.947457, -3.22772}, {-3.58659, -3.58659, 0.548674, 1.12084, -3.39428, -1.90685, -0.156642, 4.35848, -1.19262, 2.6224, 2.6224, 2.5508}, {-3.52345, -3.52345, -3.52345, 3.52345, 3.52345, -3.52345, -3.52345, 3.52345, 3.52345, 3.52345, -3.52345, 3.52345}, {4.44089e-16, 0, 2.95197, 4.40828e-12, -4.51512, -1.73539, -3.2348, 1.28032, -0.721726, 3.2348, 3.2348, -0.494857}, {-4.24471, 1.77636e-15, -4.44089e-16, 1.287, -4, -4, -1.6658, 8.15492, 0.835098, 4.62351, -4.15492, 3.1649}, {0.885858, -4.33672, -0.444099, -4.24471, 0, 0, 3.16813, 2.96992, 3.89452, 0.190724, 1.3668, -3.45042}, {-2.32703e-11, -0.00283219, 4, 5.23939, 5.23851, -4, 0, -5.23568, 0, -5.23939, 0, 0}, {-5.23939, -4, -5.23939, 2.28255e-11, 4, 2.28255e-11, 0, 0, 5.23939, 5.23939, 0, 0}, {4.47576, -1.93017, 0, -2.90763, 1.52342, 2.9332, 2.90763, 1.45643, -2.9332, -4.47576, -1.04967, 0}, {-2.74183, 0.846161, -0.849296, 1.62977, 1.63119, -1.63119, 0.777461, 0.778141, 2.81224, 0.334598, -3.25549, -0.331753}, {-2.36134, 0, 0, 1.74759, 0, 2.9332, -0.525012, -2.9332, -2.9332, 1.13877, 2.9332, 0}, {-3.21511, 0.1024, -3.24338, 3.21511, -1.89002, -1.27174, 0, 2.97985, 0, -3.36919e-12, -1.19223, 4.51512}, {0, 5.23939, 4.12864e-16, 0, 0, 5.23939, -4, -5.23939, -5.23372, 4, 2.28255e-11, -0.00566839}, {-2.40793, -0.260266, -0.260266, 0.500707, 2.7974, 2.7974, 1.23528, -2.86224, 0.0709597, 0.671946, 0.325101, -2.6081}, {4, 5.23939, -5.23939, 0, 0, 5.23939, -4, 2.28278e-11, -2.36282e-11, 0, -5.23939, 0}, {-4.44089e-16, 7.0469, 0, -7.0469, 0, 0, 3.0469, -3.0469, -4, 4, -4, 4}, {3.22647, -1.69048, -3.25484, 1.27702, -0.254226, 3.22687, 0, 2.97985, 0, -4.5035, -1.03514, 0.0279753}, {-3.50419, 0, 2.04697e-16, -0.300503, -3.2348, 3.2348, 0.9543, -1.27452, -3.22084, 2.85039, 4.50932, -0.0139624}, {-2.58829, 1.58763, 2.59096, 3.47782, 1.19279, 1.76345, 1.14429, -4.10309, -1.14764, -2.03382, 1.32267, -3.20677}, {-0.0193683, 3.11794, -1.2591, 3.23344, 0.218445, 1.74096, -3.23197, -0.456248, 0.785873, 0.0178911, -2.88013, -1.26773}, {4, -4, -4, -7.0469, 0, 0, 3.0469, -3.0469, 4, 0, 7.0469, 0}, {2.09645, -2.09645, -0.829765, 1.02053, 4.21886, 1.6698, -1.9812, -3.25819, -5.80469, -1.13578, 1.13578, 4.96465}, {0, 3.04177, 0.0635186, 0, -2.06144, 2.64295, -2.9332, -0.059438, -2.99766, 2.9332, -0.920892, 0.29119}, {1.04124, -3.22316, -3.25521, -4.24471, 0, 0, -0.179146, -1.28383, 3.24097, 3.38261, 4.507, 0.0142405}, {3.21511, -2.56163, 1.27174, -3.21511, -1.61044, 3.24338, 0, 2.97985, 0, 3.36919e-12, 1.19223, -4.51512}, {-3.65939, -3.66043, -10.7063, -3.52295, 3.52295, 3.52395, 3.52295, -3.52295, 3.52295, 3.65939, 3.66043, 3.65939}, {0.841653, -8.14937, -0.83453, 0, 0, -3.59038, -4.00321, 3.99728, 3.99972, 3.16156, 4.15209, 0.425192}, {0, -8.88178e-16, -5.23939, -4, -5.23123, 5.23372, 4, -1.54883e-11, 0.00566839, 0, 5.23123, 0}, {3.88882, 3.89489, 2.97354, 5.23123, 0, 0, -3.44516, -3.45053, 1.3657, -5.6749, -0.444357, -4.33924}, {8.15548, 0.834427, -0.835156, 0, 0, -3.59038, -4.00272, -3.99679, 4.00028, -4.15276, 3.16236, 0.425261}, {1.3657, 3.45053, -3.45053, 0, 0, 3.59038, -4.33924, 0.444357, -0.444357, 2.97354, -3.89489, 0.304504}, {-0.837584, 3.2348, -1.28032, -0.944765, -3.55036e-12, 4.51512, -0.578996, -3.2348, -3.2348, 2.36134, 0, 0}, {-3.0469, 3.0469, -4, 0, -7.0469, 0, 7.0469, 0, 0, -4, 4, 4}, {0.832911, -2.82507, -0.828908, 0.808732, 3.17388, -0.81323, -3.40548, -0.230067, -1.83358, 1.76384, -0.118743, 3.47572}, {0, -3.01876, 0, 1.28032, 1.39906, -3.2348, -4.51512, 1.5799, -3.09855e-12, 3.2348, 0.0397999, 3.2348}, {1.27174, 3.21511, 0.89222, 0, 0, -2.4308, 3.24338, -3.21511, 0.698828, -4.51512, 3.70603e-12, 0.839751}, {-1.79652, -1.79386, -1.79496, 1.79652, 1.79386, -1.79543, -3.65719, 3.65719, -0.0700075, 3.65719, -3.65719, 3.66039}, {-2.2828e-11, 4, 0.0025524, 0, 0, 5.24273, -5.23939, 0, 0, 5.23939, -4, -5.24528}, {-1.75292, -4.51512, -4.40936e-12, 0.0630025, 1.28032, 3.2348, 2.36134, 0, 0, -0.671422, 3.2348, -3.2348}, {-1.82767, 3.81744, 1.76272, -0.114041, 1.46619, -3.70442, 2.43635, -0.964293, 2.43635, -0.494641, -4.31934, -0.494641}, {-3.45053, -1.3657, -3.45053, -0.444357, 4.33924, -5.68374, 0, 0, 5.23939, 3.89489, -2.97354, 3.89489}, {2.9332, 2.26271, -0.706418, -2.9332, 1.41766, 2.12097, 0, -0.989411, -3.33225, 0, -2.69097, 1.9177}, {0, -1.39581e-17, 4.03735, -3.2348, -3.2348, -3.14648, -1.28032, 3.2348, -2.28562, 4.51512, 4.40982e-12, 1.39475}, {3.25531, -1.69257, -3.22311, -3.621e-12, -1.19223, 4.51512, 0, 2.97985, 0, -3.25531, -0.095055, -1.29201}, {-2.43276, 1.15549, 1.15762, 2.22336, 2.22531, 2.22336, 0.45554, -3.13444, 0.45554, -0.246142, -0.246357, -3.83653}, {4.00272, -3.99679, 4.00378, -8.15548, 0.834427, -0.842284, 4.15276, 3.16236, 0.42889, 0, 0, -3.59038}, {-2.25991, 1.3285, 0.893907, -1.12519, -1.12617, -4.07005, 1.87562, 1.87726, -0.7419, 1.50948, -2.07958, 3.91804}, {-3.45053, 1.3657, -3.45053, -0.444357, -4.33924, -5.68374, 3.89489, 2.97354, 3.89489, 0, 0, 5.23939}, {-3.2348, 0.341949, -1.28032, 0, -3.12276, 0, 3.2348, 0.619904, -3.2348, -3.95817e-12, 2.1609, 4.51512}, {2.97704, 0.304595, -3.89524, -4.34434, -0.444491, 0.444879, 1.36731, -3.44735, 3.45037, 0, 3.58725, 0}, {1.27702, -1.8283, -3.22687, 3.22647, -0.102762, 3.25484, 0, 2.97985, 0, -4.5035, -1.04879, -0.0279753}, {5.67645, -4.33837, 0.445968, 3.45388, 1.36462, 3.44854, -3.89094, 2.97375, -3.89451, -5.23939, 0, 0}, {0, 0, -5.23568, -0.00566839, -4, 0.00283219, 5.24506, 4, 5.23285, -5.23939, 0, 0}, {2.97354, -3.89489, 3.89489, 1.3657, 3.45053, -3.45053, 0, -5.23939, 0, -4.33924, 5.68374, -0.444357}, {7.0469, 0, 4.44089e-16, 0, 0, -7.0469, -4, -4, 4, -3.0469, 4, 3.0469}, {0.676898, -0.676898, 2.91348, 1.85764, -1.85764, -1.85764, -2.8863, -0.704082, -0.704082, 0.351759, 3.23862, -0.351759}, {-1.71643, -3.77342, 1.87396, 2.40825, 0.953172, 2.40825, -0.071317, -1.44928, -3.6617, -0.620505, 4.26953, -0.620505}, {-3.52345, -3.52345, -3.52345, 3.52345, -3.52345, 3.52345, 3.52345, 3.52345, -3.52345, -3.52345, 3.52345, 3.52345}, {-1.16853, 4.05757, 2.41902, -2.70338, -1.07129, -2.70173, 3.36405, 1.3331, -0.22682, 0.507865, -4.31938, 0.509529}, {0.235286, 2.46776, -2.45659, -1.58499, 1.09747, 2.26228, -1.89674, -2.81329, -0.210235, 3.24644, -0.75193, 0.40455}, {1.72714, 0.683827, -1.72773, -2.24537, -3.98415, -1.34153, 0.964303, -1.03975, 2.62699, -0.446071, 4.34007, 0.442278}, {-7.18233, -0.137487, -7.18233, 1.86445, 1.86498, 5.45483, 3.52295, -3.52295, 3.52295, 1.79493, 1.79545, -1.79545}, {0, -8.88178e-16, -2.4308, -3.22687, 1.27702, -0.160385, -0.0279753, -4.5035, 1.80584, 3.25484, 3.22647, 0.785343}, {3.45037, 1.36731, 3.44826, -3.89524, 2.97704, -0.306029, 0, 0, -3.58881, 0.444879, -4.34434, 0.446582}, {3.24278, -1.28505, 1.07917, 0, 0, -2.6315, -3.21463, -3.24675, -0.442405, -0.0281511, 4.53179, 1.99473}, {1.7269, 0.683416, -1.72787, -1.27936, -5.02087, 1.28648, 3.27466, 5.8105, 1.9565, -3.7222, -1.47305, -1.5151}, {-5.23372, -4, 5.23939, -0.00566839, 4, -2.28255e-11, 5.23939, 0, 0, 0, 0, -5.23939}, {0.0281511, 4.53179, 2.33833, 0, 0, -2.884, 3.21463, -3.24675, 0.327026, -3.24278, -1.28505, 0.218644}, {-3.52345, -3.52345, 3.52345, -3.52345, 3.52345, -3.52345, 3.52395, 3.52295, 3.52295, 3.52295, -3.52295, -3.52295}, {1.3657, 3.45494, 3.45053, -4.33924, 5.691, 0.444357, 2.97354, -3.89986, -3.89489, 0, -5.24608, 0}, {-1.06097, 2.95229, -1.06649, 4.44047, 0.792573, -0.800037, -2.21214, -0.888535, 3.02699, -1.16736, -2.85632, -1.16047}, {4, 4, -4, -3.1649, -3.16386, -4.15492, 0, -7.04589, 0, -0.835098, 6.20975, 8.15492}, {-3.23839, -0.578016, 0.58346, 0.0195373, 3.14514, -1.26116, 3.23532, 0.0837745, 2.04552, -0.0164672, -2.6509, -1.36782}, {-3.59038, 0, -8.88178e-16, 4, 4, -4, -0.834843, -0.83804, 8.15243, 0.425226, -3.16196, -4.15243}, {-3.99679, -4.00028, -4.00272, 0, 3.59038, 0, 0.834427, 0.835156, 8.15548, 3.16236, -0.425261, -4.15276}, {-0.618598, -0.619625, 2.97076, -2.5319, -2.52969, -2.52969, -0.377606, 3.21154, -0.378844, 3.52811, -0.062223, -0.062223}, {-6.21002, 0.835098, 8.15492, 3.164, 3.1649, -4.15492, 7.04488, 0, 0, -3.99886, -4, -4}, {-2.96943, -3.89447, -0.304082, 0, 0, -3.59038, -1.36934, 3.45016, 3.45016, 4.33877, 0.444309, 0.444309}, {-4.44089e-16, 3.59038, 0, 0.834427, 0.835156, -8.15548, 3.16236, -0.425261, 4.15276, -3.99679, -4.00028, 4.00272}, {4.15492, 0.425481, -3.1649, 0, -3.59038, 0, 4, 4, 4, -8.15492, -0.835098, -0.835098}, {0.444309, -0.444309, -4.33877, -3.89447, 0.304082, 2.96943, 3.45016, -3.45016, 1.36934, 0, 3.59038, 0}, {-4.44089e-16, 7.0469, 0, -3.04603, -3.0469, -4, 7.04488, 0, 0, -3.99886, -4, 4}, {-1.90626e-16, 0, 4.03735, -3.2348, 3.2348, 1.14797, 3.2348, 1.28032, -2.18823, -4.40962e-12, -4.51512, -2.99709}, {-1.3657, -3.45053, -3.44934, 4.33924, -0.444357, -0.44815, -2.97354, 3.89489, 0.307102, 0, 0, 3.59038}, {-4, 4, -4, 0, 0, 7.0469, 0.835098, -8.15492, -6.2118, 3.1649, 4.15492, 3.1649}, {1.22258, -2.9332, -2.86482e-12, -0.434061, 0, 3.2348, 1.13877, 2.9332, 2.86495e-12, -1.92728, 0, -3.2348}, {0.619868, 0, -4.61952, 1.07793, -2.9332, 1.07793, 1.00404, 2.9332, 1.00404, -2.70184, 0, 2.53754}, {8.15492, -0.835098, -6.2118, -4, 4, -4, -4.15492, -3.1649, 3.1649, 0, 0, 7.0469}, {-1.77636e-15, 0, 7.0469, -4, -4, -4, -3.0469, 4, -3.0469, 7.0469, 0, 0}, {3.89735, -2.97221, -3.89314, -0.447948, 4.33729, 5.68119, 0, 0, -5.23939, -3.4494, -1.36509, 3.45133}, {0.300503, 3.2348, -3.2348, -3.50419, 0, 0, 0.773493, -3.22084, -1.27452, 2.43019, -0.0139624, 4.50932}, {-5.23939, 4, -5.23939, 5.23939, 0, 0, 0, 0, 5.23939, -2.28255e-11, -4, -2.28255e-11}, {5.23939, 0, -1.75044e-16, -5.24506, 4, 5.23939, 0, 0, -5.23939, 0.00566839, -4, 2.28255e-11}, {3.95255, -0.362167, 0.362483, -0.482349, -3.10803, -0.479633, -1.12077, 1.12077, 2.46863, -2.34943, 2.34943, -2.35148}, {1.27685, 3.22605, 0.364333, -1.43581, -3.62766, 3.62766, -4.79345, -0.703234, 0.703234, 4.95241, 1.10484, -4.69522}, {-3.45053, 3.45053, 1.3657, -0.444357, 0.444357, -4.33924, 3.89489, -0.304504, 2.97354, 0, -3.59038, 0}, {-1.03322, 0, 2.9332, -2.44657, -2.9332, -2.9332, -0.388139, 2.9332, 0, 3.86792, 0, 0}, {-2.86482e-12, -2.9332, 2.09032, -3.2348, 0, -0.999254, 2.86466e-12, 2.9332, 1.94703, 3.2348, 0, -3.03809}, {3.99728, -3.99972, -4.00321, -8.14937, 0.83453, 0.841653, 4.15209, -0.425192, 3.16156, 0, 3.59038, 0}, {-3.65719, -3.66039, -3.65719, -1.79386, 1.79496, 1.79652, 3.65719, 0.0700075, 3.65719, 1.79386, 1.79543, -1.79652}, {0.32313, 3.2444, -3.2106, 3.54154, -2.30319, 5.58401, -2.14916, 1.30205, 3.28335, -1.71551, -2.24325, -5.65675}, {-3.89489, 2.97354, -2.82238, 0, 0, 4.03735, 0.444357, -4.33924, -0.86478, 3.45053, 1.3657, -0.350185}, {1.84375, -4.52327, -0.014292, 0.315792, 3.2348, -3.2348, -3.14489, 0, 0, 0.985347, 1.28847, 3.24909}, {-4.33924, -0.444357, -5.6776, 0, 0, 5.23939, 1.3657, -3.45053, -3.45246, 2.97354, 3.89489, 3.89067}, {5.23939, 0, 0, -3.45053, 3.45053, 1.3657, -5.68374, 0.444357, -4.33924, 3.89489, -3.89489, 2.97354}, {7.0469, 8.88178e-16, 0, 3.16371, 4.15492, -3.1649, -6.20947, -8.15492, -0.835098, -4.00114, 4, 4}, {-0.782485, -3.2348, -1.28032, 2.60358, 0, 0, -0.410568, 3.2348, -3.2348, -1.41052, 3.55036e-12, 4.51512}, {-4, 4, -4, -4.15492, 0.425481, 3.1649, 0, -3.59038, 0, 8.15492, -0.835098, 0.835098}, {-1.75292, -4.51512, 4.40936e-12, -1.18742, 1.28032, -3.2348, 0.578996, 3.2348, 3.2348, 2.36134, 0, 0}, {-4, -4, -4, -6.2118, 8.15492, 0.835098, 3.1649, -4.15492, 3.1649, 7.0469, 0, 0}, {0.304504, -2.97354, 3.89489, -3.45053, -1.3657, -3.45053, -0.444357, 4.33924, -0.444357, 3.59038, 0, 0}, {-0.968585, 2.9332, 1.64782, -3.80236, -2.9332, 0.915743, 1.28259, 0, -3.64114, 3.48835, 0, 1.07758}, {8.15492, 0.835098, -3.7826, -4, -4, 0.45685, 0, 0, 5.36117, -4.15492, 3.1649, -2.03542}, {-4, 4, -4, 0, -7.0469, 0, 7.0469, 0, 0, -3.0469, 3.0469, 4}, {-2.33946, 1.78605, 2.34209, 3.03792, -2.3193, 2.20139, -2.35172, -2.20459, -2.89092, 1.65325, 2.73783, -1.65256}, {2.60358, 0, 3.0632e-16, -1.03055, -1.28032, -3.2348, 0.410568, -3.2348, 3.2348, -1.98359, 4.51512, -4.40967e-12}, {-3.59038, 1.77636e-15, -1.11022e-16, 4, -4, 4, 0.425226, -4.15243, -3.16196, -0.834843, 8.15243, -0.83804}, {0, 0, -5.23939, -4, 1.54883e-11, -0.00566839, 4, -5.23123, 5.24506, 0, 5.23123, 0}, {-1.62732e-11, 1.54703e-11, 4, 5.23939, 0, 0, 0, -5.23939, 0, -5.23939, 5.23939, -4}, {4.72393, 2.32297, -6.20162, -2.81181, -4.23508, -5.55986, 1.34415, -1.34415, 7.48662, -3.25627, 3.25627, 4.27486}, {-3.1649, -4.15492, -3.16386, -0.835098, 8.15492, 6.20975, 4, -4, 4, 0, 0, -7.04589}, {2.10128, 3.1649, 4.15492, 3.73608, 0.835098, -8.15492, -0.419151, -4, 4, -5.41822, 0, 0}, {0, 0, -7.0469, 7.0469, 0, 0, -4.00114, 4, 4, -3.04575, -4, 3.0469}, {-3.89511, 3.89452, 2.96992, -5.24608, 0, 0, 5.68769, -0.444099, -4.33672, 3.45349, -3.45042, 1.3668}, {-7.0469, 0, 0, 4.00114, 4, 4, 3.04575, -4, 3.0469, 0, 0, -7.0469}, {-5.24608, 0, 0, 5.24608, -5.24018, 4, 2.32367e-11, -0.0025524, -4, 0, 5.24273, 0}, {4.44089e-16, 4.44089e-16, 4.03735, -4.51512, 4.40818e-12, -1.39475, 3.2348, 3.2348, -1.306, 1.28032, -3.2348, -1.33659}, {6.38334, 0.936482, -0.936482, -5.90226, 2.17282, 1.41756, -3.46093, -0.129456, -3.46093, 2.97985, -2.97985, 2.97985}, {-0.252976, 0.252976, -3.84336, 0.368915, 3.22147, 0.368915, -2.40103, -1.18935, 1.18935, 2.28509, -2.28509, 2.28509}, {-1.44735, 2.54109, 0.82519, -0.346604, -3.63529, 3.61884, -1.58915, 0.412839, -3.42177, 3.3831, 0.681367, -1.02226}, {-2.32365e-11, 0.0025524, 4, -5.24608, 0, 0, 0, 5.24273, 0, 5.24608, -5.24528, -4}, {-3.59357e-12, 3.68038, 1.41455, 2.62736e-12, -2.69097, 1.9177, -3.2348, 0.574024, -0.993189, 3.2348, -1.56344, -2.33906}, {2.74148, 0.0555531, 2.80173, -2.9202, -2.12061, -0.341431, -0.0977885, 3.03978, -0.0364189, 0.27651, -0.974727, -2.42388}, {4.00321, 3.99728, 3.99972, 0, 0, -3.59038, -0.841653, -8.14937, -0.83453, -3.16156, 4.15209, 0.425192}, {0, 4.44089e-16, -7.0469, 0, 7.04488, 0, -4, -3.99886, 4, 4, -3.04603, 3.0469}, {-4.40759e-12, 4.51512, -3.21766, 0, 0, 4.03735, -3.2348, -1.28032, 0.328292, 3.2348, -3.2348, -1.14798}, {-3.2348, -3.2348, 1.306, 4.40977e-12, 4.51512, -3.21766, 0, 0, 4.03735, 3.2348, -1.28032, -2.12568}, {1.28032, 0.265417, 3.2348, -4.51512, 1.06793, -3.90061e-12, 3.2348, 1.75796, -3.2348, 0, -3.09131, 0}, {-2.85306, -1.28668, -1.28504, 3.1184, -0.694894, -0.694008, 0.0152986, 3.82424, -1.42003, -0.280638, -1.84266, 3.39908}, {3.0469, 4, -3.0469, -7.0469, 0, 0, 4, -4, -4, 0, 0, 7.0469}, {1.29201, -3.25531, 0.810704, 0, 0, -2.6315, -4.51512, -3.75807e-12, 1.37723, 3.22311, 3.25531, 0.443571}, {-3.66502, 2.14914, 1.43616, 0.752328, 1.90198, -1.90298, 4.02391, -1.24183, 1.24643, -1.11122, -2.8093, -0.779603}, {8.15492, -3.3488, 0.835098, -4.15492, -1.54688, 3.1649, 0, 4.85752, 0, -4, 0.0381551, -4}, {-3.45053, 1.3657, -3.45053, 3.59038, 0, 0, 0.304504, 2.97354, 3.89489, -0.444357, -4.33924, -0.444357}, {-4, 3.0469, -3.0469, 0, -7.0469, 0, 4, 4, -4, 0, 0, 7.0469}, {-10.7068, 3.65991, -3.65991, 3.52345, -3.52345, -3.52345, 3.52345, 3.52345, 3.52345, 3.65991, -3.65991, 3.65991}, {0, -3.59038, 4.44089e-16, 3.1649, 0.425481, 4.15492, 0.835098, -0.835098, -8.15492, -4, 4, 4}, {-1.94171, 5.28363, -1.94171, 2.66708, -5.57073, -2.5723, 2.43635, -0.964293, 2.43635, -3.16172, 1.25139, 2.07766}, {0.099584, -1.28032, 3.2348, -1.88193, 4.51512, 4.40977e-12, 2.36134, 0, 0, -0.578997, -3.2348, -3.2348}, {-6.2118, -0.835098, -8.15492, 3.1649, -3.1649, 4.15492, 7.0469, 0, 0, -4, 4, 4}, {0.75324, 1.90144, -1.90334, 5.34316, -3.13319, -2.09374, -1.32234, 1.89318, 3.34138, -4.77406, -0.661432, 0.655698}, {4.44089e-16, 7.04488, 0, -4.15492, 3.164, -3.1649, 8.15492, -6.21002, -0.835098, -4, -3.99886, 4}, {-2.97354, -3.89986, -3.89489, 4.33924, 5.691, 0.444357, -1.3657, 3.45494, 3.45053, 0, -5.24608, 0}, {0, 0, -5.23939, 4, 5.24608, 5.23939, -4, -1.55241e-11, -1.5915e-11, 0, -5.24608, 0}, {-0.444357, 5.68374, 4.33924, 3.89489, -3.89489, -2.97354, 0, -5.23939, 0, -3.45053, 3.45053, -1.3657}, {3.52345, -3.52345, -3.52345, -3.52345, -3.52345, 3.52345, 3.52345, 3.52345, 3.52345, -3.52345, 3.52345, -3.52345}, {3.59038, 0, 2.22045e-16, 0.304504, -3.89489, -2.97354, -0.444357, 0.444357, 4.33924, -3.45053, 3.45053, -1.3657}, {5.23123, -8.88178e-16, 0, -5.23123, -5.23939, -4, -1.6327e-11, -1.54706e-11, 4, 0, 5.23939, 0}, {-1.36374, -3.44772, 3.44954, -2.97575, 3.89171, -0.30733, 4.3395, -0.443995, 0.448176, 0, 0, -3.59038}, {-3.16371, 4.15492, -3.1649, 4.00114, 4, 4, -7.0469, 0, 0, 6.20947, -8.15492, -0.835098}, {-3.52395, -3.52295, -3.52295, -3.52295, 3.52295, 3.52295, 3.52295, -3.52295, 3.52395, 3.52395, 3.52295, -3.52395}, {4, -4, -4.00114, -8.15492, 0.835098, -6.20947, 0, 0, 7.0469, 4.15492, 3.1649, 3.16371}, {-0.425481, 4.15492, 3.1649, 0.835098, -8.15492, 0.835098, -4, 4, -4, 3.59038, 0, 0}, {-1.79519, 1.79519, -1.79519, -1.79519, -1.79519, 1.79519, -0.0700075, -3.65719, -3.65719, 3.66039, 3.65719, 3.65719}, {4, 4, -4, 0, 0, 7.0469, -7.0469, 0, 0, 3.0469, -4, -3.0469}, {1.16094, -1.15703, 4.97097, -1.66567, -3.57722, 1.41703, -2.89698, 2.8944, -1.14655, 3.40171, 1.83985, -5.24145}, {-2.7042, -1.06842, -2.70002, 1.70166, -5.90879, -3.52267, 2.19866, 5.37974, 2.18568, -1.19612, 1.59748, 4.03701}, {4.33729, -5.67235, 0.447948, -1.36509, -3.44596, 3.4494, 0, 5.23123, 0, -2.97221, 3.88708, -3.89735}, {3.2348, -3.2348, -1.14797, 0, 0, 4.03735, 1.28032, 3.2348, -1.49462, -4.51512, -4.40977e-12, -1.39475}, {4, 4, 4, -0.835098, -0.835098, -8.15492, 0, -3.59038, 0, -3.1649, 0.425481, 4.15492}, {-3.1649, -3.1649, 4.15492, -7.0469, 0, 0, 4, 4, 4, 6.2118, -0.835098, -8.15492}, {0.724826, 0.724826, -6.59499, -3.21143, -3.21143, -3.21143, 3.7299, 0.139517, 3.7299, -1.24329, 2.34709, 6.07653}, {2.48661, 2.48661, 9.80643, -3.21143, -3.21143, -3.21143, -1.7154, 5.33149, 5.33149, 2.44023, -4.60667, -11.9265}, {-4.95125, 1.10332, 1.10192, -1.44818, -1.58249, 3.65892, 0.833328, -2.10815, -2.10546, 5.5661, 2.58731, -2.65538}, {0.836183, -2.10682, -2.10682, 4.11656, 1.00419, 1.00419, -1.14088, 2.87451, -0.715871, -3.81187, -1.77188, 1.8185}, {0.343882, -3.2462, -1.28483, 0.297233, 0.297493, 4.63286, 2.13498, 2.13685, 0.845752, -2.7761, 0.811861, -4.19379}, {2.22045e-16, 5.23939, 0, -3.44772, -3.45309, -1.36374, 3.89171, 3.89778, -2.97575, -0.443995, -5.68407, 4.3395}, {3.58725, -4.44089e-16, 0, -3.44752, -3.45053, -1.3657, -0.443969, -0.444357, 4.33924, 0.304238, 3.89489, -2.97354}, {3.65991, -3.65991, -3.65991, 3.52345, 3.52345, -3.52345, -3.52345, -3.52345, -3.52345, -3.65991, 3.65991, 10.7068}, {3.1649, -4.15492, -3.1649, 0, 0, -7.0469, -4, -4, 4, 0.835098, 8.15492, 6.2118}, {-4, -4, 4, 0.835098, 8.15492, -0.835098, 3.59038, 0, 0, -0.425481, -4.15492, -3.1649}, {-1.3476, -0.0112467, -3.55949, 1.85019, -3.24836, -1.05487, 1.92324, 3.24442, -0.189939, -2.42583, 0.0151799, 4.80429}, {1.17675, 3.24909, 1.28847, -0.315792, -3.2348, 3.2348, -3.14489, 0, 0, 2.28393, -0.014292, -4.52327}, {8.15492, -0.835098, -0.835098, -4, 4, 4, 0, 0, -3.59038, -4.15492, -3.1649, 0.425481}, {-4.15492, -3.1649, -3.1649, -4, 4, 4, 0, -7.0469, 0, 8.15492, 6.2118, -0.835098}, {0.137487, 7.18233, 7.18233, -1.79519, 1.79519, -1.79519, 3.52295, -3.52295, -3.52295, -1.86524, -5.45458, -1.86419}, {3.52295, -3.52295, -3.52295, -3.66043, -3.65939, -3.65939, -3.52345, -3.52345, 3.52345, 3.66094, 10.7058, 3.65888}, {1.67988, -1.68212, -5.18466, -2.30896, 2.30807, 0.915293, -1.39444, -3.85015, -1.52682, 2.02352, 3.2242, 5.7962}, {3.4516, -3.45027, -1.36825, -3.89922, 3.89484, -2.97306, -5.24608, 0, 0, 5.6937, -0.444568, 4.3413}, {1.94453e-16, 2.70417, 0, 3.25531, -0.177688, 3.22311, -3.25531, -0.557762, 1.29201, 3.62091e-12, -1.96872, -4.51512}, {3.09726e-12, 1.01994, -3.86266, -3.25531, -0.69454, 0.97832, 3.25531, -2.18133, -1.3721, -3.41346e-12, 1.85593, 4.25643}, {2.90521, -1.78203, -2.9082, 2.41571, 1.84427, 2.82665, -2.85063, 1.82369, -2.38912, -2.47029, -1.88594, 2.47066}, {-5.23939, 0, -8.88178e-16, 0, 0, 5.24273, 2.28278e-11, -4, -0.0025524, 5.23939, 4, -5.24018}, {-3.52295, 3.52295, 3.52295, 1.79545, 1.79493, -1.79545, 7.18233, -7.18233, 0.137487, -5.45483, 1.86445, -1.86498}, {-3.52295, 3.52295, 3.52295, -3.52395, -3.52295, -3.52295, -3.65939, 3.65939, -3.66043, 10.7063, -3.65939, 3.66043}, {-0.835098, 0.835098, 8.15492, 0, 3.59038, 0, 4, -4, -4, -3.1649, -0.425481, -4.15492}, {-7.0469, 5.55112e-16, 0, 4, -4, -4, -3.1649, 3.1649, -4.15492, 6.2118, 0.835098, 8.15492}, {0.662971, 0.664005, -4.25288, 1.65703, 1.65961, 0.655439, -2.91351, 2.32133, -1.15244, 0.59351, -4.64495, 4.74988}, {1.19438, -3.49493, 0, -2.76951, 1.19435, 0, 1.94164, -0.567827, 2.9332, -0.366511, 2.8684, -2.9332}, {2.36134, 1.0718e-17, 8.88178e-16, 0.671422, -3.2348, 3.2348, -0.342675, 3.2348, 1.28032, -2.69009, 3.55093e-12, -4.51512}, {-1.10548, 3.2348, 0, -1.25586, -3.2348, 0, 0.613756, 2.30645e-12, -2.9332, 1.74759, -2.30645e-12, 2.9332}, {3.2348, 0.120997, 3.2348, 0, -3.09131, 0, -3.2348, -0.551371, 1.28032, 3.95817e-12, 3.52168, -4.51512}, {-3.2348, 0.76173, -0.403199, 2.15323e-12, -1.17552, -2.45621, 3.2348, 2.34907, 0.378214, -2.17514e-12, -1.93527, 2.4812}, {-3.53969, 3.53969, 2.69627, -1.11299, 1.11299, -6.1991, 5.13509, 1.9118, -3.91153, -0.482412, -6.56449, 7.41436}, {4.72983, -3.60283, 2.31706, -1.62186, -5.81149, 1.62186, -3.59839, 2.74098, 3.59839, 0.490411, 6.67334, -7.53731}, {-4, 4, -4, 4, -4, -3.0469, 0, 7.0469, 0, 0, -7.0469, 7.0469}, {0, 0, 7.0469, 4, -3.0469, -4, -4, -4, 4, 0, 7.0469, -7.0469}, {1.26315, 3.1826, -0.407781, -4.48373, 0.0790768, 0.0790768, -1.01464, -2.55645, -2.55645, 4.23522, -0.705229, 2.88515}, {-1.01079, -2.55709, -2.55383, 1.69808, -0.95029, 4.29031, 5.49464, 2.47799, 2.47483, -6.18193, 1.02939, -4.21131}, {-1.79519, -1.79519, 1.79519, -3.65991, 3.65991, -3.65991, 1.79519, 1.79519, 1.79519, 3.65991, -3.65991, 0.0695263}, {-1.79519, -1.79519, 1.79519, 5.4551, -1.86472, 1.86472, 3.52345, -3.52345, -3.52345, -7.18336, 7.18336, -0.13646}, {0, -4.44089e-16, 3.59038, -8.15492, -0.835098, 0.835098, 4, 4, -4, 4.15492, -3.1649, -0.425481}, {4.15492, -3.1649, 3.1649, 4, 4, -4, 0, -7.0469, 0, -8.15492, 6.2118, 0.835098}, {4.18211, -0.841369, 0.841369, 1.63378, -1.11155, -4.12784, -0.96395, -2.43548, 2.43548, -4.85193, 4.3884, 0.850991}, {-2.9332, -0.654372, 2.78087, 0, 0.366146, -3.84129, 0, 2.94119, 1.57488, 2.9332, -2.65297, -0.514459}, {4.51512, -1.06793, 3.90044e-12, 0, -3.09131, 0, -1.28032, 0.871067, 3.2348, -3.2348, 3.28817, -3.2348}, {0, -0.430374, 4.51512, -2.9332, -0.109716, -2.9332, 0, 3.52168, -4.51512, 2.9332, -2.98159, 2.9332}, {4.19026, 0.820764, 0.814826, 1.21474, -3.06912, 2.16855, -0.936049, 2.36499, 2.36631, -4.46895, -0.116634, -5.34969}, {0.972372, 0.736781, -3.03724, -3.79781, 2.2903, -1.05943, 0.111338, -3.09792, 0.84769, 2.7141, 0.0708344, 3.24899}, {-2.55729, 1.01135, -2.55763, -2.08284, -1.24835, 3.15697, 1.89416, -5.27077, 1.90402, 2.74596, 5.50777, -2.50336}, {3.77679, -1.49465, 0.187718, 0.660093, 4.25334, 0.656376, -2.557, 1.01192, -2.55789, -1.87988, -3.77061, 1.7138}, {-5.23939, 0, -5.55112e-17, 3.4502, -1.36448, 3.45065, -3.90439, -2.97758, -3.8953, 5.69358, 4.34205, 0.444645}, {-4.44089e-16, 4.44089e-16, -3.59038, 3.4494, -1.36509, 3.45059, 0.447948, 4.33729, 0.444157, -3.89735, -2.97221, -0.304367}, {4.28053, 0.593056, -0.587914, -0.673906, 1.70372, -1.70733, 1.45255, -3.67222, -1.55938, -5.05918, 1.37545, 3.85462}, {0, 4.47576, 0.618208, 0, -4.47576, 1.81259, -2.9332, -2.90763, -0.707734, 2.9332, 2.90763, -1.72306}, {-1.27174, 3.21511, 1.36527, 0, 0, -2.4308, 4.51512, -3.70603e-12, -0.839751, -3.24338, -3.21511, 1.90528}, {0.947177, -0.947177, -4.14023, -3.0344, -2.20499, -1.201, 1.74832, -1.74832, 0.691975, 0.338905, 4.90048, 4.64925}, {1.90928, 0.579177, 2.90015, -2.97176, -1.29918, -0.341631, 1.26427, 3.63788, 0.209764, -0.201792, -2.91787, -2.76828}, {3.04112e-12, -1.63545, -4.51512, 0, -3.01876, 0, 3.2348, 2.35061, 1.28032, -3.2348, 2.3036, 3.2348}, {4.04958, 1.77038, 0.465536, -2.40427, -1.3066, 2.40427, -4.10736, 1.28953, -0.407754, 2.46205, -1.7533, -2.46205}, {0.835098, -0.835098, 8.15492, -4, 4, -4, 3.59038, 0, 0, -0.425481, -3.1649, -4.15492}, {3.1649, -3.1649, -4.15492, -4, 4, -4, 0, -7.0469, 0, 0.835098, 6.2118, 8.15492}, {-3.65991, 3.65991, 3.65991, 1.79519, 1.79519, -1.79519, 1.79519, -1.79519, 1.79519, 0.0695263, -3.65991, -3.65991}, {1.79519, -1.79519, 1.79519, 1.86472, -1.86472, -5.4551, -3.52345, -3.52345, -3.52345, -0.13646, 7.18336, 7.18336}, {3.0611, -1.07112, 2.10077e-12, -0.369018, 1.30083, 3.2348, 0.267075, 1.7536, -3.2348, -2.95915, -1.98331, -2.03061e-12}, {-1.28032, 0.716498, -3.2348, -3.2348, -0.619904, 3.2348, 0, -3.12276, 0, 4.51512, 3.02616, 3.09876e-12}, {-3.24675, 0.177221, -3.21463, 0, 2.70417, 0, -1.28505, -0.665307, 3.24278, 4.53179, -2.21609, -0.0281511}, {-1.03768, -0.786269, 3.24125, 3.76174, 0.864649, -0.0233676, 1.42117, -2.10543, -3.24363, -4.14523, 2.02705, 0.0257498}, {-3.65991, -3.65991, 3.65991, -3.52345, 3.52345, 3.52345, 3.52345, -3.52345, 3.52345, 3.65991, 3.65991, -10.7068}, {-1.02588, -1.02588, -4.04576, 5.15074, -1.89616, -1.23707, -2.74863, 4.29827, 1.25677, -1.37623, -1.37623, 4.02606}, {4, -4, -4, -3.1649, -4.15492, 3.1649, 0, 0, 7.0469, -0.835098, 8.15492, -6.2118}, {4.27497, -6.68514, -1.95466, -0.750905, 7.33275, 1.46136, -3.95428, 3.55351, -2.7068, 0.430212, -4.20112, 3.20009}, {-0.675958, 1.70428, -1.70576, 3.47227, -0.944013, -2.64554, 0.813742, 1.53558, 2.05346, -3.61005, -2.29584, 2.29785}, {-2.9332, 0.268765, -0.269, 0, 1.01807, 2.57142, 0, -3.15223, -0.435397, 2.9332, 1.86539, -1.86702}, {2.9332, -2.86386e-12, 0.906086, 0, 3.2348, -2.30525, 0, -3.2348, -1.73209, -2.9332, 2.86386e-12, 3.13126}, {-1.28032, -3.2348, -0.365321, -3.2348, 3.2348, 1.14798, 0, 0, 4.03735, 4.51512, -4.40815e-12, -4.82}, {4.32811, 0.737725, -1.71304, -3.72649, -3.72649, 1.47492, -0.518804, -0.518804, 4.72046, -0.0828155, 3.50757, -4.48234}, {-5.23939, -3.88578e-16, 0, -3.90017, -3.8953, -2.97758, 3.45213, 3.45065, -1.36448, 5.68742, 0.444645, 4.34205}, {3.45053, 3.45053, -1.3657, 0, -3.59038, 0, 0.444357, 0.444357, 4.33924, -3.89489, -0.304504, -2.97354}, {0, 1.06747e-17, -2.884, -3.22311, 3.25531, -0.327888, -1.29201, -3.25531, 0.417097, 4.51512, 3.75787e-12, 2.79479}, {-0.0130226, -3.25531, 1.20877, -0.260244, 3.25531, 1.50608, 3.12118, 2.59785e-12, -0.952039, -2.84791, -2.3704e-12, -1.76282}, {0.578997, 3.2348, 3.2348, 2.36134, 0, 0, -0.250249, -3.2348, 1.28032, -2.69009, -3.55036e-12, -4.51512}, {-1.12419, -3.2348, -0.186522, 0.812252, -2.04448e-12, -2.60004, -1.39607, 3.2348, -0.0801962, 1.708, 2.2542e-12, 2.86675}, {-3.93279, 1.55848, -1.3088, 1.97526, -0.782753, -1.97415, -1.50913, 5.11867, 1.50188, 3.46666, -5.8944, 1.78108}, {-0.47019, -4.32902, 0.47019, 0.867473, 1.07771, 2.72291, 1.97453, -0.781507, -1.97453, -2.37181, 4.03281, -1.21857}, {-3.45037, 1.36731, 3.44843, 0, 0, -5.23939, 3.89524, 2.97704, -3.89946, -0.444879, -4.34434, 5.69042}, {-3.45053, 1.3657, 3.45053, 3.59038, 0, 0, -0.444357, -4.33924, 0.444357, 0.304504, 2.97354, -3.89489}, {2.40563, -3.3686, -2.16577, -4.01552, 0.313534, -3.06173, -1.35813, -0.303573, 2.96446, 2.96803, 3.35864, 2.26304}, {0.444309, 1.73608, 4.33877, 0, 4.85752, 0, 3.45016, -2.1866, -1.36934, -3.89447, -4.407, -2.96943}, {-1.77354, -2.8259, -5.08017, -1.99992, 2.80049, 1.80052, -0.192763, -1.93544, 1.91528, 3.96622, 1.96086, 1.36437}, {3.41957, -0.149544, 3.15791, -3.35877, 2.12868, 1.33307, 6.03338, 1.03375, -2.39461, -6.09418, -3.0129, -2.09638}, {1.36731, -2.16592, -3.45037, 0, 4.85752, 0, -4.34434, 1.78399, -0.444879, 2.97704, -4.4756, 3.89524}, {-2.95631, -0.302739, 1.37126, 3.02503, 0.309776, 3.95804, 2.1672, -3.36845, -2.40376, -2.23591, 3.36142, -2.92554}, {2.31112, 1.19654, -5.83206, -1.28659, 2.03806, 3.24669, -3.3095, 0.144731, -3.05627, 2.28498, -3.37933, 5.64163}, {-1.96264, -1.84718, 0.269133, -1.79514, 2.79017, 1.99109, 5.26848, -3.1772, 1.46969, -1.5107, 2.23422, -3.72992}, {-0.60788, 3.25394, -0.100754, 4.36982, -1.029, 0.544673, 0.0459483, -1.94609, 2.48692, -3.80789, -0.278843, -2.93084}, {-2.10446, -2.10356, 0.831802, -1.45971, -1.45589, -3.94218, -2.09284, 3.1452, -1.24369, 5.65702, 0.414251, 4.35407}, {3.27119, 4.85191, 0.362578, 0.814367, -4.35925, 0.134979, -0.753128, 2.3313, 2.35448, -3.33243, -2.82396, -2.85204}, {-3.50419, 0, -4.44089e-16, 2.14843, -3.22874, 1.27672, -2.43779, 0.014006, -4.52341, 3.79356, 3.21473, 3.24669}}
   ]
   + total size  : 2.1e+02kB
  ]
  + total size  : 2.1e+02kB
 ]
 
diff --git a/test/test_fem/test_integrate_triangle_3.verified b/test/test_fem/test_integrate_triangle_3.verified
index 8eb76dee5..9274a5bd8 100644
--- a/test/test_fem/test_integrate_triangle_3.verified
+++ b/test/test_fem/test_integrate_triangle_3.verified
@@ -1,146 +1,146 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 2
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 13
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 8
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
        ]
-        (not_ghost:triangle_3) [
+        (not_ghost:_triangle_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_3
+        + id             : mesh:connectivities:_triangle_3
         + size           : 16
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{3, 9, 6}, {0, 12, 7}, {2, 10, 5}, {1, 11, 4}, {7, 8, 9}, {6, 9, 8}, {6, 8, 10}, {7, 12, 8}, {5, 10, 8}, {4, 8, 12}, {4, 11, 8}, {5, 8, 11}, {0, 4, 12}, {3, 7, 9}, {1, 5, 11}, {2, 6, 10}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 13
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 8
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
        ]
-        (not_ghost:triangle_3) [
+        (not_ghost:_triangle_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_3
+        + id             : mesh:connectivities:_triangle_3
         + size           : 16
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{3, 9, 6}, {0, 12, 7}, {2, 10, 5}, {1, 11, 4}, {7, 8, 9}, {6, 9, 8}, {6, 8, 10}, {7, 12, 8}, {5, 10, 8}, {4, 8, 12}, {4, 11, 8}, {5, 8, 11}, {0, 4, 12}, {3, 7, 9}, {1, 5, 11}, {2, 6, 10}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 7
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_2
+   + id             : mesh:connectivities:_segment_2
    + size           : 8
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:triangle_3
+   + id             : mesh:connectivities:_triangle_3
    + size           : 16
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 23kB
    + values         : {{3, 9, 6}, {0, 12, 7}, {2, 10, 5}, {1, 11, 4}, {7, 8, 9}, {6, 9, 8}, {6, 8, 10}, {7, 12, 8}, {5, 10, 8}, {4, 8, 12}, {4, 11, 8}, {5, 8, 11}, {0, 4, 12}, {3, 7, 9}, {1, 5, 11}, {2, 6, 10}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 13
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:triangle_3
+   + id             : my_fem:jacobians:_triangle_3
    + size           : 16
    + nb_component   : 1
    + allocated size : 16
    + memory size    : 0.12kB
    + values         : {{0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:triangle_3
+   + id             : my_fem:quadrature_points:_triangle_3
    + size           : 1
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0.333333, 0.333333}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:triangle_3
+   + id             : my_fem:shapes:_triangle_3
    + size           : 16
    + nb_component   : 3
    + allocated size : 16
    + memory size    : 0.38kB
    + values         : {{0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:triangle_3
+   + id             : my_fem:shapes_derivatives:_triangle_3
    + size           : 16
    + nb_component   : 6
    + allocated size : 16
    + memory size    : 0.75kB
    + values         : {{-2, 2, 0, -4, 2, 2}, {-2, -2, 4, 0, -2, 2}, {2, 2, -4, 0, 2, -2}, {2, -2, 0, 4, -2, -2}, {-2, -2, 2, -2, 1.04929e-11, 4}, {2, 2, -4, 1.08926e-11, 2, -2}, {-2, 2, -2, -2, 4, -1.08926e-11}, {-2, 2, -1.04929e-11, -4, 2, 2}, {2, -2, 8.43547e-12, 4, -2, -2}, {2, -2, 2, 2, -4, 8.03579e-12}, {-2, -2, 4, -8.03579e-12, -2, 2}, {2, 2, -2, 2, -8.43547e-12, -4}, {-2, -2, 2, -2, 0, 4}, {-2, 2, -2, -2, 4, 0}, {2, -2, 2, 2, -4, 0}, {2, 2, -2, 2, 0, -4}}
   ]
   + total size  : 1e+02kB
  ]
  + total size  : 1e+02kB
 ]
 
diff --git a/test/test_fem/test_integrate_triangle_6.verified b/test/test_fem/test_integrate_triangle_6.verified
index 38638194c..04bbfdea2 100644
--- a/test/test_fem/test_integrate_triangle_6.verified
+++ b/test/test_fem/test_integrate_triangle_6.verified
@@ -1,146 +1,146 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 2
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 41
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}, {0.125, 0.875}, {0.375, 0.875}, {0.125, 0.125}, {0.125, 0.375}, {0.875, 0.875}, {0.875, 0.625}, {0.875, 0.125}, {0.625, 0.125}, {0.25, 0.5}, {0.375, 0.625}, {0.125, 0.625}, {0.5, 0.75}, {0.625, 0.625}, {0.625, 0.875}, {0.375, 0.375}, {0.75, 0.5}, {0.5, 0.25}, {0.375, 0.125}, {0.625, 0.375}, {0.875, 0.375}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 8
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{0, 4, 5}, {4, 1, 6}, {1, 7, 8}, {7, 2, 9}, {2, 10, 11}, {10, 3, 12}, {3, 13, 14}, {13, 0, 15}}
        ]
-        (not_ghost:triangle_6) [
+        (not_ghost:_triangle_6) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_6
+        + id             : mesh:connectivities:_triangle_6
         + size           : 16
         + nb_component   : 6
         + allocated size : 2000
         + memory size    : 47kB
         + values         : {{3, 17, 10, 21, 22, 12}, {0, 20, 13, 23, 24, 15}, {2, 18, 7, 25, 26, 9}, {1, 19, 4, 27, 28, 6}, {13, 16, 17, 29, 30, 31}, {10, 17, 16, 22, 30, 32}, {10, 16, 18, 32, 33, 34}, {13, 20, 16, 24, 35, 29}, {7, 18, 16, 26, 33, 36}, {4, 16, 20, 37, 35, 38}, {4, 19, 16, 28, 39, 37}, {7, 16, 19, 36, 39, 40}, {0, 4, 20, 5, 38, 23}, {3, 13, 17, 14, 31, 21}, {1, 7, 19, 8, 40, 27}, {2, 10, 18, 11, 34, 25}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 41
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}, {0.125, 0.875}, {0.375, 0.875}, {0.125, 0.125}, {0.125, 0.375}, {0.875, 0.875}, {0.875, 0.625}, {0.875, 0.125}, {0.625, 0.125}, {0.25, 0.5}, {0.375, 0.625}, {0.125, 0.625}, {0.5, 0.75}, {0.625, 0.625}, {0.625, 0.875}, {0.375, 0.375}, {0.75, 0.5}, {0.5, 0.25}, {0.375, 0.125}, {0.625, 0.375}, {0.875, 0.375}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 8
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{0, 4, 5}, {4, 1, 6}, {1, 7, 8}, {7, 2, 9}, {2, 10, 11}, {10, 3, 12}, {3, 13, 14}, {13, 0, 15}}
        ]
-        (not_ghost:triangle_6) [
+        (not_ghost:_triangle_6) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_6
+        + id             : mesh:connectivities:_triangle_6
         + size           : 16
         + nb_component   : 6
         + allocated size : 2000
         + memory size    : 47kB
         + values         : {{3, 17, 10, 21, 22, 12}, {0, 20, 13, 23, 24, 15}, {2, 18, 7, 25, 26, 9}, {1, 19, 4, 27, 28, 6}, {13, 16, 17, 29, 30, 31}, {10, 17, 16, 22, 30, 32}, {10, 16, 18, 32, 33, 34}, {13, 20, 16, 24, 35, 29}, {7, 18, 16, 26, 33, 36}, {4, 16, 20, 37, 35, 38}, {4, 19, 16, 28, 39, 37}, {7, 16, 19, 36, 39, 40}, {0, 4, 20, 5, 38, 23}, {3, 13, 17, 14, 31, 21}, {1, 7, 19, 8, 40, 27}, {2, 10, 18, 11, 34, 25}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 7
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_3
+   + id             : mesh:connectivities:_segment_3
    + size           : 8
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 23kB
    + values         : {{0, 4, 5}, {4, 1, 6}, {1, 7, 8}, {7, 2, 9}, {2, 10, 11}, {10, 3, 12}, {3, 13, 14}, {13, 0, 15}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:triangle_6
+   + id             : mesh:connectivities:_triangle_6
    + size           : 16
    + nb_component   : 6
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{3, 17, 10, 21, 22, 12}, {0, 20, 13, 23, 24, 15}, {2, 18, 7, 25, 26, 9}, {1, 19, 4, 27, 28, 6}, {13, 16, 17, 29, 30, 31}, {10, 17, 16, 22, 30, 32}, {10, 16, 18, 32, 33, 34}, {13, 20, 16, 24, 35, 29}, {7, 18, 16, 26, 33, 36}, {4, 16, 20, 37, 35, 38}, {4, 19, 16, 28, 39, 37}, {7, 16, 19, 36, 39, 40}, {0, 4, 20, 5, 38, 23}, {3, 13, 17, 14, 31, 21}, {1, 7, 19, 8, 40, 27}, {2, 10, 18, 11, 34, 25}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 41
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}, {0.125, 0.875}, {0.375, 0.875}, {0.125, 0.125}, {0.125, 0.375}, {0.875, 0.875}, {0.875, 0.625}, {0.875, 0.125}, {0.625, 0.125}, {0.25, 0.5}, {0.375, 0.625}, {0.125, 0.625}, {0.5, 0.75}, {0.625, 0.625}, {0.625, 0.875}, {0.375, 0.375}, {0.75, 0.5}, {0.5, 0.25}, {0.375, 0.125}, {0.625, 0.375}, {0.875, 0.375}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:triangle_6
+   + id             : my_fem:jacobians:_triangle_6
    + size           : 48
    + nb_component   : 1
    + allocated size : 48
    + memory size    : 0.38kB
    + values         : {{0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:triangle_6
+   + id             : my_fem:quadrature_points:_triangle_6
    + size           : 3
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0.166667, 0.166667}, {0.666667, 0.166667}, {0.166667, 0.666667}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:triangle_6
+   + id             : my_fem:shapes:_triangle_6
    + size           : 48
    + nb_component   : 6
    + allocated size : 48
    + memory size    : 2.2kB
    + values         : {{0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:triangle_6
+   + id             : my_fem:shapes_derivatives:_triangle_6
    + size           : 48
    + nb_component   : 12
    + allocated size : 48
    + memory size    : 4.5kB
    + values         : {{-3.33333, 3.33333, 0, 1.33333, -0.666667, -0.666667, -1.33333, -9.33333, 1.33333, -1.33333, 4, 6.66667}, {0.666667, -0.666667, 2.96059e-15, -6.66667, -0.666667, -0.666667, -5.33333, 2.66667, 5.33333, 2.66667, -7.40149e-16, 2.66667}, {0.666667, -0.666667, 0, 1.33333, 3.33333, 3.33333, -1.33333, -1.33333, 1.33333, -9.33333, -4, 6.66667}, {-3.33333, -3.33333, -1.33333, 0, 0.666667, -0.666667, 9.33333, -1.33333, 1.33333, 1.33333, -6.66667, 4}, {0.666667, 0.666667, 6.66667, 0, 0.666667, -0.666667, -2.66667, -5.33333, -2.66667, 5.33333, -2.66667, 4.44089e-16}, {0.666667, 0.666667, -1.33333, 0, -3.33333, 3.33333, 1.33333, -1.33333, 9.33333, 1.33333, -6.66667, -4}, {3.33333, 3.33333, 1.33333, 0, -0.666667, 0.666667, -9.33333, 1.33333, -1.33333, -1.33333, 6.66667, -4}, {-0.666667, -0.666667, -6.66667, -2.96059e-15, -0.666667, 0.666667, 2.66667, 5.33333, 2.66667, -5.33333, 2.66667, 7.40149e-16}, {-0.666667, -0.666667, 1.33333, 0, 3.33333, -3.33333, -1.33333, 1.33333, -9.33333, -1.33333, 6.66667, 4}, {3.33333, -3.33333, 0, -1.33333, 0.666667, 0.666667, 1.33333, 9.33333, -1.33333, 1.33333, -4, -6.66667}, {-0.666667, 0.666667, 0, 6.66667, 0.666667, 0.666667, 5.33333, -2.66667, -5.33333, -2.66667, -4.44089e-16, -2.66667}, {-0.666667, 0.666667, 0, -1.33333, -3.33333, -3.33333, 1.33333, 1.33333, -1.33333, 9.33333, 4, -6.66667}, {-3.33333, -3.33333, -0.666667, 0.666667, -3.49779e-12, -1.33333, 4, -6.66667, 1.33333, 1.33333, -1.33333, 9.33333}, {0.666667, 0.666667, 3.33333, -3.33333, -3.49779e-12, -1.33333, -4, -6.66667, 1.33333, 9.33333, -1.33333, 1.33333}, {0.666667, 0.666667, -0.666667, 0.666667, 1.74912e-11, 6.66667, -6.99581e-12, -2.66667, 5.33333, -2.66667, -5.33333, -2.66667}, {3.33333, 3.33333, 1.33333, -3.63028e-12, -0.666667, 0.666667, -9.33333, 1.33333, -1.33333, -1.33333, 6.66667, -4}, {-0.666667, -0.666667, -6.66667, 1.81499e-11, -0.666667, 0.666667, 2.66667, 5.33333, 2.66667, -5.33333, 2.66667, -7.26041e-12}, {-0.666667, -0.666667, 1.33333, -3.63087e-12, 3.33333, -3.33333, -1.33333, 1.33333, -9.33333, -1.33333, 6.66667, 4}, {-3.33333, 3.33333, 0.666667, 0.666667, -1.33333, 3.63087e-12, -6.66667, -4, 1.33333, -1.33333, 9.33333, 1.33333}, {0.666667, -0.666667, -3.33333, -3.33333, -1.33333, 3.63087e-12, -6.66667, 4, 9.33333, -1.33333, 1.33333, 1.33333}, {0.666667, -0.666667, 0.666667, 0.666667, 6.66667, -1.81544e-11, -2.66667, 7.26108e-12, -2.66667, -5.33333, -2.66667, 5.33333}, {-3.33333, 3.33333, 3.49705e-12, 1.33333, -0.666667, -0.666667, -1.33333, -9.33333, 1.33333, -1.33333, 4, 6.66667}, {0.666667, -0.666667, -1.74868e-11, -6.66667, -0.666667, -0.666667, -5.33333, 2.66667, 5.33333, 2.66667, 6.99515e-12, 2.66667}, {0.666667, -0.666667, 3.49765e-12, 1.33333, 3.33333, 3.33333, -1.33333, -1.33333, 1.33333, -9.33333, -4, 6.66667}, {3.33333, -3.33333, -2.81197e-12, -1.33333, 0.666667, 0.666667, 1.33333, 9.33333, -1.33333, 1.33333, -4, -6.66667}, {-0.666667, 0.666667, 1.40554e-11, 6.66667, 0.666667, 0.666667, 5.33333, -2.66667, -5.33333, -2.66667, -5.62261e-12, -2.66667}, {-0.666667, 0.666667, -2.81197e-12, -1.33333, -3.33333, -3.33333, 1.33333, 1.33333, -1.33333, 9.33333, 4, -6.66667}, {3.33333, -3.33333, -0.666667, -0.666667, 1.33333, -2.67845e-12, 6.66667, 4, -1.33333, 1.33333, -9.33333, -1.33333}, {-0.666667, 0.666667, 3.33333, 3.33333, 1.33333, -2.67904e-12, 6.66667, -4, -9.33333, 1.33333, -1.33333, -1.33333}, {-0.666667, 0.666667, -0.666667, -0.666667, -6.66667, 1.33937e-11, 2.66667, -5.35683e-12, 2.66667, 5.33333, 2.66667, -5.33333}, {-3.33333, -3.33333, -1.33333, 2.67815e-12, 0.666667, -0.666667, 9.33333, -1.33333, 1.33333, 1.33333, -6.66667, 4}, {0.666667, 0.666667, 6.66667, -1.33952e-11, 0.666667, -0.666667, -2.66667, -5.33333, -2.66667, 5.33333, -2.66667, 5.35853e-12}, {0.666667, 0.666667, -1.33333, 2.67904e-12, -3.33333, 3.33333, 1.33333, -1.33333, 9.33333, 1.33333, -6.66667, -4}, {3.33333, 3.33333, 0.666667, -0.666667, 2.81182e-12, 1.33333, -4, 6.66667, -1.33333, -1.33333, 1.33333, -9.33333}, {-0.666667, -0.666667, -3.33333, 3.33333, 2.81182e-12, 1.33333, 4, 6.66667, -1.33333, -9.33333, 1.33333, -1.33333}, {-0.666667, -0.666667, 0.666667, -0.666667, -1.40584e-11, -6.66667, 5.62269e-12, 2.66667, -5.33333, 2.66667, 5.33333, 2.66667}, {-3.33333, -3.33333, -0.666667, 0.666667, 0, -1.33333, 4, -6.66667, 1.33333, 1.33333, -1.33333, 9.33333}, {0.666667, 0.666667, 3.33333, -3.33333, 0, -1.33333, -4, -6.66667, 1.33333, 9.33333, -1.33333, 1.33333}, {0.666667, 0.666667, -0.666667, 0.666667, 0, 6.66667, 6.66134e-16, -2.66667, 5.33333, -2.66667, -5.33333, -2.66667}, {-3.33333, 3.33333, 0.666667, 0.666667, -1.33333, 0, -6.66667, -4, 1.33333, -1.33333, 9.33333, 1.33333}, {0.666667, -0.666667, -3.33333, -3.33333, -1.33333, 0, -6.66667, 4, 9.33333, -1.33333, 1.33333, 1.33333}, {0.666667, -0.666667, 0.666667, 0.666667, 6.66667, 0, -2.66667, -6.66134e-16, -2.66667, -5.33333, -2.66667, 5.33333}, {3.33333, -3.33333, -0.666667, -0.666667, 1.33333, 0, 6.66667, 4, -1.33333, 1.33333, -9.33333, -1.33333}, {-0.666667, 0.666667, 3.33333, 3.33333, 1.33333, 0, 6.66667, -4, -9.33333, 1.33333, -1.33333, -1.33333}, {-0.666667, 0.666667, -0.666667, -0.666667, -6.66667, 0, 2.66667, 6.66134e-16, 2.66667, 5.33333, 2.66667, -5.33333}, {3.33333, 3.33333, 0.666667, -0.666667, 0, 1.33333, -4, 6.66667, -1.33333, -1.33333, 1.33333, -9.33333}, {-0.666667, -0.666667, -3.33333, 3.33333, 0, 1.33333, 4, 6.66667, -1.33333, -9.33333, 1.33333, -1.33333}, {-0.666667, -0.666667, 0.666667, -0.666667, 0, -6.66667, -6.66134e-16, 2.66667, -5.33333, 2.66667, 5.33333, 2.66667}}
   ]
   + total size  : 1.4e+02kB
  ]
  + total size  : 1.4e+02kB
 ]
 
diff --git a/test/test_fem/test_interpolate_hexahedron_8.verified b/test/test_fem/test_interpolate_hexahedron_8.verified
index 1144d48d7..28a15b81e 100644
--- a/test/test_fem/test_interpolate_hexahedron_8.verified
+++ b/test/test_fem/test_interpolate_hexahedron_8.verified
@@ -1,172 +1,172 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 3
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 125
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.25, 0.75, 1}, {0.25, 0.5, 1}, {0.25, 0.25, 1}, {0.5, 0.75, 1}, {0.5, 0.5, 1}, {0.5, 0.25, 1}, {0.75, 0.75, 1}, {0.75, 0.5, 1}, {0.75, 0.25, 1}, {0.75, 1, 0.25}, {0.75, 1, 0.5}, {0.75, 1, 0.75}, {0.5, 1, 0.25}, {0.5, 1, 0.5}, {0.5, 1, 0.75}, {0.25, 1, 0.25}, {0.25, 1, 0.5}, {0.25, 1, 0.75}, {0.25, 0, 0.75}, {0.25, 0, 0.5}, {0.25, 0, 0.25}, {0.5, 0, 0.75}, {0.5, 0, 0.5}, {0.5, 0, 0.25}, {0.75, 0, 0.75}, {0.75, 0, 0.5}, {0.75, 0, 0.25}, {0.75, 0.75, 0}, {0.75, 0.5, 0}, {0.75, 0.25, 0}, {0.5, 0.75, 0}, {0.5, 0.5, 0}, {0.5, 0.25, 0}, {0.25, 0.75, 0}, {0.25, 0.5, 0}, {0.25, 0.25, 0}, {0, 0.75, 0.25}, {0, 0.5, 0.25}, {0, 0.25, 0.25}, {0, 0.75, 0.5}, {0, 0.5, 0.5}, {0, 0.25, 0.5}, {0, 0.75, 0.75}, {0, 0.5, 0.75}, {0, 0.25, 0.75}, {1, 0.75, 0.75}, {1, 0.75, 0.5}, {1, 0.75, 0.25}, {1, 0.5, 0.75}, {1, 0.5, 0.5}, {1, 0.5, 0.25}, {1, 0.25, 0.75}, {1, 0.25, 0.5}, {1, 0.25, 0.25}, {0.75, 0.75, 0.75}, {0.5, 0.75, 0.75}, {0.25, 0.75, 0.75}, {0.75, 0.75, 0.5}, {0.5, 0.75, 0.5}, {0.25, 0.75, 0.5}, {0.75, 0.75, 0.25}, {0.5, 0.75, 0.25}, {0.25, 0.75, 0.25}, {0.75, 0.5, 0.75}, {0.5, 0.5, 0.75}, {0.25, 0.5, 0.75}, {0.75, 0.5, 0.5}, {0.5, 0.5, 0.5}, {0.25, 0.5, 0.5}, {0.75, 0.5, 0.25}, {0.5, 0.5, 0.25}, {0.25, 0.5, 0.25}, {0.75, 0.25, 0.75}, {0.5, 0.25, 0.75}, {0.25, 0.25, 0.75}, {0.75, 0.25, 0.5}, {0.5, 0.25, 0.5}, {0.25, 0.25, 0.5}, {0.75, 0.25, 0.25}, {0.5, 0.25, 0.25}, {0.25, 0.25, 0.25}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 48
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
        ]
-        (not_ghost:quadrangle_4) [
+        (not_ghost:_quadrangle_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_4
+        + id             : mesh:connectivities:_quadrangle_4
         + size           : 96
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{6, 8, 44, 35}, {35, 44, 45, 36}, {36, 45, 46, 37}, {37, 46, 23, 4}, {8, 9, 47, 44}, {44, 47, 48, 45}, {45, 48, 49, 46}, {46, 49, 24, 23}, {9, 10, 50, 47}, {47, 50, 51, 48}, {48, 51, 52, 49}, {49, 52, 25, 24}, {10, 7, 38, 50}, {50, 38, 39, 51}, {51, 39, 40, 52}, {52, 40, 5, 25}, {3, 14, 53, 13}, {13, 53, 54, 12}, {12, 54, 55, 11}, {11, 55, 10, 7}, {14, 15, 56, 53}, {53, 56, 57, 54}, {54, 57, 58, 55}, {55, 58, 9, 10}, {15, 16, 59, 56}, {56, 59, 60, 57}, {57, 60, 61, 58}, {58, 61, 8, 9}, {16, 2, 17, 59}, {59, 17, 18, 60}, {60, 18, 19, 61}, {61, 19, 6, 8}, {4, 23, 62, 22}, {22, 62, 63, 21}, {21, 63, 64, 20}, {20, 64, 31, 0}, {23, 24, 65, 62}, {62, 65, 66, 63}, {63, 66, 67, 64}, {64, 67, 30, 31}, {24, 25, 68, 65}, {65, 68, 69, 66}, {66, 69, 70, 67}, {67, 70, 29, 30}, {25, 5, 26, 68}, {68, 26, 27, 69}, {69, 27, 28, 70}, {70, 28, 1, 29}, {3, 14, 71, 41}, {41, 71, 72, 42}, {42, 72, 73, 43}, {43, 73, 29, 1}, {14, 15, 74, 71}, {71, 74, 75, 72}, {72, 75, 76, 73}, {73, 76, 30, 29}, {15, 16, 77, 74}, {74, 77, 78, 75}, {75, 78, 79, 76}, {76, 79, 31, 30}, {16, 2, 32, 77}, {77, 32, 33, 78}, {78, 33, 34, 79}, {79, 34, 0, 31}, {2, 17, 80, 32}, {32, 80, 81, 33}, {33, 81, 82, 34}, {34, 82, 20, 0}, {17, 18, 83, 80}, {80, 83, 84, 81}, {81, 84, 85, 82}, {82, 85, 21, 20}, {18, 19, 86, 83}, {83, 86, 87, 84}, {84, 87, 88, 85}, {85, 88, 22, 21}, {19, 6, 35, 86}, {86, 35, 36, 87}, {87, 36, 37, 88}, {88, 37, 4, 22}, {7, 38, 89, 11}, {11, 89, 90, 12}, {12, 90, 91, 13}, {13, 91, 41, 3}, {38, 39, 92, 89}, {89, 92, 93, 90}, {90, 93, 94, 91}, {91, 94, 42, 41}, {39, 40, 95, 92}, {92, 95, 96, 93}, {93, 96, 97, 94}, {94, 97, 43, 42}, {40, 5, 26, 95}, {95, 26, 27, 96}, {96, 27, 28, 97}, {97, 28, 1, 43}}
        ]
-        (not_ghost:hexahedron_8) [
+        (not_ghost:_hexahedron_8) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:hexahedron_8
+        + id             : mesh:connectivities:_hexahedron_8
         + size           : 64
         + nb_component   : 8
         + allocated size : 2000
         + memory size    : 62kB
         + values         : {{89, 38, 7, 11, 98, 50, 10, 55}, {98, 50, 10, 55, 99, 47, 9, 58}, {99, 47, 9, 58, 100, 44, 8, 61}, {100, 44, 8, 61, 86, 35, 6, 19}, {90, 89, 11, 12, 101, 98, 55, 54}, {101, 98, 55, 54, 102, 99, 58, 57}, {102, 99, 58, 57, 103, 100, 61, 60}, {103, 100, 61, 60, 83, 86, 19, 18}, {91, 90, 12, 13, 104, 101, 54, 53}, {104, 101, 54, 53, 105, 102, 57, 56}, {105, 102, 57, 56, 106, 103, 60, 59}, {106, 103, 60, 59, 80, 83, 18, 17}, {41, 91, 13, 3, 71, 104, 53, 14}, {71, 104, 53, 14, 74, 105, 56, 15}, {74, 105, 56, 15, 77, 106, 59, 16}, {77, 106, 59, 16, 32, 80, 17, 2}, {92, 39, 38, 89, 107, 51, 50, 98}, {107, 51, 50, 98, 108, 48, 47, 99}, {108, 48, 47, 99, 109, 45, 44, 100}, {109, 45, 44, 100, 87, 36, 35, 86}, {93, 92, 89, 90, 110, 107, 98, 101}, {110, 107, 98, 101, 111, 108, 99, 102}, {111, 108, 99, 102, 112, 109, 100, 103}, {112, 109, 100, 103, 84, 87, 86, 83}, {94, 93, 90, 91, 113, 110, 101, 104}, {113, 110, 101, 104, 114, 111, 102, 105}, {114, 111, 102, 105, 115, 112, 103, 106}, {115, 112, 103, 106, 81, 84, 83, 80}, {42, 94, 91, 41, 72, 113, 104, 71}, {72, 113, 104, 71, 75, 114, 105, 74}, {75, 114, 105, 74, 78, 115, 106, 77}, {78, 115, 106, 77, 33, 81, 80, 32}, {95, 40, 39, 92, 116, 52, 51, 107}, {116, 52, 51, 107, 117, 49, 48, 108}, {117, 49, 48, 108, 118, 46, 45, 109}, {118, 46, 45, 109, 88, 37, 36, 87}, {96, 95, 92, 93, 119, 116, 107, 110}, {119, 116, 107, 110, 120, 117, 108, 111}, {120, 117, 108, 111, 121, 118, 109, 112}, {121, 118, 109, 112, 85, 88, 87, 84}, {97, 96, 93, 94, 122, 119, 110, 113}, {122, 119, 110, 113, 123, 120, 111, 114}, {123, 120, 111, 114, 124, 121, 112, 115}, {124, 121, 112, 115, 82, 85, 84, 81}, {43, 97, 94, 42, 73, 122, 113, 72}, {73, 122, 113, 72, 76, 123, 114, 75}, {76, 123, 114, 75, 79, 124, 115, 78}, {79, 124, 115, 78, 34, 82, 81, 33}, {26, 5, 40, 95, 68, 25, 52, 116}, {68, 25, 52, 116, 65, 24, 49, 117}, {65, 24, 49, 117, 62, 23, 46, 118}, {62, 23, 46, 118, 22, 4, 37, 88}, {27, 26, 95, 96, 69, 68, 116, 119}, {69, 68, 116, 119, 66, 65, 117, 120}, {66, 65, 117, 120, 63, 62, 118, 121}, {63, 62, 118, 121, 21, 22, 88, 85}, {28, 27, 96, 97, 70, 69, 119, 122}, {70, 69, 119, 122, 67, 66, 120, 123}, {67, 66, 120, 123, 64, 63, 121, 124}, {64, 63, 121, 124, 20, 21, 85, 82}, {1, 28, 97, 43, 29, 70, 122, 73}, {29, 70, 122, 73, 30, 67, 123, 76}, {30, 67, 123, 76, 31, 64, 124, 79}, {31, 64, 124, 79, 0, 20, 82, 34}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 125
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.25, 0.75, 1}, {0.25, 0.5, 1}, {0.25, 0.25, 1}, {0.5, 0.75, 1}, {0.5, 0.5, 1}, {0.5, 0.25, 1}, {0.75, 0.75, 1}, {0.75, 0.5, 1}, {0.75, 0.25, 1}, {0.75, 1, 0.25}, {0.75, 1, 0.5}, {0.75, 1, 0.75}, {0.5, 1, 0.25}, {0.5, 1, 0.5}, {0.5, 1, 0.75}, {0.25, 1, 0.25}, {0.25, 1, 0.5}, {0.25, 1, 0.75}, {0.25, 0, 0.75}, {0.25, 0, 0.5}, {0.25, 0, 0.25}, {0.5, 0, 0.75}, {0.5, 0, 0.5}, {0.5, 0, 0.25}, {0.75, 0, 0.75}, {0.75, 0, 0.5}, {0.75, 0, 0.25}, {0.75, 0.75, 0}, {0.75, 0.5, 0}, {0.75, 0.25, 0}, {0.5, 0.75, 0}, {0.5, 0.5, 0}, {0.5, 0.25, 0}, {0.25, 0.75, 0}, {0.25, 0.5, 0}, {0.25, 0.25, 0}, {0, 0.75, 0.25}, {0, 0.5, 0.25}, {0, 0.25, 0.25}, {0, 0.75, 0.5}, {0, 0.5, 0.5}, {0, 0.25, 0.5}, {0, 0.75, 0.75}, {0, 0.5, 0.75}, {0, 0.25, 0.75}, {1, 0.75, 0.75}, {1, 0.75, 0.5}, {1, 0.75, 0.25}, {1, 0.5, 0.75}, {1, 0.5, 0.5}, {1, 0.5, 0.25}, {1, 0.25, 0.75}, {1, 0.25, 0.5}, {1, 0.25, 0.25}, {0.75, 0.75, 0.75}, {0.5, 0.75, 0.75}, {0.25, 0.75, 0.75}, {0.75, 0.75, 0.5}, {0.5, 0.75, 0.5}, {0.25, 0.75, 0.5}, {0.75, 0.75, 0.25}, {0.5, 0.75, 0.25}, {0.25, 0.75, 0.25}, {0.75, 0.5, 0.75}, {0.5, 0.5, 0.75}, {0.25, 0.5, 0.75}, {0.75, 0.5, 0.5}, {0.5, 0.5, 0.5}, {0.25, 0.5, 0.5}, {0.75, 0.5, 0.25}, {0.5, 0.5, 0.25}, {0.25, 0.5, 0.25}, {0.75, 0.25, 0.75}, {0.5, 0.25, 0.75}, {0.25, 0.25, 0.75}, {0.75, 0.25, 0.5}, {0.5, 0.25, 0.5}, {0.25, 0.25, 0.5}, {0.75, 0.25, 0.25}, {0.5, 0.25, 0.25}, {0.25, 0.25, 0.25}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 48
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
        ]
-        (not_ghost:quadrangle_4) [
+        (not_ghost:_quadrangle_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_4
+        + id             : mesh:connectivities:_quadrangle_4
         + size           : 96
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{6, 8, 44, 35}, {35, 44, 45, 36}, {36, 45, 46, 37}, {37, 46, 23, 4}, {8, 9, 47, 44}, {44, 47, 48, 45}, {45, 48, 49, 46}, {46, 49, 24, 23}, {9, 10, 50, 47}, {47, 50, 51, 48}, {48, 51, 52, 49}, {49, 52, 25, 24}, {10, 7, 38, 50}, {50, 38, 39, 51}, {51, 39, 40, 52}, {52, 40, 5, 25}, {3, 14, 53, 13}, {13, 53, 54, 12}, {12, 54, 55, 11}, {11, 55, 10, 7}, {14, 15, 56, 53}, {53, 56, 57, 54}, {54, 57, 58, 55}, {55, 58, 9, 10}, {15, 16, 59, 56}, {56, 59, 60, 57}, {57, 60, 61, 58}, {58, 61, 8, 9}, {16, 2, 17, 59}, {59, 17, 18, 60}, {60, 18, 19, 61}, {61, 19, 6, 8}, {4, 23, 62, 22}, {22, 62, 63, 21}, {21, 63, 64, 20}, {20, 64, 31, 0}, {23, 24, 65, 62}, {62, 65, 66, 63}, {63, 66, 67, 64}, {64, 67, 30, 31}, {24, 25, 68, 65}, {65, 68, 69, 66}, {66, 69, 70, 67}, {67, 70, 29, 30}, {25, 5, 26, 68}, {68, 26, 27, 69}, {69, 27, 28, 70}, {70, 28, 1, 29}, {3, 14, 71, 41}, {41, 71, 72, 42}, {42, 72, 73, 43}, {43, 73, 29, 1}, {14, 15, 74, 71}, {71, 74, 75, 72}, {72, 75, 76, 73}, {73, 76, 30, 29}, {15, 16, 77, 74}, {74, 77, 78, 75}, {75, 78, 79, 76}, {76, 79, 31, 30}, {16, 2, 32, 77}, {77, 32, 33, 78}, {78, 33, 34, 79}, {79, 34, 0, 31}, {2, 17, 80, 32}, {32, 80, 81, 33}, {33, 81, 82, 34}, {34, 82, 20, 0}, {17, 18, 83, 80}, {80, 83, 84, 81}, {81, 84, 85, 82}, {82, 85, 21, 20}, {18, 19, 86, 83}, {83, 86, 87, 84}, {84, 87, 88, 85}, {85, 88, 22, 21}, {19, 6, 35, 86}, {86, 35, 36, 87}, {87, 36, 37, 88}, {88, 37, 4, 22}, {7, 38, 89, 11}, {11, 89, 90, 12}, {12, 90, 91, 13}, {13, 91, 41, 3}, {38, 39, 92, 89}, {89, 92, 93, 90}, {90, 93, 94, 91}, {91, 94, 42, 41}, {39, 40, 95, 92}, {92, 95, 96, 93}, {93, 96, 97, 94}, {94, 97, 43, 42}, {40, 5, 26, 95}, {95, 26, 27, 96}, {96, 27, 28, 97}, {97, 28, 1, 43}}
        ]
-        (not_ghost:hexahedron_8) [
+        (not_ghost:_hexahedron_8) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:hexahedron_8
+        + id             : mesh:connectivities:_hexahedron_8
         + size           : 64
         + nb_component   : 8
         + allocated size : 2000
         + memory size    : 62kB
         + values         : {{89, 38, 7, 11, 98, 50, 10, 55}, {98, 50, 10, 55, 99, 47, 9, 58}, {99, 47, 9, 58, 100, 44, 8, 61}, {100, 44, 8, 61, 86, 35, 6, 19}, {90, 89, 11, 12, 101, 98, 55, 54}, {101, 98, 55, 54, 102, 99, 58, 57}, {102, 99, 58, 57, 103, 100, 61, 60}, {103, 100, 61, 60, 83, 86, 19, 18}, {91, 90, 12, 13, 104, 101, 54, 53}, {104, 101, 54, 53, 105, 102, 57, 56}, {105, 102, 57, 56, 106, 103, 60, 59}, {106, 103, 60, 59, 80, 83, 18, 17}, {41, 91, 13, 3, 71, 104, 53, 14}, {71, 104, 53, 14, 74, 105, 56, 15}, {74, 105, 56, 15, 77, 106, 59, 16}, {77, 106, 59, 16, 32, 80, 17, 2}, {92, 39, 38, 89, 107, 51, 50, 98}, {107, 51, 50, 98, 108, 48, 47, 99}, {108, 48, 47, 99, 109, 45, 44, 100}, {109, 45, 44, 100, 87, 36, 35, 86}, {93, 92, 89, 90, 110, 107, 98, 101}, {110, 107, 98, 101, 111, 108, 99, 102}, {111, 108, 99, 102, 112, 109, 100, 103}, {112, 109, 100, 103, 84, 87, 86, 83}, {94, 93, 90, 91, 113, 110, 101, 104}, {113, 110, 101, 104, 114, 111, 102, 105}, {114, 111, 102, 105, 115, 112, 103, 106}, {115, 112, 103, 106, 81, 84, 83, 80}, {42, 94, 91, 41, 72, 113, 104, 71}, {72, 113, 104, 71, 75, 114, 105, 74}, {75, 114, 105, 74, 78, 115, 106, 77}, {78, 115, 106, 77, 33, 81, 80, 32}, {95, 40, 39, 92, 116, 52, 51, 107}, {116, 52, 51, 107, 117, 49, 48, 108}, {117, 49, 48, 108, 118, 46, 45, 109}, {118, 46, 45, 109, 88, 37, 36, 87}, {96, 95, 92, 93, 119, 116, 107, 110}, {119, 116, 107, 110, 120, 117, 108, 111}, {120, 117, 108, 111, 121, 118, 109, 112}, {121, 118, 109, 112, 85, 88, 87, 84}, {97, 96, 93, 94, 122, 119, 110, 113}, {122, 119, 110, 113, 123, 120, 111, 114}, {123, 120, 111, 114, 124, 121, 112, 115}, {124, 121, 112, 115, 82, 85, 84, 81}, {43, 97, 94, 42, 73, 122, 113, 72}, {73, 122, 113, 72, 76, 123, 114, 75}, {76, 123, 114, 75, 79, 124, 115, 78}, {79, 124, 115, 78, 34, 82, 81, 33}, {26, 5, 40, 95, 68, 25, 52, 116}, {68, 25, 52, 116, 65, 24, 49, 117}, {65, 24, 49, 117, 62, 23, 46, 118}, {62, 23, 46, 118, 22, 4, 37, 88}, {27, 26, 95, 96, 69, 68, 116, 119}, {69, 68, 116, 119, 66, 65, 117, 120}, {66, 65, 117, 120, 63, 62, 118, 121}, {63, 62, 118, 121, 21, 22, 88, 85}, {28, 27, 96, 97, 70, 69, 119, 122}, {70, 69, 119, 122, 67, 66, 120, 123}, {67, 66, 120, 123, 64, 63, 121, 124}, {64, 63, 121, 124, 20, 21, 85, 82}, {1, 28, 97, 43, 29, 70, 122, 73}, {29, 70, 122, 73, 30, 67, 123, 76}, {30, 67, 123, 76, 31, 64, 124, 79}, {31, 64, 124, 79, 0, 20, 82, 34}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 8
   Vector<unsigned int> [
-   + id             : mesh:connectivities:hexahedron_8
+   + id             : mesh:connectivities:_hexahedron_8
    + size           : 64
    + nb_component   : 8
    + allocated size : 2000
    + memory size    : 62kB
    + values         : {{89, 38, 7, 11, 98, 50, 10, 55}, {98, 50, 10, 55, 99, 47, 9, 58}, {99, 47, 9, 58, 100, 44, 8, 61}, {100, 44, 8, 61, 86, 35, 6, 19}, {90, 89, 11, 12, 101, 98, 55, 54}, {101, 98, 55, 54, 102, 99, 58, 57}, {102, 99, 58, 57, 103, 100, 61, 60}, {103, 100, 61, 60, 83, 86, 19, 18}, {91, 90, 12, 13, 104, 101, 54, 53}, {104, 101, 54, 53, 105, 102, 57, 56}, {105, 102, 57, 56, 106, 103, 60, 59}, {106, 103, 60, 59, 80, 83, 18, 17}, {41, 91, 13, 3, 71, 104, 53, 14}, {71, 104, 53, 14, 74, 105, 56, 15}, {74, 105, 56, 15, 77, 106, 59, 16}, {77, 106, 59, 16, 32, 80, 17, 2}, {92, 39, 38, 89, 107, 51, 50, 98}, {107, 51, 50, 98, 108, 48, 47, 99}, {108, 48, 47, 99, 109, 45, 44, 100}, {109, 45, 44, 100, 87, 36, 35, 86}, {93, 92, 89, 90, 110, 107, 98, 101}, {110, 107, 98, 101, 111, 108, 99, 102}, {111, 108, 99, 102, 112, 109, 100, 103}, {112, 109, 100, 103, 84, 87, 86, 83}, {94, 93, 90, 91, 113, 110, 101, 104}, {113, 110, 101, 104, 114, 111, 102, 105}, {114, 111, 102, 105, 115, 112, 103, 106}, {115, 112, 103, 106, 81, 84, 83, 80}, {42, 94, 91, 41, 72, 113, 104, 71}, {72, 113, 104, 71, 75, 114, 105, 74}, {75, 114, 105, 74, 78, 115, 106, 77}, {78, 115, 106, 77, 33, 81, 80, 32}, {95, 40, 39, 92, 116, 52, 51, 107}, {116, 52, 51, 107, 117, 49, 48, 108}, {117, 49, 48, 108, 118, 46, 45, 109}, {118, 46, 45, 109, 88, 37, 36, 87}, {96, 95, 92, 93, 119, 116, 107, 110}, {119, 116, 107, 110, 120, 117, 108, 111}, {120, 117, 108, 111, 121, 118, 109, 112}, {121, 118, 109, 112, 85, 88, 87, 84}, {97, 96, 93, 94, 122, 119, 110, 113}, {122, 119, 110, 113, 123, 120, 111, 114}, {123, 120, 111, 114, 124, 121, 112, 115}, {124, 121, 112, 115, 82, 85, 84, 81}, {43, 97, 94, 42, 73, 122, 113, 72}, {73, 122, 113, 72, 76, 123, 114, 75}, {76, 123, 114, 75, 79, 124, 115, 78}, {79, 124, 115, 78, 34, 82, 81, 33}, {26, 5, 40, 95, 68, 25, 52, 116}, {68, 25, 52, 116, 65, 24, 49, 117}, {65, 24, 49, 117, 62, 23, 46, 118}, {62, 23, 46, 118, 22, 4, 37, 88}, {27, 26, 95, 96, 69, 68, 116, 119}, {69, 68, 116, 119, 66, 65, 117, 120}, {66, 65, 117, 120, 63, 62, 118, 121}, {63, 62, 118, 121, 21, 22, 88, 85}, {28, 27, 96, 97, 70, 69, 119, 122}, {70, 69, 119, 122, 67, 66, 120, 123}, {67, 66, 120, 123, 64, 63, 121, 124}, {64, 63, 121, 124, 20, 21, 85, 82}, {1, 28, 97, 43, 29, 70, 122, 73}, {29, 70, 122, 73, 30, 67, 123, 76}, {30, 67, 123, 76, 31, 64, 124, 79}, {31, 64, 124, 79, 0, 20, 82, 34}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:quadrangle_4
+   + id             : mesh:connectivities:_quadrangle_4
    + size           : 96
    + nb_component   : 4
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{6, 8, 44, 35}, {35, 44, 45, 36}, {36, 45, 46, 37}, {37, 46, 23, 4}, {8, 9, 47, 44}, {44, 47, 48, 45}, {45, 48, 49, 46}, {46, 49, 24, 23}, {9, 10, 50, 47}, {47, 50, 51, 48}, {48, 51, 52, 49}, {49, 52, 25, 24}, {10, 7, 38, 50}, {50, 38, 39, 51}, {51, 39, 40, 52}, {52, 40, 5, 25}, {3, 14, 53, 13}, {13, 53, 54, 12}, {12, 54, 55, 11}, {11, 55, 10, 7}, {14, 15, 56, 53}, {53, 56, 57, 54}, {54, 57, 58, 55}, {55, 58, 9, 10}, {15, 16, 59, 56}, {56, 59, 60, 57}, {57, 60, 61, 58}, {58, 61, 8, 9}, {16, 2, 17, 59}, {59, 17, 18, 60}, {60, 18, 19, 61}, {61, 19, 6, 8}, {4, 23, 62, 22}, {22, 62, 63, 21}, {21, 63, 64, 20}, {20, 64, 31, 0}, {23, 24, 65, 62}, {62, 65, 66, 63}, {63, 66, 67, 64}, {64, 67, 30, 31}, {24, 25, 68, 65}, {65, 68, 69, 66}, {66, 69, 70, 67}, {67, 70, 29, 30}, {25, 5, 26, 68}, {68, 26, 27, 69}, {69, 27, 28, 70}, {70, 28, 1, 29}, {3, 14, 71, 41}, {41, 71, 72, 42}, {42, 72, 73, 43}, {43, 73, 29, 1}, {14, 15, 74, 71}, {71, 74, 75, 72}, {72, 75, 76, 73}, {73, 76, 30, 29}, {15, 16, 77, 74}, {74, 77, 78, 75}, {75, 78, 79, 76}, {76, 79, 31, 30}, {16, 2, 32, 77}, {77, 32, 33, 78}, {78, 33, 34, 79}, {79, 34, 0, 31}, {2, 17, 80, 32}, {32, 80, 81, 33}, {33, 81, 82, 34}, {34, 82, 20, 0}, {17, 18, 83, 80}, {80, 83, 84, 81}, {81, 84, 85, 82}, {82, 85, 21, 20}, {18, 19, 86, 83}, {83, 86, 87, 84}, {84, 87, 88, 85}, {85, 88, 22, 21}, {19, 6, 35, 86}, {86, 35, 36, 87}, {87, 36, 37, 88}, {88, 37, 4, 22}, {7, 38, 89, 11}, {11, 89, 90, 12}, {12, 90, 91, 13}, {13, 91, 41, 3}, {38, 39, 92, 89}, {89, 92, 93, 90}, {90, 93, 94, 91}, {91, 94, 42, 41}, {39, 40, 95, 92}, {92, 95, 96, 93}, {93, 96, 97, 94}, {94, 97, 43, 42}, {40, 5, 26, 95}, {95, 26, 27, 96}, {96, 27, 28, 97}, {97, 28, 1, 43}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_2
+   + id             : mesh:connectivities:_segment_2
    + size           : 48
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 125
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.25, 0.75, 1}, {0.25, 0.5, 1}, {0.25, 0.25, 1}, {0.5, 0.75, 1}, {0.5, 0.5, 1}, {0.5, 0.25, 1}, {0.75, 0.75, 1}, {0.75, 0.5, 1}, {0.75, 0.25, 1}, {0.75, 1, 0.25}, {0.75, 1, 0.5}, {0.75, 1, 0.75}, {0.5, 1, 0.25}, {0.5, 1, 0.5}, {0.5, 1, 0.75}, {0.25, 1, 0.25}, {0.25, 1, 0.5}, {0.25, 1, 0.75}, {0.25, 0, 0.75}, {0.25, 0, 0.5}, {0.25, 0, 0.25}, {0.5, 0, 0.75}, {0.5, 0, 0.5}, {0.5, 0, 0.25}, {0.75, 0, 0.75}, {0.75, 0, 0.5}, {0.75, 0, 0.25}, {0.75, 0.75, 0}, {0.75, 0.5, 0}, {0.75, 0.25, 0}, {0.5, 0.75, 0}, {0.5, 0.5, 0}, {0.5, 0.25, 0}, {0.25, 0.75, 0}, {0.25, 0.5, 0}, {0.25, 0.25, 0}, {0, 0.75, 0.25}, {0, 0.5, 0.25}, {0, 0.25, 0.25}, {0, 0.75, 0.5}, {0, 0.5, 0.5}, {0, 0.25, 0.5}, {0, 0.75, 0.75}, {0, 0.5, 0.75}, {0, 0.25, 0.75}, {1, 0.75, 0.75}, {1, 0.75, 0.5}, {1, 0.75, 0.25}, {1, 0.5, 0.75}, {1, 0.5, 0.5}, {1, 0.5, 0.25}, {1, 0.25, 0.75}, {1, 0.25, 0.5}, {1, 0.25, 0.25}, {0.75, 0.75, 0.75}, {0.5, 0.75, 0.75}, {0.25, 0.75, 0.75}, {0.75, 0.75, 0.5}, {0.5, 0.75, 0.5}, {0.25, 0.75, 0.5}, {0.75, 0.75, 0.25}, {0.5, 0.75, 0.25}, {0.25, 0.75, 0.25}, {0.75, 0.5, 0.75}, {0.5, 0.5, 0.75}, {0.25, 0.5, 0.75}, {0.75, 0.5, 0.5}, {0.5, 0.5, 0.5}, {0.25, 0.5, 0.5}, {0.75, 0.5, 0.25}, {0.5, 0.5, 0.25}, {0.25, 0.5, 0.25}, {0.75, 0.25, 0.75}, {0.5, 0.25, 0.75}, {0.25, 0.25, 0.75}, {0.75, 0.25, 0.5}, {0.5, 0.25, 0.5}, {0.25, 0.25, 0.5}, {0.75, 0.25, 0.25}, {0.5, 0.25, 0.25}, {0.25, 0.25, 0.25}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:hexahedron_8
+   + id             : my_fem:jacobians:_hexahedron_8
    + size           : 512
    + nb_component   : 1
    + allocated size : 512
    + memory size    : 4kB
    + values         : {{0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195312}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}, {0.00195313}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:hexahedron_8
+   + id             : my_fem:quadrature_points:_hexahedron_8
    + size           : 8
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{-0.57735, -0.57735, -0.57735}, {0.57735, -0.57735, -0.57735}, {0.57735, 0.57735, -0.57735}, {-0.57735, 0.57735, -0.57735}, {-0.57735, -0.57735, 0.57735}, {0.57735, -0.57735, 0.57735}, {0.57735, 0.57735, 0.57735}, {-0.57735, 0.57735, 0.57735}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:hexahedron_8
+   + id             : my_fem:shapes:_hexahedron_8
    + size           : 512
    + nb_component   : 8
    + allocated size : 512
    + memory size    : 32kB
    + values         : {{0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}, {0.490563, 0.131446, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.00943739, 0.0352208}, {0.131446, 0.490563, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.0352208, 0.00943739}, {0.0352208, 0.131446, 0.490563, 0.131446, 0.00943739, 0.0352208, 0.131446, 0.0352208}, {0.131446, 0.0352208, 0.131446, 0.490563, 0.0352208, 0.00943739, 0.0352208, 0.131446}, {0.131446, 0.0352208, 0.00943739, 0.0352208, 0.490563, 0.131446, 0.0352208, 0.131446}, {0.0352208, 0.131446, 0.0352208, 0.00943739, 0.131446, 0.490563, 0.131446, 0.0352208}, {0.00943739, 0.0352208, 0.131446, 0.0352208, 0.0352208, 0.131446, 0.490563, 0.131446}, {0.0352208, 0.00943739, 0.0352208, 0.131446, 0.131446, 0.0352208, 0.131446, 0.490563}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:hexahedron_8
+   + id             : my_fem:shapes_derivatives:_hexahedron_8
    + size           : 512
    + nb_component   : 24
    + allocated size : 512
    + memory size    : 96kB
    + values         : {{2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}, {2.48803, -2.48803, -2.48803, 0.666667, -0.666667, 2.48803, 0.178633, 0.666667, 0.666667, 0.666667, 2.48803, -0.666667, -2.48803, -0.666667, -0.666667, -0.666667, -0.178633, 0.666667, -0.178633, 0.178633, 0.178633, -0.666667, 0.666667, -0.178633}, {0.666667, -0.666667, -2.48803, 2.48803, -2.48803, 2.48803, 0.666667, 2.48803, 0.666667, 0.178633, 0.666667, -0.666667, -0.666667, -0.178633, -0.666667, -2.48803, -0.666667, 0.666667, -0.666667, 0.666667, 0.178633, -0.178633, 0.178633, -0.178633}, {0.178633, -0.666667, -0.666667, 0.666667, -2.48803, 0.666667, 2.48803, 2.48803, 2.48803, 0.666667, 0.666667, -2.48803, -0.178633, -0.178633, -0.178633, -0.666667, -0.666667, 0.178633, -2.48803, 0.666667, 0.666667, -0.666667, 0.178633, -0.666667}, {0.666667, -2.48803, -0.666667, 0.178633, -0.666667, 0.666667, 0.666667, 0.666667, 2.48803, 2.48803, 2.48803, -2.48803, -0.666667, -0.666667, -0.178633, -0.178633, -0.178633, 0.178633, -0.666667, 0.178633, 0.666667, -2.48803, 0.666667, -0.666667}, {2.48803, -0.666667, -0.666667, 0.666667, -0.178633, 0.666667, 0.178633, 0.178633, 0.178633, 0.666667, 0.666667, -0.178633, -2.48803, -2.48803, -2.48803, -0.666667, -0.666667, 2.48803, -0.178633, 0.666667, 0.666667, -0.666667, 2.48803, -0.666667}, {0.666667, -0.178633, -0.666667, 2.48803, -0.666667, 0.666667, 0.666667, 0.666667, 0.178633, 0.178633, 0.178633, -0.178633, -0.666667, -0.666667, -2.48803, -2.48803, -2.48803, 2.48803, -0.666667, 2.48803, 0.666667, -0.178633, 0.666667, -0.666667}, {0.178633, -0.178633, -0.178633, 0.666667, -0.666667, 0.178633, 2.48803, 0.666667, 0.666667, 0.666667, 0.178633, -0.666667, -0.178633, -0.666667, -0.666667, -0.666667, -2.48803, 0.666667, -2.48803, 2.48803, 2.48803, -0.666667, 0.666667, -2.48803}, {0.666667, -0.666667, -0.178633, 0.178633, -0.178633, 0.178633, 0.666667, 0.178633, 0.666667, 2.48803, 0.666667, -0.666667, -0.666667, -2.48803, -0.666667, -0.178633, -0.666667, 0.666667, -0.666667, 0.666667, 2.48803, -2.48803, 2.48803, -2.48803}}
   ]
   + total size  : 3.4e+02kB
  ]
  + total size  : 3.4e+02kB
 ]
 
diff --git a/test/test_fem/test_interpolate_quadrangle_4.verified b/test/test_fem/test_interpolate_quadrangle_4.verified
index 9ac3bea0a..31c13234c 100644
--- a/test/test_fem/test_interpolate_quadrangle_4.verified
+++ b/test/test_fem/test_interpolate_quadrangle_4.verified
@@ -1,146 +1,146 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 2
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 9
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 8
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
        ]
-        (not_ghost:quadrangle_4) [
+        (not_ghost:_quadrangle_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_4
+        + id             : mesh:connectivities:_quadrangle_4
         + size           : 4
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{2, 6, 8, 5}, {5, 8, 4, 1}, {6, 3, 7, 8}, {8, 7, 0, 4}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 9
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 8
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
        ]
-        (not_ghost:quadrangle_4) [
+        (not_ghost:_quadrangle_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_4
+        + id             : mesh:connectivities:_quadrangle_4
         + size           : 4
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{2, 6, 8, 5}, {5, 8, 4, 1}, {6, 3, 7, 8}, {8, 7, 0, 4}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 7
   Vector<unsigned int> [
-   + id             : mesh:connectivities:quadrangle_4
+   + id             : mesh:connectivities:_quadrangle_4
    + size           : 4
    + nb_component   : 4
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{2, 6, 8, 5}, {5, 8, 4, 1}, {6, 3, 7, 8}, {8, 7, 0, 4}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_2
+   + id             : mesh:connectivities:_segment_2
    + size           : 8
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 9
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:quadrangle_4
+   + id             : my_fem:jacobians:_quadrangle_4
    + size           : 16
    + nb_component   : 1
    + allocated size : 16
    + memory size    : 0.12kB
    + values         : {{0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:quadrangle_4
+   + id             : my_fem:quadrature_points:_quadrangle_4
    + size           : 4
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{-0.57735, -0.57735}, {0.57735, -0.57735}, {0.57735, 0.57735}, {-0.57735, 0.57735}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:quadrangle_4
+   + id             : my_fem:shapes:_quadrangle_4
    + size           : 16
    + nb_component   : 4
    + allocated size : 16
    + memory size    : 0.5kB
    + values         : {{0.622008, 0.166667, 0.0446582, 0.166667}, {0.166667, 0.622008, 0.166667, 0.0446582}, {0.0446582, 0.166667, 0.622008, 0.166667}, {0.166667, 0.0446582, 0.166667, 0.622008}, {0.622008, 0.166667, 0.0446582, 0.166667}, {0.166667, 0.622008, 0.166667, 0.0446582}, {0.0446582, 0.166667, 0.622008, 0.166667}, {0.166667, 0.0446582, 0.166667, 0.622008}, {0.622008, 0.166667, 0.0446582, 0.166667}, {0.166667, 0.622008, 0.166667, 0.0446582}, {0.0446582, 0.166667, 0.622008, 0.166667}, {0.166667, 0.0446582, 0.166667, 0.622008}, {0.622008, 0.166667, 0.0446582, 0.166667}, {0.166667, 0.622008, 0.166667, 0.0446582}, {0.0446582, 0.166667, 0.622008, 0.166667}, {0.166667, 0.0446582, 0.166667, 0.622008}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:quadrangle_4
+   + id             : my_fem:shapes_derivatives:_quadrangle_4
    + size           : 16
    + nb_component   : 8
    + allocated size : 16
    + memory size    : 1kB
    + values         : {{1.57735, 1.57735, -1.57735, 0.42265, -0.42265, -0.42265, 0.42265, -1.57735}, {1.57735, 0.42265, -1.57735, 1.57735, -0.42265, -1.57735, 0.42265, -0.42265}, {0.42265, 0.42265, -0.42265, 1.57735, -1.57735, -1.57735, 1.57735, -0.42265}, {0.42265, 1.57735, -0.42265, 0.42265, -1.57735, -0.42265, 1.57735, -1.57735}, {1.57735, 1.57735, -1.57735, 0.42265, -0.42265, -0.42265, 0.42265, -1.57735}, {1.57735, 0.42265, -1.57735, 1.57735, -0.42265, -1.57735, 0.42265, -0.42265}, {0.42265, 0.42265, -0.42265, 1.57735, -1.57735, -1.57735, 1.57735, -0.42265}, {0.42265, 1.57735, -0.42265, 0.42265, -1.57735, -0.42265, 1.57735, -1.57735}, {1.57735, 1.57735, -1.57735, 0.42265, -0.42265, -0.42265, 0.42265, -1.57735}, {1.57735, 0.42265, -1.57735, 1.57735, -0.42265, -1.57735, 0.42265, -0.42265}, {0.42265, 0.42265, -0.42265, 1.57735, -1.57735, -1.57735, 1.57735, -0.42265}, {0.42265, 1.57735, -0.42265, 0.42265, -1.57735, -0.42265, 1.57735, -1.57735}, {1.57735, 1.57735, -1.57735, 0.42265, -0.42265, -0.42265, 0.42265, -1.57735}, {1.57735, 0.42265, -1.57735, 1.57735, -0.42265, -1.57735, 0.42265, -0.42265}, {0.42265, 0.42265, -0.42265, 1.57735, -1.57735, -1.57735, 1.57735, -0.42265}, {0.42265, 1.57735, -0.42265, 0.42265, -1.57735, -0.42265, 1.57735, -1.57735}}
   ]
   + total size  : 1.1e+02kB
  ]
  + total size  : 1.1e+02kB
 ]
 
diff --git a/test/test_fem/test_interpolate_quadrangle_8.verified b/test/test_fem/test_interpolate_quadrangle_8.verified
index cb8d91a25..113e85a70 100644
--- a/test/test_fem/test_interpolate_quadrangle_8.verified
+++ b/test/test_fem/test_interpolate_quadrangle_8.verified
@@ -1,120 +1,120 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 2
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 21
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.5, 0.75}, {0.75, 0.5}, {0.5, 0.25}, {0.25, 0.5}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:quadrangle_8) [
+        (not_ghost:_quadrangle_8) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_8
+        + id             : mesh:connectivities:_quadrangle_8
         + size           : 4
         + nb_component   : 8
         + allocated size : 2000
         + memory size    : 62kB
         + values         : {{2, 10, 16, 7, 11, 17, 18, 9}, {7, 16, 4, 1, 18, 19, 6, 8}, {10, 3, 13, 16, 12, 14, 20, 17}, {16, 13, 0, 4, 20, 15, 5, 19}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 21
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.5, 0.75}, {0.75, 0.5}, {0.5, 0.25}, {0.25, 0.5}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:quadrangle_8) [
+        (not_ghost:_quadrangle_8) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:quadrangle_8
+        + id             : mesh:connectivities:_quadrangle_8
         + size           : 4
         + nb_component   : 8
         + allocated size : 2000
         + memory size    : 62kB
         + values         : {{2, 10, 16, 7, 11, 17, 18, 9}, {7, 16, 4, 1, 18, 19, 6, 8}, {10, 3, 13, 16, 12, 14, 20, 17}, {16, 13, 0, 4, 20, 15, 5, 19}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 6
   Vector<unsigned int> [
-   + id             : mesh:connectivities:quadrangle_8
+   + id             : mesh:connectivities:_quadrangle_8
    + size           : 4
    + nb_component   : 8
    + allocated size : 2000
    + memory size    : 62kB
    + values         : {{2, 10, 16, 7, 11, 17, 18, 9}, {7, 16, 4, 1, 18, 19, 6, 8}, {10, 3, 13, 16, 12, 14, 20, 17}, {16, 13, 0, 4, 20, 15, 5, 19}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 21
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.5, 0.75}, {0.75, 0.5}, {0.5, 0.25}, {0.25, 0.5}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:quadrangle_8
+   + id             : my_fem:jacobians:_quadrangle_8
    + size           : 36
    + nb_component   : 1
    + allocated size : 36
    + memory size    : 0.28kB
    + values         : {{0.0493827}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0493827}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0493827}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0493827}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0192901}, {0.0308642}, {0.0308642}, {0.0308642}, {0.0308642}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:quadrangle_8
+   + id             : my_fem:quadrature_points:_quadrangle_8
    + size           : 9
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0, 0}, {0.774597, 0.774597}, {-0.774597, 0.774597}, {-0.774597, -0.774597}, {0.774597, -0.774597}, {0, 0.774597}, {-0.774597, 0}, {0, -0.774597}, {0.774597, 0}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:quadrangle_8
+   + id             : my_fem:shapes:_quadrangle_8
    + size           : 36
    + nb_component   : 8
    + allocated size : 36
    + memory size    : 2.2kB
    + values         : {{-0.25, -0.25, -0.25, -0.25, 0.5, 0.5, 0.5, 0.5}, {-0.032379, -0.1, 0.432379, -0.1, 0.0450807, 0.354919, 0.354919, 0.0450807}, {-0.1, -0.032379, -0.1, 0.432379, 0.0450807, 0.0450807, 0.354919, 0.354919}, {0.432379, -0.1, -0.032379, -0.1, 0.354919, 0.0450807, 0.0450807, 0.354919}, {-0.1, 0.432379, -0.1, -0.032379, 0.354919, 0.354919, 0.0450807, 0.0450807}, {-0.1, -0.1, -0.1, -0.1, 0.112702, 0.2, 0.887298, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.112702, 0.2, 0.887298}, {-0.1, -0.1, -0.1, -0.1, 0.887298, 0.2, 0.112702, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.887298, 0.2, 0.112702}, {-0.25, -0.25, -0.25, -0.25, 0.5, 0.5, 0.5, 0.5}, {-0.032379, -0.1, 0.432379, -0.1, 0.0450807, 0.354919, 0.354919, 0.0450807}, {-0.1, -0.032379, -0.1, 0.432379, 0.0450807, 0.0450807, 0.354919, 0.354919}, {0.432379, -0.1, -0.032379, -0.1, 0.354919, 0.0450807, 0.0450807, 0.354919}, {-0.1, 0.432379, -0.1, -0.032379, 0.354919, 0.354919, 0.0450807, 0.0450807}, {-0.1, -0.1, -0.1, -0.1, 0.112702, 0.2, 0.887298, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.112702, 0.2, 0.887298}, {-0.1, -0.1, -0.1, -0.1, 0.887298, 0.2, 0.112702, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.887298, 0.2, 0.112702}, {-0.25, -0.25, -0.25, -0.25, 0.5, 0.5, 0.5, 0.5}, {-0.032379, -0.1, 0.432379, -0.1, 0.0450807, 0.354919, 0.354919, 0.0450807}, {-0.1, -0.032379, -0.1, 0.432379, 0.0450807, 0.0450807, 0.354919, 0.354919}, {0.432379, -0.1, -0.032379, -0.1, 0.354919, 0.0450807, 0.0450807, 0.354919}, {-0.1, 0.432379, -0.1, -0.032379, 0.354919, 0.354919, 0.0450807, 0.0450807}, {-0.1, -0.1, -0.1, -0.1, 0.112702, 0.2, 0.887298, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.112702, 0.2, 0.887298}, {-0.1, -0.1, -0.1, -0.1, 0.887298, 0.2, 0.112702, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.887298, 0.2, 0.112702}, {-0.25, -0.25, -0.25, -0.25, 0.5, 0.5, 0.5, 0.5}, {-0.032379, -0.1, 0.432379, -0.1, 0.0450807, 0.354919, 0.354919, 0.0450807}, {-0.1, -0.032379, -0.1, 0.432379, 0.0450807, 0.0450807, 0.354919, 0.354919}, {0.432379, -0.1, -0.032379, -0.1, 0.354919, 0.0450807, 0.0450807, 0.354919}, {-0.1, 0.432379, -0.1, -0.032379, 0.354919, 0.354919, 0.0450807, 0.0450807}, {-0.1, -0.1, -0.1, -0.1, 0.112702, 0.2, 0.887298, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.112702, 0.2, 0.887298}, {-0.1, -0.1, -0.1, -0.1, 0.887298, 0.2, 0.112702, 0.2}, {-0.1, -0.1, -0.1, -0.1, 0.2, 0.887298, 0.2, 0.112702}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:quadrangle_8
+   + id             : my_fem:shapes_derivatives:_quadrangle_8
    + size           : 36
    + nb_component   : 16
    + allocated size : 36
    + memory size    : 4.5kB
    + values         : {{0, 0, 0, 0, 0, 0, 0, 0, 2.36611e-12, 2, -2, 1.88161e-12, -2.36611e-12, -2, 2, -1.88161e-12}, {-0.52379, -0.52379, -0.174597, -1.3746, -4.12379, -4.12379, -1.3746, -0.174597, 0.698387, 0.8, -0.8, 5.49839, 5.49839, -0.8, 0.8, 0.698387}, {0.174597, -1.3746, 0.52379, -0.52379, 1.3746, -0.174597, 4.12379, -4.12379, -0.698387, 0.8, -0.8, 0.698387, -5.49839, -0.8, 0.8, 5.49839}, {4.12379, 4.12379, 1.3746, 0.174597, 0.52379, 0.52379, 0.174597, 1.3746, -5.49839, 0.8, -0.8, -0.698387, -0.698387, -0.8, 0.8, -5.49839}, {-1.3746, 0.174597, -4.12379, 4.12379, -0.174597, 1.3746, -0.52379, 0.52379, 5.49839, 0.8, -0.8, -5.49839, 0.698387, -0.8, 0.8, -0.698387}, {-0.174597, -1.54919, 0.174597, -1.54919, -1.3746, -1.54919, 1.3746, -1.54919, 4.19886e-12, 2, -0.8, 3.09839, -4.19886e-12, -2, 0.8, 3.09839}, {1.54919, 1.3746, 1.54919, -0.174597, 1.54919, 0.174597, 1.54919, -1.3746, -3.09839, 0.8, -2, 3.39506e-13, -3.09839, -0.8, 2, -3.39506e-13}, {1.3746, 1.54919, -1.3746, 1.54919, 0.174597, 1.54919, -0.174597, 1.54919, 5.33573e-13, 2, -0.8, -3.09839, -5.33573e-13, -2, 0.8, -3.09839}, {-1.54919, -0.174597, -1.54919, 1.3746, -1.54919, -1.3746, -1.54919, 0.174597, 3.09839, 0.8, -2, 4.0048e-12, 3.09839, -0.8, 2, -4.0048e-12}, {0, 0, 0, 0, 0, 0, 0, 0, 2.07689e-12, 2, -2, 2.36611e-12, -2.07689e-12, -2, 2, -2.36611e-12}, {-0.52379, -0.52379, -0.174597, -1.3746, -4.12379, -4.12379, -1.3746, -0.174597, 0.698387, 0.8, -0.8, 5.49839, 5.49839, -0.8, 0.8, 0.698387}, {0.174597, -1.3746, 0.52379, -0.52379, 1.3746, -0.174597, 4.12379, -4.12379, -0.698387, 0.8, -0.8, 0.698387, -5.49839, -0.8, 0.8, 5.49839}, {4.12379, 4.12379, 1.3746, 0.174597, 0.52379, 0.52379, 0.174597, 1.3746, -5.49839, 0.8, -0.8, -0.698387, -0.698387, -0.8, 0.8, -5.49839}, {-1.3746, 0.174597, -4.12379, 4.12379, -0.174597, 1.3746, -0.52379, 0.52379, 5.49839, 0.8, -0.8, -5.49839, 0.698387, -0.8, 0.8, -0.698387}, {-0.174597, -1.54919, 0.174597, -1.54919, -1.3746, -1.54919, 1.3746, -1.54919, 4.17666e-13, 2, -0.8, 3.09839, -4.17666e-13, -2, 0.8, 3.09839}, {1.54919, 1.3746, 1.54919, -0.174597, 1.54919, 0.174597, 1.54919, -1.3746, -3.09839, 0.8, -2, 5.33573e-13, -3.09839, -0.8, 2, -5.33573e-13}, {1.3746, 1.54919, -1.3746, 1.54919, 0.174597, 1.54919, -0.174597, 1.54919, 4.08307e-12, 2, -0.8, -3.09839, -4.08307e-12, -2, 0.8, -3.09839}, {-1.54919, -0.174597, -1.54919, 1.3746, -1.54919, -1.3746, -1.54919, 0.174597, 3.09839, 0.8, -2, 4.19864e-12, 3.09839, -0.8, 2, -4.19864e-12}, {0, 0, 0, 0, 0, 0, 0, 0, 1.88161e-12, 2, -2, 2.36589e-12, -1.88161e-12, -2, 2, -2.36589e-12}, {-0.52379, -0.52379, -0.174597, -1.3746, -4.12379, -4.12379, -1.3746, -0.174597, 0.698387, 0.8, -0.8, 5.49839, 5.49839, -0.8, 0.8, 0.698387}, {0.174597, -1.3746, 0.52379, -0.52379, 1.3746, -0.174597, 4.12379, -4.12379, -0.698387, 0.8, -0.8, 0.698387, -5.49839, -0.8, 0.8, 5.49839}, {4.12379, 4.12379, 1.3746, 0.174597, 0.52379, 0.52379, 0.174597, 1.3746, -5.49839, 0.8, -0.8, -0.698387, -0.698387, -0.8, 0.8, -5.49839}, {-1.3746, 0.174597, -4.12379, 4.12379, -0.174597, 1.3746, -0.52379, 0.52379, 5.49839, 0.8, -0.8, -5.49839, 0.698387, -0.8, 0.8, -0.698387}, {-0.174597, -1.54919, 0.174597, -1.54919, -1.3746, -1.54919, 1.3746, -1.54919, 4.0048e-12, 2, -0.8, 3.09839, -4.0048e-12, -2, 0.8, 3.09839}, {1.54919, 1.3746, 1.54919, -0.174597, 1.54919, 0.174597, 1.54919, -1.3746, -3.09839, 0.8, -2, 4.19864e-12, -3.09839, -0.8, 2, -4.19864e-12}, {1.3746, 1.54919, -1.3746, 1.54919, 0.174597, 1.54919, -0.174597, 1.54919, 3.39284e-13, 2, -0.8, -3.09839, -3.39284e-13, -2, 0.8, -3.09839}, {-1.54919, -0.174597, -1.54919, 1.3746, -1.54919, -1.3746, -1.54919, 0.174597, 3.09839, 0.8, -2, 5.3324e-13, 3.09839, -0.8, 2, -5.3324e-13}, {0, 0, 0, 0, 0, 0, 0, 0, 2.36589e-12, 2, -2, 2.07689e-12, -2.36589e-12, -2, 2, -2.07689e-12}, {-0.52379, -0.52379, -0.174597, -1.3746, -4.12379, -4.12379, -1.3746, -0.174597, 0.698387, 0.8, -0.8, 5.49839, 5.49839, -0.8, 0.8, 0.698387}, {0.174597, -1.3746, 0.52379, -0.52379, 1.3746, -0.174597, 4.12379, -4.12379, -0.698387, 0.8, -0.8, 0.698387, -5.49839, -0.8, 0.8, 5.49839}, {4.12379, 4.12379, 1.3746, 0.174597, 0.52379, 0.52379, 0.174597, 1.3746, -5.49839, 0.8, -0.8, -0.698387, -0.698387, -0.8, 0.8, -5.49839}, {-1.3746, 0.174597, -4.12379, 4.12379, -0.174597, 1.3746, -0.52379, 0.52379, 5.49839, 0.8, -0.8, -5.49839, 0.698387, -0.8, 0.8, -0.698387}, {-0.174597, -1.54919, 0.174597, -1.54919, -1.3746, -1.54919, 1.3746, -1.54919, 5.3324e-13, 2, -0.8, 3.09839, -5.3324e-13, -2, 0.8, 3.09839}, {1.54919, 1.3746, 1.54919, -0.174597, 1.54919, 0.174597, 1.54919, -1.3746, -3.09839, 0.8, -2, 4.08307e-12, -3.09839, -0.8, 2, -4.08307e-12}, {1.3746, 1.54919, -1.3746, 1.54919, 0.174597, 1.54919, -0.174597, 1.54919, 4.19864e-12, 2, -0.8, -3.09839, -4.19864e-12, -2, 0.8, -3.09839}, {-1.54919, -0.174597, -1.54919, 1.3746, -1.54919, -1.3746, -1.54919, 0.174597, 3.09839, 0.8, -2, 4.17666e-13, 3.09839, -0.8, 2, -4.17666e-13}}
   ]
   + total size  : 1.3e+02kB
  ]
  + total size  : 1.3e+02kB
 ]
 
diff --git a/test/test_fem/test_interpolate_segment_2.verified b/test/test_fem/test_interpolate_segment_2.verified
index d374f2544..fe601f882 100644
--- a/test/test_fem/test_interpolate_segment_2.verified
+++ b/test/test_fem/test_interpolate_segment_2.verified
@@ -1,120 +1,120 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 1
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 1
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 11
      + nb_component   : 1
      + allocated size : 2000
      + memory size    : 16kB
      + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 10
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 2}, {2, 3}, {3, 4}, {4, 5}, {5, 6}, {6, 7}, {7, 8}, {8, 9}, {9, 10}, {10, 1}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 1
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 11
      + nb_component   : 1
      + allocated size : 2000
      + memory size    : 16kB
      + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 10
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 2}, {2, 3}, {3, 4}, {4, 5}, {5, 6}, {6, 7}, {7, 8}, {8, 9}, {9, 10}, {10, 1}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 6
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_2
+   + id             : mesh:connectivities:_segment_2
    + size           : 10
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0, 2}, {2, 3}, {3, 4}, {4, 5}, {5, 6}, {6, 7}, {7, 8}, {8, 9}, {9, 10}, {10, 1}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 11
    + nb_component   : 1
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:segment_2
+   + id             : my_fem:jacobians:_segment_2
    + size           : 10
    + nb_component   : 1
    + allocated size : 10
    + memory size    : 0.078kB
    + values         : {{0.1}, {0.1}, {0.1}, {0.1}, {0.1}, {0.1}, {0.1}, {0.1}, {0.1}, {0.1}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:segment_2
+   + id             : my_fem:quadrature_points:_segment_2
    + size           : 1
    + nb_component   : 1
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:segment_2
+   + id             : my_fem:shapes:_segment_2
    + size           : 10
    + nb_component   : 2
    + allocated size : 10
    + memory size    : 0.16kB
    + values         : {{0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}, {0.5, 0.5}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:segment_2
+   + id             : my_fem:shapes_derivatives:_segment_2
    + size           : 10
    + nb_component   : 2
    + allocated size : 10
    + memory size    : 0.16kB
    + values         : {{-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}, {-10, 10}}
   ]
   + total size  : 47kB
  ]
  + total size  : 47kB
 ]
 
diff --git a/test/test_fem/test_interpolate_segment_3.verified b/test/test_fem/test_interpolate_segment_3.verified
index 218d2eb4d..78786579b 100644
--- a/test/test_fem/test_interpolate_segment_3.verified
+++ b/test/test_fem/test_interpolate_segment_3.verified
@@ -1,120 +1,120 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 1
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 1
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 21
      + nb_component   : 1
      + allocated size : 2000
      + memory size    : 16kB
      + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}, {0.05}, {0.15}, {0.25}, {0.35}, {0.45}, {0.55}, {0.65}, {0.75}, {0.85}, {0.95}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 10
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{0, 2, 11}, {2, 3, 12}, {3, 4, 13}, {4, 5, 14}, {5, 6, 15}, {6, 7, 16}, {7, 8, 17}, {8, 9, 18}, {9, 10, 19}, {10, 1, 20}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 1
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 21
      + nb_component   : 1
      + allocated size : 2000
      + memory size    : 16kB
      + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}, {0.05}, {0.15}, {0.25}, {0.35}, {0.45}, {0.55}, {0.65}, {0.75}, {0.85}, {0.95}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 10
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{0, 2, 11}, {2, 3, 12}, {3, 4, 13}, {4, 5, 14}, {5, 6, 15}, {6, 7, 16}, {7, 8, 17}, {8, 9, 18}, {9, 10, 19}, {10, 1, 20}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 6
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_3
+   + id             : mesh:connectivities:_segment_3
    + size           : 10
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 23kB
    + values         : {{0, 2, 11}, {2, 3, 12}, {3, 4, 13}, {4, 5, 14}, {5, 6, 15}, {6, 7, 16}, {7, 8, 17}, {8, 9, 18}, {9, 10, 19}, {10, 1, 20}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 21
    + nb_component   : 1
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0}, {1}, {0.1}, {0.2}, {0.3}, {0.4}, {0.5}, {0.6}, {0.7}, {0.8}, {0.9}, {0.05}, {0.15}, {0.25}, {0.35}, {0.45}, {0.55}, {0.65}, {0.75}, {0.85}, {0.95}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:segment_3
+   + id             : my_fem:jacobians:_segment_3
    + size           : 20
    + nb_component   : 1
    + allocated size : 20
    + memory size    : 0.16kB
    + values         : {{0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}, {0.05}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:segment_3
+   + id             : my_fem:quadrature_points:_segment_3
    + size           : 2
    + nb_component   : 1
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{-0.57735}, {0.57735}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:segment_3
+   + id             : my_fem:shapes:_segment_3
    + size           : 20
    + nb_component   : 3
    + allocated size : 20
    + memory size    : 0.47kB
    + values         : {{0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}, {0.455342, -0.122008, 0.666667}, {-0.122008, 0.455342, 0.666667}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:segment_3
+   + id             : my_fem:shapes_derivatives:_segment_3
    + size           : 20
    + nb_component   : 3
    + allocated size : 20
    + memory size    : 0.47kB
    + values         : {{-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}, {-21.547, -1.54701, 23.094}, {1.54701, 21.547, -23.094}}
   ]
   + total size  : 56kB
  ]
  + total size  : 56kB
 ]
 
diff --git a/test/test_fem/test_interpolate_tetrahedron_10.verified b/test/test_fem/test_interpolate_tetrahedron_10.verified
index 5de98c2f8..1b2450abe 100644
--- a/test/test_fem/test_interpolate_tetrahedron_10.verified
+++ b/test/test_fem/test_interpolate_tetrahedron_10.verified
@@ -1,172 +1,172 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 3
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 722
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {0.125, 1, 1}, {0.375, 1, 1}, {0.625, 1, 1}, {0.875, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {1, 1, 0.875}, {1, 1, 0.625}, {1, 1, 0.375}, {1, 1, 0.125}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0.875, 1, 0}, {0.625, 1, 0}, {0.375, 1, 0}, {0.125, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 1, 0.125}, {0, 1, 0.375}, {0, 1, 0.625}, {0, 1, 0.875}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0, 0, 0.125}, {0, 0, 0.375}, {0, 0, 0.625}, {0, 0, 0.875}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {0.125, 0, 1}, {0.375, 0, 1}, {0.625, 0, 1}, {0.875, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {1, 0, 0.875}, {1, 0, 0.625}, {1, 0, 0.375}, {1, 0, 0.125}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0.875, 0, 0}, {0.625, 0, 0}, {0.375, 0, 0}, {0.125, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.875, 0}, {0, 0.625, 0}, {0, 0.375, 0}, {0, 0.125, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {0, 0.875, 1}, {0, 0.625, 1}, {0, 0.375, 1}, {0, 0.125, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.875, 1}, {1, 0.625, 1}, {1, 0.375, 1}, {1, 0.125, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {1, 0.875, 0}, {1, 0.625, 0}, {1, 0.375, 0}, {1, 0.125, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.234692, 0.610874, 1}, {0.095431, 0.625135, 1}, {0.139261, 0.735739, 1}, {0.264261, 0.860739, 1}, {0.375, 0.904691, 1}, {0.389261, 0.76543, 1}, {0.860739, 0.735739, 1}, {0.904569, 0.625135, 1}, {0.765308, 0.610874, 1}, {0.264261, 0.139383, 1}, {0.389261, 0.234962, 1}, {0.375, 0.0955798, 1}, {0.610739, 0.76543, 1}, {0.625, 0.904691, 1}, {0.735739, 0.860739, 1}, {0.095431, 0.375135, 1}, {0.234692, 0.389518, 1}, {0.139261, 0.264383, 1}, {0.625, 0.0955798, 1}, {0.610739, 0.234962, 1}, {0.735739, 0.139383, 1}, {0.860739, 0.264383, 1}, {0.765308, 0.389518, 1}, {0.904569, 0.375135, 1}, {0.095431, 0.500135, 1}, {0.904569, 0.500135, 1}, {0.5, 0.904691, 1}, {0.5, 0.0955798, 1}, {0.389261, 0.611834, 1}, {0.345431, 0.501231, 1}, {0.5, 0.655786, 1}, {0.610739, 0.611834, 1}, {0.389261, 0.390478, 1}, {0.654569, 0.501231, 1}, {0.5, 0.346675, 1}, {0.610739, 0.390478, 1}, {0.0709532, 0.804047, 1}, {0.210214, 0.789786, 1}, {0.195953, 0.929047, 1}, {0.789786, 0.789786, 1}, {0.929047, 0.804047, 1}, {0.195953, 0.0709735, 1}, {0.210214, 0.210356, 1}, {0.804047, 0.929047, 1}, {0.0709532, 0.195973, 1}, {0.789786, 0.210356, 1}, {0.804047, 0.0709735, 1}, {0.929047, 0.195973, 1}, {0.0709532, 0.0709735, 1}, {0.0709532, 0.929047, 1}, {0.929047, 0.929047, 1}, {0.929047, 0.0709735, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.904569, 1, 0.625}, {0.765308, 1, 0.610739}, {0.860739, 1, 0.735739}, {0.625, 1, 0.095431}, {0.610739, 1, 0.234692}, {0.735739, 1, 0.139261}, {0.375, 1, 0.904569}, {0.389261, 1, 0.765308}, {0.264261, 1, 0.860739}, {0.095431, 1, 0.375}, {0.234692, 1, 0.389261}, {0.139261, 1, 0.264261}, {0.735739, 1, 0.860739}, {0.610739, 1, 0.765308}, {0.625, 1, 0.904569}, {0.139261, 1, 0.735739}, {0.234692, 1, 0.610739}, {0.095431, 1, 0.625}, {0.860739, 1, 0.264261}, {0.765308, 1, 0.389261}, {0.904569, 1, 0.375}, {0.264261, 1, 0.139261}, {0.389261, 1, 0.234692}, {0.375, 1, 0.095431}, {0.5, 1, 0.095431}, {0.904569, 1, 0.5}, {0.095431, 1, 0.5}, {0.5, 1, 0.904569}, {0.654569, 1, 0.5}, {0.610739, 1, 0.610739}, {0.610739, 1, 0.389261}, {0.5, 1, 0.345431}, {0.389261, 1, 0.389261}, {0.5, 1, 0.654569}, {0.389261, 1, 0.610739}, {0.345431, 1, 0.5}, {0.789786, 1, 0.789786}, {0.929047, 1, 0.804047}, {0.789786, 1, 0.210214}, {0.804047, 1, 0.0709532}, {0.210214, 1, 0.789786}, {0.195953, 1, 0.929047}, {0.210214, 1, 0.210214}, {0.0709532, 1, 0.195953}, {0.804047, 1, 0.929047}, {0.0709532, 1, 0.804047}, {0.929047, 1, 0.195953}, {0.195953, 1, 0.0709532}, {0.0709532, 1, 0.0709532}, {0.929047, 1, 0.0709532}, {0.0709532, 1, 0.929047}, {0.929047, 1, 0.929047}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.904691, 0, 0.625}, {0.76543, 0, 0.610739}, {0.860739, 0, 0.735739}, {0.625135, 0, 0.095431}, {0.610874, 0, 0.234692}, {0.735739, 0, 0.139261}, {0.375135, 0, 0.904569}, {0.389518, 0, 0.765308}, {0.264383, 0, 0.860739}, {0.0955798, 0, 0.375}, {0.234962, 0, 0.389261}, {0.139383, 0, 0.264261}, {0.735739, 0, 0.860739}, {0.610874, 0, 0.765308}, {0.625135, 0, 0.904569}, {0.139383, 0, 0.735739}, {0.234962, 0, 0.610739}, {0.0955798, 0, 0.625}, {0.860739, 0, 0.264261}, {0.76543, 0, 0.389261}, {0.904691, 0, 0.375}, {0.264383, 0, 0.139261}, {0.389518, 0, 0.234692}, {0.375135, 0, 0.095431}, {0.500135, 0, 0.095431}, {0.904691, 0, 0.5}, {0.0955798, 0, 0.5}, {0.500135, 0, 0.904569}, {0.655786, 0, 0.5}, {0.611834, 0, 0.610739}, {0.611834, 0, 0.389261}, {0.501231, 0, 0.345431}, {0.390478, 0, 0.389261}, {0.501231, 0, 0.654569}, {0.390478, 0, 0.610739}, {0.346675, 0, 0.5}, {0.789786, 0, 0.789786}, {0.929047, 0, 0.804047}, {0.789786, 0, 0.210214}, {0.804047, 0, 0.0709532}, {0.210356, 0, 0.789786}, {0.195973, 0, 0.929047}, {0.210356, 0, 0.210214}, {0.0709735, 0, 0.195953}, {0.804047, 0, 0.929047}, {0.0709735, 0, 0.804047}, {0.929047, 0, 0.195953}, {0.195973, 0, 0.0709532}, {0.0709735, 0, 0.0709532}, {0.929047, 0, 0.0709532}, {0.0709735, 0, 0.929047}, {0.929047, 0, 0.929047}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0.860739, 0.735739, 0}, {0.765308, 0.610739, 0}, {0.904569, 0.625, 0}, {0.625, 0.904569, 0}, {0.610739, 0.765308, 0}, {0.735739, 0.860739, 0}, {0.735739, 0.139261, 0}, {0.610739, 0.234692, 0}, {0.625, 0.095431, 0}, {0.095431, 0.625, 0}, {0.234692, 0.610739, 0}, {0.139261, 0.735739, 0}, {0.264261, 0.860739, 0}, {0.389261, 0.765308, 0}, {0.375, 0.904569, 0}, {0.904569, 0.375, 0}, {0.765308, 0.389261, 0}, {0.860739, 0.264261, 0}, {0.139261, 0.264261, 0}, {0.234692, 0.389261, 0}, {0.095431, 0.375, 0}, {0.375, 0.095431, 0}, {0.389261, 0.234692, 0}, {0.264261, 0.139261, 0}, {0.904569, 0.5, 0}, {0.5, 0.904569, 0}, {0.5, 0.095431, 0}, {0.095431, 0.5, 0}, {0.5, 0.654569, 0}, {0.610739, 0.610739, 0}, {0.654569, 0.5, 0}, {0.389261, 0.610739, 0}, {0.610739, 0.389261, 0}, {0.345431, 0.5, 0}, {0.5, 0.345431, 0}, {0.389261, 0.389261, 0}, {0.789786, 0.789786, 0}, {0.804047, 0.929047, 0}, {0.929047, 0.804047, 0}, {0.804047, 0.0709532, 0}, {0.789786, 0.210214, 0}, {0.210214, 0.789786, 0}, {0.0709532, 0.804047, 0}, {0.929047, 0.195953, 0}, {0.195953, 0.929047, 0}, {0.210214, 0.210214, 0}, {0.195953, 0.0709532, 0}, {0.0709532, 0.195953, 0}, {0.929047, 0.0709532, 0}, {0.0709532, 0.929047, 0}, {0.929047, 0.929047, 0}, {0.0709532, 0.0709532, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {0, 0.735739, 0.139261}, {0, 0.610739, 0.234692}, {0, 0.625, 0.095431}, {0, 0.904569, 0.375}, {0, 0.765308, 0.389261}, {0, 0.860739, 0.264261}, {0, 0.625, 0.904569}, {0, 0.610739, 0.765308}, {0, 0.735739, 0.860739}, {0, 0.139261, 0.264261}, {0, 0.234692, 0.389261}, {0, 0.095431, 0.375}, {0, 0.860739, 0.735739}, {0, 0.765308, 0.610739}, {0, 0.904569, 0.625}, {0, 0.375, 0.095431}, {0, 0.389261, 0.234692}, {0, 0.264261, 0.139261}, {0, 0.095431, 0.625}, {0, 0.234692, 0.610739}, {0, 0.139261, 0.735739}, {0, 0.264261, 0.860739}, {0, 0.389261, 0.765308}, {0, 0.375, 0.904569}, {0, 0.5, 0.095431}, {0, 0.5, 0.904569}, {0, 0.904569, 0.5}, {0, 0.095431, 0.5}, {0, 0.610739, 0.389261}, {0, 0.5, 0.345431}, {0, 0.654569, 0.5}, {0, 0.610739, 0.610739}, {0, 0.389261, 0.389261}, {0, 0.5, 0.654569}, {0, 0.345431, 0.5}, {0, 0.389261, 0.610739}, {0, 0.804047, 0.0709532}, {0, 0.789786, 0.210214}, {0, 0.929047, 0.195953}, {0, 0.789786, 0.789786}, {0, 0.804047, 0.929047}, {0, 0.0709532, 0.195953}, {0, 0.210214, 0.210214}, {0, 0.929047, 0.804047}, {0, 0.195953, 0.0709532}, {0, 0.210214, 0.789786}, {0, 0.0709532, 0.804047}, {0, 0.195953, 0.929047}, {0, 0.0709532, 0.0709532}, {0, 0.929047, 0.0709532}, {0, 0.929047, 0.929047}, {0, 0.0709532, 0.929047}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {1, 0.860678, 0.735678}, {1, 0.76518, 0.610611}, {1, 0.904501, 0.624932}, {1, 0.624932, 0.904501}, {1, 0.610611, 0.76518}, {1, 0.735678, 0.860678}, {1, 0.0953701, 0.624939}, {1, 0.234631, 0.610678}, {1, 0.139261, 0.735739}, {1, 0.735739, 0.139261}, {1, 0.610678, 0.234631}, {1, 0.624939, 0.0953701}, {1, 0.904501, 0.374932}, {1, 0.76524, 0.389193}, {1, 0.860739, 0.264261}, {1, 0.264261, 0.860739}, {1, 0.389193, 0.76524}, {1, 0.374932, 0.904501}, {1, 0.374939, 0.0953701}, {1, 0.3892, 0.234631}, {1, 0.264261, 0.139261}, {1, 0.139261, 0.264261}, {1, 0.234631, 0.3892}, {1, 0.0953701, 0.374939}, {1, 0.904501, 0.499932}, {1, 0.499932, 0.904501}, {1, 0.0953701, 0.499939}, {1, 0.499939, 0.0953701}, {1, 0.610131, 0.610131}, {1, 0.499385, 0.653954}, {1, 0.653954, 0.499385}, {1, 0.610191, 0.388713}, {1, 0.388713, 0.610191}, {1, 0.499391, 0.344822}, {1, 0.344822, 0.499391}, {1, 0.388713, 0.388713}, {1, 0.929037, 0.804037}, {1, 0.789715, 0.789715}, {1, 0.804037, 0.929037}, {1, 0.210214, 0.789786}, {1, 0.0709532, 0.804047}, {1, 0.804047, 0.0709532}, {1, 0.789786, 0.210214}, {1, 0.195953, 0.929047}, {1, 0.929047, 0.195953}, {1, 0.0709532, 0.195953}, {1, 0.210214, 0.210214}, {1, 0.195953, 0.0709532}, {1, 0.0709532, 0.929047}, {1, 0.929047, 0.0709532}, {1, 0.929037, 0.929037}, {1, 0.0709532, 0.0709532}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}, {0.403787, 0.502163, 0.604301}, {0.59395, 0.335588, 0.588613}, {0.57425, 0.502163, 0.604301}, {0.533055, 0.519268, 0.479373}, {0.723218, 0.352693, 0.463685}, {0.552756, 0.352693, 0.463685}, {0.907719, 0.227933, 0.0932632}, {0.768458, 0.242194, 0.0932632}, {0.812288, 0.352933, 0.0932632}, {0.462839, 0.167794, 0.544306}, {0.592107, 0.184899, 0.419378}, {0.423487, 0.335588, 0.41815}, {0.552756, 0.352693, 0.293222}, {0.462839, 0.167794, 0.373844}, {0.610874, 0.139383, 0.904569}, {0.500135, 0.0955798, 0.904569}, {0.141927, 0.0709532, 0.0709532}, {0.0709735, 0.0709532, 0.141906}, {0.0709532, 0.141906, 0.0709532}, {0.307175, 0.417794, 0.123844}, {0.351005, 0.307055, 0.123844}, {0.095431, 0.5, 0.095431}, {0.139261, 0.389261, 0.095431}, {0.211744, 0.417794, 0.219275}, {0.633302, 0.167794, 0.544306}, {0.907719, 0.173886, 0.164216}, {0.907719, 0.242194, 0.232524}, {0.0709532, 0.210234, 0.860739}, {0.141927, 0.0709735, 0.929047}, {0.0709735, 0.139261, 0.789786}, {0.0709735, 0.0709532, 0.858094}, {0.0709532, 0.141927, 0.929047}, {0.210336, 0.0709735, 0.860739}, {0.139383, 0.139261, 0.721478}, {0.742945, 0.167794, 0.655045}, {0.786897, 0.167794, 0.544306}, {0.904691, 0.139261, 0.610739}, {0.882206, 0.307055, 0.655045}, {0.860739, 0.139261, 0.721478}, {0.442043, 0.585464, 0.809994}, {0.461744, 0.418889, 0.794306}, {0.632206, 0.418889, 0.794306}, {0.907719, 0.352872, 0.188633}, {0.836765, 0.173886, 0.0932632}, {0.549357, 0.674254, 0.636624}, {0.73952, 0.678141, 0.450474}, {0.57425, 0.672625, 0.433838}, {0.723218, 0.523156, 0.293222}, {0.698326, 0.524784, 0.496008}, {0.721478, 0.860739, 0.860739}, {0.610739, 0.904691, 0.860739}, {0.0709735, 0.139261, 0.210214}, {0.882206, 0.263164, 0.544245}, {0.882206, 0.417246, 0.543759}, {0.768458, 0.102933, 0.232524}, {0.907719, 0.102933, 0.218263}, {0.836765, 0.102933, 0.164216}, {0.73952, 0.507679, 0.620936}, {0.929047, 0.929037, 0.858083}, {0.403787, 0.672625, 0.433838}, {0.59395, 0.676512, 0.247688}, {0.552756, 0.523156, 0.293222}, {0.307175, 0.417929, 0.794306}, {0.351005, 0.307176, 0.794306}, {0.095431, 0.904569, 0.5}, {0.500135, 0.095431, 0.095431}, {0.858094, 0.929047, 0.929047}, {0.5, 0.904691, 0.904569}, {0.929047, 0.858083, 0.929037}, {0.423487, 0.50605, 0.41815}, {0.904569, 0.904501, 0.499932}, {0.139261, 0.860739, 0.278522}, {0.139261, 0.904569, 0.389261}, {0.351005, 0.838256, 0.263105}, {0.211744, 0.742825, 0.373844}, {0.211744, 0.698995, 0.263105}, {0.141906, 0.929047, 0.929047}, {0.210214, 0.860739, 0.929047}, {0.904569, 0.500068, 0.904501}, {0.745703, 0.184899, 0.419378}, {0.904691, 0.0953701, 0.499939}, {0.841012, 0.280269, 0.419318}, {0.607314, 0.59098, 0.82663}, {0.461879, 0.167794, 0.698875}, {0.572483, 0.167794, 0.655045}, {0.882206, 0.417726, 0.698808}, {0.0709532, 0.789786, 0.139261}, {0.139261, 0.721478, 0.139261}, {0.882206, 0.588195, 0.219214}, {0.841012, 0.434839, 0.264749}, {0.882206, 0.587709, 0.373296}, {0.841012, 0.434352, 0.418831}, {0.389261, 0.904569, 0.139261}, {0.5, 0.904569, 0.095431}, {0.389383, 0.095431, 0.139261}, {0.278522, 0.860739, 0.139261}, {0.287474, 0.834369, 0.559994}, {0.331304, 0.834369, 0.670734}, {0.192043, 0.695108, 0.670734}, {0.139261, 0.860739, 0.721478}, {0.095431, 0.860739, 0.610739}, {0.139261, 0.278644, 0.860739}, {0.278644, 0.139383, 0.860739}, {0.139261, 0.389383, 0.904569}, {0.192043, 0.584369, 0.559994}, {0.192043, 0.584369, 0.714563}, {0.211744, 0.417794, 0.698875}, {0.211744, 0.417794, 0.544306}, {0.0955798, 0.139261, 0.610739}, {0.351005, 0.698995, 0.123844}, {0.461744, 0.742825, 0.123844}, {0.461744, 0.838256, 0.219275}, {0.929047, 0.141906, 0.0709532}, {0.858094, 0.929047, 0.0709532}, {0.0955798, 0.095431, 0.5}, {0.307323, 0.167794, 0.544306}, {0.211744, 0.263225, 0.544306}, {0.211744, 0.307055, 0.655045}, {0.461744, 0.263225, 0.123844}, {0.351126, 0.167794, 0.263105}, {0.278644, 0.139261, 0.139261}, {0.461879, 0.167794, 0.219275}, {0.929047, 0.929047, 0.141906}, {0.860739, 0.860678, 0.721417}, {0.904569, 0.860678, 0.610678}, {0.442043, 0.834369, 0.559994}, {0.718053, 0.839885, 0.687369}, {0.857314, 0.700563, 0.687308}, {0.761883, 0.839885, 0.57663}, {0.857314, 0.744386, 0.576562}, {0.904569, 0.499939, 0.0953701}, {0.786775, 0.588256, 0.123844}, {0.745581, 0.434899, 0.169378}, {0.701751, 0.32416, 0.169378}, {0.748731, 0.287832, 0.262642}, {0.857314, 0.589817, 0.731131}, {0.857314, 0.589337, 0.576082}, {0.572483, 0.307055, 0.123844}, {0.461744, 0.417794, 0.123844}, {0.591012, 0.434899, 0.169378}, {0.929047, 0.858094, 0.0709532}, {0.882206, 0.713256, 0.123844}, {0.882206, 0.767303, 0.194797}, {0.882206, 0.698995, 0.263105}, {0.351126, 0.167794, 0.433567}, {0.351126, 0.167794, 0.655045}, {0.211744, 0.417794, 0.373844}, {0.423487, 0.50605, 0.247688}, {0.211744, 0.588256, 0.373844}, {0.929047, 0.0709532, 0.141906}, {0.287474, 0.584504, 0.809994}, {0.929047, 0.0709532, 0.858094}, {0.192043, 0.738938, 0.559994}, {0.461744, 0.838256, 0.373844}, {0.632206, 0.838256, 0.373844}, {0.139261, 0.210214, 0.0709532}, {0.210234, 0.139261, 0.0709532}, {0.789786, 0.0709735, 0.860739}, {0.721478, 0.139383, 0.860739}, {0.610739, 0.904569, 0.139261}, {0.721478, 0.860739, 0.139261}, {0.0709532, 0.929047, 0.141906}, {0.095431, 0.500135, 0.904569}, {0.442043, 0.834369, 0.714563}, {0.461744, 0.263374, 0.794306}, {0.860739, 0.278644, 0.860739}, {0.929047, 0.210234, 0.860739}, {0.211744, 0.307055, 0.263105}, {0.139261, 0.610739, 0.095431}, {0.211744, 0.588256, 0.219275}, {0.632206, 0.588256, 0.123844}, {0.461744, 0.588256, 0.123844}, {0.139383, 0.139261, 0.278522}, {0.139261, 0.278522, 0.139261}, {0.607314, 0.839885, 0.57663}, {0.904569, 0.610813, 0.860678}, {0.0709532, 0.858094, 0.929047}, {0.331304, 0.695108, 0.809994}, {0.139261, 0.721478, 0.860739}, {0.278522, 0.860739, 0.860739}, {0.0709532, 0.929047, 0.858094}, {0.718053, 0.700624, 0.82663}, {0.860739, 0.721417, 0.860678}, {0.761883, 0.59002, 0.82663}, {0.742945, 0.307176, 0.794306}, {0.786775, 0.417929, 0.794306}, {0.860739, 0.929037, 0.789776}, {0.389261, 0.904691, 0.860739}, {0.307175, 0.588256, 0.123844}, {0.789786, 0.860739, 0.0709532}, {0.0709532, 0.858094, 0.0709532}, {0.742945, 0.838256, 0.263105}, {0.632206, 0.742825, 0.123844}, {0.742945, 0.698995, 0.123844}, {0.841012, 0.32416, 0.308639}, {0.610874, 0.139261, 0.095431}, {0.782719, 0.102933, 0.0932632}, {0.860739, 0.789776, 0.929037}, {0.929047, 0.141927, 0.929047}, {0.811253, 0.838256, 0.194797}, {0.858094, 0.0709735, 0.929047}, {0.607314, 0.839885, 0.731199}, {0.607314, 0.744576, 0.82663}, {0.442043, 0.73906, 0.809994}, {0.389383, 0.0955798, 0.860739}, {0.141906, 0.929047, 0.0709532}, {0.0709532, 0.860739, 0.210214}, {0.929047, 0.860739, 0.210214}, {0.860739, 0.860739, 0.278522}, {0.139383, 0.095431, 0.389261}, {0.211744, 0.263225, 0.373844}, {0.139261, 0.789786, 0.929047}, {0.789786, 0.929047, 0.860739}, {0.904691, 0.139261, 0.389261}, {0.701751, 0.184899, 0.308639}, {0.929047, 0.139261, 0.789786}, {0.786775, 0.838256, 0.373844}, {0.875, 0.0709532, 0.0709532}, {0.210214, 0.929047, 0.139261}, {0.572483, 0.838256, 0.263105}, {0.591147, 0.184899, 0.264809}, {0.904569, 0.389396, 0.860739}, {0.572483, 0.307176, 0.794306}, {0.331304, 0.834369, 0.449255}, {0.139261, 0.929047, 0.789786}, {0.860739, 0.789786, 0.0709532}, {0.904569, 0.860739, 0.389261}, {0.139261, 0.610739, 0.904569}, {0.812409, 0.102933, 0.343263}, {0.657854, 0.102933, 0.188694}, {0.857314, 0.700624, 0.465891}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 48
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{6, 8, 11}, {8, 9, 12}, {9, 10, 13}, {10, 7, 14}, {7, 15, 18}, {15, 16, 19}, {16, 17, 20}, {17, 3, 21}, {3, 22, 25}, {22, 23, 26}, {23, 24, 27}, {24, 2, 28}, {2, 29, 32}, {29, 30, 33}, {30, 31, 34}, {31, 6, 35}, {0, 36, 39}, {36, 37, 40}, {37, 38, 41}, {38, 4, 42}, {4, 43, 46}, {43, 44, 47}, {44, 45, 48}, {45, 5, 49}, {5, 50, 53}, {50, 51, 54}, {51, 52, 55}, {52, 1, 56}, {1, 57, 60}, {57, 58, 61}, {58, 59, 62}, {59, 0, 63}, {2, 64, 67}, {64, 65, 68}, {65, 66, 69}, {66, 0, 70}, {6, 71, 74}, {71, 72, 75}, {72, 73, 76}, {73, 4, 77}, {7, 78, 81}, {78, 79, 82}, {79, 80, 83}, {80, 5, 84}, {3, 85, 88}, {85, 86, 89}, {86, 87, 90}, {87, 1, 91}}
        ]
-        (not_ghost:triangle_6) [
+        (not_ghost:_triangle_6) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_6
+        + id             : mesh:connectivities:_triangle_6
         + size           : 240
         + nb_component   : 6
         + allocated size : 2000
         + memory size    : 47kB
         + values         : {{93, 97, 71, 105, 106, 107}, {93, 8, 98, 108, 109, 110}, {94, 78, 99, 111, 112, 113}, {43, 95, 100, 114, 115, 116}, {94, 98, 10, 117, 118, 119}, {73, 97, 95, 120, 121, 122}, {45, 100, 96, 123, 124, 125}, {80, 96, 99, 126, 127, 128}, {71, 97, 72, 106, 129, 75}, {78, 79, 99, 82, 130, 112}, {8, 9, 98, 12, 131, 109}, {43, 100, 44, 116, 132, 47}, {72, 97, 73, 129, 120, 76}, {9, 10, 98, 13, 118, 131}, {79, 80, 99, 83, 128, 130}, {44, 100, 45, 132, 123, 48}, {93, 92, 97, 133, 134, 105}, {93, 98, 92, 110, 135, 133}, {94, 92, 98, 136, 135, 117}, {92, 95, 97, 137, 121, 134}, {94, 99, 92, 113, 138, 136}, {92, 100, 95, 139, 115, 137}, {92, 99, 96, 138, 127, 140}, {92, 96, 100, 140, 124, 139}, {93, 71, 101, 107, 141, 142}, {93, 101, 8, 142, 143, 108}, {94, 102, 78, 144, 145, 111}, {43, 103, 95, 146, 147, 114}, {94, 10, 102, 119, 148, 144}, {73, 95, 103, 122, 147, 149}, {45, 96, 104, 125, 150, 151}, {80, 104, 96, 152, 150, 126}, {4, 73, 103, 77, 149, 153}, {6, 101, 71, 154, 141, 74}, {7, 102, 10, 155, 148, 14}, {7, 78, 102, 81, 145, 155}, {6, 8, 101, 11, 143, 154}, {5, 104, 80, 156, 152, 84}, {4, 103, 43, 153, 146, 46}, {5, 45, 104, 49, 151, 156}, {15, 162, 158, 170, 171, 172}, {22, 163, 159, 173, 174, 175}, {8, 164, 160, 176, 177, 178}, {29, 165, 161, 179, 180, 181}, {10, 158, 164, 182, 183, 184}, {31, 160, 165, 185, 186, 187}, {17, 159, 162, 188, 189, 190}, {24, 161, 163, 191, 192, 193}, {22, 23, 163, 26, 194, 173}, {15, 16, 162, 19, 195, 170}, {29, 30, 165, 33, 196, 179}, {8, 9, 164, 12, 197, 176}, {16, 17, 162, 20, 190, 195}, {23, 24, 163, 27, 193, 194}, {9, 10, 164, 13, 184, 197}, {30, 31, 165, 34, 187, 196}, {158, 162, 157, 171, 198, 199}, {159, 157, 162, 200, 198, 189}, {159, 163, 157, 174, 201, 200}, {161, 157, 163, 202, 201, 192}, {158, 157, 164, 199, 203, 183}, {160, 164, 157, 177, 203, 204}, {160, 157, 165, 204, 205, 186}, {161, 165, 157, 180, 205, 202}, {15, 158, 167, 172, 206, 207}, {22, 159, 166, 175, 208, 209}, {8, 160, 169, 178, 210, 211}, {29, 161, 168, 181, 212, 213}, {10, 167, 158, 214, 206, 182}, {31, 169, 160, 215, 210, 185}, {17, 166, 159, 216, 208, 188}, {24, 168, 161, 217, 212, 191}, {2, 168, 24, 218, 217, 28}, {3, 166, 17, 219, 216, 21}, {6, 169, 31, 220, 215, 35}, {7, 167, 10, 221, 214, 14}, {7, 15, 167, 18, 207, 221}, {3, 22, 166, 25, 209, 219}, {6, 8, 169, 11, 211, 220}, {2, 29, 168, 32, 213, 218}, {50, 227, 223, 235, 236, 237}, {57, 228, 224, 238, 239, 240}, {43, 229, 225, 241, 242, 243}, {36, 230, 226, 244, 245, 246}, {45, 223, 229, 247, 248, 249}, {38, 225, 230, 250, 251, 252}, {52, 224, 227, 253, 254, 255}, {59, 226, 228, 256, 257, 258}, {57, 58, 228, 61, 259, 238}, {50, 51, 227, 54, 260, 235}, {36, 37, 230, 40, 261, 244}, {43, 44, 229, 47, 262, 241}, {51, 52, 227, 55, 255, 260}, {58, 59, 228, 62, 258, 259}, {44, 45, 229, 48, 249, 262}, {37, 38, 230, 41, 252, 261}, {223, 227, 222, 236, 263, 264}, {224, 222, 227, 265, 263, 254}, {224, 228, 222, 239, 266, 265}, {222, 228, 226, 266, 257, 267}, {223, 222, 229, 264, 268, 248}, {222, 225, 229, 269, 242, 268}, {222, 230, 225, 270, 251, 269}, {222, 226, 230, 267, 245, 270}, {50, 223, 232, 237, 271, 272}, {57, 224, 231, 240, 273, 274}, {43, 225, 234, 243, 275, 276}, {36, 226, 233, 246, 277, 278}, {45, 232, 223, 279, 271, 247}, {38, 234, 225, 280, 275, 250}, {52, 231, 224, 281, 273, 253}, {59, 233, 226, 282, 277, 256}, {0, 233, 59, 283, 282, 63}, {1, 231, 52, 284, 281, 56}, {4, 234, 38, 285, 280, 42}, {5, 232, 45, 286, 279, 49}, {5, 50, 232, 53, 272, 286}, {1, 57, 231, 60, 274, 284}, {4, 43, 234, 46, 276, 285}, {0, 36, 233, 39, 278, 283}, {85, 288, 292, 300, 301, 302}, {22, 293, 288, 303, 304, 305}, {57, 290, 294, 306, 307, 308}, {64, 295, 289, 309, 310, 311}, {24, 289, 293, 312, 313, 314}, {87, 292, 290, 315, 316, 317}, {66, 291, 295, 318, 319, 320}, {59, 294, 291, 321, 322, 323}, {85, 292, 86, 302, 324, 89}, {22, 23, 293, 26, 325, 303}, {57, 294, 58, 308, 326, 61}, {64, 65, 295, 68, 327, 309}, {86, 292, 87, 324, 315, 90}, {23, 24, 293, 27, 314, 325}, {65, 66, 295, 69, 320, 327}, {58, 294, 59, 326, 321, 62}, {288, 293, 287, 304, 328, 329}, {288, 287, 292, 329, 330, 301}, {289, 287, 293, 331, 328, 313}, {290, 292, 287, 316, 330, 332}, {289, 295, 287, 310, 333, 331}, {290, 287, 294, 332, 334, 307}, {291, 294, 287, 322, 334, 335}, {291, 287, 295, 335, 333, 319}, {22, 288, 296, 305, 336, 337}, {85, 296, 288, 338, 336, 300}, {57, 298, 290, 339, 340, 306}, {64, 289, 297, 311, 341, 342}, {87, 290, 298, 317, 340, 343}, {24, 297, 289, 344, 341, 312}, {59, 291, 299, 323, 345, 346}, {66, 299, 291, 347, 345, 318}, {1, 87, 298, 91, 343, 348}, {2, 297, 24, 349, 344, 28}, {3, 296, 85, 350, 338, 88}, {3, 22, 296, 25, 337, 350}, {1, 298, 57, 348, 339, 60}, {2, 64, 297, 67, 342, 349}, {0, 59, 299, 63, 346, 351}, {0, 299, 66, 351, 347, 70}, {64, 353, 357, 365, 366, 367}, {29, 358, 353, 368, 369, 370}, {71, 359, 354, 371, 372, 373}, {36, 355, 360, 374, 375, 376}, {31, 354, 358, 377, 378, 379}, {66, 357, 355, 380, 381, 382}, {38, 360, 356, 383, 384, 385}, {73, 356, 359, 386, 387, 388}, {64, 357, 65, 367, 389, 68}, {71, 72, 359, 75, 390, 371}, {29, 30, 358, 33, 391, 368}, {36, 360, 37, 376, 392, 40}, {65, 357, 66, 389, 380, 69}, {30, 31, 358, 34, 379, 391}, {72, 73, 359, 76, 388, 390}, {37, 360, 38, 392, 383, 41}, {353, 352, 357, 393, 394, 366}, {353, 358, 352, 369, 395, 393}, {354, 352, 358, 396, 395, 378}, {355, 357, 352, 381, 394, 397}, {354, 359, 352, 372, 398, 396}, {355, 352, 360, 397, 399, 375}, {356, 352, 359, 400, 398, 387}, {356, 360, 352, 384, 399, 400}, {64, 361, 353, 401, 402, 365}, {29, 353, 361, 370, 402, 403}, {71, 354, 362, 373, 404, 405}, {36, 363, 355, 406, 407, 374}, {31, 362, 354, 408, 404, 377}, {66, 355, 363, 382, 407, 409}, {38, 356, 364, 385, 410, 411}, {73, 364, 356, 412, 410, 386}, {0, 66, 363, 70, 409, 413}, {2, 361, 64, 414, 401, 67}, {6, 362, 31, 415, 408, 35}, {6, 71, 362, 74, 405, 415}, {2, 29, 361, 32, 403, 414}, {4, 364, 73, 416, 412, 77}, {0, 363, 36, 413, 406, 39}, {4, 38, 364, 42, 411, 416}, {15, 418, 423, 430, 431, 432}, {78, 422, 418, 433, 434, 435}, {50, 424, 420, 436, 437, 438}, {85, 419, 425, 439, 440, 441}, {17, 423, 419, 442, 443, 444}, {80, 420, 422, 445, 446, 447}, {87, 425, 421, 448, 449, 450}, {52, 421, 424, 451, 452, 453}, {15, 423, 16, 432, 454, 19}, {78, 79, 422, 82, 455, 433}, {50, 51, 424, 54, 456, 436}, {85, 425, 86, 441, 457, 89}, {79, 80, 422, 83, 447, 455}, {16, 423, 17, 454, 442, 20}, {86, 425, 87, 457, 448, 90}, {51, 52, 424, 55, 453, 456}, {417, 418, 422, 458, 434, 459}, {417, 423, 418, 460, 431, 458}, {419, 423, 417, 443, 460, 461}, {420, 417, 422, 462, 459, 446}, {419, 417, 425, 461, 463, 440}, {420, 424, 417, 437, 464, 462}, {421, 417, 424, 465, 464, 452}, {421, 425, 417, 449, 463, 465}, {15, 426, 418, 466, 467, 430}, {78, 418, 426, 435, 467, 468}, {50, 420, 428, 438, 469, 470}, {85, 427, 419, 471, 472, 439}, {80, 428, 420, 473, 469, 445}, {17, 419, 427, 444, 472, 474}, {52, 429, 421, 475, 476, 451}, {87, 421, 429, 450, 476, 477}, {5, 428, 80, 478, 473, 84}, {3, 17, 427, 21, 474, 479}, {7, 78, 426, 81, 468, 480}, {7, 426, 15, 480, 466, 18}, {5, 50, 428, 53, 470, 478}, {3, 427, 85, 479, 471, 88}, {1, 429, 52, 481, 475, 56}, {1, 87, 429, 91, 477, 481}}
        ]
-        (not_ghost:tetrahedron_10) [
+        (not_ghost:_tetrahedron_10) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:tetrahedron_10
+        + id             : mesh:connectivities:_tetrahedron_10
         + size           : 341
         + nb_component   : 10
         + allocated size : 2000
         + memory size    : 78kB
         + values         : {{484, 483, 485, 489, 491, 493, 492, 496, 494, 495}, {87, 290, 490, 292, 317, 498, 497, 315, 316, 499}, {222, 484, 489, 486, 500, 496, 501, 504, 502, 503}, {96, 229, 45, 100, 505, 249, 125, 124, 506, 123}, {59, 0, 233, 299, 63, 283, 282, 346, 351, 507}, {0, 363, 233, 299, 413, 508, 283, 351, 509, 507}, {486, 295, 291, 357, 510, 319, 511, 514, 512, 513}, {484, 222, 489, 485, 500, 501, 496, 492, 515, 495}, {87, 429, 421, 490, 477, 476, 450, 497, 516, 517}, {103, 356, 234, 364, 518, 520, 519, 522, 410, 521}, {356, 103, 234, 225, 518, 519, 520, 524, 523, 275}, {43, 103, 225, 234, 146, 523, 243, 276, 519, 275}, {223, 227, 485, 420, 236, 526, 525, 529, 527, 528}, {483, 92, 484, 485, 530, 531, 491, 493, 532, 492}, {87, 421, 425, 490, 450, 449, 448, 497, 517, 533}, {298, 87, 290, 490, 343, 317, 340, 534, 497, 498}, {482, 483, 488, 489, 535, 537, 536, 539, 494, 538}, {94, 10, 158, 98, 119, 182, 540, 117, 118, 541}, {355, 363, 233, 36, 407, 508, 542, 374, 406, 278}, {485, 420, 424, 417, 528, 437, 543, 544, 462, 464}, {231, 224, 52, 490, 273, 253, 281, 547, 545, 546}, {483, 482, 485, 489, 535, 548, 493, 494, 539, 495}, {167, 15, 7, 426, 207, 18, 221, 549, 466, 480}, {483, 487, 488, 489, 550, 551, 537, 494, 552, 538}, {484, 92, 97, 95, 531, 134, 553, 554, 137, 121}, {29, 165, 30, 358, 179, 196, 33, 368, 555, 391}, {228, 294, 58, 59, 556, 326, 259, 258, 321, 62}, {102, 10, 7, 167, 148, 14, 155, 557, 214, 221}, {9, 10, 98, 164, 13, 118, 131, 197, 184, 558}, {78, 102, 7, 426, 145, 155, 81, 468, 559, 480}, {483, 484, 487, 489, 491, 560, 550, 494, 496, 552}, {16, 423, 162, 17, 454, 561, 195, 20, 442, 190}, {353, 161, 358, 487, 562, 563, 369, 566, 564, 565}, {93, 101, 8, 169, 142, 143, 108, 568, 567, 211}, {78, 422, 79, 99, 433, 455, 82, 112, 569, 130}, {485, 227, 489, 424, 526, 570, 495, 543, 571, 572}, {482, 92, 483, 485, 573, 530, 535, 548, 532, 493}, {223, 222, 229, 484, 264, 268, 248, 575, 500, 574}, {422, 420, 485, 417, 446, 528, 576, 459, 462, 544}, {64, 297, 353, 289, 342, 577, 365, 311, 341, 578}, {101, 6, 8, 169, 154, 11, 143, 567, 220, 211}, {425, 488, 489, 417, 579, 538, 580, 463, 581, 582}, {163, 161, 24, 293, 192, 191, 193, 584, 583, 314}, {228, 294, 59, 226, 556, 321, 258, 257, 585, 256}, {161, 289, 24, 293, 586, 312, 191, 583, 313, 314}, {165, 483, 160, 354, 587, 588, 186, 591, 589, 590}, {103, 356, 95, 225, 518, 592, 147, 523, 524, 593}, {356, 95, 359, 73, 592, 594, 387, 386, 122, 388}, {352, 483, 359, 484, 595, 596, 398, 598, 491, 597}, {103, 43, 4, 234, 146, 46, 153, 519, 276, 285}, {230, 356, 38, 225, 599, 385, 252, 251, 524, 250}, {161, 289, 293, 487, 586, 313, 583, 564, 600, 601}, {161, 487, 293, 163, 564, 601, 583, 192, 602, 584}, {429, 87, 298, 490, 477, 343, 603, 516, 497, 534}, {364, 38, 234, 4, 411, 280, 521, 416, 42, 285}, {22, 296, 3, 166, 337, 350, 25, 209, 604, 219}, {230, 37, 360, 36, 261, 392, 605, 244, 40, 376}, {356, 230, 360, 484, 599, 605, 384, 608, 606, 607}, {22, 23, 293, 163, 26, 325, 303, 173, 194, 584}, {294, 486, 291, 226, 609, 511, 322, 585, 610, 611}, {294, 228, 486, 226, 556, 612, 609, 585, 257, 610}, {3, 17, 166, 427, 21, 216, 219, 479, 474, 613}, {364, 103, 4, 234, 522, 153, 416, 521, 519, 285}, {158, 15, 418, 162, 172, 430, 614, 171, 170, 615}, {15, 423, 418, 162, 432, 431, 430, 170, 561, 615}, {157, 483, 160, 165, 616, 588, 204, 205, 587, 186}, {482, 158, 418, 162, 617, 614, 618, 619, 171, 615}, {423, 482, 418, 162, 620, 618, 431, 561, 619, 615}, {425, 488, 292, 489, 579, 622, 621, 580, 538, 623}, {290, 489, 490, 292, 624, 625, 498, 316, 623, 499}, {222, 223, 485, 484, 264, 525, 515, 500, 575, 492}, {363, 0, 66, 299, 413, 70, 409, 509, 351, 347}, {482, 422, 485, 417, 626, 576, 548, 627, 459, 544}, {486, 290, 287, 489, 628, 332, 629, 503, 624, 630}, {296, 3, 166, 427, 350, 219, 604, 631, 479, 613}, {489, 290, 287, 292, 624, 332, 630, 623, 316, 330}, {488, 85, 427, 419, 632, 471, 633, 634, 439, 472}, {425, 488, 419, 85, 579, 634, 440, 441, 632, 439}, {15, 16, 423, 162, 19, 454, 432, 170, 195, 561}, {65, 64, 357, 295, 68, 367, 389, 327, 309, 512}, {222, 484, 486, 226, 500, 502, 504, 267, 635, 610}, {356, 484, 95, 225, 608, 554, 592, 524, 636, 593}, {352, 484, 486, 487, 598, 502, 637, 639, 560, 638}, {230, 222, 484, 225, 270, 500, 606, 251, 269, 636}, {294, 228, 58, 57, 556, 259, 326, 308, 238, 61}, {352, 483, 484, 487, 595, 491, 598, 639, 550, 560}, {23, 163, 24, 293, 194, 193, 27, 325, 584, 314}, {429, 231, 1, 52, 640, 284, 481, 475, 281, 56}, {228, 222, 486, 226, 266, 504, 612, 257, 267, 610}, {482, 422, 417, 418, 626, 459, 627, 618, 434, 458}, {489, 425, 490, 292, 580, 533, 625, 623, 621, 499}, {483, 92, 97, 484, 530, 134, 641, 491, 531, 553}, {50, 232, 5, 428, 272, 286, 53, 470, 642, 478}, {483, 165, 358, 354, 587, 555, 643, 589, 591, 378}, {157, 483, 487, 488, 616, 550, 644, 645, 537, 551}, {425, 488, 417, 419, 579, 581, 463, 440, 634, 461}, {222, 230, 484, 226, 270, 606, 500, 267, 245, 635}, {299, 363, 233, 291, 509, 508, 507, 345, 646, 647}, {103, 356, 73, 95, 518, 386, 149, 147, 592, 122}, {229, 44, 45, 100, 262, 48, 249, 506, 132, 123}, {356, 230, 38, 360, 599, 252, 385, 384, 605, 383}, {104, 223, 45, 96, 648, 247, 151, 150, 649, 125}, {22, 159, 293, 288, 175, 650, 303, 305, 651, 304}, {352, 356, 360, 484, 400, 384, 399, 598, 608, 607}, {2, 361, 168, 29, 414, 652, 218, 32, 403, 213}, {484, 483, 359, 97, 491, 596, 597, 553, 641, 653}, {483, 157, 160, 164, 616, 204, 588, 654, 203, 177}, {92, 484, 100, 95, 531, 655, 139, 137, 554, 115}, {223, 420, 96, 104, 529, 656, 649, 648, 657, 150}, {85, 425, 292, 86, 441, 621, 302, 89, 457, 324}, {355, 352, 486, 357, 397, 637, 658, 381, 394, 514}, {353, 289, 487, 357, 578, 600, 566, 366, 659, 660}, {66, 295, 357, 291, 320, 512, 380, 318, 319, 513}, {488, 487, 287, 489, 551, 662, 661, 538, 552, 630}, {486, 294, 287, 290, 609, 334, 629, 628, 307, 332}, {227, 223, 485, 222, 236, 525, 526, 263, 264, 515}, {355, 486, 226, 291, 658, 610, 663, 664, 511, 611}, {43, 103, 95, 225, 146, 147, 114, 243, 523, 593}, {356, 230, 484, 225, 599, 606, 608, 524, 251, 636}, {64, 295, 289, 357, 309, 310, 311, 367, 512, 659}, {157, 482, 162, 158, 665, 619, 198, 199, 617, 171}, {223, 229, 45, 96, 248, 249, 247, 649, 505, 125}, {222, 229, 484, 225, 268, 574, 500, 269, 242, 636}, {422, 78, 418, 99, 433, 435, 434, 569, 112, 666}, {422, 80, 79, 99, 447, 83, 455, 569, 128, 130}, {159, 22, 293, 163, 175, 303, 650, 174, 173, 584}, {101, 362, 71, 6, 667, 405, 141, 154, 415, 74}, {93, 483, 354, 160, 668, 589, 669, 670, 588, 590}, {355, 486, 291, 357, 658, 511, 664, 381, 514, 513}, {362, 101, 169, 6, 667, 567, 671, 415, 154, 220}, {94, 482, 418, 99, 672, 618, 673, 113, 674, 666}, {488, 482, 489, 417, 536, 539, 538, 581, 627, 582}, {484, 356, 95, 359, 608, 592, 554, 597, 387, 594}, {363, 355, 233, 291, 407, 542, 508, 646, 664, 647}, {485, 92, 96, 99, 532, 140, 675, 676, 138, 127}, {78, 94, 418, 99, 111, 673, 435, 112, 113, 666}, {92, 483, 97, 93, 530, 641, 134, 133, 668, 105}, {484, 95, 97, 359, 554, 121, 553, 597, 594, 653}, {72, 71, 97, 359, 75, 106, 129, 390, 371, 653}, {94, 482, 99, 92, 672, 674, 113, 136, 573, 138}, {102, 167, 7, 426, 557, 221, 155, 559, 549, 480}, {10, 164, 158, 98, 184, 183, 182, 118, 558, 541}, {482, 422, 99, 485, 626, 569, 674, 548, 576, 676}, {15, 158, 426, 167, 172, 677, 466, 207, 206, 549}, {92, 482, 99, 485, 573, 674, 138, 532, 548, 676}, {158, 15, 426, 418, 172, 466, 677, 614, 430, 467}, {38, 356, 234, 225, 385, 520, 280, 250, 524, 275}, {94, 482, 158, 418, 672, 617, 540, 673, 618, 614}, {364, 356, 234, 38, 410, 520, 521, 411, 385, 280}, {93, 160, 8, 98, 670, 178, 108, 110, 678, 109}, {355, 233, 226, 36, 542, 277, 663, 374, 278, 246}, {160, 93, 8, 169, 670, 108, 178, 210, 568, 211}, {227, 223, 50, 420, 236, 237, 235, 527, 529, 438}, {363, 0, 233, 36, 413, 283, 508, 406, 39, 278}, {486, 295, 287, 291, 510, 333, 629, 511, 319, 335}, {59, 294, 291, 226, 321, 322, 323, 256, 585, 611}, {66, 363, 299, 291, 409, 509, 347, 318, 646, 345}, {486, 352, 487, 357, 637, 639, 638, 514, 394, 660}, {295, 486, 487, 357, 510, 638, 679, 512, 514, 660}, {296, 22, 288, 166, 337, 305, 336, 604, 209, 680}, {361, 64, 2, 297, 401, 67, 414, 681, 342, 349}, {95, 97, 359, 73, 121, 653, 594, 122, 120, 388}, {423, 482, 417, 418, 620, 627, 460, 431, 618, 458}, {65, 295, 357, 66, 327, 512, 389, 69, 320, 380}, {97, 72, 359, 73, 129, 390, 653, 120, 76, 388}, {420, 223, 96, 485, 529, 649, 656, 528, 525, 675}, {159, 488, 293, 288, 682, 683, 650, 651, 684, 304}, {31, 165, 160, 354, 187, 186, 185, 377, 591, 590}, {484, 486, 487, 489, 502, 638, 560, 496, 503, 552}, {486, 295, 487, 287, 510, 679, 638, 629, 333, 662}, {59, 233, 226, 291, 282, 277, 256, 323, 647, 611}, {233, 355, 226, 291, 542, 663, 277, 647, 664, 611}, {425, 421, 489, 490, 449, 685, 580, 533, 517, 625}, {288, 488, 292, 85, 684, 622, 301, 300, 632, 302}, {421, 425, 489, 417, 449, 580, 685, 465, 463, 582}, {294, 228, 57, 290, 556, 238, 308, 307, 686, 306}, {165, 31, 358, 354, 187, 379, 555, 591, 377, 378}, {103, 356, 364, 73, 518, 410, 522, 149, 386, 412}, {352, 483, 358, 354, 595, 643, 395, 396, 589, 378}, {22, 159, 288, 166, 175, 651, 305, 209, 208, 680}, {356, 352, 359, 484, 400, 398, 387, 608, 598, 597}, {64, 361, 353, 297, 401, 402, 365, 342, 681, 577}, {355, 66, 357, 291, 382, 380, 381, 664, 318, 513}, {487, 486, 287, 489, 638, 629, 662, 552, 503, 630}, {298, 57, 490, 290, 339, 687, 534, 340, 306, 498}, {31, 362, 169, 6, 408, 671, 215, 35, 415, 220}, {488, 425, 292, 85, 579, 621, 622, 632, 441, 302}, {483, 352, 359, 354, 595, 398, 596, 589, 396, 372}, {94, 78, 418, 426, 111, 435, 673, 688, 468, 467}, {229, 43, 44, 100, 241, 47, 262, 506, 116, 132}, {31, 165, 358, 30, 187, 555, 379, 34, 196, 391}, {429, 231, 52, 490, 640, 281, 475, 516, 547, 546}, {94, 102, 78, 426, 144, 145, 111, 688, 559, 468}, {421, 429, 52, 490, 476, 475, 451, 517, 516, 546}, {364, 103, 73, 4, 522, 149, 412, 416, 153, 77}, {420, 227, 424, 50, 527, 571, 437, 438, 235, 436}, {104, 80, 5, 428, 152, 84, 156, 689, 473, 478}, {227, 51, 52, 424, 260, 55, 255, 571, 456, 453}, {487, 289, 293, 287, 600, 313, 601, 662, 331, 328}, {166, 159, 288, 488, 208, 651, 680, 690, 682, 684}, {289, 161, 353, 487, 586, 562, 578, 600, 564, 566}, {482, 485, 489, 417, 548, 495, 539, 627, 544, 582}, {50, 227, 424, 51, 235, 571, 436, 54, 260, 456}, {488, 489, 287, 292, 538, 630, 661, 622, 623, 330}, {482, 483, 157, 488, 535, 616, 665, 536, 537, 645}, {80, 420, 104, 96, 445, 657, 152, 126, 656, 150}, {232, 104, 45, 5, 691, 151, 279, 286, 156, 49}, {288, 488, 287, 292, 684, 661, 329, 301, 622, 330}, {295, 289, 487, 287, 310, 600, 679, 333, 331, 662}, {157, 161, 163, 487, 202, 192, 201, 644, 564, 602}, {483, 482, 164, 98, 535, 692, 654, 694, 693, 558}, {3, 296, 85, 427, 350, 338, 88, 479, 631, 471}, {92, 483, 93, 98, 530, 668, 133, 135, 694, 110}, {95, 484, 100, 225, 554, 655, 115, 593, 636, 695}, {231, 224, 490, 57, 273, 545, 547, 274, 240, 687}, {64, 289, 353, 357, 311, 578, 365, 367, 659, 366}, {2, 297, 24, 168, 349, 344, 28, 218, 696, 217}, {361, 297, 168, 353, 681, 696, 652, 402, 577, 697}, {353, 161, 168, 29, 562, 212, 697, 370, 181, 213}, {289, 295, 487, 357, 310, 679, 600, 659, 512, 660}, {352, 353, 487, 357, 393, 566, 639, 394, 366, 660}, {361, 353, 168, 29, 402, 697, 652, 403, 370, 213}, {484, 229, 100, 225, 574, 506, 655, 636, 242, 695}, {104, 223, 232, 45, 648, 271, 691, 151, 247, 279}, {160, 164, 8, 98, 177, 176, 178, 678, 558, 109}, {164, 9, 8, 98, 197, 12, 176, 558, 131, 109}, {165, 161, 358, 29, 180, 563, 555, 179, 181, 368}, {297, 361, 168, 2, 681, 652, 696, 349, 414, 218}, {161, 353, 358, 29, 562, 369, 563, 181, 370, 368}, {230, 37, 38, 360, 261, 41, 252, 605, 392, 383}, {43, 95, 100, 225, 114, 115, 116, 243, 593, 695}, {420, 80, 104, 428, 445, 152, 657, 469, 473, 689}, {232, 104, 5, 428, 691, 156, 286, 642, 689, 478}, {59, 299, 233, 291, 346, 507, 282, 323, 345, 647}, {355, 363, 66, 291, 407, 409, 382, 664, 646, 318}, {158, 94, 418, 426, 540, 673, 614, 677, 688, 467}, {87, 429, 298, 1, 477, 603, 343, 91, 481, 348}, {420, 227, 485, 424, 527, 526, 528, 437, 571, 543}, {482, 422, 418, 99, 626, 434, 618, 674, 569, 666}, {229, 43, 100, 225, 241, 116, 506, 242, 243, 695}, {294, 486, 287, 291, 609, 629, 334, 322, 511, 335}, {17, 166, 419, 159, 216, 698, 444, 188, 208, 699}, {419, 166, 17, 427, 698, 216, 444, 472, 613, 474}, {166, 488, 419, 159, 690, 634, 698, 208, 682, 699}, {419, 488, 166, 427, 634, 690, 698, 472, 633, 613}, {160, 98, 483, 164, 678, 694, 588, 177, 558, 654}, {483, 98, 160, 93, 694, 678, 588, 668, 110, 670}, {226, 360, 486, 355, 700, 701, 610, 663, 375, 658}, {360, 36, 226, 230, 376, 246, 700, 605, 244, 245}, {226, 36, 360, 355, 246, 376, 700, 663, 374, 375}, {93, 169, 362, 101, 568, 671, 702, 142, 567, 667}, {93, 362, 71, 101, 702, 405, 107, 142, 667, 141}, {71, 362, 93, 354, 405, 702, 107, 373, 404, 669}, {489, 424, 417, 485, 572, 464, 582, 495, 543, 544}, {417, 424, 489, 421, 464, 572, 582, 465, 452, 685}, {102, 10, 158, 94, 148, 182, 703, 144, 119, 540}, {158, 10, 102, 167, 182, 148, 703, 206, 214, 557}, {102, 158, 426, 94, 703, 677, 559, 144, 540, 688}, {426, 158, 102, 167, 677, 703, 559, 549, 206, 557}, {421, 489, 227, 424, 685, 570, 704, 452, 572, 571}, {52, 421, 227, 424, 451, 704, 255, 453, 452, 571}, {489, 227, 222, 224, 570, 263, 501, 705, 254, 265}, {489, 222, 227, 485, 501, 263, 570, 495, 515, 526}, {87, 425, 292, 490, 448, 621, 315, 497, 533, 499}, {292, 425, 87, 86, 621, 448, 315, 324, 457, 90}, {104, 420, 232, 223, 657, 706, 691, 648, 529, 271}, {104, 232, 420, 428, 691, 706, 657, 689, 642, 469}, {232, 420, 50, 223, 706, 438, 272, 271, 529, 237}, {232, 50, 420, 428, 272, 438, 706, 642, 470, 469}, {226, 484, 360, 230, 635, 607, 700, 245, 606, 605}, {226, 360, 484, 486, 700, 607, 635, 610, 701, 502}, {486, 360, 352, 355, 701, 399, 637, 658, 375, 397}, {352, 360, 486, 484, 399, 701, 637, 598, 607, 502}, {162, 488, 157, 159, 707, 645, 198, 189, 682, 200}, {157, 488, 162, 482, 645, 707, 198, 665, 536, 619}, {490, 57, 429, 231, 687, 708, 516, 547, 274, 640}, {429, 57, 490, 298, 708, 687, 516, 603, 339, 534}, {57, 1, 429, 231, 60, 481, 708, 274, 284, 640}, {429, 1, 57, 298, 481, 60, 708, 603, 348, 339}, {158, 98, 482, 94, 541, 693, 617, 540, 117, 672}, {482, 98, 158, 164, 693, 541, 617, 692, 558, 183}, {353, 297, 161, 289, 577, 709, 562, 578, 341, 586}, {353, 161, 297, 168, 562, 709, 577, 697, 212, 696}, {161, 297, 24, 289, 709, 344, 191, 586, 341, 312}, {161, 24, 297, 168, 191, 344, 709, 212, 217, 696}, {159, 293, 487, 163, 650, 601, 710, 174, 584, 602}, {487, 293, 159, 488, 601, 650, 710, 551, 683, 682}, {159, 487, 157, 163, 710, 644, 200, 174, 602, 201}, {157, 487, 159, 488, 644, 710, 200, 645, 551, 682}, {290, 228, 486, 294, 686, 612, 628, 307, 556, 609}, {290, 486, 228, 489, 628, 612, 686, 624, 503, 711}, {485, 99, 420, 422, 676, 712, 528, 576, 569, 446}, {420, 99, 485, 96, 712, 676, 528, 656, 127, 675}, {99, 80, 420, 422, 128, 445, 712, 569, 447, 446}, {420, 80, 99, 96, 445, 128, 712, 656, 126, 127}, {96, 484, 229, 100, 713, 574, 505, 124, 655, 506}, {92, 96, 484, 485, 140, 713, 531, 532, 675, 492}, {92, 484, 96, 100, 531, 713, 140, 139, 655, 124}, {161, 358, 483, 165, 563, 643, 714, 180, 555, 587}, {483, 358, 161, 487, 643, 563, 714, 550, 565, 564}, {161, 483, 157, 165, 714, 616, 202, 180, 587, 205}, {157, 483, 161, 487, 616, 714, 202, 644, 550, 564}, {362, 31, 160, 354, 408, 185, 715, 404, 377, 590}, {160, 31, 362, 169, 185, 408, 715, 210, 215, 671}, {362, 160, 93, 354, 715, 670, 702, 404, 590, 669}, {93, 160, 362, 169, 670, 715, 702, 568, 210, 671}, {482, 164, 157, 483, 692, 203, 665, 535, 654, 616}, {157, 164, 482, 158, 203, 692, 665, 199, 183, 617}, {228, 489, 222, 224, 711, 501, 266, 239, 705, 265}, {222, 489, 228, 486, 501, 711, 266, 504, 503, 612}, {288, 166, 427, 296, 680, 613, 716, 336, 604, 631}, {288, 427, 166, 488, 716, 613, 680, 684, 633, 690}, {85, 288, 427, 296, 300, 716, 471, 338, 336, 631}, {85, 427, 288, 488, 471, 716, 300, 632, 633, 684}, {484, 223, 96, 229, 575, 649, 713, 574, 248, 505}, {484, 96, 223, 485, 713, 649, 575, 492, 675, 525}, {488, 293, 287, 487, 683, 328, 661, 551, 601, 662}, {287, 293, 488, 288, 328, 683, 661, 329, 304, 684}, {419, 488, 162, 159, 634, 707, 717, 699, 682, 189}, {162, 419, 17, 423, 717, 444, 190, 561, 443, 442}, {17, 419, 162, 159, 444, 717, 190, 188, 699, 189}, {482, 98, 92, 94, 693, 135, 573, 672, 117, 136}, {92, 98, 482, 483, 135, 693, 573, 530, 694, 535}, {358, 487, 352, 353, 565, 639, 395, 369, 566, 393}, {352, 487, 358, 483, 639, 565, 395, 595, 550, 643}, {359, 483, 93, 97, 596, 668, 718, 653, 641, 105}, {359, 93, 483, 354, 718, 668, 596, 372, 669, 589}, {71, 359, 93, 97, 371, 718, 107, 106, 653, 105}, {71, 93, 359, 354, 107, 718, 371, 373, 669, 372}, {52, 490, 227, 421, 546, 719, 255, 451, 517, 704}, {227, 490, 52, 224, 719, 546, 255, 254, 545, 253}, {490, 489, 227, 421, 625, 570, 719, 517, 685, 704}, {227, 489, 490, 224, 570, 625, 719, 254, 705, 545}, {57, 490, 228, 224, 687, 720, 238, 240, 545, 239}, {228, 490, 57, 290, 720, 687, 238, 686, 498, 306}, {490, 489, 228, 224, 625, 711, 720, 545, 705, 239}, {228, 489, 490, 290, 711, 625, 720, 686, 624, 498}, {162, 419, 482, 488, 717, 721, 619, 707, 634, 536}, {482, 419, 162, 423, 721, 717, 619, 620, 443, 561}, {419, 417, 482, 488, 461, 627, 721, 634, 581, 536}, {482, 417, 419, 423, 627, 461, 721, 620, 460, 443}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 722
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {0.125, 1, 1}, {0.375, 1, 1}, {0.625, 1, 1}, {0.875, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {1, 1, 0.875}, {1, 1, 0.625}, {1, 1, 0.375}, {1, 1, 0.125}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0.875, 1, 0}, {0.625, 1, 0}, {0.375, 1, 0}, {0.125, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 1, 0.125}, {0, 1, 0.375}, {0, 1, 0.625}, {0, 1, 0.875}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0, 0, 0.125}, {0, 0, 0.375}, {0, 0, 0.625}, {0, 0, 0.875}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {0.125, 0, 1}, {0.375, 0, 1}, {0.625, 0, 1}, {0.875, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {1, 0, 0.875}, {1, 0, 0.625}, {1, 0, 0.375}, {1, 0, 0.125}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0.875, 0, 0}, {0.625, 0, 0}, {0.375, 0, 0}, {0.125, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.875, 0}, {0, 0.625, 0}, {0, 0.375, 0}, {0, 0.125, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {0, 0.875, 1}, {0, 0.625, 1}, {0, 0.375, 1}, {0, 0.125, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.875, 1}, {1, 0.625, 1}, {1, 0.375, 1}, {1, 0.125, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {1, 0.875, 0}, {1, 0.625, 0}, {1, 0.375, 0}, {1, 0.125, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.234692, 0.610874, 1}, {0.095431, 0.625135, 1}, {0.139261, 0.735739, 1}, {0.264261, 0.860739, 1}, {0.375, 0.904691, 1}, {0.389261, 0.76543, 1}, {0.860739, 0.735739, 1}, {0.904569, 0.625135, 1}, {0.765308, 0.610874, 1}, {0.264261, 0.139383, 1}, {0.389261, 0.234962, 1}, {0.375, 0.0955798, 1}, {0.610739, 0.76543, 1}, {0.625, 0.904691, 1}, {0.735739, 0.860739, 1}, {0.095431, 0.375135, 1}, {0.234692, 0.389518, 1}, {0.139261, 0.264383, 1}, {0.625, 0.0955798, 1}, {0.610739, 0.234962, 1}, {0.735739, 0.139383, 1}, {0.860739, 0.264383, 1}, {0.765308, 0.389518, 1}, {0.904569, 0.375135, 1}, {0.095431, 0.500135, 1}, {0.904569, 0.500135, 1}, {0.5, 0.904691, 1}, {0.5, 0.0955798, 1}, {0.389261, 0.611834, 1}, {0.345431, 0.501231, 1}, {0.5, 0.655786, 1}, {0.610739, 0.611834, 1}, {0.389261, 0.390478, 1}, {0.654569, 0.501231, 1}, {0.5, 0.346675, 1}, {0.610739, 0.390478, 1}, {0.0709532, 0.804047, 1}, {0.210214, 0.789786, 1}, {0.195953, 0.929047, 1}, {0.789786, 0.789786, 1}, {0.929047, 0.804047, 1}, {0.195953, 0.0709735, 1}, {0.210214, 0.210356, 1}, {0.804047, 0.929047, 1}, {0.0709532, 0.195973, 1}, {0.789786, 0.210356, 1}, {0.804047, 0.0709735, 1}, {0.929047, 0.195973, 1}, {0.0709532, 0.0709735, 1}, {0.0709532, 0.929047, 1}, {0.929047, 0.929047, 1}, {0.929047, 0.0709735, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.904569, 1, 0.625}, {0.765308, 1, 0.610739}, {0.860739, 1, 0.735739}, {0.625, 1, 0.095431}, {0.610739, 1, 0.234692}, {0.735739, 1, 0.139261}, {0.375, 1, 0.904569}, {0.389261, 1, 0.765308}, {0.264261, 1, 0.860739}, {0.095431, 1, 0.375}, {0.234692, 1, 0.389261}, {0.139261, 1, 0.264261}, {0.735739, 1, 0.860739}, {0.610739, 1, 0.765308}, {0.625, 1, 0.904569}, {0.139261, 1, 0.735739}, {0.234692, 1, 0.610739}, {0.095431, 1, 0.625}, {0.860739, 1, 0.264261}, {0.765308, 1, 0.389261}, {0.904569, 1, 0.375}, {0.264261, 1, 0.139261}, {0.389261, 1, 0.234692}, {0.375, 1, 0.095431}, {0.5, 1, 0.095431}, {0.904569, 1, 0.5}, {0.095431, 1, 0.5}, {0.5, 1, 0.904569}, {0.654569, 1, 0.5}, {0.610739, 1, 0.610739}, {0.610739, 1, 0.389261}, {0.5, 1, 0.345431}, {0.389261, 1, 0.389261}, {0.5, 1, 0.654569}, {0.389261, 1, 0.610739}, {0.345431, 1, 0.5}, {0.789786, 1, 0.789786}, {0.929047, 1, 0.804047}, {0.789786, 1, 0.210214}, {0.804047, 1, 0.0709532}, {0.210214, 1, 0.789786}, {0.195953, 1, 0.929047}, {0.210214, 1, 0.210214}, {0.0709532, 1, 0.195953}, {0.804047, 1, 0.929047}, {0.0709532, 1, 0.804047}, {0.929047, 1, 0.195953}, {0.195953, 1, 0.0709532}, {0.0709532, 1, 0.0709532}, {0.929047, 1, 0.0709532}, {0.0709532, 1, 0.929047}, {0.929047, 1, 0.929047}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.904691, 0, 0.625}, {0.76543, 0, 0.610739}, {0.860739, 0, 0.735739}, {0.625135, 0, 0.095431}, {0.610874, 0, 0.234692}, {0.735739, 0, 0.139261}, {0.375135, 0, 0.904569}, {0.389518, 0, 0.765308}, {0.264383, 0, 0.860739}, {0.0955798, 0, 0.375}, {0.234962, 0, 0.389261}, {0.139383, 0, 0.264261}, {0.735739, 0, 0.860739}, {0.610874, 0, 0.765308}, {0.625135, 0, 0.904569}, {0.139383, 0, 0.735739}, {0.234962, 0, 0.610739}, {0.0955798, 0, 0.625}, {0.860739, 0, 0.264261}, {0.76543, 0, 0.389261}, {0.904691, 0, 0.375}, {0.264383, 0, 0.139261}, {0.389518, 0, 0.234692}, {0.375135, 0, 0.095431}, {0.500135, 0, 0.095431}, {0.904691, 0, 0.5}, {0.0955798, 0, 0.5}, {0.500135, 0, 0.904569}, {0.655786, 0, 0.5}, {0.611834, 0, 0.610739}, {0.611834, 0, 0.389261}, {0.501231, 0, 0.345431}, {0.390478, 0, 0.389261}, {0.501231, 0, 0.654569}, {0.390478, 0, 0.610739}, {0.346675, 0, 0.5}, {0.789786, 0, 0.789786}, {0.929047, 0, 0.804047}, {0.789786, 0, 0.210214}, {0.804047, 0, 0.0709532}, {0.210356, 0, 0.789786}, {0.195973, 0, 0.929047}, {0.210356, 0, 0.210214}, {0.0709735, 0, 0.195953}, {0.804047, 0, 0.929047}, {0.0709735, 0, 0.804047}, {0.929047, 0, 0.195953}, {0.195973, 0, 0.0709532}, {0.0709735, 0, 0.0709532}, {0.929047, 0, 0.0709532}, {0.0709735, 0, 0.929047}, {0.929047, 0, 0.929047}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0.860739, 0.735739, 0}, {0.765308, 0.610739, 0}, {0.904569, 0.625, 0}, {0.625, 0.904569, 0}, {0.610739, 0.765308, 0}, {0.735739, 0.860739, 0}, {0.735739, 0.139261, 0}, {0.610739, 0.234692, 0}, {0.625, 0.095431, 0}, {0.095431, 0.625, 0}, {0.234692, 0.610739, 0}, {0.139261, 0.735739, 0}, {0.264261, 0.860739, 0}, {0.389261, 0.765308, 0}, {0.375, 0.904569, 0}, {0.904569, 0.375, 0}, {0.765308, 0.389261, 0}, {0.860739, 0.264261, 0}, {0.139261, 0.264261, 0}, {0.234692, 0.389261, 0}, {0.095431, 0.375, 0}, {0.375, 0.095431, 0}, {0.389261, 0.234692, 0}, {0.264261, 0.139261, 0}, {0.904569, 0.5, 0}, {0.5, 0.904569, 0}, {0.5, 0.095431, 0}, {0.095431, 0.5, 0}, {0.5, 0.654569, 0}, {0.610739, 0.610739, 0}, {0.654569, 0.5, 0}, {0.389261, 0.610739, 0}, {0.610739, 0.389261, 0}, {0.345431, 0.5, 0}, {0.5, 0.345431, 0}, {0.389261, 0.389261, 0}, {0.789786, 0.789786, 0}, {0.804047, 0.929047, 0}, {0.929047, 0.804047, 0}, {0.804047, 0.0709532, 0}, {0.789786, 0.210214, 0}, {0.210214, 0.789786, 0}, {0.0709532, 0.804047, 0}, {0.929047, 0.195953, 0}, {0.195953, 0.929047, 0}, {0.210214, 0.210214, 0}, {0.195953, 0.0709532, 0}, {0.0709532, 0.195953, 0}, {0.929047, 0.0709532, 0}, {0.0709532, 0.929047, 0}, {0.929047, 0.929047, 0}, {0.0709532, 0.0709532, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {0, 0.735739, 0.139261}, {0, 0.610739, 0.234692}, {0, 0.625, 0.095431}, {0, 0.904569, 0.375}, {0, 0.765308, 0.389261}, {0, 0.860739, 0.264261}, {0, 0.625, 0.904569}, {0, 0.610739, 0.765308}, {0, 0.735739, 0.860739}, {0, 0.139261, 0.264261}, {0, 0.234692, 0.389261}, {0, 0.095431, 0.375}, {0, 0.860739, 0.735739}, {0, 0.765308, 0.610739}, {0, 0.904569, 0.625}, {0, 0.375, 0.095431}, {0, 0.389261, 0.234692}, {0, 0.264261, 0.139261}, {0, 0.095431, 0.625}, {0, 0.234692, 0.610739}, {0, 0.139261, 0.735739}, {0, 0.264261, 0.860739}, {0, 0.389261, 0.765308}, {0, 0.375, 0.904569}, {0, 0.5, 0.095431}, {0, 0.5, 0.904569}, {0, 0.904569, 0.5}, {0, 0.095431, 0.5}, {0, 0.610739, 0.389261}, {0, 0.5, 0.345431}, {0, 0.654569, 0.5}, {0, 0.610739, 0.610739}, {0, 0.389261, 0.389261}, {0, 0.5, 0.654569}, {0, 0.345431, 0.5}, {0, 0.389261, 0.610739}, {0, 0.804047, 0.0709532}, {0, 0.789786, 0.210214}, {0, 0.929047, 0.195953}, {0, 0.789786, 0.789786}, {0, 0.804047, 0.929047}, {0, 0.0709532, 0.195953}, {0, 0.210214, 0.210214}, {0, 0.929047, 0.804047}, {0, 0.195953, 0.0709532}, {0, 0.210214, 0.789786}, {0, 0.0709532, 0.804047}, {0, 0.195953, 0.929047}, {0, 0.0709532, 0.0709532}, {0, 0.929047, 0.0709532}, {0, 0.929047, 0.929047}, {0, 0.0709532, 0.929047}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {1, 0.860678, 0.735678}, {1, 0.76518, 0.610611}, {1, 0.904501, 0.624932}, {1, 0.624932, 0.904501}, {1, 0.610611, 0.76518}, {1, 0.735678, 0.860678}, {1, 0.0953701, 0.624939}, {1, 0.234631, 0.610678}, {1, 0.139261, 0.735739}, {1, 0.735739, 0.139261}, {1, 0.610678, 0.234631}, {1, 0.624939, 0.0953701}, {1, 0.904501, 0.374932}, {1, 0.76524, 0.389193}, {1, 0.860739, 0.264261}, {1, 0.264261, 0.860739}, {1, 0.389193, 0.76524}, {1, 0.374932, 0.904501}, {1, 0.374939, 0.0953701}, {1, 0.3892, 0.234631}, {1, 0.264261, 0.139261}, {1, 0.139261, 0.264261}, {1, 0.234631, 0.3892}, {1, 0.0953701, 0.374939}, {1, 0.904501, 0.499932}, {1, 0.499932, 0.904501}, {1, 0.0953701, 0.499939}, {1, 0.499939, 0.0953701}, {1, 0.610131, 0.610131}, {1, 0.499385, 0.653954}, {1, 0.653954, 0.499385}, {1, 0.610191, 0.388713}, {1, 0.388713, 0.610191}, {1, 0.499391, 0.344822}, {1, 0.344822, 0.499391}, {1, 0.388713, 0.388713}, {1, 0.929037, 0.804037}, {1, 0.789715, 0.789715}, {1, 0.804037, 0.929037}, {1, 0.210214, 0.789786}, {1, 0.0709532, 0.804047}, {1, 0.804047, 0.0709532}, {1, 0.789786, 0.210214}, {1, 0.195953, 0.929047}, {1, 0.929047, 0.195953}, {1, 0.0709532, 0.195953}, {1, 0.210214, 0.210214}, {1, 0.195953, 0.0709532}, {1, 0.0709532, 0.929047}, {1, 0.929047, 0.0709532}, {1, 0.929037, 0.929037}, {1, 0.0709532, 0.0709532}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}, {0.403787, 0.502163, 0.604301}, {0.59395, 0.335588, 0.588613}, {0.57425, 0.502163, 0.604301}, {0.533055, 0.519268, 0.479373}, {0.723218, 0.352693, 0.463685}, {0.552756, 0.352693, 0.463685}, {0.907719, 0.227933, 0.0932632}, {0.768458, 0.242194, 0.0932632}, {0.812288, 0.352933, 0.0932632}, {0.462839, 0.167794, 0.544306}, {0.592107, 0.184899, 0.419378}, {0.423487, 0.335588, 0.41815}, {0.552756, 0.352693, 0.293222}, {0.462839, 0.167794, 0.373844}, {0.610874, 0.139383, 0.904569}, {0.500135, 0.0955798, 0.904569}, {0.141927, 0.0709532, 0.0709532}, {0.0709735, 0.0709532, 0.141906}, {0.0709532, 0.141906, 0.0709532}, {0.307175, 0.417794, 0.123844}, {0.351005, 0.307055, 0.123844}, {0.095431, 0.5, 0.095431}, {0.139261, 0.389261, 0.095431}, {0.211744, 0.417794, 0.219275}, {0.633302, 0.167794, 0.544306}, {0.907719, 0.173886, 0.164216}, {0.907719, 0.242194, 0.232524}, {0.0709532, 0.210234, 0.860739}, {0.141927, 0.0709735, 0.929047}, {0.0709735, 0.139261, 0.789786}, {0.0709735, 0.0709532, 0.858094}, {0.0709532, 0.141927, 0.929047}, {0.210336, 0.0709735, 0.860739}, {0.139383, 0.139261, 0.721478}, {0.742945, 0.167794, 0.655045}, {0.786897, 0.167794, 0.544306}, {0.904691, 0.139261, 0.610739}, {0.882206, 0.307055, 0.655045}, {0.860739, 0.139261, 0.721478}, {0.442043, 0.585464, 0.809994}, {0.461744, 0.418889, 0.794306}, {0.632206, 0.418889, 0.794306}, {0.907719, 0.352872, 0.188633}, {0.836765, 0.173886, 0.0932632}, {0.549357, 0.674254, 0.636624}, {0.73952, 0.678141, 0.450474}, {0.57425, 0.672625, 0.433838}, {0.723218, 0.523156, 0.293222}, {0.698326, 0.524784, 0.496008}, {0.721478, 0.860739, 0.860739}, {0.610739, 0.904691, 0.860739}, {0.0709735, 0.139261, 0.210214}, {0.882206, 0.263164, 0.544245}, {0.882206, 0.417246, 0.543759}, {0.768458, 0.102933, 0.232524}, {0.907719, 0.102933, 0.218263}, {0.836765, 0.102933, 0.164216}, {0.73952, 0.507679, 0.620936}, {0.929047, 0.929037, 0.858083}, {0.403787, 0.672625, 0.433838}, {0.59395, 0.676512, 0.247688}, {0.552756, 0.523156, 0.293222}, {0.307175, 0.417929, 0.794306}, {0.351005, 0.307176, 0.794306}, {0.095431, 0.904569, 0.5}, {0.500135, 0.095431, 0.095431}, {0.858094, 0.929047, 0.929047}, {0.5, 0.904691, 0.904569}, {0.929047, 0.858083, 0.929037}, {0.423487, 0.50605, 0.41815}, {0.904569, 0.904501, 0.499932}, {0.139261, 0.860739, 0.278522}, {0.139261, 0.904569, 0.389261}, {0.351005, 0.838256, 0.263105}, {0.211744, 0.742825, 0.373844}, {0.211744, 0.698995, 0.263105}, {0.141906, 0.929047, 0.929047}, {0.210214, 0.860739, 0.929047}, {0.904569, 0.500068, 0.904501}, {0.745703, 0.184899, 0.419378}, {0.904691, 0.0953701, 0.499939}, {0.841012, 0.280269, 0.419318}, {0.607314, 0.59098, 0.82663}, {0.461879, 0.167794, 0.698875}, {0.572483, 0.167794, 0.655045}, {0.882206, 0.417726, 0.698808}, {0.0709532, 0.789786, 0.139261}, {0.139261, 0.721478, 0.139261}, {0.882206, 0.588195, 0.219214}, {0.841012, 0.434839, 0.264749}, {0.882206, 0.587709, 0.373296}, {0.841012, 0.434352, 0.418831}, {0.389261, 0.904569, 0.139261}, {0.5, 0.904569, 0.095431}, {0.389383, 0.095431, 0.139261}, {0.278522, 0.860739, 0.139261}, {0.287474, 0.834369, 0.559994}, {0.331304, 0.834369, 0.670734}, {0.192043, 0.695108, 0.670734}, {0.139261, 0.860739, 0.721478}, {0.095431, 0.860739, 0.610739}, {0.139261, 0.278644, 0.860739}, {0.278644, 0.139383, 0.860739}, {0.139261, 0.389383, 0.904569}, {0.192043, 0.584369, 0.559994}, {0.192043, 0.584369, 0.714563}, {0.211744, 0.417794, 0.698875}, {0.211744, 0.417794, 0.544306}, {0.0955798, 0.139261, 0.610739}, {0.351005, 0.698995, 0.123844}, {0.461744, 0.742825, 0.123844}, {0.461744, 0.838256, 0.219275}, {0.929047, 0.141906, 0.0709532}, {0.858094, 0.929047, 0.0709532}, {0.0955798, 0.095431, 0.5}, {0.307323, 0.167794, 0.544306}, {0.211744, 0.263225, 0.544306}, {0.211744, 0.307055, 0.655045}, {0.461744, 0.263225, 0.123844}, {0.351126, 0.167794, 0.263105}, {0.278644, 0.139261, 0.139261}, {0.461879, 0.167794, 0.219275}, {0.929047, 0.929047, 0.141906}, {0.860739, 0.860678, 0.721417}, {0.904569, 0.860678, 0.610678}, {0.442043, 0.834369, 0.559994}, {0.718053, 0.839885, 0.687369}, {0.857314, 0.700563, 0.687308}, {0.761883, 0.839885, 0.57663}, {0.857314, 0.744386, 0.576562}, {0.904569, 0.499939, 0.0953701}, {0.786775, 0.588256, 0.123844}, {0.745581, 0.434899, 0.169378}, {0.701751, 0.32416, 0.169378}, {0.748731, 0.287832, 0.262642}, {0.857314, 0.589817, 0.731131}, {0.857314, 0.589337, 0.576082}, {0.572483, 0.307055, 0.123844}, {0.461744, 0.417794, 0.123844}, {0.591012, 0.434899, 0.169378}, {0.929047, 0.858094, 0.0709532}, {0.882206, 0.713256, 0.123844}, {0.882206, 0.767303, 0.194797}, {0.882206, 0.698995, 0.263105}, {0.351126, 0.167794, 0.433567}, {0.351126, 0.167794, 0.655045}, {0.211744, 0.417794, 0.373844}, {0.423487, 0.50605, 0.247688}, {0.211744, 0.588256, 0.373844}, {0.929047, 0.0709532, 0.141906}, {0.287474, 0.584504, 0.809994}, {0.929047, 0.0709532, 0.858094}, {0.192043, 0.738938, 0.559994}, {0.461744, 0.838256, 0.373844}, {0.632206, 0.838256, 0.373844}, {0.139261, 0.210214, 0.0709532}, {0.210234, 0.139261, 0.0709532}, {0.789786, 0.0709735, 0.860739}, {0.721478, 0.139383, 0.860739}, {0.610739, 0.904569, 0.139261}, {0.721478, 0.860739, 0.139261}, {0.0709532, 0.929047, 0.141906}, {0.095431, 0.500135, 0.904569}, {0.442043, 0.834369, 0.714563}, {0.461744, 0.263374, 0.794306}, {0.860739, 0.278644, 0.860739}, {0.929047, 0.210234, 0.860739}, {0.211744, 0.307055, 0.263105}, {0.139261, 0.610739, 0.095431}, {0.211744, 0.588256, 0.219275}, {0.632206, 0.588256, 0.123844}, {0.461744, 0.588256, 0.123844}, {0.139383, 0.139261, 0.278522}, {0.139261, 0.278522, 0.139261}, {0.607314, 0.839885, 0.57663}, {0.904569, 0.610813, 0.860678}, {0.0709532, 0.858094, 0.929047}, {0.331304, 0.695108, 0.809994}, {0.139261, 0.721478, 0.860739}, {0.278522, 0.860739, 0.860739}, {0.0709532, 0.929047, 0.858094}, {0.718053, 0.700624, 0.82663}, {0.860739, 0.721417, 0.860678}, {0.761883, 0.59002, 0.82663}, {0.742945, 0.307176, 0.794306}, {0.786775, 0.417929, 0.794306}, {0.860739, 0.929037, 0.789776}, {0.389261, 0.904691, 0.860739}, {0.307175, 0.588256, 0.123844}, {0.789786, 0.860739, 0.0709532}, {0.0709532, 0.858094, 0.0709532}, {0.742945, 0.838256, 0.263105}, {0.632206, 0.742825, 0.123844}, {0.742945, 0.698995, 0.123844}, {0.841012, 0.32416, 0.308639}, {0.610874, 0.139261, 0.095431}, {0.782719, 0.102933, 0.0932632}, {0.860739, 0.789776, 0.929037}, {0.929047, 0.141927, 0.929047}, {0.811253, 0.838256, 0.194797}, {0.858094, 0.0709735, 0.929047}, {0.607314, 0.839885, 0.731199}, {0.607314, 0.744576, 0.82663}, {0.442043, 0.73906, 0.809994}, {0.389383, 0.0955798, 0.860739}, {0.141906, 0.929047, 0.0709532}, {0.0709532, 0.860739, 0.210214}, {0.929047, 0.860739, 0.210214}, {0.860739, 0.860739, 0.278522}, {0.139383, 0.095431, 0.389261}, {0.211744, 0.263225, 0.373844}, {0.139261, 0.789786, 0.929047}, {0.789786, 0.929047, 0.860739}, {0.904691, 0.139261, 0.389261}, {0.701751, 0.184899, 0.308639}, {0.929047, 0.139261, 0.789786}, {0.786775, 0.838256, 0.373844}, {0.875, 0.0709532, 0.0709532}, {0.210214, 0.929047, 0.139261}, {0.572483, 0.838256, 0.263105}, {0.591147, 0.184899, 0.264809}, {0.904569, 0.389396, 0.860739}, {0.572483, 0.307176, 0.794306}, {0.331304, 0.834369, 0.449255}, {0.139261, 0.929047, 0.789786}, {0.860739, 0.789786, 0.0709532}, {0.904569, 0.860739, 0.389261}, {0.139261, 0.610739, 0.904569}, {0.812409, 0.102933, 0.343263}, {0.657854, 0.102933, 0.188694}, {0.857314, 0.700624, 0.465891}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 48
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{6, 8, 11}, {8, 9, 12}, {9, 10, 13}, {10, 7, 14}, {7, 15, 18}, {15, 16, 19}, {16, 17, 20}, {17, 3, 21}, {3, 22, 25}, {22, 23, 26}, {23, 24, 27}, {24, 2, 28}, {2, 29, 32}, {29, 30, 33}, {30, 31, 34}, {31, 6, 35}, {0, 36, 39}, {36, 37, 40}, {37, 38, 41}, {38, 4, 42}, {4, 43, 46}, {43, 44, 47}, {44, 45, 48}, {45, 5, 49}, {5, 50, 53}, {50, 51, 54}, {51, 52, 55}, {52, 1, 56}, {1, 57, 60}, {57, 58, 61}, {58, 59, 62}, {59, 0, 63}, {2, 64, 67}, {64, 65, 68}, {65, 66, 69}, {66, 0, 70}, {6, 71, 74}, {71, 72, 75}, {72, 73, 76}, {73, 4, 77}, {7, 78, 81}, {78, 79, 82}, {79, 80, 83}, {80, 5, 84}, {3, 85, 88}, {85, 86, 89}, {86, 87, 90}, {87, 1, 91}}
        ]
-        (not_ghost:triangle_6) [
+        (not_ghost:_triangle_6) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_6
+        + id             : mesh:connectivities:_triangle_6
         + size           : 240
         + nb_component   : 6
         + allocated size : 2000
         + memory size    : 47kB
         + values         : {{93, 97, 71, 105, 106, 107}, {93, 8, 98, 108, 109, 110}, {94, 78, 99, 111, 112, 113}, {43, 95, 100, 114, 115, 116}, {94, 98, 10, 117, 118, 119}, {73, 97, 95, 120, 121, 122}, {45, 100, 96, 123, 124, 125}, {80, 96, 99, 126, 127, 128}, {71, 97, 72, 106, 129, 75}, {78, 79, 99, 82, 130, 112}, {8, 9, 98, 12, 131, 109}, {43, 100, 44, 116, 132, 47}, {72, 97, 73, 129, 120, 76}, {9, 10, 98, 13, 118, 131}, {79, 80, 99, 83, 128, 130}, {44, 100, 45, 132, 123, 48}, {93, 92, 97, 133, 134, 105}, {93, 98, 92, 110, 135, 133}, {94, 92, 98, 136, 135, 117}, {92, 95, 97, 137, 121, 134}, {94, 99, 92, 113, 138, 136}, {92, 100, 95, 139, 115, 137}, {92, 99, 96, 138, 127, 140}, {92, 96, 100, 140, 124, 139}, {93, 71, 101, 107, 141, 142}, {93, 101, 8, 142, 143, 108}, {94, 102, 78, 144, 145, 111}, {43, 103, 95, 146, 147, 114}, {94, 10, 102, 119, 148, 144}, {73, 95, 103, 122, 147, 149}, {45, 96, 104, 125, 150, 151}, {80, 104, 96, 152, 150, 126}, {4, 73, 103, 77, 149, 153}, {6, 101, 71, 154, 141, 74}, {7, 102, 10, 155, 148, 14}, {7, 78, 102, 81, 145, 155}, {6, 8, 101, 11, 143, 154}, {5, 104, 80, 156, 152, 84}, {4, 103, 43, 153, 146, 46}, {5, 45, 104, 49, 151, 156}, {15, 162, 158, 170, 171, 172}, {22, 163, 159, 173, 174, 175}, {8, 164, 160, 176, 177, 178}, {29, 165, 161, 179, 180, 181}, {10, 158, 164, 182, 183, 184}, {31, 160, 165, 185, 186, 187}, {17, 159, 162, 188, 189, 190}, {24, 161, 163, 191, 192, 193}, {22, 23, 163, 26, 194, 173}, {15, 16, 162, 19, 195, 170}, {29, 30, 165, 33, 196, 179}, {8, 9, 164, 12, 197, 176}, {16, 17, 162, 20, 190, 195}, {23, 24, 163, 27, 193, 194}, {9, 10, 164, 13, 184, 197}, {30, 31, 165, 34, 187, 196}, {158, 162, 157, 171, 198, 199}, {159, 157, 162, 200, 198, 189}, {159, 163, 157, 174, 201, 200}, {161, 157, 163, 202, 201, 192}, {158, 157, 164, 199, 203, 183}, {160, 164, 157, 177, 203, 204}, {160, 157, 165, 204, 205, 186}, {161, 165, 157, 180, 205, 202}, {15, 158, 167, 172, 206, 207}, {22, 159, 166, 175, 208, 209}, {8, 160, 169, 178, 210, 211}, {29, 161, 168, 181, 212, 213}, {10, 167, 158, 214, 206, 182}, {31, 169, 160, 215, 210, 185}, {17, 166, 159, 216, 208, 188}, {24, 168, 161, 217, 212, 191}, {2, 168, 24, 218, 217, 28}, {3, 166, 17, 219, 216, 21}, {6, 169, 31, 220, 215, 35}, {7, 167, 10, 221, 214, 14}, {7, 15, 167, 18, 207, 221}, {3, 22, 166, 25, 209, 219}, {6, 8, 169, 11, 211, 220}, {2, 29, 168, 32, 213, 218}, {50, 227, 223, 235, 236, 237}, {57, 228, 224, 238, 239, 240}, {43, 229, 225, 241, 242, 243}, {36, 230, 226, 244, 245, 246}, {45, 223, 229, 247, 248, 249}, {38, 225, 230, 250, 251, 252}, {52, 224, 227, 253, 254, 255}, {59, 226, 228, 256, 257, 258}, {57, 58, 228, 61, 259, 238}, {50, 51, 227, 54, 260, 235}, {36, 37, 230, 40, 261, 244}, {43, 44, 229, 47, 262, 241}, {51, 52, 227, 55, 255, 260}, {58, 59, 228, 62, 258, 259}, {44, 45, 229, 48, 249, 262}, {37, 38, 230, 41, 252, 261}, {223, 227, 222, 236, 263, 264}, {224, 222, 227, 265, 263, 254}, {224, 228, 222, 239, 266, 265}, {222, 228, 226, 266, 257, 267}, {223, 222, 229, 264, 268, 248}, {222, 225, 229, 269, 242, 268}, {222, 230, 225, 270, 251, 269}, {222, 226, 230, 267, 245, 270}, {50, 223, 232, 237, 271, 272}, {57, 224, 231, 240, 273, 274}, {43, 225, 234, 243, 275, 276}, {36, 226, 233, 246, 277, 278}, {45, 232, 223, 279, 271, 247}, {38, 234, 225, 280, 275, 250}, {52, 231, 224, 281, 273, 253}, {59, 233, 226, 282, 277, 256}, {0, 233, 59, 283, 282, 63}, {1, 231, 52, 284, 281, 56}, {4, 234, 38, 285, 280, 42}, {5, 232, 45, 286, 279, 49}, {5, 50, 232, 53, 272, 286}, {1, 57, 231, 60, 274, 284}, {4, 43, 234, 46, 276, 285}, {0, 36, 233, 39, 278, 283}, {85, 288, 292, 300, 301, 302}, {22, 293, 288, 303, 304, 305}, {57, 290, 294, 306, 307, 308}, {64, 295, 289, 309, 310, 311}, {24, 289, 293, 312, 313, 314}, {87, 292, 290, 315, 316, 317}, {66, 291, 295, 318, 319, 320}, {59, 294, 291, 321, 322, 323}, {85, 292, 86, 302, 324, 89}, {22, 23, 293, 26, 325, 303}, {57, 294, 58, 308, 326, 61}, {64, 65, 295, 68, 327, 309}, {86, 292, 87, 324, 315, 90}, {23, 24, 293, 27, 314, 325}, {65, 66, 295, 69, 320, 327}, {58, 294, 59, 326, 321, 62}, {288, 293, 287, 304, 328, 329}, {288, 287, 292, 329, 330, 301}, {289, 287, 293, 331, 328, 313}, {290, 292, 287, 316, 330, 332}, {289, 295, 287, 310, 333, 331}, {290, 287, 294, 332, 334, 307}, {291, 294, 287, 322, 334, 335}, {291, 287, 295, 335, 333, 319}, {22, 288, 296, 305, 336, 337}, {85, 296, 288, 338, 336, 300}, {57, 298, 290, 339, 340, 306}, {64, 289, 297, 311, 341, 342}, {87, 290, 298, 317, 340, 343}, {24, 297, 289, 344, 341, 312}, {59, 291, 299, 323, 345, 346}, {66, 299, 291, 347, 345, 318}, {1, 87, 298, 91, 343, 348}, {2, 297, 24, 349, 344, 28}, {3, 296, 85, 350, 338, 88}, {3, 22, 296, 25, 337, 350}, {1, 298, 57, 348, 339, 60}, {2, 64, 297, 67, 342, 349}, {0, 59, 299, 63, 346, 351}, {0, 299, 66, 351, 347, 70}, {64, 353, 357, 365, 366, 367}, {29, 358, 353, 368, 369, 370}, {71, 359, 354, 371, 372, 373}, {36, 355, 360, 374, 375, 376}, {31, 354, 358, 377, 378, 379}, {66, 357, 355, 380, 381, 382}, {38, 360, 356, 383, 384, 385}, {73, 356, 359, 386, 387, 388}, {64, 357, 65, 367, 389, 68}, {71, 72, 359, 75, 390, 371}, {29, 30, 358, 33, 391, 368}, {36, 360, 37, 376, 392, 40}, {65, 357, 66, 389, 380, 69}, {30, 31, 358, 34, 379, 391}, {72, 73, 359, 76, 388, 390}, {37, 360, 38, 392, 383, 41}, {353, 352, 357, 393, 394, 366}, {353, 358, 352, 369, 395, 393}, {354, 352, 358, 396, 395, 378}, {355, 357, 352, 381, 394, 397}, {354, 359, 352, 372, 398, 396}, {355, 352, 360, 397, 399, 375}, {356, 352, 359, 400, 398, 387}, {356, 360, 352, 384, 399, 400}, {64, 361, 353, 401, 402, 365}, {29, 353, 361, 370, 402, 403}, {71, 354, 362, 373, 404, 405}, {36, 363, 355, 406, 407, 374}, {31, 362, 354, 408, 404, 377}, {66, 355, 363, 382, 407, 409}, {38, 356, 364, 385, 410, 411}, {73, 364, 356, 412, 410, 386}, {0, 66, 363, 70, 409, 413}, {2, 361, 64, 414, 401, 67}, {6, 362, 31, 415, 408, 35}, {6, 71, 362, 74, 405, 415}, {2, 29, 361, 32, 403, 414}, {4, 364, 73, 416, 412, 77}, {0, 363, 36, 413, 406, 39}, {4, 38, 364, 42, 411, 416}, {15, 418, 423, 430, 431, 432}, {78, 422, 418, 433, 434, 435}, {50, 424, 420, 436, 437, 438}, {85, 419, 425, 439, 440, 441}, {17, 423, 419, 442, 443, 444}, {80, 420, 422, 445, 446, 447}, {87, 425, 421, 448, 449, 450}, {52, 421, 424, 451, 452, 453}, {15, 423, 16, 432, 454, 19}, {78, 79, 422, 82, 455, 433}, {50, 51, 424, 54, 456, 436}, {85, 425, 86, 441, 457, 89}, {79, 80, 422, 83, 447, 455}, {16, 423, 17, 454, 442, 20}, {86, 425, 87, 457, 448, 90}, {51, 52, 424, 55, 453, 456}, {417, 418, 422, 458, 434, 459}, {417, 423, 418, 460, 431, 458}, {419, 423, 417, 443, 460, 461}, {420, 417, 422, 462, 459, 446}, {419, 417, 425, 461, 463, 440}, {420, 424, 417, 437, 464, 462}, {421, 417, 424, 465, 464, 452}, {421, 425, 417, 449, 463, 465}, {15, 426, 418, 466, 467, 430}, {78, 418, 426, 435, 467, 468}, {50, 420, 428, 438, 469, 470}, {85, 427, 419, 471, 472, 439}, {80, 428, 420, 473, 469, 445}, {17, 419, 427, 444, 472, 474}, {52, 429, 421, 475, 476, 451}, {87, 421, 429, 450, 476, 477}, {5, 428, 80, 478, 473, 84}, {3, 17, 427, 21, 474, 479}, {7, 78, 426, 81, 468, 480}, {7, 426, 15, 480, 466, 18}, {5, 50, 428, 53, 470, 478}, {3, 427, 85, 479, 471, 88}, {1, 429, 52, 481, 475, 56}, {1, 87, 429, 91, 477, 481}}
        ]
-        (not_ghost:tetrahedron_10) [
+        (not_ghost:_tetrahedron_10) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:tetrahedron_10
+        + id             : mesh:connectivities:_tetrahedron_10
         + size           : 341
         + nb_component   : 10
         + allocated size : 2000
         + memory size    : 78kB
         + values         : {{484, 483, 485, 489, 491, 493, 492, 496, 494, 495}, {87, 290, 490, 292, 317, 498, 497, 315, 316, 499}, {222, 484, 489, 486, 500, 496, 501, 504, 502, 503}, {96, 229, 45, 100, 505, 249, 125, 124, 506, 123}, {59, 0, 233, 299, 63, 283, 282, 346, 351, 507}, {0, 363, 233, 299, 413, 508, 283, 351, 509, 507}, {486, 295, 291, 357, 510, 319, 511, 514, 512, 513}, {484, 222, 489, 485, 500, 501, 496, 492, 515, 495}, {87, 429, 421, 490, 477, 476, 450, 497, 516, 517}, {103, 356, 234, 364, 518, 520, 519, 522, 410, 521}, {356, 103, 234, 225, 518, 519, 520, 524, 523, 275}, {43, 103, 225, 234, 146, 523, 243, 276, 519, 275}, {223, 227, 485, 420, 236, 526, 525, 529, 527, 528}, {483, 92, 484, 485, 530, 531, 491, 493, 532, 492}, {87, 421, 425, 490, 450, 449, 448, 497, 517, 533}, {298, 87, 290, 490, 343, 317, 340, 534, 497, 498}, {482, 483, 488, 489, 535, 537, 536, 539, 494, 538}, {94, 10, 158, 98, 119, 182, 540, 117, 118, 541}, {355, 363, 233, 36, 407, 508, 542, 374, 406, 278}, {485, 420, 424, 417, 528, 437, 543, 544, 462, 464}, {231, 224, 52, 490, 273, 253, 281, 547, 545, 546}, {483, 482, 485, 489, 535, 548, 493, 494, 539, 495}, {167, 15, 7, 426, 207, 18, 221, 549, 466, 480}, {483, 487, 488, 489, 550, 551, 537, 494, 552, 538}, {484, 92, 97, 95, 531, 134, 553, 554, 137, 121}, {29, 165, 30, 358, 179, 196, 33, 368, 555, 391}, {228, 294, 58, 59, 556, 326, 259, 258, 321, 62}, {102, 10, 7, 167, 148, 14, 155, 557, 214, 221}, {9, 10, 98, 164, 13, 118, 131, 197, 184, 558}, {78, 102, 7, 426, 145, 155, 81, 468, 559, 480}, {483, 484, 487, 489, 491, 560, 550, 494, 496, 552}, {16, 423, 162, 17, 454, 561, 195, 20, 442, 190}, {353, 161, 358, 487, 562, 563, 369, 566, 564, 565}, {93, 101, 8, 169, 142, 143, 108, 568, 567, 211}, {78, 422, 79, 99, 433, 455, 82, 112, 569, 130}, {485, 227, 489, 424, 526, 570, 495, 543, 571, 572}, {482, 92, 483, 485, 573, 530, 535, 548, 532, 493}, {223, 222, 229, 484, 264, 268, 248, 575, 500, 574}, {422, 420, 485, 417, 446, 528, 576, 459, 462, 544}, {64, 297, 353, 289, 342, 577, 365, 311, 341, 578}, {101, 6, 8, 169, 154, 11, 143, 567, 220, 211}, {425, 488, 489, 417, 579, 538, 580, 463, 581, 582}, {163, 161, 24, 293, 192, 191, 193, 584, 583, 314}, {228, 294, 59, 226, 556, 321, 258, 257, 585, 256}, {161, 289, 24, 293, 586, 312, 191, 583, 313, 314}, {165, 483, 160, 354, 587, 588, 186, 591, 589, 590}, {103, 356, 95, 225, 518, 592, 147, 523, 524, 593}, {356, 95, 359, 73, 592, 594, 387, 386, 122, 388}, {352, 483, 359, 484, 595, 596, 398, 598, 491, 597}, {103, 43, 4, 234, 146, 46, 153, 519, 276, 285}, {230, 356, 38, 225, 599, 385, 252, 251, 524, 250}, {161, 289, 293, 487, 586, 313, 583, 564, 600, 601}, {161, 487, 293, 163, 564, 601, 583, 192, 602, 584}, {429, 87, 298, 490, 477, 343, 603, 516, 497, 534}, {364, 38, 234, 4, 411, 280, 521, 416, 42, 285}, {22, 296, 3, 166, 337, 350, 25, 209, 604, 219}, {230, 37, 360, 36, 261, 392, 605, 244, 40, 376}, {356, 230, 360, 484, 599, 605, 384, 608, 606, 607}, {22, 23, 293, 163, 26, 325, 303, 173, 194, 584}, {294, 486, 291, 226, 609, 511, 322, 585, 610, 611}, {294, 228, 486, 226, 556, 612, 609, 585, 257, 610}, {3, 17, 166, 427, 21, 216, 219, 479, 474, 613}, {364, 103, 4, 234, 522, 153, 416, 521, 519, 285}, {158, 15, 418, 162, 172, 430, 614, 171, 170, 615}, {15, 423, 418, 162, 432, 431, 430, 170, 561, 615}, {157, 483, 160, 165, 616, 588, 204, 205, 587, 186}, {482, 158, 418, 162, 617, 614, 618, 619, 171, 615}, {423, 482, 418, 162, 620, 618, 431, 561, 619, 615}, {425, 488, 292, 489, 579, 622, 621, 580, 538, 623}, {290, 489, 490, 292, 624, 625, 498, 316, 623, 499}, {222, 223, 485, 484, 264, 525, 515, 500, 575, 492}, {363, 0, 66, 299, 413, 70, 409, 509, 351, 347}, {482, 422, 485, 417, 626, 576, 548, 627, 459, 544}, {486, 290, 287, 489, 628, 332, 629, 503, 624, 630}, {296, 3, 166, 427, 350, 219, 604, 631, 479, 613}, {489, 290, 287, 292, 624, 332, 630, 623, 316, 330}, {488, 85, 427, 419, 632, 471, 633, 634, 439, 472}, {425, 488, 419, 85, 579, 634, 440, 441, 632, 439}, {15, 16, 423, 162, 19, 454, 432, 170, 195, 561}, {65, 64, 357, 295, 68, 367, 389, 327, 309, 512}, {222, 484, 486, 226, 500, 502, 504, 267, 635, 610}, {356, 484, 95, 225, 608, 554, 592, 524, 636, 593}, {352, 484, 486, 487, 598, 502, 637, 639, 560, 638}, {230, 222, 484, 225, 270, 500, 606, 251, 269, 636}, {294, 228, 58, 57, 556, 259, 326, 308, 238, 61}, {352, 483, 484, 487, 595, 491, 598, 639, 550, 560}, {23, 163, 24, 293, 194, 193, 27, 325, 584, 314}, {429, 231, 1, 52, 640, 284, 481, 475, 281, 56}, {228, 222, 486, 226, 266, 504, 612, 257, 267, 610}, {482, 422, 417, 418, 626, 459, 627, 618, 434, 458}, {489, 425, 490, 292, 580, 533, 625, 623, 621, 499}, {483, 92, 97, 484, 530, 134, 641, 491, 531, 553}, {50, 232, 5, 428, 272, 286, 53, 470, 642, 478}, {483, 165, 358, 354, 587, 555, 643, 589, 591, 378}, {157, 483, 487, 488, 616, 550, 644, 645, 537, 551}, {425, 488, 417, 419, 579, 581, 463, 440, 634, 461}, {222, 230, 484, 226, 270, 606, 500, 267, 245, 635}, {299, 363, 233, 291, 509, 508, 507, 345, 646, 647}, {103, 356, 73, 95, 518, 386, 149, 147, 592, 122}, {229, 44, 45, 100, 262, 48, 249, 506, 132, 123}, {356, 230, 38, 360, 599, 252, 385, 384, 605, 383}, {104, 223, 45, 96, 648, 247, 151, 150, 649, 125}, {22, 159, 293, 288, 175, 650, 303, 305, 651, 304}, {352, 356, 360, 484, 400, 384, 399, 598, 608, 607}, {2, 361, 168, 29, 414, 652, 218, 32, 403, 213}, {484, 483, 359, 97, 491, 596, 597, 553, 641, 653}, {483, 157, 160, 164, 616, 204, 588, 654, 203, 177}, {92, 484, 100, 95, 531, 655, 139, 137, 554, 115}, {223, 420, 96, 104, 529, 656, 649, 648, 657, 150}, {85, 425, 292, 86, 441, 621, 302, 89, 457, 324}, {355, 352, 486, 357, 397, 637, 658, 381, 394, 514}, {353, 289, 487, 357, 578, 600, 566, 366, 659, 660}, {66, 295, 357, 291, 320, 512, 380, 318, 319, 513}, {488, 487, 287, 489, 551, 662, 661, 538, 552, 630}, {486, 294, 287, 290, 609, 334, 629, 628, 307, 332}, {227, 223, 485, 222, 236, 525, 526, 263, 264, 515}, {355, 486, 226, 291, 658, 610, 663, 664, 511, 611}, {43, 103, 95, 225, 146, 147, 114, 243, 523, 593}, {356, 230, 484, 225, 599, 606, 608, 524, 251, 636}, {64, 295, 289, 357, 309, 310, 311, 367, 512, 659}, {157, 482, 162, 158, 665, 619, 198, 199, 617, 171}, {223, 229, 45, 96, 248, 249, 247, 649, 505, 125}, {222, 229, 484, 225, 268, 574, 500, 269, 242, 636}, {422, 78, 418, 99, 433, 435, 434, 569, 112, 666}, {422, 80, 79, 99, 447, 83, 455, 569, 128, 130}, {159, 22, 293, 163, 175, 303, 650, 174, 173, 584}, {101, 362, 71, 6, 667, 405, 141, 154, 415, 74}, {93, 483, 354, 160, 668, 589, 669, 670, 588, 590}, {355, 486, 291, 357, 658, 511, 664, 381, 514, 513}, {362, 101, 169, 6, 667, 567, 671, 415, 154, 220}, {94, 482, 418, 99, 672, 618, 673, 113, 674, 666}, {488, 482, 489, 417, 536, 539, 538, 581, 627, 582}, {484, 356, 95, 359, 608, 592, 554, 597, 387, 594}, {363, 355, 233, 291, 407, 542, 508, 646, 664, 647}, {485, 92, 96, 99, 532, 140, 675, 676, 138, 127}, {78, 94, 418, 99, 111, 673, 435, 112, 113, 666}, {92, 483, 97, 93, 530, 641, 134, 133, 668, 105}, {484, 95, 97, 359, 554, 121, 553, 597, 594, 653}, {72, 71, 97, 359, 75, 106, 129, 390, 371, 653}, {94, 482, 99, 92, 672, 674, 113, 136, 573, 138}, {102, 167, 7, 426, 557, 221, 155, 559, 549, 480}, {10, 164, 158, 98, 184, 183, 182, 118, 558, 541}, {482, 422, 99, 485, 626, 569, 674, 548, 576, 676}, {15, 158, 426, 167, 172, 677, 466, 207, 206, 549}, {92, 482, 99, 485, 573, 674, 138, 532, 548, 676}, {158, 15, 426, 418, 172, 466, 677, 614, 430, 467}, {38, 356, 234, 225, 385, 520, 280, 250, 524, 275}, {94, 482, 158, 418, 672, 617, 540, 673, 618, 614}, {364, 356, 234, 38, 410, 520, 521, 411, 385, 280}, {93, 160, 8, 98, 670, 178, 108, 110, 678, 109}, {355, 233, 226, 36, 542, 277, 663, 374, 278, 246}, {160, 93, 8, 169, 670, 108, 178, 210, 568, 211}, {227, 223, 50, 420, 236, 237, 235, 527, 529, 438}, {363, 0, 233, 36, 413, 283, 508, 406, 39, 278}, {486, 295, 287, 291, 510, 333, 629, 511, 319, 335}, {59, 294, 291, 226, 321, 322, 323, 256, 585, 611}, {66, 363, 299, 291, 409, 509, 347, 318, 646, 345}, {486, 352, 487, 357, 637, 639, 638, 514, 394, 660}, {295, 486, 487, 357, 510, 638, 679, 512, 514, 660}, {296, 22, 288, 166, 337, 305, 336, 604, 209, 680}, {361, 64, 2, 297, 401, 67, 414, 681, 342, 349}, {95, 97, 359, 73, 121, 653, 594, 122, 120, 388}, {423, 482, 417, 418, 620, 627, 460, 431, 618, 458}, {65, 295, 357, 66, 327, 512, 389, 69, 320, 380}, {97, 72, 359, 73, 129, 390, 653, 120, 76, 388}, {420, 223, 96, 485, 529, 649, 656, 528, 525, 675}, {159, 488, 293, 288, 682, 683, 650, 651, 684, 304}, {31, 165, 160, 354, 187, 186, 185, 377, 591, 590}, {484, 486, 487, 489, 502, 638, 560, 496, 503, 552}, {486, 295, 487, 287, 510, 679, 638, 629, 333, 662}, {59, 233, 226, 291, 282, 277, 256, 323, 647, 611}, {233, 355, 226, 291, 542, 663, 277, 647, 664, 611}, {425, 421, 489, 490, 449, 685, 580, 533, 517, 625}, {288, 488, 292, 85, 684, 622, 301, 300, 632, 302}, {421, 425, 489, 417, 449, 580, 685, 465, 463, 582}, {294, 228, 57, 290, 556, 238, 308, 307, 686, 306}, {165, 31, 358, 354, 187, 379, 555, 591, 377, 378}, {103, 356, 364, 73, 518, 410, 522, 149, 386, 412}, {352, 483, 358, 354, 595, 643, 395, 396, 589, 378}, {22, 159, 288, 166, 175, 651, 305, 209, 208, 680}, {356, 352, 359, 484, 400, 398, 387, 608, 598, 597}, {64, 361, 353, 297, 401, 402, 365, 342, 681, 577}, {355, 66, 357, 291, 382, 380, 381, 664, 318, 513}, {487, 486, 287, 489, 638, 629, 662, 552, 503, 630}, {298, 57, 490, 290, 339, 687, 534, 340, 306, 498}, {31, 362, 169, 6, 408, 671, 215, 35, 415, 220}, {488, 425, 292, 85, 579, 621, 622, 632, 441, 302}, {483, 352, 359, 354, 595, 398, 596, 589, 396, 372}, {94, 78, 418, 426, 111, 435, 673, 688, 468, 467}, {229, 43, 44, 100, 241, 47, 262, 506, 116, 132}, {31, 165, 358, 30, 187, 555, 379, 34, 196, 391}, {429, 231, 52, 490, 640, 281, 475, 516, 547, 546}, {94, 102, 78, 426, 144, 145, 111, 688, 559, 468}, {421, 429, 52, 490, 476, 475, 451, 517, 516, 546}, {364, 103, 73, 4, 522, 149, 412, 416, 153, 77}, {420, 227, 424, 50, 527, 571, 437, 438, 235, 436}, {104, 80, 5, 428, 152, 84, 156, 689, 473, 478}, {227, 51, 52, 424, 260, 55, 255, 571, 456, 453}, {487, 289, 293, 287, 600, 313, 601, 662, 331, 328}, {166, 159, 288, 488, 208, 651, 680, 690, 682, 684}, {289, 161, 353, 487, 586, 562, 578, 600, 564, 566}, {482, 485, 489, 417, 548, 495, 539, 627, 544, 582}, {50, 227, 424, 51, 235, 571, 436, 54, 260, 456}, {488, 489, 287, 292, 538, 630, 661, 622, 623, 330}, {482, 483, 157, 488, 535, 616, 665, 536, 537, 645}, {80, 420, 104, 96, 445, 657, 152, 126, 656, 150}, {232, 104, 45, 5, 691, 151, 279, 286, 156, 49}, {288, 488, 287, 292, 684, 661, 329, 301, 622, 330}, {295, 289, 487, 287, 310, 600, 679, 333, 331, 662}, {157, 161, 163, 487, 202, 192, 201, 644, 564, 602}, {483, 482, 164, 98, 535, 692, 654, 694, 693, 558}, {3, 296, 85, 427, 350, 338, 88, 479, 631, 471}, {92, 483, 93, 98, 530, 668, 133, 135, 694, 110}, {95, 484, 100, 225, 554, 655, 115, 593, 636, 695}, {231, 224, 490, 57, 273, 545, 547, 274, 240, 687}, {64, 289, 353, 357, 311, 578, 365, 367, 659, 366}, {2, 297, 24, 168, 349, 344, 28, 218, 696, 217}, {361, 297, 168, 353, 681, 696, 652, 402, 577, 697}, {353, 161, 168, 29, 562, 212, 697, 370, 181, 213}, {289, 295, 487, 357, 310, 679, 600, 659, 512, 660}, {352, 353, 487, 357, 393, 566, 639, 394, 366, 660}, {361, 353, 168, 29, 402, 697, 652, 403, 370, 213}, {484, 229, 100, 225, 574, 506, 655, 636, 242, 695}, {104, 223, 232, 45, 648, 271, 691, 151, 247, 279}, {160, 164, 8, 98, 177, 176, 178, 678, 558, 109}, {164, 9, 8, 98, 197, 12, 176, 558, 131, 109}, {165, 161, 358, 29, 180, 563, 555, 179, 181, 368}, {297, 361, 168, 2, 681, 652, 696, 349, 414, 218}, {161, 353, 358, 29, 562, 369, 563, 181, 370, 368}, {230, 37, 38, 360, 261, 41, 252, 605, 392, 383}, {43, 95, 100, 225, 114, 115, 116, 243, 593, 695}, {420, 80, 104, 428, 445, 152, 657, 469, 473, 689}, {232, 104, 5, 428, 691, 156, 286, 642, 689, 478}, {59, 299, 233, 291, 346, 507, 282, 323, 345, 647}, {355, 363, 66, 291, 407, 409, 382, 664, 646, 318}, {158, 94, 418, 426, 540, 673, 614, 677, 688, 467}, {87, 429, 298, 1, 477, 603, 343, 91, 481, 348}, {420, 227, 485, 424, 527, 526, 528, 437, 571, 543}, {482, 422, 418, 99, 626, 434, 618, 674, 569, 666}, {229, 43, 100, 225, 241, 116, 506, 242, 243, 695}, {294, 486, 287, 291, 609, 629, 334, 322, 511, 335}, {17, 166, 419, 159, 216, 698, 444, 188, 208, 699}, {419, 166, 17, 427, 698, 216, 444, 472, 613, 474}, {166, 488, 419, 159, 690, 634, 698, 208, 682, 699}, {419, 488, 166, 427, 634, 690, 698, 472, 633, 613}, {160, 98, 483, 164, 678, 694, 588, 177, 558, 654}, {483, 98, 160, 93, 694, 678, 588, 668, 110, 670}, {226, 360, 486, 355, 700, 701, 610, 663, 375, 658}, {360, 36, 226, 230, 376, 246, 700, 605, 244, 245}, {226, 36, 360, 355, 246, 376, 700, 663, 374, 375}, {93, 169, 362, 101, 568, 671, 702, 142, 567, 667}, {93, 362, 71, 101, 702, 405, 107, 142, 667, 141}, {71, 362, 93, 354, 405, 702, 107, 373, 404, 669}, {489, 424, 417, 485, 572, 464, 582, 495, 543, 544}, {417, 424, 489, 421, 464, 572, 582, 465, 452, 685}, {102, 10, 158, 94, 148, 182, 703, 144, 119, 540}, {158, 10, 102, 167, 182, 148, 703, 206, 214, 557}, {102, 158, 426, 94, 703, 677, 559, 144, 540, 688}, {426, 158, 102, 167, 677, 703, 559, 549, 206, 557}, {421, 489, 227, 424, 685, 570, 704, 452, 572, 571}, {52, 421, 227, 424, 451, 704, 255, 453, 452, 571}, {489, 227, 222, 224, 570, 263, 501, 705, 254, 265}, {489, 222, 227, 485, 501, 263, 570, 495, 515, 526}, {87, 425, 292, 490, 448, 621, 315, 497, 533, 499}, {292, 425, 87, 86, 621, 448, 315, 324, 457, 90}, {104, 420, 232, 223, 657, 706, 691, 648, 529, 271}, {104, 232, 420, 428, 691, 706, 657, 689, 642, 469}, {232, 420, 50, 223, 706, 438, 272, 271, 529, 237}, {232, 50, 420, 428, 272, 438, 706, 642, 470, 469}, {226, 484, 360, 230, 635, 607, 700, 245, 606, 605}, {226, 360, 484, 486, 700, 607, 635, 610, 701, 502}, {486, 360, 352, 355, 701, 399, 637, 658, 375, 397}, {352, 360, 486, 484, 399, 701, 637, 598, 607, 502}, {162, 488, 157, 159, 707, 645, 198, 189, 682, 200}, {157, 488, 162, 482, 645, 707, 198, 665, 536, 619}, {490, 57, 429, 231, 687, 708, 516, 547, 274, 640}, {429, 57, 490, 298, 708, 687, 516, 603, 339, 534}, {57, 1, 429, 231, 60, 481, 708, 274, 284, 640}, {429, 1, 57, 298, 481, 60, 708, 603, 348, 339}, {158, 98, 482, 94, 541, 693, 617, 540, 117, 672}, {482, 98, 158, 164, 693, 541, 617, 692, 558, 183}, {353, 297, 161, 289, 577, 709, 562, 578, 341, 586}, {353, 161, 297, 168, 562, 709, 577, 697, 212, 696}, {161, 297, 24, 289, 709, 344, 191, 586, 341, 312}, {161, 24, 297, 168, 191, 344, 709, 212, 217, 696}, {159, 293, 487, 163, 650, 601, 710, 174, 584, 602}, {487, 293, 159, 488, 601, 650, 710, 551, 683, 682}, {159, 487, 157, 163, 710, 644, 200, 174, 602, 201}, {157, 487, 159, 488, 644, 710, 200, 645, 551, 682}, {290, 228, 486, 294, 686, 612, 628, 307, 556, 609}, {290, 486, 228, 489, 628, 612, 686, 624, 503, 711}, {485, 99, 420, 422, 676, 712, 528, 576, 569, 446}, {420, 99, 485, 96, 712, 676, 528, 656, 127, 675}, {99, 80, 420, 422, 128, 445, 712, 569, 447, 446}, {420, 80, 99, 96, 445, 128, 712, 656, 126, 127}, {96, 484, 229, 100, 713, 574, 505, 124, 655, 506}, {92, 96, 484, 485, 140, 713, 531, 532, 675, 492}, {92, 484, 96, 100, 531, 713, 140, 139, 655, 124}, {161, 358, 483, 165, 563, 643, 714, 180, 555, 587}, {483, 358, 161, 487, 643, 563, 714, 550, 565, 564}, {161, 483, 157, 165, 714, 616, 202, 180, 587, 205}, {157, 483, 161, 487, 616, 714, 202, 644, 550, 564}, {362, 31, 160, 354, 408, 185, 715, 404, 377, 590}, {160, 31, 362, 169, 185, 408, 715, 210, 215, 671}, {362, 160, 93, 354, 715, 670, 702, 404, 590, 669}, {93, 160, 362, 169, 670, 715, 702, 568, 210, 671}, {482, 164, 157, 483, 692, 203, 665, 535, 654, 616}, {157, 164, 482, 158, 203, 692, 665, 199, 183, 617}, {228, 489, 222, 224, 711, 501, 266, 239, 705, 265}, {222, 489, 228, 486, 501, 711, 266, 504, 503, 612}, {288, 166, 427, 296, 680, 613, 716, 336, 604, 631}, {288, 427, 166, 488, 716, 613, 680, 684, 633, 690}, {85, 288, 427, 296, 300, 716, 471, 338, 336, 631}, {85, 427, 288, 488, 471, 716, 300, 632, 633, 684}, {484, 223, 96, 229, 575, 649, 713, 574, 248, 505}, {484, 96, 223, 485, 713, 649, 575, 492, 675, 525}, {488, 293, 287, 487, 683, 328, 661, 551, 601, 662}, {287, 293, 488, 288, 328, 683, 661, 329, 304, 684}, {419, 488, 162, 159, 634, 707, 717, 699, 682, 189}, {162, 419, 17, 423, 717, 444, 190, 561, 443, 442}, {17, 419, 162, 159, 444, 717, 190, 188, 699, 189}, {482, 98, 92, 94, 693, 135, 573, 672, 117, 136}, {92, 98, 482, 483, 135, 693, 573, 530, 694, 535}, {358, 487, 352, 353, 565, 639, 395, 369, 566, 393}, {352, 487, 358, 483, 639, 565, 395, 595, 550, 643}, {359, 483, 93, 97, 596, 668, 718, 653, 641, 105}, {359, 93, 483, 354, 718, 668, 596, 372, 669, 589}, {71, 359, 93, 97, 371, 718, 107, 106, 653, 105}, {71, 93, 359, 354, 107, 718, 371, 373, 669, 372}, {52, 490, 227, 421, 546, 719, 255, 451, 517, 704}, {227, 490, 52, 224, 719, 546, 255, 254, 545, 253}, {490, 489, 227, 421, 625, 570, 719, 517, 685, 704}, {227, 489, 490, 224, 570, 625, 719, 254, 705, 545}, {57, 490, 228, 224, 687, 720, 238, 240, 545, 239}, {228, 490, 57, 290, 720, 687, 238, 686, 498, 306}, {490, 489, 228, 224, 625, 711, 720, 545, 705, 239}, {228, 489, 490, 290, 711, 625, 720, 686, 624, 498}, {162, 419, 482, 488, 717, 721, 619, 707, 634, 536}, {482, 419, 162, 423, 721, 717, 619, 620, 443, 561}, {419, 417, 482, 488, 461, 627, 721, 634, 581, 536}, {482, 417, 419, 423, 627, 461, 721, 620, 460, 443}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 8
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_3
+   + id             : mesh:connectivities:_segment_3
    + size           : 48
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 23kB
    + values         : {{6, 8, 11}, {8, 9, 12}, {9, 10, 13}, {10, 7, 14}, {7, 15, 18}, {15, 16, 19}, {16, 17, 20}, {17, 3, 21}, {3, 22, 25}, {22, 23, 26}, {23, 24, 27}, {24, 2, 28}, {2, 29, 32}, {29, 30, 33}, {30, 31, 34}, {31, 6, 35}, {0, 36, 39}, {36, 37, 40}, {37, 38, 41}, {38, 4, 42}, {4, 43, 46}, {43, 44, 47}, {44, 45, 48}, {45, 5, 49}, {5, 50, 53}, {50, 51, 54}, {51, 52, 55}, {52, 1, 56}, {1, 57, 60}, {57, 58, 61}, {58, 59, 62}, {59, 0, 63}, {2, 64, 67}, {64, 65, 68}, {65, 66, 69}, {66, 0, 70}, {6, 71, 74}, {71, 72, 75}, {72, 73, 76}, {73, 4, 77}, {7, 78, 81}, {78, 79, 82}, {79, 80, 83}, {80, 5, 84}, {3, 85, 88}, {85, 86, 89}, {86, 87, 90}, {87, 1, 91}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:tetrahedron_10
+   + id             : mesh:connectivities:_tetrahedron_10
    + size           : 341
    + nb_component   : 10
    + allocated size : 2000
    + memory size    : 78kB
    + values         : {{484, 483, 485, 489, 491, 493, 492, 496, 494, 495}, {87, 290, 490, 292, 317, 498, 497, 315, 316, 499}, {222, 484, 489, 486, 500, 496, 501, 504, 502, 503}, {96, 229, 45, 100, 505, 249, 125, 124, 506, 123}, {59, 0, 233, 299, 63, 283, 282, 346, 351, 507}, {0, 363, 233, 299, 413, 508, 283, 351, 509, 507}, {486, 295, 291, 357, 510, 319, 511, 514, 512, 513}, {484, 222, 489, 485, 500, 501, 496, 492, 515, 495}, {87, 429, 421, 490, 477, 476, 450, 497, 516, 517}, {103, 356, 234, 364, 518, 520, 519, 522, 410, 521}, {356, 103, 234, 225, 518, 519, 520, 524, 523, 275}, {43, 103, 225, 234, 146, 523, 243, 276, 519, 275}, {223, 227, 485, 420, 236, 526, 525, 529, 527, 528}, {483, 92, 484, 485, 530, 531, 491, 493, 532, 492}, {87, 421, 425, 490, 450, 449, 448, 497, 517, 533}, {298, 87, 290, 490, 343, 317, 340, 534, 497, 498}, {482, 483, 488, 489, 535, 537, 536, 539, 494, 538}, {94, 10, 158, 98, 119, 182, 540, 117, 118, 541}, {355, 363, 233, 36, 407, 508, 542, 374, 406, 278}, {485, 420, 424, 417, 528, 437, 543, 544, 462, 464}, {231, 224, 52, 490, 273, 253, 281, 547, 545, 546}, {483, 482, 485, 489, 535, 548, 493, 494, 539, 495}, {167, 15, 7, 426, 207, 18, 221, 549, 466, 480}, {483, 487, 488, 489, 550, 551, 537, 494, 552, 538}, {484, 92, 97, 95, 531, 134, 553, 554, 137, 121}, {29, 165, 30, 358, 179, 196, 33, 368, 555, 391}, {228, 294, 58, 59, 556, 326, 259, 258, 321, 62}, {102, 10, 7, 167, 148, 14, 155, 557, 214, 221}, {9, 10, 98, 164, 13, 118, 131, 197, 184, 558}, {78, 102, 7, 426, 145, 155, 81, 468, 559, 480}, {483, 484, 487, 489, 491, 560, 550, 494, 496, 552}, {16, 423, 162, 17, 454, 561, 195, 20, 442, 190}, {353, 161, 358, 487, 562, 563, 369, 566, 564, 565}, {93, 101, 8, 169, 142, 143, 108, 568, 567, 211}, {78, 422, 79, 99, 433, 455, 82, 112, 569, 130}, {485, 227, 489, 424, 526, 570, 495, 543, 571, 572}, {482, 92, 483, 485, 573, 530, 535, 548, 532, 493}, {223, 222, 229, 484, 264, 268, 248, 575, 500, 574}, {422, 420, 485, 417, 446, 528, 576, 459, 462, 544}, {64, 297, 353, 289, 342, 577, 365, 311, 341, 578}, {101, 6, 8, 169, 154, 11, 143, 567, 220, 211}, {425, 488, 489, 417, 579, 538, 580, 463, 581, 582}, {163, 161, 24, 293, 192, 191, 193, 584, 583, 314}, {228, 294, 59, 226, 556, 321, 258, 257, 585, 256}, {161, 289, 24, 293, 586, 312, 191, 583, 313, 314}, {165, 483, 160, 354, 587, 588, 186, 591, 589, 590}, {103, 356, 95, 225, 518, 592, 147, 523, 524, 593}, {356, 95, 359, 73, 592, 594, 387, 386, 122, 388}, {352, 483, 359, 484, 595, 596, 398, 598, 491, 597}, {103, 43, 4, 234, 146, 46, 153, 519, 276, 285}, {230, 356, 38, 225, 599, 385, 252, 251, 524, 250}, {161, 289, 293, 487, 586, 313, 583, 564, 600, 601}, {161, 487, 293, 163, 564, 601, 583, 192, 602, 584}, {429, 87, 298, 490, 477, 343, 603, 516, 497, 534}, {364, 38, 234, 4, 411, 280, 521, 416, 42, 285}, {22, 296, 3, 166, 337, 350, 25, 209, 604, 219}, {230, 37, 360, 36, 261, 392, 605, 244, 40, 376}, {356, 230, 360, 484, 599, 605, 384, 608, 606, 607}, {22, 23, 293, 163, 26, 325, 303, 173, 194, 584}, {294, 486, 291, 226, 609, 511, 322, 585, 610, 611}, {294, 228, 486, 226, 556, 612, 609, 585, 257, 610}, {3, 17, 166, 427, 21, 216, 219, 479, 474, 613}, {364, 103, 4, 234, 522, 153, 416, 521, 519, 285}, {158, 15, 418, 162, 172, 430, 614, 171, 170, 615}, {15, 423, 418, 162, 432, 431, 430, 170, 561, 615}, {157, 483, 160, 165, 616, 588, 204, 205, 587, 186}, {482, 158, 418, 162, 617, 614, 618, 619, 171, 615}, {423, 482, 418, 162, 620, 618, 431, 561, 619, 615}, {425, 488, 292, 489, 579, 622, 621, 580, 538, 623}, {290, 489, 490, 292, 624, 625, 498, 316, 623, 499}, {222, 223, 485, 484, 264, 525, 515, 500, 575, 492}, {363, 0, 66, 299, 413, 70, 409, 509, 351, 347}, {482, 422, 485, 417, 626, 576, 548, 627, 459, 544}, {486, 290, 287, 489, 628, 332, 629, 503, 624, 630}, {296, 3, 166, 427, 350, 219, 604, 631, 479, 613}, {489, 290, 287, 292, 624, 332, 630, 623, 316, 330}, {488, 85, 427, 419, 632, 471, 633, 634, 439, 472}, {425, 488, 419, 85, 579, 634, 440, 441, 632, 439}, {15, 16, 423, 162, 19, 454, 432, 170, 195, 561}, {65, 64, 357, 295, 68, 367, 389, 327, 309, 512}, {222, 484, 486, 226, 500, 502, 504, 267, 635, 610}, {356, 484, 95, 225, 608, 554, 592, 524, 636, 593}, {352, 484, 486, 487, 598, 502, 637, 639, 560, 638}, {230, 222, 484, 225, 270, 500, 606, 251, 269, 636}, {294, 228, 58, 57, 556, 259, 326, 308, 238, 61}, {352, 483, 484, 487, 595, 491, 598, 639, 550, 560}, {23, 163, 24, 293, 194, 193, 27, 325, 584, 314}, {429, 231, 1, 52, 640, 284, 481, 475, 281, 56}, {228, 222, 486, 226, 266, 504, 612, 257, 267, 610}, {482, 422, 417, 418, 626, 459, 627, 618, 434, 458}, {489, 425, 490, 292, 580, 533, 625, 623, 621, 499}, {483, 92, 97, 484, 530, 134, 641, 491, 531, 553}, {50, 232, 5, 428, 272, 286, 53, 470, 642, 478}, {483, 165, 358, 354, 587, 555, 643, 589, 591, 378}, {157, 483, 487, 488, 616, 550, 644, 645, 537, 551}, {425, 488, 417, 419, 579, 581, 463, 440, 634, 461}, {222, 230, 484, 226, 270, 606, 500, 267, 245, 635}, {299, 363, 233, 291, 509, 508, 507, 345, 646, 647}, {103, 356, 73, 95, 518, 386, 149, 147, 592, 122}, {229, 44, 45, 100, 262, 48, 249, 506, 132, 123}, {356, 230, 38, 360, 599, 252, 385, 384, 605, 383}, {104, 223, 45, 96, 648, 247, 151, 150, 649, 125}, {22, 159, 293, 288, 175, 650, 303, 305, 651, 304}, {352, 356, 360, 484, 400, 384, 399, 598, 608, 607}, {2, 361, 168, 29, 414, 652, 218, 32, 403, 213}, {484, 483, 359, 97, 491, 596, 597, 553, 641, 653}, {483, 157, 160, 164, 616, 204, 588, 654, 203, 177}, {92, 484, 100, 95, 531, 655, 139, 137, 554, 115}, {223, 420, 96, 104, 529, 656, 649, 648, 657, 150}, {85, 425, 292, 86, 441, 621, 302, 89, 457, 324}, {355, 352, 486, 357, 397, 637, 658, 381, 394, 514}, {353, 289, 487, 357, 578, 600, 566, 366, 659, 660}, {66, 295, 357, 291, 320, 512, 380, 318, 319, 513}, {488, 487, 287, 489, 551, 662, 661, 538, 552, 630}, {486, 294, 287, 290, 609, 334, 629, 628, 307, 332}, {227, 223, 485, 222, 236, 525, 526, 263, 264, 515}, {355, 486, 226, 291, 658, 610, 663, 664, 511, 611}, {43, 103, 95, 225, 146, 147, 114, 243, 523, 593}, {356, 230, 484, 225, 599, 606, 608, 524, 251, 636}, {64, 295, 289, 357, 309, 310, 311, 367, 512, 659}, {157, 482, 162, 158, 665, 619, 198, 199, 617, 171}, {223, 229, 45, 96, 248, 249, 247, 649, 505, 125}, {222, 229, 484, 225, 268, 574, 500, 269, 242, 636}, {422, 78, 418, 99, 433, 435, 434, 569, 112, 666}, {422, 80, 79, 99, 447, 83, 455, 569, 128, 130}, {159, 22, 293, 163, 175, 303, 650, 174, 173, 584}, {101, 362, 71, 6, 667, 405, 141, 154, 415, 74}, {93, 483, 354, 160, 668, 589, 669, 670, 588, 590}, {355, 486, 291, 357, 658, 511, 664, 381, 514, 513}, {362, 101, 169, 6, 667, 567, 671, 415, 154, 220}, {94, 482, 418, 99, 672, 618, 673, 113, 674, 666}, {488, 482, 489, 417, 536, 539, 538, 581, 627, 582}, {484, 356, 95, 359, 608, 592, 554, 597, 387, 594}, {363, 355, 233, 291, 407, 542, 508, 646, 664, 647}, {485, 92, 96, 99, 532, 140, 675, 676, 138, 127}, {78, 94, 418, 99, 111, 673, 435, 112, 113, 666}, {92, 483, 97, 93, 530, 641, 134, 133, 668, 105}, {484, 95, 97, 359, 554, 121, 553, 597, 594, 653}, {72, 71, 97, 359, 75, 106, 129, 390, 371, 653}, {94, 482, 99, 92, 672, 674, 113, 136, 573, 138}, {102, 167, 7, 426, 557, 221, 155, 559, 549, 480}, {10, 164, 158, 98, 184, 183, 182, 118, 558, 541}, {482, 422, 99, 485, 626, 569, 674, 548, 576, 676}, {15, 158, 426, 167, 172, 677, 466, 207, 206, 549}, {92, 482, 99, 485, 573, 674, 138, 532, 548, 676}, {158, 15, 426, 418, 172, 466, 677, 614, 430, 467}, {38, 356, 234, 225, 385, 520, 280, 250, 524, 275}, {94, 482, 158, 418, 672, 617, 540, 673, 618, 614}, {364, 356, 234, 38, 410, 520, 521, 411, 385, 280}, {93, 160, 8, 98, 670, 178, 108, 110, 678, 109}, {355, 233, 226, 36, 542, 277, 663, 374, 278, 246}, {160, 93, 8, 169, 670, 108, 178, 210, 568, 211}, {227, 223, 50, 420, 236, 237, 235, 527, 529, 438}, {363, 0, 233, 36, 413, 283, 508, 406, 39, 278}, {486, 295, 287, 291, 510, 333, 629, 511, 319, 335}, {59, 294, 291, 226, 321, 322, 323, 256, 585, 611}, {66, 363, 299, 291, 409, 509, 347, 318, 646, 345}, {486, 352, 487, 357, 637, 639, 638, 514, 394, 660}, {295, 486, 487, 357, 510, 638, 679, 512, 514, 660}, {296, 22, 288, 166, 337, 305, 336, 604, 209, 680}, {361, 64, 2, 297, 401, 67, 414, 681, 342, 349}, {95, 97, 359, 73, 121, 653, 594, 122, 120, 388}, {423, 482, 417, 418, 620, 627, 460, 431, 618, 458}, {65, 295, 357, 66, 327, 512, 389, 69, 320, 380}, {97, 72, 359, 73, 129, 390, 653, 120, 76, 388}, {420, 223, 96, 485, 529, 649, 656, 528, 525, 675}, {159, 488, 293, 288, 682, 683, 650, 651, 684, 304}, {31, 165, 160, 354, 187, 186, 185, 377, 591, 590}, {484, 486, 487, 489, 502, 638, 560, 496, 503, 552}, {486, 295, 487, 287, 510, 679, 638, 629, 333, 662}, {59, 233, 226, 291, 282, 277, 256, 323, 647, 611}, {233, 355, 226, 291, 542, 663, 277, 647, 664, 611}, {425, 421, 489, 490, 449, 685, 580, 533, 517, 625}, {288, 488, 292, 85, 684, 622, 301, 300, 632, 302}, {421, 425, 489, 417, 449, 580, 685, 465, 463, 582}, {294, 228, 57, 290, 556, 238, 308, 307, 686, 306}, {165, 31, 358, 354, 187, 379, 555, 591, 377, 378}, {103, 356, 364, 73, 518, 410, 522, 149, 386, 412}, {352, 483, 358, 354, 595, 643, 395, 396, 589, 378}, {22, 159, 288, 166, 175, 651, 305, 209, 208, 680}, {356, 352, 359, 484, 400, 398, 387, 608, 598, 597}, {64, 361, 353, 297, 401, 402, 365, 342, 681, 577}, {355, 66, 357, 291, 382, 380, 381, 664, 318, 513}, {487, 486, 287, 489, 638, 629, 662, 552, 503, 630}, {298, 57, 490, 290, 339, 687, 534, 340, 306, 498}, {31, 362, 169, 6, 408, 671, 215, 35, 415, 220}, {488, 425, 292, 85, 579, 621, 622, 632, 441, 302}, {483, 352, 359, 354, 595, 398, 596, 589, 396, 372}, {94, 78, 418, 426, 111, 435, 673, 688, 468, 467}, {229, 43, 44, 100, 241, 47, 262, 506, 116, 132}, {31, 165, 358, 30, 187, 555, 379, 34, 196, 391}, {429, 231, 52, 490, 640, 281, 475, 516, 547, 546}, {94, 102, 78, 426, 144, 145, 111, 688, 559, 468}, {421, 429, 52, 490, 476, 475, 451, 517, 516, 546}, {364, 103, 73, 4, 522, 149, 412, 416, 153, 77}, {420, 227, 424, 50, 527, 571, 437, 438, 235, 436}, {104, 80, 5, 428, 152, 84, 156, 689, 473, 478}, {227, 51, 52, 424, 260, 55, 255, 571, 456, 453}, {487, 289, 293, 287, 600, 313, 601, 662, 331, 328}, {166, 159, 288, 488, 208, 651, 680, 690, 682, 684}, {289, 161, 353, 487, 586, 562, 578, 600, 564, 566}, {482, 485, 489, 417, 548, 495, 539, 627, 544, 582}, {50, 227, 424, 51, 235, 571, 436, 54, 260, 456}, {488, 489, 287, 292, 538, 630, 661, 622, 623, 330}, {482, 483, 157, 488, 535, 616, 665, 536, 537, 645}, {80, 420, 104, 96, 445, 657, 152, 126, 656, 150}, {232, 104, 45, 5, 691, 151, 279, 286, 156, 49}, {288, 488, 287, 292, 684, 661, 329, 301, 622, 330}, {295, 289, 487, 287, 310, 600, 679, 333, 331, 662}, {157, 161, 163, 487, 202, 192, 201, 644, 564, 602}, {483, 482, 164, 98, 535, 692, 654, 694, 693, 558}, {3, 296, 85, 427, 350, 338, 88, 479, 631, 471}, {92, 483, 93, 98, 530, 668, 133, 135, 694, 110}, {95, 484, 100, 225, 554, 655, 115, 593, 636, 695}, {231, 224, 490, 57, 273, 545, 547, 274, 240, 687}, {64, 289, 353, 357, 311, 578, 365, 367, 659, 366}, {2, 297, 24, 168, 349, 344, 28, 218, 696, 217}, {361, 297, 168, 353, 681, 696, 652, 402, 577, 697}, {353, 161, 168, 29, 562, 212, 697, 370, 181, 213}, {289, 295, 487, 357, 310, 679, 600, 659, 512, 660}, {352, 353, 487, 357, 393, 566, 639, 394, 366, 660}, {361, 353, 168, 29, 402, 697, 652, 403, 370, 213}, {484, 229, 100, 225, 574, 506, 655, 636, 242, 695}, {104, 223, 232, 45, 648, 271, 691, 151, 247, 279}, {160, 164, 8, 98, 177, 176, 178, 678, 558, 109}, {164, 9, 8, 98, 197, 12, 176, 558, 131, 109}, {165, 161, 358, 29, 180, 563, 555, 179, 181, 368}, {297, 361, 168, 2, 681, 652, 696, 349, 414, 218}, {161, 353, 358, 29, 562, 369, 563, 181, 370, 368}, {230, 37, 38, 360, 261, 41, 252, 605, 392, 383}, {43, 95, 100, 225, 114, 115, 116, 243, 593, 695}, {420, 80, 104, 428, 445, 152, 657, 469, 473, 689}, {232, 104, 5, 428, 691, 156, 286, 642, 689, 478}, {59, 299, 233, 291, 346, 507, 282, 323, 345, 647}, {355, 363, 66, 291, 407, 409, 382, 664, 646, 318}, {158, 94, 418, 426, 540, 673, 614, 677, 688, 467}, {87, 429, 298, 1, 477, 603, 343, 91, 481, 348}, {420, 227, 485, 424, 527, 526, 528, 437, 571, 543}, {482, 422, 418, 99, 626, 434, 618, 674, 569, 666}, {229, 43, 100, 225, 241, 116, 506, 242, 243, 695}, {294, 486, 287, 291, 609, 629, 334, 322, 511, 335}, {17, 166, 419, 159, 216, 698, 444, 188, 208, 699}, {419, 166, 17, 427, 698, 216, 444, 472, 613, 474}, {166, 488, 419, 159, 690, 634, 698, 208, 682, 699}, {419, 488, 166, 427, 634, 690, 698, 472, 633, 613}, {160, 98, 483, 164, 678, 694, 588, 177, 558, 654}, {483, 98, 160, 93, 694, 678, 588, 668, 110, 670}, {226, 360, 486, 355, 700, 701, 610, 663, 375, 658}, {360, 36, 226, 230, 376, 246, 700, 605, 244, 245}, {226, 36, 360, 355, 246, 376, 700, 663, 374, 375}, {93, 169, 362, 101, 568, 671, 702, 142, 567, 667}, {93, 362, 71, 101, 702, 405, 107, 142, 667, 141}, {71, 362, 93, 354, 405, 702, 107, 373, 404, 669}, {489, 424, 417, 485, 572, 464, 582, 495, 543, 544}, {417, 424, 489, 421, 464, 572, 582, 465, 452, 685}, {102, 10, 158, 94, 148, 182, 703, 144, 119, 540}, {158, 10, 102, 167, 182, 148, 703, 206, 214, 557}, {102, 158, 426, 94, 703, 677, 559, 144, 540, 688}, {426, 158, 102, 167, 677, 703, 559, 549, 206, 557}, {421, 489, 227, 424, 685, 570, 704, 452, 572, 571}, {52, 421, 227, 424, 451, 704, 255, 453, 452, 571}, {489, 227, 222, 224, 570, 263, 501, 705, 254, 265}, {489, 222, 227, 485, 501, 263, 570, 495, 515, 526}, {87, 425, 292, 490, 448, 621, 315, 497, 533, 499}, {292, 425, 87, 86, 621, 448, 315, 324, 457, 90}, {104, 420, 232, 223, 657, 706, 691, 648, 529, 271}, {104, 232, 420, 428, 691, 706, 657, 689, 642, 469}, {232, 420, 50, 223, 706, 438, 272, 271, 529, 237}, {232, 50, 420, 428, 272, 438, 706, 642, 470, 469}, {226, 484, 360, 230, 635, 607, 700, 245, 606, 605}, {226, 360, 484, 486, 700, 607, 635, 610, 701, 502}, {486, 360, 352, 355, 701, 399, 637, 658, 375, 397}, {352, 360, 486, 484, 399, 701, 637, 598, 607, 502}, {162, 488, 157, 159, 707, 645, 198, 189, 682, 200}, {157, 488, 162, 482, 645, 707, 198, 665, 536, 619}, {490, 57, 429, 231, 687, 708, 516, 547, 274, 640}, {429, 57, 490, 298, 708, 687, 516, 603, 339, 534}, {57, 1, 429, 231, 60, 481, 708, 274, 284, 640}, {429, 1, 57, 298, 481, 60, 708, 603, 348, 339}, {158, 98, 482, 94, 541, 693, 617, 540, 117, 672}, {482, 98, 158, 164, 693, 541, 617, 692, 558, 183}, {353, 297, 161, 289, 577, 709, 562, 578, 341, 586}, {353, 161, 297, 168, 562, 709, 577, 697, 212, 696}, {161, 297, 24, 289, 709, 344, 191, 586, 341, 312}, {161, 24, 297, 168, 191, 344, 709, 212, 217, 696}, {159, 293, 487, 163, 650, 601, 710, 174, 584, 602}, {487, 293, 159, 488, 601, 650, 710, 551, 683, 682}, {159, 487, 157, 163, 710, 644, 200, 174, 602, 201}, {157, 487, 159, 488, 644, 710, 200, 645, 551, 682}, {290, 228, 486, 294, 686, 612, 628, 307, 556, 609}, {290, 486, 228, 489, 628, 612, 686, 624, 503, 711}, {485, 99, 420, 422, 676, 712, 528, 576, 569, 446}, {420, 99, 485, 96, 712, 676, 528, 656, 127, 675}, {99, 80, 420, 422, 128, 445, 712, 569, 447, 446}, {420, 80, 99, 96, 445, 128, 712, 656, 126, 127}, {96, 484, 229, 100, 713, 574, 505, 124, 655, 506}, {92, 96, 484, 485, 140, 713, 531, 532, 675, 492}, {92, 484, 96, 100, 531, 713, 140, 139, 655, 124}, {161, 358, 483, 165, 563, 643, 714, 180, 555, 587}, {483, 358, 161, 487, 643, 563, 714, 550, 565, 564}, {161, 483, 157, 165, 714, 616, 202, 180, 587, 205}, {157, 483, 161, 487, 616, 714, 202, 644, 550, 564}, {362, 31, 160, 354, 408, 185, 715, 404, 377, 590}, {160, 31, 362, 169, 185, 408, 715, 210, 215, 671}, {362, 160, 93, 354, 715, 670, 702, 404, 590, 669}, {93, 160, 362, 169, 670, 715, 702, 568, 210, 671}, {482, 164, 157, 483, 692, 203, 665, 535, 654, 616}, {157, 164, 482, 158, 203, 692, 665, 199, 183, 617}, {228, 489, 222, 224, 711, 501, 266, 239, 705, 265}, {222, 489, 228, 486, 501, 711, 266, 504, 503, 612}, {288, 166, 427, 296, 680, 613, 716, 336, 604, 631}, {288, 427, 166, 488, 716, 613, 680, 684, 633, 690}, {85, 288, 427, 296, 300, 716, 471, 338, 336, 631}, {85, 427, 288, 488, 471, 716, 300, 632, 633, 684}, {484, 223, 96, 229, 575, 649, 713, 574, 248, 505}, {484, 96, 223, 485, 713, 649, 575, 492, 675, 525}, {488, 293, 287, 487, 683, 328, 661, 551, 601, 662}, {287, 293, 488, 288, 328, 683, 661, 329, 304, 684}, {419, 488, 162, 159, 634, 707, 717, 699, 682, 189}, {162, 419, 17, 423, 717, 444, 190, 561, 443, 442}, {17, 419, 162, 159, 444, 717, 190, 188, 699, 189}, {482, 98, 92, 94, 693, 135, 573, 672, 117, 136}, {92, 98, 482, 483, 135, 693, 573, 530, 694, 535}, {358, 487, 352, 353, 565, 639, 395, 369, 566, 393}, {352, 487, 358, 483, 639, 565, 395, 595, 550, 643}, {359, 483, 93, 97, 596, 668, 718, 653, 641, 105}, {359, 93, 483, 354, 718, 668, 596, 372, 669, 589}, {71, 359, 93, 97, 371, 718, 107, 106, 653, 105}, {71, 93, 359, 354, 107, 718, 371, 373, 669, 372}, {52, 490, 227, 421, 546, 719, 255, 451, 517, 704}, {227, 490, 52, 224, 719, 546, 255, 254, 545, 253}, {490, 489, 227, 421, 625, 570, 719, 517, 685, 704}, {227, 489, 490, 224, 570, 625, 719, 254, 705, 545}, {57, 490, 228, 224, 687, 720, 238, 240, 545, 239}, {228, 490, 57, 290, 720, 687, 238, 686, 498, 306}, {490, 489, 228, 224, 625, 711, 720, 545, 705, 239}, {228, 489, 490, 290, 711, 625, 720, 686, 624, 498}, {162, 419, 482, 488, 717, 721, 619, 707, 634, 536}, {482, 419, 162, 423, 721, 717, 619, 620, 443, 561}, {419, 417, 482, 488, 461, 627, 721, 634, 581, 536}, {482, 417, 419, 423, 627, 461, 721, 620, 460, 443}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:triangle_6
+   + id             : mesh:connectivities:_triangle_6
    + size           : 240
    + nb_component   : 6
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{93, 97, 71, 105, 106, 107}, {93, 8, 98, 108, 109, 110}, {94, 78, 99, 111, 112, 113}, {43, 95, 100, 114, 115, 116}, {94, 98, 10, 117, 118, 119}, {73, 97, 95, 120, 121, 122}, {45, 100, 96, 123, 124, 125}, {80, 96, 99, 126, 127, 128}, {71, 97, 72, 106, 129, 75}, {78, 79, 99, 82, 130, 112}, {8, 9, 98, 12, 131, 109}, {43, 100, 44, 116, 132, 47}, {72, 97, 73, 129, 120, 76}, {9, 10, 98, 13, 118, 131}, {79, 80, 99, 83, 128, 130}, {44, 100, 45, 132, 123, 48}, {93, 92, 97, 133, 134, 105}, {93, 98, 92, 110, 135, 133}, {94, 92, 98, 136, 135, 117}, {92, 95, 97, 137, 121, 134}, {94, 99, 92, 113, 138, 136}, {92, 100, 95, 139, 115, 137}, {92, 99, 96, 138, 127, 140}, {92, 96, 100, 140, 124, 139}, {93, 71, 101, 107, 141, 142}, {93, 101, 8, 142, 143, 108}, {94, 102, 78, 144, 145, 111}, {43, 103, 95, 146, 147, 114}, {94, 10, 102, 119, 148, 144}, {73, 95, 103, 122, 147, 149}, {45, 96, 104, 125, 150, 151}, {80, 104, 96, 152, 150, 126}, {4, 73, 103, 77, 149, 153}, {6, 101, 71, 154, 141, 74}, {7, 102, 10, 155, 148, 14}, {7, 78, 102, 81, 145, 155}, {6, 8, 101, 11, 143, 154}, {5, 104, 80, 156, 152, 84}, {4, 103, 43, 153, 146, 46}, {5, 45, 104, 49, 151, 156}, {15, 162, 158, 170, 171, 172}, {22, 163, 159, 173, 174, 175}, {8, 164, 160, 176, 177, 178}, {29, 165, 161, 179, 180, 181}, {10, 158, 164, 182, 183, 184}, {31, 160, 165, 185, 186, 187}, {17, 159, 162, 188, 189, 190}, {24, 161, 163, 191, 192, 193}, {22, 23, 163, 26, 194, 173}, {15, 16, 162, 19, 195, 170}, {29, 30, 165, 33, 196, 179}, {8, 9, 164, 12, 197, 176}, {16, 17, 162, 20, 190, 195}, {23, 24, 163, 27, 193, 194}, {9, 10, 164, 13, 184, 197}, {30, 31, 165, 34, 187, 196}, {158, 162, 157, 171, 198, 199}, {159, 157, 162, 200, 198, 189}, {159, 163, 157, 174, 201, 200}, {161, 157, 163, 202, 201, 192}, {158, 157, 164, 199, 203, 183}, {160, 164, 157, 177, 203, 204}, {160, 157, 165, 204, 205, 186}, {161, 165, 157, 180, 205, 202}, {15, 158, 167, 172, 206, 207}, {22, 159, 166, 175, 208, 209}, {8, 160, 169, 178, 210, 211}, {29, 161, 168, 181, 212, 213}, {10, 167, 158, 214, 206, 182}, {31, 169, 160, 215, 210, 185}, {17, 166, 159, 216, 208, 188}, {24, 168, 161, 217, 212, 191}, {2, 168, 24, 218, 217, 28}, {3, 166, 17, 219, 216, 21}, {6, 169, 31, 220, 215, 35}, {7, 167, 10, 221, 214, 14}, {7, 15, 167, 18, 207, 221}, {3, 22, 166, 25, 209, 219}, {6, 8, 169, 11, 211, 220}, {2, 29, 168, 32, 213, 218}, {50, 227, 223, 235, 236, 237}, {57, 228, 224, 238, 239, 240}, {43, 229, 225, 241, 242, 243}, {36, 230, 226, 244, 245, 246}, {45, 223, 229, 247, 248, 249}, {38, 225, 230, 250, 251, 252}, {52, 224, 227, 253, 254, 255}, {59, 226, 228, 256, 257, 258}, {57, 58, 228, 61, 259, 238}, {50, 51, 227, 54, 260, 235}, {36, 37, 230, 40, 261, 244}, {43, 44, 229, 47, 262, 241}, {51, 52, 227, 55, 255, 260}, {58, 59, 228, 62, 258, 259}, {44, 45, 229, 48, 249, 262}, {37, 38, 230, 41, 252, 261}, {223, 227, 222, 236, 263, 264}, {224, 222, 227, 265, 263, 254}, {224, 228, 222, 239, 266, 265}, {222, 228, 226, 266, 257, 267}, {223, 222, 229, 264, 268, 248}, {222, 225, 229, 269, 242, 268}, {222, 230, 225, 270, 251, 269}, {222, 226, 230, 267, 245, 270}, {50, 223, 232, 237, 271, 272}, {57, 224, 231, 240, 273, 274}, {43, 225, 234, 243, 275, 276}, {36, 226, 233, 246, 277, 278}, {45, 232, 223, 279, 271, 247}, {38, 234, 225, 280, 275, 250}, {52, 231, 224, 281, 273, 253}, {59, 233, 226, 282, 277, 256}, {0, 233, 59, 283, 282, 63}, {1, 231, 52, 284, 281, 56}, {4, 234, 38, 285, 280, 42}, {5, 232, 45, 286, 279, 49}, {5, 50, 232, 53, 272, 286}, {1, 57, 231, 60, 274, 284}, {4, 43, 234, 46, 276, 285}, {0, 36, 233, 39, 278, 283}, {85, 288, 292, 300, 301, 302}, {22, 293, 288, 303, 304, 305}, {57, 290, 294, 306, 307, 308}, {64, 295, 289, 309, 310, 311}, {24, 289, 293, 312, 313, 314}, {87, 292, 290, 315, 316, 317}, {66, 291, 295, 318, 319, 320}, {59, 294, 291, 321, 322, 323}, {85, 292, 86, 302, 324, 89}, {22, 23, 293, 26, 325, 303}, {57, 294, 58, 308, 326, 61}, {64, 65, 295, 68, 327, 309}, {86, 292, 87, 324, 315, 90}, {23, 24, 293, 27, 314, 325}, {65, 66, 295, 69, 320, 327}, {58, 294, 59, 326, 321, 62}, {288, 293, 287, 304, 328, 329}, {288, 287, 292, 329, 330, 301}, {289, 287, 293, 331, 328, 313}, {290, 292, 287, 316, 330, 332}, {289, 295, 287, 310, 333, 331}, {290, 287, 294, 332, 334, 307}, {291, 294, 287, 322, 334, 335}, {291, 287, 295, 335, 333, 319}, {22, 288, 296, 305, 336, 337}, {85, 296, 288, 338, 336, 300}, {57, 298, 290, 339, 340, 306}, {64, 289, 297, 311, 341, 342}, {87, 290, 298, 317, 340, 343}, {24, 297, 289, 344, 341, 312}, {59, 291, 299, 323, 345, 346}, {66, 299, 291, 347, 345, 318}, {1, 87, 298, 91, 343, 348}, {2, 297, 24, 349, 344, 28}, {3, 296, 85, 350, 338, 88}, {3, 22, 296, 25, 337, 350}, {1, 298, 57, 348, 339, 60}, {2, 64, 297, 67, 342, 349}, {0, 59, 299, 63, 346, 351}, {0, 299, 66, 351, 347, 70}, {64, 353, 357, 365, 366, 367}, {29, 358, 353, 368, 369, 370}, {71, 359, 354, 371, 372, 373}, {36, 355, 360, 374, 375, 376}, {31, 354, 358, 377, 378, 379}, {66, 357, 355, 380, 381, 382}, {38, 360, 356, 383, 384, 385}, {73, 356, 359, 386, 387, 388}, {64, 357, 65, 367, 389, 68}, {71, 72, 359, 75, 390, 371}, {29, 30, 358, 33, 391, 368}, {36, 360, 37, 376, 392, 40}, {65, 357, 66, 389, 380, 69}, {30, 31, 358, 34, 379, 391}, {72, 73, 359, 76, 388, 390}, {37, 360, 38, 392, 383, 41}, {353, 352, 357, 393, 394, 366}, {353, 358, 352, 369, 395, 393}, {354, 352, 358, 396, 395, 378}, {355, 357, 352, 381, 394, 397}, {354, 359, 352, 372, 398, 396}, {355, 352, 360, 397, 399, 375}, {356, 352, 359, 400, 398, 387}, {356, 360, 352, 384, 399, 400}, {64, 361, 353, 401, 402, 365}, {29, 353, 361, 370, 402, 403}, {71, 354, 362, 373, 404, 405}, {36, 363, 355, 406, 407, 374}, {31, 362, 354, 408, 404, 377}, {66, 355, 363, 382, 407, 409}, {38, 356, 364, 385, 410, 411}, {73, 364, 356, 412, 410, 386}, {0, 66, 363, 70, 409, 413}, {2, 361, 64, 414, 401, 67}, {6, 362, 31, 415, 408, 35}, {6, 71, 362, 74, 405, 415}, {2, 29, 361, 32, 403, 414}, {4, 364, 73, 416, 412, 77}, {0, 363, 36, 413, 406, 39}, {4, 38, 364, 42, 411, 416}, {15, 418, 423, 430, 431, 432}, {78, 422, 418, 433, 434, 435}, {50, 424, 420, 436, 437, 438}, {85, 419, 425, 439, 440, 441}, {17, 423, 419, 442, 443, 444}, {80, 420, 422, 445, 446, 447}, {87, 425, 421, 448, 449, 450}, {52, 421, 424, 451, 452, 453}, {15, 423, 16, 432, 454, 19}, {78, 79, 422, 82, 455, 433}, {50, 51, 424, 54, 456, 436}, {85, 425, 86, 441, 457, 89}, {79, 80, 422, 83, 447, 455}, {16, 423, 17, 454, 442, 20}, {86, 425, 87, 457, 448, 90}, {51, 52, 424, 55, 453, 456}, {417, 418, 422, 458, 434, 459}, {417, 423, 418, 460, 431, 458}, {419, 423, 417, 443, 460, 461}, {420, 417, 422, 462, 459, 446}, {419, 417, 425, 461, 463, 440}, {420, 424, 417, 437, 464, 462}, {421, 417, 424, 465, 464, 452}, {421, 425, 417, 449, 463, 465}, {15, 426, 418, 466, 467, 430}, {78, 418, 426, 435, 467, 468}, {50, 420, 428, 438, 469, 470}, {85, 427, 419, 471, 472, 439}, {80, 428, 420, 473, 469, 445}, {17, 419, 427, 444, 472, 474}, {52, 429, 421, 475, 476, 451}, {87, 421, 429, 450, 476, 477}, {5, 428, 80, 478, 473, 84}, {3, 17, 427, 21, 474, 479}, {7, 78, 426, 81, 468, 480}, {7, 426, 15, 480, 466, 18}, {5, 50, 428, 53, 470, 478}, {3, 427, 85, 479, 471, 88}, {1, 429, 52, 481, 475, 56}, {1, 87, 429, 91, 477, 481}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 722
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {0.125, 1, 1}, {0.375, 1, 1}, {0.625, 1, 1}, {0.875, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {1, 1, 0.875}, {1, 1, 0.625}, {1, 1, 0.375}, {1, 1, 0.125}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0.875, 1, 0}, {0.625, 1, 0}, {0.375, 1, 0}, {0.125, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 1, 0.125}, {0, 1, 0.375}, {0, 1, 0.625}, {0, 1, 0.875}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0, 0, 0.125}, {0, 0, 0.375}, {0, 0, 0.625}, {0, 0, 0.875}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {0.125, 0, 1}, {0.375, 0, 1}, {0.625, 0, 1}, {0.875, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {1, 0, 0.875}, {1, 0, 0.625}, {1, 0, 0.375}, {1, 0, 0.125}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0.875, 0, 0}, {0.625, 0, 0}, {0.375, 0, 0}, {0.125, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.875, 0}, {0, 0.625, 0}, {0, 0.375, 0}, {0, 0.125, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {0, 0.875, 1}, {0, 0.625, 1}, {0, 0.375, 1}, {0, 0.125, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.875, 1}, {1, 0.625, 1}, {1, 0.375, 1}, {1, 0.125, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {1, 0.875, 0}, {1, 0.625, 0}, {1, 0.375, 0}, {1, 0.125, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.234692, 0.610874, 1}, {0.095431, 0.625135, 1}, {0.139261, 0.735739, 1}, {0.264261, 0.860739, 1}, {0.375, 0.904691, 1}, {0.389261, 0.76543, 1}, {0.860739, 0.735739, 1}, {0.904569, 0.625135, 1}, {0.765308, 0.610874, 1}, {0.264261, 0.139383, 1}, {0.389261, 0.234962, 1}, {0.375, 0.0955798, 1}, {0.610739, 0.76543, 1}, {0.625, 0.904691, 1}, {0.735739, 0.860739, 1}, {0.095431, 0.375135, 1}, {0.234692, 0.389518, 1}, {0.139261, 0.264383, 1}, {0.625, 0.0955798, 1}, {0.610739, 0.234962, 1}, {0.735739, 0.139383, 1}, {0.860739, 0.264383, 1}, {0.765308, 0.389518, 1}, {0.904569, 0.375135, 1}, {0.095431, 0.500135, 1}, {0.904569, 0.500135, 1}, {0.5, 0.904691, 1}, {0.5, 0.0955798, 1}, {0.389261, 0.611834, 1}, {0.345431, 0.501231, 1}, {0.5, 0.655786, 1}, {0.610739, 0.611834, 1}, {0.389261, 0.390478, 1}, {0.654569, 0.501231, 1}, {0.5, 0.346675, 1}, {0.610739, 0.390478, 1}, {0.0709532, 0.804047, 1}, {0.210214, 0.789786, 1}, {0.195953, 0.929047, 1}, {0.789786, 0.789786, 1}, {0.929047, 0.804047, 1}, {0.195953, 0.0709735, 1}, {0.210214, 0.210356, 1}, {0.804047, 0.929047, 1}, {0.0709532, 0.195973, 1}, {0.789786, 0.210356, 1}, {0.804047, 0.0709735, 1}, {0.929047, 0.195973, 1}, {0.0709532, 0.0709735, 1}, {0.0709532, 0.929047, 1}, {0.929047, 0.929047, 1}, {0.929047, 0.0709735, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.904569, 1, 0.625}, {0.765308, 1, 0.610739}, {0.860739, 1, 0.735739}, {0.625, 1, 0.095431}, {0.610739, 1, 0.234692}, {0.735739, 1, 0.139261}, {0.375, 1, 0.904569}, {0.389261, 1, 0.765308}, {0.264261, 1, 0.860739}, {0.095431, 1, 0.375}, {0.234692, 1, 0.389261}, {0.139261, 1, 0.264261}, {0.735739, 1, 0.860739}, {0.610739, 1, 0.765308}, {0.625, 1, 0.904569}, {0.139261, 1, 0.735739}, {0.234692, 1, 0.610739}, {0.095431, 1, 0.625}, {0.860739, 1, 0.264261}, {0.765308, 1, 0.389261}, {0.904569, 1, 0.375}, {0.264261, 1, 0.139261}, {0.389261, 1, 0.234692}, {0.375, 1, 0.095431}, {0.5, 1, 0.095431}, {0.904569, 1, 0.5}, {0.095431, 1, 0.5}, {0.5, 1, 0.904569}, {0.654569, 1, 0.5}, {0.610739, 1, 0.610739}, {0.610739, 1, 0.389261}, {0.5, 1, 0.345431}, {0.389261, 1, 0.389261}, {0.5, 1, 0.654569}, {0.389261, 1, 0.610739}, {0.345431, 1, 0.5}, {0.789786, 1, 0.789786}, {0.929047, 1, 0.804047}, {0.789786, 1, 0.210214}, {0.804047, 1, 0.0709532}, {0.210214, 1, 0.789786}, {0.195953, 1, 0.929047}, {0.210214, 1, 0.210214}, {0.0709532, 1, 0.195953}, {0.804047, 1, 0.929047}, {0.0709532, 1, 0.804047}, {0.929047, 1, 0.195953}, {0.195953, 1, 0.0709532}, {0.0709532, 1, 0.0709532}, {0.929047, 1, 0.0709532}, {0.0709532, 1, 0.929047}, {0.929047, 1, 0.929047}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.904691, 0, 0.625}, {0.76543, 0, 0.610739}, {0.860739, 0, 0.735739}, {0.625135, 0, 0.095431}, {0.610874, 0, 0.234692}, {0.735739, 0, 0.139261}, {0.375135, 0, 0.904569}, {0.389518, 0, 0.765308}, {0.264383, 0, 0.860739}, {0.0955798, 0, 0.375}, {0.234962, 0, 0.389261}, {0.139383, 0, 0.264261}, {0.735739, 0, 0.860739}, {0.610874, 0, 0.765308}, {0.625135, 0, 0.904569}, {0.139383, 0, 0.735739}, {0.234962, 0, 0.610739}, {0.0955798, 0, 0.625}, {0.860739, 0, 0.264261}, {0.76543, 0, 0.389261}, {0.904691, 0, 0.375}, {0.264383, 0, 0.139261}, {0.389518, 0, 0.234692}, {0.375135, 0, 0.095431}, {0.500135, 0, 0.095431}, {0.904691, 0, 0.5}, {0.0955798, 0, 0.5}, {0.500135, 0, 0.904569}, {0.655786, 0, 0.5}, {0.611834, 0, 0.610739}, {0.611834, 0, 0.389261}, {0.501231, 0, 0.345431}, {0.390478, 0, 0.389261}, {0.501231, 0, 0.654569}, {0.390478, 0, 0.610739}, {0.346675, 0, 0.5}, {0.789786, 0, 0.789786}, {0.929047, 0, 0.804047}, {0.789786, 0, 0.210214}, {0.804047, 0, 0.0709532}, {0.210356, 0, 0.789786}, {0.195973, 0, 0.929047}, {0.210356, 0, 0.210214}, {0.0709735, 0, 0.195953}, {0.804047, 0, 0.929047}, {0.0709735, 0, 0.804047}, {0.929047, 0, 0.195953}, {0.195973, 0, 0.0709532}, {0.0709735, 0, 0.0709532}, {0.929047, 0, 0.0709532}, {0.0709735, 0, 0.929047}, {0.929047, 0, 0.929047}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0.860739, 0.735739, 0}, {0.765308, 0.610739, 0}, {0.904569, 0.625, 0}, {0.625, 0.904569, 0}, {0.610739, 0.765308, 0}, {0.735739, 0.860739, 0}, {0.735739, 0.139261, 0}, {0.610739, 0.234692, 0}, {0.625, 0.095431, 0}, {0.095431, 0.625, 0}, {0.234692, 0.610739, 0}, {0.139261, 0.735739, 0}, {0.264261, 0.860739, 0}, {0.389261, 0.765308, 0}, {0.375, 0.904569, 0}, {0.904569, 0.375, 0}, {0.765308, 0.389261, 0}, {0.860739, 0.264261, 0}, {0.139261, 0.264261, 0}, {0.234692, 0.389261, 0}, {0.095431, 0.375, 0}, {0.375, 0.095431, 0}, {0.389261, 0.234692, 0}, {0.264261, 0.139261, 0}, {0.904569, 0.5, 0}, {0.5, 0.904569, 0}, {0.5, 0.095431, 0}, {0.095431, 0.5, 0}, {0.5, 0.654569, 0}, {0.610739, 0.610739, 0}, {0.654569, 0.5, 0}, {0.389261, 0.610739, 0}, {0.610739, 0.389261, 0}, {0.345431, 0.5, 0}, {0.5, 0.345431, 0}, {0.389261, 0.389261, 0}, {0.789786, 0.789786, 0}, {0.804047, 0.929047, 0}, {0.929047, 0.804047, 0}, {0.804047, 0.0709532, 0}, {0.789786, 0.210214, 0}, {0.210214, 0.789786, 0}, {0.0709532, 0.804047, 0}, {0.929047, 0.195953, 0}, {0.195953, 0.929047, 0}, {0.210214, 0.210214, 0}, {0.195953, 0.0709532, 0}, {0.0709532, 0.195953, 0}, {0.929047, 0.0709532, 0}, {0.0709532, 0.929047, 0}, {0.929047, 0.929047, 0}, {0.0709532, 0.0709532, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {0, 0.735739, 0.139261}, {0, 0.610739, 0.234692}, {0, 0.625, 0.095431}, {0, 0.904569, 0.375}, {0, 0.765308, 0.389261}, {0, 0.860739, 0.264261}, {0, 0.625, 0.904569}, {0, 0.610739, 0.765308}, {0, 0.735739, 0.860739}, {0, 0.139261, 0.264261}, {0, 0.234692, 0.389261}, {0, 0.095431, 0.375}, {0, 0.860739, 0.735739}, {0, 0.765308, 0.610739}, {0, 0.904569, 0.625}, {0, 0.375, 0.095431}, {0, 0.389261, 0.234692}, {0, 0.264261, 0.139261}, {0, 0.095431, 0.625}, {0, 0.234692, 0.610739}, {0, 0.139261, 0.735739}, {0, 0.264261, 0.860739}, {0, 0.389261, 0.765308}, {0, 0.375, 0.904569}, {0, 0.5, 0.095431}, {0, 0.5, 0.904569}, {0, 0.904569, 0.5}, {0, 0.095431, 0.5}, {0, 0.610739, 0.389261}, {0, 0.5, 0.345431}, {0, 0.654569, 0.5}, {0, 0.610739, 0.610739}, {0, 0.389261, 0.389261}, {0, 0.5, 0.654569}, {0, 0.345431, 0.5}, {0, 0.389261, 0.610739}, {0, 0.804047, 0.0709532}, {0, 0.789786, 0.210214}, {0, 0.929047, 0.195953}, {0, 0.789786, 0.789786}, {0, 0.804047, 0.929047}, {0, 0.0709532, 0.195953}, {0, 0.210214, 0.210214}, {0, 0.929047, 0.804047}, {0, 0.195953, 0.0709532}, {0, 0.210214, 0.789786}, {0, 0.0709532, 0.804047}, {0, 0.195953, 0.929047}, {0, 0.0709532, 0.0709532}, {0, 0.929047, 0.0709532}, {0, 0.929047, 0.929047}, {0, 0.0709532, 0.929047}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {1, 0.860678, 0.735678}, {1, 0.76518, 0.610611}, {1, 0.904501, 0.624932}, {1, 0.624932, 0.904501}, {1, 0.610611, 0.76518}, {1, 0.735678, 0.860678}, {1, 0.0953701, 0.624939}, {1, 0.234631, 0.610678}, {1, 0.139261, 0.735739}, {1, 0.735739, 0.139261}, {1, 0.610678, 0.234631}, {1, 0.624939, 0.0953701}, {1, 0.904501, 0.374932}, {1, 0.76524, 0.389193}, {1, 0.860739, 0.264261}, {1, 0.264261, 0.860739}, {1, 0.389193, 0.76524}, {1, 0.374932, 0.904501}, {1, 0.374939, 0.0953701}, {1, 0.3892, 0.234631}, {1, 0.264261, 0.139261}, {1, 0.139261, 0.264261}, {1, 0.234631, 0.3892}, {1, 0.0953701, 0.374939}, {1, 0.904501, 0.499932}, {1, 0.499932, 0.904501}, {1, 0.0953701, 0.499939}, {1, 0.499939, 0.0953701}, {1, 0.610131, 0.610131}, {1, 0.499385, 0.653954}, {1, 0.653954, 0.499385}, {1, 0.610191, 0.388713}, {1, 0.388713, 0.610191}, {1, 0.499391, 0.344822}, {1, 0.344822, 0.499391}, {1, 0.388713, 0.388713}, {1, 0.929037, 0.804037}, {1, 0.789715, 0.789715}, {1, 0.804037, 0.929037}, {1, 0.210214, 0.789786}, {1, 0.0709532, 0.804047}, {1, 0.804047, 0.0709532}, {1, 0.789786, 0.210214}, {1, 0.195953, 0.929047}, {1, 0.929047, 0.195953}, {1, 0.0709532, 0.195953}, {1, 0.210214, 0.210214}, {1, 0.195953, 0.0709532}, {1, 0.0709532, 0.929047}, {1, 0.929047, 0.0709532}, {1, 0.929037, 0.929037}, {1, 0.0709532, 0.0709532}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}, {0.403787, 0.502163, 0.604301}, {0.59395, 0.335588, 0.588613}, {0.57425, 0.502163, 0.604301}, {0.533055, 0.519268, 0.479373}, {0.723218, 0.352693, 0.463685}, {0.552756, 0.352693, 0.463685}, {0.907719, 0.227933, 0.0932632}, {0.768458, 0.242194, 0.0932632}, {0.812288, 0.352933, 0.0932632}, {0.462839, 0.167794, 0.544306}, {0.592107, 0.184899, 0.419378}, {0.423487, 0.335588, 0.41815}, {0.552756, 0.352693, 0.293222}, {0.462839, 0.167794, 0.373844}, {0.610874, 0.139383, 0.904569}, {0.500135, 0.0955798, 0.904569}, {0.141927, 0.0709532, 0.0709532}, {0.0709735, 0.0709532, 0.141906}, {0.0709532, 0.141906, 0.0709532}, {0.307175, 0.417794, 0.123844}, {0.351005, 0.307055, 0.123844}, {0.095431, 0.5, 0.095431}, {0.139261, 0.389261, 0.095431}, {0.211744, 0.417794, 0.219275}, {0.633302, 0.167794, 0.544306}, {0.907719, 0.173886, 0.164216}, {0.907719, 0.242194, 0.232524}, {0.0709532, 0.210234, 0.860739}, {0.141927, 0.0709735, 0.929047}, {0.0709735, 0.139261, 0.789786}, {0.0709735, 0.0709532, 0.858094}, {0.0709532, 0.141927, 0.929047}, {0.210336, 0.0709735, 0.860739}, {0.139383, 0.139261, 0.721478}, {0.742945, 0.167794, 0.655045}, {0.786897, 0.167794, 0.544306}, {0.904691, 0.139261, 0.610739}, {0.882206, 0.307055, 0.655045}, {0.860739, 0.139261, 0.721478}, {0.442043, 0.585464, 0.809994}, {0.461744, 0.418889, 0.794306}, {0.632206, 0.418889, 0.794306}, {0.907719, 0.352872, 0.188633}, {0.836765, 0.173886, 0.0932632}, {0.549357, 0.674254, 0.636624}, {0.73952, 0.678141, 0.450474}, {0.57425, 0.672625, 0.433838}, {0.723218, 0.523156, 0.293222}, {0.698326, 0.524784, 0.496008}, {0.721478, 0.860739, 0.860739}, {0.610739, 0.904691, 0.860739}, {0.0709735, 0.139261, 0.210214}, {0.882206, 0.263164, 0.544245}, {0.882206, 0.417246, 0.543759}, {0.768458, 0.102933, 0.232524}, {0.907719, 0.102933, 0.218263}, {0.836765, 0.102933, 0.164216}, {0.73952, 0.507679, 0.620936}, {0.929047, 0.929037, 0.858083}, {0.403787, 0.672625, 0.433838}, {0.59395, 0.676512, 0.247688}, {0.552756, 0.523156, 0.293222}, {0.307175, 0.417929, 0.794306}, {0.351005, 0.307176, 0.794306}, {0.095431, 0.904569, 0.5}, {0.500135, 0.095431, 0.095431}, {0.858094, 0.929047, 0.929047}, {0.5, 0.904691, 0.904569}, {0.929047, 0.858083, 0.929037}, {0.423487, 0.50605, 0.41815}, {0.904569, 0.904501, 0.499932}, {0.139261, 0.860739, 0.278522}, {0.139261, 0.904569, 0.389261}, {0.351005, 0.838256, 0.263105}, {0.211744, 0.742825, 0.373844}, {0.211744, 0.698995, 0.263105}, {0.141906, 0.929047, 0.929047}, {0.210214, 0.860739, 0.929047}, {0.904569, 0.500068, 0.904501}, {0.745703, 0.184899, 0.419378}, {0.904691, 0.0953701, 0.499939}, {0.841012, 0.280269, 0.419318}, {0.607314, 0.59098, 0.82663}, {0.461879, 0.167794, 0.698875}, {0.572483, 0.167794, 0.655045}, {0.882206, 0.417726, 0.698808}, {0.0709532, 0.789786, 0.139261}, {0.139261, 0.721478, 0.139261}, {0.882206, 0.588195, 0.219214}, {0.841012, 0.434839, 0.264749}, {0.882206, 0.587709, 0.373296}, {0.841012, 0.434352, 0.418831}, {0.389261, 0.904569, 0.139261}, {0.5, 0.904569, 0.095431}, {0.389383, 0.095431, 0.139261}, {0.278522, 0.860739, 0.139261}, {0.287474, 0.834369, 0.559994}, {0.331304, 0.834369, 0.670734}, {0.192043, 0.695108, 0.670734}, {0.139261, 0.860739, 0.721478}, {0.095431, 0.860739, 0.610739}, {0.139261, 0.278644, 0.860739}, {0.278644, 0.139383, 0.860739}, {0.139261, 0.389383, 0.904569}, {0.192043, 0.584369, 0.559994}, {0.192043, 0.584369, 0.714563}, {0.211744, 0.417794, 0.698875}, {0.211744, 0.417794, 0.544306}, {0.0955798, 0.139261, 0.610739}, {0.351005, 0.698995, 0.123844}, {0.461744, 0.742825, 0.123844}, {0.461744, 0.838256, 0.219275}, {0.929047, 0.141906, 0.0709532}, {0.858094, 0.929047, 0.0709532}, {0.0955798, 0.095431, 0.5}, {0.307323, 0.167794, 0.544306}, {0.211744, 0.263225, 0.544306}, {0.211744, 0.307055, 0.655045}, {0.461744, 0.263225, 0.123844}, {0.351126, 0.167794, 0.263105}, {0.278644, 0.139261, 0.139261}, {0.461879, 0.167794, 0.219275}, {0.929047, 0.929047, 0.141906}, {0.860739, 0.860678, 0.721417}, {0.904569, 0.860678, 0.610678}, {0.442043, 0.834369, 0.559994}, {0.718053, 0.839885, 0.687369}, {0.857314, 0.700563, 0.687308}, {0.761883, 0.839885, 0.57663}, {0.857314, 0.744386, 0.576562}, {0.904569, 0.499939, 0.0953701}, {0.786775, 0.588256, 0.123844}, {0.745581, 0.434899, 0.169378}, {0.701751, 0.32416, 0.169378}, {0.748731, 0.287832, 0.262642}, {0.857314, 0.589817, 0.731131}, {0.857314, 0.589337, 0.576082}, {0.572483, 0.307055, 0.123844}, {0.461744, 0.417794, 0.123844}, {0.591012, 0.434899, 0.169378}, {0.929047, 0.858094, 0.0709532}, {0.882206, 0.713256, 0.123844}, {0.882206, 0.767303, 0.194797}, {0.882206, 0.698995, 0.263105}, {0.351126, 0.167794, 0.433567}, {0.351126, 0.167794, 0.655045}, {0.211744, 0.417794, 0.373844}, {0.423487, 0.50605, 0.247688}, {0.211744, 0.588256, 0.373844}, {0.929047, 0.0709532, 0.141906}, {0.287474, 0.584504, 0.809994}, {0.929047, 0.0709532, 0.858094}, {0.192043, 0.738938, 0.559994}, {0.461744, 0.838256, 0.373844}, {0.632206, 0.838256, 0.373844}, {0.139261, 0.210214, 0.0709532}, {0.210234, 0.139261, 0.0709532}, {0.789786, 0.0709735, 0.860739}, {0.721478, 0.139383, 0.860739}, {0.610739, 0.904569, 0.139261}, {0.721478, 0.860739, 0.139261}, {0.0709532, 0.929047, 0.141906}, {0.095431, 0.500135, 0.904569}, {0.442043, 0.834369, 0.714563}, {0.461744, 0.263374, 0.794306}, {0.860739, 0.278644, 0.860739}, {0.929047, 0.210234, 0.860739}, {0.211744, 0.307055, 0.263105}, {0.139261, 0.610739, 0.095431}, {0.211744, 0.588256, 0.219275}, {0.632206, 0.588256, 0.123844}, {0.461744, 0.588256, 0.123844}, {0.139383, 0.139261, 0.278522}, {0.139261, 0.278522, 0.139261}, {0.607314, 0.839885, 0.57663}, {0.904569, 0.610813, 0.860678}, {0.0709532, 0.858094, 0.929047}, {0.331304, 0.695108, 0.809994}, {0.139261, 0.721478, 0.860739}, {0.278522, 0.860739, 0.860739}, {0.0709532, 0.929047, 0.858094}, {0.718053, 0.700624, 0.82663}, {0.860739, 0.721417, 0.860678}, {0.761883, 0.59002, 0.82663}, {0.742945, 0.307176, 0.794306}, {0.786775, 0.417929, 0.794306}, {0.860739, 0.929037, 0.789776}, {0.389261, 0.904691, 0.860739}, {0.307175, 0.588256, 0.123844}, {0.789786, 0.860739, 0.0709532}, {0.0709532, 0.858094, 0.0709532}, {0.742945, 0.838256, 0.263105}, {0.632206, 0.742825, 0.123844}, {0.742945, 0.698995, 0.123844}, {0.841012, 0.32416, 0.308639}, {0.610874, 0.139261, 0.095431}, {0.782719, 0.102933, 0.0932632}, {0.860739, 0.789776, 0.929037}, {0.929047, 0.141927, 0.929047}, {0.811253, 0.838256, 0.194797}, {0.858094, 0.0709735, 0.929047}, {0.607314, 0.839885, 0.731199}, {0.607314, 0.744576, 0.82663}, {0.442043, 0.73906, 0.809994}, {0.389383, 0.0955798, 0.860739}, {0.141906, 0.929047, 0.0709532}, {0.0709532, 0.860739, 0.210214}, {0.929047, 0.860739, 0.210214}, {0.860739, 0.860739, 0.278522}, {0.139383, 0.095431, 0.389261}, {0.211744, 0.263225, 0.373844}, {0.139261, 0.789786, 0.929047}, {0.789786, 0.929047, 0.860739}, {0.904691, 0.139261, 0.389261}, {0.701751, 0.184899, 0.308639}, {0.929047, 0.139261, 0.789786}, {0.786775, 0.838256, 0.373844}, {0.875, 0.0709532, 0.0709532}, {0.210214, 0.929047, 0.139261}, {0.572483, 0.838256, 0.263105}, {0.591147, 0.184899, 0.264809}, {0.904569, 0.389396, 0.860739}, {0.572483, 0.307176, 0.794306}, {0.331304, 0.834369, 0.449255}, {0.139261, 0.929047, 0.789786}, {0.860739, 0.789786, 0.0709532}, {0.904569, 0.860739, 0.389261}, {0.139261, 0.610739, 0.904569}, {0.812409, 0.102933, 0.343263}, {0.657854, 0.102933, 0.188694}, {0.857314, 0.700624, 0.465891}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:tetrahedron_10
+   + id             : my_fem:jacobians:_tetrahedron_10
    + size           : 1364
    + nb_component   : 1
    + allocated size : 1364
    + memory size    : 11kB
    + values         : {{0.00119768}, {0.00119768}, {0.00119768}, {0.00119768}, {0.000498855}, {0.000498855}, {0.000498855}, {0.000498855}, {0.00127072}, {0.00127072}, {0.00127072}, {0.00127072}, {0.000510867}, {0.000510867}, {0.000510867}, {0.000510867}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00023817}, {0.00023817}, {0.00023817}, {0.00023817}, {0.000731371}, {0.000731371}, {0.000731371}, {0.000731371}, {0.00123415}, {0.00123415}, {0.00123415}, {0.00123415}, {0.000262647}, {0.000262647}, {0.000262647}, {0.000262647}, {0.000229322}, {0.000229322}, {0.000229322}, {0.000229322}, {0.000450497}, {0.000450497}, {0.000450497}, {0.000450497}, {0.000202139}, {0.000202139}, {0.000202139}, {0.000202139}, {0.000887737}, {0.000887737}, {0.000887737}, {0.000887737}, {0.00187262}, {0.00187262}, {0.00187262}, {0.00187262}, {0.000493369}, {0.000493369}, {0.000493369}, {0.000493369}, {0.000265441}, {0.000265441}, {0.000265441}, {0.000265441}, {0.00172558}, {0.00172558}, {0.00172558}, {0.00172558}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000671175}, {0.000671175}, {0.000671175}, {0.000671175}, {0.000292964}, {0.000292964}, {0.000292964}, {0.000292964}, {0.00118606}, {0.00118606}, {0.00118606}, {0.00118606}, {0.000209795}, {0.000209795}, {0.000209795}, {0.000209795}, {0.00161203}, {0.00161203}, {0.00161203}, {0.00161203}, {0.00117664}, {0.00117664}, {0.00117664}, {0.00117664}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000378978}, {0.000378978}, {0.000378978}, {0.000378978}, {0.000209795}, {0.000209795}, {0.000209795}, {0.000209795}, {0.00121805}, {0.00121805}, {0.00121805}, {0.00121805}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00117268}, {0.00117268}, {0.00117268}, {0.00117268}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00083749}, {0.00083749}, {0.00083749}, {0.00083749}, {0.00191797}, {0.00191797}, {0.00191797}, {0.00191797}, {0.000953843}, {0.000953843}, {0.000953843}, {0.000953843}, {0.000672936}, {0.000672936}, {0.000672936}, {0.000672936}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00111398}, {0.00111398}, {0.00111398}, {0.00111398}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051068}, {0.00051068}, {0.00051068}, {0.00051068}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.00122601}, {0.00122601}, {0.00122601}, {0.00122601}, {0.000884197}, {0.000884197}, {0.000884197}, {0.000884197}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.00173384}, {0.00173384}, {0.00173384}, {0.00173384}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000209825}, {0.0007455}, {0.0007455}, {0.0007455}, {0.0007455}, {0.000899671}, {0.000899671}, {0.000899671}, {0.000899671}, {0.000616516}, {0.000616516}, {0.000616516}, {0.000616516}, {0.000200144}, {0.000200144}, {0.000200144}, {0.000200144}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000939334}, {0.000939334}, {0.000939334}, {0.000939334}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000930551}, {0.000930551}, {0.000930551}, {0.000930551}, {0.000638055}, {0.000638055}, {0.000638055}, {0.000638055}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000238204}, {0.000238204}, {0.000238204}, {0.000238204}, {0.000745217}, {0.000745217}, {0.000745217}, {0.000745217}, {0.000510776}, {0.000510776}, {0.000510776}, {0.000510776}, {0.000945026}, {0.000945026}, {0.000945026}, {0.000945026}, {0.000909981}, {0.000909981}, {0.000909981}, {0.000909981}, {0.000623877}, {0.000623877}, {0.000623877}, {0.000623877}, {0.000956672}, {0.000956672}, {0.000956672}, {0.000956672}, {0.000513725}, {0.000513725}, {0.000513725}, {0.000513725}, {0.00105581}, {0.00105581}, {0.00105581}, {0.00105581}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00115231}, {0.00115231}, {0.00115231}, {0.00115231}, {0.000871617}, {0.000871617}, {0.000871617}, {0.000871617}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000966407}, {0.000966407}, {0.000966407}, {0.000966407}, {0.000335259}, {0.000335259}, {0.000335259}, {0.000335259}, {0.000630433}, {0.000630433}, {0.000630433}, {0.000630433}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00037973}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.00106509}, {0.00106509}, {0.00106509}, {0.00106509}, {0.00198327}, {0.00198327}, {0.00198327}, {0.00198327}, {0.00205091}, {0.00205091}, {0.00205091}, {0.00205091}, {0.000963229}, {0.000963229}, {0.000963229}, {0.000963229}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.00215047}, {0.00215047}, {0.00215047}, {0.00215047}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000959836}, {0.000959836}, {0.000959836}, {0.000959836}, {0.000817692}, {0.000817692}, {0.000817692}, {0.000817692}, {0.000902791}, {0.000902791}, {0.000902791}, {0.000902791}, {0.00169951}, {0.00169951}, {0.00169951}, {0.00169951}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000840144}, {0.000840144}, {0.000840144}, {0.000840144}, {0.00173867}, {0.00173867}, {0.00173867}, {0.00173867}, {0.000671175}, {0.000671175}, {0.000671175}, {0.000671175}, {0.000963229}, {0.000963229}, {0.000963229}, {0.000963229}, {0.00022929}, {0.00022929}, {0.00022929}, {0.00022929}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000511246}, {0.000511246}, {0.000511246}, {0.000511246}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00161366}, {0.00161366}, {0.00161366}, {0.00161366}, {0.000945026}, {0.000945026}, {0.000945026}, {0.000945026}, {0.0011808}, {0.0011808}, {0.0011808}, {0.0011808}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000379219}, {0.000379219}, {0.000379219}, {0.000379219}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00105497}, {0.00105497}, {0.00105497}, {0.00105497}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00130751}, {0.00130751}, {0.00130751}, {0.00130751}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000951335}, {0.000951335}, {0.000951335}, {0.000951335}, {0.00145377}, {0.00145377}, {0.00145377}, {0.00145377}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000396677}, {0.00137036}, {0.00137036}, {0.00137036}, {0.00137036}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.000913554}, {0.000913554}, {0.000913554}, {0.000913554}, {0.000744668}, {0.000744668}, {0.000744668}, {0.000744668}, {0.000959836}, {0.000959836}, {0.000959836}, {0.000959836}, {0.000510776}, {0.000510776}, {0.000510776}, {0.000510776}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00037973}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00173998}, {0.00173998}, {0.00173998}, {0.00173998}, {0.00106728}, {0.00106728}, {0.00106728}, {0.00106728}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000950017}, {0.000950017}, {0.000950017}, {0.000950017}, {0.00160036}, {0.00160036}, {0.00160036}, {0.00160036}, {0.00148765}, {0.00148765}, {0.00148765}, {0.00148765}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00117664}, {0.00117664}, {0.00117664}, {0.00117664}, {0.000744343}, {0.000744343}, {0.000744343}, {0.000744343}, {0.00108011}, {0.00108011}, {0.00108011}, {0.00108011}, {0.00102006}, {0.00102006}, {0.00102006}, {0.00102006}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000985542}, {0.000985542}, {0.000985542}, {0.000985542}, {0.00023817}, {0.00023817}, {0.00023817}, {0.00023817}, {0.000509799}, {0.000509799}, {0.000509799}, {0.000509799}, {0.00122872}, {0.00122872}, {0.00122872}, {0.00122872}, {0.000201973}, {0.000201973}, {0.000201973}, {0.000201973}, {0.00168481}, {0.00168481}, {0.00168481}, {0.00168481}, {0.000396652}, {0.000396652}, {0.000396652}, {0.000396652}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000396677}, {0.00127773}, {0.00127773}, {0.00127773}, {0.00127773}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000396677}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000744972}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00185969}, {0.00185969}, {0.00185969}, {0.00185969}, {0.00130224}, {0.00130224}, {0.00130224}, {0.00130224}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00051068}, {0.00051068}, {0.00051068}, {0.00051068}, {0.000817692}, {0.000817692}, {0.000817692}, {0.000817692}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.00137577}, {0.00137577}, {0.00137577}, {0.00137577}, {0.000708521}, {0.000708521}, {0.000708521}, {0.000708521}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.00125207}, {0.00125207}, {0.00125207}, {0.00125207}, {0.00108769}, {0.00108769}, {0.00108769}, {0.00108769}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000518452}, {0.000518452}, {0.000518452}, {0.000518452}, {0.000662427}, {0.000662427}, {0.000662427}, {0.000662427}, {0.000902637}, {0.000902637}, {0.000902637}, {0.000902637}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00109572}, {0.00109572}, {0.00109572}, {0.00109572}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.00100863}, {0.00100863}, {0.00100863}, {0.00100863}, {0.000265441}, {0.000265441}, {0.000265441}, {0.000265441}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000849291}, {0.000849291}, {0.000849291}, {0.000849291}, {0.00109572}, {0.00109572}, {0.00109572}, {0.00109572}, {0.000396652}, {0.000396652}, {0.000396652}, {0.000396652}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000379461}, {0.000196277}, {0.000196277}, {0.000196277}, {0.000196277}, {0.000201973}, {0.000201973}, {0.000201973}, {0.000201973}, {0.000262647}, {0.000262647}, {0.000262647}, {0.000262647}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000510096}, {0.000510096}, {0.000510096}, {0.000510096}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000378736}, {0.000378736}, {0.000378736}, {0.000378736}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000532051}, {0.000532051}, {0.000532051}, {0.000532051}, {0.0014145}, {0.0014145}, {0.0014145}, {0.0014145}, {0.00108638}, {0.00108638}, {0.00108638}, {0.00108638}, {0.000378736}, {0.000378736}, {0.000378736}, {0.000378736}, {0.0011856}, {0.0011856}, {0.0011856}, {0.0011856}, {0.00186025}, {0.00186025}, {0.00186025}, {0.00186025}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000396628}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000209825}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000922847}, {0.000922847}, {0.000922847}, {0.000922847}, {0.00132655}, {0.00132655}, {0.00132655}, {0.00132655}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00107727}, {0.00107727}, {0.00107727}, {0.00107727}, {0.00135137}, {0.00135137}, {0.00135137}, {0.00135137}, {0.000292964}, {0.000292964}, {0.000292964}, {0.000292964}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000722936}, {0.000722936}, {0.000722936}, {0.000722936}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000926941}, {0.000926941}, {0.000926941}, {0.000926941}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000202002}, {0.000509799}, {0.000509799}, {0.000509799}, {0.000509799}, {0.000378978}, {0.000378978}, {0.000378978}, {0.000378978}, {0.00051045}, {0.00051045}, {0.00051045}, {0.00051045}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000238136}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000380053}, {0.000380053}, {0.000380053}, {0.000380053}, {0.0007455}, {0.0007455}, {0.0007455}, {0.0007455}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00023817}, {0.00023817}, {0.00023817}, {0.00023817}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000883811}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000608086}, {0.000608086}, {0.000608086}, {0.000608086}, {0.000652377}, {0.000652377}, {0.000652377}, {0.000652377}, {0.000511476}, {0.000511476}, {0.000511476}, {0.000511476}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000493684}, {0.000493684}, {0.000493684}, {0.000493684}, {0.000251531}, {0.000251531}, {0.000251531}, {0.000251531}, {0.000835485}, {0.000835485}, {0.000835485}, {0.000835485}, {0.00121998}, {0.00121998}, {0.00121998}, {0.00121998}, {0.00120388}, {0.00120388}, {0.00120388}, {0.00120388}, {0.000510867}, {0.000510867}, {0.000510867}, {0.000510867}, {0.000745543}, {0.000745543}, {0.000745543}, {0.000745543}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000849837}, {0.000849837}, {0.000849837}, {0.000849837}, {0.000902637}, {0.000902637}, {0.000902637}, {0.000902637}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00022929}, {0.00022929}, {0.00022929}, {0.00022929}, {0.000761723}, {0.000761723}, {0.000761723}, {0.000761723}, {0.000509558}, {0.000509558}, {0.000509558}, {0.000509558}, {0.00104832}, {0.00104832}, {0.00104832}, {0.00104832}, {0.00111203}, {0.00111203}, {0.00111203}, {0.00111203}, {0.00080431}, {0.00080431}, {0.00080431}, {0.00080431}, {0.000379219}, {0.000379219}, {0.000379219}, {0.000379219}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00045003}, {0.00022929}, {0.00022929}, {0.00022929}, {0.00022929}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.00106294}, {0.00106294}, {0.00106294}, {0.00106294}, {0.00172128}, {0.00172128}, {0.00172128}, {0.00172128}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00185969}, {0.00185969}, {0.00185969}, {0.00185969}, {0.000922847}, {0.000922847}, {0.000922847}, {0.000922847}, {0.00167934}, {0.00167934}, {0.00167934}, {0.00167934}, {0.000237043}, {0.000237043}, {0.000237043}, {0.000237043}, {0.000233177}, {0.000233177}, {0.000233177}, {0.000233177}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.000209765}, {0.00100541}, {0.00100541}, {0.00100541}, {0.00100541}, {0.0006888}, {0.0006888}, {0.0006888}, {0.0006888}, {0.000883155}, {0.000883155}, {0.000883155}, {0.000883155}, {0.000449966}, {0.000449966}, {0.000449966}, {0.000449966}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000723193}, {0.000723193}, {0.000723193}, {0.000723193}, {0.00119627}, {0.00119627}, {0.00119627}, {0.00119627}, {0.000922847}, {0.000922847}, {0.000922847}, {0.000922847}, {0.00101774}, {0.00101774}, {0.00101774}, {0.00101774}, {0.00074475}, {0.00074475}, {0.00074475}, {0.00074475}, {0.00122628}, {0.00122628}, {0.00122628}, {0.00122628}, {0.000688235}, {0.000688235}, {0.000688235}, {0.000688235}, {0.00100531}, {0.00100531}, {0.00100531}, {0.00100531}, {0.00051012}, {0.00051012}, {0.00051012}, {0.00051012}, {0.000745227}, {0.000745227}, {0.000745227}, {0.000745227}, {0.00103381}, {0.00103381}, {0.00103381}, {0.00103381}, {0.00130566}, {0.00130566}, {0.00130566}, {0.00130566}, {0.0011808}, {0.0011808}, {0.0011808}, {0.0011808}, {0.00100744}, {0.00100744}, {0.00100744}, {0.00100744}, {0.00169196}, {0.00169196}, {0.00169196}, {0.00169196}, {0.000945026}, {0.000945026}, {0.000945026}, {0.000945026}, {0.00124164}, {0.00124164}, {0.00124164}, {0.00124164}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000396358}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000883155}, {0.000883155}, {0.000883155}, {0.000883155}, {0.000449966}, {0.000449966}, {0.000449966}, {0.000449966}, {0.00139391}, {0.00139391}, {0.00139391}, {0.00139391}, {0.000913554}, {0.000913554}, {0.000913554}, {0.000913554}, {0.00105108}, {0.00105108}, {0.00105108}, {0.00105108}, {0.0011491}, {0.0011491}, {0.0011491}, {0.0011491}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000229257}, {0.000609681}, {0.000609681}, {0.000609681}, {0.000609681}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000201944}, {0.000391999}, {0.000391999}, {0.000391999}, {0.000391999}, {0.00150629}, {0.00150629}, {0.00150629}, {0.00150629}, {0.00185388}, {0.00185388}, {0.00185388}, {0.00185388}, {0.00108769}, {0.00108769}, {0.00108769}, {0.00108769}, {0.000706604}, {0.000706604}, {0.000706604}, {0.000706604}, {0.00068973}, {0.00068973}, {0.00068973}, {0.00068973}, {0.00051012}, {0.00051012}, {0.00051012}, {0.00051012}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000982951}, {0.000982951}, {0.000982951}, {0.000982951}, {0.00155838}, {0.00155838}, {0.00155838}, {0.00155838}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00120813}, {0.00190279}, {0.00190279}, {0.00190279}, {0.00190279}, {0.000890603}, {0.000890603}, {0.000890603}, {0.000890603}, {0.00130171}, {0.00130171}, {0.00130171}, {0.00130171}, {0.000509851}, {0.000509851}, {0.000509851}, {0.000509851}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000744892}, {0.000722514}, {0.000722514}, {0.000722514}, {0.000722514}, {0.000550638}, {0.000550638}, {0.000550638}, {0.000550638}, {0.000869085}, {0.000869085}, {0.000869085}, {0.000869085}, {0.00056562}, {0.00056562}, {0.00056562}, {0.00056562}, {0.000549932}, {0.000549932}, {0.000549932}, {0.000549932}, {0.000732214}, {0.000732214}, {0.000732214}, {0.000732214}, {0.00058443}, {0.00058443}, {0.00058443}, {0.00058443}, {0.000883971}, {0.000883971}, {0.000883971}, {0.000883971}, {0.00124314}, {0.00124314}, {0.00124314}, {0.00124314}, {0.000836794}, {0.000836794}, {0.000836794}, {0.000836794}, {0.00092794}, {0.00092794}, {0.00092794}, {0.00092794}, {0.000815143}, {0.000815143}, {0.000815143}, {0.000815143}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:tetrahedron_10
+   + id             : my_fem:quadrature_points:_tetrahedron_10
    + size           : 4
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{0.138197, 0.138197, 0.138197}, {0.58541, 0.138197, 0.138197}, {0.138197, 0.58541, 0.138197}, {0.138197, 0.138197, 0.58541}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:tetrahedron_10
+   + id             : my_fem:shapes:_tetrahedron_10
    + size           : 1364
    + nb_component   : 10
    + allocated size : 1364
    + memory size    : 1.1e+02kB
    + values         : {{0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}, {0.1, -0.1, -0.1, -0.1, 0.323607, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932}, {-0.1, 0.1, -0.1, -0.1, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607, 0.0763932}, {-0.1, -0.1, 0.1, -0.1, 0.0763932, 0.323607, 0.323607, 0.0763932, 0.0763932, 0.323607}, {-0.1, -0.1, -0.1, 0.1, 0.0763932, 0.0763932, 0.0763932, 0.323607, 0.323607, 0.323607}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:tetrahedron_10
+   + id             : my_fem:shapes_derivatives:_tetrahedron_10
    + size           : 1364
    + nb_component   : 30
    + allocated size : 1364
    + memory size    : 3.2e+02kB
    + values         : {{-3.9353, -4.55601, 0.673815, 0, -1.32529, -0.181463, -1.31177, -0.0269554, -1.36103, 0, -0.166427, 1.7671, -1.62143, 5.06211, 1.22778, 1.62143, 1.67146, 1.90663, 5.24706, -1.73604, 7.40408, -1.62143, -1.00576, -8.97503, 0, 1.84386, -1.95995, 1.62143, 0.239033, -0.501928}, {1.31177, 1.51867, -0.224605, 4.12325e-16, 3.97586, 0.54439, -1.31177, -0.0269554, -1.36103, 2.74179e-16, -0.166427, 1.7671, -6.86849, -6.31371, 1.40035, 6.86849, 1.77928, 7.35076, -1.56634e-16, -1.84386, 1.95995, -1.62143, -1.67146, -1.90663, -1.26573e-15, 2.50957, -9.02835, 1.62143, 0.239033, -0.501928}, {1.31177, 1.51867, -0.224605, 0, -1.32529, -0.181463, 3.9353, 0.0808662, 4.08309, 0, -0.166427, 1.7671, -1.62143, -0.239033, 0.501928, 1.62143, 6.97261, 2.63248, -5.24706, -7.91853, 2.85837, -1.62143, -1.67146, -1.90663, 0, 1.84386, -1.95995, 1.62143, 0.90474, -7.57033}, {1.31177, 1.51867, -0.224605, 0, -1.32529, -0.181463, -1.31177, -0.0269554, -1.36103, 0, 0.49928, -5.3013, -1.62143, -0.239033, 0.501928, 1.62143, 1.67146, 1.90663, -3.2565e-16, -1.84386, 1.95995, -6.86849, -7.74614, -1.00821, 0, 7.14501, -1.2341, 6.86849, 0.346855, 4.9422}, {4.62937, -1.83228, -3.04567, 1.74185, 1.32981, 2.03815, 0, 0, -2.39759, -0.198723, -1.94057, -0.655786, -7.21302, -7.71791, -11.9268, -2.15304, -1.64373, 0.444288, 1.90741, -0.754941, 11.2991, 2.94793, 9.40601, 2.17885, -1.90741, 0.754941, -1.7087, 0.245635, 2.39867, 3.77418}, {-1.54312, 0.61076, 1.01522, -5.22554, -3.98943, -6.11446, 0, 0, -2.39759, -0.198723, -1.94057, -0.655786, 5.92686, -4.84171, -7.83507, -2.15304, -1.64373, 10.0346, 1.90741, -0.754941, 1.7087, 2.15304, 1.64373, -0.444288, -1.11252, 8.51722, 0.914444, 0.245635, 2.39867, 3.77418}, {-1.54312, 0.61076, 1.01522, 1.74185, 1.32981, 2.03815, 0, 0, 7.19277, -0.198723, -1.94057, -0.655786, -0.245635, -2.39867, -3.77418, -9.12042, -6.96297, -7.70832, 8.0799, -3.19798, -2.35219, 2.15304, 1.64373, -0.444288, -1.90741, 0.754941, -1.7087, 1.04052, 10.1609, 6.39732}, {-1.54312, 0.61076, 1.01522, 1.74185, 1.32981, 2.03815, 0, 0, -2.39759, 0.596168, 5.82171, 1.96736, -0.245635, -2.39867, -3.77418, -2.15304, -1.64373, 0.444288, 1.90741, -0.754941, 1.7087, 8.32553, -0.799305, -4.50518, -8.87479, -4.5643, -9.86131, 0.245635, 2.39867, 13.3645}, {0.513102, -3.87755, 0, 0.57474, -0.851464, -1.31177, -1.67772, -0.393466, -9.15774e-16, 1.27402, -0.0475867, 1.31177, -2.79797, 2.86069, 6.86849, 1.36336, 1.53882, 1.62143, 8.99608, 0.462577, 4.66294e-15, -6.45943, -1.34847, -6.86849, -2.28519, 1.11129, -1.11022e-15, 0.499008, 0.545171, -1.62143}, {-0.171034, 1.29252, -2.22045e-16, -1.72422, 2.55439, 3.9353, -1.67772, -0.393466, -8.14021e-16, 1.27402, -0.0475867, 1.31177, 0.185129, -5.71524, 1.62143, 8.07425, 3.11268, 1.62143, 2.28519, -1.11129, 1.33227e-15, -1.36336, -1.53882, -1.62143, -7.38126, 1.30164, -5.24706, 0.499008, 0.545171, -1.62143}, {-0.171034, 1.29252, 4.44089e-16, 0.57474, -0.851464, -1.31177, 5.03317, 1.1804, 1.22103e-15, 1.27402, -0.0475867, 1.31177, -0.499008, -0.545171, 1.62143, -0.935598, 4.94468, 6.86849, 2.96933, -6.28136, -1.77636e-15, -1.36336, -1.53882, -1.62143, -2.28519, 1.11129, 0, -4.59706, 0.735518, -6.86849}, {-0.171034, 1.29252, 0, 0.57474, -0.851464, -1.31177, -1.67772, -0.393466, 5.5964e-16, -3.82205, 0.14276, -3.9353, -0.499008, -0.545171, 1.62143, 1.36336, 1.53882, 1.62143, 2.28519, -1.11129, -8.88178e-16, -0.679225, -6.70889, -1.62143, -4.58415, 4.51715, 5.24706, 7.2099, 2.11904, -1.62143}, {3.99239, 5.22128, -5.22376, -4.19346e-16, -1.90927e-15, 2.34313, -0.609885, 1.54187, -1.54513, 1.94068, 0.198561, -2.53925, 1.64495, 2.15129, -14.4211, 0.75386, -1.90585, -0.986372, 4.83836, -5.92203, 5.93812, -8.51658, 1.11161, 11.1434, -2.39881, -0.245434, 0.242418, -1.64495, -2.15129, 5.04857}, {-1.3308, -1.74043, 1.74125, -4.45091e-15, 2.34416e-15, -7.02938, -0.609885, 1.54187, -1.54513, 1.94068, 0.198561, -2.53925, 6.96814, 9.11299, -12.0136, 3.1934, -8.07331, 5.19416, 2.39881, 0.245434, -0.242418, -0.75386, 1.90585, 0.986372, -10.1615, -1.03968, 10.3994, -1.64495, -2.15129, 5.04857}, {-1.3308, -1.74043, 1.74125, 0, 0, 2.34313, 1.82966, -4.6256, 4.6354, 1.94068, 0.198561, -2.53925, 1.64495, 2.15129, -5.04857, 0.75386, -1.90585, -10.3589, 7.722, 7.20714, -7.20743, -0.75386, 1.90585, 0.986372, -2.39881, -0.245434, 0.242418, -9.40768, -2.94553, 15.2056}, {-1.3308, -1.74043, 1.74125, -1.12887e-15, -1.155e-16, 2.34313, -0.609885, 1.54187, -1.54513, -5.82204, -0.595682, 7.61774, 1.64495, 2.15129, -5.04857, 0.75386, -1.90585, -0.986372, 2.39881, 0.245434, -0.242418, 4.56932, 8.86756, -5.97864, -2.39881, -0.245434, -9.13008, 0.794587, -8.31875, 11.2291}, {5.36656, -5.36656, -5.3681, 1.78885, 1.36261, 1.3621, 0, 0, -3.15147, 0, -3.15147, 0, -7.15542, -9.34589, -9.34384, -2.21115, -1.68428, 2.21178, 2.21115, -2.21115, 14.2895, 2.21115, 14.2902, -2.21178, -2.21115, 2.21115, -1.68365, 0, 3.89543, 3.89543}, {-1.78885, 1.78885, 1.78937, -5.36656, -4.08784, -4.08631, 0, 0, -3.15147, 0, -3.15147, 0, 7.15542, -11.0508, -11.0529, -2.21115, -1.68428, 14.8177, 2.21115, -2.21115, 1.68365, 2.21115, 1.68428, -2.21178, -2.21115, 14.817, -1.68365, 0, 3.89543, 3.89543}, {-1.78885, 1.78885, 1.78937, 1.78885, 1.36261, 1.3621, 0, 0, 9.45441, 0, -3.15147, 0, 4.44089e-16, -3.89543, -3.89543, -9.36656, -7.13474, -3.23663, 9.36656, -9.36656, -5.47381, 2.21115, 1.68428, -2.21178, -2.21115, 2.21115, -1.68365, 0, 16.5013, 3.89543}, {-1.78885, 1.78885, 1.78937, 1.78885, 1.36261, 1.3621, 0, 0, -3.15147, 0, 9.45441, 0, 4.44089e-16, -3.89543, -3.89543, -2.21115, -1.68428, 2.21178, 2.21115, -2.21115, 1.68365, 9.36656, -5.47113, -9.36924, -9.36656, -3.23931, -7.13206, 0, 3.89543, 16.5013}, {-4.72653, -4.72788, -4.72653, 1.57551, -1.57551, -1.57596, -1.57551, 1.57551, -1.57551, -1.57551, -1.57596, 1.57596, -10.1969, 6.30148, 6.30439, -1.73195e-14, 1.73195e-14, 3.89543, 6.30204, -10.1975, 6.30204, 6.30204, 6.30384, -10.1993, 2.1394e-12, 3.89543, -2.14051e-12, 3.89487, 0.000556765, -0.000556765}, {1.57551, 1.57596, 1.57551, -4.72653, 4.72653, 4.72788, -1.57551, 1.57551, -1.57551, -1.57551, -1.57596, 1.57596, -10.1969, -6.30439, -6.30148, 6.30204, -6.30204, 10.1975, -2.13851e-12, -3.89543, 2.13829e-12, 1.42638e-14, -1.48241e-14, -3.89543, 6.30204, 10.1993, -6.30384, 3.89487, 0.000556765, -0.000556765}, {1.57551, 1.57596, 1.57551, 1.57551, -1.57551, -1.57596, 4.72653, -4.72653, 4.72653, -1.57551, -1.57596, 1.57596, -3.89487, -0.000556765, 0.000556765, -6.30204, 6.30204, 10.1993, -6.30204, -10.1993, -6.30204, 1.62622e-14, -1.72666e-14, -3.89543, 2.14029e-12, 3.89543, -2.14007e-12, 10.1969, 6.30439, -6.30439}, {1.57551, 1.57596, 1.57551, 1.57551, -1.57551, -1.57596, -1.57551, 1.57551, -1.57551, 4.72653, 4.72788, -4.72788, -3.89487, -0.000556765, 0.000556765, -1.70974e-14, 1.68754e-14, 3.89543, -2.14206e-12, -3.89543, 2.1414e-12, -6.30204, -6.30384, -10.1975, -6.30204, 10.1975, 6.30384, 10.1969, -6.30148, 6.30148}, {3.23101, 1.27881, 3.23101, -1.12016, -2.46258, 1.22297, 0.799503, 2.33566, 0.799503, 1.39766, 0.553185, -0.945467, 7.19648, 13.4211, -5.07228, 0.396353, 0.156874, -2.49991, -2.85501, -11.7028, -2.85501, -5.98699, -2.36962, 6.28178, -0.343007, 2.36014, -0.343007, -2.71584, -3.57081, 0.180421}, {-1.077, -0.426271, -1.077, 3.36048, 7.38773, -3.6689, 0.799503, 2.33566, 0.799503, 1.39766, 0.553185, -0.945467, 7.02385, 5.2759, 4.12759, -2.80166, -9.18577, -5.69792, 0.343007, -2.36014, 0.343007, -0.396353, -0.156874, 2.49991, -5.93364, 0.147394, 3.43886, -2.71584, -3.57081, 0.180421}, {-1.077, -0.426271, -1.077, -1.12016, -2.46258, 1.22297, -2.39851, -7.00698, -2.39851, 1.39766, 0.553185, -0.945467, 2.71584, 3.57081, -0.180421, 4.87699, 10.0072, -7.39177, 4.65101, -0.65505, 4.65101, -0.396353, -0.156874, 2.49991, -0.343007, 2.36014, -0.343007, -8.30647, -5.78355, 3.96229}, {-1.077, -0.426271, -1.077, -1.12016, -2.46258, 1.22297, 0.799503, 2.33566, 0.799503, -4.19298, -1.65956, 2.8364, 2.71584, 3.57081, -0.180421, 0.396353, 0.156874, -2.49991, 0.343007, -2.36014, 0.343007, 3.91165, 1.54821, 6.80792, 4.13763, 12.2104, -5.23487, -5.91385, -12.9135, -3.01759}, {-3.9353, 2.63698, 1.65871, 7.60332e-17, 1.28613, 0.176102, -3.18404e-16, -0.456132, 1.72743, -1.31177, 0.0489967, -1.35063, -1.62143, -5.64776, -0.238656, 2.99587e-16, -1.02593, -2.3529, -1.62143, 3.47483, -8.36153, 5.24706, 0.829946, 7.75543, 1.62143, -1.65031, 1.4518, 1.62143, 0.503247, -0.465751}, {1.31177, -0.878994, -0.552902, 8.56342e-16, -3.85839, -0.528305, 3.92674e-16, -0.456132, 1.72743, -1.31177, 0.0489967, -1.35063, -6.86849, 3.01273, 2.67736, -1.70324e-15, 0.798596, -9.26263, -1.62143, 1.65031, -1.4518, -1.93111e-16, 1.02593, 2.3529, 6.86849, -1.84629, 6.85433, 1.62143, 0.503247, -0.465751}, {1.31177, -0.878994, -0.552902, -5.33523e-16, 1.28613, 0.176102, 2.92961e-15, 1.3684, -5.1823, -1.31177, 0.0489967, -1.35063, -1.62143, -0.503247, 0.465751, 4.00063e-15, -6.17045, -3.0573, -6.86849, 5.16628, 0.75981, -2.19219e-15, 1.02593, 2.3529, 1.62143, -1.65031, 1.4518, 6.86849, 0.30726, 4.93678}, {1.31177, -0.878994, -0.552902, 7.60332e-17, 1.28613, 0.176102, -3.18404e-16, -0.456132, 1.72743, 3.9353, -0.14699, 4.0519, -1.62143, -0.503247, 0.465751, 2.99587e-16, -1.02593, -2.3529, -1.62143, 1.65031, -1.4518, -5.24706, 4.54191, 4.56451, 1.62143, -6.79482, 0.747392, 1.62143, 2.32778, -7.37548}, {0.56235, 5.36656, -5.36656, -1.24953, 3.64699, -0.373467, -0.986118, -1.85814, -1.41539, 2.4231, 0, 0, 6.77433, -16.8847, -0.255645, 2.76341, -2.21115, 2.21115, 5.39508, 11.9405, 5.19992, -12.4558, 2.21115, -2.21115, -1.45061, -4.50793, 0.461631, -1.77621, 2.29678, 1.74951}, {-0.18745, -1.78885, 1.78885, 3.74859, -10.941, 1.1204, -0.986118, -1.85814, -1.41539, 2.4231, 1.11775e-15, 8.51416e-16, 2.52601, 4.85864, -8.90493, 6.70789, 5.2214, 7.87269, 1.45061, 4.50793, -0.461631, -2.76341, 2.21115, -2.21115, -11.143, -4.50793, 0.461631, -1.77621, 2.29678, 1.74951}, {-0.18745, -1.78885, 1.78885, -1.24953, 3.64699, -0.373467, 2.95835, 5.57441, 4.24616, 2.4231, 0, 0, 1.77621, -2.29678, -1.74951, 7.76154, -16.7991, 3.70501, 2.20041, 11.6633, -7.61705, -2.76341, 2.21115, -2.21115, -1.45061, -4.50793, 0.461631, -11.4686, 2.29678, 1.74951}, {-0.18745, -1.78885, 1.78885, -1.24953, 3.64699, -0.373467, -0.986118, -1.85814, -1.41539, -7.2693, 0, 0, 1.77621, -2.29678, -1.74951, 2.76341, -2.21115, 2.21115, 1.45061, 4.50793, -0.461631, -2.01361, 9.36656, -9.36656, 3.54752, -19.0959, 1.9555, 2.16826, 9.72932, 7.41106}, {4.72585, 4.7272, 4.7272, -1.63629, -1.63676, 1.63676, -1.57573, 1.57528, 1.57528, 4.78731, 1.63721, -1.63631, 10.5149, 10.5179, -6.62248, 3.97028, 0.0759901, -3.97031, 10.1978, -6.30058, -6.30058, -23.1195, -6.62484, 10.5155, -3.89487, -0.000556685, -0.000556685, -3.96973, -3.97086, 0.0754336}, {-1.57528, -1.57573, -1.57573, 4.90888, 4.91028, -4.91028, -1.57573, 1.57528, 1.57528, 4.78731, 1.63721, -1.63631, 10.2709, 10.2738, 6.2275, 10.2732, -6.22515, -10.2714, 3.89487, 0.000556685, 0.000556685, -3.97028, -0.0759901, 3.97031, -23.0441, -6.5494, 6.54469, -3.96973, -3.97086, 0.0754336}, {-1.57528, -1.57573, -1.57573, -1.63629, -1.63676, 1.63676, 4.7272, -4.72585, -4.72585, 4.78731, 1.63721, -1.63631, 3.96973, 3.97086, -0.0754336, 10.5155, 6.62303, -10.5174, 10.196, 6.30349, 6.30349, -3.97028, -0.0759901, 3.97031, -3.89487, -0.000556685, -0.000556685, -23.119, -10.5197, 6.62068}, {-1.57528, -1.57573, -1.57573, -1.63629, -1.63676, 1.63676, -1.57573, 1.57528, 1.57528, -14.3619, -4.91163, 4.90893, 3.96973, 3.97086, -0.0754336, 3.97028, 0.0759901, -3.97031, 3.89487, 0.000556685, 0.000556685, 2.33085, 6.22695, 10.2732, 2.6503, 6.54649, -6.5476, 2.33321, -10.272, -6.2257}, {-2.40635, 2.40855, -2.40993, -1.57388, -1.57525, -1.57621, 3.20871, 3.21151, -0.0600473, -2.43695, -0.833412, 0.832954, 7.24946, 9.24051, 7.26022, -2.02076, -2.02253, 2.02253, -17.7925, -15.8233, -0.678532, 11.7686, 5.35618, -5.35435, 4.95766, 2.97727, 0.918721, -0.953948, -2.9395, -0.955365}, {0.802117, -0.80285, 0.803308, 4.72163, 4.72576, 4.72864, 3.20871, 3.21151, -0.0600473, -2.43695, -0.833412, 0.832954, -2.25452, 6.1509, -2.25787, -14.8556, -14.8686, 2.26272, -4.95766, -2.97727, -0.918721, 2.02076, 2.02253, -2.02253, 14.7055, 6.31092, -2.41309, -0.953948, -2.9395, -0.955365}, {0.802117, -0.80285, 0.803308, -1.57388, -1.57525, -1.57621, -9.62613, -9.63454, 0.180142, -2.43695, -0.833412, 0.832954, 0.953948, 2.9395, 0.955365, 4.27475, 4.27848, 8.32739, -8.16613, 0.234124, -4.13196, 2.02076, 2.02253, -2.02253, 4.95766, 2.97727, 0.918721, 8.79385, 0.394151, -4.28718}, {0.802117, -0.80285, 0.803308, -1.57388, -1.57525, -1.57621, 3.20871, 3.21151, -0.0600473, 7.31085, 2.50024, -2.49886, 0.953948, 2.9395, 0.955365, -2.02076, -2.02253, 2.02253, -4.95766, -2.97727, -0.918721, -1.18771, 5.23393, -5.23576, 11.2532, 9.27829, 7.22358, -13.7888, -15.7856, -0.715176}, {5.36291, -5.36781, 5.37088, 0, -3.15057, 0, -1.85687, -1.41402, 1.41389, 3.64451, 2.77532, 0.376399, 2.20964, 14.2849, 2.21292, 2.29522, 5.64214, -1.74767, 11.9323, 5.19225, -5.19032, -16.8733, -16.7434, 0.242074, -4.50486, 0.463834, -0.465254, -2.20964, -1.68266, -2.21292}, {-1.78764, 1.78927, -1.79029, 0, 9.4517, 0, -1.85687, -1.41402, 1.41389, 3.64451, 2.77532, 0.376399, 9.36019, -5.47442, 9.37409, 9.72271, 11.2982, -7.40324, 4.50486, -0.463834, 0.465254, -2.29522, -5.64214, 1.74767, -19.0829, -10.6374, -1.97085, -2.20964, -1.68266, -2.21292}, {-1.78764, 1.78927, -1.79029, 0, -3.15057, 0, 5.57061, 4.24206, -4.24168, 3.64451, 2.77532, 0.376399, 2.20964, 1.68266, 2.21292, 2.29522, 18.2444, -1.74767, 11.6554, -7.62091, 7.62642, -2.29522, -5.64214, 1.74767, -4.50486, 0.463834, -0.465254, -16.7877, -12.7839, -3.71852}, {-1.78764, 1.78927, -1.79029, 0, -3.15057, 0, -1.85687, -1.41402, 1.41389, -10.9335, -8.32596, -1.1292, 2.20964, 1.68266, 2.21292, 2.29522, 5.64214, -1.74767, 4.50486, -0.463834, 0.465254, 4.85533, -12.7992, 8.90884, -4.50486, 13.0661, -0.465254, 5.21784, 3.97342, -7.8685}, {-3.12618, -1.69082, 4.8169, -0.776768, 0.776768, 1.71093, 1.29482, -1.29482, 0.513906, -1.56011, -0.0455553, -0.619199, 2.77915, -4.76387, -6.97386, -0.640348, 0.640348, -2.75005, -8.06782, 6.08311, -0.706171, 6.8808, -0.458127, 5.22684, 2.88854, -0.903828, -1.34945, 0.32792, 1.6568, 0.130149}, {1.04206, 0.563608, -1.60563, 2.3303, -2.3303, -5.13278, 1.29482, -1.29482, 0.513906, -1.56011, -0.0455553, -0.619199, -4.49616, -3.91123, 6.29239, -5.81963, 5.81963, -4.80567, -2.88854, 0.903828, 1.34945, 0.640348, -0.640348, 2.75005, 9.12899, -0.721607, 1.12734, 0.32792, 1.6568, 0.130149}, {1.04206, 0.563608, -1.60563, -0.776768, 0.776768, 1.71093, -3.88446, 3.88446, -1.54172, -1.56011, -0.0455553, -0.619199, -0.32792, -1.6568, -0.130149, 2.46672, -2.46672, -9.59376, -7.05678, -1.3506, 7.77199, 0.640348, -0.640348, 2.75005, 2.88854, -0.903828, -1.34945, 6.56837, 1.83902, 2.60694}, {1.04206, 0.563608, -1.60563, -0.776768, 0.776768, 1.71093, 1.29482, -1.29482, 0.513906, 4.68034, 0.136666, 1.8576, -0.32792, -1.6568, -0.130149, -0.640348, 0.640348, -2.75005, -2.88854, 0.903828, 1.34945, -3.52789, -2.89478, 9.17259, 5.99561, -4.0109, -8.19316, -4.85136, 6.83608, -1.92547}, {0, 4.18682, -1.69558, 0, 0.106442, -1.13019, 1.31177, 1.47434, 0.246037, -1.31177, -0.185178, 0.318964, 0, 1.16773, 5.21915, -1.62143, -1.95396, 1.09288, -6.86849, -5.9947, -1.98688, 6.86849, 2.69467, -2.36873, 1.62143, 0.0973232, 1.00273, 0, -1.5935, -0.69838}, {6.66134e-16, -1.39561, 0.565192, -4.14281e-16, -0.319327, 3.39058, 1.31177, 1.47434, 0.246037, -1.31177, -0.185178, 0.318964, -3.55271e-15, 7.17592, -1.56239, -6.86849, -7.85133, 0.108727, -1.62143, -0.0973232, -1.00273, 1.62143, 1.95396, -1.09288, 6.86849, 0.838037, -0.273122, 1.11022e-15, -1.5935, -0.69838}, {6.66134e-16, -1.39561, 0.565192, -3.97019e-16, 0.106442, -1.13019, -3.9353, -4.42303, -0.738112, -1.31177, -0.185178, 0.318964, -2.22045e-16, 1.5935, 0.69838, -1.62143, -2.37973, 5.61365, -1.62143, 5.48511, -3.2635, 1.62143, 1.95396, -1.09288, 1.62143, 0.0973232, 1.00273, 5.24706, -0.852781, -1.97424}, {-2.22045e-16, -1.39561, 0.565192, 3.45234e-17, 0.106442, -1.13019, 1.31177, 1.47434, 0.246037, 3.9353, 0.555535, -0.956892, 2.22045e-16, 1.5935, 0.69838, -1.62143, -1.95396, 1.09288, -1.62143, -0.0973232, -1.00273, 1.62143, 7.53639, -3.35364, 1.62143, -0.328446, 5.52351, -5.24706, -7.49087, -1.68253}, {3.02999, -1.83569, -4.62902, -2.0783, 1.32959, -1.74182, 0.665193, -1.94149, 0.198817, 2.4231, 0, 0, 12.1305, -7.71818, 7.21305, 1.74669, 0.756347, 1.90726, -2.23457, 9.40942, -2.94828, -11.4391, -0.756347, -1.90726, -0.4262, -1.64347, 2.15301, -3.81734, 2.39981, -0.245751}, {-1.01, 0.611898, 1.54301, 6.23489, -3.98877, 5.22547, 0.665193, -1.94149, 0.198817, 2.4231, 1.16789e-15, -1.19597e-16, 7.85732, -4.8474, -5.92628, -0.91408, 8.5223, 1.11199, 0.4262, 1.64347, -2.15301, -1.74669, -0.756347, -1.90726, -10.1186, -1.64347, 2.15301, -3.81734, 2.39981, -0.245751}, {-1.01, 0.611898, 1.54301, -2.0783, 1.32959, -1.74182, -1.99558, 5.82447, -0.59645, 2.4231, 0, 0, 3.81734, -2.39981, 0.245751, 10.0599, -4.56202, 8.87456, 4.46618, -0.804126, -8.32504, -1.74669, -0.756347, -1.90726, -0.4262, -1.64347, 2.15301, -13.5097, 2.39981, -0.245751}, {-1.01, 0.611898, 1.54301, -2.0783, 1.32959, -1.74182, 0.665193, -1.94149, 0.198817, -7.2693, 0, 0, 3.81734, -2.39981, 0.245751, 1.74669, 0.756347, 1.90726, 0.4262, 1.64347, -2.15301, 2.29329, -3.20394, -8.07929, 7.88699, -6.96183, 9.12031, -6.47811, 10.1658, -1.04102}, {-1.1204, -10.941, -3.69733, -1.78885, -1.78885, 0.204309, 1.41539, -1.85814, 0.960835, 0, 0, -2.39759, 8.90493, 4.85864, -2.59316, 0.461631, 4.50793, -1.4402, -7.87269, 5.2214, -6.55438, -0.461631, -4.50793, 11.0306, 2.21115, 2.21115, 2.71104, -1.74951, 2.29678, 1.77593}, {0.373467, 3.64699, 1.23244, 5.36656, 5.36656, -0.612928, 1.41539, -1.85814, 0.960835, 0, 0, -2.39759, 0.255645, -16.8847, -6.70571, -5.19992, 11.9405, -5.28354, -2.21115, -2.21115, -2.71104, -0.461631, -4.50793, 1.4402, 2.21115, 2.21115, 12.3014, -1.74951, 2.29678, 1.77593}, {0.373467, 3.64699, 1.23244, -1.78885, -1.78885, 0.204309, -4.24616, 5.57441, -2.88251, 0, 0, -2.39759, 1.74951, -2.29678, -1.77593, 7.61705, 11.6633, -2.25744, -3.70501, -16.7991, -7.64082, -0.461631, -4.50793, 1.4402, 2.21115, 2.21115, 2.71104, -1.74951, 2.29678, 11.3663}, {0.373467, 3.64699, 1.23244, -1.78885, -1.78885, 0.204309, 1.41539, -1.85814, 0.960835, 0, 0, 7.19277, 1.74951, -2.29678, -1.77593, 0.461631, 4.50793, -1.4402, -2.21115, -2.21115, -2.71104, -1.9555, -19.0959, -3.48958, 9.36656, 9.36656, 1.89381, -7.41106, 9.72932, -2.06741}, {3.67635, 0.128375, 3.75827, 1.3465, -0.311871, 0.167791, -0.0738998, -1.11087, 1.10252, -0.0471455, 1.46553, -0.0175582, -5.53561, 1.68587, 0.669927, -1.57302, 1.7586, -1.5702, 1.90169, 5.86948, -4.2244, 1.7616, -7.62073, 1.64043, -1.60609, -1.426, -0.185698, 0.14962, -0.438387, -1.34109}, {-1.22545, -0.0427917, -1.25276, -4.03949, 0.935613, -0.503374, -0.0738998, -1.11087, 1.10252, -0.0471455, 1.46553, -0.0175582, 4.75218, 0.609554, 6.35212, -1.27742, 6.20208, -5.98029, 1.60609, 1.426, 0.185698, 1.57302, -1.7586, 1.5702, -1.4175, -7.28813, -0.115465, 0.14962, -0.438387, -1.34109}, {-1.22545, -0.0427917, -1.25276, 1.3465, -0.311871, 0.167791, 0.221699, 3.33261, -3.30757, -0.0471455, 1.46553, -0.0175582, -0.14962, 0.438387, 1.34109, -6.959, 3.00609, -2.24136, 6.50789, 1.59717, 5.19673, 1.57302, -1.7586, 1.5702, -1.60609, -1.426, -0.185698, 0.338202, -6.30052, -1.27086}, {-1.22545, -0.0427917, -1.25276, 1.3465, -0.311871, 0.167791, -0.0738998, -1.11087, 1.10252, 0.141437, -4.3966, 0.0526746, -0.14962, 0.438387, 1.34109, -1.57302, 1.7586, -1.5702, 1.60609, 1.426, 0.185698, 6.47482, -1.58744, 6.58122, -6.99207, -0.17852, -0.856863, 0.445219, 4.00509, -5.75119}, {3.98391, -5.22497, -0.407969, -0.61239, -1.54296, -1.54296, -3.86726e-16, 3.96024e-17, 1.60567, 1.94036, -0.198701, -0.198701, 4.84797, 5.92622, 7.91093, 0.756955, 1.9072, -0.0775154, 1.64146, -2.15281, -8.57548, -8.51839, -1.1124, 0.87232, -1.64146, 2.15281, 2.15281, -2.39842, 0.245608, -1.73911}, {-1.32797, 1.74166, 0.13599, 1.83717, 4.62887, 4.62887, -1.16018e-15, 1.18807e-16, 1.60567, 1.94036, -0.198701, -0.198701, 7.71029, -7.21224, 1.19515, 0.756955, 1.9072, -6.50019, 1.64146, -2.15281, -2.15281, -0.756955, -1.9072, 0.0775154, -9.4029, 2.94761, 2.94761, -2.39842, 0.245608, -1.73911}, {-1.32797, 1.74166, 0.13599, -0.61239, -1.54296, -1.54296, 0, 0, -4.817, 1.94036, -0.198701, -0.198701, 2.39842, -0.245608, 1.73911, 3.20651, 8.07903, 6.09431, 6.95334, -9.11944, -2.69677, -0.756955, -1.9072, 0.0775154, -1.64146, 2.15281, 2.15281, -10.1599, 1.04041, -0.944303}, {-1.32797, 1.74166, 0.13599, -0.61239, -1.54296, -1.54296, 1.16018e-15, -1.18807e-16, 1.60567, -5.82108, 0.596103, 0.596103, 2.39842, -0.245608, 1.73911, 0.756955, 1.9072, -0.0775154, 1.64146, -2.15281, -2.15281, 4.55492, -8.87383, -0.466443, 0.808098, 8.32463, 8.32463, -2.39842, 0.245608, -8.16178}, {4.24495, 4.24616, 5.57441, 2.77721, -0.373467, 3.64699, -3.15057, 0, 0, 1.78834, 1.78885, -1.78885, -12.7926, 3.70501, -16.7991, 0.461499, 0.461631, -4.50793, 18.2456, 1.74951, 2.29678, -7.61487, -7.61705, 11.6633, -5.64333, -1.74951, -2.29678, 1.6838, -2.21115, 2.21115}, {-1.41498, -1.41539, -1.85814, -8.33162, 1.1204, -10.941, -3.15057, 0, 0, 1.78834, 1.78885, -1.78885, 3.97613, 7.87269, 5.2214, 13.0638, 0.461631, -4.50793, 5.64333, 1.74951, 2.29678, -0.461499, -0.461631, 4.50793, -12.7967, -8.90493, 4.85864, 1.6838, -2.21115, 2.21115}, {-1.41498, -1.41539, -1.85814, 2.77721, -0.373467, 3.64699, 9.4517, 0, 0, 1.78834, 1.78885, -1.78885, -1.6838, 2.21115, -2.21115, -10.6473, 1.9555, -19.0959, 11.3033, 7.41106, 9.72932, -0.461499, -0.461631, 4.50793, -5.64333, -1.74951, -2.29678, -5.46957, -9.36656, 9.36656}, {-1.41498, -1.41539, -1.85814, 2.77721, -0.373467, 3.64699, -3.15057, 0, 0, -5.36503, -5.36656, 5.36656, -1.6838, 2.21115, -2.21115, 0.461499, 0.461631, -4.50793, 5.64333, 1.74951, 2.29678, 5.19843, 5.19992, 11.9405, -16.7522, -0.255645, -16.8847, 14.2861, -2.21115, 2.21115}, {-5.69487, -2.66454e-15, -8.88178e-16, -0.76309, -0.00636856, -2.01559, -0.460311, 1.45577, 1.44144, -0.67489, -1.4494, 0.574147, 1.64917, 0.0333462, 10.5538, 1.51221, -1.79156, 0.709685, 0.063805, -7.62252, -7.54749, 1.18735, 7.58918, -3.00627, 1.77744, 1.79943, 1.78172, 1.40319, -0.00787198, -2.49141}, {1.89829, -1.55431e-15, 3.33067e-16, 2.28927, 0.0191057, 6.04677, -0.460311, 1.45577, 1.44144, -0.67489, -1.4494, 0.574147, -8.99635, 0.00787198, 2.49141, 3.35345, -7.61465, -5.05609, -1.77744, -1.79943, -1.78172, -1.51221, 1.79156, -0.709685, 4.477, 7.59705, -0.514866, 1.40319, -0.00787198, -2.49141}, {1.89829, -1.9984e-15, -1.22125e-15, -0.76309, -0.00636856, -2.01559, 1.38093, -4.36732, -4.32433, -0.67489, -1.4494, 0.574147, -1.40319, 0.00787198, 2.49141, 4.56457, -1.76609, 8.77205, -9.3706, -1.79943, -1.78172, -1.51221, 1.79156, -0.709685, 1.77744, 1.79943, 1.78172, 4.10275, 5.78974, -4.78799}, {1.89829, 1.33227e-15, -5.55112e-16, -0.76309, -0.00636856, -2.01559, -0.460311, 1.45577, 1.44144, 2.02467, 4.34821, -1.72244, -1.40319, 0.00787198, 2.49141, 1.51221, -1.79156, 0.709685, -1.77744, -1.79943, -1.78172, -9.10537, 1.79156, -0.709685, 4.8298, 1.82491, 9.84408, 3.24443, -5.83096, -8.25718}, {-1.1204, -4.37783, -10.941, 1.41539, 0.69601, -1.85814, -1.78885, 0.0170635, -1.78885, 0, -2.17235, 0, -7.87269, -5.44812, 5.2214, 0.461631, -0.881407, 4.50793, 8.90493, -1.89311, 4.85864, -0.461631, 9.57081, -4.50793, -1.74951, 1.82486, 2.29678, 2.21115, 2.66408, 2.21115}, {0.373467, 1.45928, 3.64699, -4.24616, -2.08803, 5.57441, -1.78885, 0.0170635, -1.78885, 0, -2.17235, 0, -3.70501, -8.50119, -16.7991, 7.61705, -0.949661, 11.6633, 1.74951, -1.82486, -2.29678, -0.461631, 0.881407, -4.50793, -1.74951, 10.5143, 2.29678, 2.21115, 2.66408, 2.21115}, {0.373467, 1.45928, 3.64699, 1.41539, 0.69601, -1.85814, 5.36656, -0.0511904, 5.36656, 0, -2.17235, 0, -2.21115, -2.66408, -2.21115, -5.19992, -3.66545, 11.9405, 0.255645, -7.66197, -16.8847, -0.461631, 0.881407, -4.50793, -1.74951, 1.82486, 2.29678, 2.21115, 11.3535, 2.21115}, {0.373467, 1.45928, 3.64699, 1.41539, 0.69601, -1.85814, -1.78885, 0.0170635, -1.78885, 0, 6.51705, 0, -2.21115, -2.66408, -2.21115, 0.461631, -0.881407, 4.50793, 1.74951, -1.82486, -2.29678, -1.9555, -4.9557, -19.0959, -7.41106, -0.959181, 9.72932, 9.36656, 2.59583, 9.36656}, {-4.15743, -0.83732, 1.25624, -1.32462, -1.53355, 0.226806, 0.107516, 1.61619, -1.60405, -0.168703, -0.361739, 1.79599, 5.22286, 7.6848, -0.669975, 1.50443, -0.10214, 1.70236, -2.27592, -8.80746, 8.91649, -0.829614, 1.5491, -8.88631, 1.84585, 2.34271, -2.50031, 0.0756322, -1.55058, -0.237251}, {1.38581, 0.279107, -0.418747, 3.97387, 4.60066, -0.680419, 0.107516, 1.61619, -1.60405, -0.168703, -0.361739, 1.79599, -5.61888, 0.434156, 1.91224, 1.07436, -6.56689, 8.11854, -1.84585, -2.34271, 2.50031, -1.50443, 0.10214, -1.70236, 2.52067, 3.78967, -9.68425, 0.0756322, -1.55058, -0.237251}, {1.38581, 0.279107, -0.418747, -1.32462, -1.53355, 0.226806, -0.322547, -4.84856, 4.81214, -0.168703, -0.361739, 1.79599, -0.0756322, 1.55058, 0.237251, 6.80292, 6.03208, 0.795135, -7.3891, -3.45914, 4.1753, -1.50443, 0.10214, -1.70236, 1.84585, 2.34271, -2.50031, 0.750446, -0.103625, -7.4212}, {1.38581, 0.279107, -0.418747, -1.32462, -1.53355, 0.226806, 0.107516, 1.61619, -1.60405, 0.50611, 1.08522, -5.38796, -0.0756322, 1.55058, 0.237251, 1.50443, -0.10214, 1.70236, -1.84585, -2.34271, 2.50031, -7.04767, -1.01429, -0.0273746, 7.14434, 8.47693, -3.40753, -0.354431, -8.01533, 6.17893}, {-9.45441, -1.42109e-14, 0, -1.78885, -1.78885, 1.78885, -1.36261, -1.36216, -1.78885, 0, 3.15102, 0, 5.47113, 9.36656, -9.36656, 3.89543, 3.89487, 0, 3.23931, 7.13238, 9.36656, -3.89543, -16.4989, 0, 2.21115, -1.68373, -2.21115, 1.68428, -2.21115, 2.21115}, {3.15147, 5.77316e-15, -1.39933e-15, 5.36656, 5.36656, -5.36656, -1.36261, -1.36216, -1.78885, 1.06591e-15, 3.15102, 1.39933e-15, -14.2902, 2.21115, -2.21115, 9.34589, 9.34353, 7.15542, -2.21115, 1.68373, 2.21115, -3.89543, -3.89487, 3.47389e-31, 2.21115, -14.2878, -2.21115, 1.68428, -2.21115, 2.21115}, {3.15147, 1.77636e-15, 2.66454e-15, -1.78885, -1.78885, 1.78885, 4.08784, 4.08649, 5.36656, 0, 3.15102, 0, -1.68428, 2.21115, -2.21115, 11.0508, 11.0503, -7.15542, -14.817, 1.68373, 2.21115, -3.89543, -3.89487, -3.55271e-15, 2.21115, -1.68373, -2.21115, 1.68428, -14.8152, 2.21115}, {3.15147, -2.66454e-15, 0, -1.78885, -1.78885, 1.78885, -1.36261, -1.36216, -1.78885, 0, -9.45305, 0, -1.68428, 2.21115, -2.21115, 3.89543, 3.89487, 0, -2.21115, 1.68373, 2.21115, -16.5013, -3.89487, 0, 9.36656, 5.47169, -9.36656, 7.13474, 3.23751, 9.36656}, {1.36235e-15, 1.07667, 3.62612, 1.31177, 0.0458057, 1.34099, -1.31177, -1.15409, -0.162924, 1.0026e-17, 1.46718, 0.0306378, -6.86849, 0.20377, -5.52749, -6.66134e-16, 1.36992, -1.45618, 6.86849, 6.48653, 2.34713, 6.2603e-16, -7.23863, 1.33362, -1.62143, -1.87015, -1.69543, 1.62143, -0.386993, 0.163515}, {-7.28501e-17, -0.358889, -1.20871, -3.9353, -0.137417, -4.02298, -1.31177, -1.15409, -0.162924, 1.18307e-15, 1.46718, 0.0306378, -1.62143, 1.82255, 4.67132, 5.24706, 5.9863, -0.804479, 1.62143, 1.87015, 1.69543, -1.55431e-15, -1.36992, 1.45618, -1.62143, -7.73886, -1.81798, 1.62143, -0.386993, 0.163515}, {5.92827e-17, -0.358889, -1.20871, 1.31177, 0.0458057, 1.34099, 3.9353, 3.46228, 0.488772, -9.47461e-16, 1.46718, 0.0306378, -1.62143, 0.386993, -0.163515, -5.24706, 1.1867, -6.82015, 1.62143, 3.30571, 6.53026, 1.11022e-15, -1.36992, 1.45618, -1.62143, -1.87015, -1.69543, 1.62143, -6.25571, 0.0409633}, {0, -0.358889, -1.20871, 1.31177, 0.0458057, 1.34099, -1.31177, -1.15409, -0.162924, 0, -4.40153, -0.0919135, -1.62143, 0.386993, -0.163515, 0, 1.36992, -1.45618, 1.62143, 1.87015, 1.69543, 0, 0.0656375, 6.29101, -6.86849, -2.05337, -7.05941, 6.86849, 4.22939, 0.815211}, {1.26288e-15, -3.55271e-15, -3.26126, -1.4431, -0.571101, -0.587405, 1.45561, -1.44292, 0.31363, -0.0125109, 2.01402, -0.813311, 7.55617, 2.99032, 1.73198, -0.0154644, 2.48947, 0.338405, -7.62167, 7.55524, -2.9859, 0.0655081, -10.5456, 2.91484, 1.79923, -1.78355, 1.73138, -1.78377, -0.70592, 0.61764}, {9.0726e-16, -4.44089e-16, 1.08709, 4.3293, 1.7133, 1.76222, 1.45561, -1.44292, 0.31363, -0.0125109, 2.01402, -0.813311, 1.78377, 0.70592, -4.96598, -5.83791, 8.26116, -0.916114, -1.79923, 1.78355, -1.73138, 0.0154644, -2.48947, -0.338405, 1.84928, -9.83965, 4.98462, -1.78377, -0.70592, 0.61764}, {4.63171e-16, 8.88178e-16, 1.08709, -1.4431, -0.571101, -0.587405, -4.36683, 4.32877, -0.940889, -0.0125109, 2.01402, -0.813311, 1.78377, 0.70592, -0.61764, 5.75693, 4.77387, 2.68803, -1.79923, 1.78355, -6.07972, 0.0154644, -2.48947, -0.338405, 1.79923, -1.78355, 1.73138, -1.73373, -8.76202, 3.87088}, {0, -4.44089e-16, 1.08709, -1.4431, -0.571101, -0.587405, 1.45561, -1.44292, 0.31363, 0.0375328, -6.04207, 2.43993, 1.78377, 0.70592, -0.61764, -0.0154644, 2.48947, 0.338405, -1.79923, 1.78355, -1.73138, 0.0154644, -2.48947, -4.68675, 7.57163, 0.500853, 4.081, -7.60621, 5.06577, -0.63688}, {2.18368e-11, -2.07612e-11, -5.36656, -2.34313, 0, 0, 2.34313, -2.34313, -1.78885, 0, 2.34313, 0, 12.2688, -8.55449e-12, -2.21115, -8.99725e-12, 2.89626, 2.21115, -12.2688, 12.2688, 7.15542, 8.99725e-12, -12.2688, -2.21115, 2.89626, -2.89626, 0, -2.89626, 8.55449e-12, 2.21115}, {-7.27948e-12, 6.92291e-12, 1.78885, 7.02938, 0, 0, 2.34313, -2.34313, -1.78885, -1.36297e-15, 2.34313, 1.04056e-15, 2.89626, -3.62483e-11, -9.36656, -9.3725, 12.2688, 9.36656, -2.89626, 2.89626, 8.4211e-16, 8.99947e-12, -2.89626, -2.21115, 2.89626, -12.2688, -5.44843e-15, -2.89626, 8.55715e-12, 2.21115}, {-7.27773e-12, 6.92024e-12, 1.78885, -2.34313, 0, 0, -7.02938, 7.02938, 5.36656, 0, 2.34313, 0, 2.89626, -8.55405e-12, -2.21115, 9.3725, 2.89626, 2.21115, -2.89626, 2.89626, -7.15542, 8.99636e-12, -2.89626, -2.21115, 2.89626, -2.89626, 0, -2.89626, -9.3725, 2.21115}, {-7.27951e-12, 6.9198e-12, 1.78885, -2.34313, 0, 0, 2.34313, -2.34313, -1.78885, 0, -7.02938, 0, 2.89626, -8.55316e-12, -2.21115, -8.99814e-12, 2.89626, 2.21115, -2.89626, 2.89626, -4.44089e-16, 3.81171e-11, -2.89626, -9.36656, 12.2688, -2.89626, 0, -12.2688, 9.3725, 9.36656}, {0, -2.67212e-17, 7.02938, 0, -2.34313, 0, -1.78885, 2.34313, 2.34566, 1.78885, 1.02081e-11, -0.00253498, 0, 12.2688, 2.89626, 2.21115, 1.26184e-11, -2.8994, 9.36656, -12.2688, -9.38578, -9.36656, -5.34508e-11, 2.90954, -2.21115, 2.89626, 0.00313341, 0, -2.89626, -2.89626}, {0, 3.72666e-16, -2.34313, 0, 7.02938, 0, -1.78885, 2.34313, 2.34566, 1.78885, 1.02097e-11, -0.00253498, 0, 2.89626, 12.2688, 9.36656, -9.3725, -12.282, 2.21115, -2.89626, -0.00313341, -2.21115, -1.26201e-11, 2.8994, -9.36656, 2.89626, 0.0132733, 0, -2.89626, -2.89626}, {0, -1.47432e-16, -2.34313, 0, -2.34313, 0, 5.36656, -7.02938, -7.03698, 1.78885, 1.02102e-11, -0.00253498, 0, 2.89626, 2.89626, 2.21115, 9.3725, -2.8994, 2.21115, -2.89626, 9.36937, -2.21115, -1.26201e-11, 2.8994, -2.21115, 2.89626, 0.00313341, -7.15542, -2.89626, -2.88612}, {-2.22045e-16, -3.98999e-17, -2.34313, 0, -2.34313, 0, -1.78885, 2.34313, 2.34566, -5.36656, -3.06329e-11, 0.00760494, 4.44089e-16, 2.89626, 2.89626, 2.21115, 1.26215e-11, -2.8994, 2.21115, -2.89626, -0.00313341, -2.21115, -1.26209e-11, 12.2719, -2.21115, 12.2688, 0.00313341, 7.15542, -12.2688, -12.2789}, {3.55271e-15, -9.45441, -2.66454e-14, 1.78885, -1.78885, -1.78885, -1.78885, -1.36261, -1.36261, 0, 0, 3.15147, -9.36656, 5.47113, 9.36656, -1.77636e-15, 3.89543, 3.89543, 9.36656, 3.23931, 7.13474, 1.77636e-15, -3.89543, -16.5013, -2.21115, 2.21115, -1.68428, 2.21115, 1.68428, -2.21115}, {3.76824e-16, 3.15147, -2.22045e-15, -5.36656, 5.36656, 5.36656, -1.78885, -1.36261, -1.36261, 1.39953e-15, 1.06606e-15, 3.15147, -2.21115, -14.2902, 2.21115, 7.15542, 9.34589, 9.34589, 2.21115, -2.21115, 1.68428, -2.22045e-15, -3.89543, -3.89543, -2.21115, 2.21115, -14.2902, 2.21115, 1.68428, -2.21115}, {0, 3.15147, -7.10543e-15, 1.78885, -1.78885, -1.78885, 5.36656, 4.08784, 4.08784, 0, 0, 3.15147, -2.21115, -1.68428, 2.21115, -7.15542, 11.0508, 11.0508, 2.21115, -14.817, 1.68428, 0, -3.89543, -3.89543, -2.21115, 2.21115, -1.68428, 2.21115, 1.68428, -14.817}, {-5.55112e-15, 3.15147, 4.44089e-16, 1.78885, -1.78885, -1.78885, -1.78885, -1.36261, -1.36261, 0, 0, -9.45441, -2.21115, -1.68428, 2.21115, -7.10543e-15, 3.89543, 3.89543, 2.21115, -2.21115, 1.68428, 3.01981e-14, -16.5013, -3.89543, -9.36656, 9.36656, 5.47113, 9.36656, 7.13474, 3.23931}, {-5.36656, 7.03835, 7.02938, -1.78885, -6.94208e-12, -7.11741e-12, 0, 2.34612, 2.72942e-15, 0, 0, 2.34313, 7.15542, 2.89996, 2.89626, 2.21115, -2.89996, 8.79423e-12, -2.21115, -9.38447, 2.89626, -2.21115, 2.89996, -9.3725, 2.21115, 8.58089e-12, -2.89626, 0, -2.89996, -2.89626}, {1.78885, -2.34612, -2.34313, 5.36656, 2.08278e-11, 2.13522e-11, 0, 2.34612, 1.36471e-15, 0, -1.36471e-15, 2.34313, -7.15542, 12.2844, 12.2688, 2.21115, -12.2844, 8.79045e-12, -2.21115, -8.58264e-12, 2.89626, -2.21115, 2.89996, -8.79533e-12, 2.21115, 8.58868e-12, -12.2688, 0, -2.89996, -2.89626}, {1.78885, -2.34612, -2.34313, -1.78885, -6.94417e-12, -7.11741e-12, 0, -7.03835, 0, 0, 0, 2.34313, -4.44089e-16, 2.89996, 2.89626, 9.36656, -2.89996, 3.72672e-11, -9.36656, 9.38447, 12.2688, -2.21115, 2.89996, -8.79702e-12, 2.21115, 8.58346e-12, -2.89626, 0, -2.89996, -12.2688}, {1.78885, -2.34612, -2.34313, -1.78885, -6.94104e-12, -7.11845e-12, 0, 2.34612, 2.72942e-15, 0, 0, -7.02938, -4.44089e-16, 2.89996, 2.89626, 2.21115, -2.89996, 8.79551e-12, -2.21115, -8.57902e-12, 2.89626, -9.36656, 12.2844, 9.3725, 9.36656, 3.63438e-11, -2.89626, 0, -12.2844, -2.89626}, {5.36656, -5.36656, 5.36656, 3.15147, 0, 0, -1.36261, -1.78885, -1.36216, 0, 0, 3.15102, -14.2902, -2.21115, 2.21115, -2.21115, 2.21115, 1.68373, 9.34589, 7.15542, 9.34353, 2.21115, -2.21115, -14.2878, -3.89543, 0, -3.89487, 1.68428, 2.21115, -2.21115}, {-1.78885, 1.78885, -1.78885, -9.45441, -4.1986e-15, -1.05928e-14, -1.36261, -1.78885, -1.36216, 1.06591e-15, 1.39933e-15, 3.15102, 5.47113, -9.36656, 9.36656, 3.23931, 9.36656, 7.13238, 3.89543, 3.0155e-15, 3.89487, 2.21115, -2.21115, -1.68373, -3.89543, -9.05692e-15, -16.4989, 1.68428, 2.21115, -2.21115}, {-1.78885, 1.78885, -1.78885, 3.15147, 0, 0, 4.08784, 5.36656, 4.08649, 0, 0, 3.15102, -1.68428, -2.21115, 2.21115, -14.817, 2.21115, 1.68373, 11.0508, -7.15542, 11.0503, 2.21115, -2.21115, -1.68373, -3.89543, 0, -3.89487, 1.68428, 2.21115, -14.8152}, {-1.78885, 1.78885, -1.78885, 3.15147, 0, 0, -1.36261, -1.78885, -1.36216, 0, 0, -9.45305, -1.68428, -2.21115, 2.21115, -2.21115, 2.21115, 1.68373, 3.89543, -4.44089e-16, 3.89487, 9.36656, -9.36656, 5.47169, -16.5013, 0, -3.89487, 7.13474, 9.36656, 3.23751}, {3.37408, 4.04519, 4.04519, 1.73606, 1.52739, 0.215622, 1.28983, 0.0265046, 1.33827, -1.90119, -0.205494, -0.205494, -7.69991, -6.33079, 0.5377, -3.7402, -1.92072, -1.92072, -5.36342, 1.52793, -5.34056, 11.345, 2.74269, 2.74269, 0.204116, -1.63395, -0.0125188, 0.755686, 0.221243, -1.40019}, {-1.12469, -1.3484, -1.3484, -5.20817, -4.58216, -0.646866, 1.28983, 0.0265046, 1.33827, -1.90119, -0.205494, -0.205494, 3.74309, 5.17235, 6.79378, -8.89951, -2.02673, -7.27379, -0.204116, 1.63395, 0.0125188, 3.7402, 1.92072, 1.92072, 7.80888, -0.811974, 0.809457, 0.755686, 0.221243, -1.40019}, {-1.12469, -1.3484, -1.3484, 1.73606, 1.52739, 0.215622, -3.86948, -0.0795138, -4.01481, -1.90119, -0.205494, -0.205494, -0.755686, -0.221243, 1.40019, -10.6844, -8.03027, -2.7832, 4.29466, 7.02754, 5.40611, 3.7402, 1.92072, 1.92072, 0.204116, -1.63395, -0.0125188, 8.36045, 1.04322, -0.578212}, {-1.12469, -1.3484, -1.3484, 1.73606, 1.52739, 0.215622, 1.28983, 0.0265046, 1.33827, 5.70357, 0.616482, 0.616482, -0.755686, -0.221243, 1.40019, -3.7402, -1.92072, -1.92072, -0.204116, 1.63395, 0.0125188, 8.23897, 7.31431, 7.31431, -6.74011, -7.7435, -0.875007, -4.40362, 0.115225, -6.75327}, {7.02938, 7.0206, 5.36656, -2.72401e-15, 2.34147, -1.03982e-15, 2.34313, 0, 0, -1.04066e-11, -0.00126659, 1.78885, 2.89626, -9.36743, 2.21115, -2.89626, -2.89421, 1.28529e-15, -9.3725, 2.89265, 2.21115, 2.89626, 2.89928, -7.15542, 1.28666e-11, -2.89265, -2.21115, -2.89626, 0.00156559, -2.21115}, {-2.34313, -2.3402, -1.78885, 4.08602e-15, -7.0244, -3.11946e-15, 2.34313, 7.36763e-19, -1.04056e-15, -1.0403e-11, -0.00126659, 1.78885, 12.2688, 9.35923, 9.36656, -12.2688, -2.89421, 4.16314e-15, -1.28599e-11, 2.89265, 2.21115, 2.89626, 2.89421, 4.43179e-16, 5.44723e-11, -2.88758, -9.36656, -2.89626, 0.00156559, -2.21115}, {-2.34313, -2.3402, -1.78885, -2.41965e-26, 2.34147, 4.15928e-15, -7.02938, 0, 0, -1.04066e-11, -0.00126659, 1.78885, 2.89626, -0.00156559, 2.21115, -2.89626, -12.2601, -2.17783e-14, 9.3725, 12.2534, 9.36656, 2.89626, 2.89421, 5.58524e-15, 1.28633e-11, -2.89265, -2.21115, -2.89626, 0.00663197, -9.36656}, {-2.34313, -2.3402, -1.78885, 6.05094e-27, 2.34147, -1.03982e-15, 2.34313, 0, 0, 3.12292e-11, 0.00379978, -5.36656, 2.89626, -0.00156559, 2.21115, -2.89626, -2.89421, 1.28529e-15, -1.28666e-11, 2.89265, 2.21115, 12.2688, 12.255, 7.15542, 1.28671e-11, -12.2585, -2.21115, -12.2688, 0.00156559, -2.21115}, {-3.69587, -1.12113, -5.61393, -0.115297, -1.49037, 0.58988, -0.136463, 0.136463, -2.07323, -0.980196, 0.980196, -0.387956, -0.919078, 7.34175, -5.40172, 0.311194, 1.67352, 1.83353, -0.80825, -1.17646, 8.54253, 3.60959, -5.59431, -0.281701, 1.3541, 0.630611, -0.249592, 1.38027, -1.38027, 3.0422}, {1.23196, 0.373711, 1.87131, 0.345892, 4.47111, -1.76964, -0.136463, 0.136463, -2.07323, -0.980196, 0.980196, -0.387956, -6.30809, -0.114578, -10.5274, 0.857047, 1.12767, 10.1265, -1.3541, -0.630611, 0.249592, -0.311194, -1.67352, -1.83353, 5.27489, -3.29017, 1.30223, 1.38027, -1.38027, 3.0422}, {1.23196, 0.373711, 1.87131, -0.115297, -1.49037, 0.58988, 0.40939, -0.40939, 6.2197, -0.980196, 0.980196, -0.387956, -1.38027, 1.38027, -3.0422, 0.772383, 7.635, -0.525997, -6.28193, -2.12546, -7.23564, -0.311194, -1.67352, -1.83353, 1.3541, 0.630611, -0.249592, 5.30105, -5.30105, 4.59402}, {1.23196, 0.373711, 1.87131, -0.115297, -1.49037, 0.58988, -0.136463, 0.136463, -2.07323, 2.94059, -2.94059, 1.16387, -1.38027, 1.38027, -3.0422, 0.311194, 1.67352, 1.83353, -1.3541, -0.630611, 0.249592, -5.23902, -3.16837, -9.31876, 1.81529, 6.59209, -2.60911, 1.92612, -1.92612, 11.3351}, {5.57441, -4.24616, -4.24616, 3.64699, 0.373467, -2.778, -1.78885, -1.78885, -1.78885, 0, 0, 3.15147, -16.7991, -3.70501, 12.7963, -2.29678, 1.74951, 5.64494, 11.6633, 7.61705, 7.61705, 2.29678, -1.74951, -18.2508, -4.50793, -0.461631, -0.461631, 2.21115, 2.21115, -1.68428}, {-1.85814, 1.41539, 1.41539, -10.941, -1.1204, 8.334, -1.78885, -1.78885, -1.78885, 1.39953e-15, 1.39953e-15, 3.15147, 5.2214, -7.87269, -3.97726, 4.85864, 8.90493, 12.8004, 4.50793, 0.461631, 0.461631, 2.29678, -1.74951, -5.64494, -4.50793, -0.461631, -13.0675, 2.21115, 2.21115, -1.68428}, {-1.85814, 1.41539, 1.41539, 3.64699, 0.373467, -2.778, 5.36656, 5.36656, 5.36656, 0, 0, 3.15147, -2.21115, -2.21115, 1.68428, -16.8847, 0.255645, 16.7569, 11.9405, -5.19992, -5.19992, 2.29678, -1.74951, -5.64494, -4.50793, -0.461631, -0.461631, 2.21115, 2.21115, -14.2902}, {-1.85814, 1.41539, 1.41539, 3.64699, 0.373467, -2.778, -1.78885, -1.78885, -1.78885, 0, 0, -9.45441, -2.21115, -2.21115, 1.68428, -2.29678, 1.74951, 5.64494, 4.50793, 0.461631, 0.461631, 9.72932, -7.41106, -11.3065, -19.0959, -1.9555, 10.6504, 9.36656, 9.36656, 5.47113}, {0.00760494, 5.36656, -0.00379978, 1.35906e-15, -2.07964e-15, 2.34147, -2.34059, 1.78885, -2.34273, 2.34313, 0, 0, 0.00313341, 2.21115, -12.2616, 2.89313, -2.21115, 0.00156559, 12.2586, -7.15542, 12.2651, -12.2656, 2.21115, -0.00156559, -2.89626, 2.57058e-15, -2.89421, -0.00313341, -2.21115, 2.89578}, {-0.00253498, -1.78885, 0.00126659, -8.16761e-15, 3.11946e-15, -7.0244, -2.34059, 1.78885, -2.34273, 2.34313, -1.04056e-15, 1.36274e-15, 0.0132733, 9.36656, -2.90084, 12.2555, -9.36656, 9.3725, 2.89626, -2.1274e-15, 2.89421, -2.89313, 2.21115, -0.00156559, -12.2688, 6.73371e-15, -2.89421, -0.00313341, -2.21115, 2.89578}, {-0.00253498, -1.78885, 0.00126659, 5.44802e-15, 0, 2.34147, 7.02177, -5.36656, 7.0282, 2.34313, 0, 0, 0.00313341, 2.21115, -2.89578, 2.89313, -2.21115, -9.3643, 2.9064, 7.15542, 2.88915, -2.89313, 2.21115, -0.00156559, -2.89626, 0, -2.89421, -9.37564, -2.21115, 2.89578}, {-0.00253498, -1.78885, 0.00126659, -1.36201e-15, 0, 2.34147, -2.34059, 1.78885, -2.34273, -7.02938, 0, 0, 0.00313341, 2.21115, -2.89578, 2.89313, -2.21115, 0.00156559, 2.89626, 4.44089e-16, 2.89421, -2.88299, 9.36656, -0.00663197, -2.89626, 0, -12.2601, 9.35923, -9.36656, 12.2667}, {-2.0499, 2.05263, 6.32666, 0.872781, 1.47234, -0.0861955, 0.376973, -0.375702, 1.61414, -1.93305, -0.412429, 0.580942, -5.41454, -6.86355, 3.05805, -1.54478, -1.35552, -1.88864, -2.81846, 2.81293, -5.84502, 9.277, 3.00524, -0.435124, 1.31057, -1.31012, -0.61154, 1.92342, 0.974184, -2.71327}, {0.683301, -0.68421, -2.10889, -2.61834, -4.41703, 0.258586, 0.376973, -0.375702, 1.61414, -1.93305, -0.412429, 0.580942, -4.65662, 1.76266, 11.1488, -3.05267, 0.147289, -8.34521, -1.31057, 1.31012, 0.61154, 1.54478, 1.35552, 1.88864, 9.04279, 0.339593, -2.93531, 1.92342, 0.974184, -2.71327}, {0.683301, -0.68421, -2.10889, 0.872781, 1.47234, -0.0861955, -1.13092, 1.12711, -4.84242, -1.93305, -0.412429, 0.580942, -1.92342, -0.974184, 2.71327, -5.0359, -7.24489, -1.54386, -4.04377, 4.04697, 9.04709, 1.54478, 1.35552, 1.88864, 1.31057, -1.31012, -0.61154, 9.65564, 2.6239, -5.03704}, {0.683301, -0.68421, -2.10889, 0.872781, 1.47234, -0.0861955, 0.376973, -0.375702, 1.61414, 5.79916, 1.23729, -1.74283, -1.92342, -0.974184, 2.71327, -1.54478, -1.35552, -1.88864, -1.31057, 1.31012, 0.61154, -1.18842, 4.09236, 10.3242, -2.18055, -7.19949, -0.266758, 0.41553, 2.47699, -9.16983}, {3.84226, 4.31846, 0.720662, 0.104325, 0.223697, -1.11063, 1.27099, 0.0329107, 0.803582, -0.0945646, 1.18288, 0.547265, 1.03685, 0.608011, 6.11224, -1.69999, -0.317185, 0.379527, -5.07191, 1.60698, -3.91068, 2.07825, -4.41433, -2.56859, -0.0120645, -1.73863, 0.696352, -1.45415, -1.5028, -1.66974}, {-1.28075, -1.43949, -0.240221, -0.312975, -0.671092, 3.33188, 1.27099, 0.0329107, 0.803582, -0.0945646, 1.18288, 0.547265, 6.57716, 7.26075, 2.63062, -6.78396, -0.448828, -2.8348, 0.0120645, 1.73863, -0.696352, 1.69999, 0.317185, -0.379527, 0.366194, -6.47014, -1.49271, -1.45415, -1.5028, -1.66974}, {-1.28075, -1.43949, -0.240221, 0.104325, 0.223697, -1.11063, -3.81298, -0.0987322, -2.41075, -0.0945646, 1.18288, 0.547265, 1.45415, 1.5028, 1.66974, -2.11729, -1.21197, 4.82203, 5.13508, 7.49658, 0.26453, 1.69999, 0.317185, -0.379527, -0.0120645, -1.73863, 0.696352, -1.07589, -6.23432, -3.8588}, {-1.28075, -1.43949, -0.240221, 0.104325, 0.223697, -1.11063, 1.27099, 0.0329107, 0.803582, 0.283694, -3.54864, -1.64179, 1.45415, 1.5028, 1.66974, -1.69999, -0.317185, 0.379527, 0.0120645, 1.73863, -0.696352, 6.823, 6.07514, 0.581356, -0.429365, -2.63341, 5.13886, -6.53812, -1.63444, -4.88406}, {6.08004, 1.41594, 0.0377686, 0.57469, 1.08447, 1.45022, 1.45199, 0.720135, -1.43763, 0, -1.33263, 0, -0.504, -5.09498, -7.57787, -2.50511, -2.23062, -0.0155615, -5.09761, -3.18728, 7.54308, 2.50511, 7.56114, 0.0155615, -0.710355, 0.306735, -1.79257, -1.79476, 0.757084, 1.77701}, {-2.02668, -0.471981, -0.0125895, -1.72407, -3.25342, -4.35065, 1.45199, 0.720135, -1.43763, 0, -1.33263, 0, 9.90148, 1.13084, -1.72665, -8.31307, -5.11116, 5.73495, 0.710355, -0.306735, 1.79257, 2.50511, 2.23062, 0.0155615, -0.710355, 5.63725, -1.79257, -1.79476, 0.757084, 1.77701}, {-2.02668, -0.471981, -0.0125895, 0.57469, 1.08447, 1.45022, -4.35597, -2.1604, 4.31288, 0, -1.33263, 0, 1.79476, -0.757084, -1.77701, -4.80387, -6.56852, -5.81643, 8.81707, 1.58119, 1.84292, 2.50511, 2.23062, 0.0155615, -0.710355, 0.306735, -1.79257, -1.79476, 6.0876, 1.77701}, {-2.02668, -0.471981, -0.0125895, 0.57469, 1.08447, 1.45022, 1.45199, 0.720135, -1.43763, 0, 3.99789, 0, 1.79476, -0.757084, -1.77701, -2.50511, -2.23062, -0.0155615, 0.710355, -0.306735, 1.79257, 10.6118, 4.11854, 0.0659197, -3.00911, -4.03116, -7.59343, -7.60272, -2.12346, 7.52752}, {-1.37732, 4.35589, 4.31302, -1.40475, 2.02293, -0.00626368, 1.89829, -6.72683e-16, 1.70116e-15, -0.952649, -0.570969, 1.44394, 6.78788, -8.79749, 1.80986, -0.610051, -2.50048, 0.00774234, -10.5071, 1.79473, 1.77706, 4.42065, 4.78436, -5.78349, 2.9139, -1.79473, -1.77706, -1.16888, 0.705756, -1.7848}, {0.459107, -1.45196, -1.43767, 4.21425, -6.0688, 0.018791, 1.89829, -4.0361e-16, 1.0207e-15, -0.952649, -0.570969, 1.44394, -0.66755, 5.1021, 7.53549, -8.20322, -2.50048, 0.00774234, -2.9139, 1.79473, 1.77706, 0.610051, 2.50048, -0.00774234, 6.7245, 0.489149, -7.5528, -1.16888, 0.705756, -1.7848}, {0.459107, -1.45196, -1.43767, -1.40475, 2.02293, -0.00626368, -5.69487, 0, 0, -0.952649, -0.570969, 1.44394, 1.16888, -0.705756, 1.7848, 5.00895, -10.5922, 0.0327971, -4.75033, 7.60258, 7.52775, 0.610051, 2.50048, -0.00774234, 2.9139, -1.79473, -1.77706, 2.64172, 2.98963, -7.56055}, {0.459107, -1.45196, -1.43767, -1.40475, 2.02293, -0.00626368, 1.89829, -1.34537e-16, 3.40233e-16, 2.85795, 1.71291, -4.33181, 1.16888, -0.705756, 1.7848, -0.610051, -2.50048, 0.00774234, -2.9139, 1.79473, 1.77706, -1.22638, 8.30834, 5.74295, 8.5329, -9.88646, -1.75201, -8.76204, 0.705756, -1.7848}, {-5.36656, -5.36656, -5.36656, -0.373467, -3.64699, -0.373467, 0, 0, -1.60567, -1.41539, 1.85814, 0.190281, -0.255645, 16.8847, -0.255645, 0.461631, 4.50793, 2.44635, -2.21115, -2.21115, 6.19624, 5.19992, -11.9405, -3.20747, 2.21115, 2.21115, 0.226431, 1.74951, -2.29678, 1.74951}, {1.78885, 1.78885, 1.78885, 1.1204, 10.941, 1.1204, 0, 0, -1.60567, -1.41539, 1.85814, 0.190281, -8.90493, -4.85864, -8.90493, 0.461631, 4.50793, 8.86902, -2.21115, -2.21115, -0.226431, -0.461631, -4.50793, -2.44635, 7.87269, -5.2214, -0.534693, 1.74951, -2.29678, 1.74951}, {1.78885, 1.78885, 1.78885, -0.373467, -3.64699, -0.373467, 0, 0, 4.817, -1.41539, 1.85814, 0.190281, -1.74951, 2.29678, -1.74951, 1.9555, 19.0959, 3.94022, -9.36656, -9.36656, -7.38185, -0.461631, -4.50793, -2.44635, 2.21115, 2.21115, 0.226431, 7.41106, -9.72932, 0.988391}, {1.78885, 1.78885, 1.78885, -0.373467, -3.64699, -0.373467, 0, 0, -1.60567, 4.24616, -5.57441, -0.570843, -1.74951, 2.29678, -1.74951, 0.461631, 4.50793, 2.44635, -2.21115, -2.21115, -0.226431, -7.61705, -11.6633, -9.60176, 3.70501, 16.7991, 1.7203, 1.74951, -2.29678, 8.17219}, {-8.88178e-15, -9.45441, 5.32907e-15, 1.78885, -1.36261, -1.36261, -1.78885, -1.78885, -1.78885, 0, 0, 3.15147, -9.36656, 3.23931, 7.13474, 3.55271e-15, 3.89543, 3.89543, 9.36656, 5.47113, 9.36656, -3.55271e-15, -3.89543, -16.5013, -2.21115, 1.68428, -2.21115, 2.21115, 2.21115, -1.68428}, {1.48705e-15, 3.15147, -8.88178e-16, -5.36656, 4.08784, 4.08784, -1.78885, -1.78885, -1.78885, 1.39953e-15, 1.39953e-15, 3.15147, -2.21115, -14.817, 1.68428, 7.15542, 11.0508, 11.0508, 2.21115, -1.68428, 2.21115, -3.55271e-15, -3.89543, -3.89543, -2.21115, 1.68428, -14.817, 2.21115, 2.21115, -1.68428}, {2.88658e-15, 3.15147, -2.22045e-15, 1.78885, -1.36261, -1.36261, 5.36656, 5.36656, 5.36656, 0, 0, 3.15147, -2.21115, -2.21115, 1.68428, -7.15542, 9.34589, 9.34589, 2.21115, -14.2902, 2.21115, -3.55271e-15, -3.89543, -3.89543, -2.21115, 1.68428, -2.21115, 2.21115, 2.21115, -14.2902}, {0, 3.15147, 2.22045e-15, 1.78885, -1.36261, -1.36261, -1.78885, -1.78885, -1.78885, 0, 0, -9.45441, -2.21115, -2.21115, 1.68428, 0, 3.89543, 3.89543, 2.21115, -1.68428, 2.21115, 0, -16.5013, -3.89543, -9.36656, 7.13474, 3.23931, 9.36656, 9.36656, 5.47113}, {3.05492, -2.11527, -4.36034, 0.668117, -1.63909, -0.00517894, 0.911433, 1.21439, 0.00383706, -0.561241, -0.2804, -1.4521, -2.23961, 7.71083, -1.76944, -1.95243, 0.524948, 0.00165865, -3.51362, -7.23019, -1.81665, 4.1974, 0.59665, 5.80676, -0.132105, 2.37262, 1.8013, -0.43286, -1.15448, 1.79016}, {-1.01831, 0.705091, 1.45345, -2.00435, 4.91726, 0.0155368, 0.911433, 1.21439, 0.00383706, -0.561241, -0.2804, -1.4521, 4.50609, -1.66588, -7.60394, -5.59816, -4.33263, -0.0136896, 0.132105, -2.37262, -1.8013, 1.95243, -0.524948, -0.00165865, 2.11286, 3.49421, 7.60972, -0.43286, -1.15448, 1.79016}, {-1.01831, 0.705091, 1.45345, 0.668117, -1.63909, -0.00517894, -2.7343, -3.64318, -0.0115112, -0.561241, -0.2804, -1.4521, 0.43286, 1.15448, -1.79016, -4.6249, 7.08129, 0.0223744, 4.20534, -5.19298, -7.61508, 1.95243, -0.524948, -0.00165865, -0.132105, 2.37262, 1.8013, 1.81211, -0.0328828, 7.59857}, {-1.01831, 0.705091, 1.45345, 0.668117, -1.63909, -0.00517894, 0.911433, 1.21439, 0.00383706, 1.68372, 0.841199, 4.35631, 0.43286, 1.15448, -1.79016, -1.95243, 0.524948, 0.00165865, 0.132105, -2.37262, -1.8013, 6.02566, -3.34531, -5.81544, -2.80457, 8.92896, 1.82202, -4.07859, -6.01206, 1.77481}, {5.82171, 7.62554, -0.596168, 1.32981, 1.74185, -1.74185, 0.61076, -1.54312, 1.54312, 0, 2.34313, 0, -4.5643, -5.97853, 8.87479, -2.39867, -0.245635, 0.245635, -0.799305, 11.2218, -8.32553, 2.39867, -9.12687, -0.245635, -1.64373, -5.0493, 2.15304, -0.754941, -0.988857, -1.90741}, {-1.94057, -2.54185, 0.198723, -3.98943, -5.22554, 5.22554, 0.61076, -1.54312, 1.54312, -3.55272e-16, 2.34313, -8.97618e-16, 8.51722, 11.1562, 1.11252, -4.84171, 5.92686, -5.92686, 1.64373, 5.0493, -2.15304, 2.39867, 0.245635, -0.245635, -1.64373, -14.4218, 2.15304, -0.754941, -0.988857, -1.90741}, {-1.94057, -2.54185, 0.198723, 1.32981, 1.74185, -1.74185, -1.83228, 4.62937, -4.62937, 0, 2.34313, 0, 0.754941, 0.988857, 1.90741, -7.71791, -7.21302, 7.21302, 9.40601, 15.2167, -2.94793, 2.39867, 0.245635, -0.245635, -1.64373, -5.0493, 2.15304, -0.754941, -10.3614, -1.90741}, {-1.94057, -2.54185, 0.198723, 1.32981, 1.74185, -1.74185, 0.61076, -1.54312, 1.54312, 0, -7.02938, 0, 0.754941, 0.988857, 1.90741, -2.39867, -0.245635, 0.245635, 1.64373, 5.0493, -2.15304, 10.1609, 10.413, -1.04052, -6.96297, -12.0167, 9.12042, -3.19798, 5.18364, -8.0799}, {5.81909, -7.62212, -0.600985, 0, -2.34313, 0, 0.610485, 1.54348, 1.54262, 1.32921, -1.74106, -1.74295, 2.3976, 9.12828, -0.24762, -0.754601, 0.988412, -1.90678, -0.798945, -11.2223, -8.32487, -4.56224, 5.97584, 8.87857, -1.643, 5.04833, 2.1544, -2.3976, 0.244222, 0.24762}, {-1.9397, 2.54071, 0.200328, 0, 7.02938, 0, 0.610485, 1.54348, 1.54262, 1.32921, -1.74106, -1.74295, 10.1564, -10.407, -1.04893, -3.19654, -5.18552, -8.07725, 1.643, -5.04833, -2.1544, 0.754601, -0.988412, 1.90678, -6.95984, 12.0126, 9.12619, -2.3976, 0.244222, 0.24762}, {-1.9397, 2.54071, 0.200328, 0, -2.34313, 0, -1.83146, -4.63045, -4.62785, 1.32921, -1.74106, -1.74295, 2.3976, -0.244222, -0.24762, -0.754601, 10.3609, -1.90678, 9.40178, -15.2112, -2.95571, 0.754601, -0.988412, 1.90678, -1.643, 5.04833, 2.1544, -7.71444, 7.20847, 7.21941}, {-1.9397, 2.54071, 0.200328, 0, -2.34313, 0, 0.610485, 1.54348, 1.54262, -3.98763, 5.22319, 5.22884, 2.3976, -0.244222, -0.24762, -0.754601, 0.988412, -1.90678, 1.643, -5.04833, -2.1544, 8.51339, -11.1512, 1.10547, -1.643, 14.4208, 2.1544, -4.83954, -5.92971, -5.92285}, {8.88178e-16, -4.44089e-16, 4.817, 1.32981, 1.74185, -0.136178, 0.61076, -1.54312, 1.54312, -1.94057, -0.198723, 0.198723, -6.96297, -9.12042, 2.69775, -2.39867, -0.245635, -1.73908, -3.19798, 8.0799, -6.09519, 10.1609, 1.04052, 0.94419, 0.754941, -1.90741, -0.0773091, 1.64373, 2.15304, -2.15304}, {4.44089e-16, 1.66533e-16, -1.60567, -3.98943, -5.22554, 0.408534, 0.61076, -1.54312, 1.54312, -1.94057, -0.198723, 0.198723, -1.64373, -2.15304, 8.57571, -4.84171, 5.92686, -7.91157, -0.754941, 1.90741, 0.0773091, 2.39867, 0.245635, 1.73908, 8.51722, -1.11252, -0.872199, 1.64373, 2.15304, -2.15304}, {0, -3.05311e-16, -1.60567, 1.32981, 1.74185, -0.136178, -1.83228, 4.62937, -4.62937, -1.94057, -0.198723, 0.198723, -1.64373, -2.15304, 2.15304, -7.71791, -7.21302, -1.19437, -0.754941, 1.90741, 6.49998, 2.39867, 0.245635, 1.73908, 0.754941, -1.90741, -0.0773091, 9.40601, 2.94793, -2.94793}, {-4.44089e-16, -2.77556e-17, -1.60567, 1.32981, 1.74185, -0.136178, 0.61076, -1.54312, 1.54312, 5.82171, 0.596168, -0.596168, -1.64373, -2.15304, 2.15304, -2.39867, -0.245635, -1.73908, -0.754941, 1.90741, 0.0773091, 2.39867, 0.245635, 8.16175, -4.5643, -8.87479, 0.467403, -0.799305, 8.32553, -8.32553}, {-1.28888, 1.28888, -5.54754, -0.937563, 0.937563, 0.371082, -0.607159, -0.998509, -1.77891, 1.1151, 0.490571, -0.441349, 4.3781, -4.3781, -4.22872, 1.90938, 0.0753332, 1.74017, 2.64808, 5.7593, 7.02879, -6.36977, -2.03762, 0.0252242, -0.219445, -1.76527, 0.0868549, -0.627846, 0.627846, 2.74439}, {0.429625, -0.429625, 1.84918, 2.81269, -2.81269, -1.11325, -0.607159, -0.998509, -1.77891, 1.1151, 0.490571, -0.441349, -1.09065, 1.09065, -10.1411, 4.33802, 4.06937, 8.85582, 0.219445, 1.76527, -0.0868549, -1.90938, -0.0753332, -1.74017, -4.67983, -3.72755, 1.85225, -0.627846, 0.627846, 2.74439}, {0.429625, -0.429625, 1.84918, -0.937563, 0.937563, 0.371082, 1.82148, 2.99553, 5.33673, 1.1151, 0.490571, -0.441349, 0.627846, -0.627846, -2.74439, 5.65963, -3.67492, 0.255844, -1.49906, 3.48377, -7.48357, -1.90938, -0.0753332, -1.74017, -0.219445, -1.76527, 0.0868549, -5.08823, -1.33444, 4.50979}, {0.429625, -0.429625, 1.84918, -0.937563, 0.937563, 0.371082, -0.607159, -0.998509, -1.77891, -3.34529, -1.47171, 1.32405, 0.627846, -0.627846, -2.74439, 1.90938, 0.0753332, 1.74017, 0.219445, 1.76527, -0.0868549, -3.62788, 1.64317, -9.13689, 3.53081, -5.51552, -1.39747, 1.80079, 4.62188, 9.86004}, {-4.9045, -4.90878, 4.90879, 0.803078, -0.801888, 0.80329, -1.63483, -1.63626, 0.030594, -0.803078, 0.801888, 0.802378, -6.22574, 2.17621, -2.18355, 1.0281, 3.01372, -1.03074, 6.53933, 6.54504, 1.86234, 2.18421, -6.22127, -2.17877, 7.60503e-14, -7.59393e-14, -1.98471, 3.01342, 1.03134, -1.02961}, {1.63483, 1.63626, -1.63626, -2.40924, 2.40566, -2.40987, -1.63483, -1.63626, 0.030594, -0.803078, 0.801888, 0.802378, -9.55275, -7.57638, 7.57466, 7.56743, 9.55876, -1.15311, -7.62723e-14, 7.68274e-14, 1.98471, -1.0281, -3.01372, 1.03074, 3.21231, -3.20755, -5.19423, 3.01342, 1.03134, -1.02961}, {1.63483, 1.63626, -1.63626, 0.803078, -0.801888, 0.80329, 4.9045, 4.90878, -0.0917819, -0.803078, 0.801888, 0.802378, -3.01342, -1.03134, 1.02961, -2.18421, 6.22127, -4.2439, -6.53933, -6.54504, 8.52976, -1.0281, -3.01372, 1.03074, 7.52731e-14, -7.53841e-14, -1.98471, 6.22574, -2.17621, -4.23912}, {1.63483, 1.63626, -1.63626, 0.803078, -0.801888, 0.80329, -1.63483, -1.63626, 0.030594, 2.40924, -2.40566, -2.40713, -3.01342, -1.03134, 1.02961, 1.0281, 3.01372, -1.03074, -7.52731e-14, 7.43849e-14, 1.98471, -7.56743, -9.55876, 7.57579, -3.21231, 3.20755, -5.19788, 9.55275, 7.57638, -1.15199}, {0.412021, -3.98943, -5.22554, -1.60567, 0, 0, 0.200419, -1.94057, -0.198723, 1.54259, 0.61076, -1.54312, 8.57715, -1.64373, -2.15304, 1.73698, 2.39867, 0.245635, -0.879643, 8.51722, -1.11252, -7.90734, -4.84171, 5.92686, 0.0779689, -0.754941, 1.90741, -2.15448, 1.64373, 2.15304}, {-0.13734, 1.32981, 1.74185, 4.817, 0, 0, 0.200419, -1.94057, -0.198723, 1.54259, 0.61076, -1.54312, 2.70384, -6.96297, -9.12042, 0.93531, 10.1609, 1.04052, -0.0779689, 0.754941, -1.90741, -1.73698, -2.39867, -0.245635, -6.09239, -3.19798, 8.0799, -2.15448, 1.64373, 2.15304}, {-0.13734, 1.32981, 1.74185, -1.60567, 0, 0, -0.601256, 5.82171, 0.596168, 1.54259, 0.61076, -1.54312, 2.15448, -1.64373, -2.15304, 8.15966, 2.39867, 0.245635, 0.471392, -4.5643, -8.87479, -1.73698, -2.39867, -0.245635, 0.0779689, -0.754941, 1.90741, -8.32484, -0.799305, 8.32553}, {-0.13734, 1.32981, 1.74185, -1.60567, 0, 0, 0.200419, -1.94057, -0.198723, -4.62777, -1.83228, 4.62937, 2.15448, -1.64373, -2.15304, 1.73698, 2.39867, 0.245635, -0.0779689, 0.754941, -1.90741, -1.18762, -7.71791, -7.21302, 6.50064, -0.754941, 1.90741, -2.95615, 9.40601, 2.94793}, {-2.2024, 0.148267, -4.33994, -0.546238, -1.40698, 1.37428e-12, 0.372712, 0.180326, -1.44665, -0.560609, 1.27608, -1.24642e-12, 1.9527, 7.42813, -1.78815, 0.21449, 1.51623, 1.78815, -2.85899, -0.883108, 5.78659, 2.02795, -6.62053, -1.78815, 1.36814, 0.161805, -1.58045e-13, 0.232253, -1.80021, 1.78815}, {0.734135, -0.0494224, 1.44665, 1.63871, 4.22094, -4.12207e-12, 0.372712, 0.180326, -1.44665, -0.560609, 1.27608, -1.24619e-12, -3.16879, 1.9979, -7.57474, -1.27636, 0.794924, 7.57474, -1.36814, -0.161805, 1.57656e-13, -0.21449, -1.51623, -1.78815, 3.61057, -4.9425, 4.82673e-12, 0.232253, -1.80021, 1.78815}, {0.734135, -0.0494224, 1.44665, -0.546238, -1.40698, 1.37428e-12, -1.11814, -0.540977, 4.33994, -0.560609, 1.27608, -1.24642e-12, -0.232253, 1.80021, -1.78815, 2.39944, 7.14414, 1.78815, -4.30468, 0.0358845, -5.78659, -0.21449, -1.51623, -1.78815, 1.36814, 0.161805, -1.58045e-13, 2.47469, -6.90451, 1.78815}, {0.734135, -0.0494224, 1.44665, -0.546238, -1.40698, 1.3744e-12, 0.372712, 0.180326, -1.44665, 1.68183, -3.82823, 3.73959e-12, -0.232253, 1.80021, -1.78815, 0.21449, 1.51623, 1.78815, -1.36814, -0.161805, 1.577e-13, -3.15103, -1.31854, -7.57474, 3.55309, 5.78972, -5.65567e-12, -1.25859, -2.52151, 7.57474}, {0, 9.4517, 0, -1.78885, 1.78834, -1.78937, 1.78885, 1.36222, -1.3621, 0, 0, 3.15147, 9.36656, -5.46957, 9.36924, 0, -3.89432, 3.89543, -9.36656, -3.23838, 7.13206, 0, 3.89432, -16.5013, 2.21115, -2.21051, -1.68365, -2.21115, -1.6838, -2.21178}, {-1.54779e-16, -3.15057, 0, 5.36656, -5.36503, 5.3681, 1.78885, 1.36222, -1.3621, -1.39953e-15, -1.06575e-15, 3.15147, 2.21115, 14.2861, 2.21178, -7.15542, -9.34321, 9.34384, -2.21115, 2.21051, 1.68365, 1.77636e-15, 3.89432, -3.89543, 2.21115, -2.21051, -14.2895, -2.21115, -1.6838, -2.21178}, {0, -3.15057, -4.44089e-16, -1.78885, 1.78834, -1.78937, -5.36656, -4.08667, 4.08631, 0, 0, 3.15147, 2.21115, 1.6838, 2.21178, 7.15542, -11.0477, 11.0529, -2.21115, 14.8128, 1.68365, 0, 3.89432, -3.89543, 2.21115, -2.21051, -1.68365, -2.21115, -1.6838, -14.8177}, {0, -3.15057, 0, -1.78885, 1.78834, -1.78937, 1.78885, 1.36222, -1.3621, 0, 0, -9.45441, 2.21115, 1.6838, 2.21178, 0, -3.89432, 3.89543, -2.21115, 2.21051, 1.68365, 0, 16.4966, -3.89543, 9.36656, -9.36389, 5.47381, -9.36656, -7.1327, 3.23663}, {-0.595682, -0.596202, -5.82204, 0, -1.60567, 0, 1.54187, 1.54321, -0.609885, -1.74043, -0.136279, -1.3308, -0.245434, 8.16174, -2.39881, -1.90585, 0.0771985, 0.75386, -8.31875, -8.32602, 0.794587, 8.86756, 0.467918, 4.56932, 2.15129, 2.15317, 1.64495, 0.245434, -1.73907, 2.39881}, {0.198561, 0.198734, 1.94068, 0, 4.817, 0, 1.54187, 1.54321, -0.609885, -1.74043, -0.136279, -1.3308, -1.03968, 0.94413, -10.1615, -8.07331, -6.09565, 3.1934, -2.15129, -2.15317, -1.64495, 1.90585, -0.0771985, -0.75386, 9.11299, 2.69828, 6.96814, 0.245434, -1.73907, 2.39881}, {0.198561, 0.198734, 1.94068, 0, -1.60567, 0, -4.6256, -4.62964, 1.82966, -1.74043, -0.136279, -1.3308, -0.245434, 1.73907, -2.39881, -1.90585, 6.49987, 0.75386, -2.94553, -2.9481, -9.40768, 1.90585, -0.0771985, -0.75386, 2.15129, 2.15317, 1.64495, 7.20714, -1.19395, 7.722}, {0.198561, 0.198734, 1.94068, 0, -1.60567, 0, 1.54187, 1.54321, -0.609885, 5.22128, 0.408838, 3.99239, -0.245434, 1.73907, -2.39881, -1.90585, 0.0771985, 0.75386, -2.15129, -2.15317, -1.64495, 1.11161, -0.872135, -8.51658, 2.15129, 8.57584, 1.64495, -5.92203, -7.91192, 4.83836}, {-1.34911, 3.4086, 1.4084, 1.74422, 0.694821, 0.910847, -1.68823, -0.836265, 0.836265, -0.505685, 1.27764, -1.27764, -9.68869, -2.23371, -4.18896, -0.0691986, 0.174835, -2.15955, 8.28384, 5.78316, -3.79845, 2.09194, -5.28541, 7.27013, -1.53091, -2.4381, 0.453387, 2.71183, -0.545574, 0.545574}, {0.449702, -1.1362, -0.469468, -5.23265, -2.08446, -2.73254, -1.68823, -0.836265, 0.836265, -0.505685, 1.27764, -1.27764, -4.51064, 5.09037, 1.3323, 6.68373, 3.5199, -5.50461, 1.53091, 2.4381, -0.453387, 0.0691986, -0.174835, 2.15955, 0.49183, -7.54868, 5.56396, 2.71183, -0.545574, 0.545574}, {0.449702, -1.1362, -0.469468, 1.74422, 0.694821, 0.910847, 5.0647, 2.5088, -2.5088, -0.505685, 1.27764, -1.27764, -2.71183, 0.545574, -0.545574, -7.04606, -2.60445, -5.80294, -0.267898, 6.9829, 1.42448, 0.0691986, -0.174835, 2.15955, -1.53091, -2.4381, 0.453387, 4.73457, -5.65615, 5.65615}, {0.449702, -1.1362, -0.469468, 1.74422, 0.694821, 0.910847, -1.68823, -0.836265, 0.836265, 1.51705, -3.83293, 3.83293, -2.71183, 0.545574, -0.545574, -0.0691986, 0.174835, -2.15955, 1.53091, 2.4381, -0.453387, -1.72961, 4.36997, 4.03742, -8.50777, -5.21739, -3.19, 9.46476, 2.79949, -2.79949}, {-6.58175, 1.32414, -1.32414, -0.505685, 1.27764, -1.27764, 0.857073, 0.177676, 2.16545, -2.54531, -1.01394, -1.32918, -0.0640323, -6.14426, 6.14426, -0.43434, -1.79887, -1.09739, -7.19952, -0.384749, -11.884, 10.6156, 5.85464, 6.41412, 3.77123, -0.325955, 3.22222, 2.08677, 1.03368, -1.03368}, {2.19392, -0.441379, 0.441379, 1.51705, -3.83293, 3.83293, 0.857073, 0.177676, 2.16545, -2.54531, -1.01394, -1.32918, -10.8624, 0.731834, -0.731834, -3.86263, -2.50958, -9.75919, -3.77123, 0.325955, -3.22222, 0.43434, 1.79887, 1.09739, 13.9525, 3.72981, 8.53895, 2.08677, 1.03368, -1.03368}, {2.19392, -0.441379, 0.441379, -0.505685, 1.27764, -1.27764, -2.57122, -0.533028, -6.49635, -2.54531, -1.01394, -1.32918, -2.08677, -1.03368, 1.03368, 1.5884, -6.90945, 4.01319, -12.5469, 2.09147, -4.98773, 0.43434, 1.79887, 1.09739, 3.77123, -0.325955, 3.22222, 12.268, 5.08945, 4.28305}, {2.19392, -0.441379, 0.441379, -0.505685, 1.27764, -1.27764, 0.857073, 0.177676, 2.16545, 7.63592, 3.04182, 3.98755, -2.08677, -1.03368, 1.03368, -0.43434, -1.79887, -1.09739, -3.77123, 0.325955, -3.22222, -8.34133, 3.56439, -0.668128, 5.79397, -5.43653, 8.33279, -1.34152, 0.322977, -9.69548}, {5.63148, -7.39306, 3.82293, -0.845027, -3.02792, 0.845027, 1.29407, 2.43841, 1.8574, 1.42811, -1.87484, -1.42811, 6.74491, 12.8083, -2.84948, -0.55505, 0.728676, -3.34038, -4.45555, -15.8138, -8.15032, -5.15741, 6.7707, 9.05284, -0.720736, 6.06015, 0.720736, -3.36481, -0.696607, -0.530622}, {-1.87716, 2.46435, -1.27431, 2.53508, 9.08376, -2.53508, 1.29407, 2.43841, 1.8574, 1.42811, -1.87484, -1.42811, 10.8734, -9.16081, 5.62786, -5.73134, -9.02497, -10.77, 0.720736, -6.06015, -0.720736, 0.55505, -0.728676, 3.34038, -6.43319, 13.5595, 6.43319, -3.36481, -0.696607, -0.530622}, {-1.87716, 2.46435, -1.27431, -0.845027, -3.02792, 0.845027, -3.88221, -7.31523, -5.57219, 1.42811, -1.87484, -1.42811, 3.36481, 0.696607, 0.530622, 2.82506, 12.8404, -6.72049, 8.22937, -15.9176, 4.3765, 0.55505, -0.728676, 3.34038, -0.720736, 6.06015, 0.720736, -9.07726, 6.80277, 5.18184}, {-1.87716, 2.46435, -1.27431, -0.845027, -3.02792, 0.845027, 1.29407, 2.43841, 1.8574, -4.28434, 5.62453, 4.28434, 3.36481, 0.696607, 0.530622, -0.55505, 0.728676, -3.34038, 0.720736, -6.06015, -0.720736, 8.06369, -10.5861, 8.43762, 2.65937, 18.1718, -2.65937, -8.54109, -10.4502, -7.96021}, {8.88178e-16, 9.45441, -1.77636e-15, 1.78834, 1.78885, 1.78885, -3.15057, 0, 0, 1.36222, 1.36261, -1.78885, -9.36389, -5.47113, -9.36656, 1.6838, -2.21115, -2.21115, 16.4966, 3.89543, -4.44089e-16, -7.1327, -3.23931, 9.36656, -3.89432, -3.89543, 4.44089e-16, 2.21051, -1.68428, 2.21115}, {4.44089e-16, -3.15147, 2.22045e-16, -5.36503, -5.36656, -5.36656, -3.15057, 0, 0, 1.36222, 1.36261, -1.78885, -2.21051, 14.2902, -2.21115, 14.2861, -2.21115, -2.21115, 3.89432, 3.89543, 0, -1.6838, 2.21115, 2.21115, -9.34321, -9.34589, 7.15542, 2.21051, -1.68428, 2.21115}, {-4.44089e-16, -3.15147, 0, 1.78834, 1.78885, 1.78885, 9.4517, 0, 0, 1.36222, 1.36261, -1.78885, -2.21051, 1.68428, -2.21115, -5.46957, -9.36656, -9.36656, 3.89432, 16.5013, 0, -1.6838, 2.21115, 2.21115, -3.89432, -3.89543, 0, -3.23838, -7.13474, 9.36656}, {4.44089e-16, -3.15147, -2.22045e-16, 1.78834, 1.78885, 1.78885, -3.15057, 0, 0, -4.08667, -4.08784, 5.36656, -2.21051, 1.68428, -2.21115, 1.6838, -2.21115, -2.21115, 3.89432, 3.89543, 0, -1.6838, 14.817, 2.21115, -11.0477, -11.0508, -7.15542, 14.8128, -1.68428, 2.21115}, {-5.36656, 5.36656, -5.36656, 2.79907e-15, 3.15147, 3.33475e-16, -1.78885, -1.36261, 1.36261, 0, 0, -3.15147, -2.21115, -14.2902, -2.21115, 2.21115, -2.21115, -1.68428, 7.15542, 9.34589, -9.34589, -2.21115, 2.21115, 14.2902, -3.45984e-15, -3.89543, 3.89543, 2.21115, 1.68428, 2.21115}, {1.78885, -1.78885, 1.78885, -4.1986e-15, -9.45441, 1.0595e-14, -1.78885, -1.36261, 1.36261, 0, 0, -3.15147, -9.36656, 5.47113, -9.36656, 9.36656, 3.23931, -7.13474, 1.28583e-15, 3.89543, -3.89543, -2.21115, 2.21115, 1.68428, -1.72992e-15, -3.89543, 16.5013, 2.21115, 1.68428, 2.21115}, {1.78885, -1.78885, 1.78885, 0, 3.15147, 0, 5.36656, 4.08784, -4.08784, 0, 0, -3.15147, -2.21115, -1.68428, -2.21115, 2.21115, -14.817, -1.68428, -7.15542, 11.0508, -11.0508, -2.21115, 2.21115, 1.68428, 0, -3.89543, 3.89543, 2.21115, 1.68428, 14.817}, {1.78885, -1.78885, 1.78885, 0, 3.15147, 2.46559e-15, -1.78885, -1.36261, 1.36261, 0, 0, 9.45441, -2.21115, -1.68428, -2.21115, 2.21115, -2.21115, -1.68428, -4.44089e-16, 3.89543, -3.89543, -9.36656, 9.36656, -5.47113, 0, -16.5013, 3.89543, 9.36656, 7.13474, -3.23931}, {7.01844, 1.17551e-15, 0, 2.33948, 2.34313, -1.78885, 0, -2.34313, 0, -7.30165e-12, -6.9197e-12, 1.78885, -9.35791, -12.2688, 9.36656, -2.89175, -8.55405e-12, 2.21115, 2.89175, 12.2688, 0, 2.89175, 3.62329e-11, -9.36656, -2.89175, -2.89626, 0, 9.02534e-12, 2.89626, -2.21115}, {-2.33948, -1.95894e-17, 0, -7.01844, -7.02938, 5.36656, 0, -2.34313, 0, -7.30373e-12, -6.92022e-12, 1.78885, 9.35791, -2.89626, 2.21115, -2.89175, 9.3725, 2.21115, 2.89175, 2.89626, 0, 2.89175, 8.5536e-12, -2.21115, -2.89175, -2.89626, -7.15542, 9.02791e-12, 2.89626, -2.21115}, {-2.33948, 1.32789e-16, -4.44089e-16, 2.33948, 2.34313, -1.78885, 0, 7.02938, 0, -7.30321e-12, -6.92126e-12, 1.78885, -9.02668e-12, -2.89626, 2.21115, -12.2497, -9.3725, 9.36656, 12.2497, 2.89626, 1.77636e-15, 2.89175, 8.55493e-12, -2.21115, -2.89175, -2.89626, -4.44089e-16, 3.82401e-11, 2.89626, -9.36656}, {-2.33948, -8.31579e-16, -4.44089e-16, 2.33948, 2.34313, -1.78885, 0, -2.34313, 0, 2.19143e-11, 2.07622e-11, -5.36656, -9.02861e-12, -2.89626, 2.21115, -2.89175, -8.55538e-12, 2.21115, 2.89175, 2.89626, 4.44089e-16, 12.2497, 8.55648e-12, -2.21115, -12.2497, -12.2688, 7.15542, 9.02919e-12, 12.2688, -2.21115}, {-1.00651, -1.00808, 6.45666, -0.481765, 1.86061, -0.736419, 0.984821, -1.35677, 2.55622, -0.83856, -0.839867, 0.332415, 2.10785, -10.1576, 6.51623, -0.62181, -0.62278, -2.2494, -5.57129, 6.68879, -10.7243, 3.97605, 3.98225, 0.919744, 1.63201, -1.26171, 0.499377, -0.180789, 2.71519, -3.57055}, {0.335504, 0.336027, -2.15222, 1.4453, -5.58183, 2.20926, 0.984821, -1.35677, 2.55622, -0.83856, -0.839867, 0.332415, -1.16123, -4.0593, 12.1794, -4.56109, 4.8043, -12.4743, -1.63201, 1.26171, -0.499377, 0.62181, 0.62278, 2.2494, 4.98625, 2.09776, -0.830282, -0.180789, 2.71519, -3.57055}, {0.335504, 0.336027, -2.15222, -0.481765, 1.86061, -0.736419, -2.95446, 4.07031, -7.66867, -0.83856, -0.839867, 0.332415, 0.180789, -2.71519, 3.57055, 1.30525, -8.06522, 0.696272, -2.97403, -0.0824032, 8.1095, 0.62181, 0.62278, 2.2494, 1.63201, -1.26171, 0.499377, 3.17345, 6.07466, -4.90021}, {0.335504, 0.336027, -2.15222, -0.481765, 1.86061, -0.736419, 0.984821, -1.35677, 2.55622, 2.51568, 2.5196, -0.997244, 0.180789, -2.71519, 3.57055, -0.62181, -0.62278, -2.2494, -1.63201, 1.26171, -0.499377, -0.720207, -0.72133, 10.8583, 3.55907, -8.70414, 3.44505, -4.12007, 8.14227, -13.7954}, {5.36656, -5.48024e-11, 5.58682e-11, 1.78885, -2.34313, 2.34313, 0, 2.34313, 0, 0, 0, -2.34313, -7.15542, 12.2688, -12.2688, -2.21115, 2.25797e-11, -2.89626, 2.21115, -12.2688, 2.30194e-11, 2.21115, -2.25797e-11, 12.2688, -2.21115, 2.89626, -2.30194e-11, 0, -2.89626, 2.89626}, {-1.78885, 1.21112e-11, -1.24669e-11, -5.36656, 7.02938, -7.02938, 0, 2.34313, 1.36297e-15, 0, 0, -2.34313, 7.15542, 2.89626, -2.89626, -2.21115, -9.3725, -2.89626, 2.21115, -2.89626, 1.54086e-11, 2.21115, -1.49702e-11, 2.89626, -2.21115, 2.89626, 9.3725, 0, -2.89626, 2.89626}, {-1.78885, 1.21094e-11, -1.24669e-11, 1.78885, -2.34313, 2.34313, 0, -7.02938, 0, 0, 0, -2.34313, 4.44089e-16, 2.89626, -2.89626, -9.36656, 9.3725, -12.2688, 9.36656, -2.89626, 6.52776e-11, 2.21115, -1.49685e-11, 2.89626, -2.21115, 2.89626, -1.54099e-11, 0, -2.89626, 12.2688}, {-1.78885, 1.21099e-11, -1.24638e-11, 1.78885, -2.34313, 2.34313, 0, 2.34313, 0, 0, 0, 7.02938, 4.44089e-16, 2.89626, -2.89626, -2.21115, 1.49689e-11, -2.89626, 2.21115, -2.89626, 1.54063e-11, 9.36656, -6.34088e-11, 2.89626, -9.36656, 12.2688, -9.3725, 0, -12.2688, 2.89626}, {5.09908, -2.42192, -2.42638, -0.488904, -1.23525, -1.23482, 1.75382, -0.670557, 0.933579, 0.434779, 1.0985, -0.507552, 4.66087, 5.46995, 5.46587, -1.56352, 2.3557, 0.372353, -7.08218, 2.51319, -5.888, -0.175592, -6.74968, 1.65786, 0.0669023, 0.169033, 2.15369, -2.70526, -0.528962, -0.526598}, {-1.69969, 0.807307, 0.808792, 1.46671, 3.70574, 3.70446, 1.75382, -0.670557, 0.933579, 0.434779, 1.0985, -0.507552, 9.50403, -2.70027, -2.70857, -8.5788, 5.03793, -3.36196, -0.0669023, -0.169033, -2.15369, 1.56352, -2.3557, -0.372353, -1.67221, -4.22495, 4.1839, -2.70526, -0.528962, -0.526598}, {-1.69969, 0.807307, 0.808792, -0.488904, -1.23525, -1.23482, -5.26146, 2.01167, -2.80074, 0.434779, 1.0985, -0.507552, 2.70526, 0.528962, 0.526598, 0.392092, 7.29669, 5.31163, 6.73188, -3.39826, -5.38886, 1.56352, -2.3557, -0.372353, 0.0669023, 0.169033, 2.15369, -4.44437, -4.92294, 1.50361}, {-1.69969, 0.807307, 0.808792, -0.488904, -1.23525, -1.23482, 1.75382, -0.670557, 0.933579, -1.30434, -3.29549, 1.52266, 2.70526, 0.528962, 0.526598, -1.56352, 2.3557, 0.372353, -0.0669023, -0.169033, -2.15369, 8.3623, -5.58493, -3.60752, 2.02252, 5.11002, 7.09296, -9.72053, 2.15326, -4.26091}, {-2.57735, 0.513092, -6.51263, -2.5578, 0.977952, -1.36155, -0.488614, -1.23536, -1.23466, 2.1873, 0.428435, 0.425336, 12.3309, -4.90922, 4.44581, 3.76558, 0.31817, 3.2091, 1.49649, 6.67982, 3.78144, -12.5148, -2.03191, -4.91044, 0.457966, -1.73839, 1.15722, -2.09969, 0.99741, 1.00039}, {0.859116, -0.171031, 2.17088, 7.67341, -2.93386, 4.08465, -0.488614, -1.23536, -1.23466, 2.1873, 0.428435, 0.425336, -1.33677, -0.313288, -9.6839, 5.72003, 5.2596, 8.14775, -0.457966, 1.73839, -1.15722, -3.76558, -0.31817, -3.2091, -8.29124, -3.45213, -0.54412, -2.09969, 0.99741, 1.00039}, {0.859116, -0.171031, 2.17088, -2.5578, 0.977952, -1.36155, 1.46584, 3.70607, 3.70399, 2.1873, 0.428435, 0.425336, 2.09969, -0.99741, -1.00039, 13.9968, -3.59364, 8.65529, -3.89443, 2.42251, -9.84073, -3.76558, -0.31817, -3.2091, 0.457966, -1.73839, 1.15722, -10.8489, -0.716331, -0.700957}, {0.859116, -0.171031, 2.17088, -2.5578, 0.977952, -1.36155, -0.488614, -1.23536, -1.23466, -6.5619, -1.28531, -1.27601, 2.09969, -0.99741, -1.00039, 3.76558, 0.31817, 3.2091, -0.457966, 1.73839, -1.15722, -7.20204, 0.365952, -11.8926, 10.6892, -5.6502, 6.60342, -0.145237, 5.93884, 5.93904}, {4.08784, 4.08784, -5.36656, -1.78885, -1.78885, -1.78885, 3.15147, 2.46559e-15, 0, 0, 3.15147, 0, 11.0508, 11.0508, 7.15542, -1.68428, 2.21115, 2.21115, -14.817, 1.68428, -2.21115, 1.68428, -14.817, -2.21115, 2.21115, -1.68428, 2.21115, -3.89543, -3.89543, 0}, {-1.36261, -1.36261, 1.78885, 5.36656, 5.36656, 5.36656, 3.15147, 0, 0, -2.46559e-15, 3.15147, 0, 9.34589, 9.34589, -7.15542, -14.2902, 2.21115, 2.21115, -2.21115, 1.68428, -2.21115, 1.68428, -2.21115, -2.21115, 2.21115, -14.2902, 2.21115, -3.89543, -3.89543, 0}, {-1.36261, -1.36261, 1.78885, -1.78885, -1.78885, -1.78885, -9.45441, 0, 0, 0, 3.15147, 0, 3.89543, 3.89543, -4.44089e-16, 5.47113, 9.36656, 9.36656, 3.23931, 7.13474, -9.36656, 1.68428, -2.21115, -2.21115, 2.21115, -1.68428, 2.21115, -3.89543, -16.5013, 0}, {-1.36261, -1.36261, 1.78885, -1.78885, -1.78885, -1.78885, 3.15147, 2.46559e-15, 0, 0, -9.45441, 0, 3.89543, 3.89543, -4.44089e-16, -1.68428, 2.21115, 2.21115, -2.21115, 1.68428, -2.21115, 7.13474, 3.23931, -9.36656, 9.36656, 5.47113, 9.36656, -16.5013, -3.89543, 0}, {-4.7272, 4.72585, -4.72855, -1.57528, -1.57573, -1.57573, 1.57528, 1.57573, -1.57573, -1.57573, 1.57528, 1.57528, 6.30058, 10.1978, 6.30238, 2.11209e-12, -2.11164e-12, 3.89543, -10.196, -6.30349, 6.30238, 6.30294, -6.30114, -10.1966, 3.89487, 0.000556685, 0.000556685, 0.000556685, -3.89487, 0.000556844}, {1.57573, -1.57528, 1.57618, 4.72585, 4.7272, 4.7272, 1.57528, 1.57573, -1.57573, -1.57573, 1.57528, 1.57528, -6.30349, 10.196, -6.3053, -6.30114, -6.30294, 10.1984, -3.89487, -0.000556685, -0.000556685, -2.11226e-12, 2.11514e-12, -3.89543, 10.1978, -6.30058, -6.30058, 0.000556685, -3.89487, 0.000556844}, {1.57573, -1.57528, 1.57618, -1.57528, -1.57573, -1.57573, -4.72585, -4.7272, 4.7272, -1.57573, 1.57528, 1.57528, -0.000556685, 3.89487, -0.000556844, 6.30114, 6.30294, 10.1984, -10.1978, 6.30058, -6.3053, -2.11581e-12, 2.11492e-12, -3.89543, 3.89487, 0.000556685, 0.000556685, 6.30349, -10.196, -6.30058}, {1.57573, -1.57528, 1.57618, -1.57528, -1.57573, -1.57573, 1.57528, 1.57573, -1.57573, 4.7272, -4.72585, -4.72585, -0.000556685, 3.89487, -0.000556844, 2.11831e-12, -2.1172e-12, 3.89543, -3.89487, -0.000556685, -0.000556685, -6.30294, 6.30114, -10.2002, 10.196, 6.30349, 6.30349, -6.30058, -10.1978, 6.30349}, {-5.22554, -0.410098, 3.98943, -1.54312, -1.54218, -0.61076, 3.95893e-17, 1.60497, -3.86599e-16, -0.198723, -0.199483, 1.94057, 5.92686, 7.906, 4.84171, 1.90741, -0.0776051, 0.754941, -2.15304, -8.57268, 1.64373, -1.11252, 0.875539, -8.51722, 2.15304, 2.15282, -1.64373, 0.245635, -1.73727, -2.39867}, {1.74185, 0.136699, -1.32981, 4.62937, 4.62655, 1.83228, 1.18768e-16, 1.60497, -1.1598e-15, -0.198723, -0.199483, 1.94057, -7.21302, 1.19047, 7.71791, 1.90741, -6.49747, 0.754941, -2.15304, -2.15282, 1.64373, -1.90741, 0.0776051, -0.754941, 2.94793, 2.95075, -9.40601, 0.245635, -1.73727, -2.39867}, {1.74185, 0.136699, -1.32981, -1.54312, -1.54218, -0.61076, 0, -4.8149, 0, -0.198723, -0.199483, 1.94057, -0.245635, 1.73727, 2.39867, 8.0799, 6.09113, 3.19798, -9.12042, -2.69962, 6.96297, -1.90741, 0.0776051, -0.754941, 2.15304, 2.15282, -1.64373, 1.04052, -0.939339, -10.1609}, {1.74185, 0.136699, -1.32981, -1.54312, -1.54218, -0.61076, -1.18768e-16, 1.60497, 1.1598e-15, 0.596168, 0.59845, -5.82171, -0.245635, 1.73727, 2.39867, 1.90741, -0.0776051, 0.754941, -2.15304, -2.15282, 1.64373, -8.87479, -0.469193, 4.5643, 8.32553, 8.32155, 0.799305, 0.245635, -8.15714, -2.39867}, {4.63127, 4.6267, 1.83083, -2.54134, -0.199443, 1.94018, 1.74197, 1.74168, -1.3299, 2.34313, 0, 0, 15.2148, 2.9506, -9.40456, 0.988073, -1.9063, -0.754342, -7.21287, -7.21323, 7.7178, -10.3606, 1.9063, 0.754342, 0.245001, 0.246525, -2.39819, -5.04945, -2.15283, 1.64385}, {-1.54376, -1.54223, -0.610276, 7.62401, 0.598329, -5.82053, 1.74197, 1.74168, -1.3299, 2.34313, -1.01311e-15, 7.73589e-16, 11.2245, 8.32176, 0.797254, -5.9798, -8.87301, 4.56526, -0.245001, -0.246525, 2.39819, -0.988073, 1.9063, 0.754342, -9.1275, 0.246525, -2.39819, -5.04945, -2.15283, 1.64385}, {-1.54376, -1.54223, -0.610276, -2.54134, -0.199443, 1.94018, -5.2259, -5.22503, 3.9897, 2.34313, 0, 0, 5.04945, 2.15283, -1.64385, 11.1534, -1.10853, -8.51505, 5.93003, 5.92241, 4.83929, -0.988073, 1.9063, 0.754342, 0.245001, 0.246525, -2.39819, -14.422, -2.15283, 1.64385}, {-1.54376, -1.54223, -0.610276, -2.54134, -0.199443, 1.94018, 1.74197, 1.74168, -1.3299, -7.02938, 0, 0, 5.04945, 2.15283, -1.64385, 0.988073, -1.9063, -0.754342, -0.245001, -0.246525, 2.39819, 5.18696, 8.07523, 3.19544, 10.4103, 1.0443, -10.1589, -12.0173, -9.11953, 6.96345}, {4.33994, 1.90929, -1.71772, 1.45453e-15, 1.35003, 1.01047e-16, 1.36e-12, -0.731398, -2.01922, 1.44665, 0.0177991, 1.44665, 1.78815, -6.28218, -0.707741, -1.68285e-12, -0.764672, 2.4959, 1.78815, 4.61632, 9.86504, -5.78659, 0.693475, -8.28248, -1.78815, -1.69073, -1.78815, -1.78815, 0.882056, 0.707741}, {-1.44665, -0.636431, 0.572575, -4.36359e-15, -4.05009, -2.33336e-15, 1.35855e-12, -0.731398, -2.01922, 1.44665, 0.0177991, 1.44665, 7.57474, 1.66367, -2.99804, -7.11526e-12, 2.16092, 10.5728, 1.78815, 1.69073, 1.78815, 1.68142e-12, 0.764672, -2.4959, -7.57474, -1.76193, -7.57474, -1.78815, 0.882056, 0.707741}, {-1.44665, -0.636431, 0.572575, 0, 1.35003, 0, -4.08128e-12, 2.19419, 6.05767, 1.44665, 0.0177991, 1.44665, 1.78815, -0.882056, -0.707741, -1.68158e-12, -6.16479, 2.4959, 7.57474, 4.23646, -0.502145, 1.68194e-12, 0.764672, -2.4959, -1.78815, -1.69073, -1.78815, -7.57474, 0.81086, -5.07885}, {-1.44665, -0.636431, 0.572575, -4.84843e-16, 1.35003, -4.84843e-16, 1.3596e-12, -0.731398, -2.01922, -4.33994, -0.0533972, -4.33994, 1.78815, -0.882056, -0.707741, -1.67996e-12, -0.764672, 2.4959, 1.78815, 1.69073, 1.78815, 5.78659, 3.3104, -4.7862, -1.78815, -7.09085, -1.78815, -1.78815, 3.80765, 8.78463}, {-3.79117, -3.78885, -1.50052, 0.577052, -1.02738, -1.79083, -1.45233, 0.153525, -0.574823, -0.388446, -0.389091, 1.86548, -4.58353, 3.81836, 8.75865, 1.0819, 1.08015, 2.92411, 6.04244, -2.36496, 2.39156, 0.471884, 0.476215, -10.386, -0.233129, 1.75086, -0.0922713, 2.27532, 0.291177, -1.59534}, {1.26372, 1.26295, 0.500174, -1.73116, 3.08215, 5.37248, -1.45233, 0.153525, -0.574823, -0.388446, -0.389091, 1.86548, -7.33021, -5.34298, -0.40536, 6.89121, 0.466052, 5.2234, 0.233129, -1.75086, 0.0922713, -1.0819, -1.08015, -2.92411, 1.32066, 3.30723, -7.55418, 2.27532, 0.291177, -1.59534}, {1.26372, 1.26295, 0.500174, 0.577052, -1.02738, -1.79083, 4.35698, -0.460574, 1.72447, -0.388446, -0.389091, 1.86548, -2.27532, -0.291177, 1.59534, -1.22631, 5.18969, 10.0874, -4.82176, -6.80267, -1.90843, -1.0819, -1.08015, -2.92411, -0.233129, 1.75086, -0.0922713, 3.82911, 1.84754, -9.05724}, {1.26372, 1.26295, 0.500174, 0.577052, -1.02738, -1.79083, -1.45233, 0.153525, -0.574823, 1.16534, 1.16727, -5.59643, -2.27532, -0.291177, 1.59534, 1.0819, 1.08015, 2.92411, 0.233129, -1.75086, 0.0922713, -6.13679, -6.13196, -4.9248, -2.54134, 5.8604, 7.07104, 8.08463, -0.322922, 0.703957}, {2.52504, -4.49559, -7.83624, 1.26389, 1.26265, 0.49964, -0.875592, -0.873298, -2.36467, 0.453379, -1.88788, -0.747051, -5.57746, -8.46358, -5.84486, -0.479968, -0.48126, 2.3053, 5.62503, 2.72036, 9.15287, -1.33355, 8.03278, 0.682901, -2.12267, 0.772832, 0.305817, 0.521884, 3.413, 3.8463}, {-0.841681, 1.49853, 2.61208, -3.79168, -3.78794, -1.49892, -0.875592, -0.873298, -2.36467, 0.453379, -1.88788, -0.747051, 2.84484, -9.40713, -14.2946, 3.0224, 3.01193, 11.764, 2.12267, -0.772832, -0.305817, 0.479968, 0.48126, -2.3053, -3.93618, 8.32435, 3.29402, 0.521884, 3.413, 3.8463}, {-0.841681, 1.49853, 2.61208, 1.26389, 1.26265, 0.49964, 2.62678, 2.61989, 7.09401, 0.453379, -1.88788, -0.747051, -0.521884, -3.413, -3.8463, -5.53554, -5.53184, 0.306743, 5.48939, -6.76696, -10.7541, 0.479968, 0.48126, -2.3053, -2.12267, 0.772832, 0.305817, -1.29163, 10.9645, 6.8345}, {-0.841681, 1.49853, 2.61208, 1.26389, 1.26265, 0.49964, -0.875592, -0.873298, -2.36467, -1.36014, 5.66364, 2.24115, -0.521884, -3.413, -3.8463, -0.479968, -0.48126, 2.3053, 2.12267, -0.772832, -0.305817, 3.84669, -5.51287, -12.7536, -7.17824, -4.27775, -1.69274, 4.02425, 6.90619, 13.305}, {5.37846, -0.954422, 1.65136, 0.482922, -1.73161, -0.484335, 0.65353, 0.326507, 1.69088, 0.656368, 1.08696, -0.656093, -0.312565, 8.67359, 3.21641, -1.40473, 1.7368, -1.49137, -1.20588, -2.10286, -8.17318, -1.22074, -6.08465, 4.11575, -1.40824, 0.796829, 1.40965, -1.61912, -1.74715, -1.27907}, {-1.79282, 0.318141, -0.550454, -1.44877, 5.19483, 1.45301, 0.65353, 0.326507, 1.69088, 0.656368, 1.08696, -0.656093, 8.7904, 0.474582, 3.48088, -4.01885, 0.430774, -8.2549, 1.40824, -0.796829, -1.40965, 1.40473, -1.7368, 1.49137, -4.03371, -3.55102, 4.03402, -1.61912, -1.74715, -1.27907}, {-1.79282, 0.318141, -0.550454, 0.482922, -1.73161, -0.484335, -1.96059, -0.979522, -5.07265, 0.656368, 1.08696, -0.656093, 1.61912, 1.74715, 1.27907, -3.33642, 8.66325, 0.445966, 8.57952, -2.06939, 0.792169, 1.40473, -1.7368, 1.49137, -1.40824, 0.796829, 1.40965, -4.24459, -6.095, 1.3453}, {-1.79282, 0.318141, -0.550454, 0.482922, -1.73161, -0.484335, 0.65353, 0.326507, 1.69088, -1.9691, -3.26089, 1.96828, 1.61912, 1.74715, 1.27907, -1.40473, 1.7368, -1.49137, 1.40824, -0.796829, -1.40965, 8.57601, -3.00937, 3.69319, -3.33993, 7.72327, 3.34699, -4.23324, -3.05317, -8.0426}, {-8.19974, -2.81226, -4.15773, 1.49846, -0.593081, -0.985836, -2.7214, 1.07711, -0.607179, -1.5103, -1.42145, 0.207104, -11.2245, 1.9467, 3.44883, 1.51164, -0.598298, 1.96907, 10.8709, -6.79856, 1.46615, 4.52957, 6.28411, -2.79749, 0.0146435, 2.4901, 0.962565, 5.23067, 0.425625, 0.494519}, {2.73325, 0.937419, 1.38591, -4.49537, 1.77924, 2.95751, -2.7214, 1.07711, -0.607179, -1.5103, -1.42145, 0.207104, -16.1637, -4.1753, -6.03816, 12.3972, -4.90676, 4.39779, -0.0146435, -2.4901, -0.962565, -1.51164, 0.598298, -1.96907, 6.05586, 8.17591, 0.134147, 5.23067, 0.425625, 0.494519}, {2.73325, 0.937419, 1.38591, 1.49846, -0.593081, -0.985836, 8.16419, -3.23134, 1.82154, -1.5103, -1.42145, 0.207104, -5.23067, -0.425625, -0.494519, -4.48219, 1.77402, 5.91242, -10.9476, -6.23977, -6.50621, -1.51164, 0.598298, -1.96907, 0.0146435, 2.4901, 0.962565, 11.2719, 6.11143, -0.333899}, {2.73325, 0.937419, 1.38591, 1.49846, -0.593081, -0.985836, -2.7214, 1.07711, -0.607179, 4.53091, 4.26436, -0.621313, -5.23067, -0.425625, -0.494519, 1.51164, -0.598298, 1.96907, -0.0146435, -2.4901, -0.962565, -12.4446, -3.15138, -7.51272, -5.97918, 4.86242, 4.90591, 16.1163, -3.88283, 2.92323}, {-8.88178e-16, -2.39835, -6.05767, -3.06161e-16, 0.53318, -2.01922, -1.31177, -0.650588, 1.29879, 1.31177, -0.68204, -1.29879, 1.33227e-15, -3.77994, 8.07689, 1.62143, 0.145125, 0.890503, 6.86849, 2.41835, -9.29645, -6.86849, 2.58304, 4.30465, -1.62143, 0.184002, 4.10129, 0, 1.64722, 0}, {-2.22045e-16, 0.799449, 2.01922, -9.18483e-16, -1.59954, 6.05767, -1.31177, -0.650588, 1.29879, 1.31177, -0.68204, -1.29879, 8.88178e-16, -4.84502, -8.07689, 6.86849, 2.74748, -4.30465, 1.62143, -0.184002, -4.10129, -1.62143, -0.145125, -0.890503, -6.86849, 2.91216, 9.29645, 0, 1.64722, 0}, {1.77636e-15, 0.799449, 2.01922, -2.08189e-15, 0.53318, -2.01922, 3.9353, 1.95177, -3.89637, 1.31177, -0.68204, -1.29879, 2.22045e-16, -1.64722, -6.66134e-16, 1.62143, -1.98759, 8.96739, 1.62143, -3.3818, -12.1782, -1.62143, -0.145125, -0.890503, -1.62143, 0.184002, 4.10129, -5.24706, 4.37538, 5.19516}, {-6.66134e-16, 0.799449, 2.01922, 1.04095e-15, 0.53318, -2.01922, -1.31177, -0.650588, 1.29879, -3.9353, 2.04612, 3.89637, -6.66134e-16, -1.64722, -2.22045e-16, 1.62143, 0.145125, 0.890503, 1.62143, -0.184002, -4.10129, -1.62143, -3.34292, -8.96739, -1.62143, -1.94872, 12.1782, 5.24706, 4.24957, -5.19516}, {1.77636e-15, 0, 9.45441, 1.36261, 1.78885, 1.36261, 1.78885, -1.78885, 1.78885, -3.15147, 0, 0, -7.13474, -9.36656, -3.23931, -3.89543, 0, -3.89543, -9.36656, 9.36656, -5.47113, 16.5013, 0, 3.89543, 2.21115, -2.21115, -1.68428, 1.68428, 2.21115, -2.21115}, {4.44089e-16, -4.44089e-16, -3.15147, -4.08784, -5.36656, -4.08784, 1.78885, -1.78885, 1.78885, -3.15147, 0, 0, -1.68428, -2.21115, 14.817, -11.0508, 7.15542, -11.0508, -2.21115, 2.21115, 1.68428, 3.89543, 8.88178e-16, 3.89543, 14.817, -2.21115, -1.68428, 1.68428, 2.21115, -2.21115}, {0, 2.22045e-16, -3.15147, 1.36261, 1.78885, 1.36261, -5.36656, 5.36656, -5.36656, -3.15147, 0, 0, -1.68428, -2.21115, 2.21115, -9.34589, -7.15542, -9.34589, -2.21115, 2.21115, 14.2902, 3.89543, -4.44089e-16, 3.89543, 2.21115, -2.21115, -1.68428, 14.2902, 2.21115, -2.21115}, {4.44089e-16, 2.22045e-16, -3.15147, 1.36261, 1.78885, 1.36261, 1.78885, -1.78885, 1.78885, 9.45441, 0, 0, -1.68428, -2.21115, 2.21115, -3.89543, 4.44089e-16, -3.89543, -2.21115, 2.21115, 1.68428, 3.89543, 0, 16.5013, -3.23931, -9.36656, -7.13474, -5.47113, 9.36656, -9.36656}, {-2.46108, 3.54412, -0.0109738, -0.670026, 0.174063, -1.44271, 0.904569, 1.43103, -0.00443094, -1.0549, -0.423716, 1.44348, 2.49428, 0.548851, 7.54959, -0.28991, -1.984, 1.78876, -5.7504, -6.03269, 0.0186792, 4.50952, 3.67886, -7.56268, 2.13213, 0.308587, -0.000955489, 0.185824, -1.2451, -1.77876}, {0.820361, -1.18137, 0.00365793, 2.01008, -0.52219, 4.32812, 0.904569, 1.43103, -0.00443094, -1.0549, -0.423716, 1.44348, -3.46727, 5.9706, 1.76413, -3.90819, -7.7081, 1.80648, -2.13213, -0.308587, 0.000955489, 0.28991, 1.984, -1.78876, 6.35174, 2.00345, -5.77487, 0.185824, -1.2451, -1.77876}, {0.820361, -1.18137, 0.00365793, -0.670026, 0.174063, -1.44271, -2.71371, -4.29308, 0.0132928, -1.0549, -0.423716, 1.44348, -0.185824, 1.2451, 1.77876, 2.39019, -2.68025, 7.55959, -5.41357, 4.41691, -0.0136762, 0.28991, 1.984, -1.78876, 2.13213, 0.308587, -0.000955489, 4.40544, 0.449758, -7.55268}, {0.820361, -1.18137, 0.00365793, -0.670026, 0.174063, -1.44271, 0.904569, 1.43103, -0.00443094, 3.16471, 1.27115, -4.33044, -0.185824, 1.2451, 1.77876, -0.28991, -1.984, 1.78876, -2.13213, -0.308587, 0.000955489, -2.99153, 6.7095, -1.80339, 4.81224, -0.387667, 5.76987, -3.43245, -6.96921, -1.76104}, {-4.81192, -4.81192, 0.736124, -0.501255, 1.51797, 0.85277, 0.0700522, -1.94917, 0.533356, -1.17277, -1.17277, -1.14075, 0.641985, -9.9308, -4.16186, 0.532996, 0.532996, -1.71335, -2.34942, 8.22336, -2.48939, 4.15809, 4.15809, 6.27635, 2.06921, -0.426686, 0.355964, 1.36304, 3.85893, 0.750782}, {1.60397, 1.60397, -0.245375, 1.50376, -4.5539, -2.55831, 0.0700522, -1.94917, 0.533356, -1.17277, -1.17277, -1.14075, -7.77893, -10.2748, 0.230717, 0.252787, 8.32967, -3.84677, -2.06921, 0.426686, -0.355964, -0.532996, -0.532996, 1.71335, 6.76029, 4.2644, 4.91897, 1.36304, 3.85893, 0.750782}, {1.60397, 1.60397, -0.245375, -0.501255, 1.51797, 0.85277, -0.210157, 5.84751, -1.60007, -1.17277, -1.17277, -1.14075, -1.36304, -3.85893, -0.750782, 2.53802, -5.53887, -5.12443, -8.4851, -5.98921, 0.625534, -0.532996, -0.532996, 1.71335, 2.06921, -0.426686, 0.355964, 6.05412, 8.55001, 5.31379}, {1.60397, 1.60397, -0.245375, -0.501255, 1.51797, 0.85277, 0.0700522, -1.94917, 0.533356, 3.51831, 3.51831, 3.42225, -1.36304, -3.85893, -0.750782, 0.532996, 0.532996, -1.71335, -2.06921, 0.426686, -0.355964, -6.94889, -6.94889, 2.69484, 4.07423, -6.49855, -3.05512, 1.08283, 11.6556, -1.38264}, {-4.7272, -4.7272, -4.7272, -1.57573, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, 6.30294, 6.30294, -10.1984, -1.8181e-12, 3.89543, -1.80878e-12, -10.1984, 6.30294, 6.30294, 6.30294, -10.1984, 6.30294, 3.89543, -1.79678e-12, -1.79323e-12, 3.77476e-15, -3.77476e-15, 3.89543}, {1.57573, 1.57573, 1.57573, 4.7272, 4.7272, -4.7272, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, -6.30294, -6.30294, -10.1984, -6.30294, 10.1984, 6.30294, -3.89543, 1.79323e-12, 1.80544e-12, 1.81771e-12, -3.89543, 1.82415e-12, 10.1984, -6.30294, 6.30294, 3.55271e-15, -3.55271e-15, 3.89543}, {1.57573, 1.57573, 1.57573, -1.57573, -1.57573, 1.57573, -4.7272, 4.7272, 4.7272, -1.57573, 1.57573, -1.57573, -3.9968e-15, 3.10862e-15, -3.89543, 6.30294, 10.1984, -6.30294, -10.1984, -6.30294, -6.30294, 1.82792e-12, -3.89543, 1.81616e-12, 3.89543, -1.80234e-12, -1.79368e-12, 6.30294, -6.30294, 10.1984}, {1.57573, 1.57573, 1.57573, -1.57573, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, 4.7272, -4.7272, 4.7272, -2.66454e-15, 1.33227e-15, -3.89543, -1.81033e-12, 3.89543, -1.81055e-12, -3.89543, 1.80367e-12, 1.80389e-12, -6.30294, -10.1984, -6.30294, 10.1984, 6.30294, -6.30294, -6.30294, 6.30294, 10.1984}, {1.77636e-15, 8.88178e-16, 3.96048, -1.97452e-12, 2.01922, 0.776088, 1.44665, -0.572575, 0.322765, -1.44665, -1.44665, 0.221307, 1.03391e-11, -10.5728, -2.43184, -1.78815, -1.78815, -1.35826, -7.57474, 2.99804, -0.0582134, 7.57474, 7.57474, 0.47303, 1.78815, -0.707741, -1.23285, -2.44094e-12, 2.4959, -0.672511}, {2.22045e-16, 0, -1.32016, 5.92356e-12, -6.05767, -2.32827, 1.44665, -0.572575, 0.322765, -1.44665, -1.44665, 0.221307, 2.43894e-12, -2.4959, 5.95315, -7.57474, 0.502145, -2.64932, -1.78815, 0.707741, 1.23285, 1.78815, 1.78815, 1.35826, 7.57474, 5.07885, -2.11808, -2.44005e-12, 2.4959, -0.672511}, {4.44089e-16, 4.44089e-16, -1.32016, -1.97278e-12, 2.01922, 0.776088, -4.33994, 1.71772, -0.968296, -1.44665, -1.44665, 0.221307, 2.43805e-12, -2.4959, 0.672511, -1.78815, -9.86504, -4.46261, -1.78815, 0.707741, 6.51349, 1.78815, 1.78815, 1.35826, 1.78815, -0.707741, -1.23285, 5.78659, 8.28248, -1.55774}, {2.22045e-16, 2.22045e-16, -1.32016, -1.97211e-12, 2.01922, 0.776088, 1.44665, -0.572575, 0.322765, 4.33994, 4.33994, -0.663921, 2.43761e-12, -2.4959, 0.672511, -1.78815, -1.78815, -1.35826, -1.78815, 0.707741, 1.23285, 1.78815, 1.78815, 6.6389, 1.78815, -8.78463, -4.3372, -5.78659, 4.7862, -1.96357}, {-5.69487, 4.44089e-15, -2.66454e-15, -0.575562, 1.78885, 1.78885, 0.744968, -3.64699, -0.373467, -2.0677, 1.85814, -1.41539, 0.667265, -9.36656, -9.36656, -0.209397, 2.29678, -1.74951, -6.24712, 19.0959, 1.9555, 8.48018, -9.72932, 7.41106, 3.26725, -4.50793, -0.461631, 1.63498, 2.21115, 2.21115}, {1.89829, 2.66454e-15, -6.66134e-16, 1.72669, -5.36656, -5.36656, 0.744968, -3.64699, -0.373467, -2.0677, 1.85814, -1.41539, -9.22815, -2.21115, -2.21115, -3.18927, 16.8847, -0.255645, -3.26725, 4.50793, 0.461631, 0.209397, -2.29678, 1.74951, 11.538, -11.9405, 5.19992, 1.63498, 2.21115, 2.21115}, {1.89829, 3.55271e-15, 4.44089e-16, -0.575562, 1.78885, 1.78885, -2.2349, 10.941, 1.1204, -2.0677, 1.85814, -1.41539, -1.63498, -2.21115, -2.21115, 2.09285, -4.85864, -8.90493, -10.8604, 4.50793, 0.461631, 0.209397, -2.29678, 1.74951, 3.26725, -4.50793, -0.461631, 9.90577, -5.2214, 7.87269}, {1.89829, -2.44249e-15, 1.33227e-15, -0.575562, 1.78885, 1.78885, 0.744968, -3.64699, -0.373467, 6.20309, -5.57441, 4.24616, -1.63498, -2.21115, -2.21115, -0.209397, 2.29678, -1.74951, -3.26725, 4.50793, 0.461631, -7.38377, -2.29678, 1.74951, 5.5695, -11.6633, -7.61705, -1.34489, 16.7991, 3.70501}, {1.1885, -5.81832, -0.595821, 1.89829, -2.11601e-15, 5.39995e-16, -1.41683, -1.32819, -1.74168, -0.0852942, -0.611252, 1.54307, -9.44989, -2.39728, -0.245492, -0.59512, 1.64173, 2.15284, 7.9083, 4.5572, 8.87406, 0.936297, 0.803277, -8.32513, -2.24099, 0.755549, -1.90734, 1.85673, 2.39728, 0.245492}, {-0.396168, 1.93944, 0.198607, -5.69487, -1.01358e-15, -4.64389e-15, -1.41683, -1.32819, -1.74168, -0.0852942, -0.611252, 1.54307, -0.272056, -10.155, -1.03992, 5.0722, 6.95448, 9.11956, 2.24099, -0.755549, 1.90734, 0.59512, -1.64173, -2.15284, -1.89981, 3.20056, -8.07964, 1.85673, 2.39728, 0.245492}, {-0.396168, 1.93944, 0.198607, 1.89829, 0, 0, 4.25049, 3.98456, 5.22504, -0.0852942, -0.611252, 1.54307, -1.85673, -2.39728, -0.245492, -8.18828, 1.64173, 2.15284, 3.82566, -8.51331, 1.11292, 0.59512, -1.64173, -2.15284, -2.24099, 0.755549, -1.90734, 2.1979, 4.84229, -5.9268}, {-0.396168, 1.93944, 0.198607, 1.89829, 2.88057e-16, -7.27184e-16, -1.41683, -1.32819, -1.74168, 0.255883, 1.83376, -4.62922, -1.85673, -2.39728, -0.245492, -0.59512, 1.64173, 2.15284, 2.24099, -0.755549, 1.90734, 2.17979, -9.39949, -2.94726, -9.83415, 0.755549, -1.90734, 7.52404, 7.71003, 7.21221}, {-5.53939e-11, -0.00379978, 5.36656, -2.34313, -2.34273, 1.78885, -6.81003e-16, 2.34147, 0, 2.34313, 0, 0, 12.2688, 12.2651, -7.15542, 2.89626, 0.00156559, -2.21115, -2.28204e-11, -12.2616, 2.21115, -12.2688, -0.00156559, 2.21115, 2.28231e-11, 2.89578, -2.21115, -2.89626, -2.89421, 0}, {1.23088e-11, 0.00126659, -1.78885, 7.02938, 7.0282, -5.36656, -2.04301e-15, 2.34147, 0, 2.34313, -1.36201e-15, 0, 2.89626, 2.88915, 7.15542, 2.89626, -9.3643, -2.21115, -1.52118e-11, -2.89578, 2.21115, -2.89626, -0.00156559, 2.21115, -9.3725, 2.89578, -2.21115, -2.89626, -2.89421, 0}, {1.23057e-11, 0.00126659, -1.78885, -2.34313, -2.34273, 1.78885, 0, -7.0244, 0, 2.34313, 0, 0, 2.89626, 2.89421, 4.44089e-16, 12.2688, 9.3725, -9.36656, -6.44356e-11, -2.90084, 9.36656, -2.89626, -0.00156559, 2.21115, 1.52105e-11, 2.89578, -2.21115, -12.2688, -2.89421, 0}, {1.23084e-11, 0.00126659, -1.78885, -2.34313, -2.34273, 1.78885, 2.04301e-15, 2.34147, 0, -7.02938, 0, 0, 2.89626, 2.89421, 4.44089e-16, 2.89626, 0.00156559, -2.21115, -1.52163e-11, -2.89578, 2.21115, -2.89626, -0.00663197, 9.36656, 9.3725, 12.2667, -9.36656, -2.89626, -12.2601, 0}, {-7.02938, -5.36656, -7.02938, -1.21095e-11, -1.78885, -1.21105e-11, 0, 0, -2.34313, -2.34313, 0, 0, -2.89626, 7.15542, -2.89626, 1.49681e-11, 2.21115, 2.89626, -2.89626, -2.21115, 9.3725, 9.3725, -2.21115, -2.89626, 2.89626, 2.21115, 1.49694e-11, 2.89626, 0, 2.89626}, {2.34313, 1.78885, 2.34313, 5.47931e-11, 5.36656, 5.47978e-11, 0, 0, -2.34313, -2.34313, 0, 0, -12.2688, -7.15542, -12.2688, 2.2576e-11, 2.21115, 12.2688, -2.89626, -2.21115, -2.25785e-11, -2.25766e-11, -2.21115, -2.89626, 12.2688, 2.21115, 2.25779e-11, 2.89626, 0, 2.89626}, {2.34313, 1.78885, 2.34313, -1.21079e-11, -1.78885, -1.21105e-11, 0, 0, 7.02938, -2.34313, 0, 0, -2.89626, -4.44089e-16, -2.89626, 6.33979e-11, 9.36656, 2.89626, -12.2688, -9.36656, -9.3725, -1.49668e-11, -2.21115, -2.89626, 2.89626, 2.21115, 1.49694e-11, 12.2688, 0, 2.89626}, {2.34313, 1.78885, 2.34313, -1.21105e-11, -1.78885, -1.21079e-11, 0, 0, -2.34313, 7.02938, 0, 0, -2.89626, -4.44089e-16, -2.89626, 1.49694e-11, 2.21115, 2.89626, -2.89626, -2.21115, -1.49668e-11, -9.3725, -9.36656, -12.2688, 2.89626, 9.36656, 6.33979e-11, 2.89626, 0, 12.2688}, {6.00487, -2.5896, 0, 1.30033, -0.681296, -1.31177, -1.30033, -0.651333, 1.31177, 2.00162, 0.469428, 0, -4.33448, 2.50034, 6.86849, 0, 1.64722, 0, 9.28277, 2.34345, -6.86849, -8.00649, -3.52493, 0, -4.08144, 0.261882, 1.62143, -0.866843, 0.224847, -1.62143}, {-2.00162, 0.8632, -1.61346e-16, -3.901, 2.04389, 3.9353, -1.30033, -0.651333, 1.31177, 2.00162, 0.469428, -6.06985e-17, 8.87333, -3.67765, 1.62143, 5.20133, 4.25255, -5.24706, 4.08144, -0.261882, -1.62143, 5.28204e-17, -1.64722, 2.22045e-16, -12.0879, -1.61583, 1.62143, -0.866843, 0.224847, -1.62143}, {-2.00162, 0.8632, -1.00648e-16, 1.30033, -0.681296, -1.31177, 3.901, 1.954, -3.9353, 2.00162, 0.469428, -1.21397e-16, 0.866843, -0.224847, 1.62143, -5.20133, 4.3724, 5.24706, 12.0879, -3.71468, -1.62143, 4.9691e-16, -1.64722, 2.22045e-16, -4.08144, 0.261882, 1.62143, -8.87333, -1.65287, -1.62143}, {-2.00162, 0.8632, 0, 1.30033, -0.681296, -1.31177, -1.30033, -0.651333, 1.31177, -6.00487, -1.40829, 0, 0.866843, -0.224847, 1.62143, 0, 1.64722, 0, 4.08144, -0.261882, -1.62143, 8.00649, -5.10002, 0, -9.28277, 2.98706, 6.86849, 4.33448, 2.83018, -6.86849}, {-3.67855, 1.13524, -1.13945, -0.728854, -0.729491, 0.729491, -0.347691, -0.347995, -1.25767, -0.149637, 1.4559, 0.148365, 2.30068, 4.28741, -4.28915, 1.33068, 1.33185, 0.652868, 0.304891, 2.28987, 6.11578, -0.732135, -7.15545, -1.24633, 1.08587, -0.897892, -1.08509, 0.614731, -1.36945, 1.37118}, {1.22618, -0.378415, 0.379817, 2.18656, 2.18847, -2.18847, -0.347691, -0.347995, -1.25767, -0.149637, 1.4559, 0.148365, -5.51946, 2.8831, -2.89045, 2.72145, 2.72383, 5.68356, -1.08587, 0.897892, 1.08509, -1.33068, -1.33185, -0.652868, 1.68442, -6.72149, -1.67855, 0.614731, -1.36945, 1.37118}, {1.22618, -0.378415, 0.379817, -0.728854, -0.729491, 0.729491, 1.04307, 1.04399, 3.77302, -0.149637, 1.4559, 0.148365, -0.614731, 1.36945, -1.37118, 4.2461, 4.24981, -2.2651, -5.9906, 2.41155, -0.434178, -1.33068, -1.33185, -0.652868, 1.08587, -0.897892, -1.08509, 1.21328, -7.19305, 0.777722}, {1.22618, -0.378415, 0.379817, -0.728854, -0.729491, 0.729491, -0.347691, -0.347995, -1.25767, 0.448911, -4.3677, -0.445094, -0.614731, 1.36945, -1.37118, 1.33068, 1.33185, 0.652868, -1.08587, 0.897892, 1.08509, -6.23541, 0.181812, -2.17214, 4.00129, 2.02007, -4.00305, 2.0055, 0.0225343, 6.40187}, {-3.16808, 0, 5.09912e-16, -0.781545, 0, -1.31177, 0.234793, 1.31177, 1.31177, -0.509273, -1.31177, -1.26089e-16, 2.78691, 0, 6.86849, 0.675824, -1.62143, -2.22045e-16, -2.53471, -6.86849, -6.86849, 1.36127, 6.86849, 7.264e-16, 1.59554, 1.62143, 1.62143, 0.339276, 0, -1.62143}, {1.05603, 0, 6.58225e-17, 2.34464, 0, 3.9353, 0.234793, 1.31177, 1.31177, -0.509273, -1.31177, 3.78267e-16, -4.56338, 0, 1.62143, -0.263347, -6.86849, -5.24706, -1.59554, -1.62143, -1.62143, -0.675824, 1.62143, -4.44089e-16, 3.63263, 6.86849, 1.62143, 0.339276, 0, -1.62143}, {1.05603, -2.22045e-16, 6.02665e-17, -0.781545, 3.78267e-16, -1.31177, -0.704378, -3.9353, -3.9353, -0.509273, -1.31177, -5.04356e-16, -0.339276, -2.22045e-16, 1.62143, 3.80201, -1.62143, 5.24706, -5.81964, -1.62143, -1.62143, -0.675824, 1.62143, 4.44089e-16, 1.59554, 1.62143, 1.62143, 2.37637, 5.24706, -1.62143}, {1.05603, 0, 0, -0.781545, 0, -1.31177, 0.234793, 1.31177, 1.31177, 1.52782, 3.9353, 0, -0.339276, 0, 1.62143, 0.675824, -1.62143, 0, -1.59554, -1.62143, -1.62143, -4.89993, 1.62143, 0, 4.72172, 1.62143, 6.86849, -0.599895, -5.24706, -6.86849}, {-4.31352, 0.137385, -4.35145, -1.43784, 0.845244, 0.568738, 0, -1.33263, 0, 1.50855e-12, 0.53318, -2.01922, 5.75136, -4.36915, -4.77085, 1.77727, 0.602441, -0.702999, -1.77727, 7.03434, -1.7929, -1.77727, -2.73516, 8.77989, 1.77727, -1.70383, 1.7929, -1.86467e-12, 0.988174, 2.4959}, {1.43784, -0.0457949, 1.45048, 4.31352, -2.53573, -1.70622, 0, -1.33263, 0, 1.50567e-12, 0.53318, -2.01922, -5.75136, -0.804994, -8.29783, 1.77727, 5.93296, -0.702999, -1.77727, 1.70383, -1.7929, -1.77727, -0.602441, 0.702999, 1.77727, -3.83654, 9.86978, -1.86111e-12, 0.988174, 2.4959}, {1.43784, -0.0457949, 1.45048, -1.43784, 0.845244, 0.568738, 0, 3.99789, 0, 1.50891e-12, 0.53318, -2.01922, 1.86476e-12, -0.988174, -2.4959, 7.52863, -2.77854, -2.97795, -7.52863, 1.887, -7.59483, -1.77727, -0.602441, 0.702999, 1.77727, -1.70383, 1.7929, -7.90075e-12, -1.14454, 10.5728}, {1.43784, -0.0457949, 1.45048, -1.43784, 0.845244, 0.568738, 0, -1.33263, 0, -4.51484e-12, -1.59954, 6.05767, 1.85986e-12, -0.988174, -2.4959, 1.77727, 0.602441, -0.702999, -1.77727, 1.70383, -1.7929, -7.52863, -0.419261, -5.09894, 7.52863, -5.0848, -0.482057, -1.86021e-12, 6.31869, 2.4959}, {0, 7.02938, 1.2039e-15, 0, 0, -2.34313, 1.78885, 2.34313, 2.34059, -1.78885, -1.21095e-11, 0.00253498, 0, 2.89626, 12.2688, -2.21115, -2.89626, 0.00313341, -9.36656, -9.3725, -12.2555, 9.36656, 2.89626, -0.0132733, 2.21115, 1.49681e-11, 2.89313, 0, -2.89626, -2.89626}, {0, -2.34313, 2.70617e-16, 0, 0, 7.02938, 1.78885, 2.34313, 2.34059, -1.78885, -1.2111e-11, 0.00253498, 0, 12.2688, 2.89626, -9.36656, -12.2688, -9.35923, -2.21115, -1.49695e-11, -2.89313, 2.21115, 2.89626, -0.00313341, 9.36656, 6.34142e-11, 2.88299, 0, -2.89626, -2.89626}, {0, -2.34313, -2.48499e-16, 0, 0, -2.34313, -5.36656, -7.02938, -7.02177, -1.78885, -1.21116e-11, 0.00253498, 0, 2.89626, 2.89626, -2.21115, -2.89626, 9.37564, -2.21115, 9.3725, -2.89313, 2.21115, 2.89626, -0.00313341, 2.21115, 1.49707e-11, 2.89313, 7.15542, -2.89626, -2.9064}, {0, -2.34313, 5.31259e-16, 0, 0, -2.34313, 1.78885, 2.34313, 2.34059, 5.36656, 5.47978e-11, -0.00760494, 0, 2.89626, 2.89626, -2.21115, -2.89626, 0.00313341, -2.21115, -2.25774e-11, -2.89313, 2.21115, 12.2688, -0.00313341, 2.21115, 2.25779e-11, 12.2656, -7.15542, -12.2688, -12.2586}, {-3.23058, -0.349184, -0.349184, -0.223923, -1.25104, -1.25104, -0.552433, 1.28003, -0.0317341, -0.300503, -0.14539, 1.16638, -0.158596, 6.40664, 6.40664, 0.959628, -0.0358398, 1.58559, 1.56151, -6.8462, 0.0222906, 0.242385, 0.617398, -6.25109, 0.648226, 1.72608, 0.104646, 1.05429, -1.40249, -1.40249}, {1.07686, 0.116395, 0.116395, 0.671768, 3.75311, 3.75311, -0.552433, 1.28003, -0.0317341, -0.300503, -0.14539, 1.16638, -5.36172, 0.936916, 0.936916, 3.16936, -5.15596, 1.71253, -0.648226, -1.72608, -0.104646, -0.959628, 0.0358398, -1.58559, 1.85024, 2.30764, -4.56086, 1.05429, -1.40249, -1.40249}, {1.07686, 0.116395, 0.116395, -0.223923, -1.25104, -1.25104, 1.6573, -3.84009, 0.0952024, -0.300503, -0.14539, 1.16638, -1.05429, 1.40249, 1.40249, 1.85532, 4.96831, 6.58973, -4.95566, -2.19166, -0.570224, -0.959628, 0.0358398, -1.58559, 0.648226, 1.72608, 0.104646, 2.2563, -0.820936, -6.068}, {1.07686, 0.116395, 0.116395, -0.223923, -1.25104, -1.25104, -0.552433, 1.28003, -0.0317341, 0.90151, 0.436169, -3.49913, -1.05429, 1.40249, 1.40249, 0.959628, -0.0358398, 1.58559, -0.648226, -1.72608, -0.104646, -5.26706, -0.429738, -2.05117, 1.54392, 6.73022, 5.10879, 3.26402, -6.52262, -1.27556}, {5.36656, 7.02938, -7.02938, 0, 0, -2.34313, 1.78885, -1.02092e-11, 1.05679e-11, 0, 2.34313, 0, 2.21115, 2.89626, 9.3725, -2.21115, 1.26192e-11, 2.89626, -7.15542, 2.89626, -2.89626, 2.21115, -9.3725, -2.89626, 0, -2.89626, 2.89626, -2.21115, -2.89626, -1.30626e-11}, {-1.78885, -2.34313, 2.34313, 0, 0, 7.02938, 1.78885, -1.02081e-11, 1.05669e-11, -1.04056e-15, 2.34313, -6.14662e-27, 9.36656, 12.2688, -9.3725, -9.36656, 5.34504e-11, 2.89626, -8.4211e-16, 2.89626, -2.89626, 2.21115, -1.26174e-11, -2.89626, 5.44843e-15, -12.2688, 2.89626, -2.21115, -2.89626, -1.30613e-11}, {-1.78885, -2.34313, 2.34313, 0, 0, -2.34313, -5.36656, 3.06298e-11, -3.17084e-11, 0, 2.34313, 0, 2.21115, 2.89626, 1.3064e-11, -2.21115, 1.26202e-11, 12.2688, 7.15542, 12.2688, -12.2688, 2.21115, -1.26196e-11, -2.89626, 0, -2.89626, 2.89626, -2.21115, -12.2688, -1.30646e-11}, {-1.78885, -2.34313, 2.34313, 0, 0, -2.34313, 1.78885, -1.02092e-11, 1.05658e-11, 0, -7.02938, 0, 2.21115, 2.89626, 1.30595e-11, -2.21115, 1.26192e-11, 2.89626, 4.44089e-16, 2.89626, -2.89626, 9.36656, 9.3725, -12.2688, 0, -2.89626, 12.2688, -9.36656, -2.89626, -5.53233e-11}, {0, 9.45441, 0, 3.15147, 1.39953e-15, -1.39953e-15, -1.36261, 1.36261, 1.78885, -1.78885, 1.78885, -1.78885, -16.5013, 3.89543, 7.54952e-15, -2.21115, -1.68428, -2.21115, 7.13474, -3.23931, -9.36656, 9.36656, -5.47113, 9.36656, -1.68428, -2.21115, 2.21115, 3.89543, -3.89543, -1.77636e-15}, {8.88178e-16, -3.15147, 2.22045e-16, -9.45441, -1.00042e-15, 8.3972e-15, -1.36261, 1.36261, 1.78885, -1.78885, 1.78885, -1.78885, -3.89543, 16.5013, 5.32907e-15, 3.23931, -7.13474, -9.36656, 1.68428, 2.21115, -2.21115, 2.21115, 1.68428, 2.21115, 5.47113, -9.36656, 9.36656, 3.89543, -3.89543, -3.55271e-15}, {4.44089e-16, -3.15147, 0, 3.15147, 0, 0, 4.08784, -4.08784, -5.36656, -1.78885, 1.78885, -1.78885, -3.89543, 3.89543, 0, -14.817, -1.68428, -2.21115, 1.68428, 14.817, -2.21115, 2.21115, 1.68428, 2.21115, -1.68428, -2.21115, 2.21115, 11.0508, -11.0508, 7.15542}, {6.66134e-16, -3.15147, -2.22045e-16, 3.15147, 1.39953e-15, -1.39953e-15, -1.36261, 1.36261, 1.78885, 5.36656, -5.36656, 5.36656, -3.89543, 3.89543, 1.77636e-15, -2.21115, -1.68428, -2.21115, 1.68428, 2.21115, -2.21115, 2.21115, 14.2902, 2.21115, -14.2902, -2.21115, 2.21115, 9.34589, -9.34589, -7.15542}, {4.32877, -2.26802, -4.36683, -0.571101, 0.113693, -1.4431, 0, -1.33263, 0, 2.01402, 0.462931, -0.0125109, 4.77387, -1.52978, 5.75693, 0.70592, 1.50669, 1.78377, 1.78355, 6.04326, -1.79923, -8.76202, -3.35841, -1.73373, -1.78355, -0.712746, 1.79923, -2.48947, 1.07501, 0.0154644}, {-1.44292, 0.756005, 1.45561, 1.7133, -0.34108, 4.3293, 0, -1.33263, 0, 2.01402, 0.462931, -0.0125109, 8.26116, -4.09903, -5.83791, 0.70592, 6.8372, 1.78377, 1.78355, 0.712746, -1.79923, -0.70592, -1.50669, -1.78377, -9.83965, -2.56447, 1.84928, -2.48947, 1.07501, 0.0154644}, {-1.44292, 0.756005, 1.45561, -0.571101, 0.113693, -1.4431, 0, 3.99789, 0, 2.01402, 0.462931, -0.0125109, 2.48947, -1.07501, -0.0154644, 2.99032, 1.05191, 7.55617, 7.55524, -2.31127, -7.62167, -0.70592, -1.50669, -1.78377, -1.78355, -0.712746, 1.79923, -10.5456, -0.776716, 0.0655081}, {-1.44292, 0.756005, 1.45561, -0.571101, 0.113693, -1.4431, 0, -1.33263, 0, -6.04207, -1.38879, 0.0375328, 2.48947, -1.07501, -0.0154644, 0.70592, 1.50669, 1.78377, 1.78355, 0.712746, -1.79923, 5.06577, -4.53071, -7.60621, 0.500853, -1.16752, 7.57163, -2.48947, 6.40552, 0.0154644}, {-4.70136, -8.88178e-16, -1.57513e-15, 0.134389, 1.44665, -1.44665, -0.426776, 0.569981, 1.4404, -1.27473, -2.01663, 0.00624416, -2.64074, -7.57474, 7.57474, 0.36141, -2.49269, 0.00771821, 0.297559, -2.98446, -7.54205, 4.73753, 10.5592, -0.0326948, 1.40954, 0.704535, 1.78044, 2.10318, 1.78815, -1.78815}, {1.56712, -8.88178e-16, 1.00961e-15, -0.403167, -4.33994, 4.33994, -0.426776, 0.569981, 1.4404, -1.27473, -2.01663, 0.00624416, -8.37167, -1.78815, 1.78815, 2.06851, -4.77261, -5.75389, -1.40954, -0.704535, -1.78044, -0.36141, 2.49269, -0.00771821, 6.50848, 8.77105, 1.75546, 2.10318, 1.78815, -1.78815}, {1.56712, -1.33227e-15, 1.05818e-16, 0.134389, 1.44665, -1.44665, 1.28033, -1.70994, -4.32121, -1.27473, -2.01663, 0.00624416, -2.10318, -1.78815, 1.78815, -0.176146, -8.27928, 5.79431, -7.67803, -0.704535, -1.78044, -0.36141, 2.49269, -0.00771821, 1.40954, 0.704535, 1.78044, 7.20212, 9.85467, -1.81313}, {1.56712, 0, 2.67147e-16, 0.134389, 1.44665, -1.44665, -0.426776, 0.569981, 1.4404, 3.8242, 6.04988, -0.0187325, -2.10318, -1.78815, 1.78815, 0.36141, -2.49269, 0.00771821, -1.40954, -0.704535, -1.78044, -6.6299, 2.49269, -0.00771821, 0.871989, -5.08205, 7.56702, 3.81029, -0.491769, -7.54977}, {-3.47256, 2.13004, 3.47613, -1.55533, -0.53343, -0.78864, -0.511744, 1.83496, 0.513241, 0.909554, -0.591516, 1.43411, 6.71303, 3.6707, 5.56162, 2.55504, -1.60878, 0.340411, 1.24875, -8.73034, -1.25512, -6.19326, 3.97484, -6.07685, 0.798222, 1.39051, -0.797844, -0.49172, -1.53698, -2.40706}, {1.15752, -0.710012, -1.15871, 4.66599, 1.60029, 2.36592, -0.511744, 1.83496, 0.513241, 0.909554, -0.591516, 1.43411, -4.13836, 4.37703, 7.0419, 4.60202, -8.94861, -1.71255, -0.798222, -1.39051, 0.797844, -2.55504, 1.60878, -0.340411, -2.83999, 3.75657, -6.53428, -0.49172, -1.53698, -2.40706}, {1.15752, -0.710012, -1.15871, -1.55533, -0.53343, -0.78864, 1.53523, -5.50487, -1.53972, 0.909554, -0.591516, 1.43411, 0.49172, 1.53698, 2.40706, 8.77636, 0.524942, 3.49497, -5.4283, 1.44954, 5.43269, -2.55504, 1.60878, -0.340411, 0.798222, 1.39051, -0.797844, -4.12993, 0.829086, -8.14349}, {1.15752, -0.710012, -1.15871, -1.55533, -0.53343, -0.78864, -0.511744, 1.83496, 0.513241, -2.72866, 1.77455, -4.30233, 0.49172, 1.53698, 2.40706, 2.55504, -1.60878, 0.340411, -0.798222, -1.39051, 0.797844, -7.18512, 4.44882, 4.29443, 7.01954, 3.52423, 2.35672, 1.55526, -8.87681, -4.46002}, {-0.0259854, 4.18315, -1.68926, -1.44604, -0.0976914, -0.778579, 1.44538, 0.20404, -0.351453, -0.00800116, 1.28804, 0.566947, 7.56086, 2.23507, 3.38068, 0.000816584, -0.131455, 1.3968, -7.57881, 0.655184, 1.14422, 0.031188, -5.02069, -3.66458, 1.79729, -1.47135, 0.261592, -1.7767, -1.84431, -0.266365}, {0.00866179, -1.39438, 0.563086, 4.33812, 0.293074, 2.33574, 1.44538, 0.20404, -0.351453, -0.00800116, 1.28804, 0.566947, 1.74205, 7.42184, -1.98598, -5.7807, -0.947617, 2.80261, -1.79729, 1.47135, -0.261592, -0.000816584, 0.131455, -1.3968, 1.8293, -6.62349, -2.0062, -1.7767, -1.84431, -0.266365}, {0.00866179, -1.39438, 0.563086, -1.44604, -0.0976914, -0.778579, -4.33614, -0.612121, 1.05436, -0.00800116, 1.28804, 0.566947, 1.7767, 1.84431, 0.266365, 5.78498, 0.259311, 4.51111, -1.83194, 7.04888, -2.51393, -0.000816584, 0.131455, -1.3968, 1.79729, -1.47135, 0.261592, -1.74469, -6.99645, -2.53415}, {0.00866179, -1.39438, 0.563086, -1.44604, -0.0976914, -0.778579, 1.44538, 0.20404, -0.351453, 0.0240035, -3.86411, -1.70084, 1.7767, 1.84431, 0.266365, 0.000816584, -0.131455, 1.3968, -1.79729, 1.47135, -0.261592, -0.0354637, 5.70899, -3.64914, 7.58145, -1.08058, 3.37591, -7.55822, -2.66047, 1.13945}, {5.36656, -5.36656, -5.36656, 3.15147, -4.93118e-15, 0, -1.36261, 1.36261, -1.78885, 0, -3.15147, 0, -14.2902, -2.21115, -2.21115, -2.21115, -1.68428, 2.21115, 9.34589, -9.34589, 7.15542, 2.21115, 14.2902, -2.21115, -3.89543, 3.89543, 0, 1.68428, 2.21115, 2.21115}, {-1.78885, 1.78885, 1.78885, -9.45441, 1.0595e-14, -4.1986e-15, -1.36261, 1.36261, -1.78885, 0, -3.15147, 0, 5.47113, -9.36656, -9.36656, 3.23931, -7.13474, 9.36656, 3.89543, -3.89543, 1.28583e-15, 2.21115, 1.68428, -2.21115, -3.89543, 16.5013, -1.72992e-15, 1.68428, 2.21115, 2.21115}, {-1.78885, 1.78885, 1.78885, 3.15147, 0, 0, 4.08784, -4.08784, 5.36656, 0, -3.15147, 0, -1.68428, -2.21115, -2.21115, -14.817, -1.68428, 2.21115, 11.0508, -11.0508, -7.15542, 2.21115, 1.68428, -2.21115, -3.89543, 3.89543, 0, 1.68428, 14.817, 2.21115}, {-1.78885, 1.78885, 1.78885, 3.15147, -4.93118e-15, 0, -1.36261, 1.36261, -1.78885, 0, 9.45441, 0, -1.68428, -2.21115, -2.21115, -2.21115, -1.68428, 2.21115, 3.89543, -3.89543, -4.44089e-16, 9.36656, -5.47113, -9.36656, -16.5013, 3.89543, 0, 7.13474, -3.23931, 9.36656}, {2.81269, -2.81269, -1.11325, -0.456393, -1.88673, -0.746758, 0.886018, 1.45711, 2.59594, 0.507938, -0.507938, -2.22026, 3.5486, 8.72017, 3.45139, -0.531046, 0.531046, -2.28571, -3.48036, -8.78841, -14.0512, -1.50071, 1.50071, 11.1668, -0.0637129, 2.95998, 3.66744, -1.72302, -1.17324, -0.464361}, {-0.937563, 0.937563, 0.371082, 1.36918, 5.6602, 2.24027, 0.886018, 1.45711, 2.59594, 0.507938, -0.507938, -2.22026, 5.47328, -2.57701, -1.01997, -4.07512, -5.29738, -12.6695, 0.0637129, -2.95998, -3.66744, 0.531046, -0.531046, 2.28571, -2.09546, 4.99173, 12.5485, -1.72302, -1.17324, -0.464361}, {-0.937563, 0.937563, 0.371082, -0.456393, -1.88673, -0.746758, -2.65805, -4.37132, -7.78781, 0.507938, -0.507938, -2.22026, 1.72302, 1.17324, 0.464361, 1.29453, 8.07798, 0.701322, 3.81396, -6.71023, -5.15177, 0.531046, -0.531046, 2.28571, -0.0637129, 2.95998, 3.66744, -3.75477, 0.858512, 8.41668}, {-0.937563, 0.937563, 0.371082, -0.456393, -1.88673, -0.746758, 0.886018, 1.45711, 2.59594, -1.52381, 1.52381, 6.66078, 1.72302, 1.17324, 0.464361, -0.531046, 0.531046, -2.28571, 0.0637129, -2.95998, -3.66744, 4.2813, -4.2813, 0.801382, 1.76186, 10.5069, 6.65447, -5.2671, -7.00167, -10.8481}, {8.88178e-16, 4.08096, 0.0852192, 2.97466e-16, 0.921902, -1.18196, 1.31177, 0.0265815, 1.34059, -1.31177, 0.411835, -0.130224, -1.11022e-15, -3.1457, 6.22395, -1.62143, -1.17239, -0.196078, -6.86849, 1.54226, -6.98432, 6.86849, -0.474951, 0.716974, 1.62143, -1.64859, 1.62195, 0, -0.541913, -1.4961}, {-2.22045e-16, -1.36032, -0.0284064, -4.46199e-16, -2.76571, 3.54589, 1.31177, 0.0265815, 1.34059, -1.31177, 0.411835, -0.130224, 8.88178e-16, 5.98319, 1.60972, -6.86849, -1.27872, -5.55845, -1.62143, 1.64859, -1.62195, 1.62143, 1.17239, 0.196078, 6.86849, -3.29593, 2.14285, 0, -0.541913, -1.4961}, {-1.33227e-15, -1.36032, -0.0284064, 4.46199e-16, 0.921902, -1.18196, -3.9353, -0.0797444, -4.02178, -1.31177, 0.411835, -0.130224, 8.88178e-16, 0.541913, 1.4961, -1.62143, -4.86, 4.53177, -1.62143, 7.08987, -1.50833, 1.62143, 1.17239, 0.196078, 1.62143, -1.64859, 1.62195, 5.24706, -2.18925, -0.975202}, {1.55431e-15, -1.36032, -0.0284064, -1.04113e-15, 0.921902, -1.18196, 1.31177, 0.0265815, 1.34059, 3.9353, -1.23551, 0.390672, -4.44089e-16, 0.541913, 1.4961, -1.62143, -1.17239, -0.196078, -1.62143, 1.64859, -1.62195, 1.62143, 6.61367, 0.309704, 1.62143, -5.3362, 6.3498, -5.24706, -0.648239, -6.85847}, {1.39697, -4.32433, -4.36732, 1.89829, -2.30844e-15, -1.37509e-15, 0.0801166, 0.574147, -1.4494, -1.51275, -2.01559, -0.00636856, -9.364, -1.78172, -1.79943, -2.44545, -0.709685, 1.79156, 0.156089, -4.78799, 5.78974, 8.49644, 8.77205, -1.76609, -0.476556, 2.49141, 0.00787198, 1.77083, 1.78172, 1.79943}, {-0.465658, 1.44144, 1.45577, -5.69487, 3.6613e-15, -2.04012e-15, 0.0801166, 0.574147, -1.4494, -1.51275, -2.01559, -0.00636856, 0.0918014, -7.54749, -7.62252, -2.76591, -3.00627, 7.58918, 0.476556, -2.49141, -0.00787198, 2.44545, 0.709685, -1.79156, 5.57444, 10.5538, 0.0333462, 1.77083, 1.78172, 1.79943}, {-0.465658, 1.44144, 1.45577, 1.89829, 0, 0, -0.24035, -1.72244, 4.34821, -1.51275, -2.01559, -0.00636856, -1.77083, -1.78172, -1.79943, -10.0386, -0.709685, 1.79156, 2.33919, -8.25718, -5.83096, 2.44545, 0.709685, -1.79156, -0.476556, 2.49141, 0.00787198, 7.82183, 9.84408, 1.82491}, {-0.465658, 1.44144, 1.45577, 1.89829, 9.49861e-16, 3.00123e-18, 0.0801166, 0.574147, -1.4494, 4.53825, 6.04677, 0.0191057, -1.77083, -1.78172, -1.79943, -2.44545, -0.709685, 1.79156, 0.476556, -2.49141, -0.00787198, 4.30808, -5.05609, -7.61465, -8.06972, 2.49141, 0.00787198, 1.45037, -0.514866, 7.59705}, {4.31352, -3.43679, 1.70622, 1.43784, 0.720211, -1.45048, 0, -1.33263, 0, -1.50621e-12, -0.53318, 2.01922, -5.75136, -5.18711, 8.29783, -1.77727, 0.75699, 1.7929, 1.77727, 5.5617, 0.702999, 1.77727, 1.37573, -9.86978, -1.77727, -0.231184, -0.702999, 1.86177e-12, 2.30627, -2.4959}, {-1.43784, 1.1456, -0.568738, -4.31352, -2.16063, 4.35145, 0, -1.33263, 0, -1.50909e-12, -0.53318, 2.01922, 5.75136, -6.88865, 4.77085, -1.77727, 6.08751, 1.7929, 1.77727, 0.231184, 0.702999, 1.77727, -0.75699, -1.7929, -1.77727, 1.90153, -8.77989, 1.86534e-12, 2.30627, -2.4959}, {-1.43784, 1.1456, -0.568738, 1.43784, 0.720211, -1.45048, 0, 3.99789, 0, -1.50945e-12, -0.53318, 2.01922, -1.86543e-12, -2.30627, 2.4959, -7.52863, -2.12386, 7.59483, 7.52863, -4.3512, 2.97795, 1.77727, -0.75699, -1.7929, -1.77727, -0.231184, -0.702999, 7.90358e-12, 4.43898, -10.5728}, {-1.43784, 1.1456, -0.568738, 1.43784, 0.720211, -1.45048, 0, -1.33263, 0, 4.52348e-12, 1.59954, -6.05767, -1.86342e-12, -2.30627, 2.4959, -1.77727, 0.75699, 1.7929, 1.77727, 0.231184, 0.702999, 7.52863, -5.33938, 0.482057, -7.52863, -3.11203, 5.09894, 1.86378e-12, 7.63678, -2.4959}, {-4.90958, -4.91099, -14.364, 1.57551, -1.57551, -1.57596, -1.57551, 1.57551, -1.57551, -1.63653, -1.637, -1.63653, -10.2723, 6.22604, 2.33354, -1.68754e-14, 1.70974e-14, 3.89543, 6.22661, -10.2729, 2.33118, 6.54611, 6.54798, 2.65068, 0.0754226, 3.97087, 3.97085, 3.9703, 0.076001, 3.9703}, {1.63653, 1.637, 4.788, -4.72653, 4.72653, 4.72788, -1.57551, 1.57551, -1.57551, -1.63653, -1.637, -1.63653, -10.5164, -6.62398, -23.1223, 6.30204, -6.30204, 10.1975, -0.0754226, -3.97087, -3.97085, 1.38046e-14, -1.50613e-14, -3.89543, 6.62153, 10.5189, 10.517, 3.9703, 0.076001, 3.9703}, {1.63653, 1.637, 4.788, 1.57551, -1.57551, -1.57596, 4.72653, -4.72653, 4.72653, -1.63653, -1.637, -1.63653, -3.9703, -0.076001, -3.9703, -6.30204, 6.30204, 10.1993, -6.62153, -10.5189, -23.1228, 1.64691e-14, -1.72818e-14, -3.89543, 0.0754226, 3.97087, 3.97085, 10.5164, 6.62398, 10.5164}, {1.63653, 1.637, 4.788, 1.57551, -1.57551, -1.57596, -1.57551, 1.57551, -1.57551, 4.90958, 4.91099, 4.90958, -3.9703, -0.076001, -3.9703, -1.70974e-14, 1.68754e-14, 3.89543, -0.0754226, -3.97087, -3.97085, -6.54611, -6.54798, -23.0474, -6.22661, 10.2729, 10.2747, 10.2723, -6.22604, 10.2723}, {1.1292, -10.9335, -1.11964, 0, 0, 1.60567, 1.79029, -1.78764, -1.78873, -1.41389, -1.85687, -0.190152, 0.465254, -4.50486, -8.8687, -2.21292, 2.20964, 0.226277, -8.90884, 4.85533, 8.90459, 7.8685, 5.21784, 0.53433, 1.74767, 2.29522, -1.74967, -0.465254, 4.50486, 2.44603}, {-0.376399, 3.64451, 0.373213, 3.83169e-15, 8.27924e-17, -4.817, 1.79029, -1.78764, -1.78873, -1.41389, -1.85687, -0.190152, 1.97085, -19.0829, -3.93889, -9.37409, 9.36019, 7.3812, -1.74767, -2.29522, 1.74967, 2.21292, -2.20964, -0.226277, 7.40324, 9.72271, -0.989068, -0.465254, 4.50486, 2.44603}, {-0.376399, 3.64451, 0.373213, -2.25438e-15, -2.96069e-15, 1.60567, -5.37088, 5.36291, 5.36619, -1.41389, -1.85687, -0.190152, 0.465254, -4.50486, -2.44603, -2.21292, 2.20964, -6.1964, -0.242074, -16.8733, 0.256821, 2.21292, -2.20964, -0.226277, 1.74767, 2.29522, -1.74967, 5.19032, 11.9323, 3.20664}, {-0.376399, 3.64451, 0.373213, 0, 0, 1.60567, 1.79029, -1.78764, -1.78873, 4.24168, 5.57061, 0.570455, 0.465254, -4.50486, -2.44603, -2.21292, 2.20964, 0.226277, -1.74767, -2.29522, 1.74967, 3.71852, -16.7877, -1.71913, 1.74767, 2.29522, -8.17235, -7.62642, 11.6554, 9.60095}, {-9.76996e-15, 8.88178e-16, -7.02938, 1.78885, 2.33948, -2.34059, -1.78885, 6.92504e-12, -0.00253498, 0, -2.33948, 0, -9.36656, -12.2497, 9.35923, 3.9968e-15, -2.89175, 2.89626, 9.36656, -3.62599e-11, -2.88299, -3.9968e-15, 12.2497, -2.89626, -2.21115, 8.55982e-12, 2.89313, 2.21115, 2.89175, 0.00313341}, {-2.22045e-15, -1.33227e-15, 2.34313, -5.36656, -7.01844, 7.02177, -1.78885, 6.92556e-12, -0.00253498, 0, -2.33948, 0, -2.21115, -2.89175, -9.37564, 7.15542, -2.89175, 2.9064, 2.21115, -8.55893e-12, -2.89313, 2.66454e-15, 2.89175, -2.89626, -2.21115, 9.35791, 2.89313, 2.21115, 2.89175, 0.00313341}, {3.9968e-15, 3.55271e-15, 2.34313, 1.78885, 2.33948, -2.34059, 5.36656, -2.0786e-11, 0.00760494, 0, -2.33948, 0, -2.21115, -2.89175, -0.00313341, -7.15542, -12.2497, 12.2586, 2.21115, -8.58513e-12, -12.2656, -4.88498e-15, 2.89175, -2.89626, -2.21115, 8.5687e-12, 2.89313, 2.21115, 12.2497, 0.00313341}, {0, 4.44089e-16, 2.34313, 1.78885, 2.33948, -2.34059, -1.78885, 6.92763e-12, -0.00253498, 0, 7.01844, 0, -2.21115, -2.89175, -0.00313341, 0, -2.89175, 2.89626, 2.21115, -8.56337e-12, -2.89313, 0, 2.89175, -12.2688, -9.36656, -9.35791, 12.2555, 9.36656, 2.89175, 0.0132733}, {5.21741, 5.22554, 3.98943, -2.33948, 0, 0, 1.54072, 1.54312, -0.61076, 2.53789, 0.198723, 1.94057, 14.3994, 2.15304, 1.64373, 0.987318, -1.90741, 0.754941, -5.91764, -5.92686, 4.84171, -11.1389, 1.11252, -8.51722, -0.245252, -0.245635, -2.39867, -5.04144, -2.15304, -1.64373}, {-1.73914, -1.74185, -1.32981, 7.01844, 0, 0, 1.54072, 1.54312, -0.61076, 2.53789, 0.198723, 1.94057, 11.998, 9.12042, 6.96297, -5.17557, -8.0799, 3.19798, 0.245252, 0.245635, 2.39867, -0.987318, 1.90741, -0.754941, -10.3968, -1.04052, -10.1609, -5.04144, -2.15304, -1.64373}, {-1.73914, -1.74185, -1.32981, -2.33948, 0, 0, -4.62217, -4.62937, 1.83228, 2.53789, 0.198723, 1.94057, 5.04144, 2.15304, 1.64373, 10.3452, -1.90741, 0.754941, 7.20179, 7.21302, 7.71791, -0.987318, 1.90741, -0.754941, -0.245252, -0.245635, -2.39867, -15.193, -2.94793, -9.40601}, {-1.73914, -1.74185, -1.32981, -2.33948, 0, 0, 1.54072, 1.54312, -0.61076, -7.61368, -0.596168, -5.82171, 5.04144, 2.15304, 1.64373, 0.987318, -1.90741, 0.754941, 0.245252, 0.245635, 2.39867, 5.96922, 8.87479, 4.5643, 9.11266, -0.245635, -2.39867, -11.2043, -8.32553, 0.799305}, {10.9417, 1.1195, -1.12048, -2.16738e-15, -8.61236e-16, 1.60567, 1.79007, 1.78742, -1.78898, 1.85717, -1.41425, -0.190182, 4.50824, 0.46126, -8.86905, -2.21265, -2.20937, 0.226585, -4.86469, -8.89778, 8.90555, -5.21604, 7.86637, 0.534145, -2.29559, 1.74811, -1.74964, -4.50824, -0.46126, 2.44638}, {-3.64724, -0.373167, 0.373493, -8.02431e-17, 3.82867e-15, -4.817, 1.79007, 1.78742, -1.78898, 1.85717, -1.41425, -0.190182, 19.0972, 1.95393, -3.94035, -9.37293, -9.35904, 7.3825, 2.29559, -1.74811, 1.74964, 2.21265, 2.20937, -0.226585, -9.72428, 7.40511, -0.988907, -4.50824, -0.46126, 2.44638}, {-3.64724, -0.373167, 0.373493, 2.96117e-15, -2.25495e-15, 1.60567, -5.37021, -5.36225, 5.36694, 1.85717, -1.41425, -0.190182, 4.50824, 0.46126, -2.44638, -2.21265, -2.20937, -6.19609, 16.8846, -0.25544, 0.255663, 2.21265, 2.20937, -0.226585, -2.29559, 1.74811, -1.74964, -11.9369, 5.19574, 3.20711}, {-3.64724, -0.373167, 0.373493, -7.40292e-16, 5.63738e-16, 1.60567, 1.79007, 1.78742, -1.78898, -5.57152, 4.24275, 0.570547, 4.50824, 0.46126, -2.44638, -2.21265, -2.20937, 0.226585, 2.29559, -1.74811, 1.74964, 16.8016, 3.70204, -1.72056, -2.29559, 1.74811, -8.17231, -11.6685, -7.61093, 9.60229}, {1.83228, 4.62937, -4.62937, 0, 0, -1.60567, 1.94057, -0.198723, 0.198723, -1.32981, 1.74185, -0.136178, 0.754941, 1.90741, 6.49998, -2.39867, 0.245635, 1.73908, -9.40601, 2.94793, -2.94793, 7.71791, -7.21302, -1.19437, 1.64373, -2.15304, 2.15304, -0.754941, -1.90741, -0.0773091}, {-0.61076, -1.54312, 1.54312, 0, 0, 4.817, 1.94057, -0.198723, 0.198723, -1.32981, 1.74185, -0.136178, 3.19798, 8.0799, -6.09519, -10.1609, 1.04052, 0.94419, -1.64373, 2.15304, -2.15304, 2.39867, -0.245635, -1.73908, 6.96297, -9.12042, 2.69775, -0.754941, -1.90741, -0.0773091}, {-0.61076, -1.54312, 1.54312, 0, 0, -1.60567, -5.82171, 0.596168, -0.596168, -1.32981, 1.74185, -0.136178, 0.754941, 1.90741, 0.0773091, -2.39867, 0.245635, 8.16175, 0.799305, 8.32553, -8.32553, 2.39867, -0.245635, -1.73908, 1.64373, -2.15304, 2.15304, 4.5643, -8.87479, 0.467403}, {-0.61076, -1.54312, 1.54312, 0, 0, -1.60567, 1.94057, -0.198723, 0.198723, 3.98943, -5.22554, 0.408534, 0.754941, 1.90741, 0.0773091, -2.39867, 0.245635, 1.73908, -1.64373, 2.15304, -2.15304, 4.84171, 5.92686, -7.91157, 1.64373, -2.15304, 8.57571, -8.51722, -1.11252, -0.872199}, {-1.12374, 4.33994, -1.71772, 0.422512, 1.58777e-12, -2.01922, 0.258935, 1.44665, 1.44665, -1.05603, 0, 0, -2.6753, 1.78815, 9.86504, -0.842315, -1.78815, 0.707741, -1.81881, -5.78659, -8.28248, 5.06642, 1.78815, -0.707741, 0.783066, -1.96259e-12, 2.4959, 0.985258, -1.78815, -1.78815}, {0.374579, -1.44665, 0.572575, -1.26754, -4.76439e-12, 6.05767, 0.258935, 1.44665, 1.44665, -1.05603, 0, 0, -2.48357, 7.57474, -0.502145, -1.87805, -7.57474, -5.07885, -0.783066, 1.9634e-12, -2.4959, 0.842315, 1.78815, -0.707741, 5.00717, -1.96304e-12, 2.4959, 0.985258, -1.78815, -1.78815}, {0.374579, -1.44665, 0.572575, 0.422512, 1.58777e-12, -2.01922, -0.776805, -4.33994, -4.33994, -1.05603, 0, 0, -0.985258, 1.78815, 1.78815, -2.53236, -1.78815, 8.78463, -2.28138, 5.78659, -4.7862, 0.842315, 1.78815, -0.707741, 0.783066, -1.96259e-12, 2.4959, 5.20936, -1.78815, -1.78815}, {0.374579, -1.44665, 0.572575, 0.422512, 1.58813e-12, -2.01922, 0.258935, 1.44665, 1.44665, 3.16808, 0, 0, -0.985258, 1.78815, 1.78815, -0.842315, -1.78815, 0.707741, -0.783066, 1.9634e-12, -2.4959, -0.656, 7.57474, -2.99804, -0.906981, -8.31556e-12, 10.5728, -0.0504823, -7.57474, -7.57474}, {-4.08784, 4.08784, -5.36656, 0, 3.15147, 0, -3.15147, 0, 0, 1.78885, -1.78885, -1.78885, -1.68428, -14.817, -2.21115, 3.89543, -3.89543, 0, 14.817, 1.68428, -2.21115, -11.0508, 11.0508, 7.15542, -2.21115, -1.68428, 2.21115, 1.68428, 2.21115, 2.21115}, {1.36261, -1.36261, 1.78885, -1.15954e-14, -9.45441, 4.1986e-15, -3.15147, 0, 0, 1.78885, -1.78885, -1.78885, -7.13474, 3.23931, -9.36656, 16.5013, -3.89543, 1.72992e-15, 2.21115, 1.68428, -2.21115, -3.89543, 3.89543, -2.17401e-15, -9.36656, 5.47113, 9.36656, 1.68428, 2.21115, 2.21115}, {1.36261, -1.36261, 1.78885, 0, 3.15147, 0, 9.45441, 0, 0, 1.78885, -1.78885, -1.78885, -1.68428, -2.21115, -2.21115, 3.89543, -16.5013, 0, -3.23931, 7.13474, -9.36656, -3.89543, 3.89543, -4.44089e-16, -2.21115, -1.68428, 2.21115, -5.47113, 9.36656, 9.36656}, {1.36261, -1.36261, 1.78885, 0, 3.15147, 0, -3.15147, 0, 0, -5.36656, 5.36656, 5.36656, -1.68428, -2.21115, -2.21115, 3.89543, -3.89543, 0, 2.21115, 1.68428, -2.21115, -9.34589, 9.34589, -7.15542, -2.21115, -14.2902, 2.21115, 14.2902, 2.21115, 2.21115}, {1.11747, -3.79023, -1.1121, -0.361676, -1.4194, 0.363688, 1.52298, 0.102889, 0.820003, -0.788811, 0.0531033, -1.55439, 2.35418, 5.87043, -2.3625, -1.43545, 1.6273, -1.46312, -7.51399, -2.1004, -4.7518, 4.59069, -1.83971, 7.68068, 1.42208, 1.68884, 1.47179, -0.907478, -0.192817, 0.907751}, {-0.372489, 1.26341, 0.370699, 1.08503, 4.25821, -1.09106, 1.52298, 0.102889, 0.820003, -0.788811, 0.0531033, -1.55439, 2.39743, -4.86083, -2.39055, -7.52735, 1.21575, -4.74314, -1.42208, -1.68884, -1.47179, 1.43545, -1.6273, 1.46312, 4.57732, 1.47643, 7.68935, -0.907478, -0.192817, 0.907751}, {-0.372489, 1.26341, 0.370699, -0.361676, -1.4194, 0.363688, -4.56893, -0.308667, -2.46001, -0.788811, 0.0531033, -1.55439, 0.907478, 0.192817, -0.907751, 0.0112586, 7.30492, -2.91787, 0.0678761, -6.74249, -2.95458, 1.43545, -1.6273, 1.46312, 1.42208, 1.68884, 1.47179, 2.24777, -0.40523, 7.12531}, {-0.372489, 1.26341, 0.370699, -0.361676, -1.4194, 0.363688, 1.52298, 0.102889, 0.820003, 2.36643, -0.15931, 4.66317, 0.907478, 0.192817, -0.907751, -1.43545, 1.6273, -1.46312, -1.42208, -1.68884, -1.47179, 2.9254, -6.68095, -0.0196727, 2.86879, 7.36645, 0.0170383, -6.99938, -0.604373, -2.37226}, {4.44089e-15, -4.05009, 8.88178e-16, -0.572575, -0.625677, 1.44665, 2.01922, -0.706554, 1.38558e-12, -1.44665, -0.0177991, -1.44665, 2.99804, 1.60736, -7.57474, -1.78815, 1.64673, -1.78815, -10.5728, 2.03083, -7.25442e-12, 7.57474, -1.57553, 7.57474, 2.4959, 0.79538, 1.71219e-12, -0.707741, 0.895349, 1.78815}, {-4.44089e-16, 1.35003, -2.22045e-15, 1.71772, 1.87703, -4.33994, 2.01922, -0.706554, 1.3879e-12, -1.44665, -0.0177991, -1.44665, 0.707741, -6.29547, -1.78815, -9.86504, 4.47294, -1.78815, -2.4959, -0.79538, -1.71263e-12, 1.78815, -1.64673, 1.78815, 8.28248, 0.866577, 5.78659, -0.707741, 0.895349, 1.78815}, {8.88178e-16, 1.35003, 6.66134e-16, -0.572575, -0.625677, 1.44665, -6.05767, 2.11966, -4.15591e-12, -1.44665, -0.0177991, -1.44665, 0.707741, -0.895349, -1.78815, 0.502145, 4.14944, -7.57474, -2.4959, -6.1955, -1.71596e-12, 1.78815, -1.64673, 1.78815, 2.4959, 0.79538, 1.7133e-12, 5.07885, 0.966546, 7.57474}, {4.44089e-16, 1.35003, 0, -0.572575, -0.625677, 1.44665, 2.01922, -0.706554, 1.38489e-12, 4.33994, 0.0533972, 4.33994, 0.707741, -0.895349, -1.78815, -1.78815, 1.64673, -1.78815, -2.4959, -0.79538, -1.71174e-12, 1.78815, -7.04685, 1.78815, 4.7862, 3.29809, -5.78659, -8.78463, 3.72156, 1.78815}, {1.70622, 4.31352, 1.19704, 8.51907e-16, 7.76069e-16, 1.08709, -1.45048, 1.43784, -0.312525, 2.01922, -1.65855e-12, -0.375548, 0.702999, 1.77727, -5.19885, 1.7929, -1.77727, -0.95741, 8.29783, -5.75136, 2.12961, -9.86978, 1.77727, 2.4596, -2.4959, 2.04913e-12, -0.879509, -0.702999, -1.77727, 0.850505}, {-0.568738, -1.43784, -0.399013, -2.80914e-15, 1.1641e-15, -3.26126, -1.45048, 1.43784, -0.312525, 2.01922, -1.65923e-12, -0.375548, 2.97795, 7.52863, 0.745546, 7.59483, -7.52863, 0.292691, 2.4959, -2.05105e-12, 0.879509, -1.7929, 1.77727, 0.95741, -10.5728, 8.68834e-12, 0.622683, -0.702999, -1.77727, 0.850505}, {-0.568738, -1.43784, -0.399013, 0, 0, 1.08709, 4.35145, -4.31352, 0.937576, 2.01922, -1.65685e-12, -0.375548, 0.702999, 1.77727, -0.850505, 1.7929, -1.77727, -5.30575, 4.77085, 5.75136, 2.47556, -1.7929, 1.77727, 0.95741, -2.4959, 2.04797e-12, -0.879509, -8.77989, -1.77727, 2.3527}, {-0.568738, -1.43784, -0.399013, 0, 0, 1.08709, -1.45048, 1.43784, -0.312525, -6.05767, 4.97324e-12, 1.12664, 0.702999, 1.77727, -0.850505, 1.7929, -1.77727, -0.95741, 2.4959, -2.04873e-12, 0.879509, 0.482057, 7.52863, 2.55346, -2.4959, 2.04909e-12, -5.22785, 5.09894, -7.52863, 2.10061}, {-2.41029, -2.40672, -2.40819, -0.80343, -0.802238, 0.80294, 1.63555, -1.63555, 0.0313083, -1.63555, 1.63555, -1.63698, 3.21372, 3.20895, -5.19647, -1.02855, 3.01327, -1.03119, -9.55693, 7.57221, -1.15616, 7.57074, -9.55546, 7.57909, 3.01474, -1.03003, 1.03093, 8.88178e-15, 5.77316e-15, 1.98471}, {0.80343, 0.802238, 0.802728, 2.41029, 2.40672, -2.40882, 1.63555, -1.63555, 0.0313083, -1.63555, 1.63555, -1.63698, -3.21372, -3.20895, -5.19563, -7.57074, 9.55546, -1.15642, -3.01474, 1.03003, -1.03093, 1.02855, -3.01327, 1.03119, 9.55693, -7.57221, 7.57883, 8.43769e-15, 7.54952e-15, 1.98471}, {0.80343, 0.802238, 0.802728, -0.80343, -0.802238, 0.80294, -4.90664, 4.90664, -0.0939249, -1.63555, 1.63555, -1.63698, -8.88178e-15, -7.54952e-15, -1.98471, 2.18516, 6.22222, -4.24295, -6.22846, -2.17893, -4.24184, 1.02855, -3.01327, 1.03119, 3.01474, -1.03003, 1.03093, 6.54219, -6.54219, 8.53262}, {0.80343, 0.802238, 0.802728, -0.80343, -0.802238, 0.80294, 1.63555, -1.63555, 0.0313083, 4.90664, -4.90664, 4.91093, -7.54952e-15, -8.43769e-15, -1.98471, -1.02855, 3.01327, -1.03119, -3.01474, 1.03003, -1.03093, -2.18516, -6.22222, -2.17973, 6.22846, 2.17893, -2.18083, -6.54219, 6.54219, 1.85948}, {-5.48006e-11, 5.36656, 0.00342441, 0, 0, -2.34462, 2.34313, 0, 0, -2.34313, 1.78885, 2.34576, -2.25788e-11, 2.21115, 12.278, -2.89626, 0, 2.89811, -12.2688, 2.21115, 0.00141093, 12.2688, -7.15542, -12.2812, 2.89626, -2.21115, -0.00141093, 2.25788e-11, -2.21115, -2.89952}, {1.2113e-11, -1.78885, -0.00114147, 0, 0, 7.03386, 2.34313, -1.04056e-15, -1.3645e-15, -2.34313, 1.78885, 2.34576, -6.34248e-11, 9.36656, 2.90409, -12.2688, 5.44843e-15, 2.89811, -2.89626, 2.21115, 0.00141093, 2.89626, -8.4211e-16, -2.89811, 12.2688, -9.36656, -9.38446, 1.49729e-11, -2.21115, -2.89952}, {1.2109e-11, -1.78885, -0.00114147, 0, 0, -2.34462, -7.02938, 0, 0, -2.34313, 1.78885, 2.34576, -1.49676e-11, 2.21115, 2.89952, -2.89626, 0, 12.2766, -2.89626, 9.36656, 0.00597681, 2.89626, 4.44089e-16, -2.89811, 2.89626, -2.21115, -0.00141093, 9.3725, -9.36656, -12.2826}, {1.21134e-11, -1.78885, -0.00114147, 0, 0, -2.34462, 2.34313, 0, 0, 7.02938, -5.36656, -7.03729, -1.49729e-11, 2.21115, 2.89952, -2.89626, 0, 2.89811, -2.89626, 2.21115, 0.00141093, 2.89626, 7.15542, -2.89354, 2.89626, -2.21115, 9.37707, -9.3725, -2.21115, -2.89952}, {-2.3518, -6.05767, -5.91704e-12, -0.0281756, -0.572575, -1.44665, -1.05603, 0, 0, 0.300269, -1.44665, 1.44665, -0.821464, 0.502145, 7.57474, 1.34015, 0.707741, 1.78815, 4.56043, -2.4959, -2.43827e-12, -2.54122, 5.07885, -7.57474, -0.336326, 2.4959, 2.43827e-12, 0.934166, 1.78815, -1.78815}, {0.783932, 2.01922, 1.9722e-12, 0.0845268, 1.71772, 4.33994, -1.05603, 0, 0, 0.300269, -1.44665, 1.44665, -4.06989, -9.86504, 1.78815, 5.56425, 0.707741, 1.78815, 0.336326, -2.4959, -2.43761e-12, -1.34015, -0.707741, -1.78815, -1.5374, 8.28248, -5.78659, 0.934166, 1.78815, -1.78815}, {0.783932, 2.01922, 1.97353e-12, -0.0281756, -0.572575, -1.44665, 3.16808, 0, 0, 0.300269, -1.44665, 1.44665, -0.934166, -1.78815, 1.78815, 1.45285, 2.99804, 7.57474, -2.7994, -10.5728, -1.03331e-11, -1.34015, -0.707741, -1.78815, -0.336326, 2.4959, 2.43938e-12, -0.266911, 7.57474, -7.57474}, {0.783932, 2.01922, 1.97287e-12, -0.0281756, -0.572575, -1.44665, -1.05603, 0, 0, -0.900808, 4.33994, -4.33994, -0.934166, -1.78815, 1.78815, 1.34015, 0.707741, 1.78815, 0.336326, -2.4959, -2.43872e-12, -4.47587, -8.78463, -1.78815, -0.223624, 4.7862, 5.78659, 5.15827, 1.78815, -1.78815}, {-2.45207, 5.12164, 2.36493, 0.0510009, -0.6557, 1.65667, -1.08957, 0.431245, -1.08957, 0.22121, 1.93167, 0.22121, -1.27735, 5.54352, -7.70003, 1.28374, 0.277442, -0.700975, 4.69474, -0.147797, 6.67946, -2.16858, -8.00412, -0.183865, -0.336471, -1.57718, -2.32119, 1.07335, -2.92072, 1.07335}, {0.817357, -1.70721, -0.788311, -0.153003, 1.9671, -4.97001, -1.08957, 0.431245, -1.08957, 0.22121, 1.93167, 0.22121, -4.34278, 9.74957, 2.07989, 5.64201, -1.44754, 3.6573, 0.336471, 1.57718, 2.32119, -1.28374, -0.277442, 0.700975, -1.22131, -9.30386, -3.20603, 1.07335, -2.92072, 1.07335}, {0.817357, -1.70721, -0.788311, 0.0510009, -0.6557, 1.65667, 3.2687, -1.29374, 3.2687, 0.22121, 1.93167, 0.22121, -1.07335, 2.92072, -1.07335, 1.07974, 2.90024, -7.32765, -2.93296, 8.40603, 5.47443, -1.28374, -0.277442, 0.700975, -0.336471, -1.57718, -2.32119, 0.18851, -10.6474, 0.18851}, {0.817357, -1.70721, -0.788311, 0.0510009, -0.6557, 1.65667, -1.08957, 0.431245, -1.08957, -0.66363, -5.795, -0.66363, -1.07335, 2.92072, -1.07335, 1.28374, 0.277442, -0.700975, 0.336471, 1.57718, 2.32119, -4.55317, 6.55141, 3.85422, -0.540475, 1.04562, -8.94786, 5.43162, -4.6457, 5.43162}, {-4.62937, -1.83228, -4.62937, 0.198723, -1.94057, 2.54185, 0, 0, -2.34313, -1.74185, 1.32981, -1.74185, -2.94793, 9.40601, -15.2167, -0.245635, 2.39867, -0.245635, -1.90741, -0.754941, 10.3614, 7.21302, -7.71791, 7.21302, 1.90741, 0.754941, -0.988857, 2.15304, -1.64373, 5.0493}, {1.54312, 0.61076, 1.54312, -0.596168, 5.82171, -7.62554, 0, 0, -2.34313, -1.74185, 1.32981, -1.74185, -8.32553, -0.799305, -11.2218, -0.245635, 2.39867, 9.12687, -1.90741, -0.754941, 0.988857, 0.245635, -2.39867, 0.245635, 8.87479, -4.5643, 5.97853, 2.15304, -1.64373, 5.0493}, {1.54312, 0.61076, 1.54312, 0.198723, -1.94057, 2.54185, 0, 0, 7.02938, -1.74185, 1.32981, -1.74185, -2.15304, 1.64373, -5.0493, -1.04052, 10.1609, -10.413, -8.0799, -3.19798, -5.18364, 0.245635, -2.39867, 0.245635, 1.90741, 0.754941, -0.988857, 9.12042, -6.96297, 12.0167}, {1.54312, 0.61076, 1.54312, 0.198723, -1.94057, 2.54185, 0, 0, -2.34313, 5.22554, -3.98943, 5.22554, -2.15304, 1.64373, -5.0493, -0.245635, 2.39867, -0.245635, -1.90741, -0.754941, 0.988857, -5.92686, -4.84171, -5.92686, 1.11252, 8.51722, -11.1562, 2.15304, -1.64373, 14.4218}, {3.9353, 3.03575, -0.94776, 1.31177, -0.633999, -0.948528, 0, 0.442478, 1.49023, 0, 1.20344, -0.85762, -5.24706, 4.57046, 4.57606, -1.62143, 0.236733, -0.669578, 1.62143, -1.06605, -8.19343, 1.62143, -5.05048, 4.10006, -1.62143, -0.703864, 2.23252, 0, -2.03446, -0.781946}, {-1.31177, -1.01192, 0.31592, -3.9353, 1.902, 2.84558, 0, 0.442478, 1.49023, 0, 1.20344, -0.85762, 5.24706, 6.08213, -0.481733, -1.62143, -1.53318, -6.63049, 1.62143, 0.703864, -2.23252, 1.62143, -0.236733, 0.669578, -1.62143, -5.51761, 5.663, 0, -2.03446, -0.781946}, {-1.31177, -1.01192, 0.31592, 1.31177, -0.633999, -0.948528, 0, -1.32743, -4.47068, 0, 1.20344, -0.85762, 3.2565e-16, 2.03446, 0.781946, -6.86849, 2.77273, 3.12453, 6.86849, 4.75153, -3.4962, 1.62143, -0.236733, 0.669578, -1.62143, -0.703864, 2.23252, 0, -6.84821, 2.64853}, {-1.31177, -1.01192, 0.31592, 1.31177, -0.633999, -0.948528, 0, 0.442478, 1.49023, 0, -3.61031, 2.57286, 3.2565e-16, 2.03446, 0.781946, -1.62143, 0.236733, -0.669578, 1.62143, 0.703864, -2.23252, 6.86849, 3.81093, -0.594102, -6.86849, 1.83213, 6.02663, 0, -3.80438, -6.74286}, {8.88178e-16, -9.65337e-16, 5.41667, 1.44665, 1.44665, 1.40715, 0.572575, -1.44665, 1.02216, -2.01922, -1.9703e-12, -0.623753, -7.57474, -7.57474, -5.13614, -2.4959, -2.43516e-12, -3.00279, -2.99804, 7.57474, -3.1203, 10.5728, 1.03164e-11, 5.4978, 0.707741, -1.78815, -0.968332, 1.78815, 1.78815, -0.492457}, {-4.44089e-16, -2.99727e-18, -1.80556, -4.33994, -4.33994, -4.22145, 0.572575, -1.44665, 1.02216, -2.01922, -1.97286e-12, -0.623753, -1.78815, -1.78815, 7.71468, -4.7862, 5.78659, -7.09142, -0.707741, 1.78815, 0.968332, 2.4959, 2.43872e-12, 3.00279, 8.78463, -1.78815, 1.52668, 1.78815, 1.78815, -0.492457}, {0, 1.65544e-16, -1.80556, 1.44665, 1.44665, 1.40715, -1.71772, 4.33994, -3.06648, -2.01922, -1.97103e-12, -0.623753, -1.78815, -1.78815, 0.492457, -8.28248, -5.78659, -8.63139, -0.707741, 1.78815, 8.19056, 2.4959, 2.43605e-12, 3.00279, 0.707741, -1.78815, -0.968332, 9.86504, 1.78815, 2.00255}, {0, 7.512e-17, -1.80556, 1.44665, 1.44665, 1.40715, 0.572575, -1.44665, 1.02216, 6.05767, 5.91749e-12, 1.87126, -1.78815, -1.78815, 0.492457, -2.4959, -2.43805e-12, -3.00279, -0.707741, 1.78815, 0.968332, 2.4959, 2.43775e-12, 10.225, -5.07885, -7.57474, -6.59693, -0.502145, 7.57474, -4.58109}, {4.36745, -2.27082, -4.32425, 1.62046e-12, 0.53318, -2.01922, 0, -1.33263, 0, 1.45582, 0.0425099, 0.577805, 1.79949, -3.72739, 8.79109, -2.00299e-12, 0.988174, 2.4959, 1.79949, 6.04211, -1.78169, -5.82327, -1.15821, -4.80711, -1.79949, -0.711591, 1.78169, -1.79949, 1.59467, -0.714206}, {-1.45582, 0.756939, 1.44142, -4.85808e-12, -1.59954, 6.05767, 0, -1.33263, 0, 1.45582, 0.0425099, 0.577805, 7.62276, -4.62243, -5.05146, -2.00164e-12, 6.31869, 2.4959, 1.79949, 0.711591, -1.78169, 2.002e-12, -0.988174, -2.4959, -7.62276, -0.881631, -0.529529, -1.79949, 1.59467, -0.714206}, {-1.45582, 0.756939, 1.44142, 1.61717e-12, 0.53318, -2.01922, 0, 3.99789, 0, 1.45582, 0.0425099, 0.577805, 1.79949, -1.59467, 0.714206, -8.46762e-12, -1.14454, 10.5728, 7.62276, -2.31617, -7.54736, 1.9993e-12, -0.988174, -2.4959, -1.79949, -0.711591, 1.78169, -7.62276, 1.42464, -3.02542}, {-1.45582, 0.756939, 1.44142, 1.61827e-12, 0.53318, -2.01922, 0, -1.33263, 0, -4.36745, -0.12753, -1.73341, 1.79949, -1.59467, 0.714206, -2.00029e-12, 0.988174, 2.4959, 1.79949, 0.711591, -1.78169, 5.82327, -4.01593, -8.26156, -1.79949, -2.84431, 9.85858, -1.79949, 6.92519, -0.714206}, {-3.26389, 1.55026, 1.55311, -0.994319, -0.995188, -0.994319, -0.203724, 1.40177, -0.203724, 0.110078, 0.110174, 1.71575, 3.86152, 5.84961, 5.84624, 1.48086, -0.502558, 1.48086, -0.278087, -6.701, 1.70663, -1.92117, 0.0618612, -8.34385, 1.09298, 1.09394, -0.891733, 0.115752, -1.86886, -1.86896}, {1.08796, -0.516753, -0.517703, 2.98296, 2.98556, 2.98296, -0.203724, 1.40177, -0.203724, 0.110078, 0.110174, 1.71575, -4.46761, 3.93587, 3.93978, 2.29576, -6.10962, 2.29576, -1.09298, -1.09394, 0.891733, -1.48086, 0.502558, -1.48086, 0.65267, 0.65324, -7.75472, 0.115752, -1.86886, -1.86896}, {1.08796, -0.516753, -0.517703, -0.994319, -0.995188, -0.994319, 0.611171, -4.2053, 0.611171, 0.110078, 0.110174, 1.71575, -0.115752, 1.86886, 1.86896, 5.45814, 3.47819, 5.45814, -5.44484, 0.973073, 2.96255, -1.48086, 0.502558, -1.48086, 1.09298, 1.09394, -0.891733, -0.32456, -2.30956, -8.73195}, {1.08796, -0.516753, -0.517703, -0.994319, -0.995188, -0.994319, -0.203724, 1.40177, -0.203724, -0.330234, -0.330523, -5.14724, -0.115752, 1.86886, 1.86896, 1.48086, -0.502558, 1.48086, -1.09298, -1.09394, 0.891733, -5.83272, 2.56957, 0.589952, 5.07026, 5.07469, 3.08554, 0.930647, -7.47593, -1.05407}, {5.37021, -5.36225, 5.37163, 3.64724, -0.373167, 0.376681, -1.85717, -1.41425, -0.191806, 0, 0, 1.60567, -16.8846, -0.25544, 0.240906, -2.21265, 2.20937, -0.228519, 11.9369, 5.19574, 3.21754, 2.21265, -2.20937, -6.19415, -4.50824, 0.46126, -2.45032, 2.29559, 1.74811, -1.74763}, {-1.79007, 1.78742, -1.79054, -10.9417, 1.1195, -1.13004, -1.85717, -1.41425, -0.191806, 7.40292e-16, 5.63738e-16, 1.60567, 4.86469, -8.89778, 8.9098, 5.21604, 7.86637, 0.538704, 4.50824, -0.46126, 2.45032, 2.21265, -2.20937, 0.228519, -4.50824, 0.46126, -8.87299, 2.29559, 1.74811, -1.74763}, {-1.79007, 1.78742, -1.79054, 3.64724, -0.373167, 0.376681, 5.57152, 4.24275, 0.575417, 0, 0, 1.60567, -2.29559, -1.74811, 1.74763, -16.8016, 3.70204, -1.73524, 11.6685, -7.61093, 9.61249, 2.21265, -2.20937, 0.228519, -4.50824, 0.46126, -2.45032, 2.29559, 1.74811, -8.1703}, {-1.79007, 1.78742, -1.79054, 3.64724, -0.373167, 0.376681, -1.85717, -1.41425, -0.191806, 0, 0, -4.817, -2.29559, -1.74811, 1.74763, -2.21265, 2.20937, -0.228519, 4.50824, -0.46126, 2.45032, 9.37293, -9.35904, 7.39069, -19.0972, 1.95393, -3.95704, 9.72428, 7.40511, -0.980408}, {-3.03198, 1.78237, 1.1993, 0.5032, 0.50364, 1.82018, -0.838801, -0.839534, 0.331788, -0.67506, 0.930018, -1.7522, -3.88404, -1.90272, -9.03645, 0.414826, 0.415188, -2.65998, 3.14277, 5.13024, -1.24312, 2.28541, -4.13526, 9.66879, 0.212431, -1.7721, -0.084027, 1.87124, -0.111844, 1.75573}, {1.01066, -0.594124, -0.399767, -1.5096, -1.51092, -5.46054, -0.838801, -0.839534, 0.331788, -0.67506, 0.930018, -1.7522, -5.91388, 2.48834, -0.156659, 3.77003, 3.77333, -3.98713, -0.212431, 1.7721, 0.084027, -0.414826, -0.415188, 2.65998, 2.91267, -5.49217, 6.92478, 1.87124, -0.111844, 1.75573}, {1.01066, -0.594124, -0.399767, 0.5032, 0.50364, 1.82018, 2.5164, 2.5186, -0.995364, -0.67506, 0.930018, -1.7522, -1.87124, 0.111844, -1.75573, -1.59797, -1.59937, -9.9407, -4.25508, 4.14859, 1.6831, -0.414826, -0.415188, 2.65998, 0.212431, -1.7721, -0.084027, 4.57148, -3.83192, 8.76454}, {1.01066, -0.594124, -0.399767, 0.5032, 0.50364, 1.82018, -0.838801, -0.839534, 0.331788, 2.02518, -2.79005, 5.25661, -1.87124, 0.111844, -1.75573, 0.414826, 0.415188, -2.65998, -0.212431, 1.7721, 0.084027, -4.45747, 1.96131, 4.25905, -1.80037, -3.78666, -7.36475, 5.22644, 3.24629, 0.428576}, {-4.62937, 1.83228, -4.62937, 0.198723, 1.94057, 2.54185, -1.74185, -1.32981, -1.74185, 0, 0, -2.34313, -2.94793, -9.40601, -15.2167, 1.90741, -0.754941, -0.988857, 7.21302, 7.71791, 7.21302, -1.90741, 0.754941, 10.3614, -0.245635, -2.39867, -0.245635, 2.15304, 1.64373, 5.0493}, {1.54312, -0.61076, 1.54312, -0.596168, -5.82171, -7.62554, -1.74185, -1.32981, -1.74185, 0, 0, -2.34313, -8.32553, 0.799305, -11.2218, 8.87479, 4.5643, 5.97853, 0.245635, 2.39867, 0.245635, -1.90741, 0.754941, 0.988857, -0.245635, -2.39867, 9.12687, 2.15304, 1.64373, 5.0493}, {1.54312, -0.61076, 1.54312, 0.198723, 1.94057, 2.54185, 5.22554, 3.98943, 5.22554, 0, 0, -2.34313, -2.15304, -1.64373, -5.0493, 1.11252, -8.51722, -11.1562, -5.92686, 4.84171, -5.92686, -1.90741, 0.754941, 0.988857, -0.245635, -2.39867, -0.245635, 2.15304, 1.64373, 14.4218}, {1.54312, -0.61076, 1.54312, 0.198723, 1.94057, 2.54185, -1.74185, -1.32981, -1.74185, 0, 0, 7.02938, -2.15304, -1.64373, -5.0493, 1.90741, -0.754941, -0.988857, 0.245635, 2.39867, 0.245635, -8.0799, 3.19798, -5.18364, -1.04052, -10.1609, -10.413, 9.12042, 6.96297, 12.0167}, {-4.33994, 0.458772, -1.71772, 0, 1.39654, 0, -1.44665, -0.27723, 1.44665, 1.76979e-12, -0.966385, -2.01922, -1.78815, -7.12335, -0.707741, 1.78815, -1.38354, -1.78815, 5.78659, 1.64062, -8.28248, -1.78815, 5.24908, 9.86504, -2.18758e-12, -0.531699, 2.4959, 1.78815, 1.53719, 0.707741}, {1.44665, -0.152924, 0.572575, 1.50464e-15, -4.18962, 4.79586e-15, -1.44665, -0.27723, 1.44665, 1.77122e-12, -0.966385, -2.01922, -7.57474, -0.925496, -2.99804, 7.57474, -0.274623, -7.57474, 2.18837e-12, 0.531699, -2.4959, -1.78815, 1.38354, 1.78815, -9.27361e-12, 3.33384, 10.5728, 1.78815, 1.53719, 0.707741}, {1.44665, -0.152924, 0.572575, 2.45632e-27, 1.39654, -2.80022e-15, 4.33994, 0.831689, -4.33994, 1.77124e-12, -0.966385, -2.01922, -1.78815, -1.53719, -0.707741, 1.78815, -6.9697, -1.78815, -5.78659, 1.1434, -4.7862, -1.78815, 1.38354, 1.78815, -2.18937e-12, -0.531699, 2.4959, 1.78815, 5.40273, 8.78463}, {1.44665, -0.152924, 0.572575, 0, 1.39654, 0, -1.44665, -0.27723, 1.44665, -5.31262e-12, 2.89915, 6.05767, -1.78815, -1.53719, -0.707741, 1.78815, -1.38354, -1.78815, 2.18856e-12, 0.531699, -2.4959, -7.57474, 1.99524, -0.502145, -2.18892e-12, -6.11785, 2.4959, 7.57474, 2.64611, -5.07885}, {3.99411, 0.408657, -5.22602, 1.94285, 0.198782, -0.198956, -0.611477, 1.5417, -1.54305, 0, -1.60427, 0, -8.52722, -0.872462, -1.11149, -1.64567, -2.15136, 2.15324, 4.8474, -7.90408, 5.92628, 1.64567, 8.56842, -2.15324, -2.40149, 1.73727, 0.245923, 0.755828, 0.0773324, 1.90731}, {-1.33137, -0.136219, 1.74201, -5.82855, -0.596347, 0.596868, -0.611477, 1.5417, -1.54305, 0, -1.60427, 0, 4.56966, 0.467544, -8.87534, 0.800244, -8.31817, 8.32544, 2.40149, -1.73727, -0.245923, 1.64567, 2.15136, -2.15324, -2.40149, 8.15434, 0.245923, 0.755828, 0.0773324, 1.90731}, {-1.33137, -0.136219, 1.74201, 1.94285, 0.198782, -0.198956, 1.83443, -4.62511, 4.62915, 0, -1.60427, 0, -0.755828, -0.0773324, -1.90731, -9.41706, -2.94649, 2.94906, 7.72698, -1.1924, -7.21395, 1.64567, 2.15136, -2.15324, -2.40149, 1.73727, 0.245923, 0.755828, 6.4944, 1.90731}, {-1.33137, -0.136219, 1.74201, 1.94285, 0.198782, -0.198956, -0.611477, 1.5417, -1.54305, 0, 4.8128, 0, -0.755828, -0.0773324, -1.90731, -1.64567, -2.15136, 2.15324, 2.40149, -1.73727, -0.245923, 6.97115, 2.69623, -9.12126, -10.1729, 0.942144, 1.04175, 3.20174, -6.08948, 8.07952}, {1.7133, -2.45292, -4.3293, -1.44292, 0.0459567, -1.45561, 0, -1.33263, 0, 2.01402, 0.469033, 0.0125109, 8.26116, -1.25129, 5.83791, 1.78355, 1.59041, 1.79923, 0.70592, 5.96708, -1.78377, -9.83965, -3.46655, -1.84928, -0.70592, -0.636563, 1.78377, -2.48947, 1.06746, -0.0154644}, {-0.571101, 0.817639, 1.4431, 4.32877, -0.13787, 4.36683, 0, -1.33263, 0, 2.01402, 0.469033, 0.0125109, 4.77387, -4.33802, -5.75693, 1.78355, 6.92093, 1.79923, 0.70592, 0.636563, -1.78377, -1.78355, -1.59041, -1.79923, -8.76202, -2.5127, 1.73373, -2.48947, 1.06746, -0.0154644}, {-0.571101, 0.817639, 1.4431, -1.44292, 0.0459567, -1.45561, 0, 3.99789, 0, 2.01402, 0.469033, 0.0125109, 2.48947, -1.06746, 0.0154644, 7.55524, 1.40659, 7.62167, 2.99032, -2.63399, -7.55617, -1.78355, -1.59041, -1.79923, -0.70592, -0.636563, 1.78377, -10.5456, -0.808671, -0.0655081}, {-0.571101, 0.817639, 1.4431, -1.44292, 0.0459567, -1.45561, 0, -1.33263, 0, -6.04207, -1.4071, -0.0375328, 2.48947, -1.06746, 0.0154644, 1.78355, 1.59041, 1.79923, 0.70592, 0.636563, -1.78377, 0.500853, -4.86097, -7.57163, 5.06577, -0.82039, 7.60621, -2.48947, 6.39798, -0.0154644}, {7.61576, -5.82053, 0.598329, -1.54462, -0.610276, -1.54223, 1.74008, -1.3299, 1.74168, 2.34313, 0, 0, 11.2256, 0.797254, 8.32176, -0.241602, 2.39819, -0.246525, -5.97333, 4.56526, -8.87301, -9.1309, -2.39819, 0.246525, -0.987004, 0.754342, 1.9063, -5.04712, 1.64385, -2.15283}, {-2.53859, 1.94018, -0.199443, 4.63387, 1.83083, 4.6267, 1.74008, -1.3299, 1.74168, 2.34313, 7.73589e-16, -1.01311e-15, 15.2015, -9.40456, 2.9506, -7.20193, 7.7178, -7.21323, 0.987004, -0.754342, -1.9063, 0.241602, -2.39819, 0.246525, -10.3595, 0.754342, 1.9063, -5.04712, 1.64385, -2.15283}, {-2.53859, 1.94018, -0.199443, -1.54462, -0.610276, -1.54223, -5.22025, 3.9897, -5.22503, 2.34313, 0, 0, 5.04712, -1.64385, 2.15283, 5.93689, 4.83929, 5.92241, 11.1413, -8.51505, -1.10853, 0.241602, -2.39819, 0.246525, -0.987004, 0.754342, 1.9063, -14.4196, 1.64385, -2.15283}, {-2.53859, 1.94018, -0.199443, -1.54462, -0.610276, -1.54223, 1.74008, -1.3299, 1.74168, -7.02938, 0, 0, 5.04712, -1.64385, 2.15283, -0.241602, 2.39819, -0.246525, 0.987004, -0.754342, -1.9063, 10.3959, -10.1589, 1.0443, 5.19149, 3.19544, 8.07523, -12.0075, 6.96345, -9.11953}, {2.66454e-15, -8.88178e-15, -7.0244, 0.00253498, 1.78885, -0.00126659, -2.34566, -1.78885, -2.3402, 2.34313, 0, 0, -0.0132733, -9.36656, -2.88758, 2.89626, 3.10862e-15, 2.89421, 12.282, 9.36656, 9.35923, -12.2688, -3.10862e-15, -2.89421, -2.8994, -2.21115, 0.00156559, 0.00313341, 2.21115, 2.89265}, {-4.44089e-16, -2.81691e-15, 2.34147, -0.00760494, -5.36656, 0.00379978, -2.34566, -1.78885, -2.3402, 2.34313, 1.04056e-15, 1.36127e-15, -0.00313341, -2.21115, -12.2585, 12.2789, 7.15542, 12.255, 2.8994, 2.21115, -0.00156559, -2.89626, 2.22045e-15, -2.89421, -12.2719, -2.21115, 0.00156559, 0.00313341, 2.21115, 2.89265}, {-1.33227e-15, -1.9984e-15, 2.34147, 0.00253498, 1.78885, -0.00126659, 7.03698, 5.36656, 7.0206, 2.34313, 0, 0, -0.00313341, -2.21115, -2.89265, 2.88612, -7.15542, 2.89928, 2.8994, 2.21115, -9.36743, -2.89626, 2.66454e-15, -2.89421, -2.8994, -2.21115, 0.00156559, -9.36937, 2.21115, 2.89265}, {4.44089e-16, 0, 2.34147, 0.00253498, 1.78885, -0.00126659, -2.34566, -1.78885, -2.3402, -7.02938, 0, 0, -0.00313341, -2.21115, -2.89265, 2.89626, 0, 2.89421, 2.8994, 2.21115, -0.00156559, -2.89626, 0, -12.2601, -2.90954, -9.36656, 0.00663197, 9.38578, 9.36656, 12.2534}, {3.98943, -5.22554, 5.22554, -0.61076, -1.54312, 1.54312, 0, 2.34313, 0, 1.94057, -2.54185, 0.198723, 4.84171, 5.92686, -5.92686, 0.754941, -0.988857, -1.90741, 1.64373, -14.4218, 2.15304, -8.51722, 11.1562, 1.11252, -1.64373, 5.0493, -2.15304, -2.39867, 0.245635, -0.245635}, {-1.32981, 1.74185, -1.74185, 1.83228, 4.62937, -4.62937, -1.12881e-15, 2.34313, -1.15595e-16, 1.94057, -2.54185, 0.198723, 7.71791, -7.21302, 7.21302, 0.754941, -10.3614, -1.90741, 1.64373, -5.0493, 2.15304, -0.754941, 0.988857, 1.90741, -9.40601, 15.2167, -2.94793, -2.39867, 0.245635, -0.245635}, {-1.32981, 1.74185, -1.74185, -0.61076, -1.54312, 1.54312, 0, -7.02938, 0, 1.94057, -2.54185, 0.198723, 2.39867, -0.245635, 0.245635, 3.19798, 5.18364, -8.0799, 6.96297, -12.0167, 9.12042, -0.754941, 0.988857, 1.90741, -1.64373, 5.0493, -2.15304, -10.1609, 10.413, -1.04052}, {-1.32981, 1.74185, -1.74185, -0.61076, -1.54312, 1.54312, 0, 2.34313, 0, -5.82171, 7.62554, -0.596168, 2.39867, -0.245635, 0.245635, 0.754941, -0.988857, -1.90741, 1.64373, -5.0493, 2.15304, 4.5643, -5.97853, 8.87479, 0.799305, 11.2218, -8.32553, -2.39867, -9.12687, -0.245635}, {9.45441, 0, -1.77636e-15, 0, 0, 3.15147, 1.78885, 1.78885, -1.78885, 1.36261, -1.78885, -1.36261, 3.89543, 0, -16.5013, -2.21115, -2.21115, -1.68428, -5.47113, -9.36656, 9.36656, -3.23931, 9.36656, 7.13474, -1.68428, 2.21115, -2.21115, -3.89543, 0, 3.89543}, {-3.15147, 2.22045e-16, 2.22045e-16, 1.00042e-15, 8.3972e-15, -9.45441, 1.78885, 1.78885, -1.78885, 1.36261, -1.78885, -1.36261, 16.5013, 3.55271e-15, -3.89543, -9.36656, -9.36656, 5.47113, 1.68428, -2.21115, 2.21115, 2.21115, 2.21115, 1.68428, -7.13474, 9.36656, 3.23931, -3.89543, -3.10862e-15, 3.89543}, {-3.15147, 4.44089e-16, 4.44089e-16, 0, 0, 3.15147, -5.36656, -5.36656, 5.36656, 1.36261, -1.78885, -1.36261, 3.89543, -4.44089e-16, -3.89543, -2.21115, -2.21115, -14.2902, 14.2902, -2.21115, 2.21115, 2.21115, 2.21115, 1.68428, -1.68428, 2.21115, -2.21115, -9.34589, 7.15542, 9.34589}, {-3.15147, 0, 2.22045e-16, 0, 0, 3.15147, 1.78885, 1.78885, -1.78885, -4.08784, 5.36656, 4.08784, 3.89543, 0, -3.89543, -2.21115, -2.21115, -1.68428, 1.68428, -2.21115, 2.21115, 14.817, 2.21115, 1.68428, -1.68428, 2.21115, -14.817, -11.0508, -7.15542, 11.0508}, {0.908154, -0.908154, 3.90885, -0.830764, 0.830764, 0.830764, 1.29079, 0.314875, 0.314875, -0.157311, -1.44836, 0.157311, 4.72412, -4.72412, -2.7394, -0.568628, -1.41609, -1.41609, -6.3845, -2.02289, -0.0381727, 1.19787, 7.20951, 0.786843, 1.22133, 0.763387, -1.22133, -1.40106, 1.40106, -0.583654}, {-0.302718, 0.302718, -1.30295, 2.49229, -2.49229, -2.49229, 1.29079, 0.314875, 0.314875, -0.157311, -1.44836, 0.157311, 2.61193, -2.61193, 5.79545, -5.7318, -2.67559, -2.67559, -1.22133, -0.763387, 1.22133, 0.568628, 1.41609, 1.41609, 1.85057, 6.55681, -1.85057, -1.40106, 1.40106, -0.583654}, {-0.302718, 0.302718, -1.30295, -0.830764, 0.830764, 0.830764, -3.87238, -0.944625, -0.944625, -0.157311, -1.44836, 0.157311, 1.40106, -1.40106, 0.583654, 2.75443, -4.73914, -4.73914, -0.0104551, -1.97426, 6.43313, 0.568628, 1.41609, 1.41609, 1.22133, 0.763387, -1.22133, -0.771816, 7.19449, -1.2129}, {-0.302718, 0.302718, -1.30295, -0.830764, 0.830764, 0.830764, 1.29079, 0.314875, 0.314875, 0.471934, 4.34507, -0.471934, 1.40106, -1.40106, 0.583654, -0.568628, -1.41609, -1.41609, -1.22133, -0.763387, 1.22133, 1.7795, 0.205215, 6.62789, 4.54438, -2.55967, -4.54438, -6.56423, 0.14156, -1.84315}, {-2.30283, -5.06257, 2.51418, -1.077, -0.426271, -1.077, 0.0318939, 0.648138, 1.63756, 0.277498, -1.90939, 0.277498, 4.69044, 0.146092, 6.67515, 1.29182, -0.274242, -0.692891, -1.11582, -5.47959, -7.53849, -2.40182, 7.9118, -0.417103, 0.988241, 2.88704, 0.988241, -0.38243, 1.55899, -2.36714}, {0.767609, 1.68752, -0.838059, 3.23101, 1.27881, 3.23101, 0.0318939, 0.648138, 1.63756, 0.277498, -1.90939, 0.277498, -2.68801, -8.30908, 5.71938, 1.16425, -2.86679, -7.24314, -0.988241, -2.88704, -0.988241, -1.29182, 0.274242, 0.692891, -0.121753, 10.5246, -0.121753, -0.38243, 1.55899, -2.36714}, {0.767609, 1.68752, -0.838059, -1.077, -0.426271, -1.077, -0.0956818, -1.94441, -4.91269, 0.277498, -1.90939, 0.277498, 0.38243, -1.55899, 2.36714, 5.59983, 1.43084, 3.61512, -4.05868, -9.63713, 2.36399, -1.29182, 0.274242, 0.692891, 0.988241, 2.88704, 0.988241, -1.49242, 9.19655, -3.47714}, {0.767609, 1.68752, -0.838059, -1.077, -0.426271, -1.077, 0.0318939, 0.648138, 1.63756, -0.832495, 5.72817, -0.832495, 0.38243, -1.55899, 2.36714, 1.29182, -0.274242, -0.692891, -0.988241, -2.88704, -0.988241, -4.36226, -6.47585, 4.04513, 5.29625, 4.59212, 5.29625, -0.510006, -1.03356, -8.91739}, {-4.7272, -4.7272, -4.7272, -1.57573, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, 6.30294, -10.1984, 6.30294, 3.89543, 1.32738e-12, -1.3276e-12, 6.30294, 6.30294, -10.1984, -10.1984, 6.30294, 6.30294, 2.96874e-13, 3.04201e-13, 3.89543, 1.65046e-12, 3.89543, 1.64713e-12}, {1.57573, 1.57573, 1.57573, 4.7272, -4.7272, 4.7272, -1.57573, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, -6.30294, -10.1984, -6.30294, 10.1984, 6.30294, -6.30294, -2.96874e-13, -3.01537e-13, -3.89543, -3.89543, -1.32644e-12, 1.32544e-12, -6.30294, 6.30294, 10.1984, 1.64713e-12, 3.89543, 1.65001e-12}, {1.57573, 1.57573, 1.57573, -1.57573, 1.57573, -1.57573, 4.7272, 4.7272, -4.7272, 1.57573, -1.57573, -1.57573, -1.64602e-12, -3.89543, -1.64313e-12, 10.1984, -6.30294, 6.30294, -6.30294, -6.30294, -10.1984, -3.89543, -1.32733e-12, 1.32721e-12, 2.99982e-13, 3.06422e-13, 3.89543, -6.30294, 10.1984, 6.30294}, {1.57573, 1.57573, 1.57573, -1.57573, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -4.7272, 4.7272, 4.7272, -1.64313e-12, -3.89543, -1.64913e-12, 3.89543, 1.32672e-12, -1.32694e-12, -3.00648e-13, -2.97318e-13, -3.89543, -10.1984, -6.30294, -6.30294, 6.30294, -6.30294, 10.1984, 6.30294, 10.1984, -6.30294}, {-1.56775, 5.44381, 3.24545, 1.20899, 0.479095, 1.20825, -1.50445, -0.59618, 0.101437, -0.227124, 1.93169, -0.227868, -6.97629, -0.265605, -4.98928, 0.365209, 0.144724, -1.61886, 7.23144, 5.36461, 0.80607, 0.543287, -7.87147, 2.53034, -1.21365, -2.97989, -1.21182, 2.14034, -1.65078, 0.156278}, {0.522584, -1.8146, -1.08182, -3.62696, -1.43729, -3.62475, -1.50445, -0.59618, 0.101437, -0.227124, 1.93169, -0.227868, -4.23068, 8.90919, 4.171, 6.383, 2.52944, -2.02461, 1.21365, 2.97989, 1.21182, -0.365209, -0.144724, 1.61886, -0.305154, -10.7066, -0.300344, 2.14034, -1.65078, 0.156278}, {0.522584, -1.8146, -1.08182, 1.20899, 0.479095, 1.20825, 4.51334, 1.78854, -0.304311, -0.227124, 1.93169, -0.227868, -2.14034, 1.65078, -0.156278, -4.47074, -1.77166, -6.45186, -0.876686, 10.2383, 5.53909, -0.365209, -0.144724, 1.61886, -1.21365, -2.97989, -1.21182, 3.04884, -9.37752, 1.06775}, {0.522584, -1.8146, -1.08182, 1.20899, 0.479095, 1.20825, -1.50445, -0.59618, 0.101437, 0.681372, -5.79506, 0.683605, -2.14034, 1.65078, -0.156278, 0.365209, 0.144724, -1.61886, 1.21365, 2.97989, 1.21182, -2.45554, 7.11368, 5.94614, -6.0496, -4.89627, -6.04482, 8.15813, 0.733943, -0.24947}, {0.31567, 3.31084, -3.29586, 0.708828, -0.490803, -1.01172, 0.848249, 1.25814, 0.0940198, -1.45185, 0.336273, -0.18092, -3.58141, 3.93402, 3.93947, -1.92465, -0.948485, 1.13434, -4.31143, -5.22358, -1.85026, 7.73207, -0.396608, -0.41066, 0.91843, 0.191009, 1.47418, 0.746096, -1.97081, 0.107415}, {-0.105223, -1.10361, 1.09862, -2.12648, 1.47241, 3.03516, 0.848249, 1.25814, 0.0940198, -1.45185, 0.336273, -0.18092, -0.325203, 6.38527, -4.5019, -5.31765, -5.98106, 0.758261, -0.91843, -0.191009, -1.47418, 1.92465, 0.948485, -1.13434, 6.72585, -1.15408, 2.19787, 0.746096, -1.97081, 0.107415}, {-0.105223, -1.10361, 1.09862, 0.708828, -0.490803, -1.01172, -2.54475, -3.77443, -0.282059, -1.45185, 0.336273, -0.18092, -0.746096, 1.97081, -0.107415, -4.75996, 1.01473, 5.18122, -0.497537, 4.22345, -5.86867, 1.92465, 0.948485, -1.13434, 0.91843, 0.191009, 1.47418, 6.55351, -3.3159, 0.831095}, {-0.105223, -1.10361, 1.09862, 0.708828, -0.490803, -1.01172, 0.848249, 1.25814, 0.0940198, 4.35556, -1.00882, 0.54276, -0.746096, 1.97081, -0.107415, -1.92465, -0.948485, 1.13434, -0.91843, -0.191009, -1.47418, 2.34555, 5.36294, -5.52882, -1.91688, 2.15422, 5.52107, -2.6469, -7.00338, -0.268664}, {2.3172, 0.917451, -2.318, 1.00416, 1.78176, 0.599951, -0.431249, 0.464989, -1.17482, 0.199489, -1.94094, -0.197793, -4.30311, -8.95143, -4.09645, -0.708156, -2.77714, 0.710583, 3.21279, -2.0567, 5.1964, -0.0898, 10.5409, 0.0805874, -1.48779, 0.196748, -0.497096, 0.286472, 1.82437, 1.69665}, {-0.772399, -0.305817, 0.772666, -3.01248, -5.34529, -1.79985, -0.431249, 0.464989, -1.17482, 0.199489, -1.94094, -0.197793, 2.80312, -0.601104, -4.78731, 1.01684, -4.6371, 5.40988, 1.48779, -0.196748, 0.497096, 0.708156, 2.77714, -0.710583, -2.28575, 7.96049, 0.294074, 0.286472, 1.82437, 1.69665}, {-0.772399, -0.305817, 0.772666, 1.00416, 1.78176, 0.599951, 1.29375, -1.39497, 3.52447, 0.199489, -1.94094, -0.197793, -0.286472, -1.82437, -1.69665, -4.72479, -9.9042, -1.68922, 4.57739, 1.02652, -2.59357, 0.708156, 2.77714, -0.710583, -1.48779, 0.196748, -0.497096, -0.511484, 9.58812, 2.48782}, {-0.772399, -0.305817, 0.772666, 1.00416, 1.78176, 0.599951, -0.431249, 0.464989, -1.17482, -0.598467, 5.82281, 0.593378, -0.286472, -1.82437, -1.69665, -0.708156, -2.77714, 0.710583, 1.48779, -0.196748, 0.497096, 3.79775, 4.00041, -3.80125, -5.50443, -6.93031, -2.8969, 2.01147, -0.0355852, 6.39595}, {-9.63611, -0.184458, -9.63611, -0.833808, -0.834046, -2.43948, -1.57551, 1.57551, -1.57551, -0.802719, -0.802949, 0.802949, 0.39558, 4.29112, 8.80297, 2.97808, -0.916498, 4.96279, 4.27918, -8.32547, 4.27918, 0.232798, 4.12829, -8.17459, 2.02286, 2.02344, 2.02286, 2.93965, -0.954937, 0.954937}, {3.21204, 0.0614861, 3.21204, 2.50142, 2.50214, 7.31843, -1.57551, 1.57551, -1.57551, -0.802719, -0.802949, 0.802949, -15.7878, 0.708993, -13.8031, 9.28012, -7.21853, 11.2648, -2.02286, -2.02344, -2.02286, -2.97808, 0.916498, -4.96279, 5.23374, 5.23523, -1.18894, 2.93965, -0.954937, 0.954937}, {3.21204, 0.0614861, 3.21204, -0.833808, -0.834046, -2.43948, 4.72653, -4.72653, 4.72653, -0.802719, -0.802949, 0.802949, -2.93965, 0.954937, -0.954937, 6.31331, 2.41969, 14.7207, -14.871, -2.26938, -14.871, -2.97808, 0.916498, -4.96279, 2.02286, 2.02344, 2.02286, 6.15053, 2.25686, -2.25686}, {3.21204, 0.0614861, 3.21204, -0.833808, -0.834046, -2.43948, -1.57551, 1.57551, -1.57551, 2.40816, 2.40885, -2.40885, -2.93965, 0.954937, -0.954937, 2.97808, -0.916498, 4.96279, -2.02286, -2.02344, -2.02286, -15.8262, 0.670554, -17.8109, 5.35809, 5.35962, 11.7808, 9.24169, -7.25697, 7.25697}, {1.77636e-15, 3.55271e-15, -3.26126, 1.4431, -0.571101, 0.0717263, 0.0125109, 2.01402, -0.807596, -1.45561, -1.44292, -0.351216, -7.55617, 2.99032, -1.71928, -1.79923, -1.78355, 0.909586, -0.0655081, -10.5456, 2.88492, 7.62167, 7.55524, 0.495278, 0.0154644, 2.48947, 0.345468, 1.78377, -0.70592, 1.43237}, {-2.22045e-16, 6.66134e-16, 1.08709, -4.3293, 1.7133, -0.215179, 0.0125109, 2.01402, -0.807596, -1.45561, -1.44292, -0.351216, -1.78377, 0.70592, -5.78072, -1.84928, -9.83965, 4.13997, -0.0154644, -2.48947, -0.345468, 1.79923, 1.78355, -0.909586, 5.83791, 8.26116, 1.75033, 1.78377, -0.70592, 1.43237}, {-6.66134e-16, -2.22045e-16, 1.08709, 1.4431, -0.571101, 0.0717263, -0.0375328, -6.04207, 2.42279, -1.45561, -1.44292, -0.351216, -1.78377, 0.70592, -1.43237, -7.57163, 0.500853, 0.622681, -0.0154644, -2.48947, -4.69381, 1.79923, 1.78355, -0.909586, 0.0154644, 2.48947, 0.345468, 7.60621, 5.06577, 2.83723}, {-2.22045e-16, 4.44089e-16, 1.08709, 1.4431, -0.571101, 0.0717263, 0.0125109, 2.01402, -0.807596, 4.36683, 4.32877, 1.05365, -1.78377, 0.70592, -1.43237, -1.79923, -1.78355, 0.909586, -0.0154644, -2.48947, -0.345468, 1.79923, 1.78355, -5.25793, -5.75693, 4.77387, 0.0585632, 1.73373, -8.76202, 4.66276}, {4.62915, 1.83443, 4.62633, 1.74201, -1.33137, 0.13686, 3.96359e-17, -3.87053e-16, 1.60497, -0.198956, 1.94285, -0.199718, -7.21395, 7.72698, 1.18954, -2.15324, 1.64567, -2.15302, 1.90731, 0.755828, -6.49756, 2.94906, -9.41706, 2.95189, -1.90731, -0.755828, 0.0776963, 0.245923, -2.40149, -1.73698}, {-1.54305, -0.611477, -1.54211, -5.22602, 3.99411, -0.41058, 1.18908e-16, -1.16116e-15, 1.60497, -0.198956, 1.94285, -0.199718, 5.92628, 4.8474, 7.90542, -2.15324, 1.64567, -8.57288, 1.90731, 0.755828, -0.0776963, 2.15324, -1.64567, 2.15302, -1.11149, -8.52722, 0.876567, 0.245923, -2.40149, -1.73698}, {-1.54305, -0.611477, -1.54211, 1.74201, -1.33137, 0.13686, 0, 0, -4.8149, -0.198956, 1.94285, -0.199718, -0.245923, 2.40149, 1.73698, -9.12126, 6.97115, -2.70046, 8.07952, 3.20174, 6.09074, 2.15324, -1.64567, 2.15302, -1.90731, -0.755828, 0.0776963, 1.04175, -10.1729, -0.938112}, {-1.54305, -0.611477, -1.54211, 1.74201, -1.33137, 0.13686, -1.18908e-16, 1.16116e-15, 1.60497, 0.596868, -5.82855, 0.599153, -0.245923, 2.40149, 1.73698, -2.15324, 1.64567, -2.15302, 1.90731, 0.755828, -0.0776963, 8.32544, 0.800244, 8.32145, -8.87534, 4.56966, -0.469744, 0.245923, -2.40149, -8.15685}, {4.35065, -1.72407, 1.44786, 0, 0, 1.17684, 1.43763, 1.45199, 0.197849, 0.0125895, -2.02668, -0.892072, 1.79257, -0.710355, -5.56548, -1.77701, -1.79476, -1.69921, -5.73495, -8.31307, -0.439401, 1.72665, 9.90148, 5.2675, -0.0155615, 2.50511, -0.351997, -1.79257, 0.710355, 0.858106}, {-1.45022, 0.57469, -0.482621, -1.29313e-15, 4.05633e-15, -3.53053, 1.43763, 1.45199, 0.197849, 0.0125895, -2.02668, -0.892072, 7.59343, -3.00911, 1.07238, -7.52752, -7.60272, -2.49061, 0.0155615, -2.50511, 0.351997, 1.77701, 1.79476, 1.69921, -0.0659197, 10.6118, 3.21629, -1.79257, 0.710355, 0.858106}, {-1.45022, 0.57469, -0.482621, 0, 0, 1.17684, -4.31288, -4.35597, -0.593548, 0.0125895, -2.02668, -0.892072, 1.79257, -0.710355, -0.858106, -1.77701, -1.79476, -6.40659, 5.81643, -4.80387, 2.28248, 1.77701, 1.79476, 1.69921, -0.0155615, 2.50511, -0.351997, -1.84292, 8.81707, 4.42639}, {-1.45022, 0.57469, -0.482621, 0, 0, 1.17684, 1.43763, 1.45199, 0.197849, -0.0377686, 6.08004, 2.67622, 1.79257, -0.710355, -0.858106, -1.77701, -1.79476, -1.69921, 0.0155615, -2.50511, 0.351997, 7.57787, -0.504, 3.6297, -0.0155615, 2.50511, -5.05937, -7.54308, -5.09761, 0.0667081}, {2.31688, 0.916898, -2.31818, 0.572147, 2.2454, -0.575329, -1.46447, -2.59853, -0.874972, 1.66462, 0.658766, 0.677573, -2.04119, -11.3793, 2.05732, 1.10297, 0.436497, 1.79267, 8.62268, 13.9839, 3.62627, -7.76145, -3.07156, -4.50296, -2.76479, -3.58975, -0.126381, -0.247396, 2.39768, 0.243998}, {-0.772295, -0.305633, 0.772728, -1.71644, -6.7362, 1.72599, -1.46447, -2.59853, -0.874972, 1.66462, 0.658766, 0.677573, 3.33658, -1.17515, -3.33491, 6.96086, 10.8306, 5.29256, 2.76479, 3.58975, 0.126381, -1.10297, -0.436497, -1.79267, -9.42327, -6.22481, -2.83667, -0.247396, 2.39768, 0.243998}, {-0.772295, -0.305633, 0.772728, 0.572147, 2.2454, -0.575329, 4.39341, 7.7956, 2.62492, 1.66462, 0.658766, 0.677573, 0.247396, -2.39768, -0.243998, -1.18562, -8.5451, 4.09399, 5.85397, 4.81228, -2.96453, -1.10297, -0.436497, -1.79267, -2.76479, -3.58975, -0.126381, -6.90587, -0.237381, -2.46629}, {-0.772295, -0.305633, 0.772728, 0.572147, 2.2454, -0.575329, -1.46447, -2.59853, -0.874972, -4.99386, -1.9763, -2.03272, 0.247396, -2.39768, -0.243998, 1.10297, 0.436497, 1.79267, 2.76479, 3.58975, 0.126381, 1.98621, 0.786034, -4.88358, -5.05338, -12.5713, 2.17494, 5.61049, 12.7918, 3.74389}, {-7.02177, -5.36656, 7.02938, 0.00253498, -1.78885, 1.2111e-11, -2.34313, 0, 0, 0, 0, 2.34313, -2.9064, 7.15542, 2.89626, 2.89313, 2.21115, -1.49701e-11, 9.37564, -2.21115, 2.89626, -2.89313, -2.21115, -9.3725, -0.00313341, 2.21115, -2.89626, 2.89626, 0, -2.89626}, {2.34059, 1.78885, -2.34313, -0.00760494, 5.36656, -5.47978e-11, -2.34313, 0, 0, 1.36297e-15, 0, 2.34313, -12.2586, -7.15542, 12.2688, 12.2656, 2.21115, -2.25779e-11, 0.00313341, -2.21115, 2.89626, -2.89313, -2.21115, 2.25785e-11, -0.00313341, 2.21115, -12.2688, 2.89626, 0, -2.89626}, {2.34059, 1.78885, -2.34313, 0.00253498, -1.78885, 1.21079e-11, 7.02938, 0, 0, 0, 0, 2.34313, -2.89626, -4.44089e-16, 2.89626, 2.88299, 9.36656, -6.33979e-11, -9.35923, -9.36656, 12.2688, -2.89313, -2.21115, 1.49668e-11, -0.00313341, 2.21115, -2.89626, 2.89626, 0, -12.2688}, {2.34059, 1.78885, -2.34313, 0.00253498, -1.78885, 1.2111e-11, -2.34313, 0, 0, 0, 0, -7.02938, -2.89626, -4.44089e-16, 2.89626, 2.89313, 2.21115, -1.49701e-11, 0.00313341, -2.21115, 2.89626, -12.2555, -9.36656, 9.3725, -0.0132733, 9.36656, -2.89626, 12.2688, 0, -2.89626}, {0.0377686, 6.08004, 3.1372, 4.64343e-16, 1.84009e-16, 1.28977, -1.43763, 1.45199, -0.146251, 1.45022, 0.57469, -0.0977806, 0.0155615, 2.50511, -5.4607, 1.77701, -1.79476, -1.41346, 7.54308, -5.09761, 2.05838, -7.57787, -0.504, 1.80458, -1.79257, -0.710355, -1.47337, -0.0155615, -2.50511, 0.301639}, {-0.0125895, -2.02668, -1.04573, -2.77397e-15, 8.42705e-16, -3.8693, -1.43763, 1.45199, -0.146251, 1.45022, 0.57469, -0.0977806, 0.0659197, 10.6118, 3.8813, 7.52752, -7.60272, -0.82846, 1.79257, 0.710355, 1.47337, -1.77701, 1.79476, 1.41346, -7.59343, -3.00911, -1.08225, -0.0155615, -2.50511, 0.301639}, {-0.0125895, -2.02668, -1.04573, 0, 0, 1.28977, 4.31288, -4.35597, 0.438752, 1.45022, 0.57469, -0.0977806, 0.0155615, 2.50511, -0.301639, 1.77701, -1.79476, -6.57252, 1.84292, 8.81707, 5.65631, -1.77701, 1.79476, 1.41346, -1.79257, -0.710355, -1.47337, -5.81643, -4.80387, 0.692761}, {-0.0125895, -2.02668, -1.04573, 4.64343e-16, 1.84009e-16, 1.28977, -1.43763, 1.45199, -0.146251, -4.35065, -1.72407, 0.293342, 0.0155615, 2.50511, -0.301639, 1.77701, -1.79476, -1.41346, 1.79257, 0.710355, 1.47337, -1.72665, 9.90148, 5.5964, -1.79257, -0.710355, -6.63244, 5.73495, -8.31307, 0.886641}, {-4.7272, -4.7272, 4.7272, 1.57573, -1.57573, 1.57573, -1.57596, -1.57551, -1.57551, -1.57551, 1.57551, 1.57551, -10.1984, 6.30294, -6.30294, 0.000278382, 3.89515, -0.000278382, 6.30412, 6.30176, 10.1972, 6.30176, -10.1972, -6.30176, -0.000278382, 0.000278382, -3.89515, 3.89543, -9.10383e-15, 9.10383e-15}, {1.57573, 1.57573, -1.57573, -4.7272, 4.7272, -4.7272, -1.57596, -1.57551, -1.57551, -1.57551, 1.57551, 1.57551, -10.1984, -6.30294, 6.30294, 6.30412, 10.1972, 6.30176, 0.000278382, -0.000278382, 3.89515, -0.000278382, -3.89515, 0.000278382, 6.30176, -6.30176, -10.1972, 3.89543, -9.10383e-15, 9.10383e-15}, {1.57573, 1.57573, -1.57573, 1.57573, -1.57573, 1.57573, 4.72788, 4.72653, 4.72653, -1.57551, 1.57551, 1.57551, -3.89543, 2.66454e-15, -1.44329e-14, -6.30266, 10.1981, -6.30322, -6.30266, -6.30322, 10.1981, -0.000278382, -3.89515, 0.000278382, -0.000278382, 0.000278382, -3.89515, 10.1975, -6.30204, -6.30204}, {1.57573, 1.57573, -1.57573, 1.57573, -1.57573, 1.57573, -1.57596, -1.57551, -1.57551, 4.72653, -4.72653, -4.72653, -3.89543, 1.02141e-14, -6.66134e-16, 0.000278382, 3.89515, -0.000278382, 0.000278382, -0.000278382, 3.89515, -6.30322, -10.1981, 6.30322, -6.30322, 6.30322, -10.1981, 10.1993, 6.30204, 6.30204}, {1.83228, 4.63528, 4.62937, 1.94057, -2.54509, -0.198723, -1.32981, 1.74407, 1.74185, 0, 2.34612, 0, -9.40601, 15.2361, 2.94793, -0.754941, 0.990119, -1.90741, 7.71791, -7.22223, -7.21302, 0.754941, -10.3746, 1.90741, -2.39867, 0.245948, 0.245635, 1.64373, -5.05575, -2.15304}, {-0.61076, -1.54509, -1.54312, -5.82171, 7.63528, 0.596168, -1.32981, 1.74407, 1.74185, 7.74523e-16, 2.34612, -1.01451e-15, 0.799305, 11.2361, 8.32553, 4.5643, -5.98616, -8.87479, 2.39867, -0.245948, -0.245635, 0.754941, -0.990119, 1.90741, -2.39867, -9.13852, 0.245635, 1.64373, -5.05575, -2.15304}, {-0.61076, -1.54509, -1.54312, 1.94057, -2.54509, -0.198723, 3.98943, -5.23221, -5.22554, 0, 2.34612, 0, -1.64373, 5.05575, 2.15304, -8.51722, 11.1705, -1.11252, 4.84171, 5.93443, 5.92686, 0.754941, -0.990119, 1.90741, -2.39867, 0.245948, 0.245635, 1.64373, -14.4402, -2.15304}, {-0.61076, -1.54509, -1.54312, 1.94057, -2.54509, -0.198723, -1.32981, 1.74407, 1.74185, 0, -7.03835, 0, -1.64373, 5.05575, 2.15304, -0.754941, 0.990119, -1.90741, 2.39867, -0.245948, -0.245635, 3.19798, 5.19026, 8.0799, -10.1609, 10.4263, 1.04052, 6.96297, -12.032, -9.12042}, {-1.42344, 3.96091, -1.43084, -1.98584, -0.354449, 0.357788, 0.9893, 0.397365, -1.35371, 0.52206, 1.27739, 0.518977, 9.81149, 3.4879, -2.46294, 1.23179, -0.0530468, 1.23103, -5.76653, -0.448647, 6.49858, -3.32003, -5.0565, -3.30694, 1.80933, -1.14081, -1.08374, -1.86814, -2.07011, 1.03179}, {0.474478, -1.3203, 0.476947, 5.95751, 1.06335, -1.07336, 0.9893, 0.397365, -1.35371, 0.52206, 1.27739, 0.518977, -0.029771, 7.35132, -2.93958, -2.72541, -1.64251, 6.64587, -1.80933, 1.14081, 1.08374, -1.23179, 0.0530468, -1.23103, -0.278909, -6.25036, -3.15965, -1.86814, -2.07011, 1.03179}, {0.474478, -1.3203, 0.476947, -1.98584, -0.354449, 0.357788, -2.9679, -1.1921, 4.06113, 0.52206, 1.27739, 0.518977, 1.86814, 2.07011, -1.03179, 9.17514, 1.36475, -0.200121, -3.70724, 6.42202, -0.824048, -1.23179, 0.0530468, -1.23103, 1.80933, -1.14081, -1.08374, -3.95638, -7.17965, -1.04412}, {0.474478, -1.3203, 0.476947, -1.98584, -0.354449, 0.357788, 0.9893, 0.397365, -1.35371, -1.56618, -3.83216, -1.55693, 1.86814, 2.07011, -1.03179, 1.23179, -0.0530468, 1.23103, -1.80933, 1.14081, 1.08374, -3.1297, 5.33426, -3.13882, 9.75268, 0.276984, -2.51489, -5.82534, -3.65957, 6.44663}, {5.36656, 5.36656, -5.36656, 1.41539, 1.41492, 1.85814, 0, 3.15102, 0, 0.373467, -2.77708, -3.64699, -5.19992, -5.19747, -11.9405, -1.74951, -5.64381, -2.29678, 2.21115, -14.2878, -2.21115, 0.255645, 16.7521, 16.8847, -2.21115, 1.68373, 2.21115, -0.461631, -0.462209, 4.50793}, {-1.78885, -1.78885, 1.78885, -4.24616, -4.24476, -5.57441, -2.92145e-16, 3.15102, 2.85286e-15, 0.373467, -2.77708, -3.64699, 7.61705, 7.61763, -11.6633, -1.74951, -18.2479, -2.29678, 2.21115, -1.68373, -2.21115, 1.74951, 5.64381, 2.29678, -3.70501, 12.7921, 16.7991, -0.461631, -0.462209, 4.50793}, {-1.78885, -1.78885, 1.78885, 1.41539, 1.41492, 1.85814, 0, -9.45305, 0, 0.373467, -2.77708, -3.64699, 0.461631, 0.462209, -4.50793, -7.41106, -11.3035, -9.72932, 9.36656, 5.47169, -9.36656, 1.74951, 5.64381, 2.29678, -2.21115, 1.68373, 2.21115, -1.9555, 10.6461, 19.0959}, {-1.78885, -1.78885, 1.78885, 1.41539, 1.41492, 1.85814, 0, 3.15102, 0, -1.1204, 8.33125, 10.941, 0.461631, 0.462209, -4.50793, -1.74951, -5.64381, -2.29678, 2.21115, -1.68373, -2.21115, 8.90493, 12.7992, -4.85864, -7.87269, -3.97595, -5.2214, -0.461631, -13.0663, 4.50793}, {-4.34476, -0.77549, 0.782793, -0.00873736, -1.40655, 0.564008, -1.44688, -0.0374651, -0.914786, 0.00736434, 1.18552, 0.611709, -1.74439, 7.04528, -2.63065, 1.79924, 1.7849, 0.433585, 5.78582, -0.123349, 5.11241, -1.8287, -6.52698, -2.88042, 0.00169715, 0.27321, -1.45327, 1.77934, -1.41907, 0.374623}, {1.44825, 0.258497, -0.260931, 0.0262121, 4.21965, -1.69202, -1.44688, -0.0374651, -0.914786, 0.00736434, 1.18552, 0.611709, -7.57235, 0.385087, 0.669101, 7.58676, 1.93476, 4.09273, -0.00169715, -0.27321, 1.45327, -1.79924, -1.7849, -0.433585, -0.0277602, -4.46887, -3.9001, 1.77934, -1.41907, 0.374623}, {1.44825, 0.258497, -0.260931, -0.00873736, -1.40655, 0.564008, 4.34064, 0.112395, 2.74436, 0.00736434, 1.18552, 0.611709, -1.77934, 1.41907, -0.374623, 1.83419, 7.4111, -1.82245, -5.79471, -1.3072, 2.49699, -1.79924, -1.7849, -0.433585, 0.00169715, 0.27321, -1.45327, 1.74988, -6.16115, -2.07221}, {1.44825, 0.258497, -0.260931, -0.00873736, -1.40655, 0.564008, -1.44688, -0.0374651, -0.914786, -0.022093, -3.55656, -1.83513, -1.77934, 1.41907, -0.374623, 1.79924, 1.7849, 0.433585, -0.00169715, -0.27321, 1.45327, -7.59225, -2.81889, 0.610139, 0.0366466, 5.89941, -3.7093, 7.56686, -1.26921, 4.03377}, {-4.817, -2.66454e-15, -5.32907e-15, -1.78885, -1.78885, 1.78885, 0.373353, 0.374783, -3.64588, -0.190167, 1.41407, 1.85702, 7.38185, 9.36656, -9.36656, 1.74966, 1.74789, 2.29541, -3.93962, -1.96239, 19.0901, -0.988987, -7.40418, -9.72349, 2.4462, 0.463257, -4.50655, -0.226431, -2.21115, 2.21115}, {1.60567, 4.44089e-16, 1.77636e-15, 5.36656, 5.36656, -5.36656, 0.373353, 0.374783, -3.64588, -0.190167, 1.41407, 1.85702, -6.19624, 2.21115, -2.21115, 0.256242, 0.248757, 16.8789, -2.4462, -0.463257, 4.50655, -1.74966, -1.74789, -2.29541, 3.20687, -5.19303, -11.9346, -0.226431, -2.21115, 2.21115}, {1.60567, 0, 4.44089e-16, -1.78885, -1.78885, 1.78885, -1.12006, -1.12435, 10.9376, -0.190167, 1.41407, 1.85702, 0.226431, 2.21115, -2.21115, 8.90507, 8.90331, -4.86001, -8.86888, -0.463257, 4.50655, -1.74966, -1.74789, -2.29541, 2.4462, 0.463257, -4.50655, 0.534237, -7.86743, -5.21694}, {1.60567, 2.22045e-16, 1.11022e-15, -1.78885, -1.78885, 1.78885, 0.373353, 0.374783, -3.64588, 0.570501, -4.24221, -5.57107, 0.226431, 2.21115, -2.21115, 1.74966, 1.74789, 2.29541, -2.4462, -0.463257, 4.50655, -8.17233, -1.74789, -2.29541, 9.60162, 7.61867, -11.662, -1.71984, -3.71028, 16.7947}, {-5.36225, -5.36694, -5.37021, 0, -1.60567, 0, -0.373167, -0.373493, -3.64724, -1.41425, 0.190182, 1.85717, -2.20937, 6.19609, -2.21265, 0.46126, 2.44638, 4.50824, -0.25544, -0.255663, 16.8846, 5.19574, -3.20711, -11.9369, 1.74811, 1.74964, -2.29559, 2.20937, 0.226585, 2.21265}, {1.78742, 1.78898, 1.79007, 0, 4.817, 0, -0.373167, -0.373493, -3.64724, -1.41425, 0.190182, 1.85717, -9.35904, -7.3825, -9.37293, 1.95393, 3.94035, 19.0972, -1.74811, -1.74964, 2.29559, -0.46126, -2.44638, -4.50824, 7.40511, 0.988907, -9.72428, 2.20937, 0.226585, 2.21265}, {1.78742, 1.78898, 1.79007, 0, -1.60567, 0, 1.1195, 1.12048, 10.9417, -1.41425, 0.190182, 1.85717, -2.20937, -0.226585, -2.21265, 0.46126, 8.86905, 4.50824, -8.89778, -8.90555, -4.86469, -0.46126, -2.44638, -4.50824, 1.74811, 1.74964, -2.29559, 7.86637, -0.534145, -5.21604}, {1.78742, 1.78898, 1.79007, 0, -1.60567, 0, -0.373167, -0.373493, -3.64724, 4.24275, -0.570547, -5.57152, -2.20937, -0.226585, -2.21265, 0.46126, 2.44638, 4.50824, -1.74811, -1.74964, 2.29559, -7.61093, -9.60229, -11.6685, 1.74811, 8.17231, -2.29559, 3.70204, 1.72056, 16.8016}, {-0.829936, -0.831314, 3.98569, 1.1323, 1.13131, 1.13131, 0.168871, -1.43624, 0.169424, -1.57782, 0.027827, 0.027827, -6.27076, -6.26615, -4.28143, -1.60834, 0.376916, -1.6078, -1.22617, 7.17775, 0.755077, 7.9196, -0.488224, 1.49649, 0.550688, -1.43277, -1.43277, 1.74155, 1.7409, -0.243816}, {0.276645, 0.277105, -1.32856, -3.3969, -3.39394, -3.39394, 0.168871, -1.43624, 0.169424, -1.57782, 0.027827, 0.027827, -2.84813, -2.84932, 5.55807, -2.28382, 6.12189, -2.2855, -0.550688, 1.43277, 1.43277, 1.60834, -0.376916, 1.6078, 6.86195, -1.54408, -1.54408, 1.74155, 1.7409, -0.243816}, {0.276645, 0.277105, -1.32856, 1.1323, 1.13131, 1.13131, -0.506612, 4.30873, -0.508273, -1.57782, 0.027827, 0.027827, -1.74155, -1.7409, 0.243816, -6.13754, -4.14833, -6.13305, -1.65727, 0.324356, 6.74703, 1.60834, -0.376916, 1.6078, 0.550688, -1.43277, -1.43277, 8.05282, 1.62959, -0.355124}, {0.276645, 0.277105, -1.32856, 1.1323, 1.13131, 1.13131, 0.168871, -1.43624, 0.169424, 4.73345, -0.0834809, -0.0834809, -1.74155, -1.7409, 0.243816, -1.60834, 0.376916, -1.6078, -0.550688, 1.43277, 1.43277, 0.501756, -1.48534, 6.92205, -3.97852, -5.95802, -5.95802, 1.06607, 7.48587, -0.921513}, {-8.33162, 1.1204, 10.941, -1.41498, -1.41539, 1.85814, -3.15057, 0, 0, 1.78834, 1.78885, 1.78885, 3.97613, 7.87269, -5.2214, 5.64333, 1.74951, -2.29678, 13.0638, 0.461631, 4.50793, -12.7967, -8.90493, -4.85864, -0.461499, -0.461631, -4.50793, 1.6838, -2.21115, -2.21115}, {2.77721, -0.373467, -3.64699, 4.24495, 4.24616, -5.57441, -3.15057, 0, 0, 1.78834, 1.78885, 1.78885, -12.7926, 3.70501, 16.7991, 18.2456, 1.74951, -2.29678, 0.461499, 0.461631, 4.50793, -5.64333, -1.74951, 2.29678, -7.61487, -7.61705, -11.6633, 1.6838, -2.21115, -2.21115}, {2.77721, -0.373467, -3.64699, -1.41498, -1.41539, 1.85814, 9.4517, 0, 0, 1.78834, 1.78885, 1.78885, -1.6838, 2.21115, 2.21115, 11.3033, 7.41106, -9.72932, -10.6473, 1.9555, 19.0959, -5.64333, -1.74951, 2.29678, -0.461499, -0.461631, -4.50793, -5.46957, -9.36656, -9.36656}, {2.77721, -0.373467, -3.64699, -1.41498, -1.41539, 1.85814, -3.15057, 0, 0, -5.36503, -5.36656, -5.36656, -1.6838, 2.21115, 2.21115, 5.64333, 1.74951, -2.29678, 0.461499, 0.461631, 4.50793, -16.7522, -0.255645, 16.8847, 5.19843, 5.19992, -11.9405, 14.2861, -2.21115, -2.21115}, {-3.98391, -5.22497, -0.407969, -1.83214e-15, -1.4677e-15, 1.60567, 0.61239, -1.54296, -1.54296, -1.94036, -0.198701, -0.198701, -1.64146, -2.15281, -8.57548, -0.756955, 1.9072, -0.0775154, -4.84797, 5.92622, 7.91093, 8.51839, -1.1124, 0.87232, 2.39842, 0.245608, -1.73911, 1.64146, 2.15281, 2.15281}, {1.32797, 1.74166, 0.13599, 3.05267e-15, -1.60751e-15, -4.817, 0.61239, -1.54296, -1.54296, -1.94036, -0.198701, -0.198701, -6.95334, -9.11944, -2.69677, -3.20651, 8.07903, 6.09431, -2.39842, -0.245608, 1.73911, 0.756955, -1.9072, 0.0775154, 10.1599, 1.04041, -0.944303, 1.64146, 2.15281, 2.15281}, {1.32797, 1.74166, 0.13599, 0, 0, 1.60567, -1.83717, 4.62887, 4.62887, -1.94036, -0.198701, -0.198701, -1.64146, -2.15281, -2.15281, -0.756955, 1.9072, -6.50019, -7.71029, -7.21224, 1.19515, 0.756955, -1.9072, 0.0775154, 2.39842, 0.245608, -1.73911, 9.4029, 2.94761, 2.94761}, {1.32797, 1.74166, 0.13599, 7.73451e-16, 7.92047e-17, 1.60567, 0.61239, -1.54296, -1.54296, 5.82108, 0.596103, 0.596103, -1.64146, -2.15281, -2.15281, -0.756955, 1.9072, -0.0775154, -2.39842, -0.245608, 1.73911, -4.55492, -8.87383, -0.466443, 2.39842, 0.245608, -8.16178, -0.808098, 8.32463, 8.32463}, {-1.77636e-15, 4.817, 8.88178e-16, -0.373167, -0.373493, 3.64724, -1.41425, 0.190182, -1.85717, 1.78742, 1.78898, -1.79007, 1.95393, 3.94035, -19.0972, 2.20937, 0.226585, -2.21265, 7.40511, 0.988907, 9.72428, -9.35904, -7.3825, 9.37293, -1.74811, -1.74964, -2.29559, -0.46126, -2.44638, 4.50824}, {-2.22045e-16, -1.60567, -2.22045e-16, 1.1195, 1.12048, -10.9417, -1.41425, 0.190182, -1.85717, 1.78742, 1.78898, -1.79007, 0.46126, 8.86905, -4.50824, 7.86637, -0.534145, 5.21604, 1.74811, 1.74964, 2.29559, -2.20937, -0.226585, 2.21265, -8.89778, -8.90555, 4.86469, -0.46126, -2.44638, 4.50824}, {2.22045e-16, -1.60567, 6.66134e-16, -0.373167, -0.373493, 3.64724, 4.24275, -0.570547, 5.57152, 1.78742, 1.78898, -1.79007, 0.46126, 2.44638, -4.50824, 3.70204, 1.72056, -16.8016, 1.74811, 8.17231, 2.29559, -2.20937, -0.226585, 2.21265, -1.74811, -1.74964, -2.29559, -7.61093, -9.60229, 11.6685}, {-2.22045e-16, -1.60567, 6.66134e-16, -0.373167, -0.373493, 3.64724, -1.41425, 0.190182, -1.85717, -5.36225, -5.36694, 5.37021, 0.46126, 2.44638, -4.50824, 2.20937, 0.226585, -2.21265, 1.74811, 1.74964, 2.29559, -2.20937, 6.19609, 2.21265, -0.25544, -0.255663, -16.8846, 5.19574, -3.20711, 11.9369}, {5.57441, 0.570843, -4.24616, 1.45374e-15, 1.60567, 1.48869e-16, -1.78885, -1.78885, -1.78885, 3.64699, 0.373467, 0.373467, 2.29678, -8.17219, -1.74951, 2.21115, 0.226431, 2.21115, 11.6633, 9.60176, 7.61705, -16.7991, -1.7203, -3.70501, -4.50793, -2.44635, -0.461631, -2.29678, 1.74951, 1.74951}, {-1.85814, -0.190281, 1.41539, -6.50039e-15, -4.817, -2.58579e-15, -1.78885, -1.78885, -1.78885, 3.64699, 0.373467, 0.373467, 9.72932, -0.988391, -7.41106, 9.36656, 7.38185, 9.36656, 4.50793, 2.44635, 0.461631, -2.21115, -0.226431, -2.21115, -19.0959, -3.94022, -1.9555, -2.29678, 1.74951, 1.74951}, {-1.85814, -0.190281, 1.41539, 0, 1.60567, 0, 5.36656, 5.36656, 5.36656, 3.64699, 0.373467, 0.373467, 2.29678, -1.74951, -1.74951, 2.21115, -6.19624, 2.21115, 11.9405, 3.20747, -5.19992, -2.21115, -0.226431, -2.21115, -4.50793, -2.44635, -0.461631, -16.8847, 0.255645, 0.255645}, {-1.85814, -0.190281, 1.41539, 1.45374e-15, 1.60567, 1.48869e-16, -1.78885, -1.78885, -1.78885, -10.941, -1.1204, -1.1204, 2.29678, -1.74951, -1.74951, 2.21115, 0.226431, 2.21115, 4.50793, 2.44635, 0.461631, 5.2214, 0.534693, -7.87269, -4.50793, -8.86902, -0.461631, 4.85864, 8.90493, 8.90493}, {0.596103, -0.596103, -5.82108, 1.74166, -0.13599, -1.32797, -1.54296, 1.54296, -0.61239, 0, -1.60567, 0, -8.87383, 0.466443, 4.55492, -0.245608, -1.73911, 2.39842, 8.32463, -8.32463, 0.808098, 0.245608, 8.16178, -2.39842, -2.15281, 2.15281, 1.64146, 1.9072, 0.0775154, 0.756955}, {-0.198701, 0.198701, 1.94036, -5.22497, 0.407969, 3.98391, -1.54296, 1.54296, -0.61239, 0, -1.60567, 0, -1.1124, -0.87232, -8.51839, 5.92622, -7.91093, 4.84797, 2.15281, -2.15281, -1.64146, 0.245608, 1.73911, -2.39842, -2.15281, 8.57548, 1.64146, 1.9072, 0.0775154, 0.756955}, {-0.198701, 0.198701, 1.94036, 1.74166, -0.13599, -1.32797, 4.62887, -4.62887, 1.83717, 0, -1.60567, 0, -1.9072, -0.0775154, -0.756955, -7.21224, -1.19515, 7.71029, 2.94761, -2.94761, -9.4029, 0.245608, 1.73911, -2.39842, -2.15281, 2.15281, 1.64146, 1.9072, 6.50019, 0.756955}, {-0.198701, 0.198701, 1.94036, 1.74166, -0.13599, -1.32797, -1.54296, 1.54296, -0.61239, 0, 4.817, 0, -1.9072, -0.0775154, -0.756955, -0.245608, -1.73911, 2.39842, 2.15281, -2.15281, -1.64146, 1.04041, 0.944303, -10.1599, -9.11944, 2.69677, 6.95334, 8.07903, -6.09431, 3.20651}, {1.77636e-15, 9.45441, 0, 1.36222, 1.36261, 1.78885, -3.15057, 0, 0, 1.78834, 1.78885, -1.78885, -7.1327, -3.23931, -9.36656, 2.21051, -1.68428, -2.21115, 16.4966, 3.89543, 0, -9.36389, -5.47113, 9.36656, -3.89432, -3.89543, 0, 1.6838, -2.21115, 2.21115}, {-2.22045e-16, -3.15147, 0, -4.08667, -4.08784, -5.36656, -3.15057, 0, 0, 1.78834, 1.78885, -1.78885, -1.6838, 14.817, -2.21115, 14.8128, -1.68428, -2.21115, 3.89432, 3.89543, 0, -2.21051, 1.68428, 2.21115, -11.0477, -11.0508, 7.15542, 1.6838, -2.21115, 2.21115}, {2.22045e-16, -3.15147, 0, 1.36222, 1.36261, 1.78885, 9.4517, 0, 0, 1.78834, 1.78885, -1.78885, -1.6838, 2.21115, -2.21115, -3.23838, -7.13474, -9.36656, 3.89432, 16.5013, 0, -2.21051, 1.68428, 2.21115, -3.89432, -3.89543, 0, -5.46957, -9.36656, 9.36656}, {-2.22045e-16, -3.15147, 0, 1.36222, 1.36261, 1.78885, -3.15057, 0, 0, -5.36503, -5.36656, 5.36656, -1.6838, 2.21115, -2.21115, 2.21051, -1.68428, -2.21115, 3.89432, 3.89543, 0, -2.21051, 14.2902, 2.21115, -9.34321, -9.34589, -7.15542, 14.2861, -2.21115, 2.21115}, {-2.95778e-16, 8.88178e-16, 5.41667, 1.44665, -1.44665, -0.51339, -1.44665, -0.572575, 0.978606, 1.97314e-12, 2.01922, 1.34034, -7.57474, 7.57474, 4.91993, 2.43894e-12, 2.4959, -0.575039, 7.57474, 2.99804, -2.89226, -1.03315e-11, -10.5728, -4.78632, -1.78815, -0.707741, -1.02217, 1.78815, -1.78815, -2.86637}, {1.99359e-16, 4.44089e-16, -1.80556, -4.33994, 4.33994, 1.54017, -1.44665, -0.572575, 0.978606, 1.97222e-12, 2.01922, 1.34034, -1.78815, 1.78815, 10.0886, 5.78659, 4.7862, -4.48946, 1.78815, 0.707741, 1.02217, -2.43805e-12, -2.4959, 0.575039, -1.78815, -8.78463, -6.38352, 1.78815, -1.78815, -2.86637}, {8.21831e-17, -4.44089e-16, -1.80556, 1.44665, -1.44665, -0.51339, 4.33994, 1.71772, -2.93582, 1.97167e-12, 2.01922, 1.34034, -1.78815, 1.78815, 2.86637, -5.78659, 8.28248, 1.47852, 1.78815, 0.707741, 8.24439, -2.43716e-12, -2.4959, 0.575039, -1.78815, -0.707741, -1.02217, 1.78815, -9.86504, -8.22773}, {-1.03785e-17, 0, -1.80556, 1.44665, -1.44665, -0.51339, -1.44665, -0.572575, 0.978606, -5.91996e-12, -6.05767, -4.02102, -1.78815, 1.78815, 2.86637, 2.43916e-12, 2.4959, -0.575039, 1.78815, 0.707741, 1.02217, -2.43978e-12, -2.4959, 7.79726, -7.57474, 5.07885, 1.03139, 7.57474, 0.502145, -6.7808}, {-1.83228, -4.62937, -4.62777, -1.94057, 0.198723, 0.200419, 1.32981, -1.74185, -0.13734, 0, 0, -1.60567, 9.40601, -2.94793, -2.95615, 0.754941, 1.90741, -0.0779689, -7.71791, 7.21302, -1.18762, -0.754941, -1.90741, 6.50064, 2.39867, -0.245635, 1.73698, -1.64373, 2.15304, 2.15448}, {0.61076, 1.54312, 1.54259, 5.82171, -0.596168, -0.601256, 1.32981, -1.74185, -0.13734, 0, 0, -1.60567, -0.799305, -8.32553, -8.32484, -4.5643, 8.87479, 0.471392, -2.39867, 0.245635, -1.73698, -0.754941, -1.90741, 0.0779689, 2.39867, -0.245635, 8.15966, -1.64373, 2.15304, 2.15448}, {0.61076, 1.54312, 1.54259, -1.94057, 0.198723, 0.200419, -3.98943, 5.22554, 0.412021, 0, 0, -1.60567, 1.64373, -2.15304, -2.15448, 8.51722, 1.11252, -0.879643, -4.84171, -5.92686, -7.90734, -0.754941, -1.90741, 0.0779689, 2.39867, -0.245635, 1.73698, -1.64373, 2.15304, 8.57715}, {0.61076, 1.54312, 1.54259, -1.94057, 0.198723, 0.200419, 1.32981, -1.74185, -0.13734, 0, 0, 4.817, 1.64373, -2.15304, -2.15448, 0.754941, 1.90741, -0.0779689, -2.39867, 0.245635, -1.73698, -3.19798, -8.0799, -6.09239, 10.1609, -1.04052, 0.93531, -6.96297, 9.12042, 2.70384}, {-5.36656, 5.36656, -5.36656, 0, 0, -3.15147, -0.373467, 3.64699, 2.778, -1.41539, -1.85814, -1.41539, -2.21115, 2.21115, 14.2902, 0.461631, -4.50793, 0.461631, -0.255645, -16.8847, -16.7569, 5.19992, 11.9405, 5.19992, 1.74951, 2.29678, 5.64494, 2.21115, -2.21115, -1.68428}, {1.78885, -1.78885, 1.78885, 0, 0, 9.45441, -0.373467, 3.64699, 2.778, -1.41539, -1.85814, -1.41539, -9.36656, 9.36656, -5.47113, 1.9555, -19.0959, -10.6504, -1.74951, -2.29678, -5.64494, -0.461631, 4.50793, -0.461631, 7.41106, 9.72932, 11.3065, 2.21115, -2.21115, -1.68428}, {1.78885, -1.78885, 1.78885, 0, 0, -3.15147, 1.1204, -10.941, -8.334, -1.41539, -1.85814, -1.41539, -2.21115, 2.21115, 1.68428, 0.461631, -4.50793, 13.0675, -8.90493, 4.85864, -12.8004, -0.461631, 4.50793, -0.461631, 1.74951, 2.29678, 5.64494, 7.87269, 5.2214, 3.97726}, {1.78885, -1.78885, 1.78885, 0, 0, -3.15147, -0.373467, 3.64699, 2.778, 4.24616, 5.57441, 4.24616, -2.21115, 2.21115, 1.68428, 0.461631, -4.50793, 0.461631, -1.74951, -2.29678, -5.64494, -7.61705, 11.6633, -7.61705, 1.74951, 2.29678, 18.2508, 3.70501, -16.7991, -12.7963}, {1.64026, -3.9353, -3.8467e-12, 0.194118, 0, -1.44665, -0.509273, -1.31177, -1.28236e-12, 0.861908, 0, 1.44665, -0.34059, -1.62143, 7.57474, 0.389553, 1.62143, 1.78815, 3.34241, 5.24706, 5.12945e-12, -3.83718, -1.62143, -7.57474, -1.30532, 0, 0, -0.435881, 1.62143, -1.78815}, {-0.546753, 1.31177, 1.28098e-12, -0.582353, 3.77031e-16, 4.33994, -0.509273, -1.31177, -1.28138e-12, 0.861908, 8.26902e-17, 1.44665, 2.62289, -6.86849, 1.78815, 2.42664, 6.86849, 1.78815, 1.30532, -3.78785e-16, 4.44089e-16, -0.389553, -1.62143, -1.78815, -4.75295, -2.77626e-16, -5.78659, -0.435881, 1.62143, -1.78815}, {-0.546753, 1.31177, 1.28164e-12, 0.194118, 0, -1.44665, 1.52782, 3.9353, 3.84623e-12, 0.861908, 0, 1.44665, 0.435881, -1.62143, 1.78815, -0.386918, 1.62143, 7.57474, 3.49233, -5.24706, -5.12657e-12, -0.389553, -1.62143, -1.78815, -1.30532, 0, -4.44089e-16, -3.88351, 1.62143, -7.57474}, {-0.546753, 1.31177, 1.28164e-12, 0.194118, 0, -1.44665, -0.509273, -1.31177, -1.28138e-12, -2.58572, 0, -4.33994, 0.435881, -1.62143, 1.78815, 0.389553, 1.62143, 1.78815, 1.30532, -3.2565e-16, -2.22045e-16, 1.79746, -6.86849, -1.78815, -2.08179, 0, 5.78659, 1.60121, 6.86849, -1.78815}, {0.831641, 5.95736e-16, -6.19774, -0.482067, 1.31177, -0.482067, -0.449021, -1.31177, -0.449021, 1.2083, 1.98579e-16, -1.13482, 2.86679, -6.86849, -0.0294728, 1.15089, 0, 1.15089, 2.69376, 6.86849, -0.202503, -5.98409, -7.94315e-16, 3.38841, -0.897675, -1.62143, 1.99859, -0.938522, 1.62143, 1.95774}, {-0.277214, -1.75113e-16, 2.06591, 1.4462, -3.9353, 1.4462, -0.449021, -1.31177, -0.449021, 1.2083, 3.97157e-16, -1.13482, 2.04738, -1.62143, -10.2214, 2.94697, 5.24706, 2.94697, 0.897675, 1.62143, -1.99859, -1.15089, -2.22045e-16, -1.15089, -5.73088, -1.62143, 6.53788, -0.938522, 1.62143, 1.95774}, {-0.277214, 7.58234e-17, 2.06591, -0.482067, 1.31177, -0.482067, 1.34706, 3.9353, 1.34706, 1.2083, -2.97868e-16, -1.13482, 0.938522, -1.62143, -1.95774, 3.07916, -5.24706, 3.07916, 2.00653, 1.62143, -10.2622, -1.15089, 4.44089e-16, -1.15089, -0.897675, -1.62143, 1.99859, -5.77173, 1.62143, 6.49704}, {-0.277214, 0, 2.06591, -0.482067, 1.31177, -0.482067, -0.449021, -1.31177, -0.449021, -3.6249, 0, 3.40447, 0.938522, -1.62143, -1.95774, 1.15089, 0, 1.15089, 0.897675, 1.62143, -1.99859, -0.0420334, 0, -9.41454, 1.03059, -6.86849, 3.92685, 0.857562, 6.86849, 3.75382}, {10.941, -1.1204, -8.334, 1.78885, -1.78885, 1.78885, 1.85814, 1.41539, -1.41539, 0, 0, -3.15147, -4.85864, 8.90493, -12.8004, -4.50793, 0.461631, -0.461631, -5.2214, -7.87269, 3.97726, 4.50793, -0.461631, 13.0675, -2.21115, 2.21115, 1.68428, -2.29678, -1.74951, 5.64494}, {-3.64699, 0.373467, 2.778, -5.36656, 5.36656, -5.36656, 1.85814, 1.41539, -1.41539, 0, 0, -3.15147, 16.8847, 0.255645, -16.7569, -11.9405, -5.19992, 5.19992, 2.21115, -2.21115, -1.68428, 4.50793, -0.461631, 0.461631, -2.21115, 2.21115, 14.2902, -2.29678, -1.74951, 5.64494}, {-3.64699, 0.373467, 2.778, 1.78885, -1.78885, 1.78885, -5.57441, -4.24616, 4.24616, 0, 0, -3.15147, 2.29678, 1.74951, -5.64494, -11.6633, 7.61705, -7.61705, 16.7991, -3.70501, -12.7963, 4.50793, -0.461631, 0.461631, -2.21115, 2.21115, 1.68428, -2.29678, -1.74951, 18.2508}, {-3.64699, 0.373467, 2.778, 1.78885, -1.78885, 1.78885, 1.85814, 1.41539, -1.41539, 0, 0, 9.45441, 2.29678, 1.74951, -5.64494, -4.50793, 0.461631, -0.461631, 2.21115, -2.21115, -1.68428, 19.0959, -1.9555, -10.6504, -9.36656, 9.36656, -5.47113, -9.72932, -7.41106, 11.3065}, {1.77636e-15, 0, 9.45441, 1.78885, 1.78885, 1.78885, 1.36261, -1.78885, 1.36261, -3.15147, 0, 0, -9.36656, -9.36656, -5.47113, -3.89543, 0, -3.89543, -7.13474, 9.36656, -3.23931, 16.5013, 0, 3.89543, 1.68428, -2.21115, -2.21115, 2.21115, 2.21115, -1.68428}, {0, 0, -3.15147, -5.36656, -5.36656, -5.36656, 1.36261, -1.78885, 1.36261, -3.15147, 0, 0, -2.21115, -2.21115, 14.2902, -9.34589, 7.15542, -9.34589, -1.68428, 2.21115, 2.21115, 3.89543, 0, 3.89543, 14.2902, -2.21115, -2.21115, 2.21115, 2.21115, -1.68428}, {4.44089e-16, 0, -3.15147, 1.78885, 1.78885, 1.78885, -4.08784, 5.36656, -4.08784, -3.15147, 0, 0, -2.21115, -2.21115, 1.68428, -11.0508, -7.15542, -11.0508, -1.68428, 2.21115, 14.817, 3.89543, 0, 3.89543, 1.68428, -2.21115, -2.21115, 14.817, 2.21115, -1.68428}, {0, 0, -3.15147, 1.78885, 1.78885, 1.78885, 1.36261, -1.78885, 1.36261, 9.45441, 0, 0, -2.21115, -2.21115, 1.68428, -3.89543, 0, -3.89543, -1.68428, 2.21115, 2.21115, 3.89543, 0, 16.5013, -5.47113, -9.36656, -9.36656, -3.23931, 9.36656, -7.13474}, {5.22884, -3.98763, -5.22319, 0.200328, -1.9397, -2.54071, 8.97324e-16, 3.55112e-16, 2.34313, 1.54262, 0.610485, -1.54348, 1.10547, 8.51339, 11.1512, -0.24762, 2.3976, 0.244222, 2.1544, -1.643, -14.4208, -5.92285, -4.83954, 5.92971, -2.1544, 1.643, 5.04833, -1.90678, -0.754601, -0.988412}, {-1.74295, 1.32921, 1.74106, -0.600985, 5.81909, 7.62212, 0, 0, 2.34313, 1.54262, 0.610485, -1.54348, 8.87857, -4.56224, -5.97584, -0.24762, 2.3976, -9.12828, 2.1544, -1.643, -5.04833, 0.24762, -2.3976, -0.244222, -8.32487, -0.798945, 11.2223, -1.90678, -0.754601, -0.988412}, {-1.74295, 1.32921, 1.74106, 0.200328, -1.9397, -2.54071, 0, 0, -7.02938, 1.54262, 0.610485, -1.54348, 1.90678, 0.754601, 0.988412, -1.04893, 10.1564, 10.407, 9.12619, -6.95984, -12.0126, 0.24762, -2.3976, -0.244222, -2.1544, 1.643, 5.04833, -8.07725, -3.19654, 5.18552}, {-1.74295, 1.32921, 1.74106, 0.200328, -1.9397, -2.54071, 8.97324e-16, 3.55112e-16, 2.34313, -4.62785, -1.83146, 4.63045, 1.90678, 0.754601, 0.988412, -0.24762, 2.3976, 0.244222, 2.1544, -1.643, -5.04833, 7.21941, -7.71444, -7.20847, -2.95571, 9.40178, 15.2112, -1.90678, -0.754601, -10.3609}, {0.403167, 4.33994, -4.33994, 1.56712, -1.12319e-15, 3.41061e-16, -0.345916, 1.4404, 0.569981, -1.08682, 0.00624416, -2.01663, -8.03944, 1.78815, -1.78815, -1.50949, -1.78044, -0.704535, 1.97736, -5.75389, -4.77261, 5.85676, 1.75546, 8.77105, -0.59369, -0.00771821, 2.49269, 1.77095, -1.78815, 1.78815}, {-0.134389, -1.44665, 1.44665, -4.70136, 1.67385e-15, 3.01891e-15, -0.345916, 1.4404, 0.569981, -1.08682, 0.00624416, -2.01663, -1.2334, 7.57474, -7.57474, -0.125826, -7.54205, -2.98446, 0.59369, 0.00771821, -2.49269, 1.50949, 1.78044, 0.704535, 3.75357, -0.0326948, 10.5592, 1.77095, -1.78815, 1.78815}, {-0.134389, -1.44665, 1.44665, 1.56712, 0, 0, 1.03775, -4.32121, -1.70994, -1.08682, 0.00624416, -2.01663, -1.77095, 1.78815, -1.78815, -7.77798, -1.78044, -0.704535, 1.13125, 5.79431, -8.27928, 1.50949, 1.78044, 0.704535, -0.59369, -0.00771821, 2.49269, 6.11822, -1.81313, 9.85467}, {-0.134389, -1.44665, 1.44665, 1.56712, -2.42925e-18, 7.84555e-16, -0.345916, 1.4404, 0.569981, 3.26045, -0.0187325, 6.04988, -1.77095, 1.78815, -1.78815, -1.50949, -1.78044, -0.704535, 0.59369, 0.00771821, -2.49269, 2.04705, 7.56702, -5.08205, -6.86218, -0.00771821, 2.49269, 3.15462, -7.54977, -0.491769}, {-7.02938, 5.36656, -7.02938, -2.34313, 0, 0, 0, 0, -2.34313, 1.02097e-11, 1.78885, 1.02102e-11, 9.3725, 2.21115, -2.89626, 2.89626, 0, 2.89626, -2.89626, 2.21115, 9.3725, -2.89626, -7.15542, -2.89626, 2.89626, -2.21115, -1.26205e-11, -1.26199e-11, -2.21115, 2.89626}, {2.34313, -1.78885, 2.34313, 7.02938, 0, 0, 0, 0, -2.34313, 1.02086e-11, 1.78885, 1.02066e-11, -9.3725, 9.36656, -12.2688, 2.89626, 0, 12.2688, -2.89626, 2.21115, 1.26154e-11, -2.89626, 4.44089e-16, -2.89626, 2.89626, -9.36656, -5.34422e-11, -1.26186e-11, -2.21115, 2.89626}, {2.34313, -1.78885, 2.34313, -2.34313, 0, 0, 0, 0, 7.02938, 1.0206e-11, 1.78885, 1.02081e-11, 1.26148e-11, 2.21115, -2.89626, 12.2688, 0, 2.89626, -12.2688, 9.36656, -9.3725, -2.89626, 4.44089e-16, -2.89626, 2.89626, -2.21115, -1.26179e-11, -5.34395e-11, -9.36656, 2.89626}, {2.34313, -1.78885, 2.34313, -2.34313, 0, 0, 0, 0, -2.34313, -3.06361e-11, -5.36656, -3.06329e-11, 1.26222e-11, 2.21115, -2.89626, 2.89626, 0, 2.89626, -2.89626, 2.21115, 1.26209e-11, -12.2688, 7.15542, -12.2688, 12.2688, -2.21115, -1.26215e-11, -1.26228e-11, -2.21115, 12.2688}, {7.02938, 0, 8.88974e-16, 2.34566, -1.78885, -2.34313, -1.47457e-18, 1.04056e-15, 2.34313, -0.00253498, 1.78885, -1.02102e-11, -9.38578, 9.36656, 12.2688, -2.8994, 2.21115, -1.26206e-11, 2.89626, -4.88498e-15, -12.2688, 2.90954, -9.36656, 5.34614e-11, -2.89626, 8.88178e-16, 2.89626, 0.00313341, -2.21115, -2.89626}, {-2.34313, 0, 7.14229e-17, -7.03698, 5.36656, 7.02938, 0, 0, 2.34313, -0.00253498, 1.78885, -1.02097e-11, 9.36937, 2.21115, 2.89626, -2.8994, 2.21115, -9.3725, 2.89626, 0, -2.89626, 2.8994, -2.21115, 1.26197e-11, -2.88612, -7.15542, 2.89626, 0.00313341, -2.21115, -2.89626}, {-2.34313, 0, -3.09288e-16, 2.34566, -1.78885, -2.34313, 0, 0, -7.02938, -0.00253498, 1.78885, -1.02071e-11, -0.00313341, 2.21115, 2.89626, -12.282, 9.36656, 9.3725, 12.2688, 0, -2.89626, 2.8994, -2.21115, 1.2617e-11, -2.89626, 0, 2.89626, 0.0132733, -9.36656, -2.89626}, {-2.34313, -2.22045e-16, 6.36673e-16, 2.34566, -1.78885, -2.34313, -1.47457e-18, 1.04056e-15, 2.34313, 0.00760494, -5.36656, 3.06361e-11, -0.00313341, 2.21115, 2.89626, -2.8994, 2.21115, -1.26219e-11, 2.89626, -1.33227e-15, -2.89626, 12.2719, -2.21115, 1.26202e-11, -12.2789, 7.15542, 12.2688, 0.00313341, -2.21115, -12.2688}, {5.3029, -0.485897, 0.486322, 0.215713, 1.38996, 0.214498, 0.501223, -0.501223, -1.10401, 1.0507, -1.0507, 1.05162, 1.05543, -7.4781, -0.922752, -0.886182, -1.09853, 1.09949, -0.439523, 2.42424, 5.98103, -3.31661, 5.30132, -5.30596, -1.56537, -0.419345, -1.565, -1.91828, 1.91828, 0.0647586}, {-1.76763, 0.161966, -0.162107, -0.647139, -4.16987, -0.643495, 0.501223, -0.501223, -1.10401, 1.0507, -1.0507, 1.05162, 8.98882, -2.56614, 0.583671, -2.89107, 0.90636, 5.51552, 1.56537, 0.419345, 1.565, 0.886182, 1.09853, -1.09949, -5.76816, 3.78345, -5.77147, -1.91828, 1.91828, 0.0647586}, {-1.76763, 0.161966, -0.162107, 0.215713, 1.38996, 0.214498, -1.50367, 1.50367, 3.31202, 1.0507, -1.0507, 1.05162, 1.91828, -1.91828, -0.0647586, -1.74903, -6.65835, 0.2415, 8.63591, -0.228518, 2.21343, 0.886182, 1.09853, -1.09949, -1.56537, -0.419345, -1.565, -6.12107, 6.12107, -4.14171}, {-1.76763, 0.161966, -0.162107, 0.215713, 1.38996, 0.214498, 0.501223, -0.501223, -1.10401, -3.15209, 3.15209, -3.15485, 1.91828, -1.91828, -0.0647586, -0.886182, -1.09853, 1.09949, 1.56537, 0.419345, 1.565, 7.95672, 0.45067, -0.451064, -2.42822, -5.97917, -2.423, -3.92317, 3.92317, 4.48079}, {1.71308, 4.3282, 0.488804, 0.642112, 1.62234, -1.62234, 2.1437, 0.314496, -0.314496, -2.21478, -0.4941, 2.09977, -2.65632, -6.71135, 8.69607, -3.44345, -2.39406, 2.39406, -10.5187, 0.136594, 1.84812, 12.3026, 4.37046, -10.7931, 1.94393, -1.39458, -0.590137, 0.0878675, 0.222003, -2.20672}, {-0.571026, -1.44273, -0.162935, -1.92634, -4.86701, 4.86701, 2.1437, 0.314496, -0.314496, -2.21478, -0.4941, 2.09977, 2.19624, 5.54893, 2.85846, -12.0182, -3.65204, 3.65204, -1.94393, 1.39458, 0.590137, 3.44345, 2.39406, -2.39406, 10.8031, 0.581823, -8.98921, 0.0878675, 0.222003, -2.20672}, {-0.571026, -1.44273, -0.162935, 0.642112, 1.62234, -1.62234, -6.43109, -0.943488, 0.943488, -2.21478, -0.4941, 2.09977, -0.0878675, -0.222003, 2.20672, -6.0119, -8.88341, 8.88341, 0.340174, 7.16551, 1.24188, 3.44345, 2.39406, -2.39406, 1.94393, -1.39458, -0.590137, 8.947, 2.1984, -10.6058}, {-0.571026, -1.44273, -0.162935, 0.642112, 1.62234, -1.62234, 2.1437, 0.314496, -0.314496, 6.64435, 1.4823, -6.2993, -0.0878675, -0.222003, 2.20672, -3.44345, -2.39406, 2.39406, -1.94393, 1.39458, 0.590137, 5.72755, 8.16499, -1.74232, -0.624519, -7.88393, 5.89921, -8.48692, -1.03598, -0.948734}, {-4.62937, 4.62937, 1.83228, 0.198723, -0.198723, 1.94057, -1.74185, 0.136178, -1.32981, 0, 1.60567, 0, -2.94793, 2.94793, -9.40601, 1.90741, 0.0773091, -0.754941, 7.21302, 1.19437, 7.71791, -1.90741, -6.49998, 0.754941, -0.245635, -1.73908, -2.39867, 2.15304, -2.15304, 1.64373}, {1.54312, -1.54312, -0.61076, -0.596168, 0.596168, -5.82171, -1.74185, 0.136178, -1.32981, 6.94322e-16, 1.60567, 5.30079e-16, -8.32553, 8.32553, 0.799305, 8.87479, -0.467403, 4.5643, 0.245635, 1.73908, 2.39867, -1.90741, -0.0773091, 0.754941, -0.245635, -8.16175, -2.39867, 2.15304, -2.15304, 1.64373}, {1.54312, -1.54312, -0.61076, 0.198723, -0.198723, 1.94057, 5.22554, -0.408534, 3.98943, 0, 1.60567, 0, -2.15304, 2.15304, -1.64373, 1.11252, 0.872199, -8.51722, -5.92686, 7.91157, 4.84171, -1.90741, -0.0773091, 0.754941, -0.245635, -1.73908, -2.39867, 2.15304, -8.57571, 1.64373}, {1.54312, -1.54312, -0.61076, 0.198723, -0.198723, 1.94057, -1.74185, 0.136178, -1.32981, 0, -4.817, 0, -2.15304, 2.15304, -1.64373, 1.90741, 0.0773091, -0.754941, 0.245635, 1.73908, 2.39867, -8.0799, 6.09519, 3.19798, -1.04052, -0.94419, -10.1609, 9.12042, -2.69775, 6.96297}, {-1.38621, -1.33227e-15, 3.9353, 1.09414, 1.31177, 1.31177, 0.173581, -1.31177, 0, -1.72979, 0, 0, -6.30013, -6.86849, -5.24706, -1.56699, 4.44089e-16, -1.62143, -1.48003, 6.86849, 1.62143, 8.48614, -4.44089e-16, 1.62143, 0.785706, -1.62143, -1.62143, 1.92358, 1.62143, 0}, {0.462069, -5.96084e-17, -1.31177, -3.28242, -3.9353, -3.9353, 0.173581, -1.31177, 0, -1.72979, 2.81653e-16, 0, -3.77185, -1.62143, 5.24706, -2.26131, 5.24706, -1.62143, -0.785706, 1.62143, 1.62143, 1.56699, -2.22045e-16, 1.62143, 7.70486, -1.62143, -1.62143, 1.92358, 1.62143, 0}, {0.462069, -8.88178e-16, -1.31177, 1.09414, 1.31177, 1.31177, -0.520744, 3.9353, 0, -1.72979, 0, 0, -1.92358, -1.62143, 3.2565e-16, -5.94354, -5.24706, -6.86849, -2.63398, 1.62143, 6.86849, 1.56699, 1.11022e-15, 1.62143, 0.785706, -1.62143, -1.62143, 8.84273, 1.62143, 0}, {0.462069, 0, -1.31177, 1.09414, 1.31177, 1.31177, 0.173581, -1.31177, 0, 5.18937, 0, 0, -1.92358, -1.62143, 3.2565e-16, -1.56699, 0, -1.62143, -0.785706, 1.62143, 1.62143, -0.281287, 0, 6.86849, -3.59085, -6.86849, -6.86849, 1.22925, 6.86849, 0}, {-3.84404e-12, -3.9353, 2.80446, 1.44665, 0, 0.44688, -1.28111e-12, -1.31177, -0.870737, -1.44665, 0, 1.35868, -7.57474, -1.62143, -1.18439, -1.78815, 1.62143, 0.523916, 5.12412e-12, 5.24706, 5.71474, 7.57474, -1.62143, -5.95862, 2.22045e-16, 0, -2.23179, 1.78815, 1.62143, -0.603126}, {1.2812e-12, 1.31177, -0.934819, -4.33994, -8.15796e-16, -1.34064, -1.28111e-12, -1.31177, -0.870737, -1.44665, -1.24937e-16, 1.35868, -1.78815, -6.86849, 4.3424, -1.78815, 6.86849, 4.00686, 0, -1.43955e-16, 2.23179, 1.78815, -1.62143, -0.523916, 5.78659, 3.18053e-16, -7.66649, 1.78815, 1.62143, -0.603126}, {1.28053e-12, 1.31177, -0.934819, 1.44665, 0, 0.44688, 3.84227e-12, 3.9353, 2.61221, -1.44665, 0, 1.35868, -1.78815, -1.62143, 0.603126, -7.57474, 1.62143, -1.2636, -5.12124e-12, -5.24706, 5.97107, 1.78815, -1.62143, -0.523916, -4.44089e-16, 0, -2.23179, 7.57474, 1.62143, -6.03783}, {1.28098e-12, 1.31177, -0.934819, 1.44665, 0, 0.44688, -1.281e-12, -1.31177, -0.870737, 4.33994, 0, -4.07603, -1.78815, -1.62143, 0.603126, -1.78815, 1.62143, 0.523916, 0, -3.2565e-16, 2.23179, 1.78815, -6.86849, 3.21536, -5.78659, 0, -4.01931, 1.78815, 6.86849, 2.87982}, {5.36291, -5.36619, -5.37088, 3.64451, -0.373213, -0.376399, -1.85687, 0.190152, -1.41389, 0, -1.60567, 0, -16.8733, -0.256821, -0.242074, -2.20964, 0.226277, 2.21292, 11.9323, -3.20664, 5.19032, 2.20964, 6.1964, -2.21292, -4.50486, 2.44603, 0.465254, 2.29522, 1.74967, 1.74767}, {-1.78764, 1.78873, 1.79029, -10.9335, 1.11964, 1.1292, -1.85687, 0.190152, -1.41389, 0, -1.60567, 0, 4.85533, -8.90459, -8.90884, 5.21784, -0.53433, 7.8685, 4.50486, -2.44603, -0.465254, 2.20964, -0.226277, -2.21292, -4.50486, 8.8687, 0.465254, 2.29522, 1.74967, 1.74767}, {-1.78764, 1.78873, 1.79029, 3.64451, -0.373213, -0.376399, 5.57061, -0.570455, 4.24168, 0, -1.60567, 0, -2.29522, -1.74967, -1.74767, -16.7877, 1.71913, 3.71852, 11.6554, -9.60095, -7.62642, 2.20964, -0.226277, -2.21292, -4.50486, 2.44603, 0.465254, 2.29522, 8.17235, 1.74767}, {-1.78764, 1.78873, 1.79029, 3.64451, -0.373213, -0.376399, -1.85687, 0.190152, -1.41389, 0, 4.817, 0, -2.29522, -1.74967, -1.74767, -2.20964, 0.226277, 2.21292, 4.50486, -2.44603, -0.465254, 9.36019, -7.3812, -9.37409, -19.0829, 3.93889, 1.97085, 9.72271, 0.989068, 7.40324}, {-4.90664, -4.91093, -4.90664, 0.802238, -0.802728, -0.80343, -1.63555, -0.0313083, -1.63555, -0.802238, -0.80294, 0.80343, -6.22222, 2.17973, 2.18516, 1.03003, 1.03093, 3.01474, 6.54219, -1.85948, 6.54219, 2.17893, 2.18083, -6.22846, -3.78586e-14, 1.98471, 3.79696e-14, 3.01327, 1.03119, 1.02855}, {1.63555, 1.63698, 1.63555, -2.40672, 2.40819, 2.41029, -1.63555, -0.0313083, -1.63555, -0.802238, -0.80294, 0.80343, -9.55546, -7.57909, -7.57074, 7.57221, 1.15616, 9.55693, 3.71925e-14, -1.98471, -3.81917e-14, -1.03003, -1.03093, -3.01474, 3.20895, 5.19647, -3.21372, 3.01327, 1.03119, 1.02855}, {1.63555, 1.63698, 1.63555, 0.802238, -0.802728, -0.80343, 4.90664, 0.0939249, 4.90664, -0.802238, -0.80294, 0.80343, -3.01327, -1.03119, -1.02855, -2.17893, 4.24184, 6.22846, -6.54219, -8.53262, -6.54219, -1.03003, -1.03093, -3.01474, -3.78586e-14, 1.98471, 3.80806e-14, 6.22222, 4.24295, -2.18516}, {1.63555, 1.63698, 1.63555, 0.802238, -0.802728, -0.80343, -1.63555, -0.0313083, -1.63555, 2.40672, 2.40882, -2.41029, -3.01327, -1.03119, -1.02855, 1.03003, 1.03093, 3.01474, 3.73035e-14, -1.98471, -3.83027e-14, -7.57221, -7.57883, -9.55693, -3.20895, 5.19563, 3.21372, 9.55546, 1.15642, 7.57074}, {0.433524, 4.35281, -4.30748, -1.58383, 1.03002, -2.49725, 0.961132, -0.582294, -1.46836, 0.767201, 1.00321, 2.52978, 8.47164, -3.5998, 11.301, 0.769691, -0.553419, 4.90175, -4.85393, 4.84239, 5.91364, -3.83849, -3.45943, -15.0209, 1.0094, -2.51321, -0.0402101, -2.13634, -0.520284, -1.31199}, {-0.144508, -1.45094, 1.43583, 4.75148, -3.09006, 7.49174, 0.961132, -0.582294, -1.46836, 0.767201, 1.00321, 2.52978, 2.71437, 6.32404, -4.43132, -3.07484, 1.77576, 10.7752, -1.0094, 2.51321, 0.0402101, -0.769691, 0.553419, -4.90175, -2.0594, -6.52607, -10.1593, -2.13634, -0.520284, -1.31199}, {-0.144508, -1.45094, 1.43583, -1.58383, 1.03002, -2.49725, -2.8834, 1.74688, 4.40507, 0.767201, 1.00321, 2.52978, 2.13634, 0.520284, 1.31199, 7.10499, -4.6735, 14.8907, -0.431372, 8.31697, -5.70309, -0.769691, 0.553419, -4.90175, 1.0094, -2.51321, -0.0402101, -5.20514, -4.53314, -11.4311}, {-0.144508, -1.45094, 1.43583, -1.58383, 1.03002, -2.49725, 0.961132, -0.582294, -1.46836, -2.3016, -3.00964, -7.58933, 2.13634, 0.520284, 1.31199, 0.769691, -0.553419, 4.90175, -1.0094, 2.51321, 0.0402101, -0.191659, 6.35717, -10.6451, 7.3447, -6.63329, 9.94877, -5.98087, 1.80889, 4.56144}, {-5.22554, 3.98943, -3.78662, 0, 0, -1.80556, -0.198723, 1.94057, 0.386742, -1.54312, -0.61076, 0.156608, -2.15304, 1.64373, 7.89384, 0.245635, -2.39867, 1.75375, -1.11252, -8.51722, -3.58518, 5.92686, 4.84171, -2.38018, 1.90741, 0.754941, 2.03821, 2.15304, -1.64373, -0.671617}, {1.74185, -1.32981, 1.26221, 0, 0, 5.41667, -0.198723, 1.94057, 0.386742, -1.54312, -0.61076, 0.156608, -9.12042, 6.96297, -4.37721, 1.04052, -10.1609, 0.206785, -1.90741, -0.754941, -2.03821, -0.245635, 2.39867, -1.75375, 8.0799, 3.19798, 1.41178, 2.15304, -1.64373, -0.671617}, {1.74185, -1.32981, 1.26221, 0, 0, -1.80556, 0.596168, -5.82171, -1.16022, -1.54312, -0.61076, 0.156608, -2.15304, 1.64373, 0.671617, 0.245635, -2.39867, 8.97597, -8.87479, 4.5643, -7.08704, -0.245635, 2.39867, -1.75375, 1.90741, 0.754941, 2.03821, 8.32553, 0.799305, -1.29805}, {1.74185, -1.32981, 1.26221, 0, 0, -1.80556, -0.198723, 1.94057, 0.386742, 4.62937, 1.83228, -0.469823, -2.15304, 1.64373, 0.671617, 0.245635, -2.39867, 1.75375, -1.90741, -0.754941, -2.03821, -7.21302, 7.71791, -6.80258, 1.90741, 0.754941, 9.26043, 2.94793, -9.40601, -2.21858}, {2.47366, -6.0686, -0.0191747, -0.141226, -1.44665, 1.44665, 1.40644, 1.00594e-16, 2.53667e-16, -0.440661, -0.57622, -1.45304, 1.75867, 5.07434, -7.58264, -1.56389, 1.78815, -1.78815, -6.34501, -2.5004, -0.0079004, 3.32653, 0.516725, 7.60031, 0.719252, 2.5004, 0.0079004, -1.19377, 0.712247, 1.79605}, {-0.824552, 2.02287, 0.00639156, 0.423679, 4.33994, -4.33994, 1.40644, 3.01783e-16, 7.61e-16, -0.440661, -0.57622, -1.45304, 4.49197, -8.80371, -1.82162, -7.18964, 1.78815, -1.78815, -0.719252, -2.5004, -0.0079004, 1.56389, -1.78815, 1.78815, 2.48189, 4.80528, 5.82005, -1.19377, 0.712247, 1.79605}, {-0.824552, 2.02287, 0.00639156, -0.141226, -1.44665, 1.44665, -4.21932, 0, 0, -0.440661, -0.57622, -1.45304, 1.19377, -0.712247, -1.79605, -0.998983, 7.57474, -7.57474, 2.57896, -10.5919, -0.0334666, 1.56389, -1.78815, 1.78815, 0.719252, 2.5004, 0.0079004, 0.568875, 3.01713, 7.60821}, {-0.824552, 2.02287, 0.00639156, -0.141226, -1.44665, 1.44665, 1.40644, -3.01783e-16, -7.61e-16, 1.32198, 1.72866, 4.35912, 1.19377, -0.712247, -1.79605, -1.56389, 1.78815, -1.78815, -0.719252, -2.5004, -0.0079004, 4.8621, -9.87962, 1.76259, 1.28416, 8.28699, -5.77869, -6.81952, 0.712247, 1.79605}, {-5.82171, -0.596168, -7.61729, 0, 0, -2.34313, -0.61076, 1.54312, 1.54399, -1.32981, -1.74185, -1.73996, -2.39867, -0.245635, 9.13027, 0.754941, -1.90741, 0.987787, 0.799305, -8.32553, -11.2229, 4.5643, 8.87479, 5.97206, 1.64373, 2.15304, 5.04697, 2.39867, 0.245635, 0.242235}, {1.94057, 0.198723, 2.5391, 0, 0, 7.02938, -0.61076, 1.54312, 1.54399, -1.32981, -1.74185, -1.73996, -10.1609, -1.04052, -10.3986, 3.19798, -8.0799, -5.18817, -1.64373, -2.15304, -5.04697, -0.754941, 1.90741, -0.987787, 6.96297, 9.12042, 12.0068, 2.39867, 0.245635, 0.242235}, {1.94057, 0.198723, 2.5391, 0, 0, -2.34313, 1.83228, -4.62937, -4.63197, -1.32981, -1.74185, -1.73996, -2.39867, -0.245635, -0.242235, 0.754941, -1.90741, 10.3603, -9.40601, -2.94793, -15.2034, -0.754941, 1.90741, -0.987787, 1.64373, 2.15304, 5.04697, 7.71791, 7.21302, 7.20208}, {1.94057, 0.198723, 2.5391, 0, 0, -2.34313, -0.61076, 1.54312, 1.54399, 3.98943, 5.22554, 5.21989, -2.39867, -0.245635, -0.242235, 0.754941, -1.90741, 0.987787, -1.64373, -2.15304, -5.04697, -8.51722, 1.11252, -11.1442, 1.64373, 2.15304, 14.4195, 4.84171, -5.92686, -5.93372}, {7.02938, 8.88178e-16, -8.88178e-16, 1.54312, -1.54312, -0.61076, 2.54185, -0.198723, 1.94057, -1.74185, 1.74185, -1.32981, -5.18364, 8.0799, 3.19798, -5.0493, 2.15304, -1.64373, -10.413, 1.04052, -10.1609, 12.0167, -9.12042, 6.96297, 0.245635, -0.245635, 2.39867, -0.988857, -1.90741, -0.754941}, {-2.34313, 0, -4.44089e-16, -4.62937, 4.62937, 1.83228, 2.54185, -0.198723, 1.94057, -1.74185, 1.74185, -1.32981, 10.3614, 1.90741, 0.754941, -15.2167, 2.94793, -9.40601, -0.245635, 0.245635, -2.39867, 5.0493, -2.15304, 1.64373, 7.21302, -7.21302, 7.71791, -0.988857, -1.90741, -0.754941}, {-2.34313, 2.22045e-16, 0, 1.54312, -1.54312, -0.61076, -7.62554, 0.596168, -5.82171, -1.74185, 1.74185, -1.32981, 0.988857, 1.90741, 0.754941, -11.2218, 8.32553, 0.799305, 9.12687, 0.245635, -2.39867, 5.0493, -2.15304, 1.64373, 0.245635, -0.245635, 2.39867, 5.97853, -8.87479, 4.5643}, {-2.34313, 0, -2.22045e-16, 1.54312, -1.54312, -0.61076, 2.54185, -0.198723, 1.94057, 5.22554, -5.22554, 3.98943, 0.988857, 1.90741, 0.754941, -5.0493, 2.15304, -1.64373, -0.245635, 0.245635, -2.39867, 14.4218, -2.15304, 1.64373, -5.92686, 5.92686, 4.84171, -11.1562, -1.11252, -8.51722}, {9.45441, 8.88178e-16, 0, -1.41486, -1.85814, 1.41539, 2.77696, 3.64699, 0.373467, 1.78937, -1.78885, -1.78885, 11.3037, 9.72932, -7.41106, -1.68365, -2.21115, -2.21115, -10.6449, -19.0959, -1.9555, -5.47381, 9.36656, 9.36656, -0.46292, 4.50793, 0.461631, -5.64429, -2.29678, 1.74951}, {-3.15147, 8.88178e-16, 4.44089e-16, 4.24457, 5.57441, -4.24616, 2.77696, 3.64699, 0.373467, 1.78937, -1.78885, -1.78885, 18.2502, 2.29678, -1.74951, -12.7915, -16.7991, -3.70501, 0.46292, -4.50793, -0.461631, 1.68365, 2.21115, 2.21115, -7.62038, 11.6633, 7.61705, -5.64429, -2.29678, 1.74951}, {-3.15147, 4.44089e-16, 2.22045e-16, -1.41486, -1.85814, 1.41539, -8.33088, -10.941, -1.1204, 1.78937, -1.78885, -1.78885, 5.64429, 2.29678, -1.74951, 3.97577, 5.2214, -7.87269, 13.0688, -4.50793, -0.461631, 1.68365, 2.21115, 2.21115, -0.46292, 4.50793, 0.461631, -12.8018, 4.85864, 8.90493}, {-3.15147, -2.22045e-16, 0, -1.41486, -1.85814, 1.41539, 2.77696, 3.64699, 0.373467, -5.3681, 5.36656, 5.36656, 5.64429, 2.29678, -1.74951, -1.68365, -2.21115, -2.21115, 0.46292, -4.50793, -0.461631, 14.2895, 2.21115, 2.21115, 5.1965, 11.9405, -5.19992, -16.7521, -16.8847, 0.255645}, {-1.04981, -4.33994, -1.71772, -1.16436, 0, 0, 0.183612, -1.44665, 1.44665, 0.630806, -1.58777e-12, -2.01922, 5.6641, -1.78815, -0.707741, 1.21227, 1.78815, -1.78815, -1.39395, 5.78659, -8.28248, -3.73549, -1.78815, 9.86504, 0.659504, 1.96259e-12, 2.4959, -1.00668, 1.78815, 0.707741}, {0.349938, 1.44665, 0.572575, 3.49307, 0, 0, 0.183612, -1.44665, 1.44665, 0.630806, -1.5874e-12, -2.01922, -0.393077, -7.57474, -2.99804, 0.47782, 7.57474, -7.57474, -0.659504, -1.9625e-12, -2.4959, -1.21227, -1.78815, 1.78815, -1.86372, 8.31176e-12, 10.5728, -1.00668, 1.78815, 0.707741}, {0.349938, 1.44665, 0.572575, -1.16436, 0, 0, -0.550835, 4.33994, -4.33994, 0.630806, -1.58632e-12, -2.01922, 1.00668, -1.78815, -0.707741, 5.86969, 1.78815, -1.78815, -2.05926, -5.78659, -4.7862, -1.21227, -1.78815, 1.78815, 0.659504, 1.9608e-12, 2.4959, -3.5299, 1.78815, 8.78463}, {0.349938, 1.44665, 0.572575, -1.16436, 0, 0, 0.183612, -1.44665, 1.44665, -1.89242, 4.76004e-12, 6.05767, 1.00668, -1.78815, -0.707741, 1.21227, 1.78815, -1.78815, -0.659504, -1.9616e-12, -2.4959, -2.61202, -7.57474, -0.502145, 5.31693, 1.96124e-12, 2.4959, -1.74112, 7.57474, -5.07885}, {-5.36656, 5.36656, -5.36656, 1.85814, -0.190281, -1.41539, 0, 1.60567, 0, -3.64699, 0.373467, -0.373467, -11.9405, 3.20747, 5.19992, -2.29678, -1.74951, 1.74951, -2.21115, -6.19624, -2.21115, 16.8847, 0.255645, -0.255645, 2.21115, -0.226431, 2.21115, 4.50793, -2.44635, 0.461631}, {1.78885, -1.78885, 1.78885, -5.57441, 0.570843, 4.24616, 1.45374e-15, 1.60567, 1.48869e-16, -3.64699, 0.373467, -0.373467, -11.6633, 9.60176, -7.61705, -2.29678, -8.17219, 1.74951, -2.21115, 0.226431, -2.21115, 2.29678, 1.74951, -1.74951, 16.7991, -1.7203, 3.70501, 4.50793, -2.44635, 0.461631}, {1.78885, -1.78885, 1.78885, 1.85814, -0.190281, -1.41539, 0, -4.817, 0, -3.64699, 0.373467, -0.373467, -4.50793, 2.44635, -0.461631, -9.72932, -0.988391, 7.41106, -9.36656, 7.38185, -9.36656, 2.29678, 1.74951, -1.74951, 2.21115, -0.226431, 2.21115, 19.0959, -3.94022, 1.9555}, {1.78885, -1.78885, 1.78885, 1.85814, -0.190281, -1.41539, 0, 1.60567, 0, 10.941, -1.1204, 1.1204, -4.50793, 2.44635, -0.461631, -2.29678, -1.74951, 1.74951, -2.21115, 0.226431, -2.21115, -4.85864, 8.90493, -8.90493, -5.2214, 0.534693, 7.87269, 4.50793, -8.86902, 0.461631}, {-2.3518, -6.05767, 5.91882e-12, 0.531029, -0.572575, 1.44665, -0.258935, -1.44665, -1.44665, -1.05603, 0, 0, -3.7495, 0.502145, -7.57474, -0.336326, 2.4959, -2.43872e-12, 0.386809, 5.07885, 7.57474, 4.56043, -2.4959, 2.43872e-12, 0.648932, 0.707741, -1.78815, 1.62538, 1.78815, 1.78815}, {0.783932, 2.01922, -1.97264e-12, -1.59309, 1.71772, -4.33994, -0.258935, -1.44665, -1.44665, -1.05603, 0, 0, -4.76111, -9.86504, -1.78815, 0.699414, 8.28248, 5.78659, -0.648932, -0.707741, 1.78815, 0.336326, -2.4959, 2.43827e-12, 4.87303, 0.707741, -1.78815, 1.62538, 1.78815, 1.78815}, {0.783932, 2.01922, -1.9722e-12, 0.531029, -0.572575, 1.44665, 0.776805, 4.33994, 4.33994, -1.05603, 0, 0, -1.62538, -1.78815, -1.78815, -2.46044, 4.7862, -5.78659, -3.78466, -8.78463, 1.78815, 0.336326, -2.4959, 2.43783e-12, 0.648932, 0.707741, -1.78815, 5.84948, 1.78815, 1.78815}, {0.783932, 2.01922, -1.97309e-12, 0.531029, -0.572575, 1.44665, -0.258935, -1.44665, -1.44665, 3.16808, 0, 0, -1.62538, -1.78815, -1.78815, -0.336326, 2.4959, -2.43894e-12, -0.648932, -0.707741, 1.78815, -2.7994, -10.5728, 1.03313e-11, -1.47518, 2.99804, -7.57474, 2.66112, 7.57474, 7.57474}, {-5.36656, -5.36656, -5.36656, 2.778, -3.64699, -0.373467, -1.41539, 1.85814, -1.41539, -3.15147, 0, 0, -16.7569, 16.8847, -0.255645, -1.68428, 2.21115, 2.21115, 5.19992, -11.9405, 5.19992, 14.2902, -2.21115, -2.21115, 0.461631, 4.50793, 0.461631, 5.64494, -2.29678, 1.74951}, {1.78885, 1.78885, 1.78885, -8.334, 10.941, 1.1204, -1.41539, 1.85814, -1.41539, -3.15147, 0, 0, -12.8004, -4.85864, -8.90493, 3.97726, -5.2214, 7.87269, -0.461631, -4.50793, -0.461631, 1.68428, -2.21115, -2.21115, 13.0675, 4.50793, 0.461631, 5.64494, -2.29678, 1.74951}, {1.78885, 1.78885, 1.78885, 2.778, -3.64699, -0.373467, 4.24616, -5.57441, 4.24616, -3.15147, 0, 0, -5.64494, 2.29678, -1.74951, -12.7963, 16.7991, 3.70501, -7.61705, -11.6633, -7.61705, 1.68428, -2.21115, -2.21115, 0.461631, 4.50793, 0.461631, 18.2508, -2.29678, 1.74951}, {1.78885, 1.78885, 1.78885, 2.778, -3.64699, -0.373467, -1.41539, 1.85814, -1.41539, 9.45441, 0, 0, -5.64494, 2.29678, -1.74951, -1.68428, 2.21115, 2.21115, -0.461631, -4.50793, -0.461631, -5.47113, -9.36656, -9.36656, -10.6504, 19.0959, 1.9555, 11.3065, -9.72932, 7.41106}, {0.408534, -3.98943, 5.22554, 1.54312, 0.61076, 1.54312, 0.198723, -1.94057, 0.198723, -1.60567, 0, 0, -7.91157, -4.84171, -5.92686, -2.15304, 1.64373, -2.15304, -0.872199, 8.51722, 1.11252, 8.57571, -1.64373, 2.15304, 0.0773091, -0.754941, -1.90741, 1.73908, 2.39867, -0.245635}, {-0.136178, 1.32981, -1.74185, -4.62937, -1.83228, -4.62937, 0.198723, -1.94057, 0.198723, -1.60567, 0, 0, -1.19437, -7.71791, 7.21302, -2.94793, 9.40601, -2.94793, -0.0773091, 0.754941, 1.90741, 2.15304, -1.64373, 2.15304, 6.49998, -0.754941, -1.90741, 1.73908, 2.39867, -0.245635}, {-0.136178, 1.32981, -1.74185, 1.54312, 0.61076, 1.54312, -0.596168, 5.82171, -0.596168, -1.60567, 0, 0, -1.73908, -2.39867, 0.245635, -8.32553, -0.799305, -8.32553, 0.467403, -4.5643, 8.87479, 2.15304, -1.64373, 2.15304, 0.0773091, -0.754941, -1.90741, 8.16175, 2.39867, -0.245635}, {-0.136178, 1.32981, -1.74185, 1.54312, 0.61076, 1.54312, 0.198723, -1.94057, 0.198723, 4.817, 0, 0, -1.73908, -2.39867, 0.245635, -2.15304, 1.64373, -2.15304, -0.0773091, 0.754941, 1.90741, 2.69775, -6.96297, 9.12042, -6.09519, -3.19798, -8.0799, 0.94419, 10.1609, -1.04052}, {-1.29949, 3.9353, 2.21079, 1.70046, 1.31177, -0.409533, -0.573592, 0, 1.62837, -1.56004, 0, -0.481907, -9.43917, -5.24706, 3.05524, -1.39289, -1.62143, -1.50656, 2.46795, 1.62143, -7.61536, 7.63304, 1.62143, 3.43419, -0.173579, -1.62143, 1.10188, 2.63731, 0, -1.4171}, {0.433164, -1.31177, -0.736929, -5.10139, -3.9353, 1.2286, -0.573592, 0, 1.62837, -1.56004, 0, -0.481907, -4.36997, 5.24706, 4.36482, 0.901477, -1.62143, -8.02004, 0.173579, 1.62143, -1.10188, 1.39289, 1.62143, 1.50656, 6.06657, -1.62143, 3.02951, 2.63731, 0, -1.4171}, {0.433164, -1.31177, -0.736929, 1.70046, 1.31177, -0.409533, 1.72078, 0, -4.88511, -1.56004, 0, -0.481907, -2.63731, 3.2565e-16, 1.4171, -8.19475, -6.86849, 0.131566, -1.55908, 6.86849, 1.84584, 1.39289, 1.62143, 1.50656, -0.173579, -1.62143, 1.10188, 8.87746, 0, 0.510523}, {0.433164, -1.31177, -0.736929, 1.70046, 1.31177, -0.409533, -0.573592, 0, 1.62837, 4.68011, 0, 1.44572, -2.63731, 3.2565e-16, 1.4171, -1.39289, -1.62143, -1.50656, 0.173579, 1.62143, -1.10188, -0.339765, 6.86849, 4.45428, -6.97544, -6.86849, 2.74001, 4.93168, 0, -7.93058}, {10.941, 1.1204, -5.07489, 1.78885, 1.78885, -0.204309, 0, 0, -2.39759, 1.85814, -1.41539, 0.910268, -4.85864, -8.90493, -1.02119, -2.21115, -2.21115, 3.21612, 4.50793, 0.461631, 10.463, -5.2214, 7.87269, -6.8572, -4.50793, -0.461631, -0.872613, -2.29678, 1.74951, 1.83843}, {-3.64699, -0.373467, 1.69163, -5.36656, -5.36656, 0.612928, 0, 0, -2.39759, 1.85814, -1.41539, 0.910268, 16.8847, -0.255645, -8.60495, -2.21115, -2.21115, 12.8065, 4.50793, 0.461631, 0.872613, 2.21115, 2.21115, -3.21612, -11.9405, 5.19992, -4.51368, -2.29678, 1.74951, 1.83843}, {-3.64699, -0.373467, 1.69163, 1.78885, 1.78885, -0.204309, 0, 0, 7.19277, 1.85814, -1.41539, 0.910268, 2.29678, -1.74951, -1.83843, -9.36656, -9.36656, 4.03336, 19.0959, 1.9555, -5.89391, 2.21115, 2.21115, -3.21612, -4.50793, -0.461631, -0.872613, -9.72932, 7.41106, -1.80264}, {-3.64699, -0.373467, 1.69163, 1.78885, 1.78885, -0.204309, 0, 0, -2.39759, -5.57441, 4.24616, -2.7308, 2.29678, -1.74951, -1.83843, -2.21115, -2.21115, 3.21612, 4.50793, 0.461631, 0.872613, 16.7991, 3.70501, -9.98265, -11.6633, -7.61705, -0.0553752, -2.29678, 1.74951, 11.4288}, {-5.36656, 5.36656, -5.36656, 3.86512e-15, 3.15147, 1.39953e-15, -3.15147, 0, 0, 1.36261, -1.36261, -1.78885, -2.21115, -14.2902, -2.21115, 3.89543, -3.89543, -1.72992e-15, 14.2902, 2.21115, -2.21115, -9.34589, 9.34589, 7.15542, -1.68428, -2.21115, 2.21115, 2.21115, 1.68428, 2.21115}, {1.78885, -1.78885, 1.78885, -1.0595e-14, -9.45441, 4.1986e-15, -3.15147, 0, 0, 1.36261, -1.36261, -1.78885, -9.36656, 5.47113, -9.36656, 16.5013, -3.89543, 1.72992e-15, 1.68428, 2.21115, -2.21115, -3.89543, 3.89543, -2.17401e-15, -7.13474, 3.23931, 9.36656, 2.21115, 1.68428, 2.21115}, {1.78885, -1.78885, 1.78885, 0, 3.15147, 0, 9.45441, 0, 0, 1.36261, -1.36261, -1.78885, -2.21115, -1.68428, -2.21115, 3.89543, -16.5013, 0, -5.47113, 9.36656, -9.36656, -3.89543, 3.89543, -4.44089e-16, -1.68428, -2.21115, 2.21115, -3.23931, 7.13474, 9.36656}, {1.78885, -1.78885, 1.78885, -1.06606e-15, 3.15147, 1.39953e-15, -3.15147, 0, 0, -4.08784, 4.08784, 5.36656, -2.21115, -1.68428, -2.21115, 3.89543, -3.89543, -1.72992e-15, 1.68428, 2.21115, -2.21115, -11.0508, 11.0508, -7.15542, -1.68428, -14.817, 2.21115, 14.817, 1.68428, 2.21115}, {-3.13871, 2.39624, 3.14224, -1.3586, 1.03722, -0.984492, 1.05172, 0.985921, 1.29286, -0.739357, -1.22439, 0.739047, 5.8205, -4.44365, 6.44954, 0.379324, -2.50074, -0.381162, -6.8001, -4.17504, -5.47482, 2.5781, 7.39832, -2.57503, 2.59322, 0.231359, 0.303387, -0.386102, 0.294769, -2.51157}, {1.04624, -0.798747, -1.04741, 4.0758, -3.11166, 2.95348, 1.05172, 0.985921, 1.29286, -0.739357, -1.22439, 0.739047, -3.79884, 2.90022, 6.70123, -3.82756, -6.44442, -5.5526, -2.59322, -0.231359, -0.303387, -0.379324, 2.50074, 0.381162, 5.55064, 5.12894, -2.6528, -0.386102, 0.294769, -2.51157}, {1.04624, -0.798747, -1.04741, -1.3586, 1.03722, -0.984492, -3.15516, -2.95776, -3.87858, -0.739357, -1.22439, 0.739047, 0.386102, -0.294769, 2.51157, 5.81372, -6.64962, 3.55681, -6.77816, 2.96363, 3.88627, -0.379324, 2.50074, 0.381162, 2.59322, 0.231359, 0.303387, 2.57132, 5.19235, -5.46776}, {1.04624, -0.798747, -1.04741, -1.3586, 1.03722, -0.984492, 1.05172, 0.985921, 1.29286, 2.21807, 3.67318, -2.21714, 0.386102, -0.294769, 2.51157, 0.379324, -2.50074, -0.381162, -2.59322, -0.231359, -0.303387, -4.56427, 5.69573, 4.57082, 8.02762, -3.91752, 4.24135, -4.59298, -3.64891, -7.68301}, {3.49307, 0, -5.19009e-16, 0.460877, 0.572575, 1.44665, -0.183612, 1.44665, -1.44665, 0.88709, -2.01922, 1.97395e-12, -0.973962, -2.99804, -7.57474, -0.342719, -2.4959, 2.44027e-12, 2.40063, -7.57474, 7.57474, -3.20564, 10.5728, -1.03361e-11, -1.66618, 1.78815, -1.78815, -0.869547, 0.707741, 1.78815}, {-1.16436, 0, 2.63061e-17, -1.38263, -1.71772, -4.33994, -0.183612, 1.44665, -1.44665, 0.88709, -2.01922, 1.97018e-12, 5.52697, -0.707741, -1.78815, 0.391727, -8.28248, 5.78659, 1.66618, -1.78815, 1.78815, 0.342719, 2.4959, -2.43516e-12, -5.21454, 9.86504, -1.78815, -0.869547, 0.707741, 1.78815}, {-1.16436, 0, 1.0874e-16, 0.460877, 0.572575, 1.44665, 0.550835, -4.33994, 4.33994, 0.88709, -2.01922, 1.97254e-12, 0.869547, -0.707741, -1.78815, -2.18623, -4.7862, -5.78659, 6.3236, -1.78815, 1.78815, 0.342719, 2.4959, -2.43827e-12, -1.66618, 1.78815, -1.78815, -4.41791, 8.78463, 1.78815}, {-1.16436, 0, 2.47018e-16, 0.460877, 0.572575, 1.44665, -0.183612, 1.44665, -1.44665, -2.66127, 6.05767, -5.92185e-12, 0.869547, -0.707741, -1.78815, -0.342719, -2.4959, 2.44027e-12, 1.66618, -1.78815, 1.78815, 5.00014, 2.4959, -2.44081e-12, -3.50969, -0.502145, -7.57474, -0.135101, -5.07885, 7.57474}, {-4.817, 1.77636e-15, 1.9984e-15, -1.78885, 1.78885, -1.78885, -0.190167, 1.85702, 1.41407, 0.373353, -3.64588, 0.374783, 7.38185, -9.36656, 9.36656, 2.4462, -4.50655, 0.463257, -0.988987, -9.72349, -7.40418, -3.93962, 19.0901, -1.96239, 1.74966, 2.29541, 1.74789, -0.226431, 2.21115, -2.21115}, {1.60567, -4.44089e-16, -1.55431e-15, 5.36656, -5.36656, 5.36656, -0.190167, 1.85702, 1.41407, 0.373353, -3.64588, 0.374783, -6.19624, -2.21115, 2.21115, 3.20687, -11.9346, -5.19303, -1.74966, -2.29541, -1.74789, -2.4462, 4.50655, -0.463257, 0.256242, 16.8789, 0.248757, -0.226431, 2.21115, -2.21115}, {1.60567, 8.88178e-16, 0, -1.78885, 1.78885, -1.78885, 0.570501, -5.57107, -4.24221, 0.373353, -3.64588, 0.374783, 0.226431, -2.21115, 2.21115, 9.60162, -11.662, 7.61867, -8.17233, -2.29541, -1.74789, -2.4462, 4.50655, -0.463257, 1.74966, 2.29541, 1.74789, -1.71984, 16.7947, -3.71028}, {1.60567, -3.10862e-15, 1.11022e-16, -1.78885, 1.78885, -1.78885, -0.190167, 1.85702, 1.41407, -1.12006, 10.9376, -1.12435, 0.226431, -2.21115, 2.21115, 2.4462, -4.50655, 0.463257, -1.74966, -2.29541, -1.74789, -8.86888, 4.50655, -0.463257, 8.90507, -4.86001, 8.90331, 0.534237, -5.21694, -7.86743}, {-9.76996e-15, 1.33227e-14, -7.02938, 1.78885, -6.92972e-12, 0.00253498, -1.78885, 2.33948, -2.34566, 0, -2.33948, 0, -9.36656, 3.62896e-11, -2.90954, 3.9968e-15, -2.89175, 2.89626, 9.36656, -12.2497, 9.38578, -3.9968e-15, 12.2497, -2.89626, -2.21115, 2.89175, -0.00313341, 2.21115, -8.57092e-12, 2.8994}, {-1.9984e-15, 8.88178e-16, 2.34313, -5.36656, 2.07891e-11, -0.00760494, -1.78885, 2.33948, -2.34566, 0, -2.33948, 0, -2.21115, 8.55849e-12, -12.2719, 7.15542, -12.2497, 12.2789, 2.21115, -2.89175, 0.00313341, 2.66454e-15, 2.89175, -2.89626, -2.21115, 12.2497, -0.00313341, 2.21115, -8.56426e-12, 2.8994}, {4.21885e-15, -1.77636e-15, 2.34313, 1.78885, -6.9266e-12, 0.00253498, 5.36656, -7.01844, 7.03698, 0, -2.33948, 0, -2.21115, 8.56382e-12, -2.8994, -7.15542, -2.89175, 2.88612, 2.21115, -2.89175, -9.36937, -5.32907e-15, 2.89175, -2.89626, -2.21115, 2.89175, -0.00313341, 2.21115, 9.35791, 2.8994}, {0, 0, 2.34313, 1.78885, -6.92763e-12, 0.00253498, -1.78885, 2.33948, -2.34566, 0, 7.01844, 0, -2.21115, 8.56293e-12, -2.8994, 0, -2.89175, 2.89626, 2.21115, -2.89175, 0.00313341, 0, 2.89175, -12.2688, -9.36656, 2.89175, -0.0132733, 9.36656, -9.35791, 12.282}, {-2.1843e-11, 2.07647e-11, 5.36656, -2.34313, 0, 0, 0, 2.34313, 0, 2.34313, -2.34313, 1.78885, 12.2688, 8.55538e-12, 2.21115, 2.89626, -2.89626, 0, -8.99991e-12, -12.2688, 2.21115, -12.2688, 12.2688, -7.15542, 8.99991e-12, 2.89626, -2.21115, -2.89626, -8.55538e-12, -2.21115}, {7.27862e-12, -6.92069e-12, -1.78885, 7.02938, 0, 0, -1.36297e-15, 2.34313, -1.04056e-15, 2.34313, -2.34313, 1.78885, 2.89626, 3.62377e-11, 9.36656, 2.89626, -12.2688, 5.44843e-15, -8.99503e-12, -2.89626, 2.21115, -2.89626, 2.89626, -8.4211e-16, -9.3725, 12.2688, -9.36656, -2.89626, -8.55449e-12, -2.21115}, {7.2804e-12, -6.91935e-12, -1.78885, -2.34313, 0, 0, 0, -7.02938, 0, 2.34313, -2.34313, 1.78885, 2.89626, 8.55271e-12, 2.21115, 12.2688, -2.89626, 0, -3.81206e-11, -2.89626, 9.36656, -2.89626, 2.89626, 4.44089e-16, 8.99902e-12, 2.89626, -2.21115, -12.2688, 9.3725, -9.36656}, {7.27596e-12, -6.91802e-12, -1.78885, -2.34313, 0, 0, 0, 2.34313, 0, -7.02938, 7.02938, -5.36656, 2.89626, 8.55138e-12, 2.21115, 2.89626, -2.89626, 0, -8.99325e-12, -2.89626, 2.21115, -2.89626, 2.89626, 7.15542, 9.3725, 2.89626, -2.21115, -2.89626, -9.3725, -2.21115}, {6.33782, 3.11659, -8.32035, 1.25748, 1.89399, 2.48645, -0.601124, 0.601124, -3.34812, 1.45625, -1.45625, -1.91178, -3.97294, -8.63294, -16.4474, -0.811303, -3.08413, 1.06509, 5.75885, -1.86342, 14.1028, -5.01369, 8.90912, 6.58202, -3.35435, -0.541075, -0.71033, -1.05699, 1.05699, 6.50159}, {-2.11261, -1.03886, 2.77345, -3.77244, -5.68196, -7.45934, -0.601124, 0.601124, -3.34812, 1.45625, -1.45625, -1.91178, 9.50741, 3.09846, -17.5954, 1.59319, -5.48862, 14.4576, 3.35435, 0.541075, 0.71033, 0.811303, 3.08413, -1.06509, -9.17934, 5.28392, 6.93678, -1.05699, 1.05699, 6.50159}, {-2.11261, -1.03886, 2.77345, 1.25748, 1.89399, 2.48645, 1.80337, -1.80337, 10.0444, 1.45625, -1.45625, -1.91178, 1.05699, -1.05699, -6.50159, -5.84123, -10.6601, -8.8807, 11.8048, 4.69653, -10.3835, 0.811303, 3.08413, -1.06509, -3.35435, -0.541075, -0.71033, -6.88198, 6.88198, 14.1487}, {-2.11261, -1.03886, 2.77345, 1.25748, 1.89399, 2.48645, -0.601124, 0.601124, -3.34812, -4.36874, 4.36874, 5.73533, 1.05699, -1.05699, -6.50159, -0.811303, -3.08413, 1.06509, 3.35435, 0.541075, 0.71033, 9.26172, 7.23958, -12.1589, -8.38428, -8.11702, -10.6561, 1.34751, -1.34751, 19.8941}, {-4.24616, -5.57441, -4.24476, 0.373467, -3.64699, -2.77708, -1.78885, 1.78885, -1.78885, 0, 0, 3.15102, -3.70501, 16.7991, 12.7921, 1.74951, 2.29678, 5.64381, 7.61705, -11.6633, 7.61763, -1.74951, -2.29678, -18.2479, -0.461631, 4.50793, -0.462209, 2.21115, -2.21115, -1.68373}, {1.41539, 1.85814, 1.41492, -1.1204, 10.941, 8.33125, -1.78885, 1.78885, -1.78885, 1.39933e-15, -1.39933e-15, 3.15102, -7.87269, -5.2214, -3.97595, 8.90493, -4.85864, 12.7992, 0.461631, -4.50793, 0.462209, -1.74951, -2.29678, -5.64381, -0.461631, 4.50793, -13.0663, 2.21115, -2.21115, -1.68373}, {1.41539, 1.85814, 1.41492, 0.373467, -3.64699, -2.77708, 5.36656, -5.36656, 5.36656, 0, 0, 3.15102, -2.21115, 2.21115, 1.68373, 0.255645, 16.8847, 16.7521, -5.19992, -11.9405, -5.19747, -1.74951, -2.29678, -5.64381, -0.461631, 4.50793, -0.462209, 2.21115, -2.21115, -14.2878}, {1.41539, 1.85814, 1.41492, 0.373467, -3.64699, -2.77708, -1.78885, 1.78885, -1.78885, 0, 0, -9.45305, -2.21115, 2.21115, 1.68373, 1.74951, 2.29678, 5.64381, 0.461631, -4.50793, 0.462209, -7.41106, -9.72932, -11.3035, -1.9555, 19.0959, 10.6461, 9.36656, -9.36656, 5.47169}, {2.81917, 4.24616, 5.57441, -1.67083, -0.373467, 3.64699, 0.18745, 1.78885, -1.78885, 2.4231, 0, 0, 9.91012, 3.70501, -16.7991, 1.83355, -1.74951, -2.29678, 0.18006, -7.61705, 11.6633, -11.526, 1.74951, 2.29678, -0.929861, 0.461631, -4.50793, -3.22682, -2.21115, 2.21115}, {-0.939723, -1.41539, -1.85814, 5.01248, 1.1204, -10.941, 0.18745, 1.78885, -1.78885, 2.4231, -1.07607e-15, 1.07607e-15, 6.98571, 7.87269, 5.2214, 1.08375, -8.90493, 4.85864, 0.929861, -0.461631, 4.50793, -1.83355, 1.74951, 2.29678, -10.6223, 0.461631, -4.50793, -3.22682, -2.21115, 2.21115}, {-0.939723, -1.41539, -1.85814, -1.67083, -0.373467, 3.64699, -0.56235, -5.36656, 5.36656, 2.4231, 0, 0, 3.22682, 2.21115, -2.21115, 8.51686, -0.255645, -16.8847, 4.68875, 5.19992, 11.9405, -1.83355, 1.74951, 2.29678, -0.929861, 0.461631, -4.50793, -12.9192, -2.21115, 2.21115}, {-0.939723, -1.41539, -1.85814, -1.67083, -0.373467, 3.64699, 0.18745, 1.78885, -1.78885, -7.2693, 0, 0, 3.22682, 2.21115, -2.21115, 1.83355, -1.74951, -2.29678, 0.929861, -0.461631, 4.50793, 1.92534, 7.41106, 9.72932, 5.75345, 1.9555, -19.0959, -3.97662, -9.36656, 9.36656}, {-3.55271e-15, -7.99361e-15, -9.45441, -3.15147, 0, 0, 1.78937, -1.78885, -1.78885, 1.3621, 1.78885, -1.36261, 16.5013, -3.55271e-15, -3.89543, 1.68365, 2.21115, 2.21115, -9.36924, 9.36656, 5.47113, -7.13206, -9.36656, 3.23931, 2.21178, -2.21115, 1.68428, -3.89543, 3.55271e-15, 3.89543}, {-2.22045e-16, 2.88658e-15, 3.15147, 9.45441, 0, 0, 1.78937, -1.78885, -1.78885, 1.3621, 1.78885, -1.36261, 3.89543, -1.42109e-14, -16.5013, -5.47381, 9.36656, 9.36656, -2.21178, 2.21115, -1.68428, -1.68365, -2.21115, -2.21115, -3.23663, -9.36656, 7.13474, -3.89543, 3.55271e-15, 3.89543}, {2.22045e-16, 0, 3.15147, -3.15147, 0, 0, -5.3681, 5.36656, 5.36656, 1.3621, 1.78885, -1.36261, 3.89543, 0, -3.89543, 14.2895, 2.21115, 2.21115, -2.21178, 2.21115, -14.2902, -1.68365, -2.21115, -2.21115, 2.21178, -2.21115, 1.68428, -9.34384, -7.15542, 9.34589}, {8.88178e-16, 1.55431e-15, 3.15147, -3.15147, 0, 0, 1.78937, -1.78885, -1.78885, -4.08631, -5.36656, 4.08784, 3.89543, -2.22045e-15, -3.89543, 1.68365, 2.21115, 2.21115, -2.21178, 2.21115, -1.68428, -1.68365, -2.21115, -14.817, 14.8177, -2.21115, 1.68428, -11.0529, 7.15542, 11.0508}, {-5.22583, 5.22504, 3.98456, 2.34612, 2.92755e-15, 1.19114e-15, -2.54361, 0.198607, 1.93944, -1.54445, 1.54307, -0.611252, -14.4376, 2.15284, 1.64173, 0.244118, -0.245492, -2.39728, 11.1654, 1.11292, -8.51331, 5.93368, -5.9268, 4.84229, -0.990917, -1.90734, 0.755549, 5.05312, -2.15284, -1.64173}, {1.74194, -1.74168, -1.32819, -7.03835, -2.34918e-15, 4.45681e-15, -2.54361, 0.198607, 1.93944, -1.54445, 1.54307, -0.611252, -12.0209, 9.11956, 6.95448, 10.4186, -1.03992, -10.155, 0.990917, 1.90734, -0.755549, -0.244118, 0.245492, 2.39728, 5.18688, -8.07964, 3.20056, 5.05312, -2.15284, -1.64173}, {1.74194, -1.74168, -1.32819, 2.34612, 0, 0, 7.63084, -0.595821, -5.81832, -1.54445, 1.54307, -0.611252, -5.05312, 2.15284, 1.64173, -9.14035, -0.245492, -2.39728, -5.97686, 8.87406, 4.5572, -0.244118, 0.245492, 2.39728, -0.990917, -1.90734, 0.755549, 11.2309, -8.32513, 0.803277}, {1.74194, -1.74168, -1.32819, 2.34612, -8.98735e-16, 3.56012e-16, -2.54361, 0.198607, 1.93944, 4.63335, -4.62922, 1.83376, -5.05312, 2.15284, 1.64173, 0.244118, -0.245492, -2.39728, 0.990917, 1.90734, -0.755549, -7.21189, 7.21221, 7.71003, -10.3754, -1.90734, 0.755549, 15.2276, -2.94726, -9.39949}, {-9.45441, 1.33227e-14, -1.06581e-14, -1.78937, -1.78885, -1.78885, -1.3621, 1.78885, -1.36261, 0, 0, 3.15147, 5.47381, 9.36656, 9.36656, 3.89543, -5.32907e-15, 3.89543, 3.23663, -9.36656, 7.13474, -3.89543, 5.32907e-15, -16.5013, 2.21178, 2.21115, -1.68428, 1.68365, -2.21115, -2.21115}, {3.15147, 2.7318e-15, 0, 5.3681, 5.36656, 5.36656, -1.3621, 1.78885, -1.36261, 1.06566e-15, -1.39953e-15, 3.15147, -14.2895, 2.21115, 2.21115, 9.34384, -7.15542, 9.34589, -2.21178, -2.21115, 1.68428, -3.89543, -1.33227e-15, -3.89543, 2.21178, 2.21115, -14.2902, 1.68365, -2.21115, -2.21115}, {3.15147, 0, 2.22045e-15, -1.78937, -1.78885, -1.78885, 4.08631, -5.36656, 4.08784, 0, 0, 3.15147, -1.68365, 2.21115, 2.21115, 11.0529, 7.15542, 11.0508, -14.8177, -2.21115, 1.68428, -3.89543, 0, -3.89543, 2.21178, 2.21115, -1.68428, 1.68365, -2.21115, -14.817}, {3.15147, 0, 0, -1.78937, -1.78885, -1.78885, -1.3621, 1.78885, -1.36261, 0, 0, -9.45441, -1.68365, 2.21115, 2.21115, 3.89543, 0, 3.89543, -2.21178, -2.21115, 1.68428, -16.5013, 0, -3.89543, 9.36924, 9.36656, 5.47113, 7.13206, -9.36656, 3.23931}, {-7.03835, 0, -2.66454e-15, -2.34612, 2.34348, -1.78885, -1.03933e-11, 0.00114147, 1.78885, 0, -2.34462, 0, 9.38447, -12.2706, 9.36656, 2.89996, -2.89811, 1.33227e-15, -2.89996, -0.00597681, -9.36656, -2.89996, 12.2766, -1.33227e-15, 2.89996, 0.00141093, 2.21115, 1.28469e-11, 2.8967, -2.21115}, {2.34612, -3.9968e-15, 0, 7.03835, -7.03044, 5.36656, -1.03933e-11, 0.00114147, 1.78885, 0, -2.34462, 0, -9.38447, -2.8967, 2.21115, 2.89996, -2.90268, -7.15542, -2.89996, -0.00141093, -2.21115, -2.89996, 2.89811, 0, 2.89996, 9.37989, 2.21115, 1.28469e-11, 2.8967, -2.21115}, {2.34612, -1.77636e-15, 0, -2.34612, 2.34348, -1.78885, 3.11847e-11, -0.00342441, -5.36656, 0, -2.34462, 0, -1.28494e-11, -2.8967, 2.21115, 12.2844, -12.272, 7.15542, -12.2844, -0.00141093, -2.21115, -2.89996, 2.89811, 0, 2.89996, 0.00141093, 2.21115, 1.28488e-11, 12.2752, -2.21115}, {2.34612, 2.66454e-15, 0, -2.34612, 2.34348, -1.78885, -1.03918e-11, 0.00114147, 1.78885, 0, 7.03386, 0, -1.28455e-11, -2.8967, 2.21115, 2.89996, -2.89811, 0, -2.89996, -0.00141093, -2.21115, -12.2844, 2.89811, 0, 12.2844, -9.37251, 9.36656, 5.4412e-11, 2.89213, -9.36656}, {-4.44089e-16, 0, 5.41667, 2.01922, -1.97048e-12, 0.623753, -1.44665, -1.44665, 0.584061, -0.572575, 1.44665, 0.597742, -10.5728, 1.03177e-11, -1.03422, -0.707741, 1.78815, -1.49294, 7.57474, 7.57474, -0.826394, 2.99804, -7.57474, -0.898027, -1.78815, -1.78815, -1.50985, 2.4959, -2.43583e-12, -1.46079}, {-1.11022e-16, 2.22045e-16, -1.80556, -6.05767, 5.9153e-12, -1.87126, -1.44665, -1.44665, 0.584061, -0.572575, 1.44665, 0.597742, -2.4959, 2.43716e-12, 8.68301, 5.07885, 7.57474, -3.82918, 1.78815, 1.78815, 1.50985, 0.707741, -1.78815, 1.49294, 0.502145, -7.57474, -3.90082, 2.4959, -2.43716e-12, -1.46079}, {1.11022e-16, 0, -1.80556, 2.01922, -1.97103e-12, 0.623753, 4.33994, 4.33994, -1.75218, -0.572575, 1.44665, 0.597742, -2.4959, 2.43627e-12, 1.46079, -8.78463, 1.78815, -3.98795, 1.78815, 1.78815, 8.73207, 0.707741, -1.78815, 1.49294, -1.78815, -1.78815, -1.50985, 4.7862, -5.78659, -3.85176}, {-1.11022e-16, 2.22045e-16, -1.80556, 2.01922, -1.97085e-12, 0.623753, -1.44665, -1.44665, 0.584061, 1.71772, -4.33994, -1.79323, -2.4959, 2.43583e-12, 1.46079, -0.707741, 1.78815, -1.49294, 1.78815, 1.78815, 1.50985, 0.707741, -1.78815, 8.71516, -9.86504, -1.78815, -4.00486, 8.28248, 5.78659, -3.79703}, {8.56414, 1.25642, -1.25642, 2.63957, -0.971716, -0.633952, 1.54777, 0.0578944, 1.54777, -1.33263, 1.33263, -1.33263, -10.2923, 5.60564, 2.80174, -5.17584, 1.12955, -1.12955, -4.57563, 0.214536, -8.62192, 10.5064, -6.46006, 6.46006, -1.61547, -0.446113, 2.43083, -0.265934, -1.71878, -0.265934}, {-2.85471, -0.418807, 0.418807, -7.91871, 2.91515, 1.90186, 1.54777, 0.0578944, 1.54777, -1.33263, 1.33263, -1.33263, 11.6848, 3.39401, -1.4093, -11.3669, 0.897968, -7.32064, 1.61547, 0.446113, -2.43083, 5.17584, -1.12955, 1.12955, 3.71505, -5.77663, 7.76134, -0.265934, -1.71878, -0.265934}, {-2.85471, -0.418807, 0.418807, 2.63957, -0.971716, -0.633952, -4.64332, -0.173683, -4.64332, -1.33263, 1.33263, -1.33263, 0.265934, 1.71878, 0.265934, -15.7341, 5.01641, 1.40626, 13.0343, 2.12134, -4.10606, 5.17584, -1.12955, 1.12955, -1.61547, -0.446113, 2.43083, 5.06458, -7.0493, 5.06458}, {-2.85471, -0.418807, 0.418807, 2.63957, -0.971716, -0.633952, 1.54777, 0.0578944, 1.54777, 3.99789, -3.99789, 3.99789, 0.265934, 1.71878, 0.265934, -5.17584, 1.12955, -1.12955, 1.61547, 0.446113, -2.43083, 16.5947, 0.545684, -0.545684, -12.1737, 3.44075, 4.96664, -6.45703, -1.95036, -6.45703}, {-0.339403, 0.339403, -5.15641, -0.164984, -1.44068, -0.164984, 1.07377, 0.531894, -0.531894, -1.02192, 1.02192, -1.02192, 0.724024, 7.68336, -1.26069, -1.12333, 1.12333, 0.861388, -5.7622, -2.64519, 0.660475, 5.21103, -5.21103, 3.22631, 1.4671, 0.517615, 1.4671, -0.0640894, -1.92063, 1.92063}, {0.113134, -0.113134, 1.7188, 0.494951, 4.32205, 0.494951, 1.07377, 0.531894, -0.531894, -1.02192, 1.02192, -1.02192, -0.388448, 2.37316, -8.79583, -5.41842, -1.00425, 2.98896, -1.4671, -0.517615, -1.4671, 1.12333, -1.12333, -0.861388, 5.5548, -3.57008, 5.5548, -0.0640894, -1.92063, 1.92063}, {0.113134, -0.113134, 1.7188, -0.164984, -1.44068, -0.164984, -3.22132, -1.59568, 1.59568, -1.02192, 1.02192, -1.02192, 0.0640894, 1.92063, -1.92063, -0.463392, 6.88606, 1.52132, -1.91964, -0.0650781, -8.34231, 1.12333, -1.12333, -0.861388, 1.4671, 0.517615, 1.4671, 4.02361, -6.00832, 6.00832}, {0.113134, -0.113134, 1.7188, -0.164984, -1.44068, -0.164984, 1.07377, 0.531894, -0.531894, 3.06577, -3.06577, 3.06577, 0.0640894, 1.92063, -1.92063, -1.12333, 1.12333, 0.861388, -1.4671, -0.517615, -1.4671, 0.67079, -0.67079, -7.7366, 2.12703, 6.28035, 2.12703, -4.35919, -4.0482, 4.0482}, {-1.94182, 3.40923, 1.10711, 0.155006, 1.62575, -1.6184, 0.710689, -0.184627, 1.53026, -1.51297, -0.304717, 0.45717, -1.6117, -7.10787, 8.93018, -1.07006, -1.78133, 0.108939, -4.52129, 2.3714, -7.5564, 7.12193, 3.0002, -1.93762, 1.67853, -1.63289, 1.43535, 0.991672, 0.604862, -2.4566}, {0.647273, -1.13641, -0.369036, -0.465018, -4.87726, 4.85519, 0.710689, -0.184627, 1.53026, -1.51297, -0.304717, 0.45717, -3.58076, 3.94077, 3.93275, -3.91281, -1.04282, -6.01211, -1.67853, 1.63289, -1.43535, 1.07006, 1.78133, -0.108939, 7.73041, -0.414023, -0.393324, 0.991672, 0.604862, -2.4566}, {0.647273, -1.13641, -0.369036, 0.155006, 1.62575, -1.6184, -2.13207, 0.553881, -4.59079, -1.51297, -0.304717, 0.45717, -0.991672, -0.604862, 2.4566, -1.69008, -8.28434, 6.58252, -4.26763, 6.17852, 0.0407896, 1.07006, 1.78133, -0.108939, 1.67853, -1.63289, 1.43535, 7.04355, 1.82373, -4.28528}, {0.647273, -1.13641, -0.369036, 0.155006, 1.62575, -1.6184, 0.710689, -0.184627, 1.53026, 4.53891, 0.91415, -1.37151, -0.991672, -0.604862, 2.4566, -1.07006, -1.78133, 0.108939, -1.67853, 1.63289, -1.43535, -1.51903, 6.32696, 1.36721, 1.05851, -8.1359, 7.90894, -1.85108, 1.34337, -8.57765}, {-5.53886e-11, 0.00342441, 5.36656, 2.34612, 1.36758e-15, 3.12566e-15, 0, -2.34462, 0, -2.34612, 2.34576, 1.78885, -12.2844, 0.00141093, 2.21115, -2.89996, 2.89811, -3.86352e-15, -2.28213e-11, 12.278, 2.21115, 12.2844, -12.2812, -7.15542, 2.28213e-11, -2.89952, -2.21115, 2.89996, -0.00141093, -2.21115}, {1.22999e-11, -0.00114147, -1.78885, -7.03835, -8.19548e-15, -3.12566e-15, 0, -2.34462, 0, -2.34612, 2.34576, 1.78885, -2.89996, 0.00597681, 9.36656, -2.89996, 12.2766, -1.28784e-15, -1.52034e-11, 2.89952, 2.21115, 2.89996, -2.89811, 1.73193e-15, 9.38447, -12.2826, -9.36656, 2.89996, -0.00141093, -2.21115}, {1.22964e-11, -0.00114147, -1.78885, 2.34612, 0, 0, 0, 7.03386, 0, -2.34612, 2.34576, 1.78885, -2.89996, 0.00141093, 2.21115, -12.2844, 2.89811, 0, -6.43876e-11, 2.90409, 9.36656, 2.89996, -2.89811, 4.44089e-16, 1.51994e-11, -2.89952, -2.21115, 12.2844, -9.38446, -9.36656}, {1.22991e-11, -0.00114147, -1.78885, 2.34612, -1.36625e-15, -1.04189e-15, 0, -2.34462, 0, 7.03835, -7.03729, -5.36656, -2.89996, 0.00141093, 2.21115, -2.89996, 2.89811, 1.28784e-15, -1.52025e-11, 2.89952, 2.21115, 2.89996, -2.89354, 7.15542, -9.38447, -2.89952, -2.21115, 2.89996, 9.37707, -2.21115}, {-4.82547e-12, 4.93775, 1.89782, -1.17597e-12, 1.20344, -0.85762, 1.44665, -0.256711, 0.444168, -1.44665, 0.69919, 1.04606, 4.16911e-12, -4.26682, 5.2725, -1.78815, -1.17022, 0.511055, -7.57474, 3.37862, -1.54375, 7.57474, -1.62654, -4.69529, 1.78815, -2.35178, -0.232925, 5.34683e-13, -0.546933, -1.84202}, {1.60938e-12, -1.64592, -0.632608, 3.52988e-12, -3.61031, 2.57286, 1.44665, -0.256711, 0.444168, -1.44665, 0.69919, 1.04606, -6.97309e-12, 7.13059, 4.37245, -7.57474, -0.143371, -1.26562, -1.78815, 2.35178, 0.232925, 1.78815, 1.17022, -0.511055, 7.57474, -5.14853, -4.41716, 5.34905e-13, -0.546933, -1.84202}, {1.60738e-12, -1.64592, -0.632608, -1.17532e-12, 1.20344, -0.85762, -4.33994, 0.770134, -1.3325, -1.44665, 0.69919, 1.04606, -5.34239e-13, 0.546933, 1.84202, -1.78815, -5.98397, 3.94153, -1.78815, 8.93544, 2.76336, 1.78815, 1.17022, -0.511055, 1.78815, -2.35178, -0.232925, 5.78659, -3.34369, -6.02626}, {1.60805e-12, -1.64592, -0.632608, -1.17575e-12, 1.20344, -0.85762, 1.44665, -0.256711, 0.444168, 4.33994, -2.09757, -3.13818, -5.34461e-13, 0.546933, 1.84202, -1.78815, -1.17022, 0.511055, -1.78815, 2.35178, 0.232925, 1.78815, 7.75388, 2.01938, 1.78815, -7.16552, 3.19755, -5.78659, 0.479913, -3.61869}, {3.67809, 0.0745323, 3.75892, 1.30596, 0.948366, 0.152693, 0.0437324, -1.35943, 0.016287, -0.123659, 0.435911, 1.08399, -5.32262, -4.935, 0.74925, -1.66831, 0.508107, -0.20887, 1.28647, 7.14879, 1.46348, 2.16294, -2.25175, -4.1271, -1.4614, -1.71106, -1.52863, 0.0987948, 1.14154, -1.36002}, {-1.22603, -0.0248441, -1.25297, -3.91787, -2.8451, -0.458078, 0.0437324, -1.35943, 0.016287, -0.123659, 0.435911, 1.08399, 4.80532, -1.04216, 6.37191, -1.84323, 5.94584, -0.274019, 1.4614, 1.71106, 1.52863, 1.66831, -0.508107, 0.20887, -0.966762, -3.4547, -5.8646, 0.0987948, 1.14154, -1.36002}, {-1.22603, -0.0248441, -1.25297, 1.30596, 0.948366, 0.152693, -0.131197, 4.0783, -0.0488611, -0.123659, 0.435911, 1.08399, -0.0987948, -1.14154, 1.36002, -6.89213, -3.28536, -0.819641, 6.36551, 1.81044, 6.54052, 1.66831, -0.508107, 0.20887, -1.4614, -1.71106, -1.52863, 0.593431, -0.602108, -5.69599}, {-1.22603, -0.0248441, -1.25297, 1.30596, 0.948366, 0.152693, 0.0437324, -1.35943, 0.016287, 0.370977, -1.30773, -3.25198, -0.0987948, -1.14154, 1.36002, -1.66831, 0.508107, -0.20887, 1.4614, 1.71106, 1.52863, 6.57242, -0.40873, 5.22076, -6.68522, -5.50453, -2.1394, -0.0761347, 6.57927, -1.42517}, {5.37088, 5.36291, 5.36619, 1.99086e-15, 6.84977e-16, 1.60567, 0.376399, 3.64451, 0.373213, 1.41389, -1.85687, -0.190152, 2.21292, 2.20964, -6.1964, -0.465254, -4.50486, -2.44603, 0.242074, -16.8733, 0.256821, -5.19032, 11.9323, 3.20664, -1.74767, 2.29522, -1.74967, -2.21292, -2.20964, -0.226277}, {-1.79029, -1.78764, -1.78873, -1.24068e-15, 6.57876e-15, -4.817, 0.376399, 3.64451, 0.373213, 1.41389, -1.85687, -0.190152, 9.37409, 9.36019, 7.3812, -1.97085, -19.0829, -3.93889, 1.74767, -2.29522, 1.74967, 0.465254, 4.50486, 2.44603, -7.40324, 9.72271, -0.989068, -2.21292, -2.20964, -0.226277}, {-1.79029, -1.78764, -1.78873, 0, 0, 1.60567, -1.1292, -10.9335, -1.11964, 1.41389, -1.85687, -0.190152, 2.21292, 2.20964, 0.226277, -0.465254, -4.50486, -8.8687, 8.90884, 4.85533, 8.90459, 0.465254, 4.50486, 2.44603, -1.74767, 2.29522, -1.74967, -7.8685, 5.21784, 0.53433}, {-1.79029, -1.78764, -1.78873, -5.63596e-16, 7.40172e-16, 1.60567, 0.376399, 3.64451, 0.373213, -4.24168, 5.57061, 0.570455, 2.21292, 2.20964, 0.226277, -0.465254, -4.50486, -2.44603, 1.74767, -2.29522, 1.74967, 7.62642, 11.6554, 9.60095, -1.74767, 2.29522, -8.17235, -3.71852, -16.7877, -1.71913}, {1.24345e-14, 1.33227e-14, -9.45441, 0, -3.15057, 0, 1.78885, 1.78834, -1.78885, -1.78885, 1.36222, -1.36261, 4.88498e-15, 16.4966, -3.89543, -2.21115, 1.6838, 2.21115, -9.36656, -9.36389, 5.47113, 9.36656, -7.1327, 3.23931, 2.21115, 2.21051, 1.68428, -4.88498e-15, -3.89432, 3.89543}, {1.11022e-15, 3.77476e-15, 3.15147, 0, 9.4517, 0, 1.78885, 1.78834, -1.78885, -1.78885, 1.36222, -1.36261, -5.32907e-15, 3.89432, -16.5013, -9.36656, -5.46957, 9.36656, -2.21115, -2.21051, -1.68428, 2.21115, -1.6838, -2.21115, 9.36656, -3.23838, 7.13474, 1.33227e-15, -3.89432, 3.89543}, {-1.11022e-15, -8.65974e-15, 3.15147, 0, -3.15057, 0, -5.36656, -5.36503, 5.36656, -1.78885, 1.36222, -1.36261, 1.33227e-15, 3.89432, -3.89543, -2.21115, 14.2861, 2.21115, -2.21115, -2.21051, -14.2902, 2.21115, -1.6838, -2.21115, 2.21115, 2.21051, 1.68428, 7.15542, -9.34321, 9.34589}, {0, 2.22045e-16, 3.15147, 0, -3.15057, 0, 1.78885, 1.78834, -1.78885, 5.36656, -4.08667, 4.08784, 0, 3.89432, -3.89543, -2.21115, 1.6838, 2.21115, -2.21115, -2.21051, -1.68428, 2.21115, -1.6838, -14.817, 2.21115, 14.8128, 1.68428, -7.15542, -11.0477, 11.0508}, {-5.91616e-12, 6.05767, -4.31695, 0, 0, -1.80556, 1.44665, 0.572575, -0.146817, -1.44665, 1.44665, 0.51339, -2.43761e-12, 2.4959, 7.67533, -1.78815, -0.707741, 2.41326, -7.57474, -0.502145, -1.00994, 7.57474, -5.07885, -4.46683, 1.78815, -1.78815, 1.5972, 2.43761e-12, -2.4959, -0.45311}, {1.97087e-12, -2.01922, 1.43898, 0, 0, 5.41667, 1.44665, 0.572575, -0.146817, -1.44665, 1.44665, 0.51339, -1.03197e-11, 10.5728, -5.30282, -7.57474, -2.99804, 3.00053, -1.78815, 1.78815, -1.5972, 1.78815, 0.707741, -2.41326, 7.57474, -7.57474, -0.456356, 2.43605e-12, -2.4959, -0.45311}, {1.97242e-12, -2.01922, 1.43898, 0, 0, -1.80556, -4.33994, -1.71772, 0.44045, -1.44665, 1.44665, 0.51339, -2.43783e-12, 2.4959, 0.45311, -1.78815, -0.707741, 9.63549, -1.78815, 9.86504, -7.35313, 1.78815, 0.707741, -2.41326, 1.78815, -1.78815, 1.5972, 5.78659, -8.28248, -2.50667}, {1.97198e-12, -2.01922, 1.43898, 0, 0, -1.80556, 1.44665, 0.572575, -0.146817, 4.33994, -4.33994, -1.54017, -2.43761e-12, 2.4959, 0.45311, -1.78815, -0.707741, 2.41326, -1.78815, 1.78815, -1.5972, 1.78815, 8.78463, -8.16919, 1.78815, -1.78815, 8.81943, -5.78659, -4.7862, 0.134156}, {-4.33994, -4.33994, 1.75218, -1.97211e-12, -2.01922, 1.43898, 0, 0, -1.80556, -1.44665, 0.572575, 0.950635, -1.78815, 8.78463, -6.81267, 2.43766e-12, 2.4959, 0.45311, -1.78815, -1.78815, 10.176, 5.78659, -4.7862, -4.25565, 1.78815, 1.78815, -2.95373, 1.78815, -0.707741, 1.05674}, {1.44665, 1.44665, -0.584061, 5.92068e-12, 6.05767, -4.31695, 0, 0, -1.80556, -1.44665, 0.572575, 0.950635, -7.57474, -5.07885, 1.2795, 2.43945e-12, 2.4959, 7.67533, -1.78815, -1.78815, 2.95373, -2.43981e-12, -2.4959, -0.45311, 7.57474, -0.502145, -6.75627, 1.78815, -0.707741, 1.05674}, {1.44665, 1.44665, -0.584061, -1.97247e-12, -2.01922, 1.43898, 0, 0, 5.41667, -1.44665, 0.572575, 0.950635, -1.78815, 0.707741, -1.05674, 1.0328e-11, 10.5728, -5.30282, -7.57474, -7.57474, 5.28997, -2.43847e-12, -2.4959, -0.45311, 1.78815, 1.78815, -2.95373, 7.57474, -2.99804, -2.7458}, {1.44665, 1.44665, -0.584061, -1.97283e-12, -2.01922, 1.43898, 0, 0, -1.80556, 4.33994, -1.71772, -2.8519, -1.78815, 0.707741, -1.05674, 2.43856e-12, 2.4959, 0.45311, -1.78815, -1.78815, 2.95373, -5.78659, -8.28248, 1.88313, 1.78815, 9.86504, -8.70966, 1.78815, -0.707741, 8.27896}, {1.71772, 0.356094, 4.33994, 2.01922, -0.477594, 1.7444e-12, -1.44665, -0.786183, 1.44665, 0, 1.38248, 0, -9.86504, 2.64743, 1.78815, -0.707741, 1.56212, -1.78815, 8.28248, 4.26323, -5.78659, 0.707741, -7.09202, 1.78815, -2.4959, -1.11849, -2.1562e-12, 1.78815, -0.737058, -1.78815}, {-0.572575, -0.118698, -1.44665, -6.05767, 1.43278, -5.23264e-12, -1.44665, -0.786183, 1.44665, 4.96495e-16, 1.38248, -4.96495e-16, 0.502145, 1.21185, 7.57474, 5.07885, 4.70685, -7.57474, 2.4959, 1.11849, 2.15571e-12, 0.707741, -1.56212, 1.78815, -2.4959, -6.6484, -2.15337e-12, 1.78815, -0.737058, -1.78815}, {-0.572575, -0.118698, -1.44665, 2.01922, -0.477594, 1.7444e-12, 4.33994, 2.35855, -4.33994, 0, 1.38248, 0, -1.78815, 0.737058, 1.78815, -8.78463, 3.47249, -1.78815, 4.7862, 1.59329, 5.78659, 0.707741, -1.56212, 1.78815, -2.4959, -1.11849, -2.1562e-12, 1.78815, -6.26696, -1.78815}, {-0.572575, -0.118698, -1.44665, 2.01922, -0.477594, 1.74332e-12, -1.44665, -0.786183, 1.44665, 0, -4.14743, 0, -1.78815, 0.737058, 1.78815, -0.707741, 1.56212, -1.78815, 2.4959, 1.11849, 2.15522e-12, 2.99804, -1.08732, 7.57474, -10.5728, 0.791882, -9.12813e-12, 7.57474, 2.40768, -7.57474}, {-3.82778, -1.72626, -1.72406, -1.39459, 0.310766, 0.31037, -0.00684175, -1.71025, 0.635056, 0.125505, 0.824062, -1.52011, 5.72503, -2.33845, -2.33547, 1.73226, 1.72986, -1.16861, -1.54131, 8.24373, -4.03555, -2.23428, -5.02611, 7.24907, 1.56867, -1.40273, 1.49533, -0.146676, 1.09539, 1.09399}, {1.27593, 0.575422, 0.574688, 4.18377, -0.932299, -0.93111, -0.00684175, -1.71025, 0.635056, 0.125505, 0.824062, -1.52011, -4.95703, -3.39708, -3.39274, 1.75963, 8.57086, -3.70884, -1.56867, 1.40273, -1.49533, -1.73226, -1.72986, 1.16861, 1.06665, -4.69898, 7.57578, -0.146676, 1.09539, 1.09399}, {1.27593, 0.575422, 0.574688, -1.39459, 0.310766, 0.31037, 0.0205252, 5.13075, -1.90517, 0.125505, 0.824062, -1.52011, 0.146676, -1.09539, -1.09399, 7.31062, 0.486792, -2.41009, -6.67238, -0.898961, -3.79408, -1.73226, -1.72986, 1.16861, 1.56867, -1.40273, 1.49533, -0.648696, -2.20086, 7.17445}, {1.27593, 0.575422, 0.574688, -1.39459, 0.310766, 0.31037, -0.00684175, -1.71025, 0.635056, -0.376515, -2.47219, 4.56034, 0.146676, -1.09539, -1.09399, 1.73226, 1.72986, -1.16861, -1.56867, 1.40273, -1.49533, -6.83597, -4.03154, -1.13014, 7.14703, -2.64579, 0.253846, -0.119309, 7.93639, -1.44623}, {4.08784, 5.36656, -4.08784, 3.15147, -2.79907e-15, -3.33475e-16, -1.78885, 1.78885, 1.78885, 0, 0, -3.15147, -14.817, 2.21115, -1.68428, -1.68428, -2.21115, -2.21115, 11.0508, -7.15542, -11.0508, 1.68428, 2.21115, 14.817, -3.89543, 3.45984e-15, 3.89543, 2.21115, -2.21115, 1.68428}, {-1.36261, -1.78885, 1.36261, -9.45441, 4.1986e-15, 1.15954e-14, -1.78885, 1.78885, 1.78885, 0, 0, -3.15147, 3.23931, 9.36656, -7.13474, 5.47113, -9.36656, -9.36656, 3.89543, -1.28583e-15, -3.89543, 1.68428, 2.21115, 2.21115, -3.89543, 1.72992e-15, 16.5013, 2.21115, -2.21115, 1.68428}, {-1.36261, -1.78885, 1.36261, 3.15147, 0, 0, 5.36656, -5.36656, -5.36656, 0, 0, -3.15147, -2.21115, 2.21115, -1.68428, -14.2902, -2.21115, -2.21115, 9.34589, 7.15542, -9.34589, 1.68428, 2.21115, 2.21115, -3.89543, 0, 3.89543, 2.21115, -2.21115, 14.2902}, {-1.36261, -1.78885, 1.36261, 3.15147, 0, 2.46559e-15, -1.78885, 1.78885, 1.78885, 0, 0, 9.45441, -2.21115, 2.21115, -1.68428, -1.68428, -2.21115, -2.21115, 3.89543, 4.44089e-16, -3.89543, 7.13474, 9.36656, -3.23931, -16.5013, 0, 3.89543, 9.36656, -9.36656, -5.47113}, {1.73341, -4.36745, 1.08767, 0, 0, 1.17684, 2.01922, 1.68048e-12, -0.615915, -1.44142, -1.45582, -0.198371, 0.714206, -1.79949, -5.71389, -2.4959, -2.07719e-12, -0.693346, -9.85858, -1.79949, 3.67312, 8.26156, 5.82327, 1.48683, 1.78169, 1.79949, -1.20946, -0.714206, 1.79949, 1.00651}, {-0.577805, 1.45582, -0.362558, 2.02028e-15, 3.82793e-15, -3.53053, 2.01922, 1.68206e-12, -0.615915, -1.44142, -1.45582, -0.198371, 3.02542, -7.62276, 0.443719, -10.5728, -8.8058e-12, 1.77031, -1.78169, -1.79949, 1.20946, 2.4959, 2.0772e-12, 0.693346, 7.54736, 7.62276, -0.415974, -0.714206, 1.79949, 1.00651}, {-0.577805, 1.45582, -0.362558, 0, 0, 1.17684, -6.05767, -5.04417e-12, 1.84774, -1.44142, -1.45582, -0.198371, 0.714206, -1.79949, -1.00651, -2.4959, -2.07831e-12, -5.40072, 0.529529, -7.62276, 2.65969, 2.4959, 2.07795e-12, 0.693346, 1.78169, 1.79949, -1.20946, 5.05146, 7.62276, 1.8}, {-0.577805, 1.45582, -0.362558, 0, 0, 1.17684, 2.01922, 1.68121e-12, -0.615915, 4.32425, 4.36745, 0.595113, 0.714206, -1.79949, -1.00651, -2.4959, -2.07809e-12, -0.693346, -1.78169, -1.79949, 1.20946, 4.80711, -5.82327, 2.14358, 1.78169, 1.79949, -5.91683, -8.79109, 1.79949, 3.47017}, {-4.91714, 2.88338, 1.92681, -0.336451, -0.850591, 0.85104, -1.79955, 0.555362, -0.55742, 0.496952, 1.25636, 0.348649, -0.264293, 5.64177, -3.66222, 2.64024, 0.364922, -0.362934, 7.39658, -1.7199, 3.71258, -4.62805, -5.39034, -1.03166, -0.198389, -0.501553, -1.4829, 1.6101, -2.23941, 0.258056}, {1.63905, -0.961127, -0.642269, 1.00935, 2.55177, -2.55312, -1.79955, 0.555362, -0.55742, 0.496952, 1.25636, 0.348649, -8.16629, 6.08391, 2.31102, 9.83843, -1.85653, 1.86675, 0.198389, 0.501553, 1.4829, -2.64024, -0.364922, 0.362934, -2.1862, -5.52697, -2.87749, 1.6101, -2.23941, 0.258056}, {1.63905, -0.961127, -0.642269, -0.336451, -0.850591, 0.85104, 5.39864, -1.66609, 1.67226, 0.496952, 1.25636, 0.348649, -1.6101, 2.23941, -0.258056, 3.98605, 3.76729, -3.76709, -6.3578, 4.34606, 4.05197, -2.64024, -0.364922, 0.362934, -0.198389, -0.501553, -1.4829, -0.377708, -7.26483, -1.13654}, {1.63905, -0.961127, -0.642269, -0.336451, -0.850591, 0.85104, -1.79955, 0.555362, -0.55742, -1.49085, -3.76907, -1.04595, -1.6101, 2.23941, -0.258056, 2.64024, 0.364922, -0.362934, 0.198389, 0.501553, 1.4829, -9.19643, 3.47958, 2.93201, 1.14742, 2.90081, -4.88706, 8.80829, -4.46086, 2.48774}, {10.941, -4.49288, 1.1204, 1.85814, 0.691786, -1.41539, 0, -2.17235, 0, 1.78885, -0.0170635, 1.78885, -5.2214, -5.47341, 7.87269, -2.29678, 1.83008, 1.74951, 4.50793, 9.5234, 0.461631, -4.85864, -1.76182, -8.90493, -4.50793, -0.834003, -0.461631, -2.21115, 2.70626, -2.21115}, {-3.64699, 1.49763, -0.373467, -5.57441, -2.07536, 4.24616, 0, -2.17235, 0, 1.78885, -0.0170635, 1.78885, 16.7991, -8.69677, 3.70501, -2.29678, 10.5195, 1.74951, 4.50793, 0.834003, 0.461631, 2.29678, -1.83008, -1.74951, -11.6633, -0.76575, -7.61705, -2.21115, 2.70626, -2.21115}, {-3.64699, 1.49763, -0.373467, 1.85814, 0.691786, -1.41539, 0, 6.51705, 0, 1.78885, -0.0170635, 1.78885, 2.21115, -2.70626, 2.21115, -9.72932, -0.937068, 7.41106, 19.0959, -5.15651, 1.9555, 2.29678, -1.83008, -1.74951, -4.50793, -0.834003, -0.461631, -9.36656, 2.77452, -9.36656}, {-3.64699, 1.49763, -0.373467, 1.85814, 0.691786, -1.41539, 0, -2.17235, 0, -5.36656, 0.0511904, -5.36656, 2.21115, -2.70626, 2.21115, -2.29678, 1.83008, 1.74951, 4.50793, 0.834003, 0.461631, 16.8847, -7.82059, -0.255645, -11.9405, -3.60115, 5.19992, -2.21115, 11.3957, -2.21115}, {-4.62937, 1.83228, -4.62937, -1.60567, 0, 0, -0.136178, -1.32981, -1.74185, 0.198723, 1.94057, 0.198723, 6.49998, 0.754941, -1.90741, 2.15304, 1.64373, 2.15304, -1.19437, 7.71791, 7.21302, -2.94793, -9.40601, -2.94793, 1.73908, -2.39867, -0.245635, -0.0773091, -0.754941, 1.90741}, {1.54312, -0.61076, 1.54312, 4.817, 0, 0, -0.136178, -1.32981, -1.74185, 0.198723, 1.94057, 0.198723, -6.09519, 3.19798, -8.0799, 2.69775, 6.96297, 9.12042, -1.73908, 2.39867, 0.245635, -2.15304, -1.64373, -2.15304, 0.94419, -10.1609, -1.04052, -0.0773091, -0.754941, 1.90741}, {1.54312, -0.61076, 1.54312, -1.60567, 0, 0, 0.408534, 3.98943, 5.22554, 0.198723, 1.94057, 0.198723, 0.0773091, 0.754941, -1.90741, 8.57571, 1.64373, 2.15304, -7.91157, 4.84171, -5.92686, -2.15304, -1.64373, -2.15304, 1.73908, -2.39867, -0.245635, -0.872199, -8.51722, 1.11252}, {1.54312, -0.61076, 1.54312, -1.60567, 0, 0, -0.136178, -1.32981, -1.74185, -0.596168, -5.82171, -0.596168, 0.0773091, 0.754941, -1.90741, 2.15304, 1.64373, 2.15304, -1.73908, 2.39867, 0.245635, -8.32553, 0.799305, -8.32553, 8.16175, -2.39867, -0.245635, 0.467403, 4.5643, 8.87479}, {-5.36656, 4.08784, -4.08784, 0, 3.15147, 0, -1.78885, -1.78885, 1.78885, 0, 0, -3.15147, -2.21115, -14.817, -1.68428, 2.21115, -1.68428, -2.21115, 7.15542, 11.0508, -11.0508, -2.21115, 1.68428, 14.817, 0, -3.89543, 3.89543, 2.21115, 2.21115, 1.68428}, {1.78885, -1.36261, 1.36261, -4.1986e-15, -9.45441, 1.15954e-14, -1.78885, -1.78885, 1.78885, 0, 0, -3.15147, -9.36656, 3.23931, -7.13474, 9.36656, 5.47113, -9.36656, 1.28583e-15, 3.89543, -3.89543, -2.21115, 1.68428, 2.21115, -1.72992e-15, -3.89543, 16.5013, 2.21115, 2.21115, 1.68428}, {1.78885, -1.36261, 1.36261, 0, 3.15147, -9.86237e-15, 5.36656, 5.36656, -5.36656, 0, 0, -3.15147, -2.21115, -2.21115, -1.68428, 2.21115, -14.2902, -2.21115, -7.15542, 9.34589, -9.34589, -2.21115, 1.68428, 2.21115, 0, -3.89543, 3.89543, 2.21115, 2.21115, 14.2902}, {1.78885, -1.36261, 1.36261, 0, 3.15147, 0, -1.78885, -1.78885, 1.78885, 0, 0, 9.45441, -2.21115, -2.21115, -1.68428, 2.21115, -1.68428, -2.21115, -4.44089e-16, 3.89543, -3.89543, -9.36656, 7.13474, -3.23931, 0, -16.5013, 3.89543, 9.36656, 9.36656, -5.47113}, {-14.3647, 4.91028, -4.91028, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, -1.57573, -1.63676, 1.63676, -1.63676, 2.33207, -6.2275, -10.2738, 3.89543, -3.193e-13, -3.19522e-13, 2.33207, 10.2738, 6.2275, 2.65162, -6.54704, 6.54704, 3.97086, -3.97086, 0.0754334, 3.97086, -0.0754334, 3.97086}, {4.78823, -1.63676, 1.63676, 4.7272, -4.7272, -4.7272, -1.57573, -1.57573, -1.57573, -1.63676, 1.63676, -1.63676, -23.1238, 6.62248, -10.5179, 10.1984, 6.30294, 6.30294, -3.97086, 3.97086, -0.0754334, -3.89543, 3.18818e-13, 3.18006e-13, 10.5179, -10.5179, 6.62248, 3.97086, -0.0754334, 3.97086}, {4.78823, -1.63676, 1.63676, -1.57573, 1.57573, 1.57573, 4.7272, 4.7272, 4.7272, -1.63676, 1.63676, -1.63676, -3.97086, 0.0754334, -3.97086, 10.1984, -6.30294, -6.30294, -23.1238, 10.5179, -6.62248, -3.89543, 3.21483e-13, 3.20892e-13, 3.97086, -3.97086, 0.0754334, 10.5179, -6.62248, 10.5179}, {4.78823, -1.63676, 1.63676, -1.57573, 1.57573, 1.57573, -1.57573, -1.57573, -1.57573, 4.91028, -4.91028, 4.91028, -3.97086, 0.0754334, -3.97086, 3.89543, -3.19522e-13, -3.19078e-13, -3.97086, 3.97086, -0.0754334, -23.0483, 6.54704, -6.54704, 10.2738, -10.2738, -6.2275, 10.2738, 6.2275, 10.2738}, {0, -4.817, 7.10543e-15, -1.41539, -0.190281, -1.85814, -0.373467, 0.373467, 3.64699, 1.78885, -1.78885, -1.78885, 7.41106, -0.988391, 9.72932, 2.21115, -0.226431, -2.21115, 1.9555, -3.94022, -19.0959, -9.36656, 7.38185, 9.36656, -0.461631, 2.44635, 4.50793, -1.74951, 1.74951, -2.29678}, {-1.11022e-15, 1.60567, -1.55431e-15, 4.24616, 0.570843, 5.57441, -0.373467, 0.373467, 3.64699, 1.78885, -1.78885, -1.78885, 1.74951, -8.17219, 2.29678, 3.70501, -1.7203, -16.7991, 0.461631, -2.44635, -4.50793, -2.21115, 0.226431, 2.21115, -7.61705, 9.60176, 11.6633, -1.74951, 1.74951, -2.29678}, {-8.88178e-16, 1.60567, 1.11022e-15, -1.41539, -0.190281, -1.85814, 1.1204, -1.1204, -10.941, 1.78885, -1.78885, -1.78885, 1.74951, -1.74951, 2.29678, 7.87269, 0.534693, 5.2214, 0.461631, -8.86902, -4.50793, -2.21115, 0.226431, 2.21115, -0.461631, 2.44635, 4.50793, -8.90493, 8.90493, 4.85864}, {1.55431e-15, 1.60567, -4.44089e-16, -1.41539, -0.190281, -1.85814, -0.373467, 0.373467, 3.64699, -5.36656, 5.36656, 5.36656, 1.74951, -1.74951, 2.29678, 2.21115, -0.226431, -2.21115, 0.461631, -2.44635, -4.50793, -2.21115, -6.19624, 2.21115, 5.19992, 3.20747, 11.9405, -0.255645, 0.255645, -16.8847}, {-2.60507, 7.08874, -2.60507, -1.19276, 2.49131, 1.15037, -1.08957, 0.431245, -1.08957, 1.41397, -0.55964, -0.929159, 5.172, -10.1239, -7.09676, 2.82111, -3.61247, -0.0751544, 4.6317, 0.662693, 4.6317, -8.47697, 5.85103, 3.79179, -0.273431, -2.38767, -0.273431, -0.400978, 0.158705, 2.49528}, {0.868358, -2.36291, 0.868358, 3.57827, -7.47392, -3.45111, -1.08957, 0.431245, -1.08957, 1.41397, -0.55964, -0.929159, -3.07245, 9.29295, -5.96872, 7.17938, -5.33745, 4.28312, 0.273431, 2.38767, 0.273431, -2.82111, 3.61247, 0.0751544, -5.9293, -0.149113, 3.44321, -0.400978, 0.158705, 2.49528}, {0.868358, -2.36291, 0.868358, -1.19276, 2.49131, 1.15037, 3.2687, -1.29374, 3.2687, 1.41397, -0.55964, -0.929159, 0.400978, -0.158705, -2.49528, 7.59213, -13.5777, -4.67663, -3.2, 11.8393, -3.2, -2.82111, 3.61247, 0.0751544, -0.273431, -2.38767, -0.273431, -6.05684, 2.39726, 6.21192}, {0.868358, -2.36291, 0.868358, -1.19276, 2.49131, 1.15037, -1.08957, 0.431245, -1.08957, -4.2419, 1.67892, 2.78748, 0.400978, -0.158705, -2.49528, 2.82111, -3.61247, -0.0751544, 0.273431, 2.38767, 0.273431, -6.29454, 13.0641, -3.39828, 4.49759, -12.3529, -4.87491, 3.95729, -1.56628, 6.85356}, {0.133606, -1.71772, 4.33994, 0.841626, -2.01922, -1.9732e-12, -1.05603, 0, 0, 0.258935, 1.44665, 1.44665, -4.35176, 9.86504, 1.78815, 0.265013, 2.4959, 2.43901e-12, 5.58447, -0.707741, 1.78815, -1.30075, -8.28248, -5.78659, -1.36037, 0.707741, -1.78815, 0.985258, -1.78815, -1.78815}, {-0.0445353, 0.572575, -1.44665, -2.52488, 6.05767, 5.92285e-12, -1.05603, 0, 0, 0.258935, 1.44665, 1.44665, -0.807116, -0.502145, 7.57474, 4.48912, 2.4959, 2.44035e-12, 1.36037, -0.707741, 1.78815, -0.265013, -2.4959, -2.43999e-12, -2.39611, -5.07885, -7.57474, 0.985258, -1.78815, -1.78815}, {-0.0445353, 0.572575, -1.44665, 0.841626, -2.01922, -1.97392e-12, 3.16808, 0, 0, 0.258935, 1.44665, 1.44665, -0.985258, 1.78815, 1.78815, -3.10149, 10.5728, 1.03356e-11, 1.53851, -2.99804, 7.57474, -0.265013, -2.4959, -2.43954e-12, -1.36037, 0.707741, -1.78815, -0.0504837, -7.57474, -7.57474}, {-0.0445353, 0.572575, -1.44665, 0.841626, -2.01922, -1.97247e-12, -1.05603, 0, 0, -0.776806, -4.33994, -4.33994, -0.985258, 1.78815, 1.78815, 0.265013, 2.4959, 2.43811e-12, 1.36037, -0.707741, 1.78815, -0.0868717, -4.7862, 5.78659, -4.72687, 8.78463, -1.78815, 5.20936, -1.78815, -1.78815}, {-8.334, -1.1204, -10.941, -1.41539, 1.41539, -1.85814, -3.15147, 0, 0, 1.78885, -1.78885, -1.78885, 3.97726, -7.87269, 5.2214, 5.64494, -1.74951, 2.29678, 13.0675, -0.461631, -4.50793, -12.8004, 8.90493, 4.85864, -0.461631, 0.461631, 4.50793, 1.68428, 2.21115, 2.21115}, {2.778, 0.373467, 3.64699, 4.24616, -4.24616, 5.57441, -3.15147, 0, 0, 1.78885, -1.78885, -1.78885, -12.7963, -3.70501, -16.7991, 18.2508, -1.74951, 2.29678, 0.461631, -0.461631, -4.50793, -5.64494, 1.74951, -2.29678, -7.61705, 7.61705, 11.6633, 1.68428, 2.21115, 2.21115}, {2.778, 0.373467, 3.64699, -1.41539, 1.41539, -1.85814, 9.45441, 0, 0, 1.78885, -1.78885, -1.78885, -1.68428, -2.21115, -2.21115, 11.3065, -7.41106, 9.72932, -10.6504, -1.9555, -19.0959, -5.64494, 1.74951, -2.29678, -0.461631, 0.461631, 4.50793, -5.47113, 9.36656, 9.36656}, {2.778, 0.373467, 3.64699, -1.41539, 1.41539, -1.85814, -3.15147, 0, 0, -5.36656, 5.36656, 5.36656, -1.68428, -2.21115, -2.21115, 5.64494, -1.74951, 2.29678, 0.461631, -0.461631, -4.50793, -16.7569, 0.255645, -16.8847, 5.19992, -5.19992, 11.9405, 14.2902, 2.21115, 2.21115}, {1.01058, 2.55106, -2.5536, -2.38953, 1.40121, 0.936349, 0.591368, -0.846655, -1.49431, 2.13502, 0.295801, -0.293237, 12.9281, -6.28572, -5.95493, 2.22265, -0.685462, 0.68968, -2.68006, 5.48424, 6.77218, -10.7627, -0.497743, 0.483267, 0.314591, -2.09762, -0.794931, -3.37, 0.680893, 2.20953}, {-0.336859, -0.850352, 0.8512, 7.1686, -4.20362, -2.80905, 0.591368, -0.846655, -1.49431, 2.13502, 0.295801, -0.293237, 4.71744, 2.72051, -5.61433, -0.142821, 2.70116, 6.66693, -0.314591, 2.09762, 0.794931, -2.22265, 0.685462, -0.68968, -8.2255, -3.28082, 0.378017, -3.37, 0.680893, 2.20953}, {-0.336859, -0.850352, 0.8512, -2.38953, 1.40121, 0.936349, -1.77411, 2.53997, 4.48294, 2.13502, 0.295801, -0.293237, 3.37, -0.680893, -2.20953, 11.7808, -6.29028, -3.05572, 1.03285, 5.49902, -2.60987, -2.22265, 0.685462, -0.68968, 0.314591, -2.09762, -0.794931, -11.9101, -0.502312, 3.38248}, {-0.336859, -0.850352, 0.8512, -2.38953, 1.40121, 0.936349, 0.591368, -0.846655, -1.49431, -6.40507, -0.887404, 0.879711, 3.37, -0.680893, -2.20953, 2.22265, -0.685462, 0.68968, -0.314591, 2.09762, 0.794931, -0.875216, 4.08687, -4.09448, 9.87272, -7.70244, -4.54033, -5.73548, 4.06751, 8.18678}, {8.88178e-16, 9.4517, 0, 1.85814, -1.41498, 1.41539, -3.64699, 2.77721, 0.373467, 1.78885, 1.78834, -1.78885, -9.72932, 11.3033, -7.41106, 2.21115, -1.6838, -2.21115, 19.0959, -10.6473, -1.9555, -9.36656, -5.46957, 9.36656, -4.50793, -0.461499, 0.461631, 2.29678, -5.64333, 1.74951}, {-2.22045e-16, -3.15057, -2.22045e-16, -5.57441, 4.24495, -4.24616, -3.64699, 2.77721, 0.373467, 1.78885, 1.78834, -1.78885, -2.29678, 18.2456, -1.74951, 16.7991, -12.7926, -3.70501, 4.50793, 0.461499, -0.461631, -2.21115, 1.6838, 2.21115, -11.6633, -7.61487, 7.61705, 2.29678, -5.64333, 1.74951}, {8.88178e-16, -3.15057, 2.22045e-16, 1.85814, -1.41498, 1.41539, 10.941, -8.33162, -1.1204, 1.78885, 1.78834, -1.78885, -2.29678, 5.64333, -1.74951, -5.2214, 3.97613, -7.87269, 4.50793, 13.0638, -0.461631, -2.21115, 1.6838, 2.21115, -4.50793, -0.461499, 0.461631, -4.85864, -12.7967, 8.90493}, {2.22045e-16, -3.15057, 6.66134e-16, 1.85814, -1.41498, 1.41539, -3.64699, 2.77721, 0.373467, -5.36656, -5.36503, 5.36656, -2.29678, 5.64333, -1.74951, 2.21115, -1.6838, -2.21115, 4.50793, 0.461499, -0.461631, -2.21115, 14.2861, 2.21115, -11.9405, 5.19843, -5.19992, 16.8847, -16.7522, 0.255645}, {-3.98943, -5.23221, -5.22554, -1.94057, -2.54509, -0.198723, 0.61076, -1.54509, -1.54312, 0, 2.34612, 0, 8.51722, 11.1705, -1.11252, 1.64373, 5.05575, 2.15304, -4.84171, 5.93443, 5.92686, -1.64373, -14.4402, -2.15304, 2.39867, 0.245948, 0.245635, -0.754941, -0.990119, 1.90741}, {1.32981, 1.74407, 1.74185, 5.82171, 7.63528, 0.596168, 0.61076, -1.54509, -1.54312, -3.55726e-16, 2.34612, 8.98764e-16, -4.5643, -5.98616, -8.87479, -0.799305, 11.2361, 8.32553, -2.39867, -0.245948, -0.245635, -1.64373, -5.05575, -2.15304, 2.39867, -9.13852, 0.245635, -0.754941, -0.990119, 1.90741}, {1.32981, 1.74407, 1.74185, -1.94057, -2.54509, -0.198723, -1.83228, 4.63528, 4.62937, 0, 2.34612, 0, 0.754941, 0.990119, -1.90741, 9.40601, 15.2361, 2.94793, -7.71791, -7.22223, -7.21302, -1.64373, -5.05575, -2.15304, 2.39867, 0.245948, 0.245635, -0.754941, -10.3746, 1.90741}, {1.32981, 1.74407, 1.74185, -1.94057, -2.54509, -0.198723, 0.61076, -1.54509, -1.54312, 0, -7.03835, 0, 0.754941, 0.990119, -1.90741, 1.64373, 5.05575, 2.15304, -2.39867, -0.245948, -0.245635, -6.96297, -12.032, -9.12042, 10.1609, 10.4263, 1.04052, -3.19798, 5.19026, 8.0799}, {0, -8.88178e-15, -7.02938, -1.78885, -2.34612, -2.34313, 1.78885, 6.94391e-12, 7.11845e-12, 0, 2.34612, 0, 9.36656, 12.2844, 9.3725, 0, 2.89996, 2.89626, -9.36656, -3.63625e-11, -2.89626, 0, -12.2844, -2.89626, 2.21115, 8.58691e-12, 2.89626, -2.21115, -2.89996, -8.79889e-12}, {-9.56516e-16, 1.33227e-15, 2.34313, 5.36656, 7.03835, 7.02938, 1.78885, 6.94391e-12, 7.11845e-12, -1.04189e-15, 2.34612, -4.14601e-27, 2.21115, 2.89996, -9.3725, -7.15542, 2.89996, 2.89626, -2.21115, -8.58469e-12, -2.89626, 2.66454e-15, -2.89996, -2.89626, 2.21115, -9.38447, 2.89626, -2.21115, -2.89996, -8.79889e-12}, {0, -4.44089e-16, 2.34313, -1.78885, -2.34612, -2.34313, -5.36656, -2.08419e-11, -2.13616e-11, 0, 2.34612, 0, 2.21115, 2.89996, 8.80088e-12, 7.15542, 12.2844, 12.2688, -2.21115, -8.58691e-12, -12.2688, 0, -2.89996, -2.89626, 2.21115, 8.58691e-12, 2.89626, -2.21115, -12.2844, -8.80146e-12}, {0, 8.88178e-16, 2.34313, -1.78885, -2.34612, -2.34313, 1.78885, 6.94234e-12, 7.11741e-12, 0, -7.03835, 0, 2.21115, 2.89996, 8.79702e-12, 0, 2.89996, 2.89626, -2.21115, -8.58291e-12, -2.89626, 0, -2.89996, -12.2688, 9.36656, 9.38447, 12.2688, -9.36656, -2.89996, -3.72672e-11}, {-0.596168, 7.62554, 5.82171, -1.74185, 1.74185, 1.32981, 0, 2.34313, 0, 1.54312, -1.54312, 0.61076, 8.87479, -5.97853, -4.5643, 2.15304, -5.0493, -1.64373, -0.245635, -9.12687, 2.39867, -8.32553, 11.2218, -0.799305, 0.245635, -0.245635, -2.39867, -1.90741, -0.988857, -0.754941}, {0.198723, -2.54185, -1.94057, 5.22554, -5.22554, -3.98943, -8.97618e-16, 2.34313, -3.55272e-16, 1.54312, -1.54312, 0.61076, 1.11252, 11.1562, 8.51722, 2.15304, -14.4218, -1.64373, -0.245635, 0.245635, 2.39867, -2.15304, 5.0493, 1.64373, -5.92686, 5.92686, -4.84171, -1.90741, -0.988857, -0.754941}, {0.198723, -2.54185, -1.94057, -1.74185, 1.74185, 1.32981, 0, -7.02938, 0, 1.54312, -1.54312, 0.61076, 1.90741, 0.988857, 0.754941, 9.12042, -12.0167, -6.96297, -1.04052, 10.413, 10.1609, -2.15304, 5.0493, 1.64373, 0.245635, -0.245635, -2.39867, -8.0799, 5.18364, -3.19798}, {0.198723, -2.54185, -1.94057, -1.74185, 1.74185, 1.32981, 0, 2.34313, 0, -4.62937, 4.62937, -1.83228, 1.90741, 0.988857, 0.754941, 2.15304, -5.0493, -1.64373, -0.245635, 0.245635, 2.39867, -2.94793, 15.2167, 9.40601, 7.21302, -7.21302, -7.71791, -1.90741, -10.3614, -0.754941}, {4.7272, -4.7272, -4.7272, 1.57573, 1.57573, -1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, 1.57573, -6.30294, -10.1984, 6.30294, 1.80456e-12, 1.805e-12, 3.89543, 10.1984, 6.30294, 6.30294, -6.30294, 6.30294, -10.1984, -3.89543, 3.19078e-13, 3.19078e-13, -2.14295e-12, 3.89543, 2.13674e-12}, {-1.57573, 1.57573, 1.57573, -4.7272, -4.7272, 4.7272, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, 1.57573, 6.30294, -10.1984, -6.30294, 6.30294, 6.30294, 10.1984, 3.89543, -3.193e-13, -3.193e-13, -1.80505e-12, -1.80561e-12, -3.89543, -10.1984, 6.30294, -6.30294, -2.1394e-12, 3.89543, 2.13962e-12}, {-1.57573, 1.57573, 1.57573, 1.57573, 1.57573, -1.57573, 4.7272, 4.7272, 4.7272, 1.57573, -1.57573, 1.57573, 2.14007e-12, -3.89543, -2.14007e-12, -6.30294, -6.30294, 10.1984, 10.1984, -6.30294, -6.30294, -1.80394e-12, -1.80428e-12, -3.89543, -3.89543, 3.20188e-13, 3.193e-13, -6.30294, 10.1984, -6.30294}, {-1.57573, 1.57573, 1.57573, 1.57573, 1.57573, -1.57573, -1.57573, -1.57573, -1.57573, -4.7272, 4.7272, -4.7272, 2.1354e-12, -3.89543, -2.14473e-12, 1.80456e-12, 1.80456e-12, 3.89543, 3.89543, -3.19522e-13, -3.19522e-13, 6.30294, -6.30294, -10.1984, -10.1984, -6.30294, 6.30294, 6.30294, 10.1984, 6.30294}, {4.817, -8.88178e-16, 2.22045e-16, -0.136178, 1.74185, 1.32981, 0.198723, -0.198723, -1.94057, 1.54312, -1.54312, 0.61076, 2.69775, -9.12042, -6.96297, -0.0773091, -1.90741, 0.754941, 0.94419, 1.04052, 10.1609, -6.09519, 8.0799, -3.19798, -1.73908, -0.245635, -2.39867, -2.15304, 2.15304, 1.64373}, {-1.60567, 0, 2.22045e-16, 0.408534, -5.22554, -3.98943, 0.198723, -0.198723, -1.94057, 1.54312, -1.54312, 0.61076, 8.57571, -2.15304, -1.64373, -0.872199, -1.11252, 8.51722, 1.73908, 0.245635, 2.39867, 0.0773091, 1.90741, -0.754941, -7.91157, 5.92686, -4.84171, -2.15304, 2.15304, 1.64373}, {-1.60567, 0, 2.22045e-16, -0.136178, 1.74185, 1.32981, -0.596168, 0.596168, 5.82171, 1.54312, -1.54312, 0.61076, 2.15304, -2.15304, -1.64373, 0.467403, -8.87479, -4.5643, 8.16175, 0.245635, 2.39867, 0.0773091, 1.90741, -0.754941, -1.73908, -0.245635, -2.39867, -8.32553, 8.32553, -0.799305}, {-1.60567, -2.22045e-16, -2.22045e-16, -0.136178, 1.74185, 1.32981, 0.198723, -0.198723, -1.94057, -4.62937, 4.62937, -1.83228, 2.15304, -2.15304, -1.64373, -0.0773091, -1.90741, 0.754941, 1.73908, 0.245635, 2.39867, 6.49998, 1.90741, -0.754941, -1.19437, -7.21302, -7.71791, -2.94793, 2.94793, 9.40601}, {7.01844, 8.88178e-16, 0, 2.33948, 2.34313, 1.78885, 7.30061e-12, 6.91762e-12, -1.78885, 0, -2.34313, 0, -9.35791, -12.2688, -9.36656, -2.89175, -2.89626, 0, 2.89175, -3.62204e-11, 9.36656, 2.89175, 12.2688, 0, -2.89175, 8.55005e-12, -2.21115, -9.02405e-12, 2.89626, 2.21115}, {-2.33948, 0, 0, -7.01844, -7.02938, -5.36656, 7.30269e-12, 6.91918e-12, -1.78885, 0, -2.34313, 0, 9.35791, -2.89626, -2.21115, -2.89175, -2.89626, 7.15542, 2.89175, -8.55271e-12, 2.21115, 2.89175, 2.89626, 0, -2.89175, 9.3725, -2.21115, -9.02662e-12, 2.89626, 2.21115}, {-2.33948, 4.44089e-16, 2.22045e-16, 2.33948, 2.34313, 1.78885, -2.19003e-11, -2.07607e-11, 5.36656, 0, -2.34313, 0, 9.02399e-12, -2.89626, -2.21115, -12.2497, -12.2688, -7.15542, 12.2497, -8.55493e-12, 2.21115, 2.89175, 2.89626, -4.44089e-16, -2.89175, 8.55405e-12, -2.21115, -9.02341e-12, 12.2688, 2.21115}, {-2.33948, 4.44089e-16, 0, 2.33948, 2.34313, 1.78885, 7.30373e-12, 6.92178e-12, -1.78885, 0, 7.02938, 0, 9.02849e-12, -2.89626, -2.21115, -2.89175, -2.89626, 0, 2.89175, -8.55627e-12, 2.21115, 12.2497, 2.89626, 0, -12.2497, -9.3725, -9.36656, -3.82428e-11, 2.89626, 9.36656}, {-1.82966, -4.6256, 4.62804, 1.3308, -1.74043, 0.137442, -1.94068, 0.198561, -0.20043, 0, 0, 1.60567, -7.722, 7.20714, 1.1872, 0.75386, 1.90585, 0.0778573, 9.40768, -2.94553, 2.95632, -0.75386, -1.90585, -6.50053, -1.64495, 2.15129, -2.1546, 2.39881, -0.245434, -1.73697}, {0.609885, 1.54187, -1.54268, -3.99239, 5.22128, -0.412327, -1.94068, 0.198561, -0.20043, 7.7358e-16, -7.91487e-17, 1.60567, -4.83836, -5.92203, 7.90769, 8.51658, 1.11161, 0.879578, 1.64495, -2.15129, 2.1546, -0.75386, -1.90585, -0.0778573, -1.64495, 2.15129, -8.57728, 2.39881, -0.245434, -1.73697}, {0.609885, 1.54187, -1.54268, 1.3308, -1.74043, 0.137442, 5.82204, -0.595682, 0.601291, 0, 0, 1.60567, -2.39881, 0.245434, 1.73697, -4.56932, 8.86756, -0.471912, -0.794587, -8.31875, 8.32532, -0.75386, -1.90585, -0.0778573, -1.64495, 2.15129, -2.1546, 2.39881, -0.245434, -8.15964}, {0.609885, 1.54187, -1.54268, 1.3308, -1.74043, 0.137442, -1.94068, 0.198561, -0.20043, 0, 0, -4.817, -2.39881, 0.245434, 1.73697, 0.75386, 1.90585, 0.0778573, 1.64495, -2.15129, 2.1546, -3.1934, -8.07331, 6.09286, -6.96814, 9.11299, -2.70437, 10.1615, -1.03968, -0.935249}, {-4.24457, 5.57441, -4.24616, -1.78937, -1.78885, -1.78885, 3.15147, -2.85327e-15, -2.92187e-16, -2.77696, 3.64699, 0.373467, 7.62038, 11.6633, 7.61705, -1.68365, 2.21115, 2.21115, -18.2502, 2.29678, -1.74951, 12.7915, -16.7991, -3.70501, 5.64429, -2.29678, 1.74951, -0.46292, -4.50793, -0.461631}, {1.41486, -1.85814, 1.41539, 5.3681, 5.36656, 5.36656, 3.15147, 5.70654e-15, 5.84374e-16, -2.77696, 3.64699, 0.373467, -5.1965, 11.9405, -5.19992, -14.2895, 2.21115, 2.21115, -5.64429, 2.29678, -1.74951, 1.68365, -2.21115, -2.21115, 16.7521, -16.8847, 0.255645, -0.46292, -4.50793, -0.461631}, {1.41486, -1.85814, 1.41539, -1.78937, -1.78885, -1.78885, -9.45441, 0, 0, -2.77696, 3.64699, 0.373467, 0.46292, 4.50793, 0.461631, 5.47381, 9.36656, 9.36656, -11.3037, 9.72932, -7.41106, 1.68365, -2.21115, -2.21115, 5.64429, -2.29678, 1.74951, 10.6449, -19.0959, -1.9555}, {1.41486, -1.85814, 1.41539, -1.78937, -1.78885, -1.78885, 3.15147, 2.85327e-15, 2.92187e-16, 8.33088, -10.941, -1.1204, 0.46292, 4.50793, 0.461631, -1.68365, 2.21115, 2.21115, -5.64429, 2.29678, -1.74951, -3.97577, 5.2214, -7.87269, 12.8018, 4.85864, 8.90493, -13.0688, -4.50793, -0.461631}, {-4.72788, -4.72653, -4.72653, 1.57551, -1.57551, -1.57551, -1.57551, 1.57551, -1.57596, -1.57596, -1.57551, 1.57596, -10.1975, 6.30204, 6.30204, -4.83169e-13, -4.92273e-13, 3.89543, 6.30148, -10.1969, 6.30439, 6.30384, 6.30204, -10.1993, 0.000556765, 3.89487, -0.000556765, 3.89543, -1.82077e-12, -1.81766e-12}, {1.57596, 1.57551, 1.57551, -4.72653, 4.72653, 4.72653, -1.57551, 1.57551, -1.57596, -1.57596, -1.57551, 1.57596, -10.1993, -6.30204, -6.30204, 6.30204, -6.30204, 10.1993, -0.000556765, -3.89487, 0.000556765, 4.86997e-13, 4.81002e-13, -3.89543, 6.30439, 10.1969, -6.30439, 3.89543, -1.81322e-12, -1.80744e-12}, {1.57596, 1.57551, 1.57551, 1.57551, -1.57551, -1.57551, 4.72653, -4.72653, 4.72788, -1.57596, -1.57551, 1.57596, -3.89543, 1.8201e-12, 1.81388e-12, -6.30204, 6.30204, 10.1975, -6.30439, -10.1969, -6.30148, 4.87441e-13, 4.99209e-13, -3.89543, 0.000556765, 3.89487, -0.000556765, 10.1993, 6.30204, -6.30384}, {1.57596, 1.57551, 1.57551, 1.57551, -1.57551, -1.57551, -1.57551, 1.57551, -1.57596, 4.72788, 4.72653, -4.72788, -3.89543, 1.81255e-12, 1.81877e-12, -4.87832e-13, -4.87388e-13, 3.89543, -0.000556765, -3.89487, 0.000556765, -6.30384, -6.30204, -10.1975, -6.30148, 10.1969, 6.30148, 10.1975, -6.30204, 6.30384}, {5.36656, -5.36656, -5.3681, 3.64699, -0.373467, 2.77696, 0, 0, -3.15147, -1.85814, -1.41539, -1.41486, -16.8847, -0.255645, -16.7521, -4.50793, 0.461631, 0.46292, 2.21115, -2.21115, 14.2895, 11.9405, 5.19992, 5.1965, -2.21115, 2.21115, -1.68365, 2.29678, 1.74951, 5.64429}, {-1.78885, 1.78885, 1.78937, -10.941, 1.1204, -8.33088, 0, 0, -3.15147, -1.85814, -1.41539, -1.41486, 4.85864, -8.90493, -12.8018, -4.50793, 0.461631, 13.0688, 2.21115, -2.21115, 1.68365, 4.50793, -0.461631, -0.46292, 5.2214, 7.87269, 3.97577, 2.29678, 1.74951, 5.64429}, {-1.78885, 1.78885, 1.78937, 3.64699, -0.373467, 2.77696, 0, 0, 9.45441, -1.85814, -1.41539, -1.41486, -2.29678, -1.74951, -5.64429, -19.0959, 1.9555, -10.6449, 9.36656, -9.36656, -5.47381, 4.50793, -0.461631, -0.46292, -2.21115, 2.21115, -1.68365, 9.72932, 7.41106, 11.3037}, {-1.78885, 1.78885, 1.78937, 3.64699, -0.373467, 2.77696, 0, 0, -3.15147, 5.57441, 4.24616, 4.24457, -2.29678, -1.74951, -5.64429, -4.50793, 0.461631, 0.46292, 2.21115, -2.21115, 1.68365, 11.6633, -7.61705, -7.62038, -16.7991, 3.70501, -12.7915, 2.29678, 1.74951, 18.2502}, {-0.570843, 5.57441, 4.24616, -0.373467, 3.64699, -0.373467, 1.78885, -1.78885, 1.78885, -1.60567, 0, 0, 1.7203, -16.7991, 3.70501, -1.74951, -2.29678, -1.74951, -9.60176, 11.6633, -7.61705, 8.17219, 2.29678, 1.74951, 2.44635, -4.50793, 0.461631, -0.226431, 2.21115, -2.21115}, {0.190281, -1.85814, -1.41539, 1.1204, -10.941, 1.1204, 1.78885, -1.78885, 1.78885, -1.60567, 0, 0, -0.534693, 5.2214, 7.87269, -8.90493, 4.85864, -8.90493, -2.44635, 4.50793, -0.461631, 1.74951, 2.29678, 1.74951, 8.86902, -4.50793, 0.461631, -0.226431, 2.21115, -2.21115}, {0.190281, -1.85814, -1.41539, -0.373467, 3.64699, -0.373467, -5.36656, 5.36656, -5.36656, -1.60567, 0, 0, 0.226431, -2.21115, 2.21115, -0.255645, -16.8847, -0.255645, -3.20747, 11.9405, 5.19992, 1.74951, 2.29678, 1.74951, 2.44635, -4.50793, 0.461631, 6.19624, 2.21115, -2.21115}, {0.190281, -1.85814, -1.41539, -0.373467, 3.64699, -0.373467, 1.78885, -1.78885, 1.78885, 4.817, 0, 0, 0.226431, -2.21115, 2.21115, -1.74951, -2.29678, -1.74951, -2.44635, 4.50793, -0.461631, 0.988391, 9.72932, 7.41106, 3.94022, -19.0959, 1.9555, -7.38185, 9.36656, -9.36656}, {-2.4085, 2.4085, -2.4085, 0.802834, 0.802834, -0.802834, 0.0313083, 1.63555, 1.63555, -1.63698, -1.63555, -1.63555, -5.19605, -3.21134, 3.21134, -1.03106, -3.014, -1.02929, -1.15629, -7.57148, -9.55619, 7.57896, 9.55619, 7.57148, 1.03106, 1.02929, 3.014, 1.98471, -8.43769e-15, 6.21725e-15}, {0.802834, -0.802834, 0.802834, -2.4085, -2.4085, 2.4085, 0.0313083, 1.63555, 1.63555, -1.63698, -1.63555, -1.63555, -5.19605, 3.21134, -3.21134, -1.15629, -9.55619, -7.57148, -1.03106, -1.02929, -3.014, 1.03106, 3.014, 1.02929, 7.57896, 7.57148, 9.55619, 1.98471, -7.54952e-15, 7.10543e-15}, {0.802834, -0.802834, 0.802834, 0.802834, 0.802834, -0.802834, -0.0939249, -4.90664, -4.90664, -1.63698, -1.63555, -1.63555, -1.98471, 7.10543e-15, -6.66134e-15, -4.24239, -6.22534, 2.18205, -4.24239, 2.18205, -6.22534, 1.03106, 3.014, 1.02929, 1.03106, 1.02929, 3.014, 8.53262, 6.54219, 6.54219}, {0.802834, -0.802834, 0.802834, 0.802834, 0.802834, -0.802834, 0.0313083, 1.63555, 1.63555, 4.91093, 4.90664, 4.90664, -1.98471, 6.21725e-15, -6.66134e-15, -1.03106, -3.014, -1.02929, -1.03106, -1.02929, -3.014, -2.18028, 6.22534, -2.18205, -2.18028, -2.18205, 6.22534, 1.85948, -6.54219, -6.54219}, {5.36656, 5.36656, -5.36656, 0, 0, -3.15147, 3.15147, -1.39953e-15, -1.06606e-15, -1.36261, 1.78885, 1.36261, 2.21115, 2.21115, 14.2902, -3.89543, 1.72992e-15, 3.89543, -14.2902, 2.21115, -2.21115, 9.34589, -7.15542, -9.34589, 1.68428, -2.21115, 2.21115, -2.21115, -2.21115, -1.68428}, {-1.78885, -1.78885, 1.78885, 0, 0, 9.45441, 3.15147, 2.79907e-15, 2.13212e-15, -1.36261, 1.78885, 1.36261, 9.36656, 9.36656, -5.47113, -16.5013, -1.46561e-14, 3.89543, -1.68428, 2.21115, -2.21115, 3.89543, 3.90393e-15, -3.89543, 7.13474, -9.36656, -3.23931, -2.21115, -2.21115, -1.68428}, {-1.78885, -1.78885, 1.78885, 0, 0, -3.15147, -9.45441, 0, 0, -1.36261, 1.78885, 1.36261, 2.21115, 2.21115, 1.68428, -3.89543, 0, 16.5013, 5.47113, 9.36656, -9.36656, 3.89543, 4.44089e-16, -3.89543, 1.68428, -2.21115, 2.21115, 3.23931, -9.36656, -7.13474}, {-1.78885, -1.78885, 1.78885, 0, 0, -3.15147, 3.15147, 1.39953e-15, 1.06606e-15, 4.08784, -5.36656, -4.08784, 2.21115, 2.21115, 1.68428, -3.89543, -1.72992e-15, 3.89543, -1.68428, 2.21115, -2.21115, 11.0508, 7.15542, -11.0508, 1.68428, -2.21115, 14.817, -14.817, -2.21115, -1.68428}, {1.55756, -1.55231, 6.66925, 0.74491, 1.59978, -0.633715, 1.29557, -1.29442, 0.512752, -1.52129, -0.822804, 2.34405, -3.25865, -9.01615, 6.06606, -2.52217, -0.377453, 0.149519, -6.14194, 6.13806, 0.0630791, 8.60734, 3.66867, -9.52571, 0.95966, -0.960396, -2.11409, 0.279008, 2.61703, -3.5312}, {-0.519188, 0.517438, -2.22308, -2.23473, -4.79934, 1.90115, 1.29557, -1.29442, 0.512752, -1.52129, -0.822804, 2.34405, 1.79774, -4.68678, 12.4235, -7.70445, 4.80021, -1.90149, -0.95966, 0.960396, 2.11409, 2.52217, 0.377453, -0.149519, 7.04482, 2.33082, -11.4903, 0.279008, 2.61703, -3.5312}, {-0.519188, 0.517438, -2.22308, 0.74491, 1.59978, -0.633715, -3.88671, 3.88325, -1.53826, -1.52129, -0.822804, 2.34405, -0.279008, -2.61703, 3.5312, -5.50181, -6.77658, 2.68438, 1.11709, -1.10936, 11.0064, 2.52217, 0.377453, -0.149519, 0.95966, -0.960396, -2.11409, 6.36417, 5.90824, -12.9074}, {-0.519188, 0.517438, -2.22308, 0.74491, 1.59978, -0.633715, 1.29557, -1.29442, 0.512752, 4.56387, 2.46841, -7.03214, -0.279008, -2.61703, 3.5312, -2.52217, -0.377453, 0.149519, -0.95966, 0.960396, 2.11409, 4.59892, -1.6923, 8.74282, -2.01998, -7.35952, 0.420775, -4.90327, 7.79469, -5.58221}, {-3.62807, -1.43344, -3.62246, -0.761007, 2.64249, 1.57539, -0.983272, -2.40589, -0.977465, 0.534922, -0.714416, -1.80541, 2.48984, -14.4269, -9.74136, 2.15605, -0.292457, -0.73907, 3.65363, 12.0068, 3.62554, -4.29574, 3.15012, 7.96069, 0.279456, -2.38324, 0.28432, 0.554191, 3.85691, 3.43982}, {1.20936, 0.477813, 1.20749, 2.28302, -7.92748, -4.72616, -0.983272, -2.40589, -0.977465, 0.534922, -0.714416, -1.80541, -5.39162, -5.76816, -8.26976, 6.08913, 9.33111, 3.17079, -0.279456, 2.38324, -0.28432, -2.15605, 0.292457, 0.73907, -1.86023, 0.474427, 7.50594, 0.554191, 3.85691, 3.43982}, {1.20936, 0.477813, 1.20749, -0.761007, 2.64249, 1.57539, 2.94982, 7.21767, 2.9324, 0.534922, -0.714416, -1.80541, -0.554191, -3.85691, -3.43982, 5.20007, -10.8624, -7.04061, -5.11688, 0.471983, -5.11426, -2.15605, 0.292457, 0.73907, 0.279456, -2.38324, 0.28432, -1.5855, 6.71457, 10.6614}, {1.20936, 0.477813, 1.20749, -0.761007, 2.64249, 1.57539, -0.983272, -2.40589, -0.977465, -1.60477, 2.14325, 5.41622, -0.554191, -3.85691, -3.43982, 2.15605, -0.292457, -0.73907, -0.279456, 2.38324, -0.28432, -6.99347, -1.6188, -4.09087, 3.32348, -12.9532, -6.01722, 4.48728, 13.4805, 7.34968}, {5.81909, -7.61025, 0.600985, 0.610485, 1.54108, -1.54262, 0, -2.33948, 0, 1.32921, -1.73835, 1.74295, -0.798945, -11.2048, 8.32487, -0.754601, 0.986874, 1.90678, 2.3976, 9.11407, 0.24762, -4.56224, 5.96654, -8.87857, -2.3976, 0.243842, -0.24762, -1.643, 5.04048, -2.1544}, {-1.9397, 2.53675, -0.200328, -1.83146, -4.62324, 4.62785, 0, -2.33948, 0, 1.32921, -1.73835, 1.74295, 9.40178, -15.1875, 2.95571, -0.754601, 10.3448, 1.90678, 2.3976, -0.243842, 0.24762, 0.754601, -0.986874, -1.90678, -7.71444, 7.19725, -7.21941, -1.643, 5.04048, -2.1544}, {-1.9397, 2.53675, -0.200328, 0.610485, 1.54108, -1.54262, 0, 7.01844, 0, 1.32921, -1.73835, 1.74295, 1.643, -5.04048, 2.1544, -3.19654, -5.17745, 8.07725, 10.1564, -10.3908, 1.04893, 0.754601, -0.986874, -1.90678, -2.3976, 0.243842, -0.24762, -6.95984, 11.9939, -9.12619}, {-1.9397, 2.53675, -0.200328, 0.610485, 1.54108, -1.54262, 0, -2.33948, 0, -3.98763, 5.21506, -5.22884, 1.643, -5.04048, 2.1544, -0.754601, 0.986874, 1.90678, 2.3976, -0.243842, 0.24762, 8.51339, -11.1339, -1.10547, -4.83954, -5.92048, 5.92285, -1.643, 14.3984, -2.1544}, {4.33994, -4.33994, -1.54017, 0, 0, -1.80556, -0.572575, -1.44665, 0.668413, 2.01922, 1.97175e-12, 0.623753, 1.78815, -1.78815, 8.81943, 0.707741, 1.78815, 1.40559, 4.7862, 5.78659, -4.13444, -8.78463, -1.78815, -3.9006, -2.4959, -2.43721e-12, 1.46079, -1.78815, 1.78815, -1.5972}, {-1.44665, 1.44665, 0.51339, 0, 0, 5.41667, -0.572575, -1.44665, 0.668413, 2.01922, 1.97138e-12, 0.623753, 7.57474, -7.57474, -0.456355, 2.99804, 7.57474, -1.26807, 2.4959, 2.43641e-12, -1.46079, -0.707741, -1.78815, -1.40559, -10.5728, -1.03223e-11, -1.03422, -1.78815, 1.78815, -1.5972}, {-1.44665, 1.44665, 0.51339, 0, 0, -1.80556, 1.71772, 4.33994, -2.00524, 2.01922, 1.97175e-12, 0.623753, 1.78815, -1.78815, 1.5972, 0.707741, 1.78815, 8.62781, 8.28248, -5.78659, -3.51435, -0.707741, -1.78815, -1.40559, -2.4959, -2.43721e-12, 1.46079, -9.86504, 1.78815, -4.09222}, {-1.44665, 1.44665, 0.51339, 0, 0, -1.80556, -0.572575, -1.44665, 0.668413, -6.05767, -5.91959e-12, -1.87126, 1.78815, -1.78815, 1.5972, 0.707741, 1.78815, 1.40559, 2.4959, 2.43865e-12, -1.46079, 5.07885, -7.57474, -3.45914, -2.4959, -2.43901e-12, 8.68301, 0.502145, 7.57474, -4.27086}, {5.36656, 5.36656, 5.36656, 0.373467, 0.373467, 3.64699, 1.41048e-15, 1.60567, -1.85169e-15, 1.41539, -0.190281, -1.85814, 0.255645, 0.255645, -16.8847, -0.461631, -2.44635, -4.50793, 2.21115, -6.19624, 2.21115, -5.19992, 3.20747, 11.9405, -2.21115, -0.226431, -2.21115, -1.74951, -1.74951, 2.29678}, {-1.78885, -1.78885, -1.78885, -1.1204, -1.1204, -10.941, 8.46287e-16, 1.60567, -1.11101e-15, 1.41539, -0.190281, -1.85814, 8.90493, 8.90493, 4.85864, -0.461631, -8.86902, -4.50793, 2.21115, 0.226431, 2.21115, 0.461631, 2.44635, 4.50793, -7.87269, 0.534693, 5.2214, -1.74951, -1.74951, 2.29678}, {-1.78885, -1.78885, -1.78885, 0.373467, 0.373467, 3.64699, 0, -4.817, 0, 1.41539, -0.190281, -1.85814, 1.74951, 1.74951, -2.29678, -1.9555, -3.94022, -19.0959, 9.36656, 7.38185, 9.36656, 0.461631, 2.44635, 4.50793, -2.21115, -0.226431, -2.21115, -7.41106, -0.988391, 9.72932}, {-1.78885, -1.78885, -1.78885, 0.373467, 0.373467, 3.64699, 2.82096e-16, 1.60567, -3.70338e-16, -4.24616, 0.570843, 5.57441, 1.74951, 1.74951, -2.29678, -0.461631, -2.44635, -4.50793, 2.21115, 0.226431, 2.21115, 7.61705, 9.60176, 11.6633, -3.70501, -1.7203, -16.7991, -1.74951, -8.17219, 2.29678}, {-4.24616, -4.24616, 5.57441, 3.15147, 2.92187e-16, 2.85327e-15, -1.78885, -1.78885, -1.78885, -2.778, 0.373467, 3.64699, -18.2508, -1.74951, 2.29678, -1.68428, 2.21115, 2.21115, 7.61705, 7.61705, 11.6633, 12.7963, -3.70501, -16.7991, -0.461631, -0.461631, -4.50793, 5.64494, 1.74951, -2.29678}, {1.41539, 1.41539, -1.85814, -9.45441, -5.07516e-15, -1.27584e-14, -1.78885, -1.78885, -1.78885, -2.778, 0.373467, 3.64699, -11.3065, -7.41106, 9.72932, 5.47113, 9.36656, 9.36656, 0.461631, 0.461631, 4.50793, 1.68428, -2.21115, -2.21115, 10.6504, -1.9555, -19.0959, 5.64494, 1.74951, -2.29678}, {1.41539, 1.41539, -1.85814, 3.15147, 0, 0, 5.36656, 5.36656, 5.36656, -2.778, 0.373467, 3.64699, -5.64494, -1.74951, 2.29678, -14.2902, 2.21115, 2.21115, -5.19992, -5.19992, 11.9405, 1.68428, -2.21115, -2.21115, -0.461631, -0.461631, -4.50793, 16.7569, 0.255645, -16.8847}, {1.41539, 1.41539, -1.85814, 3.15147, 2.92187e-16, 2.85327e-15, -1.78885, -1.78885, -1.78885, 8.334, -1.1204, -10.941, -5.64494, -1.74951, 2.29678, -1.68428, 2.21115, 2.21115, 0.461631, 0.461631, 4.50793, -3.97726, -7.87269, 5.2214, -13.0675, -0.461631, -4.50793, 12.8004, 8.90493, 4.85864}, {0.972456, 0.972456, -8.84811, 1.4362, 1.4362, 1.4362, -1.66806, -0.0623937, -1.66806, 0.556017, -1.04965, -2.71751, -7.11935, -7.11935, -11.1656, 0.286601, -1.69811, 0.286601, 9.13476, 0.727372, 5.08846, -2.51067, 5.89672, 10.5834, -2.46251, -0.477797, 1.58378, 1.37456, 1.37456, 5.42086}, {-0.324152, -0.324152, 2.94937, -4.30859, -4.30859, -4.30859, -1.66806, -0.0623937, -1.66806, 0.556017, -1.04965, -2.71751, -0.0779551, -0.0779551, -17.2183, 6.95885, -1.44854, 6.95885, 2.46251, 0.477797, -1.58378, -0.286601, 1.69811, -0.286601, -4.68658, 3.72081, 12.4538, 1.37456, 1.37456, 5.42086}, {-0.324152, -0.324152, 2.94937, 1.4362, 1.4362, 1.4362, 5.00419, 0.187181, 5.00419, 0.556017, -1.04965, -2.71751, -1.37456, -1.37456, -5.42086, -5.45818, -7.4429, -5.45818, 3.75912, 1.7744, -13.3813, -0.286601, 1.69811, -0.286601, -2.46251, -0.477797, 1.58378, -0.849506, 5.57317, 16.2909}, {-0.324152, -0.324152, 2.94937, 1.4362, 1.4362, 1.4362, -1.66806, -0.0623937, -1.66806, -1.66805, 3.14895, 8.15252, -1.37456, -1.37456, -5.42086, 0.286601, -1.69811, 0.286601, 2.46251, 0.477797, -1.58378, 1.01001, 2.99472, -12.0841, -8.2073, -6.22258, -4.161, 8.04681, 1.62414, 12.0931}, {3.33613, 3.33613, 13.1567, 1.4362, 1.4362, 1.4362, 0.767151, -2.38432, -2.38432, -1.0913, 2.06017, 5.33369, -6.14546, -6.14546, -2.09916, -2.72349, 1.17194, 1.17194, -2.64229, 13.859, 17.9053, 7.0887, -9.4126, -22.5067, -0.426311, -4.32174, -8.36804, 0.400674, 0.400674, -3.64562}, {-1.11204, -1.11204, -4.38557, -4.30859, -4.30859, -4.30859, 0.767151, -2.38432, -2.38432, -1.0913, 2.06017, 5.33369, 4.0475, 4.0475, 21.1879, -5.79209, 10.7092, 10.7092, 0.426311, 4.32174, 8.36804, 2.72349, -1.17194, -1.17194, 3.9389, -12.5624, -29.7028, 0.400674, 0.400674, -3.64562}, {-1.11204, -1.11204, -4.38557, 1.4362, 1.4362, 1.4362, -2.30145, 7.15295, 7.15295, -1.0913, 2.06017, 5.33369, -0.400674, -0.400674, 3.64562, -8.46827, -4.57284, -4.57284, 4.87449, 8.76992, 25.9103, 2.72349, -1.17194, -1.17194, -0.426311, -4.32174, -8.36804, 4.76589, -7.83999, -24.9804}, {-1.11204, -1.11204, -4.38557, 1.4362, 1.4362, 1.4362, 0.767151, -2.38432, -2.38432, 3.27391, -6.1805, -16.0011, -0.400674, -0.400674, 3.64562, -2.72349, 1.17194, 1.17194, 0.426311, 4.32174, 8.36804, 7.17167, 3.27624, 16.3703, -6.1711, -10.0665, -14.1128, -2.66793, 9.93794, 5.89165}, {-6.6428, 1.48026, 1.47837, 0.647646, 0.70771, -1.63632, -0.372676, 0.942791, 0.941589, -2.48924, -1.15708, 1.18752, -6.1281, -3.09572, 9.177, -0.339882, -2.04013, 0.858732, -0.785628, -4.32662, -4.3211, 10.2968, 6.66845, -5.60881, 2.27633, 0.555453, 0.554744, 3.53752, 0.264876, -2.63172}, {2.21427, -0.493421, -0.492791, -1.94294, -2.12313, 4.90895, -0.372676, 0.942791, 0.941589, -2.48924, -1.15708, 1.18752, -12.3946, 1.70881, 4.60289, 1.15082, -5.8113, -2.90762, -2.27633, -0.555453, -0.554744, 0.339882, 2.04013, -0.858732, 12.2333, 5.18378, -4.19534, 3.53752, 0.264876, -2.63172}, {2.21427, -0.493421, -0.492791, 0.647646, 0.70771, -1.63632, 1.11803, -2.82837, -2.82477, -2.48924, -1.15708, 1.18752, -3.53752, -0.264876, 2.63172, -2.93046, -4.87097, 7.404, -11.1334, 1.41823, 1.41642, 0.339882, 2.04013, -0.858732, 2.27633, 0.555453, 0.554744, 13.4945, 4.8932, -7.38181}, {2.21427, -0.493421, -0.492791, 0.647646, 0.70771, -1.63632, -0.372676, 0.942791, 0.941589, 7.46771, 3.47124, -3.56256, -3.53752, -0.264876, 2.63172, -0.339882, -2.04013, 0.858732, -2.27633, -0.555453, -0.554744, -8.51718, 4.01381, 1.11243, -0.314251, -2.27539, 7.10002, 5.02822, -3.50629, -6.39808}, {1.12186, -2.82659, -2.82659, -1.84098, -0.449088, -0.449088, 0.510215, -1.28552, 0.320147, 1.70472, 0.792411, -0.813257, 10.1017, 1.18683, 1.18683, 1.64492, 2.14409, 0.15938, -2.20929, 5.56645, -2.84093, -8.4638, -5.31374, 3.09365, 0.16843, -0.424371, 1.56034, -2.73781, 0.609518, 0.609518}, {-0.373952, 0.942198, 0.942198, 5.52295, 1.34726, 1.34726, 0.510215, -1.28552, 0.320147, 1.70472, 0.792411, -0.813257, 4.23362, -4.37831, -4.37831, -0.395942, 7.28618, -1.12121, -0.16843, 0.424371, -1.56034, -1.64492, -2.14409, -0.15938, -6.65045, -3.59401, 4.81337, -2.73781, 0.609518, 0.609518}, {-0.373952, 0.942198, 0.942198, -1.84098, -0.449088, -0.449088, -1.53064, 3.85656, -0.960441, 1.70472, 0.792411, -0.813257, 2.73781, -0.609518, -0.609518, 9.00885, 3.94045, 1.95573, 1.32738, -3.34442, -5.32914, -1.64492, -2.14409, -0.15938, 0.16843, -0.424371, 1.56034, -9.55669, -2.56013, 3.86255}, {-0.373952, 0.942198, 0.942198, -1.84098, -0.449088, -0.449088, 0.510215, -1.28552, 0.320147, -5.11416, -2.37723, 2.43977, 2.73781, -0.609518, -0.609518, 1.64492, 2.14409, 0.15938, -0.16843, 0.424371, -1.56034, -0.149109, -5.91289, -3.92817, 7.53236, 1.37198, 3.3567, -4.77867, 5.7516, -0.67107}, {0.461366, -4.35523, -1.72378, -0.132927, -0.133043, -2.07188, -0.954792, -0.955627, -0.378232, 1.24151, -0.363075, 1.87552, 0.886107, -1.09783, 10.1383, 1.34449, 1.34567, 3.0285, 5.18945, 3.20927, 1.27021, -6.31053, 0.10663, -10.5306, -1.37028, 0.613236, 0.242715, -0.3544, 1.63001, -1.85075}, {-0.153789, 1.45174, 0.574593, 0.39878, 0.399129, 6.21564, -0.954792, -0.955627, -0.378232, 1.24151, -0.363075, 1.87552, 0.969555, -7.43698, -0.447622, 5.16366, 5.16818, 4.54143, 1.37028, -0.613236, -0.242715, -1.34449, -1.34567, -3.0285, -6.33631, 2.06554, -7.25936, -0.3544, 1.63001, -1.85075}, {-0.153789, 1.45174, 0.574593, -0.132927, -0.133043, -2.07188, 2.86438, 2.86688, 1.1347, 1.24151, -0.363075, 1.87552, 0.3544, -1.63001, 1.85075, 1.8762, 1.87784, 11.316, 1.98544, -6.42021, -2.54109, -1.34449, -1.34567, -3.0285, -1.37028, 0.613236, 0.242715, -5.32043, 3.08231, -9.35282}, {-0.153789, 1.45174, 0.574593, -0.132927, -0.133043, -2.07188, -0.954792, -0.955627, -0.378232, -3.72452, 1.08923, -5.62656, 0.3544, -1.63001, 1.85075, 1.34449, 1.34567, 3.0285, 1.37028, -0.613236, -0.242715, -0.72934, -7.15265, -5.32687, -0.838575, 1.14541, 8.53023, 3.46477, 5.45251, -0.337821}, {4.44089e-16, 7.02938, 0, 1.54187, 1.54427, 0.609885, -1.74043, -1.74314, 1.3308, 0.198561, 2.542, -1.94068, -8.07331, -5.18964, -3.1934, 0.245434, 0.245817, -2.39881, 9.11299, 12.0235, -6.96814, -1.03968, -10.4138, 10.1615, -2.15129, -5.0509, 1.64495, 1.90585, -0.987441, 0.75386}, {3.05311e-16, -2.34313, -2.22045e-16, -4.6256, -4.63281, -1.82966, -1.74043, -1.74314, 1.3308, 0.198561, 2.542, -1.94068, -1.90585, 10.3599, -0.75386, 7.20714, 7.21837, -7.722, 2.15129, 5.0509, -1.64495, -0.245434, -0.245817, 2.39881, -2.94553, -15.2189, 9.40768, 1.90585, -0.987441, 0.75386}, {-3.60822e-16, -2.34313, -2.22045e-16, 1.54187, 1.54427, 0.609885, 5.22128, 5.22942, -3.99239, 0.198561, 2.542, -1.94068, -1.90585, 0.987441, -0.75386, -5.92203, -5.93126, -4.83836, 2.15129, 14.4234, -1.64495, -0.245434, -0.245817, 2.39881, -2.15129, -5.0509, 1.64495, 1.11161, -11.1554, 8.51658}, {-5.55112e-17, -2.34313, 0, 1.54187, 1.54427, 0.609885, -1.74043, -1.74314, 1.3308, -0.595682, -7.62599, 5.82204, -1.90585, 0.987441, -0.75386, 0.245434, 0.245817, -2.39881, 2.15129, 5.0509, -1.64495, -0.245434, 9.12668, 2.39881, -8.31875, -11.228, -0.794587, 8.86756, 5.98512, -4.56932}, {4.8128, 0, 0, 1.54178, 1.54312, 0.61076, 0.198549, 0.198723, -1.94057, -0.136059, -1.74185, 1.32981, -6.08986, -8.0799, -3.19798, -2.15116, -2.15304, 1.64373, 0.943366, -1.04052, 10.1609, 2.6954, 9.12042, -6.96297, -1.73756, 0.245635, -2.39867, -0.0772416, 1.90741, 0.754941}, {-1.60427, 0, 0, -4.62533, -4.62937, -1.83228, 0.198549, 0.198723, -1.94057, -0.136059, -1.74185, 1.32981, 6.49431, -1.90741, -0.754941, -2.94536, -2.94793, 9.40601, 1.73756, -0.245635, 2.39867, 2.15116, 2.15304, -1.64373, -1.19332, 7.21302, -7.71791, -0.0772416, 1.90741, 0.754941}, {-1.60427, 2.22045e-16, -2.22045e-16, 1.54178, 1.54312, 0.61076, -0.595647, -0.596168, 5.82171, -0.136059, -1.74185, 1.32981, 0.0772416, -1.90741, -0.754941, -8.31826, -8.32553, -0.799305, 8.15463, -0.245635, 2.39867, 2.15116, 2.15304, -1.64373, -1.73756, 0.245635, -2.39867, 0.466995, 8.87479, -4.5643}, {-1.60427, 0, -2.22045e-16, 1.54178, 1.54312, 0.61076, 0.198549, 0.198723, -1.94057, 0.408178, 5.22554, -3.98943, 0.0772416, -1.90741, -0.754941, -2.15116, -2.15304, 1.64373, 1.73756, -0.245635, 2.39867, 8.56822, 2.15304, -1.64373, -7.90467, -5.92686, -4.84171, -0.871438, 1.11252, 8.51722}, {4.91028, -4.91028, -4.91028, -1.57573, -1.57573, 1.57573, 1.57573, 1.57573, 1.57573, 1.63676, -1.63676, -4.78823, 10.2738, 6.2275, -10.2738, -3.02869e-13, -3.06644e-13, -3.89543, -6.2275, -10.2738, -10.2738, -6.54704, 6.54704, 23.0483, -0.0754334, 3.97086, 3.97086, -3.97086, 0.0754334, 3.97086}, {-1.63676, 1.63676, 1.63676, 4.7272, 4.7272, -4.7272, 1.57573, 1.57573, 1.57573, 1.63676, -1.63676, -4.78823, 10.5179, -6.62248, -10.5179, -6.30294, -6.30294, -10.1984, 0.0754334, -3.97086, -3.97086, 3.01943e-13, 3.04683e-13, 3.89543, -6.62248, 10.5179, 23.1238, -3.97086, 0.0754334, 3.97086}, {-1.63676, 1.63676, 1.63676, -1.57573, -1.57573, 1.57573, -4.7272, -4.7272, -4.7272, 1.63676, -1.63676, -4.78823, 3.97086, -0.0754334, -3.97086, 6.30294, 6.30294, -10.1984, 6.62248, -10.5179, -10.5179, 3.00389e-13, 2.99798e-13, 3.89543, -0.0754334, 3.97086, 3.97086, -10.5179, 6.62248, 23.1238}, {-1.63676, 1.63676, 1.63676, -1.57573, -1.57573, 1.57573, 1.57573, 1.57573, 1.57573, -4.91028, 4.91028, 14.3647, 3.97086, -0.0754334, -3.97086, -2.96652e-13, -3.00426e-13, -3.89543, 0.0754334, -3.97086, -3.97086, 6.54704, -6.54704, -2.65162, 6.2275, 10.2738, -2.33207, -10.2738, -6.2275, -2.33207}, {4.24616, -5.57441, -4.24616, 0, 0, 3.15147, 1.78885, 1.78885, -1.78885, -0.373467, -3.64699, -2.778, 1.74951, -2.29678, -18.2508, -2.21115, -2.21115, -1.68428, -7.61705, -11.6633, 7.61705, 3.70501, 16.7991, 12.7963, 0.461631, 4.50793, -0.461631, -1.74951, 2.29678, 5.64494}, {-1.41539, 1.85814, 1.41539, 5.07516e-15, 1.27584e-14, -9.45441, 1.78885, 1.78885, -1.78885, -0.373467, -3.64699, -2.778, 7.41106, -9.72932, -11.3065, -9.36656, -9.36656, 5.47113, -0.461631, -4.50793, 0.461631, 2.21115, 2.21115, 1.68428, 1.9555, 19.0959, 10.6504, -1.74951, 2.29678, 5.64494}, {-1.41539, 1.85814, 1.41539, 0, 0, 3.15147, -5.36656, -5.36656, 5.36656, -0.373467, -3.64699, -2.778, 1.74951, -2.29678, -5.64494, -2.21115, -2.21115, -14.2902, 5.19992, -11.9405, -5.19992, 2.21115, 2.21115, 1.68428, 0.461631, 4.50793, -0.461631, -0.255645, 16.8847, 16.7569}, {-1.41539, 1.85814, 1.41539, 0, 0, 3.15147, 1.78885, 1.78885, -1.78885, 1.1204, 10.941, 8.334, 1.74951, -2.29678, -5.64494, -2.21115, -2.21115, -1.68428, -0.461631, -4.50793, 0.461631, 7.87269, -5.2214, -3.97726, 0.461631, 4.50793, -13.0675, -8.90493, -4.85864, 12.8004}, {-5.36656, -5.36656, 5.36656, -0.373467, -3.64699, 0.373467, -1.60567, 0, 0, 0.190281, 1.85814, 1.41539, -0.255645, 16.8847, 0.255645, 2.44635, 4.50793, -0.461631, 6.19624, -2.21115, 2.21115, -3.20747, -11.9405, -5.19992, 0.226431, 2.21115, -2.21115, 1.74951, -2.29678, -1.74951}, {1.78885, 1.78885, -1.78885, 1.1204, 10.941, -1.1204, -1.60567, 0, 0, 0.190281, 1.85814, 1.41539, -8.90493, -4.85864, 8.90493, 8.86902, 4.50793, -0.461631, -0.226431, -2.21115, 2.21115, -2.44635, -4.50793, 0.461631, -0.534693, -5.2214, -7.87269, 1.74951, -2.29678, -1.74951}, {1.78885, 1.78885, -1.78885, -0.373467, -3.64699, 0.373467, 4.817, 0, 0, 0.190281, 1.85814, 1.41539, -1.74951, 2.29678, 1.74951, 3.94022, 19.0959, -1.9555, -7.38185, -9.36656, 9.36656, -2.44635, -4.50793, 0.461631, 0.226431, 2.21115, -2.21115, 0.988391, -9.72932, -7.41106}, {1.78885, 1.78885, -1.78885, -0.373467, -3.64699, 0.373467, -1.60567, 0, 0, -0.570843, -5.57441, -4.24616, -1.74951, 2.29678, 1.74951, 2.44635, 4.50793, -0.461631, -0.226431, -2.21115, 2.21115, -9.60176, -11.6633, 7.61705, 1.7203, 16.7991, -3.70501, 8.17219, -2.29678, -1.74951}, {-1.80799, -0.0150891, -4.77555, -0.827431, 1.45271, 0.471751, -0.860099, -1.45095, 0.0849431, 1.08487, -0.00678866, -2.14855, 3.58755, -7.6127, -4.43776, 2.0859, -0.00217419, -0.688112, 3.7586, 7.59105, -2.4124, -6.42536, 0.0293288, 9.28229, -0.318207, -1.78726, 2.07263, -0.277826, 1.80186, 2.55075}, {0.602665, 0.0050297, 1.59185, 2.48229, -4.35813, -1.41525, -0.860099, -1.45095, 0.0849431, 1.08487, -0.00678866, -2.14855, -2.13283, -1.82198, -8.91816, 5.5263, 5.80162, -1.02788, 0.318207, 1.78726, -2.07263, -2.0859, 0.00217419, 0.688112, -4.65767, -1.7601, 10.6668, -0.277826, 1.80186, 2.55075}, {0.602665, 0.0050297, 1.59185, -0.827431, 1.45271, 0.471751, 2.5803, 4.35285, -0.254829, 1.08487, -0.00678866, -2.14855, 0.277826, -1.80186, -2.55075, 5.39562, -5.81301, -2.57512, -2.09245, 1.76714, -8.44004, -2.0859, 0.00217419, 0.688112, -0.318207, -1.78726, 2.07263, -4.61729, 1.82902, 11.1449}, {0.602665, 0.0050297, 1.59185, -0.827431, 1.45271, 0.471751, -0.860099, -1.45095, 0.0849431, -3.2546, 0.020366, 6.44564, 0.277826, -1.80186, -2.55075, 2.0859, -0.00217419, -0.688112, 0.318207, 1.78726, -2.07263, -4.49656, -0.0179446, -5.67929, 2.99152, -7.59809, 0.185628, 3.16257, 7.60566, 2.21098}, {1.57878, 4.35912, 1.72866, 0.141226, 1.44665, -1.44665, 1.40644, -1.11582e-18, -3.53145e-16, -1.02141, 0.00639156, 2.02287, -0.0889792, -5.77869, 8.28699, -1.91302, -1.78815, 1.78815, -6.71372, 1.79605, 0.712247, 5.99864, 1.76259, -9.87962, 1.08796, -1.79605, -0.712247, -0.475926, -0.0079004, -2.5004}, {-0.526258, -1.45304, -0.57622, -0.423679, -4.33994, 4.33994, 1.40644, -3.34745e-18, -1.05944e-15, -1.02141, 0.00639156, 2.02287, 2.58096, 5.82005, 4.80528, -7.53877, -1.78815, 1.78815, -1.08796, 1.79605, 0.712247, 1.91302, 1.78815, -1.78815, 5.17359, -1.82162, -8.80371, -0.475926, -0.0079004, -2.5004}, {-0.526258, -1.45304, -0.57622, 0.141226, 1.44665, -1.44665, -4.21932, 0, 0, -1.02141, 0.00639156, 2.02287, 0.475926, 0.0079004, 2.5004, -2.47792, -7.57474, 7.57474, 1.01707, 7.60821, 3.01713, 1.91302, 1.78815, -1.78815, 1.08796, -1.79605, -0.712247, 3.6097, -0.0334666, -10.5919}, {-0.526258, -1.45304, -0.57622, 0.141226, 1.44665, -1.44665, 1.40644, 3.34745e-18, 1.05944e-15, 3.06422, -0.0191747, -6.0686, 0.475926, 0.0079004, 2.5004, -1.91302, -1.78815, 1.78815, -1.08796, 1.79605, 0.712247, 4.01805, 7.60031, 0.516725, 0.523057, -7.58264, 5.07434, -6.10168, -0.0079004, -2.5004}, {10.941, -1.1204, -1.1204, 1.78885, -1.78885, -1.78885, -3.70338e-16, -2.82096e-16, 1.60567, 1.85814, 1.41539, -0.190281, -4.85864, 8.90493, 8.90493, -2.21115, 2.21115, 0.226431, 4.50793, -0.461631, -8.86902, -5.2214, -7.87269, 0.534693, -4.50793, 0.461631, 2.44635, -2.29678, -1.74951, -1.74951}, {-3.64699, 0.373467, 0.373467, -5.36656, 5.36656, 5.36656, -1.11101e-15, -8.46287e-16, 1.60567, 1.85814, 1.41539, -0.190281, 16.8847, 0.255645, 0.255645, -2.21115, 2.21115, -6.19624, 4.50793, -0.461631, -2.44635, 2.21115, -2.21115, -0.226431, -11.9405, -5.19992, 3.20747, -2.29678, -1.74951, -1.74951}, {-3.64699, 0.373467, 0.373467, 1.78885, -1.78885, -1.78885, 0, 0, -4.817, 1.85814, 1.41539, -0.190281, 2.29678, 1.74951, 1.74951, -9.36656, 9.36656, 7.38185, 19.0959, -1.9555, -3.94022, 2.21115, -2.21115, -0.226431, -4.50793, 0.461631, 2.44635, -9.72932, -7.41106, -0.988391}, {-3.64699, 0.373467, 0.373467, 1.78885, -1.78885, -1.78885, 1.11101e-15, 8.46287e-16, 1.60567, -5.57441, -4.24616, 0.570843, 2.29678, 1.74951, 1.74951, -2.21115, 2.21115, 0.226431, 4.50793, -0.461631, -2.44635, 16.7991, -3.70501, -1.7203, -11.6633, 7.61705, 9.60176, -2.29678, -1.74951, -8.17219}, {-5.57441, -4.24616, -4.24616, 1.78885, -1.78885, -1.78885, 2.85327e-15, 3.15147, -2.92187e-16, -3.64699, -2.778, 0.373467, -11.6633, 7.61705, 7.61705, -2.21115, -1.68428, 2.21115, -2.29678, -18.2508, -1.74951, 16.7991, 12.7963, -3.70501, 2.29678, 5.64494, 1.74951, 4.50793, -0.461631, -0.461631}, {1.85814, 1.41539, 1.41539, -5.36656, 5.36656, 5.36656, -5.70654e-15, 3.15147, 5.84374e-16, -3.64699, -2.778, 0.373467, -11.9405, -5.19992, -5.19992, -2.21115, -14.2902, 2.21115, -2.29678, -5.64494, -1.74951, 2.21115, 1.68428, -2.21115, 16.8847, 16.7569, 0.255645, 4.50793, -0.461631, -0.461631}, {1.85814, 1.41539, 1.41539, 1.78885, -1.78885, -1.78885, 0, -9.45441, 0, -3.64699, -2.778, 0.373467, -4.50793, 0.461631, 0.461631, -9.36656, 5.47113, 9.36656, -9.72932, -11.3065, -7.41106, 2.21115, 1.68428, -2.21115, 2.29678, 5.64494, 1.74951, 19.0959, 10.6504, -1.9555}, {1.85814, 1.41539, 1.41539, 1.78885, -1.78885, -1.78885, -2.85327e-15, 3.15147, 2.92187e-16, 10.941, 8.334, -1.1204, -4.50793, 0.461631, 0.461631, -2.21115, -1.68428, 2.21115, -2.29678, -5.64494, -1.74951, -5.2214, -3.97726, -7.87269, -4.85864, 12.8004, 8.90493, 4.50793, -13.0675, -0.461631}, {0.184458, 9.63611, 9.63611, 0.802834, -0.802834, 0.802834, -1.57551, 1.57551, 1.57551, 0.834161, 2.43936, 0.833693, -4.12769, 8.17399, -0.233398, 0.955079, -0.955079, -2.93979, 8.32547, -4.27918, -4.27918, -4.29172, -8.80237, -0.394979, -2.02344, -2.02286, -2.02286, 0.916356, -4.96265, -2.97794}, {-0.0614861, -3.21204, -3.21204, -2.4085, 2.4085, -2.4085, -1.57551, 1.57551, 1.57551, 0.834161, 2.43936, 0.833693, -0.670412, 17.8108, 15.8261, 7.25711, -7.25711, -9.24183, 2.02344, 2.02286, 2.02286, -0.955079, 0.955079, 2.93979, -5.36008, -11.7803, -5.35763, 0.916356, -4.96265, -2.97794}, {-0.0614861, -3.21204, -3.21204, 0.802834, -0.802834, 0.802834, 4.72653, -4.72653, -4.72653, 0.834161, 2.43936, 0.833693, -0.916356, 4.96265, 2.97794, -2.25626, 2.25626, -6.15113, 2.26938, 14.871, 14.871, -0.955079, 0.955079, 2.93979, -2.02344, -2.02286, -2.02286, -2.42029, -14.7201, -6.31271}, {-0.0614861, -3.21204, -3.21204, 0.802834, -0.802834, 0.802834, -1.57551, 1.57551, 1.57551, -2.50248, -7.31808, -2.50108, -0.916356, 4.96265, 2.97794, 0.955079, -0.955079, -2.93979, 2.02344, 2.02286, 2.02286, -0.709135, 13.8032, 15.7879, -5.23477, 1.18848, -5.23419, 7.21839, -11.2647, -9.27997}, {4.72653, -4.72653, -4.72653, 1.637, 1.63653, 1.63653, 1.57573, 1.57573, -1.57573, -1.63722, -4.78777, -1.6363, -6.62398, -10.5164, -10.5164, -3.97115, -3.97057, -0.0751443, -6.30322, -10.1981, 6.30322, 10.52, 23.1217, 6.62035, 0.000278382, 3.89515, -0.000278382, 0.076001, 3.9703, 3.9703}, {-1.57551, 1.57551, 1.57551, -4.91099, -4.90958, -4.90958, 1.57573, 1.57573, -1.57573, -1.63722, -4.78777, -1.6363, 6.22604, -10.2723, -10.2723, -10.2741, -10.2735, 6.22779, -0.000278382, -3.89515, 0.000278382, 3.97115, 3.97057, 0.0751443, 6.54916, 23.0462, 6.54493, 0.076001, 3.9703, 3.9703}, {-1.57551, 1.57551, 1.57551, 1.637, 1.63653, 1.63653, -4.7272, -4.7272, 4.7272, -1.63722, -4.78777, -1.6363, -0.076001, -3.9703, -3.9703, -10.5191, -10.5167, -6.62125, 6.30176, -10.1972, -6.30176, 3.97115, 3.97057, 0.0751443, 0.000278382, 3.89515, -0.000278382, 6.62488, 23.1214, 10.5155}, {-1.57551, 1.57551, 1.57551, 1.637, 1.63653, 1.63653, 1.57573, 1.57573, -1.57573, 4.91166, 14.3633, 4.90891, -0.076001, -3.9703, -3.9703, -3.97115, -3.97057, -0.0751443, -0.000278382, -3.89515, 0.000278382, 10.2732, -2.33146, -6.22689, -6.5477, -2.65096, -6.54639, -6.22694, -2.33264, 10.2732}, {2.2538, -2.2568, -6.95596, 1.0326, -1.0322, -0.409331, 0.623613, 1.72184, 0.682817, -0.904944, -1.44191, -2.59214, -4.47814, 4.47482, -0.722725, -2.04719, -0.852443, -0.338046, -2.33666, -9.94553, -6.44129, 5.66697, 6.62007, 10.7066, -0.157789, 3.05817, 3.71002, 0.347745, -0.346017, 2.36005}, {-0.751267, 0.752267, 2.31865, -3.09779, 3.0966, 1.22799, 0.623613, 1.72184, 0.682817, -0.904944, -1.44191, -2.59214, 2.65732, -2.66305, -11.6347, -4.54164, -7.73981, -3.06931, 0.157789, -3.05817, -3.71002, 2.04719, 0.852443, 0.338046, 3.46199, 8.8258, 14.0786, 0.347745, -0.346017, 2.36005}, {-0.751267, 0.752267, 2.31865, 1.0326, -1.0322, -0.409331, -1.87084, -5.16552, -2.04845, -0.904944, -1.44191, -2.59214, -0.347745, 0.346017, -2.36005, -6.17758, 3.27636, 1.29928, 3.16286, -6.06723, -12.9846, 2.04719, 0.852443, 0.338046, -0.157789, 3.05817, 3.71002, 3.96752, 5.42161, 12.7286}, {-0.751267, 0.752267, 2.31865, 1.0326, -1.0322, -0.409331, 0.623613, 1.72184, 0.682817, 2.71483, 4.32572, 7.77641, -0.347745, 0.346017, -2.36005, -2.04719, -0.852443, -0.338046, 0.157789, -3.05817, -3.71002, 5.05226, -2.15663, -8.93656, -4.28818, 7.18697, 5.34735, -2.14671, -7.23338, -0.371216}, {4.6308, -4.62902, -1.83569, 1.74378, -1.74182, 1.32959, 2.34612, 3.47392e-16, -3.39235e-15, -2.5463, 0.198817, -1.94149, -7.22258, 7.21305, -7.71818, -5.0554, 2.15301, -1.64347, -10.3764, -1.90726, -0.756347, 15.2406, -2.94828, 9.40942, 0.991964, 1.90726, 0.756347, 0.24744, -0.245751, 2.39981}, {-1.5436, 1.54301, 0.611898, -5.23135, 5.22547, -3.98877, 2.34612, -2.31594e-16, 2.26157e-15, -2.5463, 0.198817, -1.94149, 5.92697, -5.92628, -4.8474, -14.4399, 2.15301, -1.64347, -0.991964, -1.90726, -0.756347, 5.0554, -2.15301, 1.64347, 11.1772, 1.11199, 8.5223, 0.24744, -0.245751, 2.39981}, {-1.5436, 1.54301, 0.611898, 1.74378, -1.74182, 1.32959, -7.03835, 0, 0, -2.5463, 0.198817, -1.94149, -0.24744, 0.245751, -2.39981, -12.0305, 9.12031, -6.96183, 5.18244, -8.07929, -3.20394, 5.0554, -2.15301, 1.64347, 0.991964, 1.90726, 0.756347, 10.4326, -1.04102, 10.1658}, {-1.5436, 1.54301, 0.611898, 1.74378, -1.74182, 1.32959, 2.34612, 1.15797e-16, -1.13078e-15, 7.6389, -0.59645, 5.82447, -0.24744, 0.245751, -2.39981, -5.0554, 2.15301, -1.64347, -0.991964, -1.90726, -0.756347, 11.2298, -8.32504, -0.804126, -5.98318, 8.87456, -4.56202, -9.13703, -0.245751, 2.39981}, {7.47016e-18, 3.62803, 8.88178e-16, -1.45582, 0.0794645, -1.44142, 1.45582, 0.249439, -0.577805, -1.62092e-12, 0.88044, 2.01922, 7.62276, 1.07875, 7.54736, -2.00373e-12, -0.406547, 2.4959, -7.62276, 0.188753, 3.02542, 8.48742e-12, -3.11521, -10.5728, 1.79949, -1.18651, -0.714206, -1.79949, -1.39661, -1.78169}, {-1.75097e-16, -1.20934, 0, 4.36745, -0.238394, 4.32425, 1.45582, 0.249439, -0.577805, -1.62031e-12, 0.88044, 2.01922, 1.79949, 6.23398, 1.78169, -5.82327, -1.4043, 4.80711, -1.79949, 1.18651, 0.714206, 2.00284e-12, 0.406547, -2.4959, 1.79949, -4.70827, -8.79109, -1.79949, -1.39661, -1.78169}, {-7.62205e-17, -1.20934, 0, -1.45582, 0.0794645, -1.44142, -4.36745, -0.748316, 1.73341, -1.61907e-12, 0.88044, 2.01922, 1.79949, 1.39661, 1.78169, 5.82327, -0.724405, 8.26156, -1.79949, 6.02388, 0.714206, 2.00151e-12, 0.406547, -2.4959, 1.79949, -1.18651, -0.714206, -1.79949, -4.91837, -9.85858}, {-1.9973e-16, -1.20934, 4.44089e-16, -1.45582, 0.0794645, -1.44142, 1.45582, 0.249439, -0.577805, 4.86018e-12, -2.64132, -6.05767, 1.79949, 1.39661, 1.78169, -2.00262e-12, -0.406547, 2.4959, -1.79949, 1.18651, 0.714206, 2.00364e-12, 5.24392, -2.4959, 7.62276, -1.50437, 5.05146, -7.62276, -2.39436, 0.529529}, {4.15997e-12, 1.3684, -5.1823, 1.45582, 0.310608, -0.437518, -1.45582, 0.975521, 0.61362, 1.52817e-12, -0.829997, -1.90353, -7.62276, -1.06255, 0.155649, 1.74971e-13, -1.58974, -0.217674, 7.62276, -4.54408, -5.34818, -6.28766e-12, 4.90973, 7.83181, -1.79949, 0.642, 2.8937, 1.79949, -0.179878, 1.59442}, {-1.3859e-12, -0.456132, 1.72743, -4.36745, -0.931824, 1.31255, -1.45582, 0.975521, 0.61362, 1.52713e-12, -0.829997, -1.90353, -1.79949, 2.00441, -8.50415, 5.82327, -5.49183, -2.67215, 1.79949, -0.642, -2.8937, -1.74749e-13, 1.58974, 0.217674, -1.79949, 3.96199, 10.5078, 1.79949, -0.179878, 1.59442}, {-1.38592e-12, -0.456132, 1.72743, 1.45582, 0.310608, -0.437518, 4.36745, -2.92656, -1.84086, 1.52736e-12, -0.829997, -1.90353, -1.79949, 0.179878, -1.59442, -5.82327, -2.83217, 1.5324, 1.79949, 1.18253, -9.80343, -1.74749e-13, 1.58974, 0.217674, -1.79949, 0.642, 2.8937, 1.79949, 3.14011, 9.20856}, {-1.38453e-12, -0.456132, 1.72743, 1.45582, 0.310608, -0.437518, -1.45582, 0.975521, 0.61362, -4.57858e-12, 2.48999, 5.7106, -1.79949, 0.179878, -1.59442, 1.75193e-13, -1.58974, -0.217674, 1.79949, -0.642, -2.8937, 5.36315e-12, 3.41427, -6.69206, -7.62276, -0.600431, 4.64377, 7.62276, -4.08196, -0.860057}, {3.89774, -2.39084, -3.90175, -1.08034, -0.824783, -1.26412, 1.27484, -0.81558, 1.06845, 1.10475, 0.843417, -1.10491, 7.26269, 3.33354, 5.01139, -0.240416, 2.0276, 0.241863, -5.06919, 3.28535, -7.20207, -4.17857, -5.40127, 4.17779, -0.0301684, -0.023032, 2.92828, -2.94133, -0.0344082, 0.0450763}, {-1.29925, 0.796947, 1.30058, 3.24102, 2.47435, 3.79235, 1.27484, -0.81558, 1.06845, 1.10475, 0.843417, -1.10491, 8.13832, -3.15338, -5.24742, -5.33978, 5.28992, -4.03192, 0.0301684, 0.023032, -2.92828, 0.240416, -2.0276, -0.241863, -4.44916, -3.3967, 7.34794, -2.94133, -0.0344082, 0.0450763}, {-1.29925, 0.796947, 1.30058, -1.08034, -0.824783, -1.26412, -3.82452, 2.44674, -3.20534, 1.10475, 0.843417, -1.10491, 2.94133, 0.0344082, -0.0450763, 4.08094, 5.32673, 5.29833, 5.22716, -3.16475, -8.13062, 0.240416, -2.0276, -0.241863, -0.0301684, -0.023032, 2.92828, -7.36032, -3.40808, 4.46473}, {-1.29925, 0.796947, 1.30058, -1.08034, -0.824783, -1.26412, 1.27484, -0.81558, 1.06845, -3.31424, -2.53025, 3.31474, 2.94133, 0.0344082, -0.0450763, -0.240416, 2.0276, 0.241863, 0.0301684, 0.023032, -2.92828, 5.43741, -5.21539, -5.4442, 4.29119, 3.2761, 7.98475, -8.04069, 3.22791, -4.22871}, {-7.02938, 0, 7.99361e-15, 0, 0, -2.34462, -1.02079e-11, 1.78885, 0.00114147, -2.34313, -1.78885, 2.34348, -2.89626, 0, 12.2766, 1.26176e-11, -2.21115, 2.8967, -2.89626, -9.36656, -0.00597681, 9.3725, 9.36656, -12.2706, 2.89626, 2.21115, 0.00141093, 2.89626, 0, -2.89811}, {2.34313, 0, 4.44089e-15, 0, 0, 7.03386, -1.02099e-11, 1.78885, 0.00114147, -2.34313, -1.78885, 2.34348, -12.2688, 0, 2.89811, 5.346e-11, -9.36656, 2.89213, -2.89626, -2.21115, -0.00141093, -1.26208e-11, 2.21115, -2.8967, 12.2688, 9.36656, -9.37251, 2.89626, 0, -2.89811}, {2.34313, -4.21885e-15, 2.22045e-15, 0, 0, -2.34462, 3.06361e-11, -5.36656, -0.00342441, -2.34313, -1.78885, 2.34348, -2.89626, 5.32907e-15, 2.89811, 1.26228e-11, -2.21115, 12.2752, -12.2688, -2.21115, -0.00141093, -1.26233e-11, 2.21115, -2.8967, 2.89626, 2.21115, 0.00141093, 12.2688, 7.15542, -12.272}, {2.34313, 3.10862e-15, -3.9968e-15, 0, 0, -2.34462, -1.0211e-11, 1.78885, 0.00114147, 7.02938, 5.36656, -7.03044, -2.89626, -3.55271e-15, 2.89811, 1.26215e-11, -2.21115, 2.8967, -2.89626, -2.21115, -0.00141093, -9.3725, 2.21115, -2.8967, 2.89626, 2.21115, 9.37989, 2.89626, -7.15542, -2.90268}, {-4.72653, 4.72653, 4.72653, -0.802949, -0.802719, 0.802949, -3.21204, 3.21204, -0.0614861, 2.43948, -0.833808, 0.834046, 2.25686, 6.15053, -2.25686, 4.96279, -2.97808, -0.916498, 14.871, -14.871, 2.26938, -14.7207, 6.31331, -2.41969, -2.02286, 2.02286, -2.02344, 0.954937, -2.93965, -0.954937}, {1.57551, -1.57551, -1.57551, 2.40885, 2.40816, -2.40885, -3.21204, 3.21204, -0.0614861, 2.43948, -0.833808, 0.834046, -7.25697, 9.24169, 7.25697, 17.8109, -15.8262, -0.670554, 2.02286, -2.02286, 2.02344, -4.96279, 2.97808, 0.916498, -11.7808, 5.35809, -5.35962, 0.954937, -2.93965, -0.954937}, {1.57551, -1.57551, -1.57551, -0.802949, -0.802719, 0.802949, 9.63611, -9.63611, 0.184458, 2.43948, -0.833808, 0.834046, -0.954937, 2.93965, 0.954937, 8.17459, 0.232798, -4.12829, -4.27918, 4.27918, 8.32547, -4.96279, 2.97808, 0.916498, -2.02286, 2.02286, -2.02344, -8.80297, 0.39558, -4.29112}, {1.57551, -1.57551, -1.57551, -0.802949, -0.802719, 0.802949, -3.21204, 3.21204, -0.0614861, -7.31843, 2.50142, -2.50214, -0.954937, 2.93965, 0.954937, 4.96279, -2.97808, -0.916498, 2.02286, -2.02286, 2.02344, -11.2648, 9.28012, 7.21853, 1.18894, 5.23374, -5.23523, 13.8031, -15.7878, -0.708993}, {-4.72653, 4.72653, 4.72653, 1.57596, 1.57551, 1.57551, 1.63653, -1.63653, 1.637, -4.788, 1.63653, -1.637, -10.1993, -6.30204, -6.30204, -3.97085, 0.0754226, -3.97087, -10.5164, 10.5164, -6.62398, 23.1228, -6.62153, 10.5189, 3.9703, -3.9703, 0.076001, 3.89543, -1.81144e-12, -1.80922e-12}, {1.57551, -1.57551, -1.57551, -4.72788, -4.72653, -4.72653, 1.63653, -1.63653, 1.637, -4.788, 1.63653, -1.637, -10.1975, 6.30204, 6.30204, -10.517, 6.62153, -10.5189, -3.9703, 3.9703, -0.076001, 3.97085, -0.0754226, 3.97087, 23.1223, -10.5164, 6.62398, 3.89543, -1.81766e-12, -1.81499e-12}, {1.57551, -1.57551, -1.57551, 1.57596, 1.57551, 1.57551, -4.90958, 4.90958, -4.91099, -4.788, 1.63653, -1.637, -3.89543, 1.81677e-12, 1.81988e-12, -10.2747, -6.22661, -10.2729, -10.2723, 10.2723, 6.22604, 3.97085, -0.0754226, 3.97087, 3.9703, -3.9703, 0.076001, 23.0474, -6.54611, 6.54798}, {1.57551, -1.57551, -1.57551, 1.57596, 1.57551, 1.57551, 1.63653, -1.63653, 1.637, 14.364, -4.90958, 4.91099, -3.89543, 1.81632e-12, 1.81677e-12, -3.97085, 0.0754226, -3.97087, -3.9703, 3.9703, -0.076001, -2.33118, 6.22661, 10.2729, -2.33354, -10.2723, -6.22604, -2.65068, 6.54611, -6.54798}, {-1.1204, 1.1204, 10.941, 0, -1.60567, 0, -1.78885, 1.78885, 1.78885, 1.41539, 0.190281, 1.85814, -0.461631, 8.86902, 4.50793, 2.21115, -0.226431, -2.21115, 8.90493, -8.90493, -4.85864, -7.87269, -0.534693, -5.2214, -1.74951, 1.74951, -2.29678, 0.461631, -2.44635, -4.50793}, {0.373467, -0.373467, -3.64699, 0, 4.817, 0, -1.78885, 1.78885, 1.78885, 1.41539, 0.190281, 1.85814, -1.9555, 3.94022, 19.0959, 9.36656, -7.38185, -9.36656, 1.74951, -1.74951, 2.29678, -2.21115, 0.226431, 2.21115, -7.41106, 0.988391, -9.72932, 0.461631, -2.44635, -4.50793}, {0.373467, -0.373467, -3.64699, 0, -1.60567, 0, 5.36656, -5.36656, -5.36656, 1.41539, 0.190281, 1.85814, -0.461631, 2.44635, 4.50793, 2.21115, 6.19624, -2.21115, 0.255645, -0.255645, 16.8847, -2.21115, 0.226431, 2.21115, -1.74951, 1.74951, -2.29678, -5.19992, -3.20747, -11.9405}, {0.373467, -0.373467, -3.64699, 0, -1.60567, 0, -1.78885, 1.78885, 1.78885, -4.24616, -0.570843, -5.57441, -0.461631, 2.44635, 4.50793, 2.21115, -0.226431, -2.21115, 1.74951, -1.74951, 2.29678, -3.70501, 1.7203, 16.7991, -1.74951, 8.17219, -2.29678, 7.61705, -9.60176, -11.6633}, {-9.45441, 1.33227e-15, 1.59872e-14, -1.78885, 1.78885, 1.78885, 1.41539, -1.41539, 1.85814, -2.778, -0.373467, -3.64699, 5.47113, -9.36656, -9.36656, 0.461631, -0.461631, -4.50793, -11.3065, 7.41106, -9.72932, 10.6504, 1.9555, 19.0959, 5.64494, -1.74951, 2.29678, 1.68428, 2.21115, 2.21115}, {3.15147, -1.88738e-15, -7.10543e-15, 5.36656, -5.36656, -5.36656, 1.41539, -1.41539, 1.85814, -2.778, -0.373467, -3.64699, -14.2902, -2.21115, -2.21115, -5.19992, 5.19992, -11.9405, -5.64494, 1.74951, -2.29678, -0.461631, 0.461631, 4.50793, 16.7569, -0.255645, 16.8847, 1.68428, 2.21115, 2.21115}, {3.15147, 2.55351e-15, -3.10862e-15, -1.78885, 1.78885, 1.78885, -4.24616, 4.24616, -5.57441, -2.778, -0.373467, -3.64699, -1.68428, -2.21115, -2.21115, 7.61705, -7.61705, -11.6633, -18.2508, 1.74951, -2.29678, -0.461631, 0.461631, 4.50793, 5.64494, -1.74951, 2.29678, 12.7963, 3.70501, 16.7991}, {3.15147, 6.10623e-16, 3.9968e-15, -1.78885, 1.78885, 1.78885, 1.41539, -1.41539, 1.85814, 8.334, 1.1204, 10.941, -1.68428, -2.21115, -2.21115, 0.461631, -0.461631, -4.50793, -5.64494, 1.74951, -2.29678, -13.0675, 0.461631, 4.50793, 12.8004, -8.90493, -4.85864, -3.97726, 7.87269, -5.2214}, {0.889469, 0.890856, -5.70584, -0.741046, -0.742202, -0.293121, 1.30296, -1.03813, 0.515387, -0.265426, 2.07729, -2.12421, 4.24665, 4.25327, -0.816132, -0.694566, 2.20061, -0.274736, -6.45592, 5.80278, -5.04953, 1.75627, -10.5098, 8.77158, 1.24407, -1.65026, 2.98799, -1.28247, -1.28446, 1.98862}, {-0.29649, -0.296952, 1.90195, 2.22314, 2.2266, 0.879363, 1.30296, -1.03813, 0.515387, -0.265426, 2.07729, -2.12421, 2.46842, 2.47227, -9.5964, -5.90641, 6.35314, -2.33628, -1.24407, 1.65026, -2.98799, 0.694566, -2.20061, 0.274736, 2.30577, -9.9594, 11.4848, -1.28247, -1.28446, 1.98862}, {-0.29649, -0.296952, 1.90195, -0.741046, -0.742202, -0.293121, -3.90889, 3.1144, -1.54616, -0.265426, 2.07729, -2.12421, 1.28247, 1.28446, -1.98862, 2.26962, 5.16942, 0.897749, -0.0581089, 2.83806, -10.5958, 0.694566, -2.20061, 0.274736, 1.24407, -1.65026, 2.98799, -0.220762, -9.59361, 10.4855}, {-0.29649, -0.296952, 1.90195, -0.741046, -0.742202, -0.293121, 1.30296, -1.03813, 0.515387, 0.796277, -6.23186, 6.37263, 1.28247, 1.28446, -1.98862, -0.694566, 2.20061, -0.274736, -1.24407, 1.65026, -2.98799, 1.88052, -1.01281, -7.33305, 4.20825, 1.31855, 4.16047, -6.49431, 2.86807, -0.0729313}, {1.60243, -4.68893, 4.44089e-16, 1.23856, -0.534131, 1.50236e-16, -0.868329, 0.25394, -1.31177, 0.163908, -1.28279, 1.31177, -5.82496, 0.864798, -6.66134e-16, -0.457635, 0.346335, 1.62143, 5.20686, -3.26159, 6.86849, -0.197999, 4.78481, -6.86849, -1.73355, 2.24583, -1.62143, 0.870711, 1.27173, 0}, {-0.534143, 1.56298, -2.22045e-16, -3.71569, 1.60239, -6.76061e-16, -0.868329, 0.25394, -1.31177, 0.163908, -1.28279, 1.31177, 1.26586, -7.52364, 8.88178e-16, 3.01568, -0.669425, 6.86849, 1.73355, -2.24583, 1.62143, 0.457635, -0.346335, -1.62143, -2.38918, 7.37698, -6.86849, 0.870711, 1.27173, 0}, {-0.534143, 1.56298, 2.22045e-16, 1.23856, -0.534131, -3.00472e-16, 2.60499, -0.76182, 3.9353, 0.163908, -1.28279, 1.31177, -0.870711, -1.27173, 0, -5.41189, 2.48286, 1.62143, 3.87012, -8.49775, 1.62143, 0.457635, -0.346335, -1.62143, -1.73355, 2.24583, -1.62143, 0.215077, 6.40287, -5.24706}, {-0.534143, 1.56298, 0, 1.23856, -0.534131, 4.50708e-16, -0.868329, 0.25394, -1.31177, -0.491725, 3.84836, -3.9353, -0.870711, -1.27173, -4.44089e-16, -0.457635, 0.346335, 1.62143, 1.73355, -2.24583, 1.62143, 2.59421, -6.59825, -1.62143, -6.6878, 4.38236, -1.62143, 4.34403, 0.255965, 5.24706}, {3.16808, 2.71157e-16, -8.88178e-16, -0.300269, 1.44665, -1.44665, 0.153249, -1.44665, -0.572575, 1.20305, -1.58738e-12, 2.01922, 2.87755, -7.57474, 7.57474, 0.181727, -1.96199e-12, 2.4959, 0.502898, 7.57474, 2.99804, -4.99391, 8.31151e-12, -10.5728, -1.11589, -1.78815, -0.707741, -1.67647, 1.78815, -1.78815}, {-1.05603, 1.56152e-17, 0, 0.900808, -4.33994, 4.33994, 0.153249, -1.44665, -0.572575, 1.20305, -1.58652e-12, 2.01922, 5.90057, -1.78815, 1.78815, -0.431268, 5.78659, 4.7862, 1.11589, 1.78815, 0.707741, -0.181727, 1.9611e-12, -2.4959, -5.92808, -1.78815, -8.78463, -1.67647, 1.78815, -1.78815}, {-1.05603, -4.03605e-17, 0, -0.300269, 1.44665, -1.44665, -0.459746, 4.33994, 1.71772, 1.20305, -1.58802e-12, 2.01922, 1.67647, -1.78815, 1.78815, 1.3828, -5.78659, 8.28248, 5.34, 1.78815, 0.707741, -0.181727, 1.96287e-12, -2.4959, -1.11589, -1.78815, -0.707741, -6.48866, 1.78815, -9.86504}, {-1.05603, -1.63709e-17, 4.44089e-16, -0.300269, 1.44665, -1.44665, 0.153249, -1.44665, -0.572575, -3.60914, 4.76214e-12, -6.05767, 1.67647, -1.78815, 1.78815, 0.181727, -1.96221e-12, 2.4959, 1.11589, 1.78815, 0.707741, 4.04237, 1.96294e-12, -2.4959, 0.0851836, -7.57474, 5.07885, -2.28947, 7.57474, 0.502145}, {-1.48316, 4.33994, 1.33227e-15, 0.561638, 1.44665, 4.17162e-16, -0.27448, -1.03171e-12, 1.31177, -0.781545, 1.03171e-12, -1.31177, -3.55187, -5.78659, -1.77636e-15, -0.354947, -1.78815, -1.62143, 0.8261, 1.78815, -6.86849, 3.48113, 1.78815, 6.86849, 0.27182, -1.78815, 1.62143, 1.30532, 0, 0}, {0.494387, -1.44665, 2.22045e-16, -1.68492, -4.33994, 8.34324e-16, -0.27448, -1.03124e-12, 1.31177, -0.781545, 1.03124e-12, -1.31177, -3.28287, 5.78659, -8.88178e-16, 0.742973, -1.78815, -6.86849, -0.27182, 1.78815, -1.62143, 0.354947, 1.78815, 1.62143, 3.398, -1.78815, 6.86849, 1.30532, 0, 0}, {0.494387, -1.44665, -2.22045e-16, 0.561638, 1.44665, 2.78108e-16, 0.82344, 3.09443e-12, -3.9353, -0.781545, 1.03148e-12, -1.31177, -1.30532, 3.59135e-16, 0, -2.6015, -7.57474, -1.62143, -2.24937, 7.57474, -1.62143, 0.354947, 1.78815, 1.62143, 0.27182, -1.78815, 1.62143, 4.4315, -4.1259e-12, 5.24706}, {0.494387, -1.44665, 2.22045e-16, 0.561638, 1.44665, -2.78108e-16, -0.27448, -1.03171e-12, 1.31177, 2.34464, -3.09513e-12, 3.9353, -1.30532, 3.59135e-16, 0, -0.354947, -1.78815, -1.62143, -0.27182, 1.78815, -1.62143, -1.6226, 7.57474, 1.62143, -1.97473, -7.57474, 1.62143, 2.40324, 4.12684e-12, -5.24706}, {4.33994, 0.162335, 4.33994, 0, 1.38248, 0, 1.44665, 0.246581, -0.572575, -1.76997e-12, -1.57494, 2.01922, 1.78815, -7.17185, 1.78815, -1.78815, -2.01362, 0.707741, -5.78659, -1.22423, 4.7862, 1.78815, 8.3134, -8.78463, 2.1878e-12, 0.237905, -2.4959, -1.78815, 1.64195, -1.78815}, {-1.44665, -0.0541117, -1.44665, -1.48949e-15, -4.14743, -5.64752e-15, 1.44665, 0.246581, -0.572575, -1.77017e-12, -1.57494, 2.01922, 7.57474, -1.4255, 7.57474, -7.57474, -2.99995, 2.99804, -2.18708e-12, -0.237905, 2.4959, 1.78815, 2.01362, -0.707741, 9.26812e-12, 6.53768, -10.5728, -1.78815, 1.64195, -1.78815}, {-1.44665, -0.0541117, -1.44665, -2.42885e-27, 1.38248, 2.77202e-15, -4.33994, -0.739742, 1.71772, -1.76924e-12, -1.57494, 2.01922, 1.78815, -1.64195, 1.78815, -1.78815, -7.54353, 0.707741, 5.78659, -0.021458, 8.28248, 1.78815, 2.01362, -0.707741, 2.1869e-12, 0.237905, -2.4959, -1.78815, 7.94173, -9.86504}, {-1.44665, -0.0541117, -1.44665, 0, 1.38248, 0, 1.44665, 0.246581, -0.572575, 5.31045e-12, 4.72483, -6.05767, 1.78815, -1.64195, 1.78815, -1.78815, -2.01362, 0.707741, -2.18766e-12, -0.237905, 2.4959, 7.57474, 2.23007, 5.07885, 2.18802e-12, -5.292, -2.4959, -7.57474, 0.655625, 0.502145}, {-4.33994, 1.02197, -0.540949, -9.62561e-13, 0.52571, 1.09845, -1.44665, -1.05053, -0.169142, 9.72352e-13, 0.86548, -1.10962, -1.78815, -2.33158, -5.97445, 1.78815, 0.648718, -1.14869, 5.78659, 5.92175, 0.662758, -1.78815, -4.11064, 5.58719, -1.2103e-14, -1.71961, 0.0138116, 1.78815, 0.22874, 1.58064}, {1.44665, -0.340656, 0.180316, 2.88884e-12, -1.57713, -3.29535, -1.44665, -1.05053, -0.169142, 9.72241e-13, 0.86548, -1.10962, -7.57474, 1.13389, -2.30191, 7.57474, 4.85086, -0.472119, 1.11288e-14, 1.71961, -0.0138116, -1.78815, -0.648718, 1.14869, -3.90045e-12, -5.18153, 4.45231, 1.78815, 0.22874, 1.58064}, {1.44665, -0.340656, 0.180316, -9.63744e-13, 0.52571, 1.09845, 4.33994, 3.1516, 0.507427, 9.73548e-13, 0.86548, -1.10962, -1.78815, -0.22874, -1.58064, 1.78815, -1.45412, -5.54249, -5.78659, 3.08223, -0.735077, -1.78815, -0.648718, 1.14869, -1.21179e-14, -1.71961, 0.0138116, 1.78815, -3.23318, 6.01914}, {1.44665, -0.340656, 0.180316, -9.6335e-13, 0.52571, 1.09845, -1.44665, -1.05053, -0.169142, -2.91945e-12, -2.59644, 3.32887, -1.78815, -0.22874, -1.58064, 1.78815, 0.648718, -1.14869, 1.17538e-14, 1.71961, -0.0138116, -7.57474, 0.713906, 0.427423, 3.84129e-12, -3.82245, -4.37999, 7.57474, 4.43088, 2.25721}, {-4.74899, 4.74899, 3.61742, 0.497745, -0.497745, 2.77232, -2.29648, -0.854984, 1.74929, 0.215741, 2.93573, -3.3158, -4.56292, 4.56292, -13.0256, 2.22336, 1.67207, -5.58902, 10.0679, 6.43345, -7.66893, -3.08633, -13.415, 18.8522, -0.881918, -3.01351, 0.671778, 2.57194, -2.57194, 1.93632}, {1.583, -1.583, -1.20581, -1.49324, 1.49324, -8.31697, -2.29648, -0.854984, 1.74929, 0.215741, 2.93573, -3.3158, -8.90393, 8.90393, 2.88691, 11.4093, 5.092, -12.5862, 0.881918, 3.01351, -0.671778, -2.22336, -1.67207, 5.58902, -1.74488, -14.7564, 13.935, 2.57194, -2.57194, 1.93632}, {1.583, -1.583, -1.20581, 0.497745, -0.497745, 2.77232, 6.88945, 2.56495, -5.24786, 0.215741, 2.93573, -3.3158, -2.57194, 2.57194, -1.93632, 0.232383, 3.66305, -16.6783, -5.45007, 9.3455, 4.15145, -2.22336, -1.67207, 5.58902, -0.881918, -3.01351, 0.671778, 1.70898, -14.3148, 15.1995}, {1.583, -1.583, -1.20581, 0.497745, -0.497745, 2.77232, -2.29648, -0.854984, 1.74929, -0.647223, -8.80718, 9.94741, -2.57194, 2.57194, -1.93632, 2.22336, 1.67207, -5.58902, 0.881918, 3.01351, -0.671778, -8.55536, 4.65993, 10.4123, -2.8729, -1.02253, -10.4175, 11.7579, 0.847997, -5.06083}, {6.34574, -4.8337, 3.10867, 0.725317, 2.59898, -0.725317, 1.60925, -1.2258, -1.60925, -0.219319, -2.98441, 3.37079, -1.18322, -15.6, 5.07865, -2.88568, -1.69734, 2.88568, -5.81154, 4.42679, 9.70697, 3.76295, 13.635, -16.3688, -0.625449, 0.47642, -3.26998, -1.71805, 5.20411, -2.17738}, {-2.11525, 1.61123, -1.03622, -2.17595, -7.79693, 2.17595, 1.60925, -1.2258, -1.60925, -0.219319, -2.98441, 3.37079, 10.179, -11.649, 6.32227, -9.32267, 3.20588, 9.32267, 0.625449, -0.47642, 3.26998, 2.88568, 1.69734, -2.88568, 0.251825, 12.4141, -16.7531, -1.71805, 5.20411, -2.17738}, {-2.11525, 1.61123, -1.03622, 0.725317, 2.59898, -0.725317, -4.82774, 3.67741, 4.82774, -0.219319, -2.98441, 3.37079, 1.71805, -5.20411, 2.17738, -5.78695, -12.0932, 5.78695, 9.08643, -6.92136, 7.41487, 2.88568, 1.69734, -2.88568, -0.625449, 0.47642, -3.26998, -0.840773, 17.1417, -15.6605}, {-2.11525, 1.61123, -1.03622, 0.725317, 2.59898, -0.725317, 1.60925, -1.2258, -1.60925, 0.657956, 8.95322, -10.1124, 1.71805, -5.20411, 2.17738, -2.88568, -1.69734, 2.88568, 0.625449, -0.47642, 3.26998, 11.3467, -4.7476, 1.25921, -3.52672, -9.91949, -0.36871, -8.15504, 10.1073, 4.25961}, {-5.36656, 5.36656, -5.36656, -1.78885, 1.78885, 1.36261, 0, -3.15147, 0, 0, 3.15147, -3.15147, 7.15542, -7.15542, -9.34589, 2.21115, 1.68428, -1.68428, -2.21115, 18.7124, -2.21115, -2.21115, -14.2902, 14.2902, 2.21115, -6.10657, 2.21115, 0, 3.63087e-12, 3.89543}, {1.78885, -1.78885, 1.78885, 5.36656, -5.36656, -4.08784, 0, -3.15147, 0, 0, 3.15147, -3.15147, -7.15542, 7.15542, -11.0508, 2.21115, 14.2902, -1.68428, -2.21115, 6.10657, -2.21115, -2.21115, -1.68428, 1.68428, 2.21115, -18.7124, 14.817, 0, 3.63087e-12, 3.89543}, {1.78885, -1.78885, 1.78885, -1.78885, 1.78885, 1.36261, 0, 9.45441, 0, 0, 3.15147, -3.15147, -4.44089e-16, -3.63354e-12, -3.89543, 9.36656, -5.47113, -7.13474, -9.36656, 13.262, -9.36656, -2.21115, -1.68428, 1.68428, 2.21115, -6.10657, 2.21115, 0, -12.6059, 16.5013}, {1.78885, -1.78885, 1.78885, -1.78885, 1.78885, 1.36261, 0, -3.15147, 0, 0, -9.45441, 9.45441, -4.44089e-16, -3.62865e-12, -3.89543, 2.21115, 1.68428, -1.68428, -2.21115, 6.10657, -2.21115, -9.36656, 5.47113, -5.47113, 9.36656, -13.262, -3.23931, 0, 12.6059, 3.89543}, {0, -1.77636e-15, 9.45441, -1.78885, 1.36261, 1.78885, 1.78885, 1.78885, -1.78885, 0, -3.15147, 3.15147, 9.36656, -7.13474, -5.47113, 0, -3.89543, -3.6291e-12, -9.36656, -9.36656, 13.262, 0, 16.5013, -12.6059, 2.21115, 2.21115, -6.10657, -2.21115, 1.68428, -1.68428}, {3.08199e-16, 0, -3.15147, 5.36656, -4.08784, -5.36656, 1.78885, 1.78885, -1.78885, -3.08199e-16, -3.15147, 3.15147, 2.21115, -1.68428, 14.2902, -7.15542, -11.0508, 7.15542, -2.21115, -2.21115, 6.10657, -7.65114e-32, 3.89543, 3.62544e-12, 2.21115, 14.817, -18.7124, -2.21115, 1.68428, -1.68428}, {-3.08199e-16, 8.88178e-16, -3.15147, -1.78885, 1.36261, 1.78885, -5.36656, -5.36656, 5.36656, 3.08199e-16, -3.15147, 3.15147, 2.21115, -1.68428, 1.68428, 7.15542, -9.34589, -7.15542, -2.21115, -2.21115, 18.7124, 7.65114e-32, 3.89543, 3.62633e-12, 2.21115, 2.21115, -6.10657, -2.21115, 14.2902, -14.2902}, {-3.08199e-16, 0, -3.15147, -1.78885, 1.36261, 1.78885, 1.78885, 1.78885, -1.78885, -9.24597e-16, 9.45441, -9.45441, 2.21115, -1.68428, 1.68428, 0, -3.89543, -3.62776e-12, -2.21115, -2.21115, 6.10657, 1.2328e-15, 3.89543, 12.6059, 9.36656, -3.23931, -13.262, -9.36656, -5.47113, 5.47113}, {1.6947, 4.26991, -0.547096, 2.00519, -0.0353642, -0.0353642, 0.45376, 1.14328, 1.14328, -1.89405, 0.315388, -1.29028, -9.80104, 1.94447, -0.0402465, -3.03942, -1.36946, -1.36946, -1.67766, -4.22699, -6.2117, 10.6156, 0.107907, 6.53058, -0.137376, -0.346128, 1.63859, 1.78029, -1.80301, 0.181703}, {-0.5649, -1.4233, 0.182365, -6.01556, 0.106093, 0.106093, 0.45376, 1.14328, 1.14328, -1.89405, 0.315388, -1.29028, 0.479306, 7.49622, -0.911165, -4.85446, -5.94257, -5.94257, 0.137376, 0.346128, -1.63859, 3.03942, 1.36946, 1.36946, 7.43881, -1.60768, 6.79971, 1.78029, -1.80301, 0.181703}, {-0.5649, -1.4233, 0.182365, 2.00519, -0.0353642, -0.0353642, -1.36128, -3.42984, -3.42984, -1.89405, 0.315388, -1.29028, -1.78029, 1.80301, -0.181703, -11.0602, -1.228, -1.228, 2.39697, 6.03934, -2.36805, 3.03942, 1.36946, 1.36946, -0.137376, -0.346128, 1.63859, 9.35648, -3.06456, 5.34282}, {-0.5649, -1.4233, 0.182365, 2.00519, -0.0353642, -0.0353642, 0.45376, 1.14328, 1.14328, 5.68214, -0.946164, 3.87084, -1.78029, 1.80301, -0.181703, -3.03942, -1.36946, -1.36946, 0.137376, 0.346128, -1.63859, 5.29902, 7.06267, 0.639997, -8.15812, -0.204671, 1.78004, -0.0347482, -6.37613, -4.39141}, {-1.35612, -3.4307, -3.42632, -0.759405, 0.424983, -1.91868, -2.45728, -1.10819, -1.10678, 2.76464, -0.460356, 1.88336, 3.41754, -3.63876, 8.63464, 3.97604, 0.844494, 3.73968, 12.3077, 4.38905, 4.38345, -15.0346, 0.996929, -11.2731, -2.47861, 0.0437235, 0.0436678, -0.379924, 1.93883, -0.959903}, {0.45204, 1.14357, 1.14211, 2.27821, -1.27495, 5.75605, -2.45728, -1.10819, -1.10678, 2.76464, -0.460356, 1.88336, -1.42823, -6.51309, -3.60853, 13.8052, 5.27726, 8.1668, 2.47861, -0.0437235, -0.0436678, -3.97604, -0.844494, -3.73968, -13.5372, 1.88515, -7.48976, -0.379924, 1.93883, -0.959903}, {0.45204, 1.14357, 1.14211, -0.759405, 0.424983, -1.91868, 7.37184, 3.32458, 3.32034, 2.76464, -0.460356, 1.88336, 0.379924, -1.93883, 0.959903, 7.01366, -0.855437, 11.4144, 0.670454, -4.61799, -4.6121, -3.97604, -0.844494, -3.73968, -2.47861, 0.0437235, 0.0436678, -11.4385, 3.78026, -8.49333}, {0.45204, 1.14357, 1.14211, -0.759405, 0.424983, -1.91868, -2.45728, -1.10819, -1.10678, -8.29393, 1.38107, -5.65007, 0.379924, -1.93883, 0.959903, 3.97604, 0.844494, 3.73968, 2.47861, -0.0437235, -0.0436678, -5.7842, -5.41876, -8.30811, 0.559007, -1.65621, 7.71841, 9.44919, 6.3716, 3.46721}, {-2.4085, -2.4085, 2.4085, 1.63676, -1.63676, 1.63676, -0.802834, -0.802834, -0.802834, -1.63676, 1.63676, -0.0310931, -9.56255, 7.57784, -7.57784, -1.03079, 3.01551, -1.03079, 3.21134, 3.21134, 5.19605, 7.57784, -9.56255, 1.15516, 3.73035e-14, 3.64153e-14, -1.98471, 3.01551, -1.03079, 1.03079}, {0.802834, 0.802834, -0.802834, -4.91028, 4.91028, -4.91028, -0.802834, -0.802834, -0.802834, -1.63676, 1.63676, -0.0310931, -6.22684, -2.18055, 2.18055, 2.18055, 6.22684, 2.18055, -3.73035e-14, -3.68594e-14, 1.98471, 1.03079, -3.01551, 1.03079, 6.54704, -6.54704, -1.86034, 3.01551, -1.03079, 1.03079}, {0.802834, 0.802834, -0.802834, 1.63676, -1.63676, 1.63676, 2.4085, 2.4085, 2.4085, -1.63676, 1.63676, -0.0310931, -3.01551, 1.03079, -1.03079, -7.57784, 9.56255, -7.57784, -3.21134, -3.21134, 5.19605, 1.03079, -3.01551, 1.03079, 3.77476e-14, 3.68594e-14, -1.98471, 9.56255, -7.57784, 1.15516}, {0.802834, 0.802834, -0.802834, 1.63676, -1.63676, 1.63676, -0.802834, -0.802834, -0.802834, 4.91028, -4.91028, 0.0932794, -3.01551, 1.03079, -1.03079, -1.03079, 3.01551, -1.03079, -3.68594e-14, -3.68594e-14, 1.98471, -2.18055, -6.22684, 4.24213, -6.54704, 6.54704, -8.53176, 6.22684, 2.18055, 4.24213}, {-2.4085, -2.4085, 2.4085, -2.4396, 0.833927, -0.833927, -1.57573, 1.57573, 1.57573, 3.2125, -3.2125, 0.0610269, 11.7815, -5.35886, 5.35886, 4.96322, -2.97851, -0.916924, 7.25829, -9.24301, -7.25829, -17.8132, 15.8285, 0.672816, -0.955357, 2.94007, 0.955357, -2.02315, 2.02315, -2.02315}, {0.802834, 0.802834, -0.802834, 7.31879, -2.50178, 2.50178, -1.57573, 1.57573, 1.57573, 3.2125, -3.2125, 0.0610269, -1.18819, -5.23448, 5.23448, 11.2662, -9.28144, -7.21986, 0.955357, -2.94007, -0.955357, -4.96322, 2.97851, 0.916924, -13.8053, 15.7901, 0.71125, -2.02315, 2.02315, -2.02315}, {0.802834, 0.802834, -0.802834, -2.4396, 0.833927, -0.833927, 4.7272, -4.7272, -4.7272, 3.2125, -3.2125, 0.0610269, 2.02315, -2.02315, 2.02315, 14.7216, -6.31421, 2.41878, -2.25598, -6.15141, 2.25598, -4.96322, 2.97851, 0.916924, -0.955357, 2.94007, 0.955357, -14.8731, 14.8731, -2.26726}, {0.802834, 0.802834, -0.802834, -2.4396, 0.833927, -0.833927, -1.57573, 1.57573, 1.57573, -9.63749, 9.63749, -0.183081, 2.02315, -2.02315, 2.02315, 4.96322, -2.97851, -0.916924, 0.955357, -2.94007, -0.955357, -8.17456, -0.232831, 4.12826, 8.80302, -0.395637, 4.29107, 4.27979, -4.27979, -8.32609}, {-8.88178e-16, 0, 4.817, 3.64699, 0.373467, -0.373467, -1.78885, -1.78885, 1.78885, -1.85814, 1.41539, 0.190281, -19.0959, -1.9555, 3.94022, -2.29678, 1.74951, -1.74951, 9.36656, 9.36656, -7.38185, 9.72932, -7.41106, 0.988391, -2.21115, -2.21115, 0.226431, 4.50793, 0.461631, -2.44635}, {2.22045e-16, -4.44089e-16, -1.60567, -10.941, -1.1204, 1.1204, -1.78885, -1.78885, 1.78885, -1.85814, 1.41539, 0.190281, -4.50793, -0.461631, 8.86902, 4.85864, 8.90493, -8.90493, 2.21115, 2.21115, -0.226431, 2.29678, -1.74951, 1.74951, 5.2214, -7.87269, -0.534693, 4.50793, 0.461631, -2.44635}, {-6.66134e-16, -4.44089e-16, -1.60567, 3.64699, 0.373467, -0.373467, 5.36656, 5.36656, -5.36656, -1.85814, 1.41539, 0.190281, -4.50793, -0.461631, 2.44635, -16.8847, 0.255645, -0.255645, 2.21115, 2.21115, 6.19624, 2.29678, -1.74951, 1.74951, -2.21115, -2.21115, 0.226431, 11.9405, -5.19992, -3.20747}, {-6.66134e-16, 0, -1.60567, 3.64699, 0.373467, -0.373467, -1.78885, -1.78885, 1.78885, 5.57441, -4.24616, -0.570843, -4.50793, -0.461631, 2.44635, -2.29678, 1.74951, -1.74951, 2.21115, 2.21115, -0.226431, 2.29678, -1.74951, 8.17219, -16.7991, -3.70501, 1.7203, 11.6633, 7.61705, -9.60176}, {5.57441, -4.24616, 4.24616, -1.78885, -1.78885, 1.78885, 0, 3.15147, 0, 3.64699, -2.778, -0.373467, 11.6633, 7.61705, -7.61705, 2.21115, -1.68428, -2.21115, 2.29678, -18.2508, 1.74951, -16.7991, 12.7963, 3.70501, -2.29678, 5.64494, -1.74951, -4.50793, -0.461631, 0.461631}, {-1.85814, 1.41539, -1.41539, 5.36656, 5.36656, -5.36656, -2.85327e-15, 3.15147, 2.92187e-16, 3.64699, -2.778, -0.373467, 11.9405, -5.19992, 5.19992, 2.21115, -14.2902, -2.21115, 2.29678, -5.64494, 1.74951, -2.21115, 1.68428, 2.21115, -16.8847, 16.7569, -0.255645, -4.50793, -0.461631, 0.461631}, {-1.85814, 1.41539, -1.41539, -1.78885, -1.78885, 1.78885, 0, -9.45441, 0, 3.64699, -2.778, -0.373467, 4.50793, 0.461631, -0.461631, 9.36656, 5.47113, -9.36656, 9.72932, -11.3065, 7.41106, -2.21115, 1.68428, 2.21115, -2.29678, 5.64494, -1.74951, -19.0959, 10.6504, 1.9555}, {-1.85814, 1.41539, -1.41539, -1.78885, -1.78885, 1.78885, 0, 3.15147, 0, -10.941, 8.334, 1.1204, 4.50793, 0.461631, -0.461631, 2.21115, -1.68428, -2.21115, 2.29678, -5.64494, 1.74951, 5.2214, -3.97726, 7.87269, 4.85864, 12.8004, -8.90493, -4.50793, -13.0675, 0.461631}, {5.61089, -1.12882, 1.12882, -0.730647, 0.497098, 1.84603, 0.431092, 1.08918, -1.08918, 2.16985, -1.96255, -0.380575, 6.13753, -3.06794, -9.20083, 0.370271, -1.96075, -0.935513, 0.0545869, -6.16812, 6.16812, -9.04968, 9.81095, 2.45781, -1.77895, 1.8114, -1.8114, -3.21494, 1.07954, 1.81672}, {-1.8703, 0.376272, -0.376272, 2.19194, -1.49129, -5.53808, 0.431092, 1.08918, -1.08918, 2.16985, -1.96255, -0.380575, 10.6961, -2.58463, -0.311631, -1.3541, -6.31747, 3.42121, 1.77895, -1.8114, 1.8114, -0.370271, 1.96075, 0.935513, -10.4584, 9.6616, -0.289101, -3.21494, 1.07954, 1.81672}, {-1.8703, 0.376272, -0.376272, -0.730647, 0.497098, 1.84603, -1.29328, -3.26754, 3.26754, 2.16985, -1.96255, -0.380575, 3.21494, -1.07954, -1.81672, 3.29286, -3.94914, -8.31962, 9.26014, -3.31649, 3.31649, -0.370271, 1.96075, 0.935513, -1.77895, 1.8114, -1.8114, -11.8943, 8.92975, 3.33902}, {-1.8703, 0.376272, -0.376272, -0.730647, 0.497098, 1.84603, 0.431092, 1.08918, -1.08918, -6.50955, 5.88765, 1.14172, 3.21494, -1.07954, -1.81672, 0.370271, -1.96075, -0.935513, 1.77895, -1.8114, 1.8114, 7.11091, 0.455662, 2.4406, 1.14364, -0.176994, -9.19551, -4.93931, -3.27718, 6.17344}, {-3.9353, -0.877932, 3.73093, -2.19842e-16, -0.163745, 1.71788, -5.85173e-16, -1.31534, -0.704307, -1.31177, 1.18644, 0.230073, -1.62143, 0.495654, -7.45769, 9.95053e-16, 1.82825, -1.25284, -1.62143, 6.52549, 5.22503, 5.24706, -6.57403, 0.33255, 1.62143, -1.26412, -2.4078, 1.62143, 0.159328, 0.586185}, {1.31177, 0.292644, -1.24364, 2.59599e-16, 0.491236, -5.15363, 4.85681e-16, -1.31534, -0.704307, -1.31177, 1.18644, 0.230073, -6.86849, -1.3299, 4.38839, -2.4361e-15, 7.08962, 1.56438, -1.62143, 1.26412, 2.4078, 1.67724e-16, -1.82825, 1.25284, 6.86849, -6.0099, -3.32809, 1.62143, 0.159328, 0.586185}, {1.31177, 0.292644, -1.24364, 0, -0.163745, 1.71788, 0, 3.94603, 2.11292, -1.31177, 1.18644, 0.230073, -1.62143, -0.159328, -0.586185, 0, 2.48323, -8.12435, -6.86849, 0.0935482, 7.38238, -3.2565e-16, -1.82825, 1.25284, 1.62143, -1.26412, -2.4078, 6.86849, -4.58645, -0.334108}, {1.31177, 0.292644, -1.24364, -2.66619e-17, -0.163745, 1.71788, -2.14171e-16, -1.31534, -0.704307, 3.9353, -3.55933, -0.690219, -1.62143, -0.159328, -0.586185, 2.97685e-16, 1.82825, -1.25284, -1.62143, 1.26412, 2.4078, -5.24706, -2.99883, 6.22742, 1.62143, -0.609143, -9.27931, 1.62143, 5.4207, 3.40341}, {6.05767, -1.43278, 5.23226e-12, 0, 1.38248, 0, 0.572575, -0.389553, -1.44665, 1.44665, -1.47052, 1.44665, 2.4959, -7.82907, 2.15583e-12, -0.707741, -1.22732, 1.78815, -0.502145, 1.44939, 7.57474, -5.07885, 7.10939, -7.57474, -1.78815, 0.108825, -1.78815, -2.4959, 2.29917, -2.15583e-12}, {-2.01922, 0.477594, -1.74416e-12, -5.05799e-15, -4.14743, -2.97897e-15, 0.572575, -0.389553, -1.44665, 1.44665, -1.47052, 1.44665, 10.5728, -4.20955, 9.13047e-12, -2.99804, 0.330893, 7.57474, 1.78815, -0.108825, 1.78815, 0.707741, 1.22732, -1.78815, -7.57474, 5.99089, -7.57474, -2.4959, 2.29917, -2.15472e-12}, {-2.01922, 0.477594, -1.74438e-12, 1.98598e-15, 1.38248, 1.98598e-15, -1.71772, 1.16866, 4.33994, 1.44665, -1.47052, 1.44665, 2.4959, -2.29917, 2.15383e-12, -0.707741, -6.75722, 1.78815, 9.86504, -2.0192, 1.78815, 0.707741, 1.22732, -1.78815, -1.78815, 0.108825, -1.78815, -8.28248, 8.18124, -5.78659}, {-2.01922, 0.477594, -1.74438e-12, 0, 1.38248, 0, 0.572575, -0.389553, -1.44665, -4.33994, 4.41155, -4.33994, 2.4959, -2.29917, 2.15628e-12, -0.707741, -1.22732, 1.78815, 1.78815, -0.108825, 1.78815, 8.78463, -0.683057, -1.78815, -1.78815, -5.42108, -1.78815, -4.7862, 3.85739, 5.78659}, {-1.33227e-15, -0.577407, 6.05767, 1.31177, 0.0490665, 1.31177, 7.62271e-16, -1.57494, 2.01922, -1.31177, 1.33341, -1.31177, -6.86849, -0.49482, -4.3726, -1.62143, 1.88609, -4.11733, -4.66294e-15, 8.00861, -8.07689, 6.86849, -7.21973, 9.36439, 1.55431e-15, -1.70883, 1.33227e-15, 1.62143, 0.298554, -0.874465}, {-2.22045e-16, 0.192469, -2.01922, -3.9353, -0.147199, -3.9353, 5.0818e-16, -1.57494, 2.01922, -1.31177, 1.33341, -1.31177, -1.62143, -1.06843, 8.95135, -1.62143, 8.18587, -12.1942, -2.22045e-16, 1.70883, 1.11022e-15, 1.62143, -1.88609, 4.11733, 5.24706, -7.04247, 5.24706, 1.62143, 0.298554, -0.874465}, {0, 0.192469, -2.01922, 1.31177, 0.0490665, 1.31177, 7.62271e-16, 4.72483, -6.05767, -1.31177, 1.33341, -1.31177, -1.62143, -0.298554, 0.874465, -6.86849, 1.68982, -9.36439, 0, 0.938958, 8.07689, 1.62143, -1.88609, 4.11733, -4.44089e-16, -1.70883, -4.44089e-16, 6.86849, -5.03508, 4.3726}, {-2.22045e-16, 0.192469, -2.01922, 1.31177, 0.0490665, 1.31177, 1.52454e-15, -1.57494, 2.01922, 3.9353, -4.00023, 3.9353, -1.62143, -0.298554, 0.874465, -1.62143, 1.88609, -4.11733, -1.55431e-15, 1.70883, -1.55431e-15, 1.62143, -2.65597, 12.1942, -5.24706, -1.9051, -5.24706, 1.62143, 6.59833, -8.95135}, {5.62183, 1.10117, 1.0932, -0.543248, 1.37255, -0.969804, 0.418614, -1.05765, -1.05825, 1.99858, 0.0521603, 2.39245, 5.16081, -6.73306, 5.52839, 0.154056, -0.389233, 2.50681, 0.12443, 5.99166, 5.99148, -8.14837, 0.180592, -12.0766, -1.79889, -1.76104, -1.75849, -2.98781, 1.24286, -1.64917}, {-1.87394, -0.367057, -0.364401, 1.62974, -4.11765, 2.90941, 0.418614, -1.05765, -1.05825, 1.99858, 0.0521603, 2.39245, 10.4836, 0.225367, 3.10677, -1.5204, 3.84139, 6.7398, 1.79889, 1.76104, 1.75849, -0.154056, 0.389233, -2.50681, -9.79319, -1.96968, -11.3283, -2.98781, 1.24286, -1.64917}, {-1.87394, -0.367057, -0.364401, -0.543248, 1.37255, -0.969804, -1.25584, 3.17296, 3.17474, 1.99858, 0.0521603, 2.39245, 2.98781, -1.24286, 1.64917, 2.32705, -5.87944, 6.38603, 9.29466, 3.22927, 3.2161, -0.154056, 0.389233, -2.50681, -1.79889, -1.76104, -1.75849, -10.9821, 1.03422, -11.219}, {-1.87394, -0.367057, -0.364401, -0.543248, 1.37255, -0.969804, 0.418614, -1.05765, -1.05825, -5.99573, -0.156481, -7.17736, 2.98781, -1.24286, 1.64917, 0.154056, -0.389233, 2.50681, 1.79889, 1.76104, 1.75849, 7.34172, 1.85746, -1.04921, 0.374107, -7.25124, 2.12073, -4.66227, 5.47348, 2.58382}, {1.30457, 0.988495, -4.07489, 1.69843, -1.02425, 0.473793, -0.0497917, 1.38543, -0.379098, -1.21378, -0.0316781, -1.45299, -8.35558, 5.77034, -4.15976, -2.03783, -0.446439, -0.117049, 0.798227, -6.84692, 0.306038, 6.89295, 0.573151, 5.92901, -0.59906, 1.3052, 1.21036, 1.56186, -1.67333, 2.26459}, {-0.434858, -0.329498, 1.3583, -5.09529, 3.07276, -1.42138, -0.0497917, 1.38543, -0.379098, -1.21378, -0.0316781, -1.45299, 0.17757, 2.99132, -7.69777, -1.83866, -5.98816, 1.39934, 0.59906, -1.3052, -1.21036, 2.03783, 0.446439, 0.117049, 4.25606, 1.43192, 7.02232, 1.56186, -1.67333, 2.26459}, {-0.434858, -0.329498, 1.3583, 1.69843, -1.02425, 0.473793, 0.149375, -4.15629, 1.1373, -1.21378, -0.0316781, -1.45299, -1.56186, 1.67333, -2.26459, -8.83155, 3.65057, -2.01222, 2.33849, 0.0127912, -6.64354, 2.03783, 0.446439, 0.117049, -0.59906, 1.3052, 1.21036, 6.41699, -1.54662, 8.07655}, {-0.434858, -0.329498, 1.3583, 1.69843, -1.02425, 0.473793, -0.0497917, 1.38543, -0.379098, 3.64134, 0.0950343, 4.35897, -1.56186, 1.67333, -2.26459, -2.03783, -0.446439, -0.117049, 0.59906, -1.3052, -1.21036, 3.77726, 1.76443, -5.31614, -7.39278, 5.40222, -0.684818, 1.76103, -7.21505, 3.78098}, {-3.43097, 1.35687, -3.43142, 0.931473, 0.558277, -1.41184, -0.847096, 2.35716, -0.851503, -1.22803, -2.46315, 1.11954, -6.29089, -2.36411, 5.97866, -0.104296, -3.60368, 2.79764, 3.02181, -11.7832, 3.0447, 5.01642, 13.4563, -7.27579, 0.366568, 2.35455, 0.361307, 2.565, 0.131007, -0.331307}, {1.14366, -0.45229, 1.14381, -2.79442, -1.67483, 4.23552, -0.847096, 2.35716, -0.851503, -1.22803, -2.46315, 1.11954, -7.13962, 1.67815, -4.24392, 3.28409, -13.0323, 6.20366, -0.366568, -2.35455, -0.361307, 0.104296, 3.60368, -2.79764, 5.2787, 12.2071, -4.11684, 2.565, 0.131007, -0.331307}, {1.14366, -0.45229, 1.14381, 0.931473, 0.558277, -1.41184, 2.54129, -7.07148, 2.55451, -1.22803, -2.46315, 1.11954, -2.565, -0.131007, 0.331307, -3.83019, -5.83679, 8.445, -4.94119, -0.545391, -4.93653, 0.104296, 3.60368, -2.79764, 0.366568, 2.35455, 0.361307, 7.47713, 9.9836, -4.80945}, {1.14366, -0.45229, 1.14381, 0.931473, 0.558277, -1.41184, -0.847096, 2.35716, -0.851503, 3.6841, 7.38945, -3.35861, -2.565, -0.131007, 0.331307, -0.104296, -3.60368, 2.79764, -0.366568, -2.35455, -0.361307, -4.47033, 5.41284, -7.37287, -3.35932, 0.121443, 6.00866, 5.95338, -9.29764, 3.0747}, {5.0671, -2.00529, 0.25185, -0.295203, -1.90215, -0.29354, 1.14353, -0.452546, 1.14392, 0.840709, 1.68627, -0.766433, 3.63346, 9.13356, 1.64076, -1.04859, 2.91057, -1.05113, -3.89983, 1.54334, -5.88589, -2.31425, -9.65564, 4.11686, -0.674283, 0.266845, 1.3102, -2.45265, -1.52496, -0.466604}, {-1.68903, 0.668429, -0.0839499, 0.885608, 5.70645, 0.880621, 1.14353, -0.452546, 1.14392, 0.840709, 1.68627, -0.766433, 9.20879, -1.14875, 0.802403, -5.6227, 4.72075, -5.62682, 0.674283, -0.266845, -1.3102, 1.04859, -2.91057, 1.05113, -4.03712, -6.47823, 4.37593, -2.45265, -1.52496, -0.466604}, {-1.68903, 0.668429, -0.0839499, -0.295203, -1.90215, -0.29354, -3.43058, 1.35764, -3.43177, 0.840709, 1.68627, -0.766433, 2.45265, 1.52496, 0.466604, 0.132224, 10.5192, 0.123031, 7.43042, -2.94056, -0.974399, 1.04859, -2.91057, 1.05113, -0.674283, 0.266845, 1.3102, -5.81549, -8.27004, 2.59913}, {-1.68903, 0.668429, -0.0839499, -0.295203, -1.90215, -0.29354, 1.14353, -0.452546, 1.14392, -2.52213, -5.0588, 2.2993, 2.45265, 1.52496, 0.466604, -1.04859, 2.91057, -1.05113, 0.674283, -0.266845, -1.3102, 7.80472, -5.58428, 1.38693, 0.506528, 7.87545, 2.48436, -7.02676, 0.285222, -5.04229}, {-7.02938, 6.21725e-15, 4.44089e-16, -1.54298, 0.610212, -1.54318, 1.7461, 1.33161, 1.74203, -2.54625, -1.94182, -0.198851, 5.18286, -3.19511, 8.08019, -0.25107, -2.40023, -0.245794, -12.0389, -6.97241, -9.12139, 10.4361, 10.1675, 1.0412, 5.05456, 1.64596, 2.15327, 0.989039, 0.754264, -1.90748}, {2.34313, -1.77636e-15, -1.22125e-15, 4.62893, -1.83064, 4.62954, 1.7461, 1.33161, 1.74203, -2.54625, -1.94182, -0.198851, -10.3615, -0.754264, 1.90748, -7.23545, -7.72668, -7.21392, -5.05456, -1.64596, -2.15327, 0.25107, 2.40023, 0.245794, 15.2395, 9.41326, 2.94867, 0.989039, 0.754264, -1.90748}, {2.34313, 0, 1.38778e-16, -1.54298, 0.610212, -1.54318, -5.23829, -3.99484, -5.22609, -2.54625, -1.94182, -0.198851, -0.989039, -0.754264, 1.90748, 5.92083, -4.84108, 5.92693, -14.4271, -1.64596, -2.15327, 0.25107, 2.40023, 0.245794, 5.05456, 1.64596, 2.15327, 11.174, 8.52156, -1.11207}, {2.34313, -1.11022e-15, -3.05311e-16, -1.54298, 0.610212, -1.54318, 1.7461, 1.33161, 1.74203, 7.63874, 5.82547, 0.596554, -0.989039, -0.754264, 1.90748, -0.25107, -2.40023, -0.245794, -5.05456, -1.64596, -2.15327, -9.12143, 2.40023, 0.245794, 11.2265, -0.794885, 8.32599, -5.99534, -4.57219, -8.8756}, {2.66454e-15, 3.55271e-15, -4.817, -1.54262, 0.610485, -1.54315, -0.200328, -1.9397, -0.198633, 1.74295, 1.32921, 0.136117, 8.07725, -3.19654, 6.09533, 2.1544, 1.643, 2.15296, 1.04893, 10.1564, -0.944658, -9.12619, -6.95984, -2.69743, -0.24762, -2.3976, 1.73919, -1.90678, 0.754601, 0.0772744}, {1.55431e-15, 8.88178e-16, 1.60567, 4.62785, -1.83146, 4.62946, -0.200328, -1.9397, -0.198633, 1.74295, 1.32921, 0.136117, 1.90678, -0.754601, -6.49995, 2.95571, 9.40178, 2.9475, 0.24762, 2.3976, -1.73919, -2.1544, -1.643, -2.15296, -7.21941, -7.71444, 1.19472, -1.90678, 0.754601, 0.0772744}, {2.22045e-16, 2.22045e-16, 1.60567, -1.54262, 0.610485, -1.54315, 0.600985, 5.81909, 0.5959, 1.74295, 1.32921, 0.136117, 1.90678, -0.754601, -0.0772744, 8.32487, -0.798945, 8.32557, 0.24762, 2.3976, -8.16186, -2.1544, -1.643, -2.15296, -0.24762, -2.3976, 1.73919, -8.87857, -4.56224, -0.467193}, {-1.33227e-15, -1.11022e-15, 1.60567, -1.54262, 0.610485, -1.54315, -0.200328, -1.9397, -0.198633, -5.22884, -3.98763, -0.408351, 1.90678, -0.754601, -0.0772744, 2.1544, 1.643, 2.15296, 0.24762, 2.3976, -1.73919, -2.1544, -1.643, -8.57564, 5.92285, -4.83954, 7.9118, -1.10547, 8.51339, 0.871807}, {5.74294, 0.795668, -0.78877, 0.30138, -0.761926, 0.76354, -0.6496, 1.64227, 0.697377, 2.26253, -0.61512, -1.72384, 0.788176, 4.31733, -4.32294, 0.430423, -1.08816, -1.80579, 5.76757, -8.2712, -3.9765, -9.48055, 3.54864, 8.70115, -3.16917, 1.70212, 1.187, -1.9937, -1.26962, 1.26878}, {-1.91431, -0.265223, 0.262923, -0.904139, 2.28578, -2.29062, -0.6496, 1.64227, 0.697377, 2.26253, -0.61512, -1.72384, 9.65095, 2.33052, -2.32047, 3.02882, -7.65724, -4.5953, 3.16917, -1.70212, -1.187, -0.430423, 1.08816, 1.80579, -12.2193, 4.1626, 8.08236, -1.9937, -1.26962, 1.26878}, {-1.91431, -0.265223, 0.262923, 0.30138, -0.761926, 0.76354, 1.9488, -4.9268, -2.09213, 2.26253, -0.61512, -1.72384, 1.9937, 1.26962, -1.26878, -0.775096, 1.95954, -4.85995, 10.8264, -0.641232, -2.23869, -0.430423, 1.08816, 1.80579, -3.16917, 1.70212, 1.187, -11.0438, 1.19086, 8.16414}, {-1.91431, -0.265223, 0.262923, 0.30138, -0.761926, 0.76354, -0.6496, 1.64227, 0.697377, -6.7876, 1.84536, 5.17152, 1.9937, 1.26962, -1.26878, 0.430423, -1.08816, -1.80579, 3.16917, -1.70212, -1.187, 7.22683, 2.14905, 0.7541, -4.37469, 4.74982, -1.86717, 0.604703, -7.8387, -1.52073}, {1.33227e-15, 6.00487, 0.829413, -3.96116e-16, 2.00162, -0.810615, 1.31177, 1.30033, 0.316508, -1.31177, -1.30033, 0.770578, 2.66454e-15, -8.00649, 4.58617, -1.62143, -4.08144, 0.61075, -6.86849, -4.33448, -1.31552, 6.86849, 9.28277, -3.69306, 1.62143, -0.866843, 0.0494889, -1.11022e-15, -6.66134e-16, -1.34371}, {4.44089e-16, -2.00162, -0.276471, -2.97087e-15, -6.00487, 2.43185, 1.31177, 1.30033, 0.316508, -1.31177, -1.30033, 0.770578, -2.66454e-15, 8.00649, 2.4496, -6.86849, -9.28277, -0.655284, -1.62143, 0.866843, -0.0494889, 1.62143, 4.08144, -0.61075, 6.86849, 4.33448, -3.03282, 1.55431e-15, 1.33227e-15, -1.34371}, {-2.22045e-16, -2.00162, -0.276471, 1.38641e-15, 2.00162, -0.810615, -3.9353, -3.901, -0.949525, -1.31177, -1.30033, 0.770578, -1.33227e-15, -1.11022e-15, 1.34371, -1.62143, -12.0879, 3.85321, -1.62143, 8.87333, 1.0564, 1.62143, 4.08144, -0.61075, 1.62143, -0.866843, 0.0494889, 5.24706, 5.20133, -4.42602}, {-6.66134e-16, -2.00162, -0.276471, -1.18835e-15, 2.00162, -0.810615, 1.31177, 1.30033, 0.316508, 3.9353, 3.901, -2.31173, 2.22045e-15, 2.66454e-15, 1.34371, -1.62143, -4.08144, 0.61075, -1.62143, 0.866843, -0.0494889, 1.62143, 12.0879, 0.495134, 1.62143, -8.87333, 3.29195, -5.24706, -5.20133, -2.60975}, {-1.70622, 4.31352, 1.8317, 8.44721e-17, 1.1641e-15, 1.08709, -2.01922, 1.65815e-12, 0.375548, 1.45048, 1.43784, -0.852066, -0.702999, 1.77727, -4.93735, 2.4959, -2.05102e-12, -1.80792, 9.86978, 1.77727, -1.21169, -8.29783, -5.75136, 5.21618, -1.7929, -1.77727, -0.290501, 0.702999, -1.77727, 0.589009}, {0.568738, -1.43784, -0.610568, -2.80914e-15, -1.1641e-15, -3.26126, -2.01922, 1.65896e-12, 0.375548, 1.45048, 1.43784, -0.852066, -2.97795, 7.52863, 1.85326, 10.5728, -8.68691e-12, -3.31011, 1.7929, 1.77727, 0.290501, -2.4959, 2.05143e-12, 1.80792, -7.59483, -7.52863, 3.11776, 0.702999, -1.77727, 0.589009}, {0.568738, -1.43784, -0.610568, 0, 0, 1.08709, 6.05767, -4.97324e-12, -1.12664, 1.45048, 1.43784, -0.852066, -0.702999, 1.77727, -0.589009, 2.4959, -2.04909e-12, -6.15626, -0.482057, 7.52863, 2.73277, -2.4959, 2.04944e-12, 1.80792, -1.7929, -1.77727, -0.290501, -5.09894, -7.52863, 3.99727}, {0.568738, -1.43784, -0.610568, 0, 0, 1.08709, -2.01922, 1.6563e-12, 0.375548, -4.35145, -4.31352, 2.5562, -0.702999, 1.77727, -0.589009, 2.4959, -2.04731e-12, -1.80792, 1.7929, 1.77727, 0.290501, -4.77085, 5.75136, 4.25019, -1.7929, -1.77727, -4.63885, 8.77989, -1.77727, -0.913184}, {1.27077, -1.27077, -5.5547, 1.35703, 0.9861, 0.537103, -0.781872, 0.781872, -0.309461, -0.151563, -2.19156, -2.07921, -6.58189, -5.68687, -5.10097, -0.710928, -2.18533, -0.281381, 4.61752, -4.61752, -0.668306, 1.31718, 10.9516, 8.59822, -1.49003, 1.49003, 1.90615, 1.15379, 1.74247, 2.95256}, {-0.42359, 0.42359, 1.85157, -4.07108, -2.9583, -1.61131, -0.781872, 0.781872, -0.309461, -0.151563, -2.19156, -2.07921, 0.540572, -3.43683, -10.3588, 2.41656, -5.31282, 0.956461, 1.49003, -1.49003, -1.90615, 0.710928, 2.18533, 0.281381, -0.883782, 10.2563, 10.223, 1.15379, 1.74247, 2.95256}, {-0.42359, 0.42359, 1.85157, 1.35703, 0.9861, 0.537103, 2.34562, -2.34562, 0.928382, -0.151563, -2.19156, -2.07921, -1.15379, -1.74247, -2.95256, -6.13903, -6.12973, -2.42979, 3.18439, -3.18439, -9.31242, 0.710928, 2.18533, 0.281381, -1.49003, 1.49003, 1.90615, 1.76004, 10.5087, 11.2694}, {-0.42359, 0.42359, 1.85157, 1.35703, 0.9861, 0.537103, -0.781872, 0.781872, -0.309461, 0.454689, 6.57469, 6.23763, -1.15379, -1.74247, -2.95256, -0.710928, -2.18533, -0.281381, 1.49003, -1.49003, -1.90615, 2.40529, 0.490973, -7.12489, -6.91814, -2.45437, -0.242264, 4.28128, -1.38502, 4.1904}, {2.56157, 0.777047, 3.89096, 1.32901, 0.581011, 0.152782, -0.565397, -1.62691, -0.0938093, 0.0902443, 1.30491, 1.23801, -5.90336, -2.72205, 0.803187, -0.943878, 1.2928, -0.0728941, 4.01589, 8.83876, 2.09436, 0.5829, -6.51244, -4.87916, -1.7543, -2.33113, -1.71912, 0.587321, 0.398009, -1.41431}, {-0.853857, -0.259016, -1.29699, -3.98703, -1.74303, -0.458346, -0.565397, -1.62691, -0.0938093, 0.0902443, 1.30491, 1.23801, 2.82811, 0.638054, 6.60226, 1.31771, 7.80043, 0.302343, 1.7543, 2.33113, 1.71912, 0.943878, -1.2928, 0.0728941, -2.11527, -7.55078, -6.67117, 0.587321, 0.398009, -1.41431}, {-0.853857, -0.259016, -1.29699, 1.32901, 0.581011, 0.152782, 1.69619, 4.88072, 0.281428, 0.0902443, 1.30491, 1.23801, -0.587321, -0.398009, 1.41431, -6.25992, -1.03125, -0.684022, 5.16973, 3.36719, 6.90706, 0.943878, -1.2928, 0.0728941, -1.7543, -2.33113, -1.71912, 0.226344, -4.82164, -6.36637}, {-0.853857, -0.259016, -1.29699, 1.32901, 0.581011, 0.152782, -0.565397, -1.62691, -0.0938093, -0.270733, -3.91473, -3.71404, -0.587321, -0.398009, 1.41431, -0.943878, 1.2928, -0.0728941, 1.7543, 2.33113, 1.71912, 4.35931, -0.256736, 5.26084, -7.07034, -4.65518, -2.33025, 2.84891, 6.90564, -1.03908}, {4.07496e-12, -2.19419, -6.05767, 4.84843e-16, 1.35003, -1.83833e-15, -1.44665, -1.05122, -0.572575, 1.44665, -1.0302, -1.44665, 1.67644e-12, -7.97291, -2.4959, 1.78815, -0.369344, 0.707741, 7.57474, 4.60023, 0.502145, -7.57474, 4.49015, 5.07885, -1.78815, -0.395328, 1.78815, -1.67844e-12, 2.57279, 2.4959}, {-1.3598e-12, 0.731398, 2.01922, -2.90906e-15, -4.05009, 4.93928e-15, -1.44665, -1.05122, -0.572575, 1.44665, -1.0302, -1.44665, 7.11964e-12, -5.49838, -10.5728, 7.57474, 3.83556, 2.99804, 1.78815, 0.395328, -1.78815, -1.78815, 0.369344, -0.707741, -7.57474, 3.72548, 7.57474, -1.67977e-12, 2.57279, 2.4959}, {-1.36091e-12, 0.731398, 2.01922, 0, 1.35003, 0, 4.33994, 3.15367, 1.71772, 1.44665, -1.0302, -1.44665, 1.68221e-12, -2.57279, -2.4959, 1.78815, -5.76946, 0.707741, 1.78815, -2.53026, -9.86504, -1.78815, 0.369344, -0.707741, -1.78815, -0.395328, 1.78815, -5.78659, 6.6936, 8.28248}, {-1.36047e-12, 0.731398, 2.01922, -4.84843e-16, 1.35003, 4.84843e-16, -1.44665, -1.05122, -0.572575, -4.33994, 3.09061, 4.33994, 1.68221e-12, -2.57279, -2.4959, 1.78815, -0.369344, 0.707741, 1.78815, 0.395328, -1.78815, -1.78815, -2.55625, -8.78463, -1.78815, -5.79545, 1.78815, 5.78659, 6.77769, 4.7862}, {5.43308, 2.37521, 0.624583, 1.07522, 0.584331, -1.07522, 1.83687, -0.576694, 0.182353, -1.10106, 0.784101, 1.10106, -3.39138, -2.08096, 5.88727, -3.59954, -0.00943971, 1.10365, -7.37942, 3.99825, -0.697471, 8.00379, -3.12696, -5.50789, 0.0319413, -1.69148, -0.0319413, -0.909507, -0.256369, -1.58639}, {-1.81103, -0.791738, -0.208194, -3.22566, -1.75299, 3.22566, 1.83687, -0.576694, 0.182353, -1.10106, 0.784101, 1.10106, 8.15362, 3.42332, 2.41917, -10.947, 2.29734, 0.374233, -0.0319413, 1.69148, 0.0319413, 3.59954, 0.00943971, -1.10365, 4.43619, -4.82788, -4.43619, -0.909507, -0.256369, -1.58639}, {-1.81103, -0.791738, -0.208194, 1.07522, 0.584331, -1.07522, -5.51061, 1.73008, -0.547059, -1.10106, 0.784101, 1.10106, 0.909507, 0.256369, 1.58639, -7.90043, -2.34676, 5.40453, 7.21217, 4.85843, 0.864718, 3.59954, 0.00943971, -1.10365, 0.0319413, -1.69148, -0.0319413, 3.49474, -3.39277, -5.99064}, {-1.81103, -0.791738, -0.208194, 1.07522, 0.584331, -1.07522, 1.83687, -0.576694, 0.182353, 3.30319, -2.3523, -3.30319, 0.909507, 0.256369, 1.58639, -3.59954, -0.00943971, 1.10365, -0.0319413, 1.69148, 0.0319413, 10.8437, 3.17639, -0.270869, -4.26894, -4.0288, 4.26894, -8.25698, 2.05041, -2.3158}, {1.1204, -1.1204, 10.941, 1.78885, -1.78885, 1.78885, -1.60567, 0, 0, 0.190281, 1.41539, 1.85814, -8.90493, 8.90493, -4.85864, -0.226431, 2.21115, -2.21115, 8.86902, -0.461631, 4.50793, -0.534693, -7.87269, -5.2214, -2.44635, 0.461631, -4.50793, 1.74951, -1.74951, -2.29678}, {-0.373467, 0.373467, -3.64699, -5.36656, 5.36656, -5.36656, -1.60567, 0, 0, 0.190281, 1.41539, 1.85814, -0.255645, 0.255645, 16.8847, 6.19624, 2.21115, -2.21115, 2.44635, -0.461631, 4.50793, 0.226431, -2.21115, 2.21115, -3.20747, -5.19992, -11.9405, 1.74951, -1.74951, -2.29678}, {-0.373467, 0.373467, -3.64699, 1.78885, -1.78885, 1.78885, 4.817, 0, 0, 0.190281, 1.41539, 1.85814, -1.74951, 1.74951, 2.29678, -7.38185, 9.36656, -9.36656, 3.94022, -1.9555, 19.0959, 0.226431, -2.21115, 2.21115, -2.44635, 0.461631, -4.50793, 0.988391, -7.41106, -9.72932}, {-0.373467, 0.373467, -3.64699, 1.78885, -1.78885, 1.78885, -1.60567, 0, 0, -0.570843, -4.24616, -5.57441, -1.74951, 1.74951, 2.29678, -0.226431, 2.21115, -2.21115, 2.44635, -0.461631, 4.50793, 1.7203, -3.70501, 16.7991, -9.60176, 7.61705, -11.6633, 8.17219, -1.74951, -2.29678}, {4.24616, -4.24616, -5.57441, 1.78885, -1.78885, 1.78885, 2.92187e-16, 3.15147, 2.85327e-15, -0.373467, -2.778, -3.64699, -7.61705, 7.61705, -11.6633, -2.21115, -1.68428, -2.21115, 1.74951, -18.2508, -2.29678, 3.70501, 12.7963, 16.7991, -1.74951, 5.64494, 2.29678, 0.461631, -0.461631, 4.50793}, {-1.41539, 1.41539, 1.85814, -5.36656, 5.36656, -5.36656, -5.84374e-16, 3.15147, -5.70654e-15, -0.373467, -2.778, -3.64699, 5.19992, -5.19992, -11.9405, -2.21115, -14.2902, -2.21115, 1.74951, -5.64494, -2.29678, 2.21115, 1.68428, 2.21115, -0.255645, 16.7569, 16.8847, 0.461631, -0.461631, 4.50793}, {-1.41539, 1.41539, 1.85814, 1.78885, -1.78885, 1.78885, 0, -9.45441, 0, -0.373467, -2.778, -3.64699, -0.461631, 0.461631, -4.50793, -9.36656, 5.47113, -9.36656, 7.41106, -11.3065, -9.72932, 2.21115, 1.68428, 2.21115, -1.74951, 5.64494, 2.29678, 1.9555, 10.6504, 19.0959}, {-1.41539, 1.41539, 1.85814, 1.78885, -1.78885, 1.78885, -2.92187e-16, 3.15147, -2.85327e-15, 1.1204, 8.334, 10.941, -0.461631, 0.461631, -4.50793, -2.21115, -1.68428, -2.21115, 1.74951, -5.64494, -2.29678, 7.87269, -3.97726, -5.2214, -8.90493, 12.8004, -4.85864, 0.461631, -13.0675, 4.50793}, {-4.91028, 4.91028, 4.91028, -0.802834, -0.802834, 0.802834, -0.802834, 0.802834, -0.802834, -0.0310931, 1.63676, 1.63676, 2.18055, 6.22684, -2.18055, 1.98471, -5.77316e-15, 5.88418e-15, 2.18055, -2.18055, 6.22684, -1.86034, -6.54704, -6.54704, 1.03079, -1.03079, -3.01551, 1.03079, -3.01551, -1.03079}, {1.63676, -1.63676, -1.63676, 2.4085, 2.4085, -2.4085, -0.802834, 0.802834, -0.802834, -0.0310931, 1.63676, 1.63676, -7.57784, 9.56255, 7.57784, 5.19605, -3.21134, 3.21134, -1.03079, 1.03079, 3.01551, -1.98471, 6.51256e-15, -5.03376e-15, 1.15516, -7.57784, -9.56255, 1.03079, -3.01551, -1.03079}, {1.63676, -1.63676, -1.63676, -0.802834, -0.802834, 0.802834, 2.4085, -2.4085, 2.4085, -0.0310931, 1.63676, 1.63676, -1.03079, 3.01551, 1.03079, 5.19605, 3.21134, -3.21134, -7.57784, 7.57784, 9.56255, -1.98471, 6.51256e-15, -5.58887e-15, 1.03079, -1.03079, -3.01551, 1.15516, -9.56255, -7.57784}, {1.63676, -1.63676, -1.63676, -0.802834, -0.802834, 0.802834, -0.802834, 0.802834, -0.802834, 0.0932794, -4.91028, -4.91028, -1.03079, 3.01551, 1.03079, 1.98471, -5.55112e-15, 5.66214e-15, -1.03079, 1.03079, 3.01551, -8.53176, 6.54704, 6.54704, 4.24213, 2.18055, -6.22684, 4.24213, -6.22684, 2.18055}, {2.4085, -2.4085, 2.4085, -0.833927, 0.833927, 2.4396, 1.57573, 1.57573, 1.57573, 0.0610269, -3.2125, -3.2125, 5.35886, -5.35886, -11.7815, -0.916924, -2.97851, -4.96322, -7.25829, -9.24301, -7.25829, 0.672816, 15.8285, 17.8132, 0.955357, 2.94007, 0.955357, -2.02315, 2.02315, 2.02315}, {-0.802834, 0.802834, -0.802834, 2.50178, -2.50178, -7.31879, 1.57573, 1.57573, 1.57573, 0.0610269, -3.2125, -3.2125, 5.23448, -5.23448, 1.18819, -7.21986, -9.28144, -11.2662, -0.955357, -2.94007, -0.955357, 0.916924, 2.97851, 4.96322, 0.71125, 15.7901, 13.8053, -2.02315, 2.02315, 2.02315}, {-0.802834, 0.802834, -0.802834, -0.833927, 0.833927, 2.4396, -4.7272, -4.7272, -4.7272, 0.0610269, -3.2125, -3.2125, 2.02315, -2.02315, -2.02315, 2.41878, -6.31421, -14.7216, 2.25598, -6.15141, 2.25598, 0.916924, 2.97851, 4.96322, 0.955357, 2.94007, 0.955357, -2.26726, 14.8731, 14.8731}, {-0.802834, 0.802834, -0.802834, -0.833927, 0.833927, 2.4396, 1.57573, 1.57573, 1.57573, -0.183081, 9.63749, 9.63749, 2.02315, -2.02315, -2.02315, -0.916924, -2.97851, -4.96322, -0.955357, -2.94007, -0.955357, 4.12826, -0.232831, 8.17456, 4.29107, -0.395637, -8.80302, -8.32609, -4.27979, -4.27979}, {4.10689, -1.43706, 2.8235e-12, 0.16503, -0.581747, -1.44665, -0.119439, -0.784236, 1.44665, 1.32337, 0.886963, 9.09785e-13, 0.828026, 2.45397, 7.57474, -0.0563528, 1.68845, -3.88578e-14, 2.31753, 3.51421, -7.57474, -5.23714, -5.2363, -3.60028e-12, -1.83977, -0.377268, 1.78815, -1.48814, -0.126978, -1.78815}, {-1.36896, 0.47902, -9.395e-13, -0.495089, 1.74524, 4.33994, -0.119439, -0.784236, 1.44665, 1.32337, 0.886963, 9.08857e-13, 6.964, -1.7891, 1.78815, 0.421405, 4.82539, -5.78659, 1.83977, 0.377268, -1.78815, 0.0563528, -1.68845, 3.79696e-14, -7.13326, -3.92512, 1.78815, -1.48814, -0.126978, -1.78815}, {-1.36896, 0.47902, -9.39941e-13, 0.16503, -0.581747, -1.44665, 0.358318, 2.35271, -4.33994, 1.32337, 0.886963, 9.07744e-13, 1.48814, 0.126978, 1.78815, -0.716472, 4.01544, 5.78659, 7.31562, -1.53881, -1.78815, 0.0563528, -1.68845, 3.9968e-14, -1.83977, -0.377268, 1.78815, -6.78164, -3.67483, -1.78815}, {-1.36896, 0.47902, -9.38462e-13, 0.16503, -0.581747, -1.44665, -0.119439, -0.784236, 1.44665, -3.97012, -2.66089, -2.72546e-12, 1.48814, 0.126978, 1.78815, -0.0563528, 1.68845, -3.70814e-14, 1.83977, 0.377268, -1.78815, 5.53221, -3.60453, 3.79027e-12, -2.49989, 1.94972, 7.57474, -1.01039, 3.00996, -7.57474}, {-1.71772, 0.961283, -4.33994, 1.44665, 0.27723, -1.44665, 0, 1.39654, 0, -2.01922, -1.35334, -1.38544e-12, -8.28248, -1.05552, 5.78659, -1.78815, -2.06889, 1.78815, -0.707741, -6.9163, -1.78815, 9.86504, 7.48225, -1.78815, 0.707741, 1.33015, 1.78815, 2.4959, -0.0533958, 1.7125e-12}, {0.572575, -0.320428, 1.44665, -4.33994, -0.831689, 4.33994, 7.00055e-16, 1.39654, 4.80579e-28, -2.01922, -1.35334, -1.38617e-12, -4.7862, 1.33511, -5.78659, -1.78815, -7.65505, 1.78815, -0.707741, -1.33015, -1.78815, 1.78815, 2.06889, -1.78815, 8.78463, 6.74351, 1.78815, 2.4959, -0.0533958, 1.7134e-12}, {0.572575, -0.320428, 1.44665, 1.44665, 0.27723, -1.44665, 4.20033e-15, -4.18962, 2.88423e-27, -2.01922, -1.35334, -1.38653e-12, -2.4959, 0.0533958, -1.71421e-12, -7.57474, -3.17781, 7.57474, -2.99804, -0.0484352, -7.57474, 1.78815, 2.06889, -1.78815, 0.707741, 1.33015, 1.78815, 10.5728, 5.35997, 7.25997e-12}, {0.572575, -0.320428, 1.44665, 1.44665, 0.27723, -1.44665, 0, 1.39654, 0, 6.05767, 4.06002, 4.16395e-12, -2.4959, 0.0533958, -1.716e-12, -1.78815, -2.06889, 1.78815, -0.707741, -1.33015, -1.78815, -0.502145, 3.3506, -7.57474, -5.07885, 0.221228, 7.57474, 2.4959, -5.63955, 1.71564e-12}, {-4.35597, 0.237767, -4.31288, 0, -1.20934, 0, 0.57469, 0.297534, -1.45022, -2.02668, 0.991065, 0.0125895, -1.79476, 6.43017, -1.77701, -0.710355, 1.12706, 1.79257, -4.80387, -1.45994, 5.81643, 8.81707, -5.09132, -1.84292, 2.50511, 0.269807, -0.0155615, 1.79476, -1.5928, 1.77701}, {1.45199, -0.0792556, 1.43763, 0, 3.62803, 0, 0.57469, 0.297534, -1.45022, -2.02668, 0.991065, 0.0125895, -7.60272, 1.90982, -7.52752, -3.00911, -0.0630793, 7.59343, -2.50511, -0.269807, 0.0155615, 0.710355, -1.12706, -1.79257, 10.6118, -3.69445, -0.0659197, 1.79476, -1.5928, 1.77701}, {1.45199, -0.0792556, 1.43763, 0, -1.20934, 0, -1.72407, -0.892603, 4.35065, -2.02668, 0.991065, 0.0125895, -1.79476, 1.5928, -1.77701, -0.710355, 5.96443, 1.79257, -8.31307, 0.047215, -5.73495, 0.710355, -1.12706, -1.79257, 2.50511, 0.269807, -0.0155615, 9.90148, -5.55705, 1.72665}, {1.45199, -0.0792556, 1.43763, 0, -1.20934, 0, 0.57469, 0.297534, -1.45022, 6.08004, -2.97319, -0.0377686, -1.79476, 1.5928, -1.77701, -0.710355, 1.12706, 1.79257, -2.50511, -0.269807, 0.0155615, -5.09761, -0.810036, -7.54308, 2.50511, 5.10718, -0.0155615, -0.504, -2.78293, 7.57787}, {-1.3922, -1.05489, 4.34859, -1.6823, -0.386683, 0.0104503, -0.635567, 0.941579, 1.4506, 1.8538, -0.906526, -0.0115156, 8.23503, 1.59006, 1.737, 2.86504, -0.685889, -1.80595, 2.75426, -5.36481, -5.8037, -10.2803, 4.31199, 1.85201, -0.211987, 1.59849, 0.00131684, -1.50582, -0.0433277, -1.7788}, {0.464066, 0.35163, -1.44953, 5.0469, 1.16005, -0.0313509, -0.635567, 0.941579, 1.4506, 1.8538, -0.906526, -0.0115156, -0.350444, -1.36319, 7.57692, 5.40731, -4.4522, -7.60833, 0.211987, -1.59849, -0.00131684, -2.86504, 0.685889, 1.80595, -7.6272, 5.2246, 0.0473794, -1.50582, -0.0433277, -1.7788}, {0.464066, 0.35163, -1.44953, -1.6823, -0.386683, 0.0104503, 1.9067, -2.82474, -4.35179, 1.8538, -0.906526, -0.0115156, 1.50582, 0.0433277, 1.7788, 9.59425, 0.860843, -1.84775, -1.64428, -3.00501, 5.7968, -2.86504, 0.685889, 1.80595, -0.211987, 1.59849, 0.00131684, -8.92103, 3.58278, -1.73274}, {0.464066, 0.35163, -1.44953, -1.6823, -0.386683, 0.0104503, -0.635567, 0.941579, 1.4506, -5.56141, 2.71958, 0.0345469, 1.50582, 0.0433277, 1.7788, 2.86504, -0.685889, -1.80595, 0.211987, -1.59849, -0.00131684, -4.72131, -0.720632, 7.60407, 6.51722, 3.14523, -0.0404844, 1.03645, -3.80964, -7.58118}, {-4.91028, -4.91028, 4.91028, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, -1.63676, -1.63676, 4.78823, -10.2738, 6.2275, 10.2738, 3.77476e-15, -3.10862e-15, 3.89543, 6.2275, -10.2738, 10.2738, 6.54704, 6.54704, -23.0483, 0.0754334, 3.97086, -3.97086, 3.97086, 0.0754334, -3.97086}, {1.63676, 1.63676, -1.63676, -4.7272, 4.7272, 4.7272, -1.57573, 1.57573, -1.57573, -1.63676, -1.63676, 4.78823, -10.5179, -6.62248, 10.5179, 6.30294, -6.30294, 10.1984, -0.0754334, -3.97086, 3.97086, -3.07087e-15, 3.59047e-15, -3.89543, 6.62248, 10.5179, -23.1238, 3.97086, 0.0754334, -3.97086}, {1.63676, 1.63676, -1.63676, 1.57573, -1.57573, -1.57573, 4.7272, -4.7272, 4.7272, -1.63676, -1.63676, 4.78823, -3.97086, -0.0754334, 3.97086, -6.30294, 6.30294, 10.1984, -6.62248, -10.5179, 10.5179, -1.51655e-15, 1.81411e-15, -3.89543, 0.0754334, 3.97086, -3.97086, 10.5179, 6.62248, -23.1238}, {1.63676, 1.63676, -1.63676, 1.57573, -1.57573, -1.57573, -1.57573, 1.57573, -1.57573, 4.91028, 4.91028, -14.3647, -3.97086, -0.0754334, 3.97086, 3.10862e-15, -2.44249e-15, 3.89543, -0.0754334, -3.97086, 3.97086, -6.54704, -6.54704, 2.65162, -6.2275, 10.2738, 2.33207, 10.2738, -6.2275, 2.33207}, {-1.37636, -1.37636, -5.42796, -2.30348, 0.847989, 0.553233, 1.22922, -1.92224, -0.562043, 0.615468, 0.615468, -1.80051, 11.4941, -5.00722, -5.1332, 1.32785, 1.32785, 0.0108901, -7.00339, 9.49791, 0.706454, -3.78972, -3.78972, 7.19114, 2.0865, -1.80893, 1.54172, -2.28016, 1.61526, 2.92027}, {0.458787, 0.458787, 1.80932, 6.91044, -2.54397, -1.6597, 1.22922, -1.92224, -0.562043, 0.615468, 0.615468, -1.80051, 0.445015, -3.45041, -10.1575, -3.58904, 9.01683, 2.25906, -2.0865, 1.80893, -1.54172, -1.32785, -1.32785, -0.0108901, -0.375375, -4.2708, 8.74375, -2.28016, 1.61526, 2.92027}, {0.458787, 0.458787, 1.80932, -2.30348, 0.847989, 0.553233, -3.68767, 5.76673, 1.68613, 0.615468, 0.615468, -1.80051, 2.28016, -1.61526, -2.92027, 10.5418, -2.0641, -2.20204, -3.92165, -0.0262169, -8.77899, -1.32785, -1.32785, -0.0108901, 2.0865, -1.80893, 1.54172, -4.74204, -0.846607, 10.1223}, {0.458787, 0.458787, 1.80932, -2.30348, 0.847989, 0.553233, 1.22922, -1.92224, -0.562043, -1.8464, -1.8464, 5.40152, 2.28016, -1.61526, -2.92027, 1.32785, 1.32785, 0.0108901, -2.0865, 1.80893, -1.54172, -3.163, -3.163, -7.24816, 11.3004, -5.20089, -0.671213, -7.19706, 9.30424, 5.16845}, {5.36656, -5.36656, -5.36656, 1.41539, 1.85814, -1.41539, 0, 0, -3.15147, 0.373467, -3.64699, 2.778, -5.19992, -11.9405, 5.19992, -1.74951, -2.29678, 5.64494, 2.21115, -2.21115, 14.2902, 0.255645, 16.8847, -16.7569, -2.21115, 2.21115, -1.68428, -0.461631, 4.50793, 0.461631}, {-1.78885, 1.78885, 1.78885, -4.24616, -5.57441, 4.24616, 0, 0, -3.15147, 0.373467, -3.64699, 2.778, 7.61705, -11.6633, -7.61705, -1.74951, -2.29678, 18.2508, 2.21115, -2.21115, 1.68428, 1.74951, 2.29678, -5.64494, -3.70501, 16.7991, -12.7963, -0.461631, 4.50793, 0.461631}, {-1.78885, 1.78885, 1.78885, 1.41539, 1.85814, -1.41539, 0, 0, 9.45441, 0.373467, -3.64699, 2.778, 0.461631, -4.50793, -0.461631, -7.41106, -9.72932, 11.3065, 9.36656, -9.36656, -5.47113, 1.74951, 2.29678, -5.64494, -2.21115, 2.21115, -1.68428, -1.9555, 19.0959, -10.6504}, {-1.78885, 1.78885, 1.78885, 1.41539, 1.85814, -1.41539, 0, 0, -3.15147, -1.1204, 10.941, -8.334, 0.461631, -4.50793, -0.461631, -1.74951, -2.29678, 5.64494, 2.21115, -2.21115, 1.68428, 8.90493, -4.85864, -12.8004, -7.87269, -5.2214, 3.97726, -0.461631, 4.50793, 13.0675}, {5.73547, -8.96906, -2.62245, 0.335815, -3.2793, -0.653542, 1.76841, -1.58918, 1.21052, -0.192397, 1.8788, -1.43113, 0.604796, 13.4752, 2.34148, -2.60096, 6.01778, -0.688458, -6.89635, 4.62559, -7.41885, 3.37055, -13.533, 6.41296, -0.177274, 1.73112, 2.57679, -1.94806, -0.357987, 0.272688}, {-1.91182, 2.98969, 0.874151, -1.00744, 9.83791, 1.96063, 1.76841, -1.58918, 1.21052, -0.192397, 1.8788, -1.43113, 9.59535, -11.6008, -3.76929, -9.67459, 12.3745, -5.53052, 0.177274, -1.73112, -2.57679, 2.60096, -6.01778, 0.688458, 0.592313, -5.78406, 8.30129, -1.94806, -0.357987, 0.272688}, {-1.91182, 2.98969, 0.874151, 0.335815, -3.2793, -0.653542, -5.30522, 4.76754, -3.63155, -0.192397, 1.8788, -1.43113, 1.94806, 0.357987, -0.272688, -3.94422, 19.135, 1.92571, 7.82457, -13.6899, -6.07339, 2.60096, -6.01778, 0.688458, -0.177274, 1.73112, 2.57679, -1.17847, -7.87317, 5.99719}, {-1.91182, 2.98969, 0.874151, 0.335815, -3.2793, -0.653542, 1.76841, -1.58918, 1.21052, 0.57719, -5.63639, 4.29338, 1.94806, 0.357987, -0.272688, -2.60096, 6.01778, -0.688458, 0.177274, -1.73112, -2.57679, 10.2483, -17.9765, -2.80815, -1.52053, 14.8483, 5.19096, -9.02168, 5.99873, -4.56938}, {-0.906892, 2.28653, -2.28852, -1.55284, 0.422175, 1.18312, -0.363916, -0.686733, -0.918335, 1.61446, 1.02673, -1.02763, 7.75714, -1.26844, -7.13784, 2.36925, 0.327011, -0.327296, 1.53183, 4.53788, 3.86554, -8.8271, -4.43394, 4.43781, -0.0761652, -1.79095, -0.192201, -1.54576, -0.420263, 2.40534}, {0.302297, -0.762175, 0.762841, 4.65853, -1.26653, -3.54937, -0.363916, -0.686733, -0.918335, 1.61446, 1.02673, -1.02763, 0.336571, 3.46896, -5.45671, 3.82491, 3.07394, 3.34604, 0.0761652, 1.79095, 0.192201, -2.36925, -0.327011, 0.327296, -6.53402, -5.89788, 3.91832, -1.54576, -0.420263, 2.40534}, {0.302297, -0.762175, 0.762841, -1.55284, 0.422175, 1.18312, 1.09175, 2.0602, 2.75501, 1.61446, 1.02673, -1.02763, 1.54576, 0.420263, -2.40534, 8.58063, -1.36169, -5.05979, -1.13302, 4.83965, -2.85916, -2.36925, -0.327011, 0.327296, -0.0761652, -1.79095, -0.192201, -8.00362, -4.52719, 6.51586}, {0.302297, -0.762175, 0.762841, -1.55284, 0.422175, 1.18312, -0.363916, -0.686733, -0.918335, -4.84339, -3.0802, 3.08289, 1.54576, 0.420263, -2.40534, 2.36925, 0.327011, -0.327296, 0.0761652, 1.79095, 0.192201, -3.57844, 2.72169, -2.72407, 6.13521, -3.47965, -4.9247, -0.0900956, 2.32667, 6.07869}, {-3.9353, 0.360586, -0.360901, -2.42845e-16, -0.455297, -1.14997, 2.03858e-16, 1.40972, 0.194715, -1.31177, -0.834228, 0.834958, -1.62143, 2.53253, 5.87264, 4.81904e-17, -1.17973, 1.18076, -1.62143, -7.23282, -1.16824, 5.24706, 4.51665, -4.52059, 1.62143, 1.59394, 0.389381, 1.62143, -0.711347, -1.27275}, {1.31177, -0.120195, 0.1203, 7.28534e-16, 1.36589, 3.44992, 2.03858e-16, 1.40972, 0.194715, -1.31177, -0.834228, 0.834958, -6.86849, 1.19213, 0.791545, -7.67241e-16, -6.81861, 0.401902, -1.62143, -1.59394, -0.389381, -3.73841e-16, 1.17973, -1.18076, 6.86849, 4.93085, -2.95045, 1.62143, -0.711347, -1.27275}, {1.31177, -0.120195, 0.1203, 7.41337e-17, -0.455297, -1.14997, 6.88614e-16, -4.22916, -0.584146, -1.31177, -0.834228, 0.834958, -1.62143, 0.711347, 1.27275, -1.04445e-16, 0.641455, 5.78066, -6.86849, -1.11316, -0.870582, -5.1774e-16, 1.17973, -1.18076, 1.62143, 1.59394, 0.389381, 6.86849, 2.62557, -4.61258}, {1.31177, -0.120195, 0.1203, -1.68711e-16, -0.455297, -1.14997, -2.56799e-17, 1.40972, 0.194715, 3.9353, 2.50269, -2.50487, -1.62143, 0.711347, 1.27275, 2.4028e-16, -1.17973, 1.18076, -1.62143, -1.59394, -0.389381, -5.24706, 1.66051, -1.66196, 1.62143, 3.41513, 4.98927, 1.62143, -6.35023, -2.05161}, {3.9353, -3.83942e-12, 1.21564, 0, -1.44665, 1.03094, 0, 1.44665, 0.774615, 1.31177, -1.27981e-12, -1.40034, 1.62143, 7.57474, -4.89721, 0, 0, -2.23179, 1.62143, -7.57474, -3.55506, -5.24706, 5.11922e-12, 7.83316, -1.62143, 1.78815, 0.456604, -1.62143, -1.78815, 0.773441}, {-1.31177, 1.28052e-12, -0.405214, 3.53326e-15, 4.33994, -3.09282, 1.17775e-15, 1.44665, 0.774615, 1.31177, -1.28052e-12, -1.40034, 6.86849, 1.78815, 0.847415, -4.71101e-15, -5.78659, -5.33025, 1.62143, -1.78815, -0.456604, 3.2565e-16, -3.17893e-28, 2.23179, -6.86849, 1.78815, 6.05797, -1.62143, -1.78815, 0.773441}, {-1.31177, 1.28099e-12, -0.405214, -9.42202e-16, -1.44665, 1.03094, -2.82661e-15, -4.33994, -2.32384, 1.31177, -1.28099e-12, -1.40034, 1.62143, 1.78815, -0.773441, 3.76881e-15, 5.78659, -6.35555, 6.86849, -1.78815, 1.16425, 3.2565e-16, -3.18011e-28, 2.23179, -1.62143, 1.78815, 0.456604, -6.86849, -1.78815, 6.37481}, {-1.31177, 1.27957e-12, -0.405214, 0, -1.44665, 1.03094, 0, 1.44665, 0.774615, -3.9353, 3.83871e-12, 4.20103, 1.62143, 1.78815, -0.773441, 0, 0, -2.23179, 1.62143, -1.78815, -0.456604, 5.24706, -5.11827e-12, 3.85265, -1.62143, 7.57474, -3.66716, -1.62143, -7.57474, -2.32502}, {-1.71772, -4.33994, -0.49013, 1.44665, -1.44665, -0.51339, 0, 0, -1.80556, -2.01922, 1.97175e-12, 2.15557, -8.28248, 5.78659, 2.4862, -1.78815, 1.78815, 2.86637, -0.707741, -1.78815, 9.25207, 9.86504, -1.78815, -11.4887, 0.707741, 1.78815, -2.02984, 2.4959, -2.43721e-12, -0.432641}, {0.572575, 1.44665, 0.163377, -4.33994, 4.33994, 1.54017, 0, 0, -1.80556, -2.01922, 1.97102e-12, 2.15557, -4.7862, -5.78659, -0.220866, -1.78815, 1.78815, 10.0886, -0.707741, -1.78815, 2.02984, 1.78815, -1.78815, -2.86637, 8.78463, 1.78815, -10.6521, 2.4959, -2.43632e-12, -0.432641}, {0.572575, 1.44665, 0.163377, 1.44665, -1.44665, -0.51339, 0, 0, 5.41667, -2.01922, 1.97175e-12, 2.15557, -2.4959, 2.43685e-12, 0.432641, -7.57474, 7.57474, 4.91994, -2.99804, -7.57474, 1.37634, 1.78815, -1.78815, -2.86637, 0.707741, 1.78815, -2.02984, 10.5728, -1.03242e-11, -9.05492}, {0.572575, 1.44665, 0.163377, 1.44665, -1.44665, -0.51339, 0, 0, -1.80556, 6.05767, -5.91306e-12, -6.46671, -2.4959, 2.43596e-12, 0.432641, -1.78815, 1.78815, 2.86637, -0.707741, -1.78815, 2.02984, -0.502145, -7.57474, -3.51988, -5.07885, 7.57474, 0.0237159, 2.4959, -2.43632e-12, 6.78958}, {5.80677, 0.989763, -2.29829, 1.66654, 1.66654, -0.659606, 0.232016, 0.232016, -2.11105, 0.0370362, -1.56863, 2.00456, -6.33358, -8.31829, 2.5068, -2.34674, -2.34674, 3.42472, 1.17767, -0.807048, 10.1067, 2.1986, 8.62127, -11.443, -2.10573, -0.121017, -1.66246, -0.332567, 1.65215, 0.131628}, {-1.93559, -0.329921, 0.766095, -4.99961, -4.99961, 1.97882, 0.232016, 0.232016, -2.11105, 0.0370362, -1.56863, 2.00456, 8.07492, -0.332464, -3.19601, -3.2748, -3.2748, 11.8689, 2.10573, 0.121017, 1.66246, 2.34674, 2.34674, -3.42472, -2.25388, 6.15351, -9.68071, -0.332567, 1.65215, 0.131628}, {-1.93559, -0.329921, 0.766095, 1.66654, 1.66654, -0.659606, -0.696049, -0.696049, 6.33316, 0.0370362, -1.56863, 2.00456, 0.332567, -1.65215, -0.131628, -9.01289, -9.01289, 6.06315, 9.84809, 1.4407, -1.40192, 2.34674, 2.34674, -3.42472, -2.10573, -0.121017, -1.66246, -0.480712, 7.92668, -7.88662}, {-1.93559, -0.329921, 0.766095, 1.66654, 1.66654, -0.659606, 0.232016, 0.232016, -2.11105, -0.111109, 4.7059, -6.01369, 0.332567, -1.65215, -0.131628, -2.34674, -2.34674, 3.42472, 2.10573, 0.121017, 1.66246, 10.0891, 3.66642, -6.4891, -8.77188, -6.78716, 0.975965, -1.26063, 0.724083, 8.57584}, {-7.02938, -6.32827e-15, -4.44089e-15, 1.74421, 1.74203, 1.33161, -1.54384, -1.54318, 0.610212, -2.54349, -0.198851, -1.94182, -12.0291, -9.12139, -6.97241, -0.247668, -0.245794, -2.40023, 5.18739, 8.08019, -3.19511, 10.4216, 1.0412, 10.1675, 0.98797, -1.90748, 0.754264, 5.05222, 2.15327, 1.64596}, {2.34313, -1.05471e-15, -8.88178e-16, -5.23263, -5.22609, -3.99484, -1.54384, -1.54318, 0.610212, -2.54349, -0.198851, -1.94182, -14.4247, -2.15327, -1.64596, 5.92769, 5.92693, -4.84108, -0.98797, 1.90748, -0.754264, 0.247668, 0.245794, 2.40023, 11.1619, -1.11207, 8.52156, 5.05222, 2.15327, 1.64596}, {2.34313, 2.33147e-15, 1.77636e-15, 1.74421, 1.74203, 1.33161, 4.63152, 4.62954, -1.83064, -2.54349, -0.198851, -1.94182, -5.05222, -2.15327, -1.64596, -7.2245, -7.21392, -7.72668, -10.3605, 1.90748, -0.754264, 0.247668, 0.245794, 2.40023, 0.98797, -1.90748, 0.754264, 15.2262, 2.94867, 9.41326}, {2.34313, -2.77556e-16, -8.88178e-16, 1.74421, 1.74203, 1.33161, -1.54384, -1.54318, 0.610212, 7.63048, 0.596554, 5.82547, -5.05222, -2.15327, -1.64596, -0.247668, -0.245794, -2.40023, -0.98797, 1.90748, -0.754264, -9.12483, 0.245794, 2.40023, -5.98886, -8.8756, -4.57219, 11.2276, 8.32599, -0.794885}, {4.62937, 4.62937, -1.83228, 1.92454e-15, 1.60567, 4.31655e-17, -0.198723, -0.198723, -1.94057, 1.74185, 0.136178, 1.32981, 1.90741, -6.49998, -0.754941, 0.245635, -1.73908, 2.39867, 2.94793, 2.94793, 9.40601, -7.21302, 1.19437, -7.71791, -2.15304, -2.15304, -1.64373, -1.90741, 0.0773091, 0.754941}, {-1.54312, -1.54312, 0.61076, -2.32061e-15, -4.817, -3.91084e-15, -0.198723, -0.198723, -1.94057, 1.74185, 0.136178, 1.32981, 8.0799, 6.09519, -3.19798, 1.04052, -0.94419, 10.1609, 2.15304, 2.15304, 1.64373, -0.245635, 1.73908, -2.39867, -9.12042, -2.69775, -6.96297, -1.90741, 0.0773091, 0.754941}, {-1.54312, -1.54312, 0.61076, 0, 1.60567, 0, 0.596168, 0.596168, 5.82171, 1.74185, 0.136178, 1.32981, 1.90741, -0.0773091, -0.754941, 0.245635, -8.16175, 2.39867, 8.32553, 8.32553, -0.799305, -0.245635, 1.73908, -2.39867, -2.15304, -2.15304, -1.64373, -8.87479, -0.467403, -4.5643}, {-1.54312, -1.54312, 0.61076, -6.94322e-16, 1.60567, -5.30079e-16, -0.198723, -0.198723, -1.94057, -5.22554, -0.408534, -3.98943, 1.90741, -0.0773091, -0.754941, 0.245635, -1.73908, 2.39867, 2.15304, 2.15304, 1.64373, 5.92686, 7.91157, -4.84171, -2.15304, -8.57571, -1.64373, -1.11252, 0.872199, 8.51722}, {-8.88178e-16, 3.03985e-15, -3.8693, 1.44142, -1.45582, 0.146636, 0.577805, 1.45582, -0.186531, -2.01922, -1.68031e-12, -1.24987, -7.54736, 7.62276, -2.36203, -2.4959, -2.07812e-12, 0.0493134, -3.02542, -7.62276, -0.617546, 10.5728, 8.79935e-12, 4.95017, 0.714206, 1.79949, 1.36367, 1.78169, -1.79949, 1.77549}, {0, -1.49289e-16, 1.28977, -4.32425, 4.36745, -0.439908, 0.577805, 1.45582, -0.186531, -2.01922, -1.67873e-12, -1.24987, -1.78169, 1.79949, -6.93455, -4.80711, -5.82327, 0.795439, -0.714206, -1.79949, -1.36367, 2.4959, 2.07523e-12, -0.0493134, 8.79109, 1.79949, 6.36315, 1.78169, -1.79949, 1.77549}, {8.88178e-16, 3.43166e-16, 1.28977, 1.44142, -1.45582, 0.146636, -1.73341, -4.36745, 0.559594, -2.01922, -1.68189e-12, -1.24987, -1.78169, 1.79949, -1.77549, -8.26156, 5.82327, -0.537231, -0.714206, -1.79949, -6.52273, 2.4959, 2.07834e-12, -0.0493134, 0.714206, 1.79949, 1.36367, 9.85858, -1.79949, 6.77497}, {0, 1.48625e-17, 1.28977, 1.44142, -1.45582, 0.146636, 0.577805, 1.45582, -0.186531, 6.05767, 5.03935e-12, 3.74961, -1.78169, 1.79949, -1.77549, -2.4959, -2.07634e-12, 0.0493134, -0.714206, -1.79949, -1.36367, 2.4959, 2.0765e-12, -5.20838, -5.05146, 7.62276, 0.777128, -0.529529, -7.62276, 2.52162}, {-0.0174717, -4.36745, 1.62174, 0.116385, -1.45582, -0.673541, -1.39583, -1.1623e-12, 0.425765, 1.27362, 1.06054e-12, 0.788355, -0.616596, 5.82327, 4.1949, 1.58148, 1.79949, 0.306268, 7.30147, -1.79949, -1.56114, -6.67598, -1.79949, -3.45969, -1.71815, 1.79949, -0.141919, 0.151058, 1.25785e-13, -1.50074}, {0.0058239, 1.45582, -0.54058, -0.349154, 4.36745, 2.02062, -1.39583, -1.1623e-12, 0.425765, 1.27362, 1.06054e-12, 0.788355, -0.174354, -5.82327, 3.66305, 7.16481, 1.79949, -1.39679, 1.71815, -1.79949, 0.141919, -1.58148, -1.79949, -0.306268, -6.81264, 1.79949, -3.29534, 0.151058, 1.25785e-13, -1.50074}, {0.0058239, 1.45582, -0.54058, 0.116385, -1.45582, -0.673541, 4.1875, 3.48841e-12, -1.27729, 1.27362, 1.061e-12, 0.788355, -0.151058, -1.26201e-13, 1.50074, 1.11595, 7.62276, 3.00043, 1.69485, -7.62276, 2.30424, -1.58148, -1.79949, -0.306268, -1.71815, 1.79949, -0.141919, -4.94344, -4.11815e-12, -4.65416}, {0.0058239, 1.45582, -0.54058, 0.116385, -1.45582, -0.673541, -1.39583, -1.16331e-12, 0.425765, -3.82087, -3.18437e-12, -2.36507, -0.151058, -1.26255e-13, 1.50074, 1.58148, 1.79949, 0.306268, 1.71815, -1.79949, 0.141919, -1.60478, -7.62276, 1.85605, -2.18368, 7.62276, 2.55224, 5.73439, 4.77913e-12, -3.20379}, {0.776806, 4.33994, 4.33994, -1.05603, 0, 0, 0.111915, 1.44665, -0.572575, 1.20305, 1.58813e-12, 2.01922, 5.84948, 1.78815, 1.78815, 1.16698, -1.78815, 0.707741, -0.265932, -5.78659, 4.7862, -5.97917, 1.78815, -8.78463, -0.181727, -1.96304e-12, -2.4959, -1.62538, -1.78815, -1.78815}, {-0.258935, -1.44665, -1.44665, 3.16808, 0, 0, 0.111915, 1.44665, -0.572575, 1.20305, 1.58704e-12, 2.01922, 2.66112, 7.57474, 7.57474, 0.719326, -7.57474, 2.99804, 0.181727, 1.96205e-12, 2.4959, -1.16698, 1.78815, -0.707741, -4.99391, -8.30986e-12, -10.5728, -1.62538, -1.78815, -1.78815}, {-0.258935, -1.44665, -1.44665, -1.05603, 0, 0, -0.335745, -4.33994, 1.71772, 1.20305, 1.58813e-12, 2.01922, 1.62538, 1.78815, 1.78815, 5.39109, -1.78815, 0.707741, 1.21747, 5.78659, 8.28248, -1.16698, 1.78815, -0.707741, -0.181727, -1.96304e-12, -2.4959, -6.43757, -1.78815, -9.86504}, {-0.258935, -1.44665, -1.44665, -1.05603, 0, 0, 0.111915, 1.44665, -0.572575, -3.60914, -4.76221e-12, -6.05767, 1.62538, 1.78815, 1.78815, 1.16698, -1.78815, 0.707741, 0.181727, 1.9625e-12, 2.4959, -0.131244, 7.57474, 5.07885, 4.04237, -1.96214e-12, -2.4959, -2.07304, -7.57474, 0.502145}, {-1.50826, -4.33994, -0.250246, -0.36325, 9.14735e-13, 1.16277, 0.624341, -1.44665, 0.0358648, -0.763842, -1.00857e-12, -1.28205, 1.28057, -1.78815, -6.19146, -0.322725, 1.78815, -1.4816, -3.89052, 5.78659, -0.290898, 3.37809, -1.78815, 6.6098, 1.39316, 1.15988e-13, 0.147438, 0.172433, 1.78815, 1.54037}, {0.502752, 1.44665, 0.0834153, 1.08975, -2.74233e-12, -3.48831, 0.624341, -1.44665, 0.0358648, -0.763842, -1.00788e-12, -1.28205, -2.18344, -7.57474, -1.87403, -2.82009, 7.57474, -1.62505, -1.39316, -1.16267e-13, -0.147438, 0.322725, -1.78815, 1.4816, 4.44853, 4.14743e-12, 5.27564, 0.172433, 1.78815, 1.54037}, {0.502752, 1.44665, 0.0834153, -0.36325, 9.139e-13, 1.16277, -1.87302, 4.33994, -0.107594, -0.763842, -1.00765e-12, -1.28205, -0.172433, -1.78815, -1.54037, 1.13028, 1.78815, -6.13268, -3.40417, -5.78659, -0.4811, 0.322725, -1.78815, 1.4816, 1.39316, 1.15882e-13, 0.147438, 3.2278, 1.78815, 6.66858}, {0.502752, 1.44665, 0.0834153, -0.36325, 9.14526e-13, 1.16277, 0.624341, -1.44665, 0.0358648, 2.29153, 3.02502e-12, 3.84615, -0.172433, -1.78815, -1.54037, -0.322725, 1.78815, -1.4816, -1.39316, -1.1632e-13, -0.147438, -1.68828, -7.57474, 1.14793, 2.84616, -3.54214e-12, -4.50365, -2.32493, 7.57474, 1.39691}, {-5.2764, 2.09092, -1.75594, -0.883363, 0.350058, 0.882867, 0.674903, -2.28914, -0.671659, -1.55034, 2.63606, -0.796523, 2.45135, -0.971419, -5.34624, 0.257671, 2.39684, -0.261068, -5.70783, 12.8476, 2.79336, 5.94368, -12.9411, 3.44716, 3.00822, -3.69104, -0.106727, 1.0821, -0.428812, 1.81477}, {1.7588, -0.696974, 0.585315, 2.65009, -1.05017, -2.6486, 0.674903, -2.28914, -0.671659, -1.55034, 2.63606, -0.796523, -8.11729, 3.21671, -4.15603, -2.44194, 11.5534, 2.42557, -3.00822, 3.69104, 0.106727, -0.257671, -2.39684, 0.261068, 9.20957, -14.2353, 3.07936, 1.0821, -0.428812, 1.81477}, {1.7588, -0.696974, 0.585315, -0.883363, 0.350058, 0.882867, -2.02471, 6.86742, 2.01498, -1.55034, 2.63606, -0.796523, -1.0821, 0.428812, -1.81477, 3.79112, 0.996607, -3.79254, -10.0434, 6.47894, -2.23453, -0.257671, -2.39684, 0.261068, 3.00822, -3.69104, -0.106727, 7.28345, -10.973, 5.00086}, {1.7588, -0.696974, 0.585315, -0.883363, 0.350058, 0.882867, 0.674903, -2.28914, -0.671659, 4.65101, -7.90817, 2.38957, -1.0821, 0.428812, -1.81477, 0.257671, 2.39684, -0.261068, -3.00822, 3.69104, 0.106727, -7.29286, 0.391057, -2.08019, 6.54167, -5.09127, -3.6382, -1.61751, 8.72775, 4.50141}, {-0.630826, -5.80799, 0.630826, -0.387946, -0.481968, -1.21772, -0.883035, 0.3495, 0.883035, 1.06071, -1.80353, 0.544962, 1.7714, 0.130593, 6.63599, 1.57102, 0.163739, 0.413696, 4.36372, -4.22303, -4.36372, -5.81384, 7.05038, -2.59355, -0.831577, 2.82503, 0.831577, -0.219612, 1.79728, -1.7651}, {0.210275, 1.936, -0.210275, 1.16384, 1.4459, 3.65317, -0.883035, 0.3495, 0.883035, 1.06071, -1.80353, 0.544962, -0.621489, -9.54126, 2.6062, 5.10316, -1.23426, -3.11845, 0.831577, -2.82503, -0.831577, -1.57102, -0.163739, -0.413696, -5.0744, 10.0391, -1.34827, -0.219612, 1.79728, -1.7651}, {0.210275, 1.936, -0.210275, -0.387946, -0.481968, -1.21772, 2.64911, -1.0485, -2.64911, 1.06071, -1.80353, 0.544962, 0.219612, -1.79728, 1.7651, 3.1228, 2.09161, 5.28459, -0.00952469, -10.569, 0.00952469, -1.57102, -0.163739, -0.413696, -0.831577, 2.82503, 0.831577, -4.46243, 9.01139, -3.94495}, {0.210275, 1.936, -0.210275, -0.387946, -0.481968, -1.21772, -0.883035, 0.3495, 0.883035, -3.18212, 5.41059, -1.63489, 0.219612, -1.79728, 1.7651, 1.57102, 0.163739, 0.413696, 0.831577, -2.82503, -0.831577, -2.41212, -7.90772, 0.427406, 0.720206, 4.7529, 5.70247, 3.31253, 0.399276, -5.29724}, {-4.62915, 1.83443, 4.62655, 1.15731e-16, 1.13013e-15, 2.34313, -1.74201, -1.33137, 1.74389, 0.198956, 1.94285, -2.54483, -1.90731, 0.755828, -10.3625, 2.15324, 1.64567, -5.05183, 7.21395, 7.72698, -7.2249, -2.94906, -9.41706, 15.2312, -0.245923, -2.40149, 0.249326, 1.90731, -0.755828, 0.990019}, {1.54305, -0.611477, -1.54218, -3.38711e-15, -5.71373e-15, -7.02938, -1.74201, -1.33137, 1.74389, 0.198956, 1.94285, -2.54483, -8.07952, 3.20174, 5.17872, 9.12126, 6.97115, -12.0274, 0.245923, 2.40149, -0.249326, -2.15324, -1.64567, 5.05183, -1.04175, -10.1729, 10.4287, 1.90731, -0.755828, 0.990019}, {1.54305, -0.611477, -1.54218, 0, 0, 2.34313, 5.22602, 3.99411, -5.23168, 0.198956, 1.94285, -2.54483, -1.90731, 0.755828, -0.990019, 2.15324, 1.64567, -14.4243, -5.92628, 4.8474, 5.91941, -2.15324, -1.64567, 5.05183, -0.245923, -2.40149, 0.249326, 1.11149, -8.52722, 11.1694}, {1.54305, -0.611477, -1.54218, 1.15731e-16, 1.13013e-15, 2.34313, -1.74201, -1.33137, 1.74389, -0.596868, -5.82855, 7.6345, -1.90731, 0.755828, -0.990019, 2.15324, 1.64567, -5.05183, 0.245923, 2.40149, -0.249326, -8.32544, 0.800244, 11.2206, -0.245923, -2.40149, -9.12318, 8.87534, 4.56966, -5.98555}, {-4.62937, 1.83228, 4.62937, -1.60567, 0, 0, 0.198723, 1.94057, -0.198723, -0.136178, -1.32981, 1.74185, 6.49998, 0.754941, 1.90741, 1.73908, -2.39867, 0.245635, -2.94793, -9.40601, 2.94793, -1.19437, 7.71791, -7.21302, 2.15304, 1.64373, -2.15304, -0.0773091, -0.754941, -1.90741}, {1.54312, -0.61076, -1.54312, 4.817, 0, 0, 0.198723, 1.94057, -0.198723, -0.136178, -1.32981, 1.74185, -6.09519, 3.19798, 8.0799, 0.94419, -10.1609, 1.04052, -2.15304, -1.64373, 2.15304, -1.73908, 2.39867, -0.245635, 2.69775, 6.96297, -9.12042, -0.0773091, -0.754941, -1.90741}, {1.54312, -0.61076, -1.54312, -1.60567, 0, 0, -0.596168, -5.82171, 0.596168, -0.136178, -1.32981, 1.74185, 0.0773091, 0.754941, 1.90741, 8.16175, -2.39867, 0.245635, -8.32553, 0.799305, 8.32553, -1.73908, 2.39867, -0.245635, 2.15304, 1.64373, -2.15304, 0.467403, 4.5643, -8.87479}, {1.54312, -0.61076, -1.54312, -1.60567, 0, 0, 0.198723, 1.94057, -0.198723, 0.408534, 3.98943, -5.22554, 0.0773091, 0.754941, 1.90741, 1.73908, -2.39867, 0.245635, -2.15304, -1.64373, 2.15304, -7.91157, 4.84171, 5.92686, 8.57571, 1.64373, -2.15304, -0.872199, -8.51722, -1.11252}, {3.22749, -4.51945, -2.90569, 1.79579, -0.140217, 1.36925, 0.607375, 0.135762, -1.32575, -1.32734, -1.50203, -1.01206, -8.0731, -1.12793, -8.36668, -2.97048, 0.00550629, -0.0537701, -1.85046, -2.57298, 5.74449, 8.27985, 6.00261, 4.10202, -0.57904, 2.02993, -0.441503, 0.889927, 1.6888, 2.88969}, {-1.07583, 1.50648, 0.968563, -5.38738, 0.42065, -4.10774, 0.607375, 0.135762, -1.32575, -1.32734, -1.50203, -1.01206, 3.41339, -7.71473, -6.76394, -5.39998, -0.537542, 5.24921, 0.57904, -2.02993, 0.441503, 2.97048, -0.00550629, 0.0537701, 4.73032, 8.03804, 3.60675, 0.889927, 1.6888, 2.88969}, {-1.07583, 1.50648, 0.968563, 1.79579, -0.140217, 1.36925, -1.82213, -0.407286, 3.97724, -1.32734, -1.50203, -1.01206, -0.889927, -1.6888, -2.88969, -10.1537, 0.566373, -5.53076, 4.88236, -8.05586, -3.43275, 2.97048, -0.00550629, 0.0537701, -0.57904, 2.02993, -0.441503, 6.19929, 7.69691, 6.93795}, {-1.07583, 1.50648, 0.968563, 1.79579, -0.140217, 1.36925, 0.607375, 0.135762, -1.32575, 3.98202, 4.50609, 3.03619, -0.889927, -1.6888, -2.88969, -2.97048, 0.00550629, -0.0537701, 0.57904, -2.02993, 0.441503, 7.2738, -6.03144, -3.82048, -7.76222, 2.59079, -5.91849, -1.53958, 1.14575, 8.19268}, {0.596103, 2.3292, 5.82108, 0, -2.17235, 0, -1.54296, 0.977878, 0.61239, 1.74166, 1.97087, 1.32797, 0.245608, 12.3343, 2.39842, 1.9072, 1.47645, -0.756955, 8.32463, -4.16055, -0.808098, -8.87383, -9.35994, -4.55492, -2.15281, 0.249041, -1.64146, -0.245608, -3.64486, -2.39842}, {-0.198701, -0.7764, -1.94036, 0, 6.51705, 0, -1.54296, 0.977878, 0.61239, 1.74166, 1.97087, 1.32797, 1.04041, 6.75045, 10.1599, 8.07903, -2.43506, -3.20651, 2.15281, -0.249041, 1.64146, -1.9072, -1.47645, 0.756955, -9.11944, -7.63445, -6.95334, -0.245608, -3.64486, -2.39842}, {-0.198701, -0.7764, -1.94036, 0, -2.17235, 0, 4.62887, -2.93363, -1.83717, 1.74166, 1.97087, 1.32797, 0.245608, 3.64486, 2.39842, 1.9072, 10.1659, -0.756955, 2.94761, 2.85656, 9.4029, -1.9072, -1.47645, 0.756955, -2.15281, 0.249041, -1.64146, -7.21224, -11.5283, -7.71029}, {-0.198701, -0.7764, -1.94036, 0, -2.17235, 0, -1.54296, 0.977878, 0.61239, -5.22497, -5.91262, -3.98391, 0.245608, 3.64486, 2.39842, 1.9072, 1.47645, -0.756955, 2.15281, -0.249041, 1.64146, -1.1124, 1.62915, 8.51839, -2.15281, 8.93844, -1.64146, 5.92622, -7.55637, -4.84797}, {-2.37946, -3.79135, -6.81576, 0.894391, -1.25242, -0.805215, 0.086206, 0.865556, -0.85654, -1.77375, -0.876923, -0.610165, -5.66348, 4.99561, 1.40791, -1.21208, 0.478185, 2.05404, -1.43177, -6.09423, 1.67666, 8.30708, 3.02951, 0.386615, 1.08695, 2.63201, 1.74951, 2.08592, 0.0140506, 1.81295}, {0.793153, 1.26378, 2.27192, -2.68317, 3.75725, 2.41565, 0.086206, 0.865556, -0.85654, -1.77375, -0.876923, -0.610165, -5.25853, -5.06918, -10.9006, -1.55691, -2.98404, 5.4802, -1.08695, -2.63201, -1.74951, 1.21208, -0.478185, -2.05404, 8.18195, 6.1397, 4.19016, 2.08592, 0.0140506, 1.81295}, {0.793153, 1.26378, 2.27192, 0.894391, -1.25242, -0.805215, -0.258618, -2.59667, 2.56962, -1.77375, -0.876923, -0.610165, -2.08592, -0.0140506, -1.81295, -4.78965, 5.48785, 5.2749, -4.25956, -7.68714, -10.8372, 1.21208, -0.478185, -2.05404, 1.08695, 2.63201, 1.74951, 9.18092, 3.52174, 4.25361}, {0.793153, 1.26378, 2.27192, 0.894391, -1.25242, -0.805215, 0.086206, 0.865556, -0.85654, 5.32125, 2.63077, 1.83049, -2.08592, -0.0140506, -1.81295, -1.21208, 0.478185, 2.05404, -1.08695, -2.63201, -1.74951, -1.96053, -5.53332, -11.1417, -2.49062, 7.64167, 4.97037, 1.74109, -3.44817, 5.23911}, {4.58783, -0.200634, 4.23679, 1.50209, -0.951977, -0.596169, -2.69821, -0.462309, 1.0709, 2.7254, 1.34741, 0.937529, -5.97475, 4.90195, 4.86723, 1.47849, 1.74815, -0.586802, 16.0183, 2.33802, -3.86166, -12.3801, -7.13778, -3.16331, -5.22546, -0.48878, -0.421944, -0.0336074, -1.09404, -2.48256}, {-1.52928, 0.0668781, -1.41226, -4.50626, 2.85593, 1.78851, -2.69821, -0.462309, 1.0709, 2.7254, 1.34741, 0.937529, 6.15072, 0.82653, 8.1316, 12.2713, 3.59739, -4.87041, 5.22546, 0.48878, 0.421944, -1.47849, -1.74815, 0.586802, -16.1271, -5.87841, -4.17206, -0.0336074, -1.09404, -2.48256}, {-1.52928, 0.0668781, -1.41226, 1.50209, -0.951977, -0.596169, 8.09463, 1.38693, -3.21271, 2.7254, 1.34741, 0.937529, 0.0336074, 1.09404, 2.48256, -4.52987, 5.55606, 1.79787, 11.3426, 0.221267, 6.07099, -1.47849, -1.74815, 0.586802, -5.22546, -0.48878, -0.421944, -10.9352, -6.48367, -6.23267}, {-1.52928, 0.0668781, -1.41226, 1.50209, -0.951977, -0.596169, -2.69821, -0.462309, 1.0709, -8.1762, -4.04222, -2.81259, 0.0336074, 1.09404, 2.48256, 1.47849, 1.74815, -0.586802, 5.22546, 0.48878, 0.421944, 4.63862, -2.01567, 6.23585, -11.2338, 3.31913, 1.96273, 10.7592, 0.755194, -6.76616}, {1.83443, -2.90588, -4.62915, 0, -2.17235, 0, 1.94285, -0.797826, 0.198956, -1.33137, 2.00155, -1.74201, 0.755828, 10.1773, -1.90731, -2.40149, 3.67134, -0.245923, -9.41706, 2.98018, -2.94906, 7.72698, -11.6775, 7.21395, 1.64567, 0.211121, 2.15324, -0.755828, -1.48788, 1.90731}, {-0.611477, 0.968627, 1.54305, 0, 6.51705, 0, 1.94285, -0.797826, 0.198956, -1.33137, 2.00155, -1.74201, 3.20174, -2.38662, -8.07952, -10.1729, 6.86264, -1.04175, -1.64567, -0.211121, -2.15324, 2.40149, -3.67134, 0.245923, 6.97115, -7.79508, 9.12126, -0.755828, -1.48788, 1.90731}, {-0.611477, 0.968627, 1.54305, 0, -2.17235, 0, -5.82855, 2.39348, -0.596868, -1.33137, 2.00155, -1.74201, 0.755828, 1.48788, -1.90731, -2.40149, 12.3607, -0.245923, 0.800244, -4.08563, -8.32544, 2.40149, -3.67134, 0.245923, 1.64567, 0.211121, 2.15324, 4.56966, -9.49408, 8.87534}, {-0.611477, 0.968627, 1.54305, 0, -2.17235, 0, 1.94285, -0.797826, 0.198956, 3.99411, -6.00465, 5.22602, 0.755828, 1.48788, -1.90731, -2.40149, 3.67134, -0.245923, -1.64567, -0.211121, -2.15324, 4.8474, -7.54585, -5.92628, 1.64567, 8.90052, 2.15324, -8.52722, 1.70342, 1.11149}, {-3.96631, -0.406167, 1.83974, -1.35283, -0.138536, -1.77009, -0.9692, 1.50642, 1.075, 0.999931, -1.50327, 1.30834, 5.44932, 0.558033, 10.0263, 2.87019, -1.6908, 0.859181, 3.44059, -8.05506, -4.87073, -6.86992, 7.70388, -6.09254, 0.436211, 2.02938, 0.570751, -0.0379859, -0.00388992, -2.94596}, {1.3221, 0.135389, -0.613248, 4.0585, 0.415608, 5.31026, -0.9692, 1.50642, 1.075, 0.999931, -1.50327, 1.30834, -5.25042, -0.537666, 5.39896, 6.74699, -7.71647, -3.4408, -0.436211, -2.02938, -0.570751, -2.87019, 1.6908, -0.859181, -3.56351, 8.04247, -4.66261, -0.0379859, -0.00388992, -2.94596}, {1.3221, 0.135389, -0.613248, -1.35283, -0.138536, -1.77009, 2.9076, -4.51925, -3.22499, 0.999931, -1.50327, 1.30834, 0.0379859, 0.00388992, 2.94596, 8.28152, -1.13665, 7.93953, -5.72462, -2.57094, 1.88224, -2.87019, 1.6908, -0.859181, 0.436211, 2.02938, 0.570751, -4.03771, 6.00919, -8.17932}, {1.3221, 0.135389, -0.613248, -1.35283, -0.138536, -1.77009, -0.9692, 1.50642, 1.075, -2.99979, 4.50981, -3.92502, 0.0379859, 0.00388992, 2.94596, 2.87019, -1.6908, 0.859181, -0.436211, -2.02938, -0.570751, -8.1586, 1.14924, 1.59381, 5.84754, 2.58353, 7.6511, 3.83881, -6.02956, -7.24594}, {3.10069, 1.60532, -7.82452, 0.575383, -0.91145, -1.45197, 1.48006, -0.0647255, 1.36681, -1.02187, 1.51128, -2.52301, -1.73519, 5.43384, 4.37871, -2.54066, 1.20662, 0.105263, -6.47211, 1.00034, -10.3806, 6.62816, -7.25175, 9.9868, 0.551894, -0.741434, 4.91335, -0.566342, -1.78804, 1.42915}, {-1.03356, -0.535107, 2.60817, -1.72615, 2.73435, 4.3559, 1.48006, -0.0647255, 1.36681, -1.02187, 1.51128, -2.52301, 4.7006, 3.92847, -11.8619, -8.46088, 1.46552, -5.36196, -0.551894, 0.741434, -4.91335, 2.54066, -1.20662, -0.105263, 4.63939, -6.78657, 15.0054, -0.566342, -1.78804, 1.42915}, {-1.03356, -0.535107, 2.60817, 0.575383, -0.91145, -1.45197, -4.44017, 0.194177, -4.10042, -1.02187, 1.51128, -2.52301, 0.566342, 1.78804, -1.42915, -4.84219, 4.85242, 5.91313, 3.58236, 2.88186, -15.346, 2.54066, -1.20662, -0.105263, 0.551894, -0.741434, 4.91335, 3.52116, -7.83317, 11.5212}, {-1.03356, -0.535107, 2.60817, 0.575383, -0.91145, -1.45197, 1.48006, -0.0647255, 1.36681, 3.06562, -4.53385, 7.56904, 0.566342, 1.78804, -1.42915, -2.54066, 1.20662, 0.105263, -0.551894, 0.741434, -4.91335, 6.67491, 0.933809, -10.538, -1.74964, 2.90437, 10.7212, -6.48656, -1.52914, -4.03807}, {-2.63316, -2.47826, 0.36108, 0.802811, -1.2478, -0.890444, -2.35614, 1.42089, -0.657266, 0.675604, -0.999172, 1.66807, -5.2885, 5.51247, 4.8112, 1.92002, -0.213947, 1.91307, 11.252, -8.46096, 3.59026, -4.62243, 4.21063, -8.58536, -1.82742, 2.77741, -0.961199, 2.07725, -0.52127, -1.24942}, {0.877721, 0.826085, -0.12036, -2.40843, 3.7434, 2.67133, -2.35614, 1.42089, -0.657266, 0.675604, -0.999172, 1.66807, -5.58814, -2.78307, 1.73086, 11.3446, -5.8975, 4.54214, 1.82742, -2.77741, 0.961199, -1.92002, 0.213947, -1.91307, -4.52984, 6.7741, -7.63348, 2.07725, -0.52127, -1.24942}, {0.877721, 0.826085, -0.12036, 0.802811, -1.2478, -0.890444, 7.06841, -4.26266, 1.9718, 0.675604, -0.999172, 1.66807, -2.07725, 0.52127, 1.24942, -1.29123, 4.77726, 5.47485, -1.68346, -6.08175, 1.44264, -1.92002, 0.213947, -1.91307, -1.82742, 2.77741, -0.961199, -0.625163, 3.47542, -7.9217}, {0.877721, 0.826085, -0.12036, 0.802811, -1.2478, -0.890444, -2.35614, 1.42089, -0.657266, -2.02681, 2.99752, -5.00421, -2.07725, 0.52127, 1.24942, 1.92002, -0.213947, 1.91307, 1.82742, -2.77741, 0.961199, -5.4309, -3.09039, -1.43164, -5.03867, 7.76862, 2.60058, 11.5018, -6.20482, 1.37964}, {-0.815557, 4.36562, -0.135176, -1.95424, 0.460185, -0.243585, -0.0205487, 0.870319, -1.11219, 1.70294, 0.124702, 1.31071, 9.89652, -0.610825, 1.21973, 2.44098, -1.64459, 1.67583, -0.228434, -2.75832, 5.76778, -9.25274, 1.14578, -6.91867, 0.310628, -0.722961, -1.31904, -2.07955, -1.22991, -0.245392}, {0.271852, -1.45521, 0.0450587, 5.86273, -1.38055, 0.730756, -0.0205487, 0.870319, -1.11219, 1.70294, 0.124702, 1.31071, 0.99214, 7.05074, 0.0651576, 2.52317, -5.12587, 6.12457, -0.310628, 0.722961, 1.31904, -2.44098, 1.64459, -1.67583, -6.50113, -1.22177, -6.56189, -2.07955, -1.22991, -0.245392}, {0.271852, -1.45521, 0.0450587, -1.95424, 0.460185, -0.243585, 0.0616461, -2.61096, 3.33656, 1.70294, 0.124702, 1.31071, 2.07955, 1.22991, 0.245392, 10.258, -3.48533, 2.65017, -1.39804, 6.54379, 1.13881, -2.44098, 1.64459, -1.67583, 0.310628, -0.722961, -1.31904, -8.89131, -1.72872, -5.48824}, {0.271852, -1.45521, 0.0450587, -1.95424, 0.460185, -0.243585, -0.0205487, 0.870319, -1.11219, -5.10882, -0.374107, -3.93214, 2.07955, 1.22991, 0.245392, 2.44098, -1.64459, 1.67583, -0.310628, 0.722961, 1.31904, -3.52839, 7.46542, -1.85606, 8.1276, -2.5637, -0.344701, -1.99736, -4.71119, 4.20335}, {-2.82343, -2.82223, 1.11598, 0.652804, 0.651093, 1.763, 0.935946, -1.40658, 0.556196, -2.52989, -0.185258, -1.9472, -4.58144, -4.57199, -8.77136, -1.9638, 0.933829, -2.86668, -6.064, 6.20211, -2.45247, 12.0834, -0.192795, 10.6555, 2.32021, -0.575803, 0.227687, 1.97023, 1.96762, 1.71938}, {0.941145, 0.940742, -0.371993, -1.95841, -1.95328, -5.28899, 0.935946, -1.40658, 0.556196, -2.52989, -0.185258, -1.9472, -5.73481, -5.73058, -0.231403, -5.70759, 6.56014, -5.09146, -2.32021, 0.575803, -0.227687, 1.9638, -0.933829, 2.86668, 12.4398, 0.165231, 8.01649, 1.97023, 1.96762, 1.71938}, {0.941145, 0.940742, -0.371993, 0.652804, 0.651093, 1.763, -2.80784, 4.21973, -1.66859, -2.52989, -0.185258, -1.9472, -1.97023, -1.96762, -1.71938, -4.57502, -1.67054, -9.91867, -6.08479, -3.18716, 1.26029, 1.9638, -0.933829, 2.86668, 2.32021, -0.575803, 0.227687, 12.0898, 2.70865, 9.50817}, {0.941145, 0.940742, -0.371993, 0.652804, 0.651093, 1.763, 0.935946, -1.40658, 0.556196, 7.58968, 0.555775, 5.8416, -1.97023, -1.96762, -1.71938, -1.9638, 0.933829, -2.86668, -2.32021, 0.575803, -0.227687, -1.80078, -4.6968, 4.35465, -0.291002, -3.18018, -6.8243, -1.77356, 7.59392, -0.505409}, {4.38876, 6.50951, 0.486449, -0.364196, 1.94951, -0.0603643, 0.336809, -1.04259, -1.05295, 1.49031, 1.26291, 1.27547, 3.71522, -7.52572, 0.5165, 0.0338521, -1.12102, 1.37614, 0.0447138, 8.14114, 5.71377, -5.99508, -3.93064, -6.47801, -1.39195, -3.97078, -1.50195, -2.25844, -0.272335, -0.275043}, {-1.46292, -2.16984, -0.16215, 1.09259, -5.84854, 0.181093, 0.336809, -1.04259, -1.05295, 1.49031, 1.26291, 1.27547, 8.11012, 8.95169, 0.923642, -1.31338, 3.04934, 5.58796, 1.39195, 3.97078, 1.50195, -0.0338521, 1.12102, -1.37614, -7.35318, -9.02244, -6.60383, -2.25844, -0.272335, -0.275043}, {-1.46292, -2.16984, -0.16215, -0.364196, 1.94951, -0.0603643, -1.01043, 3.12777, 3.15886, 1.49031, 1.26291, 1.27547, 2.25844, 0.272335, 0.275043, 1.49064, -8.91908, 1.6176, 7.24363, 12.6501, 2.15055, -0.0338521, 1.12102, -1.37614, -1.39195, -3.97078, -1.50195, -8.21966, -5.32399, -5.37692}, {-1.46292, -2.16984, -0.16215, -0.364196, 1.94951, -0.0603643, 0.336809, -1.04259, -1.05295, -4.47092, -3.78874, -3.82641, 2.25844, 0.272335, 0.275043, 0.0338521, -1.12102, 1.37614, 1.39195, 3.97078, 1.50195, 5.81783, 9.80037, -0.727539, 0.0648337, -11.7688, -1.26049, -3.60567, 3.89803, 3.93678}, {-4.70136, 0, -1.77636e-15, -0.960805, 1.44394, -0.570969, 1.09021, -0.00626368, 2.02293, -1.69653, -1.43767, -1.45196, 3.09377, -7.56055, 2.98963, -0.159958, -1.77706, -1.79473, -7.6455, 0.0327971, -10.5922, 6.94608, 7.52775, 7.60258, 3.28465, -0.00774234, 2.50048, 0.749448, 1.7848, -0.705756}, {1.56712, -2.22045e-16, 1.11022e-15, 2.88242, -4.33181, 1.71291, 1.09021, -0.00626368, 2.02293, -1.69653, -1.43767, -1.45196, -7.01793, -1.7848, 0.705756, -4.52081, -1.75201, -9.88646, -3.28465, 0.00774234, -2.50048, 0.159958, 1.77706, 1.79473, 10.0708, 5.74295, 8.30834, 0.749448, 1.7848, -0.705756}, {1.56712, -8.88178e-16, -8.88178e-16, -0.960805, 1.44394, -0.570969, -3.27064, 0.018791, -6.0688, -1.69653, -1.43767, -1.45196, -0.749448, -1.7848, 0.705756, 3.68326, -7.5528, 0.489149, -9.55313, 0.00774234, -2.50048, 0.159958, 1.77706, 1.79473, 3.28465, -0.00774234, 2.50048, 7.53557, 7.53549, 5.1021}, {1.56712, 0, 0, -0.960805, 1.44394, -0.570969, 1.09021, -0.00626368, 2.02293, 5.08959, 4.31302, 4.35589, -0.749448, -1.7848, 0.705756, -0.159958, -1.77706, -1.79473, -3.28465, 0.00774234, -2.50048, -6.10853, 1.77706, 1.79473, 7.12787, -5.78349, 4.78436, -3.61141, 1.80986, -8.79749}}
   ]
   + total size  : 6.8e+02kB
  ]
  + total size  : 6.8e+02kB
 ]
 
diff --git a/test/test_fem/test_interpolate_tetrahedron_4.verified b/test/test_fem/test_interpolate_tetrahedron_4.verified
index b7131ed74..d00d0fcc7 100644
--- a/test/test_fem/test_interpolate_tetrahedron_4.verified
+++ b/test/test_fem/test_interpolate_tetrahedron_4.verified
@@ -1,172 +1,172 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 3
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 131
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 48
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
        ]
-        (not_ghost:triangle_3) [
+        (not_ghost:_triangle_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_3
+        + id             : mesh:connectivities:_triangle_3
         + size           : 240
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{45, 49, 35}, {45, 8, 50}, {46, 38, 51}, {23, 47, 52}, {46, 50, 10}, {37, 49, 47}, {25, 52, 48}, {40, 48, 51}, {35, 49, 36}, {38, 39, 51}, {8, 9, 50}, {23, 52, 24}, {36, 49, 37}, {9, 10, 50}, {39, 40, 51}, {24, 52, 25}, {45, 44, 49}, {45, 50, 44}, {46, 44, 50}, {44, 47, 49}, {46, 51, 44}, {44, 52, 47}, {44, 51, 48}, {44, 48, 52}, {45, 35, 53}, {45, 53, 8}, {46, 54, 38}, {23, 55, 47}, {46, 10, 54}, {37, 47, 55}, {25, 48, 56}, {40, 56, 48}, {4, 37, 55}, {6, 53, 35}, {7, 54, 10}, {7, 38, 54}, {6, 8, 53}, {5, 56, 40}, {4, 55, 23}, {5, 25, 56}, {11, 62, 58}, {14, 63, 59}, {8, 64, 60}, {17, 65, 61}, {10, 58, 64}, {19, 60, 65}, {13, 59, 62}, {16, 61, 63}, {14, 15, 63}, {11, 12, 62}, {17, 18, 65}, {8, 9, 64}, {12, 13, 62}, {15, 16, 63}, {9, 10, 64}, {18, 19, 65}, {58, 62, 57}, {59, 57, 62}, {59, 63, 57}, {61, 57, 63}, {58, 57, 64}, {60, 64, 57}, {60, 57, 65}, {61, 65, 57}, {11, 58, 67}, {14, 59, 66}, {8, 60, 69}, {17, 61, 68}, {10, 67, 58}, {19, 69, 60}, {13, 66, 59}, {16, 68, 61}, {2, 68, 16}, {3, 66, 13}, {6, 69, 19}, {7, 67, 10}, {7, 11, 67}, {3, 14, 66}, {6, 8, 69}, {2, 17, 68}, {26, 75, 71}, {29, 76, 72}, {23, 77, 73}, {20, 78, 74}, {25, 71, 77}, {22, 73, 78}, {28, 72, 75}, {31, 74, 76}, {29, 30, 76}, {26, 27, 75}, {20, 21, 78}, {23, 24, 77}, {27, 28, 75}, {30, 31, 76}, {24, 25, 77}, {21, 22, 78}, {71, 75, 70}, {72, 70, 75}, {72, 76, 70}, {70, 76, 74}, {71, 70, 77}, {70, 73, 77}, {70, 78, 73}, {70, 74, 78}, {26, 71, 80}, {29, 72, 79}, {23, 73, 82}, {20, 74, 81}, {25, 80, 71}, {22, 82, 73}, {28, 79, 72}, {31, 81, 74}, {0, 81, 31}, {1, 79, 28}, {4, 82, 22}, {5, 80, 25}, {5, 26, 80}, {1, 29, 79}, {4, 23, 82}, {0, 20, 81}, {41, 84, 88}, {14, 89, 84}, {29, 86, 90}, {32, 91, 85}, {16, 85, 89}, {43, 88, 86}, {34, 87, 91}, {31, 90, 87}, {41, 88, 42}, {14, 15, 89}, {29, 90, 30}, {32, 33, 91}, {42, 88, 43}, {15, 16, 89}, {33, 34, 91}, {30, 90, 31}, {84, 89, 83}, {84, 83, 88}, {85, 83, 89}, {86, 88, 83}, {85, 91, 83}, {86, 83, 90}, {87, 90, 83}, {87, 83, 91}, {14, 84, 92}, {41, 92, 84}, {29, 94, 86}, {32, 85, 93}, {43, 86, 94}, {16, 93, 85}, {31, 87, 95}, {34, 95, 87}, {1, 43, 94}, {2, 93, 16}, {3, 92, 41}, {3, 14, 92}, {1, 94, 29}, {2, 32, 93}, {0, 31, 95}, {0, 95, 34}, {32, 97, 101}, {17, 102, 97}, {35, 103, 98}, {20, 99, 104}, {19, 98, 102}, {34, 101, 99}, {22, 104, 100}, {37, 100, 103}, {32, 101, 33}, {35, 36, 103}, {17, 18, 102}, {20, 104, 21}, {33, 101, 34}, {18, 19, 102}, {36, 37, 103}, {21, 104, 22}, {97, 96, 101}, {97, 102, 96}, {98, 96, 102}, {99, 101, 96}, {98, 103, 96}, {99, 96, 104}, {100, 96, 103}, {100, 104, 96}, {32, 105, 97}, {17, 97, 105}, {35, 98, 106}, {20, 107, 99}, {19, 106, 98}, {34, 99, 107}, {22, 100, 108}, {37, 108, 100}, {0, 34, 107}, {2, 105, 32}, {6, 106, 19}, {6, 35, 106}, {2, 17, 105}, {4, 108, 37}, {0, 107, 20}, {4, 22, 108}, {11, 110, 115}, {38, 114, 110}, {26, 116, 112}, {41, 111, 117}, {13, 115, 111}, {40, 112, 114}, {43, 117, 113}, {28, 113, 116}, {11, 115, 12}, {38, 39, 114}, {26, 27, 116}, {41, 117, 42}, {39, 40, 114}, {12, 115, 13}, {42, 117, 43}, {27, 28, 116}, {109, 110, 114}, {109, 115, 110}, {111, 115, 109}, {112, 109, 114}, {111, 109, 117}, {112, 116, 109}, {113, 109, 116}, {113, 117, 109}, {11, 118, 110}, {38, 110, 118}, {26, 112, 120}, {41, 119, 111}, {40, 120, 112}, {13, 111, 119}, {28, 121, 113}, {43, 113, 121}, {5, 120, 40}, {3, 13, 119}, {7, 38, 118}, {7, 118, 11}, {5, 26, 120}, {3, 119, 41}, {1, 121, 28}, {1, 43, 121}}
        ]
-        (not_ghost:tetrahedron_4) [
+        (not_ghost:_tetrahedron_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:tetrahedron_4
+        + id             : mesh:connectivities:_tetrahedron_4
         + size           : 341
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{124, 123, 125, 129}, {43, 86, 130, 88}, {70, 124, 129, 126}, {48, 77, 25, 52}, {31, 0, 81, 95}, {0, 107, 81, 95}, {126, 91, 87, 101}, {124, 70, 129, 125}, {43, 121, 113, 130}, {55, 100, 82, 108}, {100, 55, 82, 73}, {23, 55, 73, 82}, {71, 75, 125, 112}, {123, 44, 124, 125}, {43, 113, 117, 130}, {94, 43, 86, 130}, {122, 123, 128, 129}, {46, 10, 58, 50}, {99, 107, 81, 20}, {125, 112, 116, 109}, {79, 72, 28, 130}, {123, 122, 125, 129}, {67, 11, 7, 118}, {123, 127, 128, 129}, {124, 44, 49, 47}, {17, 65, 18, 102}, {76, 90, 30, 31}, {54, 10, 7, 67}, {9, 10, 50, 64}, {38, 54, 7, 118}, {123, 124, 127, 129}, {12, 115, 62, 13}, {97, 61, 102, 127}, {45, 53, 8, 69}, {38, 114, 39, 51}, {125, 75, 129, 116}, {122, 44, 123, 125}, {71, 70, 77, 124}, {114, 112, 125, 109}, {32, 93, 97, 85}, {53, 6, 8, 69}, {117, 128, 129, 109}, {63, 61, 16, 89}, {76, 90, 31, 74}, {61, 85, 16, 89}, {65, 123, 60, 98}, {55, 100, 47, 73}, {100, 47, 103, 37}, {96, 123, 103, 124}, {55, 23, 4, 82}, {78, 100, 22, 73}, {61, 85, 89, 127}, {61, 127, 89, 63}, {121, 43, 94, 130}, {108, 22, 82, 4}, {14, 92, 3, 66}, {78, 21, 104, 20}, {100, 78, 104, 124}, {14, 15, 89, 63}, {90, 126, 87, 74}, {90, 76, 126, 74}, {3, 13, 66, 119}, {108, 55, 4, 82}, {58, 11, 110, 62}, {11, 115, 110, 62}, {57, 123, 60, 65}, {122, 58, 110, 62}, {115, 122, 110, 62}, {117, 128, 88, 129}, {86, 129, 130, 88}, {70, 71, 125, 124}, {107, 0, 34, 95}, {122, 114, 125, 109}, {126, 86, 83, 129}, {92, 3, 66, 119}, {129, 86, 83, 88}, {128, 41, 119, 111}, {117, 128, 111, 41}, {11, 12, 115, 62}, {33, 32, 101, 91}, {70, 124, 126, 74}, {100, 124, 47, 73}, {96, 124, 126, 127}, {78, 70, 124, 73}, {90, 76, 30, 29}, {96, 123, 124, 127}, {15, 63, 16, 89}, {121, 79, 1, 28}, {76, 70, 126, 74}, {122, 114, 109, 110}, {129, 117, 130, 88}, {123, 44, 49, 124}, {26, 80, 5, 120}, {123, 65, 102, 98}, {57, 123, 127, 128}, {117, 128, 109, 111}, {70, 78, 124, 74}, {95, 107, 81, 87}, {55, 100, 37, 47}, {77, 24, 25, 52}, {100, 78, 22, 104}, {56, 71, 25, 48}, {14, 59, 89, 84}, {96, 100, 104, 124}, {2, 105, 68, 17}, {124, 123, 103, 49}, {123, 57, 60, 64}, {44, 124, 52, 47}, {71, 112, 48, 56}, {41, 117, 88, 42}, {99, 96, 126, 101}, {97, 85, 127, 101}, {34, 91, 101, 87}, {128, 127, 83, 129}, {126, 90, 83, 86}, {75, 71, 125, 70}, {99, 126, 74, 87}, {23, 55, 47, 73}, {100, 78, 124, 73}, {32, 91, 85, 101}, {57, 122, 62, 58}, {71, 77, 25, 48}, {70, 77, 124, 73}, {114, 38, 110, 51}, {114, 40, 39, 51}, {59, 14, 89, 63}, {53, 106, 35, 6}, {45, 123, 98, 60}, {99, 126, 87, 101}, {106, 53, 69, 6}, {46, 122, 110, 51}, {128, 122, 129, 109}, {124, 100, 47, 103}, {107, 99, 81, 87}, {125, 44, 48, 51}, {38, 46, 110, 51}, {44, 123, 49, 45}, {124, 47, 49, 103}, {36, 35, 49, 103}, {46, 122, 51, 44}, {54, 67, 7, 118}, {10, 64, 58, 50}, {122, 114, 51, 125}, {11, 58, 118, 67}, {44, 122, 51, 125}, {58, 11, 118, 110}, {22, 100, 82, 73}, {46, 122, 58, 110}, {108, 100, 82, 22}, {45, 60, 8, 50}, {99, 81, 74, 20}, {60, 45, 8, 69}, {75, 71, 26, 112}, {107, 0, 81, 20}, {126, 91, 83, 87}, {31, 90, 87, 74}, {34, 107, 95, 87}, {126, 96, 127, 101}, {91, 126, 127, 101}, {92, 14, 84, 66}, {105, 32, 2, 93}, {47, 49, 103, 37}, {115, 122, 109, 110}, {33, 91, 101, 34}, {49, 36, 103, 37}, {112, 71, 48, 125}, {59, 128, 89, 84}, {19, 65, 60, 98}, {124, 126, 127, 129}, {126, 91, 127, 83}, {31, 81, 74, 87}, {81, 99, 74, 87}, {117, 113, 129, 130}, {84, 128, 88, 41}, {113, 117, 129, 109}, {90, 76, 29, 86}, {65, 19, 102, 98}, {55, 100, 108, 37}, {96, 123, 102, 98}, {14, 59, 84, 66}, {100, 96, 103, 124}, {32, 105, 97, 93}, {99, 34, 101, 87}, {127, 126, 83, 129}, {94, 29, 130, 86}, {19, 106, 69, 6}, {128, 117, 88, 41}, {123, 96, 103, 98}, {46, 38, 110, 118}, {77, 23, 24, 52}, {19, 65, 102, 18}, {121, 79, 28, 130}, {46, 54, 38, 118}, {113, 121, 28, 130}, {108, 55, 37, 4}, {112, 75, 116, 26}, {56, 40, 5, 120}, {75, 27, 28, 116}, {127, 85, 89, 83}, {66, 59, 84, 128}, {85, 61, 97, 127}, {122, 125, 129, 109}, {26, 75, 116, 27}, {128, 129, 83, 88}, {122, 123, 57, 128}, {40, 112, 56, 48}, {80, 56, 25, 5}, {84, 128, 83, 88}, {91, 85, 127, 83}, {57, 61, 63, 127}, {123, 122, 64, 50}, {3, 92, 41, 119}, {44, 123, 45, 50}, {47, 124, 52, 73}, {79, 72, 130, 29}, {32, 85, 97, 101}, {2, 93, 16, 68}, {105, 93, 68, 97}, {97, 61, 68, 17}, {85, 91, 127, 101}, {96, 97, 127, 101}, {105, 97, 68, 17}, {124, 77, 52, 73}, {56, 71, 80, 25}, {60, 64, 8, 50}, {64, 9, 8, 50}, {65, 61, 102, 17}, {93, 105, 68, 2}, {61, 97, 102, 17}, {78, 21, 22, 104}, {23, 47, 52, 73}, {112, 40, 56, 120}, {80, 56, 5, 120}, {31, 95, 81, 87}, {99, 107, 34, 87}, {58, 46, 110, 118}, {43, 121, 94, 1}, {112, 75, 125, 116}, {122, 114, 110, 51}, {77, 23, 52, 73}, {90, 126, 83, 87}, {13, 66, 111, 59}, {111, 66, 13, 119}, {66, 128, 111, 59}, {111, 128, 66, 119}, {60, 50, 123, 64}, {123, 50, 60, 45}, {74, 104, 126, 99}, {104, 20, 74, 78}, {74, 20, 104, 99}, {45, 69, 106, 53}, {45, 106, 35, 53}, {35, 106, 45, 98}, {129, 116, 109, 125}, {109, 116, 129, 113}, {54, 10, 58, 46}, {58, 10, 54, 67}, {54, 58, 118, 46}, {118, 58, 54, 67}, {113, 129, 75, 116}, {28, 113, 75, 116}, {129, 75, 70, 72}, {129, 70, 75, 125}, {43, 117, 88, 130}, {88, 117, 43, 42}, {56, 112, 80, 71}, {56, 80, 112, 120}, {80, 112, 26, 71}, {80, 26, 112, 120}, {74, 124, 104, 78}, {74, 104, 124, 126}, {126, 104, 96, 99}, {96, 104, 126, 124}, {62, 128, 57, 59}, {57, 128, 62, 122}, {130, 29, 121, 79}, {121, 29, 130, 94}, {29, 1, 121, 79}, {121, 1, 29, 94}, {58, 50, 122, 46}, {122, 50, 58, 64}, {97, 93, 61, 85}, {97, 61, 93, 68}, {61, 93, 16, 85}, {61, 16, 93, 68}, {59, 89, 127, 63}, {127, 89, 59, 128}, {59, 127, 57, 63}, {57, 127, 59, 128}, {86, 76, 126, 90}, {86, 126, 76, 129}, {125, 51, 112, 114}, {112, 51, 125, 48}, {51, 40, 112, 114}, {112, 40, 51, 48}, {48, 124, 77, 52}, {44, 48, 124, 125}, {44, 124, 48, 52}, {61, 102, 123, 65}, {123, 102, 61, 127}, {61, 123, 57, 65}, {57, 123, 61, 127}, {106, 19, 60, 98}, {60, 19, 106, 69}, {106, 60, 45, 98}, {45, 60, 106, 69}, {122, 64, 57, 123}, {57, 64, 122, 58}, {76, 129, 70, 72}, {70, 129, 76, 126}, {84, 66, 119, 92}, {84, 119, 66, 128}, {41, 84, 119, 92}, {41, 119, 84, 128}, {124, 71, 48, 77}, {124, 48, 71, 125}, {128, 89, 83, 127}, {83, 89, 128, 84}, {111, 128, 62, 59}, {62, 111, 13, 115}, {13, 111, 62, 59}, {122, 50, 44, 46}, {44, 50, 122, 123}, {102, 127, 96, 97}, {96, 127, 102, 123}, {103, 123, 45, 49}, {103, 45, 123, 98}, {35, 103, 45, 49}, {35, 45, 103, 98}, {28, 130, 75, 113}, {75, 130, 28, 72}, {130, 129, 75, 113}, {75, 129, 130, 72}, {29, 130, 76, 72}, {76, 130, 29, 86}, {130, 129, 76, 72}, {76, 129, 130, 86}, {62, 111, 122, 128}, {122, 111, 62, 115}, {111, 109, 122, 128}, {122, 109, 111, 115}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 3
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 131
      + nb_component   : 3
      + allocated size : 2000
      + memory size    : 47kB
      + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 48
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
        ]
-        (not_ghost:triangle_3) [
+        (not_ghost:_triangle_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_3
+        + id             : mesh:connectivities:_triangle_3
         + size           : 240
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{45, 49, 35}, {45, 8, 50}, {46, 38, 51}, {23, 47, 52}, {46, 50, 10}, {37, 49, 47}, {25, 52, 48}, {40, 48, 51}, {35, 49, 36}, {38, 39, 51}, {8, 9, 50}, {23, 52, 24}, {36, 49, 37}, {9, 10, 50}, {39, 40, 51}, {24, 52, 25}, {45, 44, 49}, {45, 50, 44}, {46, 44, 50}, {44, 47, 49}, {46, 51, 44}, {44, 52, 47}, {44, 51, 48}, {44, 48, 52}, {45, 35, 53}, {45, 53, 8}, {46, 54, 38}, {23, 55, 47}, {46, 10, 54}, {37, 47, 55}, {25, 48, 56}, {40, 56, 48}, {4, 37, 55}, {6, 53, 35}, {7, 54, 10}, {7, 38, 54}, {6, 8, 53}, {5, 56, 40}, {4, 55, 23}, {5, 25, 56}, {11, 62, 58}, {14, 63, 59}, {8, 64, 60}, {17, 65, 61}, {10, 58, 64}, {19, 60, 65}, {13, 59, 62}, {16, 61, 63}, {14, 15, 63}, {11, 12, 62}, {17, 18, 65}, {8, 9, 64}, {12, 13, 62}, {15, 16, 63}, {9, 10, 64}, {18, 19, 65}, {58, 62, 57}, {59, 57, 62}, {59, 63, 57}, {61, 57, 63}, {58, 57, 64}, {60, 64, 57}, {60, 57, 65}, {61, 65, 57}, {11, 58, 67}, {14, 59, 66}, {8, 60, 69}, {17, 61, 68}, {10, 67, 58}, {19, 69, 60}, {13, 66, 59}, {16, 68, 61}, {2, 68, 16}, {3, 66, 13}, {6, 69, 19}, {7, 67, 10}, {7, 11, 67}, {3, 14, 66}, {6, 8, 69}, {2, 17, 68}, {26, 75, 71}, {29, 76, 72}, {23, 77, 73}, {20, 78, 74}, {25, 71, 77}, {22, 73, 78}, {28, 72, 75}, {31, 74, 76}, {29, 30, 76}, {26, 27, 75}, {20, 21, 78}, {23, 24, 77}, {27, 28, 75}, {30, 31, 76}, {24, 25, 77}, {21, 22, 78}, {71, 75, 70}, {72, 70, 75}, {72, 76, 70}, {70, 76, 74}, {71, 70, 77}, {70, 73, 77}, {70, 78, 73}, {70, 74, 78}, {26, 71, 80}, {29, 72, 79}, {23, 73, 82}, {20, 74, 81}, {25, 80, 71}, {22, 82, 73}, {28, 79, 72}, {31, 81, 74}, {0, 81, 31}, {1, 79, 28}, {4, 82, 22}, {5, 80, 25}, {5, 26, 80}, {1, 29, 79}, {4, 23, 82}, {0, 20, 81}, {41, 84, 88}, {14, 89, 84}, {29, 86, 90}, {32, 91, 85}, {16, 85, 89}, {43, 88, 86}, {34, 87, 91}, {31, 90, 87}, {41, 88, 42}, {14, 15, 89}, {29, 90, 30}, {32, 33, 91}, {42, 88, 43}, {15, 16, 89}, {33, 34, 91}, {30, 90, 31}, {84, 89, 83}, {84, 83, 88}, {85, 83, 89}, {86, 88, 83}, {85, 91, 83}, {86, 83, 90}, {87, 90, 83}, {87, 83, 91}, {14, 84, 92}, {41, 92, 84}, {29, 94, 86}, {32, 85, 93}, {43, 86, 94}, {16, 93, 85}, {31, 87, 95}, {34, 95, 87}, {1, 43, 94}, {2, 93, 16}, {3, 92, 41}, {3, 14, 92}, {1, 94, 29}, {2, 32, 93}, {0, 31, 95}, {0, 95, 34}, {32, 97, 101}, {17, 102, 97}, {35, 103, 98}, {20, 99, 104}, {19, 98, 102}, {34, 101, 99}, {22, 104, 100}, {37, 100, 103}, {32, 101, 33}, {35, 36, 103}, {17, 18, 102}, {20, 104, 21}, {33, 101, 34}, {18, 19, 102}, {36, 37, 103}, {21, 104, 22}, {97, 96, 101}, {97, 102, 96}, {98, 96, 102}, {99, 101, 96}, {98, 103, 96}, {99, 96, 104}, {100, 96, 103}, {100, 104, 96}, {32, 105, 97}, {17, 97, 105}, {35, 98, 106}, {20, 107, 99}, {19, 106, 98}, {34, 99, 107}, {22, 100, 108}, {37, 108, 100}, {0, 34, 107}, {2, 105, 32}, {6, 106, 19}, {6, 35, 106}, {2, 17, 105}, {4, 108, 37}, {0, 107, 20}, {4, 22, 108}, {11, 110, 115}, {38, 114, 110}, {26, 116, 112}, {41, 111, 117}, {13, 115, 111}, {40, 112, 114}, {43, 117, 113}, {28, 113, 116}, {11, 115, 12}, {38, 39, 114}, {26, 27, 116}, {41, 117, 42}, {39, 40, 114}, {12, 115, 13}, {42, 117, 43}, {27, 28, 116}, {109, 110, 114}, {109, 115, 110}, {111, 115, 109}, {112, 109, 114}, {111, 109, 117}, {112, 116, 109}, {113, 109, 116}, {113, 117, 109}, {11, 118, 110}, {38, 110, 118}, {26, 112, 120}, {41, 119, 111}, {40, 120, 112}, {13, 111, 119}, {28, 121, 113}, {43, 113, 121}, {5, 120, 40}, {3, 13, 119}, {7, 38, 118}, {7, 118, 11}, {5, 26, 120}, {3, 119, 41}, {1, 121, 28}, {1, 43, 121}}
        ]
-        (not_ghost:tetrahedron_4) [
+        (not_ghost:_tetrahedron_4) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:tetrahedron_4
+        + id             : mesh:connectivities:_tetrahedron_4
         + size           : 341
         + nb_component   : 4
         + allocated size : 2000
         + memory size    : 31kB
         + values         : {{124, 123, 125, 129}, {43, 86, 130, 88}, {70, 124, 129, 126}, {48, 77, 25, 52}, {31, 0, 81, 95}, {0, 107, 81, 95}, {126, 91, 87, 101}, {124, 70, 129, 125}, {43, 121, 113, 130}, {55, 100, 82, 108}, {100, 55, 82, 73}, {23, 55, 73, 82}, {71, 75, 125, 112}, {123, 44, 124, 125}, {43, 113, 117, 130}, {94, 43, 86, 130}, {122, 123, 128, 129}, {46, 10, 58, 50}, {99, 107, 81, 20}, {125, 112, 116, 109}, {79, 72, 28, 130}, {123, 122, 125, 129}, {67, 11, 7, 118}, {123, 127, 128, 129}, {124, 44, 49, 47}, {17, 65, 18, 102}, {76, 90, 30, 31}, {54, 10, 7, 67}, {9, 10, 50, 64}, {38, 54, 7, 118}, {123, 124, 127, 129}, {12, 115, 62, 13}, {97, 61, 102, 127}, {45, 53, 8, 69}, {38, 114, 39, 51}, {125, 75, 129, 116}, {122, 44, 123, 125}, {71, 70, 77, 124}, {114, 112, 125, 109}, {32, 93, 97, 85}, {53, 6, 8, 69}, {117, 128, 129, 109}, {63, 61, 16, 89}, {76, 90, 31, 74}, {61, 85, 16, 89}, {65, 123, 60, 98}, {55, 100, 47, 73}, {100, 47, 103, 37}, {96, 123, 103, 124}, {55, 23, 4, 82}, {78, 100, 22, 73}, {61, 85, 89, 127}, {61, 127, 89, 63}, {121, 43, 94, 130}, {108, 22, 82, 4}, {14, 92, 3, 66}, {78, 21, 104, 20}, {100, 78, 104, 124}, {14, 15, 89, 63}, {90, 126, 87, 74}, {90, 76, 126, 74}, {3, 13, 66, 119}, {108, 55, 4, 82}, {58, 11, 110, 62}, {11, 115, 110, 62}, {57, 123, 60, 65}, {122, 58, 110, 62}, {115, 122, 110, 62}, {117, 128, 88, 129}, {86, 129, 130, 88}, {70, 71, 125, 124}, {107, 0, 34, 95}, {122, 114, 125, 109}, {126, 86, 83, 129}, {92, 3, 66, 119}, {129, 86, 83, 88}, {128, 41, 119, 111}, {117, 128, 111, 41}, {11, 12, 115, 62}, {33, 32, 101, 91}, {70, 124, 126, 74}, {100, 124, 47, 73}, {96, 124, 126, 127}, {78, 70, 124, 73}, {90, 76, 30, 29}, {96, 123, 124, 127}, {15, 63, 16, 89}, {121, 79, 1, 28}, {76, 70, 126, 74}, {122, 114, 109, 110}, {129, 117, 130, 88}, {123, 44, 49, 124}, {26, 80, 5, 120}, {123, 65, 102, 98}, {57, 123, 127, 128}, {117, 128, 109, 111}, {70, 78, 124, 74}, {95, 107, 81, 87}, {55, 100, 37, 47}, {77, 24, 25, 52}, {100, 78, 22, 104}, {56, 71, 25, 48}, {14, 59, 89, 84}, {96, 100, 104, 124}, {2, 105, 68, 17}, {124, 123, 103, 49}, {123, 57, 60, 64}, {44, 124, 52, 47}, {71, 112, 48, 56}, {41, 117, 88, 42}, {99, 96, 126, 101}, {97, 85, 127, 101}, {34, 91, 101, 87}, {128, 127, 83, 129}, {126, 90, 83, 86}, {75, 71, 125, 70}, {99, 126, 74, 87}, {23, 55, 47, 73}, {100, 78, 124, 73}, {32, 91, 85, 101}, {57, 122, 62, 58}, {71, 77, 25, 48}, {70, 77, 124, 73}, {114, 38, 110, 51}, {114, 40, 39, 51}, {59, 14, 89, 63}, {53, 106, 35, 6}, {45, 123, 98, 60}, {99, 126, 87, 101}, {106, 53, 69, 6}, {46, 122, 110, 51}, {128, 122, 129, 109}, {124, 100, 47, 103}, {107, 99, 81, 87}, {125, 44, 48, 51}, {38, 46, 110, 51}, {44, 123, 49, 45}, {124, 47, 49, 103}, {36, 35, 49, 103}, {46, 122, 51, 44}, {54, 67, 7, 118}, {10, 64, 58, 50}, {122, 114, 51, 125}, {11, 58, 118, 67}, {44, 122, 51, 125}, {58, 11, 118, 110}, {22, 100, 82, 73}, {46, 122, 58, 110}, {108, 100, 82, 22}, {45, 60, 8, 50}, {99, 81, 74, 20}, {60, 45, 8, 69}, {75, 71, 26, 112}, {107, 0, 81, 20}, {126, 91, 83, 87}, {31, 90, 87, 74}, {34, 107, 95, 87}, {126, 96, 127, 101}, {91, 126, 127, 101}, {92, 14, 84, 66}, {105, 32, 2, 93}, {47, 49, 103, 37}, {115, 122, 109, 110}, {33, 91, 101, 34}, {49, 36, 103, 37}, {112, 71, 48, 125}, {59, 128, 89, 84}, {19, 65, 60, 98}, {124, 126, 127, 129}, {126, 91, 127, 83}, {31, 81, 74, 87}, {81, 99, 74, 87}, {117, 113, 129, 130}, {84, 128, 88, 41}, {113, 117, 129, 109}, {90, 76, 29, 86}, {65, 19, 102, 98}, {55, 100, 108, 37}, {96, 123, 102, 98}, {14, 59, 84, 66}, {100, 96, 103, 124}, {32, 105, 97, 93}, {99, 34, 101, 87}, {127, 126, 83, 129}, {94, 29, 130, 86}, {19, 106, 69, 6}, {128, 117, 88, 41}, {123, 96, 103, 98}, {46, 38, 110, 118}, {77, 23, 24, 52}, {19, 65, 102, 18}, {121, 79, 28, 130}, {46, 54, 38, 118}, {113, 121, 28, 130}, {108, 55, 37, 4}, {112, 75, 116, 26}, {56, 40, 5, 120}, {75, 27, 28, 116}, {127, 85, 89, 83}, {66, 59, 84, 128}, {85, 61, 97, 127}, {122, 125, 129, 109}, {26, 75, 116, 27}, {128, 129, 83, 88}, {122, 123, 57, 128}, {40, 112, 56, 48}, {80, 56, 25, 5}, {84, 128, 83, 88}, {91, 85, 127, 83}, {57, 61, 63, 127}, {123, 122, 64, 50}, {3, 92, 41, 119}, {44, 123, 45, 50}, {47, 124, 52, 73}, {79, 72, 130, 29}, {32, 85, 97, 101}, {2, 93, 16, 68}, {105, 93, 68, 97}, {97, 61, 68, 17}, {85, 91, 127, 101}, {96, 97, 127, 101}, {105, 97, 68, 17}, {124, 77, 52, 73}, {56, 71, 80, 25}, {60, 64, 8, 50}, {64, 9, 8, 50}, {65, 61, 102, 17}, {93, 105, 68, 2}, {61, 97, 102, 17}, {78, 21, 22, 104}, {23, 47, 52, 73}, {112, 40, 56, 120}, {80, 56, 5, 120}, {31, 95, 81, 87}, {99, 107, 34, 87}, {58, 46, 110, 118}, {43, 121, 94, 1}, {112, 75, 125, 116}, {122, 114, 110, 51}, {77, 23, 52, 73}, {90, 126, 83, 87}, {13, 66, 111, 59}, {111, 66, 13, 119}, {66, 128, 111, 59}, {111, 128, 66, 119}, {60, 50, 123, 64}, {123, 50, 60, 45}, {74, 104, 126, 99}, {104, 20, 74, 78}, {74, 20, 104, 99}, {45, 69, 106, 53}, {45, 106, 35, 53}, {35, 106, 45, 98}, {129, 116, 109, 125}, {109, 116, 129, 113}, {54, 10, 58, 46}, {58, 10, 54, 67}, {54, 58, 118, 46}, {118, 58, 54, 67}, {113, 129, 75, 116}, {28, 113, 75, 116}, {129, 75, 70, 72}, {129, 70, 75, 125}, {43, 117, 88, 130}, {88, 117, 43, 42}, {56, 112, 80, 71}, {56, 80, 112, 120}, {80, 112, 26, 71}, {80, 26, 112, 120}, {74, 124, 104, 78}, {74, 104, 124, 126}, {126, 104, 96, 99}, {96, 104, 126, 124}, {62, 128, 57, 59}, {57, 128, 62, 122}, {130, 29, 121, 79}, {121, 29, 130, 94}, {29, 1, 121, 79}, {121, 1, 29, 94}, {58, 50, 122, 46}, {122, 50, 58, 64}, {97, 93, 61, 85}, {97, 61, 93, 68}, {61, 93, 16, 85}, {61, 16, 93, 68}, {59, 89, 127, 63}, {127, 89, 59, 128}, {59, 127, 57, 63}, {57, 127, 59, 128}, {86, 76, 126, 90}, {86, 126, 76, 129}, {125, 51, 112, 114}, {112, 51, 125, 48}, {51, 40, 112, 114}, {112, 40, 51, 48}, {48, 124, 77, 52}, {44, 48, 124, 125}, {44, 124, 48, 52}, {61, 102, 123, 65}, {123, 102, 61, 127}, {61, 123, 57, 65}, {57, 123, 61, 127}, {106, 19, 60, 98}, {60, 19, 106, 69}, {106, 60, 45, 98}, {45, 60, 106, 69}, {122, 64, 57, 123}, {57, 64, 122, 58}, {76, 129, 70, 72}, {70, 129, 76, 126}, {84, 66, 119, 92}, {84, 119, 66, 128}, {41, 84, 119, 92}, {41, 119, 84, 128}, {124, 71, 48, 77}, {124, 48, 71, 125}, {128, 89, 83, 127}, {83, 89, 128, 84}, {111, 128, 62, 59}, {62, 111, 13, 115}, {13, 111, 62, 59}, {122, 50, 44, 46}, {44, 50, 122, 123}, {102, 127, 96, 97}, {96, 127, 102, 123}, {103, 123, 45, 49}, {103, 45, 123, 98}, {35, 103, 45, 49}, {35, 45, 103, 98}, {28, 130, 75, 113}, {75, 130, 28, 72}, {130, 129, 75, 113}, {75, 129, 130, 72}, {29, 130, 76, 72}, {76, 130, 29, 86}, {130, 129, 76, 72}, {76, 129, 130, 86}, {62, 111, 122, 128}, {122, 111, 62, 115}, {111, 109, 122, 128}, {122, 109, 111, 115}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 8
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_2
+   + id             : mesh:connectivities:_segment_2
    + size           : 48
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{6, 8}, {8, 9}, {9, 10}, {10, 7}, {7, 11}, {11, 12}, {12, 13}, {13, 3}, {3, 14}, {14, 15}, {15, 16}, {16, 2}, {2, 17}, {17, 18}, {18, 19}, {19, 6}, {0, 20}, {20, 21}, {21, 22}, {22, 4}, {4, 23}, {23, 24}, {24, 25}, {25, 5}, {5, 26}, {26, 27}, {27, 28}, {28, 1}, {1, 29}, {29, 30}, {30, 31}, {31, 0}, {2, 32}, {32, 33}, {33, 34}, {34, 0}, {6, 35}, {35, 36}, {36, 37}, {37, 4}, {7, 38}, {38, 39}, {39, 40}, {40, 5}, {3, 41}, {41, 42}, {42, 43}, {43, 1}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:tetrahedron_4
+   + id             : mesh:connectivities:_tetrahedron_4
    + size           : 341
    + nb_component   : 4
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{124, 123, 125, 129}, {43, 86, 130, 88}, {70, 124, 129, 126}, {48, 77, 25, 52}, {31, 0, 81, 95}, {0, 107, 81, 95}, {126, 91, 87, 101}, {124, 70, 129, 125}, {43, 121, 113, 130}, {55, 100, 82, 108}, {100, 55, 82, 73}, {23, 55, 73, 82}, {71, 75, 125, 112}, {123, 44, 124, 125}, {43, 113, 117, 130}, {94, 43, 86, 130}, {122, 123, 128, 129}, {46, 10, 58, 50}, {99, 107, 81, 20}, {125, 112, 116, 109}, {79, 72, 28, 130}, {123, 122, 125, 129}, {67, 11, 7, 118}, {123, 127, 128, 129}, {124, 44, 49, 47}, {17, 65, 18, 102}, {76, 90, 30, 31}, {54, 10, 7, 67}, {9, 10, 50, 64}, {38, 54, 7, 118}, {123, 124, 127, 129}, {12, 115, 62, 13}, {97, 61, 102, 127}, {45, 53, 8, 69}, {38, 114, 39, 51}, {125, 75, 129, 116}, {122, 44, 123, 125}, {71, 70, 77, 124}, {114, 112, 125, 109}, {32, 93, 97, 85}, {53, 6, 8, 69}, {117, 128, 129, 109}, {63, 61, 16, 89}, {76, 90, 31, 74}, {61, 85, 16, 89}, {65, 123, 60, 98}, {55, 100, 47, 73}, {100, 47, 103, 37}, {96, 123, 103, 124}, {55, 23, 4, 82}, {78, 100, 22, 73}, {61, 85, 89, 127}, {61, 127, 89, 63}, {121, 43, 94, 130}, {108, 22, 82, 4}, {14, 92, 3, 66}, {78, 21, 104, 20}, {100, 78, 104, 124}, {14, 15, 89, 63}, {90, 126, 87, 74}, {90, 76, 126, 74}, {3, 13, 66, 119}, {108, 55, 4, 82}, {58, 11, 110, 62}, {11, 115, 110, 62}, {57, 123, 60, 65}, {122, 58, 110, 62}, {115, 122, 110, 62}, {117, 128, 88, 129}, {86, 129, 130, 88}, {70, 71, 125, 124}, {107, 0, 34, 95}, {122, 114, 125, 109}, {126, 86, 83, 129}, {92, 3, 66, 119}, {129, 86, 83, 88}, {128, 41, 119, 111}, {117, 128, 111, 41}, {11, 12, 115, 62}, {33, 32, 101, 91}, {70, 124, 126, 74}, {100, 124, 47, 73}, {96, 124, 126, 127}, {78, 70, 124, 73}, {90, 76, 30, 29}, {96, 123, 124, 127}, {15, 63, 16, 89}, {121, 79, 1, 28}, {76, 70, 126, 74}, {122, 114, 109, 110}, {129, 117, 130, 88}, {123, 44, 49, 124}, {26, 80, 5, 120}, {123, 65, 102, 98}, {57, 123, 127, 128}, {117, 128, 109, 111}, {70, 78, 124, 74}, {95, 107, 81, 87}, {55, 100, 37, 47}, {77, 24, 25, 52}, {100, 78, 22, 104}, {56, 71, 25, 48}, {14, 59, 89, 84}, {96, 100, 104, 124}, {2, 105, 68, 17}, {124, 123, 103, 49}, {123, 57, 60, 64}, {44, 124, 52, 47}, {71, 112, 48, 56}, {41, 117, 88, 42}, {99, 96, 126, 101}, {97, 85, 127, 101}, {34, 91, 101, 87}, {128, 127, 83, 129}, {126, 90, 83, 86}, {75, 71, 125, 70}, {99, 126, 74, 87}, {23, 55, 47, 73}, {100, 78, 124, 73}, {32, 91, 85, 101}, {57, 122, 62, 58}, {71, 77, 25, 48}, {70, 77, 124, 73}, {114, 38, 110, 51}, {114, 40, 39, 51}, {59, 14, 89, 63}, {53, 106, 35, 6}, {45, 123, 98, 60}, {99, 126, 87, 101}, {106, 53, 69, 6}, {46, 122, 110, 51}, {128, 122, 129, 109}, {124, 100, 47, 103}, {107, 99, 81, 87}, {125, 44, 48, 51}, {38, 46, 110, 51}, {44, 123, 49, 45}, {124, 47, 49, 103}, {36, 35, 49, 103}, {46, 122, 51, 44}, {54, 67, 7, 118}, {10, 64, 58, 50}, {122, 114, 51, 125}, {11, 58, 118, 67}, {44, 122, 51, 125}, {58, 11, 118, 110}, {22, 100, 82, 73}, {46, 122, 58, 110}, {108, 100, 82, 22}, {45, 60, 8, 50}, {99, 81, 74, 20}, {60, 45, 8, 69}, {75, 71, 26, 112}, {107, 0, 81, 20}, {126, 91, 83, 87}, {31, 90, 87, 74}, {34, 107, 95, 87}, {126, 96, 127, 101}, {91, 126, 127, 101}, {92, 14, 84, 66}, {105, 32, 2, 93}, {47, 49, 103, 37}, {115, 122, 109, 110}, {33, 91, 101, 34}, {49, 36, 103, 37}, {112, 71, 48, 125}, {59, 128, 89, 84}, {19, 65, 60, 98}, {124, 126, 127, 129}, {126, 91, 127, 83}, {31, 81, 74, 87}, {81, 99, 74, 87}, {117, 113, 129, 130}, {84, 128, 88, 41}, {113, 117, 129, 109}, {90, 76, 29, 86}, {65, 19, 102, 98}, {55, 100, 108, 37}, {96, 123, 102, 98}, {14, 59, 84, 66}, {100, 96, 103, 124}, {32, 105, 97, 93}, {99, 34, 101, 87}, {127, 126, 83, 129}, {94, 29, 130, 86}, {19, 106, 69, 6}, {128, 117, 88, 41}, {123, 96, 103, 98}, {46, 38, 110, 118}, {77, 23, 24, 52}, {19, 65, 102, 18}, {121, 79, 28, 130}, {46, 54, 38, 118}, {113, 121, 28, 130}, {108, 55, 37, 4}, {112, 75, 116, 26}, {56, 40, 5, 120}, {75, 27, 28, 116}, {127, 85, 89, 83}, {66, 59, 84, 128}, {85, 61, 97, 127}, {122, 125, 129, 109}, {26, 75, 116, 27}, {128, 129, 83, 88}, {122, 123, 57, 128}, {40, 112, 56, 48}, {80, 56, 25, 5}, {84, 128, 83, 88}, {91, 85, 127, 83}, {57, 61, 63, 127}, {123, 122, 64, 50}, {3, 92, 41, 119}, {44, 123, 45, 50}, {47, 124, 52, 73}, {79, 72, 130, 29}, {32, 85, 97, 101}, {2, 93, 16, 68}, {105, 93, 68, 97}, {97, 61, 68, 17}, {85, 91, 127, 101}, {96, 97, 127, 101}, {105, 97, 68, 17}, {124, 77, 52, 73}, {56, 71, 80, 25}, {60, 64, 8, 50}, {64, 9, 8, 50}, {65, 61, 102, 17}, {93, 105, 68, 2}, {61, 97, 102, 17}, {78, 21, 22, 104}, {23, 47, 52, 73}, {112, 40, 56, 120}, {80, 56, 5, 120}, {31, 95, 81, 87}, {99, 107, 34, 87}, {58, 46, 110, 118}, {43, 121, 94, 1}, {112, 75, 125, 116}, {122, 114, 110, 51}, {77, 23, 52, 73}, {90, 126, 83, 87}, {13, 66, 111, 59}, {111, 66, 13, 119}, {66, 128, 111, 59}, {111, 128, 66, 119}, {60, 50, 123, 64}, {123, 50, 60, 45}, {74, 104, 126, 99}, {104, 20, 74, 78}, {74, 20, 104, 99}, {45, 69, 106, 53}, {45, 106, 35, 53}, {35, 106, 45, 98}, {129, 116, 109, 125}, {109, 116, 129, 113}, {54, 10, 58, 46}, {58, 10, 54, 67}, {54, 58, 118, 46}, {118, 58, 54, 67}, {113, 129, 75, 116}, {28, 113, 75, 116}, {129, 75, 70, 72}, {129, 70, 75, 125}, {43, 117, 88, 130}, {88, 117, 43, 42}, {56, 112, 80, 71}, {56, 80, 112, 120}, {80, 112, 26, 71}, {80, 26, 112, 120}, {74, 124, 104, 78}, {74, 104, 124, 126}, {126, 104, 96, 99}, {96, 104, 126, 124}, {62, 128, 57, 59}, {57, 128, 62, 122}, {130, 29, 121, 79}, {121, 29, 130, 94}, {29, 1, 121, 79}, {121, 1, 29, 94}, {58, 50, 122, 46}, {122, 50, 58, 64}, {97, 93, 61, 85}, {97, 61, 93, 68}, {61, 93, 16, 85}, {61, 16, 93, 68}, {59, 89, 127, 63}, {127, 89, 59, 128}, {59, 127, 57, 63}, {57, 127, 59, 128}, {86, 76, 126, 90}, {86, 126, 76, 129}, {125, 51, 112, 114}, {112, 51, 125, 48}, {51, 40, 112, 114}, {112, 40, 51, 48}, {48, 124, 77, 52}, {44, 48, 124, 125}, {44, 124, 48, 52}, {61, 102, 123, 65}, {123, 102, 61, 127}, {61, 123, 57, 65}, {57, 123, 61, 127}, {106, 19, 60, 98}, {60, 19, 106, 69}, {106, 60, 45, 98}, {45, 60, 106, 69}, {122, 64, 57, 123}, {57, 64, 122, 58}, {76, 129, 70, 72}, {70, 129, 76, 126}, {84, 66, 119, 92}, {84, 119, 66, 128}, {41, 84, 119, 92}, {41, 119, 84, 128}, {124, 71, 48, 77}, {124, 48, 71, 125}, {128, 89, 83, 127}, {83, 89, 128, 84}, {111, 128, 62, 59}, {62, 111, 13, 115}, {13, 111, 62, 59}, {122, 50, 44, 46}, {44, 50, 122, 123}, {102, 127, 96, 97}, {96, 127, 102, 123}, {103, 123, 45, 49}, {103, 45, 123, 98}, {35, 103, 45, 49}, {35, 45, 103, 98}, {28, 130, 75, 113}, {75, 130, 28, 72}, {130, 129, 75, 113}, {75, 129, 130, 72}, {29, 130, 76, 72}, {76, 130, 29, 86}, {130, 129, 76, 72}, {76, 129, 130, 86}, {62, 111, 122, 128}, {122, 111, 62, 115}, {111, 109, 122, 128}, {122, 109, 111, 115}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:triangle_3
+   + id             : mesh:connectivities:_triangle_3
    + size           : 240
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 23kB
    + values         : {{45, 49, 35}, {45, 8, 50}, {46, 38, 51}, {23, 47, 52}, {46, 50, 10}, {37, 49, 47}, {25, 52, 48}, {40, 48, 51}, {35, 49, 36}, {38, 39, 51}, {8, 9, 50}, {23, 52, 24}, {36, 49, 37}, {9, 10, 50}, {39, 40, 51}, {24, 52, 25}, {45, 44, 49}, {45, 50, 44}, {46, 44, 50}, {44, 47, 49}, {46, 51, 44}, {44, 52, 47}, {44, 51, 48}, {44, 48, 52}, {45, 35, 53}, {45, 53, 8}, {46, 54, 38}, {23, 55, 47}, {46, 10, 54}, {37, 47, 55}, {25, 48, 56}, {40, 56, 48}, {4, 37, 55}, {6, 53, 35}, {7, 54, 10}, {7, 38, 54}, {6, 8, 53}, {5, 56, 40}, {4, 55, 23}, {5, 25, 56}, {11, 62, 58}, {14, 63, 59}, {8, 64, 60}, {17, 65, 61}, {10, 58, 64}, {19, 60, 65}, {13, 59, 62}, {16, 61, 63}, {14, 15, 63}, {11, 12, 62}, {17, 18, 65}, {8, 9, 64}, {12, 13, 62}, {15, 16, 63}, {9, 10, 64}, {18, 19, 65}, {58, 62, 57}, {59, 57, 62}, {59, 63, 57}, {61, 57, 63}, {58, 57, 64}, {60, 64, 57}, {60, 57, 65}, {61, 65, 57}, {11, 58, 67}, {14, 59, 66}, {8, 60, 69}, {17, 61, 68}, {10, 67, 58}, {19, 69, 60}, {13, 66, 59}, {16, 68, 61}, {2, 68, 16}, {3, 66, 13}, {6, 69, 19}, {7, 67, 10}, {7, 11, 67}, {3, 14, 66}, {6, 8, 69}, {2, 17, 68}, {26, 75, 71}, {29, 76, 72}, {23, 77, 73}, {20, 78, 74}, {25, 71, 77}, {22, 73, 78}, {28, 72, 75}, {31, 74, 76}, {29, 30, 76}, {26, 27, 75}, {20, 21, 78}, {23, 24, 77}, {27, 28, 75}, {30, 31, 76}, {24, 25, 77}, {21, 22, 78}, {71, 75, 70}, {72, 70, 75}, {72, 76, 70}, {70, 76, 74}, {71, 70, 77}, {70, 73, 77}, {70, 78, 73}, {70, 74, 78}, {26, 71, 80}, {29, 72, 79}, {23, 73, 82}, {20, 74, 81}, {25, 80, 71}, {22, 82, 73}, {28, 79, 72}, {31, 81, 74}, {0, 81, 31}, {1, 79, 28}, {4, 82, 22}, {5, 80, 25}, {5, 26, 80}, {1, 29, 79}, {4, 23, 82}, {0, 20, 81}, {41, 84, 88}, {14, 89, 84}, {29, 86, 90}, {32, 91, 85}, {16, 85, 89}, {43, 88, 86}, {34, 87, 91}, {31, 90, 87}, {41, 88, 42}, {14, 15, 89}, {29, 90, 30}, {32, 33, 91}, {42, 88, 43}, {15, 16, 89}, {33, 34, 91}, {30, 90, 31}, {84, 89, 83}, {84, 83, 88}, {85, 83, 89}, {86, 88, 83}, {85, 91, 83}, {86, 83, 90}, {87, 90, 83}, {87, 83, 91}, {14, 84, 92}, {41, 92, 84}, {29, 94, 86}, {32, 85, 93}, {43, 86, 94}, {16, 93, 85}, {31, 87, 95}, {34, 95, 87}, {1, 43, 94}, {2, 93, 16}, {3, 92, 41}, {3, 14, 92}, {1, 94, 29}, {2, 32, 93}, {0, 31, 95}, {0, 95, 34}, {32, 97, 101}, {17, 102, 97}, {35, 103, 98}, {20, 99, 104}, {19, 98, 102}, {34, 101, 99}, {22, 104, 100}, {37, 100, 103}, {32, 101, 33}, {35, 36, 103}, {17, 18, 102}, {20, 104, 21}, {33, 101, 34}, {18, 19, 102}, {36, 37, 103}, {21, 104, 22}, {97, 96, 101}, {97, 102, 96}, {98, 96, 102}, {99, 101, 96}, {98, 103, 96}, {99, 96, 104}, {100, 96, 103}, {100, 104, 96}, {32, 105, 97}, {17, 97, 105}, {35, 98, 106}, {20, 107, 99}, {19, 106, 98}, {34, 99, 107}, {22, 100, 108}, {37, 108, 100}, {0, 34, 107}, {2, 105, 32}, {6, 106, 19}, {6, 35, 106}, {2, 17, 105}, {4, 108, 37}, {0, 107, 20}, {4, 22, 108}, {11, 110, 115}, {38, 114, 110}, {26, 116, 112}, {41, 111, 117}, {13, 115, 111}, {40, 112, 114}, {43, 117, 113}, {28, 113, 116}, {11, 115, 12}, {38, 39, 114}, {26, 27, 116}, {41, 117, 42}, {39, 40, 114}, {12, 115, 13}, {42, 117, 43}, {27, 28, 116}, {109, 110, 114}, {109, 115, 110}, {111, 115, 109}, {112, 109, 114}, {111, 109, 117}, {112, 116, 109}, {113, 109, 116}, {113, 117, 109}, {11, 118, 110}, {38, 110, 118}, {26, 112, 120}, {41, 119, 111}, {40, 120, 112}, {13, 111, 119}, {28, 121, 113}, {43, 113, 121}, {5, 120, 40}, {3, 13, 119}, {7, 38, 118}, {7, 118, 11}, {5, 26, 120}, {3, 119, 41}, {1, 121, 28}, {1, 43, 121}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 131
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{0, 0, 0}, {1, 0, 0}, {0, 1, 0}, {1, 1, 0}, {0, 0, 1}, {1, 0, 1}, {0, 1, 1}, {1, 1, 1}, {0.25, 1, 1}, {0.5, 1, 1}, {0.75, 1, 1}, {1, 1, 0.75}, {1, 1, 0.5}, {1, 1, 0.25}, {0.75, 1, 0}, {0.5, 1, 0}, {0.25, 1, 0}, {0, 1, 0.25}, {0, 1, 0.5}, {0, 1, 0.75}, {0, 0, 0.25}, {0, 0, 0.5}, {0, 0, 0.75}, {0.25, 0, 1}, {0.5, 0, 1}, {0.75, 0, 1}, {1, 0, 0.75}, {1, 0, 0.5}, {1, 0, 0.25}, {0.75, 0, 0}, {0.5, 0, 0}, {0.25, 0, 0}, {0, 0.75, 0}, {0, 0.5, 0}, {0, 0.25, 0}, {0, 0.75, 1}, {0, 0.5, 1}, {0, 0.25, 1}, {1, 0.75, 1}, {1, 0.5, 1}, {1, 0.25, 1}, {1, 0.75, 0}, {1, 0.5, 0}, {1, 0.25, 0}, {0.5, 0.502191, 1}, {0.278522, 0.721478, 1}, {0.721478, 0.721478, 1}, {0.278522, 0.278765, 1}, {0.721478, 0.278765, 1}, {0.190862, 0.50027, 1}, {0.5, 0.809381, 1}, {0.809138, 0.50027, 1}, {0.5, 0.19116, 1}, {0.141906, 0.858094, 1}, {0.858094, 0.858094, 1}, {0.141906, 0.141947, 1}, {0.858094, 0.141947, 1}, {0.5, 1, 0.5}, {0.721478, 1, 0.721478}, {0.721478, 1, 0.278522}, {0.278522, 1, 0.721478}, {0.278522, 1, 0.278522}, {0.809138, 1, 0.5}, {0.5, 1, 0.190862}, {0.5, 1, 0.809138}, {0.190862, 1, 0.5}, {0.858094, 1, 0.141906}, {0.858094, 1, 0.858094}, {0.141906, 1, 0.141906}, {0.141906, 1, 0.858094}, {0.502191, 0, 0.5}, {0.721478, 0, 0.721478}, {0.721478, 0, 0.278522}, {0.278765, 0, 0.721478}, {0.278765, 0, 0.278522}, {0.809381, 0, 0.5}, {0.50027, 0, 0.190862}, {0.50027, 0, 0.809138}, {0.19116, 0, 0.5}, {0.858094, 0, 0.141906}, {0.858094, 0, 0.858094}, {0.141947, 0, 0.141906}, {0.141947, 0, 0.858094}, {0.5, 0.5, 0}, {0.721478, 0.721478, 0}, {0.278522, 0.721478, 0}, {0.721478, 0.278522, 0}, {0.278522, 0.278522, 0}, {0.809138, 0.5, 0}, {0.5, 0.809138, 0}, {0.5, 0.190862, 0}, {0.190862, 0.5, 0}, {0.858094, 0.858094, 0}, {0.141906, 0.858094, 0}, {0.858094, 0.141906, 0}, {0.141906, 0.141906, 0}, {0, 0.5, 0.5}, {0, 0.721478, 0.278522}, {0, 0.721478, 0.721478}, {0, 0.278522, 0.278522}, {0, 0.278522, 0.721478}, {0, 0.5, 0.190862}, {0, 0.809138, 0.5}, {0, 0.5, 0.809138}, {0, 0.190862, 0.5}, {0, 0.858094, 0.141906}, {0, 0.858094, 0.858094}, {0, 0.141906, 0.141906}, {0, 0.141906, 0.858094}, {1, 0.498905, 0.498905}, {1, 0.721356, 0.721356}, {1, 0.721478, 0.278522}, {1, 0.278522, 0.721478}, {1, 0.278522, 0.278522}, {1, 0.499865, 0.809003}, {1, 0.809003, 0.499865}, {1, 0.19074, 0.499878}, {1, 0.499878, 0.19074}, {1, 0.858073, 0.858073}, {1, 0.858094, 0.141906}, {1, 0.141906, 0.858094}, {1, 0.141906, 0.141906}, {0.714627, 0.67977, 0.65326}, {0.384087, 0.668738, 0.619989}, {0.423487, 0.335588, 0.588613}, {0.764413, 0.335588, 0.588613}, {0.423487, 0.335588, 0.247688}, {0.423487, 0.676512, 0.247688}, {0.764413, 0.676512, 0.247688}, {0.682024, 0.369799, 0.338757}, {0.815437, 0.205866, 0.186526}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:tetrahedron_4
+   + id             : my_fem:jacobians:_tetrahedron_4
    + size           : 341
    + nb_component   : 1
    + allocated size : 341
    + memory size    : 2.7kB
    + values         : {{0.00479073}, {0.00199542}, {0.00508286}, {0.00204347}, {0.00083906}, {0.00095268}, {0.00292548}, {0.00493659}, {0.00105059}, {0.00091729}, {0.00180199}, {0.000808556}, {0.00355095}, {0.00749049}, {0.00197348}, {0.00106177}, {0.00690231}, {0.00297989}, {0.000808006}, {0.0026847}, {0.00117185}, {0.00474423}, {0.00083918}, {0.00644814}, {0.00470655}, {0.00151785}, {0.00151785}, {0.00083906}, {0.00151591}, {0.00083918}, {0.00487222}, {0.00151892}, {0.00469074}, {0.000807775}, {0.00151892}, {0.00334996}, {0.00767187}, {0.00381537}, {0.00269174}, {0.00158543}, {0.00083906}, {0.00445593}, {0.0020418}, {0.00204272}, {0.00297957}, {0.00490403}, {0.00353679}, {0.00297957}, {0.00693536}, {0.000839299}, {0.002982}, {0.00359869}, {0.00246606}, {0.000800576}, {0.000839299}, {0.00083906}, {0.00152021}, {0.00375734}, {0.00151785}, {0.00372221}, {0.00255222}, {0.00083906}, {0.000952816}, {0.00298087}, {0.00204311}, {0.0037801}, {0.00363992}, {0.00249551}, {0.00382669}, {0.0020549}, {0.00422323}, {0.00083906}, {0.00460922}, {0.00348647}, {0.000952544}, {0.00386563}, {0.00134104}, {0.00252173}, {0.00151892}, {0.00151785}, {0.00426036}, {0.00793308}, {0.00820365}, {0.00385292}, {0.00151785}, {0.00860188}, {0.00151785}, {0.00083906}, {0.00383935}, {0.00327077}, {0.00361116}, {0.00679806}, {0.00083906}, {0.00336058}, {0.00695467}, {0.0026847}, {0.00385292}, {0.000917159}, {0.00158651}, {0.00152021}, {0.00204498}, {0.00158671}, {0.00297957}, {0.00483251}, {0.00083906}, {0.00645464}, {0.0037801}, {0.00472318}, {0.00353524}, {0.00151688}, {0.00483251}, {0.00421987}, {0.0020418}, {0.00523002}, {0.00282642}, {0.00380534}, {0.00581509}, {0.00158671}, {0.00548144}, {0.0020418}, {0.00365422}, {0.00297867}, {0.00383935}, {0.00204311}, {0.00151892}, {0.0020418}, {0.00083906}, {0.00695993}, {0.00426911}, {0.000952544}, {0.00380007}, {0.00640143}, {0.00595062}, {0.00180012}, {0.00470655}, {0.00297737}, {0.00432043}, {0.00408022}, {0.00151785}, {0.00394217}, {0.00095268}, {0.0020392}, {0.00491487}, {0.000807891}, {0.00673925}, {0.00158661}, {0.00158671}, {0.00511093}, {0.000808006}, {0.00297989}, {0.00158671}, {0.00158543}, {0.00297989}, {0.000839299}, {0.00282642}, {0.00297957}, {0.000807775}, {0.00743876}, {0.00520896}, {0.000807775}, {0.00083906}, {0.00204272}, {0.00327077}, {0.00151785}, {0.00151785}, {0.00550306}, {0.00283408}, {0.00297957}, {0.00500828}, {0.00435075}, {0.00158651}, {0.00353524}, {0.00207381}, {0.00264971}, {0.00361055}, {0.0020418}, {0.0020418}, {0.000807775}, {0.0043829}, {0.00158543}, {0.00483251}, {0.000807775}, {0.00297957}, {0.00403452}, {0.00106177}, {0.00083906}, {0.00339716}, {0.0043829}, {0.00158661}, {0.00152021}, {0.00151785}, {0.00078511}, {0.000807891}, {0.00105059}, {0.00083906}, {0.00204038}, {0.00083906}, {0.00151494}, {0.00282642}, {0.00212821}, {0.005658}, {0.0043455}, {0.00151494}, {0.00474239}, {0.00744101}, {0.00158651}, {0.000839299}, {0.00282642}, {0.00282642}, {0.00369139}, {0.00530618}, {0.00083906}, {0.00430907}, {0.00540547}, {0.00117185}, {0.00297957}, {0.00083906}, {0.000917028}, {0.00158543}, {0.00289174}, {0.00483251}, {0.000807775}, {0.00370776}, {0.000808006}, {0.0020392}, {0.00151591}, {0.0020418}, {0.000952544}, {0.00297957}, {0.00152021}, {0.002982}, {0.000807775}, {0.00095268}, {0.000807775}, {0.00158543}, {0.00353524}, {0.00083906}, {0.00243234}, {0.00260951}, {0.0020459}, {0.00282642}, {0.00158543}, {0.000807775}, {0.00197474}, {0.00100612}, {0.00334194}, {0.00487991}, {0.00481554}, {0.00204347}, {0.00298217}, {0.000917028}, {0.000807775}, {0.00158543}, {0.00339935}, {0.00361055}, {0.00158543}, {0.000807775}, {0.00180012}, {0.000917159}, {0.00304689}, {0.00203823}, {0.00419327}, {0.00444812}, {0.00321724}, {0.00151688}, {0.00180012}, {0.000917159}, {0.00158543}, {0.000807775}, {0.00425176}, {0.0068851}, {0.00483251}, {0.00743876}, {0.00369139}, {0.00671734}, {0.000948173}, {0.000932706}, {0.00083906}, {0.00083906}, {0.00402163}, {0.0027552}, {0.00353262}, {0.00179986}, {0.00158543}, {0.000807775}, {0.00289277}, {0.00478507}, {0.00369139}, {0.00407095}, {0.002979}, {0.00490513}, {0.00275294}, {0.00402124}, {0.00204048}, {0.00298091}, {0.00413525}, {0.00522266}, {0.00472318}, {0.00402975}, {0.00676786}, {0.0037801}, {0.00496655}, {0.00158543}, {0.000807775}, {0.00353262}, {0.00179986}, {0.00557565}, {0.00365422}, {0.00420433}, {0.0045964}, {0.000917028}, {0.00243872}, {0.000807775}, {0.001568}, {0.00602516}, {0.0074155}, {0.00435075}, {0.00282642}, {0.00275892}, {0.00204048}, {0.00297957}, {0.0039318}, {0.00623354}, {0.00483251}, {0.00761117}, {0.00356241}, {0.00520686}, {0.0020394}, {0.00297957}, {0.00289006}, {0.00220255}, {0.00347634}, {0.00226248}, {0.00219973}, {0.00292886}, {0.00233772}, {0.00353589}, {0.00497258}, {0.00334717}, {0.00371176}, {0.00326057}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:tetrahedron_4
+   + id             : my_fem:quadrature_points:_tetrahedron_4
    + size           : 1
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{0.25, 0.25, 0.25}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:tetrahedron_4
+   + id             : my_fem:shapes:_tetrahedron_4
    + size           : 341
    + nb_component   : 4
    + allocated size : 341
    + memory size    : 11kB
    + values         : {{0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}, {0.25, 0.25, 0.25, 0.25}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:tetrahedron_4
+   + id             : my_fem:shapes_derivatives:_tetrahedron_4
    + size           : 341
    + nb_component   : 12
    + allocated size : 341
    + memory size    : 32kB
    + values         : {{-2.9332, -3.39585, 0.502232, 0, 2.96343, 0.405765, 2.9332, 0.0602741, 3.04336, 0, 0.372141, -3.95136}, {3.45053, -1.3657, -2.27011, -3.89489, -2.97354, -4.55745, 0, 0, 5.36117, 0.444357, 4.33924, 1.46638}, {0.382444, -2.89016, 0, -1.28516, 1.90393, 2.9332, 3.7515, 0.879817, 0, -2.84879, 0.106407, -2.9332}, {2.97575, 3.89171, -3.89356, 0, 0, -5.23939, 1.36374, -3.44772, 3.45502, -4.3395, -0.443995, 5.67793}, {4, -4, -4.00114, -4, -3.0469, -3.04575, 0, 0, 7.0469, 0, 7.0469, 0}, {-3.52295, -3.52395, -3.52295, -3.52295, 3.52295, 3.52395, 3.52295, -3.52295, 3.52295, 3.52295, 3.52395, -3.52395}, {2.40825, 0.953172, 2.40825, 2.50475, 5.50649, -2.73463, -1.78774, -5.2227, -1.78774, -3.12526, -1.23696, 2.11413}, {-2.9332, 1.96549, 1.23633, 0, -2.87587, -0.393776, 0, 1.01994, -3.86266, 2.9332, -0.10956, 3.0201}, {0.419151, 4, -4, 2.79404, -8.15492, 0.835098, 2.20503, 4.15492, 3.1649, -5.41822, 0, 0}, {3.52244, 3.52345, 3.52345, 3.65886, 3.65991, -3.65991, 3.52345, -3.52244, -3.52244, -10.7048, -3.66092, 3.6589}, {-1.79359, 1.79523, -1.79625, 3.5193, 3.52237, 3.52452, -7.1749, -7.18117, 0.13427, 5.44919, 1.86357, -1.86254}, {3.99728, -4.00093, 4.00321, 0, 7.04488, 0, 4.15209, 3.16185, -3.16156, -8.14937, -6.2058, -0.841653}, {-2.33012, -1.26027, 3.59031, 1.73691, -1.73691, -3.82575, -2.89531, 2.89531, -1.14913, 3.48852, 0.101865, 1.38457}, {0, 3.12067, -1.26381, 0, -0.238012, 2.52719, -2.9332, -3.29673, -0.550156, 2.9332, 0.414072, -0.713225}, {2.25842, -1.36825, -3.45027, 4.64721, -2.97306, 3.89484, -1.48742, 4.3413, -0.444568, -5.41822, 0, 0}, {-0.835098, -8.15492, -2.75583, 4, 4, -0.45685, -3.1649, 4.15492, -2.14849, 0, 0, 5.36117}, {2.74019, 0.0956852, 2.80125, -3.01086, 0.697365, -0.375193, 0.165245, 2.48398, -2.46532, 0.105421, -3.27703, 0.0392613}, {2.96943, -3.89447, -0.304082, 1.36934, 3.45016, 3.45016, 0, 0, -3.59038, -4.33877, 0.444309, 0.444309}, {3.164, 3.1649, 4.15492, -6.21002, 0.835098, -8.15492, 7.04488, 0, 0, -3.99886, -4, 4}, {-4.24471, 0, -2.22045e-16, 1.70632, 0.0142405, 4.507, 1.02929, -3.25521, -3.22316, 1.5091, 3.24097, -1.28383}, {-0.835098, -3.26304, -8.15492, -3.1649, -1.55632, 4.15492, 4, -0.0381551, 4, 0, 4.85752, 0}, {-3.09877, -0.624101, 0.936346, 2.96195, 3.42913, -0.507155, -0.240412, -3.6139, 3.58676, 0.377232, 0.808874, -4.01595}, {-7.0469, 0, 0, 4, 4, -4, 3.0469, 3.04589, 4, 0, -7.04589, 0}, {0, 0.802501, 2.70275, -2.9332, -0.102425, -2.99855, 2.9332, 2.58063, 0.364309, 0, -3.28071, -0.0685083}, {4.16334e-16, -8.88178e-16, -2.4308, 3.22687, 1.27702, 1.31348, -3.25484, 3.22647, -0.701298, 0.0279753, -4.5035, 1.81862}, {1.62741e-11, -1.54712e-11, -4, 5.23939, 0, 0, -5.23939, 5.23939, 4, 0, -5.23939, 0}, {0, -7.13135e-16, 5.23939, 0, 5.23939, 0, 4, -5.23939, -5.24506, -4, -2.28255e-11, 0.00566839}, {0, -7.0469, 8.88178e-16, -4, 4, 4, 4, 3.0469, 3.0469, 0, 0, -7.0469}, {-4, 5.24608, 5.23939, 4, 1.55241e-11, 1.5915e-11, 0, -5.24608, 0, 0, 0, -5.23939}, {4, -4, 4, -7.0469, 0, 0, 3.0469, 4, 3.04589, 0, 0, -7.04589}, {2.51489, 3.01511, 3.01511, -3.88194, -3.41534, -0.482145, -2.88414, -0.0592661, -2.99246, 4.25119, 0.459499, 0.459499}, {5.23939, 5.23285, 4, 0, -5.23568, 0, -5.23939, 0, 0, 2.32699e-11, 0.00283219, -4}, {-2.75474, -0.835644, -4.18437, 0.257813, 3.33257, -1.31901, 0.305142, -0.305142, 4.63589, 2.19179, -2.19179, 0.867496}, {4.15492, -3.1649, -3.1649, -8.15492, -0.835098, 6.2118, 4, 4, 4, 0, 0, -7.0469}, {0.00566839, 4, -0.00283219, 0, 0, -5.23568, 5.23372, -4, 5.23851, -5.23939, 0, 0}, {-1.52791, 1.52994, 4.71561, -1.9516, -3.29226, 0.192739, -0.842937, 0.840096, -3.60933, 4.32244, 0.92222, -1.29903}, {2.86385, 3.21879, 0.53715, -0.233278, -0.500202, 2.48343, -2.84203, -0.0735906, -1.79686, 0.211453, -2.645, -1.22372}, {4.53179, 1.05538, 0.0281511, -1.28505, -2.42496, -3.24278, -3.24675, -1.61027, 3.21463, 0, 2.97985, 0}, {-1.02659, 3.24669, 3.21473, 3.14112, -4.52341, 0.014006, -4.24471, 0, 0, 2.13019, 1.27672, -3.22874}, {-4, -4, -4, 0.835098, 8.15492, 0.835098, 0, 0, 3.59038, 3.1649, -4.15492, -0.425481}, {0, -7.0469, 0, -4, 3.0469, 3.0469, 4, 4, 4, 0, 0, -7.0469}, {2.27701, -1.57663, -3.25, -1.49395, 3.66511, 0.0115805, -2.03803, -2.71547, -0.00857994, 1.25497, 0.626993, 3.247}, {4.33924, 5.68374, -0.444357, -2.97354, -3.89489, 3.89489, -1.3657, 3.45053, -3.45053, 0, -5.23939, 0}, {4.33729, -5.68119, -0.447948, 0, 5.23939, 0, -1.36509, -3.45133, -3.4494, -2.97221, 3.89314, 3.89735}, {0, 4.44089e-16, 3.59038, -2.97354, -3.89489, 0.304504, -1.3657, 3.45053, -3.45053, 4.33924, 0.444357, -0.444357}, {-0.960671, 0.960671, -4.13489, 2.09645, -2.09645, -0.829765, 1.35765, 2.23273, 3.97777, -2.49343, -1.09695, 0.986887}, {-3.6556, -3.65879, 3.65879, -1.79574, 1.79308, -1.79621, 3.6556, 3.65879, -0.0684102, 1.79574, -1.79308, -1.79417}, {0.307102, -2.97354, -3.89489, 3.59038, 0, 0, -0.44815, 4.33924, 0.444357, -3.44934, -1.3657, 3.45053}, {-1.64157, 0.110512, -3.2348, 1.22142, 3.1461, -3.07269e-12, -0.833409, -0.40322, 3.2348, 1.25356, -2.85339, 2.78682e-12}, {0, 7.04488, 0, 4, -3.99886, 4.00114, -4, -3.04603, 3.04575, 0, 0, -7.0469}, {-0.443995, -0.444383, -4.3395, 0, 3.59038, 0, -3.44772, -3.45073, 1.36374, 3.89171, 0.30473, 2.97575}, {-1.00556, 2.54062, 1.04976, -3.90018, -1.55367, -2.03672, 3.775, 1.86995, -1.86995, 1.13075, -2.8569, 2.8569}, {-4.90575, 0.986953, -0.986953, 1.13075, -2.8569, 2.8569, -1.91647, -0.397296, -4.84209, 5.69148, 2.26724, 2.97215}, {4.19746, -5.51046, 2.84944, 1.88954, 6.77064, -1.88954, -2.89363, -5.45245, -4.15327, -3.19336, 4.19228, 3.19336}, {8.88178e-16, 7.0469, 0, -3.99886, -4, -4, 7.04488, 0, 0, -3.04603, -3.0469, 4}, {-4, 4, -4, 0, -7.0469, 0, 4, 3.0469, -3.0469, 0, 0, 7.0469}, {5.23123, 5.81945e-16, 0, -5.23123, -5.23939, 4, 0, 5.23939, 0, 1.6327e-11, 1.54706e-11, -4}, {-0.750211, -0.75138, 4.81251, 1.07726, -4.16045, 1.64668, -2.20213, 3.03383, -5.71589, 1.87508, 1.878, -0.743302}, {4, -2.28271e-11, 2.36273e-11, -4, 5.23939, -5.23939, 0, -5.23939, 0, 0, 0, 5.23939}, {3.80063, -1.80519, -1.80851, 1.09322, 2.76209, 2.76114, -3.92166, 1.49941, -2.08755, -0.972194, -2.45631, 1.13492}, {-1.92104, 0.382436, -4.85423, 5.71942, -2.18677, 3.04452, 1.09257, 2.76234, 2.76079, -4.89095, -0.95801, -0.95108}, {3.0469, 3.0469, -4, 4, 4, 4, -7.0469, 0, 0, 0, -7.0469, 0}, {-3.52345, 3.52244, -3.52446, 3.52244, 3.52345, 3.52345, -3.52244, -3.52345, 3.52345, 3.52345, -3.52244, -3.52244}, {-3.89489, -0.305669, 2.97354, 3.45053, 3.44843, 1.3657, 0, -3.58881, 0, 0.444357, 0.446058, -4.33924}, {3.45195, 3.44854, 1.36462, 5.6826, 0.445968, -4.33837, -3.89516, -3.89451, 2.97375, -5.23939, 0, 0}, {3.2348, 1.4231, -1.28032, 0, -3.01876, 0, -3.04119e-12, 1.63545, 4.51512, -3.2348, -0.0397999, -3.2348}, {-2.82577, -2.82405, -1.11842, -1.29033, 2.2973, 4.00441, 3.2475, -0.343291, 1.28534, 0.868592, 0.870035, -4.17133}, {1.88206, -3.35082, -5.84079, -2.82615, -2.82336, -1.11723, 1.95788, 1.95275, 5.28756, -1.01379, 4.22143, 1.67046}, {4.00887, -0.711384, 1.23085, -1.07985, 3.872, 1.08301, -1.46134, -0.730093, -3.78093, -1.46768, -2.43052, 1.46707}, {-6.11172, -2.09613, -3.09899, -3.35065, 1.32617, 2.2044, 6.08523, -2.4085, 1.35769, 3.37714, 3.17846, -0.4631}, {0, -1.78762, -4.51512, 0, -1.19223, 4.51512, 2.9332, 1.45476, -2.90418, -2.9332, 1.52509, 2.90418}, {-8.88178e-16, 0, 7.0469, -3.0469, -4, -3.0469, -4, 4, -4, 7.0469, 0, 0}, {-1.83438, 2.64163, -0.00817939, 1.49822, -0.389218, 3.22599, -2.02268, -3.19987, 0.00990788, 2.35884, 0.947457, -3.22772}, {-3.58659, -3.58659, 0.548674, 1.12084, -3.39428, -1.90685, -0.156642, 4.35848, -1.19262, 2.6224, 2.6224, 2.5508}, {-3.52345, -3.52345, -3.52345, 3.52345, 3.52345, -3.52345, -3.52345, 3.52345, 3.52345, 3.52345, -3.52345, 3.52345}, {4.44089e-16, 0, 2.95197, 4.40828e-12, -4.51512, -1.73539, -3.2348, 1.28032, -0.721726, 3.2348, 3.2348, -0.494857}, {-4.24471, 1.77636e-15, -4.44089e-16, 1.287, -4, -4, -1.6658, 8.15492, 0.835098, 4.62351, -4.15492, 3.1649}, {0.885858, -4.33672, -0.444099, -4.24471, 0, 0, 3.16813, 2.96992, 3.89452, 0.190724, 1.3668, -3.45042}, {-2.32703e-11, -0.00283219, 4, 5.23939, 5.23851, -4, 0, -5.23568, 0, -5.23939, 0, 0}, {-5.23939, -4, -5.23939, 2.28255e-11, 4, 2.28255e-11, 0, 0, 5.23939, 5.23939, 0, 0}, {4.47576, -1.93017, 0, -2.90763, 1.52342, 2.9332, 2.90763, 1.45643, -2.9332, -4.47576, -1.04967, 0}, {-2.74183, 0.846161, -0.849296, 1.62977, 1.63119, -1.63119, 0.777461, 0.778141, 2.81224, 0.334598, -3.25549, -0.331753}, {-2.36134, 0, 0, 1.74759, 0, 2.9332, -0.525012, -2.9332, -2.9332, 1.13877, 2.9332, 0}, {-3.21511, 0.1024, -3.24338, 3.21511, -1.89002, -1.27174, 0, 2.97985, 0, -3.36919e-12, -1.19223, 4.51512}, {0, 5.23939, 4.12864e-16, 0, 0, 5.23939, -4, -5.23939, -5.23372, 4, 2.28255e-11, -0.00566839}, {-2.40793, -0.260266, -0.260266, 0.500707, 2.7974, 2.7974, 1.23528, -2.86224, 0.0709597, 0.671946, 0.325101, -2.6081}, {4, 5.23939, -5.23939, 0, 0, 5.23939, -4, 2.28278e-11, -2.36282e-11, 0, -5.23939, 0}, {-4.44089e-16, 7.0469, 0, -7.0469, 0, 0, 3.0469, -3.0469, -4, 4, -4, 4}, {3.22647, -1.69048, -3.25484, 1.27702, -0.254226, 3.22687, 0, 2.97985, 0, -4.5035, -1.03514, 0.0279753}, {-3.50419, 0, 2.04697e-16, -0.300503, -3.2348, 3.2348, 0.9543, -1.27452, -3.22084, 2.85039, 4.50932, -0.0139624}, {-2.58829, 1.58763, 2.59096, 3.47782, 1.19279, 1.76345, 1.14429, -4.10309, -1.14764, -2.03382, 1.32267, -3.20677}, {-0.0193683, 3.11794, -1.2591, 3.23344, 0.218445, 1.74096, -3.23197, -0.456248, 0.785873, 0.0178911, -2.88013, -1.26773}, {4, -4, -4, -7.0469, 0, 0, 3.0469, -3.0469, 4, 0, 7.0469, 0}, {2.09645, -2.09645, -0.829765, 1.02053, 4.21886, 1.6698, -1.9812, -3.25819, -5.80469, -1.13578, 1.13578, 4.96465}, {0, 3.04177, 0.0635186, 0, -2.06144, 2.64295, -2.9332, -0.059438, -2.99766, 2.9332, -0.920892, 0.29119}, {1.04124, -3.22316, -3.25521, -4.24471, 0, 0, -0.179146, -1.28383, 3.24097, 3.38261, 4.507, 0.0142405}, {3.21511, -2.56163, 1.27174, -3.21511, -1.61044, 3.24338, 0, 2.97985, 0, 3.36919e-12, 1.19223, -4.51512}, {-3.65939, -3.66043, -10.7063, -3.52295, 3.52295, 3.52395, 3.52295, -3.52295, 3.52295, 3.65939, 3.66043, 3.65939}, {0.841653, -8.14937, -0.83453, 0, 0, -3.59038, -4.00321, 3.99728, 3.99972, 3.16156, 4.15209, 0.425192}, {0, -8.88178e-16, -5.23939, -4, -5.23123, 5.23372, 4, -1.54883e-11, 0.00566839, 0, 5.23123, 0}, {3.88882, 3.89489, 2.97354, 5.23123, 0, 0, -3.44516, -3.45053, 1.3657, -5.6749, -0.444357, -4.33924}, {8.15548, 0.834427, -0.835156, 0, 0, -3.59038, -4.00272, -3.99679, 4.00028, -4.15276, 3.16236, 0.425261}, {1.3657, 3.45053, -3.45053, 0, 0, 3.59038, -4.33924, 0.444357, -0.444357, 2.97354, -3.89489, 0.304504}, {-0.837584, 3.2348, -1.28032, -0.944765, -3.55036e-12, 4.51512, -0.578996, -3.2348, -3.2348, 2.36134, 0, 0}, {-3.0469, 3.0469, -4, 0, -7.0469, 0, 7.0469, 0, 0, -4, 4, 4}, {0.832911, -2.82507, -0.828908, 0.808732, 3.17388, -0.81323, -3.40548, -0.230067, -1.83358, 1.76384, -0.118743, 3.47572}, {0, -3.01876, 0, 1.28032, 1.39906, -3.2348, -4.51512, 1.5799, -3.09855e-12, 3.2348, 0.0397999, 3.2348}, {1.27174, 3.21511, 0.89222, 0, 0, -2.4308, 3.24338, -3.21511, 0.698828, -4.51512, 3.70603e-12, 0.839751}, {-1.79652, -1.79386, -1.79496, 1.79652, 1.79386, -1.79543, -3.65719, 3.65719, -0.0700075, 3.65719, -3.65719, 3.66039}, {-2.2828e-11, 4, 0.0025524, 0, 0, 5.24273, -5.23939, 0, 0, 5.23939, -4, -5.24528}, {-1.75292, -4.51512, -4.40936e-12, 0.0630025, 1.28032, 3.2348, 2.36134, 0, 0, -0.671422, 3.2348, -3.2348}, {-1.82767, 3.81744, 1.76272, -0.114041, 1.46619, -3.70442, 2.43635, -0.964293, 2.43635, -0.494641, -4.31934, -0.494641}, {-3.45053, -1.3657, -3.45053, -0.444357, 4.33924, -5.68374, 0, 0, 5.23939, 3.89489, -2.97354, 3.89489}, {2.9332, 2.26271, -0.706418, -2.9332, 1.41766, 2.12097, 0, -0.989411, -3.33225, 0, -2.69097, 1.9177}, {0, -1.39581e-17, 4.03735, -3.2348, -3.2348, -3.14648, -1.28032, 3.2348, -2.28562, 4.51512, 4.40982e-12, 1.39475}, {3.25531, -1.69257, -3.22311, -3.621e-12, -1.19223, 4.51512, 0, 2.97985, 0, -3.25531, -0.095055, -1.29201}, {-2.43276, 1.15549, 1.15762, 2.22336, 2.22531, 2.22336, 0.45554, -3.13444, 0.45554, -0.246142, -0.246357, -3.83653}, {4.00272, -3.99679, 4.00378, -8.15548, 0.834427, -0.842284, 4.15276, 3.16236, 0.42889, 0, 0, -3.59038}, {-2.25991, 1.3285, 0.893907, -1.12519, -1.12617, -4.07005, 1.87562, 1.87726, -0.7419, 1.50948, -2.07958, 3.91804}, {-3.45053, 1.3657, -3.45053, -0.444357, -4.33924, -5.68374, 3.89489, 2.97354, 3.89489, 0, 0, 5.23939}, {-3.2348, 0.341949, -1.28032, 0, -3.12276, 0, 3.2348, 0.619904, -3.2348, -3.95817e-12, 2.1609, 4.51512}, {2.97704, 0.304595, -3.89524, -4.34434, -0.444491, 0.444879, 1.36731, -3.44735, 3.45037, 0, 3.58725, 0}, {1.27702, -1.8283, -3.22687, 3.22647, -0.102762, 3.25484, 0, 2.97985, 0, -4.5035, -1.04879, -0.0279753}, {5.67645, -4.33837, 0.445968, 3.45388, 1.36462, 3.44854, -3.89094, 2.97375, -3.89451, -5.23939, 0, 0}, {0, 0, -5.23568, -0.00566839, -4, 0.00283219, 5.24506, 4, 5.23285, -5.23939, 0, 0}, {2.97354, -3.89489, 3.89489, 1.3657, 3.45053, -3.45053, 0, -5.23939, 0, -4.33924, 5.68374, -0.444357}, {7.0469, 0, 4.44089e-16, 0, 0, -7.0469, -4, -4, 4, -3.0469, 4, 3.0469}, {0.676898, -0.676898, 2.91348, 1.85764, -1.85764, -1.85764, -2.8863, -0.704082, -0.704082, 0.351759, 3.23862, -0.351759}, {-1.71643, -3.77342, 1.87396, 2.40825, 0.953172, 2.40825, -0.071317, -1.44928, -3.6617, -0.620505, 4.26953, -0.620505}, {-3.52345, -3.52345, -3.52345, 3.52345, -3.52345, 3.52345, 3.52345, 3.52345, -3.52345, -3.52345, 3.52345, 3.52345}, {-1.16853, 4.05757, 2.41902, -2.70338, -1.07129, -2.70173, 3.36405, 1.3331, -0.22682, 0.507865, -4.31938, 0.509529}, {0.235286, 2.46776, -2.45659, -1.58499, 1.09747, 2.26228, -1.89674, -2.81329, -0.210235, 3.24644, -0.75193, 0.40455}, {1.72714, 0.683827, -1.72773, -2.24537, -3.98415, -1.34153, 0.964303, -1.03975, 2.62699, -0.446071, 4.34007, 0.442278}, {-7.18233, -0.137487, -7.18233, 1.86445, 1.86498, 5.45483, 3.52295, -3.52295, 3.52295, 1.79493, 1.79545, -1.79545}, {0, -8.88178e-16, -2.4308, -3.22687, 1.27702, -0.160385, -0.0279753, -4.5035, 1.80584, 3.25484, 3.22647, 0.785343}, {3.45037, 1.36731, 3.44826, -3.89524, 2.97704, -0.306029, 0, 0, -3.58881, 0.444879, -4.34434, 0.446582}, {3.24278, -1.28505, 1.07917, 0, 0, -2.6315, -3.21463, -3.24675, -0.442405, -0.0281511, 4.53179, 1.99473}, {1.7269, 0.683416, -1.72787, -1.27936, -5.02087, 1.28648, 3.27466, 5.8105, 1.9565, -3.7222, -1.47305, -1.5151}, {-5.23372, -4, 5.23939, -0.00566839, 4, -2.28255e-11, 5.23939, 0, 0, 0, 0, -5.23939}, {0.0281511, 4.53179, 2.33833, 0, 0, -2.884, 3.21463, -3.24675, 0.327026, -3.24278, -1.28505, 0.218644}, {-3.52345, -3.52345, 3.52345, -3.52345, 3.52345, -3.52345, 3.52395, 3.52295, 3.52295, 3.52295, -3.52295, -3.52295}, {1.3657, 3.45494, 3.45053, -4.33924, 5.691, 0.444357, 2.97354, -3.89986, -3.89489, 0, -5.24608, 0}, {-1.06097, 2.95229, -1.06649, 4.44047, 0.792573, -0.800037, -2.21214, -0.888535, 3.02699, -1.16736, -2.85632, -1.16047}, {4, 4, -4, -3.1649, -3.16386, -4.15492, 0, -7.04589, 0, -0.835098, 6.20975, 8.15492}, {-3.23839, -0.578016, 0.58346, 0.0195373, 3.14514, -1.26116, 3.23532, 0.0837745, 2.04552, -0.0164672, -2.6509, -1.36782}, {-3.59038, 0, -8.88178e-16, 4, 4, -4, -0.834843, -0.83804, 8.15243, 0.425226, -3.16196, -4.15243}, {-3.99679, -4.00028, -4.00272, 0, 3.59038, 0, 0.834427, 0.835156, 8.15548, 3.16236, -0.425261, -4.15276}, {-0.618598, -0.619625, 2.97076, -2.5319, -2.52969, -2.52969, -0.377606, 3.21154, -0.378844, 3.52811, -0.062223, -0.062223}, {-6.21002, 0.835098, 8.15492, 3.164, 3.1649, -4.15492, 7.04488, 0, 0, -3.99886, -4, -4}, {-2.96943, -3.89447, -0.304082, 0, 0, -3.59038, -1.36934, 3.45016, 3.45016, 4.33877, 0.444309, 0.444309}, {-4.44089e-16, 3.59038, 0, 0.834427, 0.835156, -8.15548, 3.16236, -0.425261, 4.15276, -3.99679, -4.00028, 4.00272}, {4.15492, 0.425481, -3.1649, 0, -3.59038, 0, 4, 4, 4, -8.15492, -0.835098, -0.835098}, {0.444309, -0.444309, -4.33877, -3.89447, 0.304082, 2.96943, 3.45016, -3.45016, 1.36934, 0, 3.59038, 0}, {-4.44089e-16, 7.0469, 0, -3.04603, -3.0469, -4, 7.04488, 0, 0, -3.99886, -4, 4}, {-1.90626e-16, 0, 4.03735, -3.2348, 3.2348, 1.14797, 3.2348, 1.28032, -2.18823, -4.40962e-12, -4.51512, -2.99709}, {-1.3657, -3.45053, -3.44934, 4.33924, -0.444357, -0.44815, -2.97354, 3.89489, 0.307102, 0, 0, 3.59038}, {-4, 4, -4, 0, 0, 7.0469, 0.835098, -8.15492, -6.2118, 3.1649, 4.15492, 3.1649}, {1.22258, -2.9332, -2.86482e-12, -0.434061, 0, 3.2348, 1.13877, 2.9332, 2.86495e-12, -1.92728, 0, -3.2348}, {0.619868, 0, -4.61952, 1.07793, -2.9332, 1.07793, 1.00404, 2.9332, 1.00404, -2.70184, 0, 2.53754}, {8.15492, -0.835098, -6.2118, -4, 4, -4, -4.15492, -3.1649, 3.1649, 0, 0, 7.0469}, {-1.77636e-15, 0, 7.0469, -4, -4, -4, -3.0469, 4, -3.0469, 7.0469, 0, 0}, {3.89735, -2.97221, -3.89314, -0.447948, 4.33729, 5.68119, 0, 0, -5.23939, -3.4494, -1.36509, 3.45133}, {0.300503, 3.2348, -3.2348, -3.50419, 0, 0, 0.773493, -3.22084, -1.27452, 2.43019, -0.0139624, 4.50932}, {-5.23939, 4, -5.23939, 5.23939, 0, 0, 0, 0, 5.23939, -2.28255e-11, -4, -2.28255e-11}, {5.23939, 0, -1.75044e-16, -5.24506, 4, 5.23939, 0, 0, -5.23939, 0.00566839, -4, 2.28255e-11}, {3.95255, -0.362167, 0.362483, -0.482349, -3.10803, -0.479633, -1.12077, 1.12077, 2.46863, -2.34943, 2.34943, -2.35148}, {1.27685, 3.22605, 0.364333, -1.43581, -3.62766, 3.62766, -4.79345, -0.703234, 0.703234, 4.95241, 1.10484, -4.69522}, {-3.45053, 3.45053, 1.3657, -0.444357, 0.444357, -4.33924, 3.89489, -0.304504, 2.97354, 0, -3.59038, 0}, {-1.03322, 0, 2.9332, -2.44657, -2.9332, -2.9332, -0.388139, 2.9332, 0, 3.86792, 0, 0}, {-2.86482e-12, -2.9332, 2.09032, -3.2348, 0, -0.999254, 2.86466e-12, 2.9332, 1.94703, 3.2348, 0, -3.03809}, {3.99728, -3.99972, -4.00321, -8.14937, 0.83453, 0.841653, 4.15209, -0.425192, 3.16156, 0, 3.59038, 0}, {-3.65719, -3.66039, -3.65719, -1.79386, 1.79496, 1.79652, 3.65719, 0.0700075, 3.65719, 1.79386, 1.79543, -1.79652}, {0.32313, 3.2444, -3.2106, 3.54154, -2.30319, 5.58401, -2.14916, 1.30205, 3.28335, -1.71551, -2.24325, -5.65675}, {-3.89489, 2.97354, -2.82238, 0, 0, 4.03735, 0.444357, -4.33924, -0.86478, 3.45053, 1.3657, -0.350185}, {1.84375, -4.52327, -0.014292, 0.315792, 3.2348, -3.2348, -3.14489, 0, 0, 0.985347, 1.28847, 3.24909}, {-4.33924, -0.444357, -5.6776, 0, 0, 5.23939, 1.3657, -3.45053, -3.45246, 2.97354, 3.89489, 3.89067}, {5.23939, 0, 0, -3.45053, 3.45053, 1.3657, -5.68374, 0.444357, -4.33924, 3.89489, -3.89489, 2.97354}, {7.0469, 8.88178e-16, 0, 3.16371, 4.15492, -3.1649, -6.20947, -8.15492, -0.835098, -4.00114, 4, 4}, {-0.782485, -3.2348, -1.28032, 2.60358, 0, 0, -0.410568, 3.2348, -3.2348, -1.41052, 3.55036e-12, 4.51512}, {-4, 4, -4, -4.15492, 0.425481, 3.1649, 0, -3.59038, 0, 8.15492, -0.835098, 0.835098}, {-1.75292, -4.51512, 4.40936e-12, -1.18742, 1.28032, -3.2348, 0.578996, 3.2348, 3.2348, 2.36134, 0, 0}, {-4, -4, -4, -6.2118, 8.15492, 0.835098, 3.1649, -4.15492, 3.1649, 7.0469, 0, 0}, {0.304504, -2.97354, 3.89489, -3.45053, -1.3657, -3.45053, -0.444357, 4.33924, -0.444357, 3.59038, 0, 0}, {-0.968585, 2.9332, 1.64782, -3.80236, -2.9332, 0.915743, 1.28259, 0, -3.64114, 3.48835, 0, 1.07758}, {8.15492, 0.835098, -3.7826, -4, -4, 0.45685, 0, 0, 5.36117, -4.15492, 3.1649, -2.03542}, {-4, 4, -4, 0, -7.0469, 0, 7.0469, 0, 0, -3.0469, 3.0469, 4}, {-2.33946, 1.78605, 2.34209, 3.03792, -2.3193, 2.20139, -2.35172, -2.20459, -2.89092, 1.65325, 2.73783, -1.65256}, {2.60358, 0, 3.0632e-16, -1.03055, -1.28032, -3.2348, 0.410568, -3.2348, 3.2348, -1.98359, 4.51512, -4.40967e-12}, {-3.59038, 1.77636e-15, -1.11022e-16, 4, -4, 4, 0.425226, -4.15243, -3.16196, -0.834843, 8.15243, -0.83804}, {0, 0, -5.23939, -4, 1.54883e-11, -0.00566839, 4, -5.23123, 5.24506, 0, 5.23123, 0}, {-1.62732e-11, 1.54703e-11, 4, 5.23939, 0, 0, 0, -5.23939, 0, -5.23939, 5.23939, -4}, {4.72393, 2.32297, -6.20162, -2.81181, -4.23508, -5.55986, 1.34415, -1.34415, 7.48662, -3.25627, 3.25627, 4.27486}, {-3.1649, -4.15492, -3.16386, -0.835098, 8.15492, 6.20975, 4, -4, 4, 0, 0, -7.04589}, {2.10128, 3.1649, 4.15492, 3.73608, 0.835098, -8.15492, -0.419151, -4, 4, -5.41822, 0, 0}, {0, 0, -7.0469, 7.0469, 0, 0, -4.00114, 4, 4, -3.04575, -4, 3.0469}, {-3.89511, 3.89452, 2.96992, -5.24608, 0, 0, 5.68769, -0.444099, -4.33672, 3.45349, -3.45042, 1.3668}, {-7.0469, 0, 0, 4.00114, 4, 4, 3.04575, -4, 3.0469, 0, 0, -7.0469}, {-5.24608, 0, 0, 5.24608, -5.24018, 4, 2.32367e-11, -0.0025524, -4, 0, 5.24273, 0}, {4.44089e-16, 4.44089e-16, 4.03735, -4.51512, 4.40818e-12, -1.39475, 3.2348, 3.2348, -1.306, 1.28032, -3.2348, -1.33659}, {6.38334, 0.936482, -0.936482, -5.90226, 2.17282, 1.41756, -3.46093, -0.129456, -3.46093, 2.97985, -2.97985, 2.97985}, {-0.252976, 0.252976, -3.84336, 0.368915, 3.22147, 0.368915, -2.40103, -1.18935, 1.18935, 2.28509, -2.28509, 2.28509}, {-1.44735, 2.54109, 0.82519, -0.346604, -3.63529, 3.61884, -1.58915, 0.412839, -3.42177, 3.3831, 0.681367, -1.02226}, {-2.32365e-11, 0.0025524, 4, -5.24608, 0, 0, 0, 5.24273, 0, 5.24608, -5.24528, -4}, {-3.59357e-12, 3.68038, 1.41455, 2.62736e-12, -2.69097, 1.9177, -3.2348, 0.574024, -0.993189, 3.2348, -1.56344, -2.33906}, {2.74148, 0.0555531, 2.80173, -2.9202, -2.12061, -0.341431, -0.0977885, 3.03978, -0.0364189, 0.27651, -0.974727, -2.42388}, {4.00321, 3.99728, 3.99972, 0, 0, -3.59038, -0.841653, -8.14937, -0.83453, -3.16156, 4.15209, 0.425192}, {0, 4.44089e-16, -7.0469, 0, 7.04488, 0, -4, -3.99886, 4, 4, -3.04603, 3.0469}, {-4.40759e-12, 4.51512, -3.21766, 0, 0, 4.03735, -3.2348, -1.28032, 0.328292, 3.2348, -3.2348, -1.14798}, {-3.2348, -3.2348, 1.306, 4.40977e-12, 4.51512, -3.21766, 0, 0, 4.03735, 3.2348, -1.28032, -2.12568}, {1.28032, 0.265417, 3.2348, -4.51512, 1.06793, -3.90061e-12, 3.2348, 1.75796, -3.2348, 0, -3.09131, 0}, {-2.85306, -1.28668, -1.28504, 3.1184, -0.694894, -0.694008, 0.0152986, 3.82424, -1.42003, -0.280638, -1.84266, 3.39908}, {3.0469, 4, -3.0469, -7.0469, 0, 0, 4, -4, -4, 0, 0, 7.0469}, {1.29201, -3.25531, 0.810704, 0, 0, -2.6315, -4.51512, -3.75807e-12, 1.37723, 3.22311, 3.25531, 0.443571}, {-3.66502, 2.14914, 1.43616, 0.752328, 1.90198, -1.90298, 4.02391, -1.24183, 1.24643, -1.11122, -2.8093, -0.779603}, {8.15492, -3.3488, 0.835098, -4.15492, -1.54688, 3.1649, 0, 4.85752, 0, -4, 0.0381551, -4}, {-3.45053, 1.3657, -3.45053, 3.59038, 0, 0, 0.304504, 2.97354, 3.89489, -0.444357, -4.33924, -0.444357}, {-4, 3.0469, -3.0469, 0, -7.0469, 0, 4, 4, -4, 0, 0, 7.0469}, {-10.7068, 3.65991, -3.65991, 3.52345, -3.52345, -3.52345, 3.52345, 3.52345, 3.52345, 3.65991, -3.65991, 3.65991}, {0, -3.59038, 4.44089e-16, 3.1649, 0.425481, 4.15492, 0.835098, -0.835098, -8.15492, -4, 4, 4}, {-1.94171, 5.28363, -1.94171, 2.66708, -5.57073, -2.5723, 2.43635, -0.964293, 2.43635, -3.16172, 1.25139, 2.07766}, {0.099584, -1.28032, 3.2348, -1.88193, 4.51512, 4.40977e-12, 2.36134, 0, 0, -0.578997, -3.2348, -3.2348}, {-6.2118, -0.835098, -8.15492, 3.1649, -3.1649, 4.15492, 7.0469, 0, 0, -4, 4, 4}, {0.75324, 1.90144, -1.90334, 5.34316, -3.13319, -2.09374, -1.32234, 1.89318, 3.34138, -4.77406, -0.661432, 0.655698}, {4.44089e-16, 7.04488, 0, -4.15492, 3.164, -3.1649, 8.15492, -6.21002, -0.835098, -4, -3.99886, 4}, {-2.97354, -3.89986, -3.89489, 4.33924, 5.691, 0.444357, -1.3657, 3.45494, 3.45053, 0, -5.24608, 0}, {0, 0, -5.23939, 4, 5.24608, 5.23939, -4, -1.55241e-11, -1.5915e-11, 0, -5.24608, 0}, {-0.444357, 5.68374, 4.33924, 3.89489, -3.89489, -2.97354, 0, -5.23939, 0, -3.45053, 3.45053, -1.3657}, {3.52345, -3.52345, -3.52345, -3.52345, -3.52345, 3.52345, 3.52345, 3.52345, 3.52345, -3.52345, 3.52345, -3.52345}, {3.59038, 0, 2.22045e-16, 0.304504, -3.89489, -2.97354, -0.444357, 0.444357, 4.33924, -3.45053, 3.45053, -1.3657}, {5.23123, -8.88178e-16, 0, -5.23123, -5.23939, -4, -1.6327e-11, -1.54706e-11, 4, 0, 5.23939, 0}, {-1.36374, -3.44772, 3.44954, -2.97575, 3.89171, -0.30733, 4.3395, -0.443995, 0.448176, 0, 0, -3.59038}, {-3.16371, 4.15492, -3.1649, 4.00114, 4, 4, -7.0469, 0, 0, 6.20947, -8.15492, -0.835098}, {-3.52395, -3.52295, -3.52295, -3.52295, 3.52295, 3.52295, 3.52295, -3.52295, 3.52395, 3.52395, 3.52295, -3.52395}, {4, -4, -4.00114, -8.15492, 0.835098, -6.20947, 0, 0, 7.0469, 4.15492, 3.1649, 3.16371}, {-0.425481, 4.15492, 3.1649, 0.835098, -8.15492, 0.835098, -4, 4, -4, 3.59038, 0, 0}, {-1.79519, 1.79519, -1.79519, -1.79519, -1.79519, 1.79519, -0.0700075, -3.65719, -3.65719, 3.66039, 3.65719, 3.65719}, {4, 4, -4, 0, 0, 7.0469, -7.0469, 0, 0, 3.0469, -4, -3.0469}, {1.16094, -1.15703, 4.97097, -1.66567, -3.57722, 1.41703, -2.89698, 2.8944, -1.14655, 3.40171, 1.83985, -5.24145}, {-2.7042, -1.06842, -2.70002, 1.70166, -5.90879, -3.52267, 2.19866, 5.37974, 2.18568, -1.19612, 1.59748, 4.03701}, {4.33729, -5.67235, 0.447948, -1.36509, -3.44596, 3.4494, 0, 5.23123, 0, -2.97221, 3.88708, -3.89735}, {3.2348, -3.2348, -1.14797, 0, 0, 4.03735, 1.28032, 3.2348, -1.49462, -4.51512, -4.40977e-12, -1.39475}, {4, 4, 4, -0.835098, -0.835098, -8.15492, 0, -3.59038, 0, -3.1649, 0.425481, 4.15492}, {-3.1649, -3.1649, 4.15492, -7.0469, 0, 0, 4, 4, 4, 6.2118, -0.835098, -8.15492}, {0.724826, 0.724826, -6.59499, -3.21143, -3.21143, -3.21143, 3.7299, 0.139517, 3.7299, -1.24329, 2.34709, 6.07653}, {2.48661, 2.48661, 9.80643, -3.21143, -3.21143, -3.21143, -1.7154, 5.33149, 5.33149, 2.44023, -4.60667, -11.9265}, {-4.95125, 1.10332, 1.10192, -1.44818, -1.58249, 3.65892, 0.833328, -2.10815, -2.10546, 5.5661, 2.58731, -2.65538}, {0.836183, -2.10682, -2.10682, 4.11656, 1.00419, 1.00419, -1.14088, 2.87451, -0.715871, -3.81187, -1.77188, 1.8185}, {0.343882, -3.2462, -1.28483, 0.297233, 0.297493, 4.63286, 2.13498, 2.13685, 0.845752, -2.7761, 0.811861, -4.19379}, {2.22045e-16, 5.23939, 0, -3.44772, -3.45309, -1.36374, 3.89171, 3.89778, -2.97575, -0.443995, -5.68407, 4.3395}, {3.58725, -4.44089e-16, 0, -3.44752, -3.45053, -1.3657, -0.443969, -0.444357, 4.33924, 0.304238, 3.89489, -2.97354}, {3.65991, -3.65991, -3.65991, 3.52345, 3.52345, -3.52345, -3.52345, -3.52345, -3.52345, -3.65991, 3.65991, 10.7068}, {3.1649, -4.15492, -3.1649, 0, 0, -7.0469, -4, -4, 4, 0.835098, 8.15492, 6.2118}, {-4, -4, 4, 0.835098, 8.15492, -0.835098, 3.59038, 0, 0, -0.425481, -4.15492, -3.1649}, {-1.3476, -0.0112467, -3.55949, 1.85019, -3.24836, -1.05487, 1.92324, 3.24442, -0.189939, -2.42583, 0.0151799, 4.80429}, {1.17675, 3.24909, 1.28847, -0.315792, -3.2348, 3.2348, -3.14489, 0, 0, 2.28393, -0.014292, -4.52327}, {8.15492, -0.835098, -0.835098, -4, 4, 4, 0, 0, -3.59038, -4.15492, -3.1649, 0.425481}, {-4.15492, -3.1649, -3.1649, -4, 4, 4, 0, -7.0469, 0, 8.15492, 6.2118, -0.835098}, {0.137487, 7.18233, 7.18233, -1.79519, 1.79519, -1.79519, 3.52295, -3.52295, -3.52295, -1.86524, -5.45458, -1.86419}, {3.52295, -3.52295, -3.52295, -3.66043, -3.65939, -3.65939, -3.52345, -3.52345, 3.52345, 3.66094, 10.7058, 3.65888}, {1.67988, -1.68212, -5.18466, -2.30896, 2.30807, 0.915293, -1.39444, -3.85015, -1.52682, 2.02352, 3.2242, 5.7962}, {3.4516, -3.45027, -1.36825, -3.89922, 3.89484, -2.97306, -5.24608, 0, 0, 5.6937, -0.444568, 4.3413}, {1.94453e-16, 2.70417, 0, 3.25531, -0.177688, 3.22311, -3.25531, -0.557762, 1.29201, 3.62091e-12, -1.96872, -4.51512}, {3.09726e-12, 1.01994, -3.86266, -3.25531, -0.69454, 0.97832, 3.25531, -2.18133, -1.3721, -3.41346e-12, 1.85593, 4.25643}, {2.90521, -1.78203, -2.9082, 2.41571, 1.84427, 2.82665, -2.85063, 1.82369, -2.38912, -2.47029, -1.88594, 2.47066}, {-5.23939, 0, -8.88178e-16, 0, 0, 5.24273, 2.28278e-11, -4, -0.0025524, 5.23939, 4, -5.24018}, {-3.52295, 3.52295, 3.52295, 1.79545, 1.79493, -1.79545, 7.18233, -7.18233, 0.137487, -5.45483, 1.86445, -1.86498}, {-3.52295, 3.52295, 3.52295, -3.52395, -3.52295, -3.52295, -3.65939, 3.65939, -3.66043, 10.7063, -3.65939, 3.66043}, {-0.835098, 0.835098, 8.15492, 0, 3.59038, 0, 4, -4, -4, -3.1649, -0.425481, -4.15492}, {-7.0469, 5.55112e-16, 0, 4, -4, -4, -3.1649, 3.1649, -4.15492, 6.2118, 0.835098, 8.15492}, {0.662971, 0.664005, -4.25288, 1.65703, 1.65961, 0.655439, -2.91351, 2.32133, -1.15244, 0.59351, -4.64495, 4.74988}, {1.19438, -3.49493, 0, -2.76951, 1.19435, 0, 1.94164, -0.567827, 2.9332, -0.366511, 2.8684, -2.9332}, {2.36134, 1.0718e-17, 8.88178e-16, 0.671422, -3.2348, 3.2348, -0.342675, 3.2348, 1.28032, -2.69009, 3.55093e-12, -4.51512}, {-1.10548, 3.2348, 0, -1.25586, -3.2348, 0, 0.613756, 2.30645e-12, -2.9332, 1.74759, -2.30645e-12, 2.9332}, {3.2348, 0.120997, 3.2348, 0, -3.09131, 0, -3.2348, -0.551371, 1.28032, 3.95817e-12, 3.52168, -4.51512}, {-3.2348, 0.76173, -0.403199, 2.15323e-12, -1.17552, -2.45621, 3.2348, 2.34907, 0.378214, -2.17514e-12, -1.93527, 2.4812}, {-3.53969, 3.53969, 2.69627, -1.11299, 1.11299, -6.1991, 5.13509, 1.9118, -3.91153, -0.482412, -6.56449, 7.41436}, {4.72983, -3.60283, 2.31706, -1.62186, -5.81149, 1.62186, -3.59839, 2.74098, 3.59839, 0.490411, 6.67334, -7.53731}, {-4, 4, -4, 4, -4, -3.0469, 0, 7.0469, 0, 0, -7.0469, 7.0469}, {0, 0, 7.0469, 4, -3.0469, -4, -4, -4, 4, 0, 7.0469, -7.0469}, {1.26315, 3.1826, -0.407781, -4.48373, 0.0790768, 0.0790768, -1.01464, -2.55645, -2.55645, 4.23522, -0.705229, 2.88515}, {-1.01079, -2.55709, -2.55383, 1.69808, -0.95029, 4.29031, 5.49464, 2.47799, 2.47483, -6.18193, 1.02939, -4.21131}, {-1.79519, -1.79519, 1.79519, -3.65991, 3.65991, -3.65991, 1.79519, 1.79519, 1.79519, 3.65991, -3.65991, 0.0695263}, {-1.79519, -1.79519, 1.79519, 5.4551, -1.86472, 1.86472, 3.52345, -3.52345, -3.52345, -7.18336, 7.18336, -0.13646}, {0, -4.44089e-16, 3.59038, -8.15492, -0.835098, 0.835098, 4, 4, -4, 4.15492, -3.1649, -0.425481}, {4.15492, -3.1649, 3.1649, 4, 4, -4, 0, -7.0469, 0, -8.15492, 6.2118, 0.835098}, {4.18211, -0.841369, 0.841369, 1.63378, -1.11155, -4.12784, -0.96395, -2.43548, 2.43548, -4.85193, 4.3884, 0.850991}, {-2.9332, -0.654372, 2.78087, 0, 0.366146, -3.84129, 0, 2.94119, 1.57488, 2.9332, -2.65297, -0.514459}, {4.51512, -1.06793, 3.90044e-12, 0, -3.09131, 0, -1.28032, 0.871067, 3.2348, -3.2348, 3.28817, -3.2348}, {0, -0.430374, 4.51512, -2.9332, -0.109716, -2.9332, 0, 3.52168, -4.51512, 2.9332, -2.98159, 2.9332}, {4.19026, 0.820764, 0.814826, 1.21474, -3.06912, 2.16855, -0.936049, 2.36499, 2.36631, -4.46895, -0.116634, -5.34969}, {0.972372, 0.736781, -3.03724, -3.79781, 2.2903, -1.05943, 0.111338, -3.09792, 0.84769, 2.7141, 0.0708344, 3.24899}, {-2.55729, 1.01135, -2.55763, -2.08284, -1.24835, 3.15697, 1.89416, -5.27077, 1.90402, 2.74596, 5.50777, -2.50336}, {3.77679, -1.49465, 0.187718, 0.660093, 4.25334, 0.656376, -2.557, 1.01192, -2.55789, -1.87988, -3.77061, 1.7138}, {-5.23939, 0, -5.55112e-17, 3.4502, -1.36448, 3.45065, -3.90439, -2.97758, -3.8953, 5.69358, 4.34205, 0.444645}, {-4.44089e-16, 4.44089e-16, -3.59038, 3.4494, -1.36509, 3.45059, 0.447948, 4.33729, 0.444157, -3.89735, -2.97221, -0.304367}, {4.28053, 0.593056, -0.587914, -0.673906, 1.70372, -1.70733, 1.45255, -3.67222, -1.55938, -5.05918, 1.37545, 3.85462}, {0, 4.47576, 0.618208, 0, -4.47576, 1.81259, -2.9332, -2.90763, -0.707734, 2.9332, 2.90763, -1.72306}, {-1.27174, 3.21511, 1.36527, 0, 0, -2.4308, 4.51512, -3.70603e-12, -0.839751, -3.24338, -3.21511, 1.90528}, {0.947177, -0.947177, -4.14023, -3.0344, -2.20499, -1.201, 1.74832, -1.74832, 0.691975, 0.338905, 4.90048, 4.64925}, {1.90928, 0.579177, 2.90015, -2.97176, -1.29918, -0.341631, 1.26427, 3.63788, 0.209764, -0.201792, -2.91787, -2.76828}, {3.04112e-12, -1.63545, -4.51512, 0, -3.01876, 0, 3.2348, 2.35061, 1.28032, -3.2348, 2.3036, 3.2348}, {4.04958, 1.77038, 0.465536, -2.40427, -1.3066, 2.40427, -4.10736, 1.28953, -0.407754, 2.46205, -1.7533, -2.46205}, {0.835098, -0.835098, 8.15492, -4, 4, -4, 3.59038, 0, 0, -0.425481, -3.1649, -4.15492}, {3.1649, -3.1649, -4.15492, -4, 4, -4, 0, -7.0469, 0, 0.835098, 6.2118, 8.15492}, {-3.65991, 3.65991, 3.65991, 1.79519, 1.79519, -1.79519, 1.79519, -1.79519, 1.79519, 0.0695263, -3.65991, -3.65991}, {1.79519, -1.79519, 1.79519, 1.86472, -1.86472, -5.4551, -3.52345, -3.52345, -3.52345, -0.13646, 7.18336, 7.18336}, {3.0611, -1.07112, 2.10077e-12, -0.369018, 1.30083, 3.2348, 0.267075, 1.7536, -3.2348, -2.95915, -1.98331, -2.03061e-12}, {-1.28032, 0.716498, -3.2348, -3.2348, -0.619904, 3.2348, 0, -3.12276, 0, 4.51512, 3.02616, 3.09876e-12}, {-3.24675, 0.177221, -3.21463, 0, 2.70417, 0, -1.28505, -0.665307, 3.24278, 4.53179, -2.21609, -0.0281511}, {-1.03768, -0.786269, 3.24125, 3.76174, 0.864649, -0.0233676, 1.42117, -2.10543, -3.24363, -4.14523, 2.02705, 0.0257498}, {-3.65991, -3.65991, 3.65991, -3.52345, 3.52345, 3.52345, 3.52345, -3.52345, 3.52345, 3.65991, 3.65991, -10.7068}, {-1.02588, -1.02588, -4.04576, 5.15074, -1.89616, -1.23707, -2.74863, 4.29827, 1.25677, -1.37623, -1.37623, 4.02606}, {4, -4, -4, -3.1649, -4.15492, 3.1649, 0, 0, 7.0469, -0.835098, 8.15492, -6.2118}, {4.27497, -6.68514, -1.95466, -0.750905, 7.33275, 1.46136, -3.95428, 3.55351, -2.7068, 0.430212, -4.20112, 3.20009}, {-0.675958, 1.70428, -1.70576, 3.47227, -0.944013, -2.64554, 0.813742, 1.53558, 2.05346, -3.61005, -2.29584, 2.29785}, {-2.9332, 0.268765, -0.269, 0, 1.01807, 2.57142, 0, -3.15223, -0.435397, 2.9332, 1.86539, -1.86702}, {2.9332, -2.86386e-12, 0.906086, 0, 3.2348, -2.30525, 0, -3.2348, -1.73209, -2.9332, 2.86386e-12, 3.13126}, {-1.28032, -3.2348, -0.365321, -3.2348, 3.2348, 1.14798, 0, 0, 4.03735, 4.51512, -4.40815e-12, -4.82}, {4.32811, 0.737725, -1.71304, -3.72649, -3.72649, 1.47492, -0.518804, -0.518804, 4.72046, -0.0828155, 3.50757, -4.48234}, {-5.23939, -3.88578e-16, 0, -3.90017, -3.8953, -2.97758, 3.45213, 3.45065, -1.36448, 5.68742, 0.444645, 4.34205}, {3.45053, 3.45053, -1.3657, 0, -3.59038, 0, 0.444357, 0.444357, 4.33924, -3.89489, -0.304504, -2.97354}, {0, 1.06747e-17, -2.884, -3.22311, 3.25531, -0.327888, -1.29201, -3.25531, 0.417097, 4.51512, 3.75787e-12, 2.79479}, {-0.0130226, -3.25531, 1.20877, -0.260244, 3.25531, 1.50608, 3.12118, 2.59785e-12, -0.952039, -2.84791, -2.3704e-12, -1.76282}, {0.578997, 3.2348, 3.2348, 2.36134, 0, 0, -0.250249, -3.2348, 1.28032, -2.69009, -3.55036e-12, -4.51512}, {-1.12419, -3.2348, -0.186522, 0.812252, -2.04448e-12, -2.60004, -1.39607, 3.2348, -0.0801962, 1.708, 2.2542e-12, 2.86675}, {-3.93279, 1.55848, -1.3088, 1.97526, -0.782753, -1.97415, -1.50913, 5.11867, 1.50188, 3.46666, -5.8944, 1.78108}, {-0.47019, -4.32902, 0.47019, 0.867473, 1.07771, 2.72291, 1.97453, -0.781507, -1.97453, -2.37181, 4.03281, -1.21857}, {-3.45037, 1.36731, 3.44843, 0, 0, -5.23939, 3.89524, 2.97704, -3.89946, -0.444879, -4.34434, 5.69042}, {-3.45053, 1.3657, 3.45053, 3.59038, 0, 0, -0.444357, -4.33924, 0.444357, 0.304504, 2.97354, -3.89489}, {2.40563, -3.3686, -2.16577, -4.01552, 0.313534, -3.06173, -1.35813, -0.303573, 2.96446, 2.96803, 3.35864, 2.26304}, {0.444309, 1.73608, 4.33877, 0, 4.85752, 0, 3.45016, -2.1866, -1.36934, -3.89447, -4.407, -2.96943}, {-1.77354, -2.8259, -5.08017, -1.99992, 2.80049, 1.80052, -0.192763, -1.93544, 1.91528, 3.96622, 1.96086, 1.36437}, {3.41957, -0.149544, 3.15791, -3.35877, 2.12868, 1.33307, 6.03338, 1.03375, -2.39461, -6.09418, -3.0129, -2.09638}, {1.36731, -2.16592, -3.45037, 0, 4.85752, 0, -4.34434, 1.78399, -0.444879, 2.97704, -4.4756, 3.89524}, {-2.95631, -0.302739, 1.37126, 3.02503, 0.309776, 3.95804, 2.1672, -3.36845, -2.40376, -2.23591, 3.36142, -2.92554}, {2.31112, 1.19654, -5.83206, -1.28659, 2.03806, 3.24669, -3.3095, 0.144731, -3.05627, 2.28498, -3.37933, 5.64163}, {-1.96264, -1.84718, 0.269133, -1.79514, 2.79017, 1.99109, 5.26848, -3.1772, 1.46969, -1.5107, 2.23422, -3.72992}, {-0.60788, 3.25394, -0.100754, 4.36982, -1.029, 0.544673, 0.0459483, -1.94609, 2.48692, -3.80789, -0.278843, -2.93084}, {-2.10446, -2.10356, 0.831802, -1.45971, -1.45589, -3.94218, -2.09284, 3.1452, -1.24369, 5.65702, 0.414251, 4.35407}, {3.27119, 4.85191, 0.362578, 0.814367, -4.35925, 0.134979, -0.753128, 2.3313, 2.35448, -3.33243, -2.82396, -2.85204}, {-3.50419, 0, -4.44089e-16, 2.14843, -3.22874, 1.27672, -2.43779, 0.014006, -4.52341, 3.79356, 3.21473, 3.24669}}
   ]
   + total size  : 2.1e+02kB
  ]
  + total size  : 2.1e+02kB
 ]
 
diff --git a/test/test_fem/test_interpolate_triangle_3.verified b/test/test_fem/test_interpolate_triangle_3.verified
index 8eb76dee5..9274a5bd8 100644
--- a/test/test_fem/test_interpolate_triangle_3.verified
+++ b/test/test_fem/test_interpolate_triangle_3.verified
@@ -1,146 +1,146 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 2
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 13
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 8
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
        ]
-        (not_ghost:triangle_3) [
+        (not_ghost:_triangle_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_3
+        + id             : mesh:connectivities:_triangle_3
         + size           : 16
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{3, 9, 6}, {0, 12, 7}, {2, 10, 5}, {1, 11, 4}, {7, 8, 9}, {6, 9, 8}, {6, 8, 10}, {7, 12, 8}, {5, 10, 8}, {4, 8, 12}, {4, 11, 8}, {5, 8, 11}, {0, 4, 12}, {3, 7, 9}, {1, 5, 11}, {2, 6, 10}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 13
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_2) [
+        (not_ghost:_segment_2) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_2
+        + id             : mesh:connectivities:_segment_2
         + size           : 8
         + nb_component   : 2
         + allocated size : 2000
         + memory size    : 16kB
         + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
        ]
-        (not_ghost:triangle_3) [
+        (not_ghost:_triangle_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_3
+        + id             : mesh:connectivities:_triangle_3
         + size           : 16
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{3, 9, 6}, {0, 12, 7}, {2, 10, 5}, {1, 11, 4}, {7, 8, 9}, {6, 9, 8}, {6, 8, 10}, {7, 12, 8}, {5, 10, 8}, {4, 8, 12}, {4, 11, 8}, {5, 8, 11}, {0, 4, 12}, {3, 7, 9}, {1, 5, 11}, {2, 6, 10}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 7
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_2
+   + id             : mesh:connectivities:_segment_2
    + size           : 8
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 16kB
    + values         : {{0, 4}, {4, 1}, {1, 5}, {5, 2}, {2, 6}, {6, 3}, {3, 7}, {7, 0}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:triangle_3
+   + id             : mesh:connectivities:_triangle_3
    + size           : 16
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 23kB
    + values         : {{3, 9, 6}, {0, 12, 7}, {2, 10, 5}, {1, 11, 4}, {7, 8, 9}, {6, 9, 8}, {6, 8, 10}, {7, 12, 8}, {5, 10, 8}, {4, 8, 12}, {4, 11, 8}, {5, 8, 11}, {0, 4, 12}, {3, 7, 9}, {1, 5, 11}, {2, 6, 10}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 13
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {1, 0.5}, {0.5, 1}, {0, 0.5}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:triangle_3
+   + id             : my_fem:jacobians:_triangle_3
    + size           : 16
    + nb_component   : 1
    + allocated size : 16
    + memory size    : 0.12kB
    + values         : {{0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}, {0.0625}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:triangle_3
+   + id             : my_fem:quadrature_points:_triangle_3
    + size           : 1
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0.333333, 0.333333}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:triangle_3
+   + id             : my_fem:shapes:_triangle_3
    + size           : 16
    + nb_component   : 3
    + allocated size : 16
    + memory size    : 0.38kB
    + values         : {{0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}, {0.333333, 0.333333, 0.333333}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:triangle_3
+   + id             : my_fem:shapes_derivatives:_triangle_3
    + size           : 16
    + nb_component   : 6
    + allocated size : 16
    + memory size    : 0.75kB
    + values         : {{-2, 2, 0, -4, 2, 2}, {-2, -2, 4, 0, -2, 2}, {2, 2, -4, 0, 2, -2}, {2, -2, 0, 4, -2, -2}, {-2, -2, 2, -2, 1.04929e-11, 4}, {2, 2, -4, 1.08926e-11, 2, -2}, {-2, 2, -2, -2, 4, -1.08926e-11}, {-2, 2, -1.04929e-11, -4, 2, 2}, {2, -2, 8.43547e-12, 4, -2, -2}, {2, -2, 2, 2, -4, 8.03579e-12}, {-2, -2, 4, -8.03579e-12, -2, 2}, {2, 2, -2, 2, -8.43547e-12, -4}, {-2, -2, 2, -2, 0, 4}, {-2, 2, -2, -2, 4, 0}, {2, -2, 2, 2, -4, 0}, {2, 2, -2, 2, 0, -4}}
   ]
   + total size  : 1e+02kB
  ]
  + total size  : 1e+02kB
 ]
 
diff --git a/test/test_fem/test_interpolate_triangle_6.verified b/test/test_fem/test_interpolate_triangle_6.verified
index 38638194c..04bbfdea2 100644
--- a/test/test_fem/test_interpolate_triangle_6.verified
+++ b/test/test_fem/test_interpolate_triangle_6.verified
@@ -1,146 +1,146 @@
 Epsilon : 3e-13
 FEM [
  + id                : my_fem
  + element dimension : 2
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 41
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}, {0.125, 0.875}, {0.375, 0.875}, {0.125, 0.125}, {0.125, 0.375}, {0.875, 0.875}, {0.875, 0.625}, {0.875, 0.125}, {0.625, 0.125}, {0.25, 0.5}, {0.375, 0.625}, {0.125, 0.625}, {0.5, 0.75}, {0.625, 0.625}, {0.625, 0.875}, {0.375, 0.375}, {0.75, 0.5}, {0.5, 0.25}, {0.375, 0.125}, {0.625, 0.375}, {0.875, 0.375}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 8
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{0, 4, 5}, {4, 1, 6}, {1, 7, 8}, {7, 2, 9}, {2, 10, 11}, {10, 3, 12}, {3, 13, 14}, {13, 0, 15}}
        ]
-        (not_ghost:triangle_6) [
+        (not_ghost:_triangle_6) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_6
+        + id             : mesh:connectivities:_triangle_6
         + size           : 16
         + nb_component   : 6
         + allocated size : 2000
         + memory size    : 47kB
         + values         : {{3, 17, 10, 21, 22, 12}, {0, 20, 13, 23, 24, 15}, {2, 18, 7, 25, 26, 9}, {1, 19, 4, 27, 28, 6}, {13, 16, 17, 29, 30, 31}, {10, 17, 16, 22, 30, 32}, {10, 16, 18, 32, 33, 34}, {13, 20, 16, 24, 35, 29}, {7, 18, 16, 26, 33, 36}, {4, 16, 20, 37, 35, 38}, {4, 19, 16, 28, 39, 37}, {7, 16, 19, 36, 39, 40}, {0, 4, 20, 5, 38, 23}, {3, 13, 17, 14, 31, 21}, {1, 7, 19, 8, 40, 27}, {2, 10, 18, 11, 34, 25}}
        ]
     ]
   ]
  ]
  + mesh [
   Mesh [
    + id                : mesh
    + spatial dimension : 2
    + nodes [
     Vector<double> [
      + id             : mesh:coordinates
      + size           : 41
      + nb_component   : 2
      + allocated size : 2000
      + memory size    : 31kB
      + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}, {0.125, 0.875}, {0.375, 0.875}, {0.125, 0.125}, {0.125, 0.375}, {0.875, 0.875}, {0.875, 0.625}, {0.875, 0.125}, {0.625, 0.125}, {0.25, 0.5}, {0.375, 0.625}, {0.125, 0.625}, {0.5, 0.75}, {0.625, 0.625}, {0.625, 0.875}, {0.375, 0.375}, {0.75, 0.5}, {0.5, 0.25}, {0.375, 0.125}, {0.625, 0.375}, {0.875, 0.375}}
     ]
    ]
    + connectivities [
     ByElementType<akantu::Vector<unsigned int, true>*> [
-        (not_ghost:segment_3) [
+        (not_ghost:_segment_3) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:segment_3
+        + id             : mesh:connectivities:_segment_3
         + size           : 8
         + nb_component   : 3
         + allocated size : 2000
         + memory size    : 23kB
         + values         : {{0, 4, 5}, {4, 1, 6}, {1, 7, 8}, {7, 2, 9}, {2, 10, 11}, {10, 3, 12}, {3, 13, 14}, {13, 0, 15}}
        ]
-        (not_ghost:triangle_6) [
+        (not_ghost:_triangle_6) [
        Vector<unsigned int> [
-        + id             : mesh:connectivities:triangle_6
+        + id             : mesh:connectivities:_triangle_6
         + size           : 16
         + nb_component   : 6
         + allocated size : 2000
         + memory size    : 47kB
         + values         : {{3, 17, 10, 21, 22, 12}, {0, 20, 13, 23, 24, 15}, {2, 18, 7, 25, 26, 9}, {1, 19, 4, 27, 28, 6}, {13, 16, 17, 29, 30, 31}, {10, 17, 16, 22, 30, 32}, {10, 16, 18, 32, 33, 34}, {13, 20, 16, 24, 35, 29}, {7, 18, 16, 26, 33, 36}, {4, 16, 20, 37, 35, 38}, {4, 19, 16, 28, 39, 37}, {7, 16, 19, 36, 39, 40}, {0, 4, 20, 5, 38, 23}, {3, 13, 17, 14, 31, 21}, {1, 7, 19, 8, 40, 27}, {2, 10, 18, 11, 34, 25}}
        ]
     ]
   ]
  ]
 ]
 
 StaticMemory [
  + nb memories : 1
  Memory [
   + memory id   : 0
   + nb vectors  : 7
   Vector<unsigned int> [
-   + id             : mesh:connectivities:segment_3
+   + id             : mesh:connectivities:_segment_3
    + size           : 8
    + nb_component   : 3
    + allocated size : 2000
    + memory size    : 23kB
    + values         : {{0, 4, 5}, {4, 1, 6}, {1, 7, 8}, {7, 2, 9}, {2, 10, 11}, {10, 3, 12}, {3, 13, 14}, {13, 0, 15}}
   ]
   Vector<unsigned int> [
-   + id             : mesh:connectivities:triangle_6
+   + id             : mesh:connectivities:_triangle_6
    + size           : 16
    + nb_component   : 6
    + allocated size : 2000
    + memory size    : 47kB
    + values         : {{3, 17, 10, 21, 22, 12}, {0, 20, 13, 23, 24, 15}, {2, 18, 7, 25, 26, 9}, {1, 19, 4, 27, 28, 6}, {13, 16, 17, 29, 30, 31}, {10, 17, 16, 22, 30, 32}, {10, 16, 18, 32, 33, 34}, {13, 20, 16, 24, 35, 29}, {7, 18, 16, 26, 33, 36}, {4, 16, 20, 37, 35, 38}, {4, 19, 16, 28, 39, 37}, {7, 16, 19, 36, 39, 40}, {0, 4, 20, 5, 38, 23}, {3, 13, 17, 14, 31, 21}, {1, 7, 19, 8, 40, 27}, {2, 10, 18, 11, 34, 25}}
   ]
   Vector<double> [
    + id             : mesh:coordinates
    + size           : 41
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0.5, 0}, {0.25, 0}, {0.75, 0}, {1, 0.5}, {1, 0.25}, {1, 0.75}, {0.5, 1}, {0.75, 1}, {0.25, 1}, {0, 0.5}, {0, 0.75}, {0, 0.25}, {0.5, 0.5}, {0.25, 0.75}, {0.75, 0.75}, {0.75, 0.25}, {0.25, 0.25}, {0.125, 0.875}, {0.375, 0.875}, {0.125, 0.125}, {0.125, 0.375}, {0.875, 0.875}, {0.875, 0.625}, {0.875, 0.125}, {0.625, 0.125}, {0.25, 0.5}, {0.375, 0.625}, {0.125, 0.625}, {0.5, 0.75}, {0.625, 0.625}, {0.625, 0.875}, {0.375, 0.375}, {0.75, 0.5}, {0.5, 0.25}, {0.375, 0.125}, {0.625, 0.375}, {0.875, 0.375}}
   ]
   Vector<double> [
-   + id             : my_fem:jacobians:triangle_6
+   + id             : my_fem:jacobians:_triangle_6
    + size           : 48
    + nb_component   : 1
    + allocated size : 48
    + memory size    : 0.38kB
    + values         : {{0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}, {0.0208333}}
   ]
   Vector<double> [
-   + id             : my_fem:quadrature_points:triangle_6
+   + id             : my_fem:quadrature_points:_triangle_6
    + size           : 3
    + nb_component   : 2
    + allocated size : 2000
    + memory size    : 31kB
    + values         : {{0.166667, 0.166667}, {0.666667, 0.166667}, {0.166667, 0.666667}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes:triangle_6
+   + id             : my_fem:shapes:_triangle_6
    + size           : 48
    + nb_component   : 6
    + allocated size : 48
    + memory size    : 2.2kB
    + values         : {{0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}, {0.222222, -0.111111, -0.111111, 0.444444, 0.111111, 0.444444}, {-0.111111, 0.222222, -0.111111, 0.444444, 0.444444, 0.111111}, {-0.111111, -0.111111, 0.222222, 0.111111, 0.444444, 0.444444}}
   ]
   Vector<double> [
-   + id             : my_fem:shapes_derivatives:triangle_6
+   + id             : my_fem:shapes_derivatives:_triangle_6
    + size           : 48
    + nb_component   : 12
    + allocated size : 48
    + memory size    : 4.5kB
    + values         : {{-3.33333, 3.33333, 0, 1.33333, -0.666667, -0.666667, -1.33333, -9.33333, 1.33333, -1.33333, 4, 6.66667}, {0.666667, -0.666667, 2.96059e-15, -6.66667, -0.666667, -0.666667, -5.33333, 2.66667, 5.33333, 2.66667, -7.40149e-16, 2.66667}, {0.666667, -0.666667, 0, 1.33333, 3.33333, 3.33333, -1.33333, -1.33333, 1.33333, -9.33333, -4, 6.66667}, {-3.33333, -3.33333, -1.33333, 0, 0.666667, -0.666667, 9.33333, -1.33333, 1.33333, 1.33333, -6.66667, 4}, {0.666667, 0.666667, 6.66667, 0, 0.666667, -0.666667, -2.66667, -5.33333, -2.66667, 5.33333, -2.66667, 4.44089e-16}, {0.666667, 0.666667, -1.33333, 0, -3.33333, 3.33333, 1.33333, -1.33333, 9.33333, 1.33333, -6.66667, -4}, {3.33333, 3.33333, 1.33333, 0, -0.666667, 0.666667, -9.33333, 1.33333, -1.33333, -1.33333, 6.66667, -4}, {-0.666667, -0.666667, -6.66667, -2.96059e-15, -0.666667, 0.666667, 2.66667, 5.33333, 2.66667, -5.33333, 2.66667, 7.40149e-16}, {-0.666667, -0.666667, 1.33333, 0, 3.33333, -3.33333, -1.33333, 1.33333, -9.33333, -1.33333, 6.66667, 4}, {3.33333, -3.33333, 0, -1.33333, 0.666667, 0.666667, 1.33333, 9.33333, -1.33333, 1.33333, -4, -6.66667}, {-0.666667, 0.666667, 0, 6.66667, 0.666667, 0.666667, 5.33333, -2.66667, -5.33333, -2.66667, -4.44089e-16, -2.66667}, {-0.666667, 0.666667, 0, -1.33333, -3.33333, -3.33333, 1.33333, 1.33333, -1.33333, 9.33333, 4, -6.66667}, {-3.33333, -3.33333, -0.666667, 0.666667, -3.49779e-12, -1.33333, 4, -6.66667, 1.33333, 1.33333, -1.33333, 9.33333}, {0.666667, 0.666667, 3.33333, -3.33333, -3.49779e-12, -1.33333, -4, -6.66667, 1.33333, 9.33333, -1.33333, 1.33333}, {0.666667, 0.666667, -0.666667, 0.666667, 1.74912e-11, 6.66667, -6.99581e-12, -2.66667, 5.33333, -2.66667, -5.33333, -2.66667}, {3.33333, 3.33333, 1.33333, -3.63028e-12, -0.666667, 0.666667, -9.33333, 1.33333, -1.33333, -1.33333, 6.66667, -4}, {-0.666667, -0.666667, -6.66667, 1.81499e-11, -0.666667, 0.666667, 2.66667, 5.33333, 2.66667, -5.33333, 2.66667, -7.26041e-12}, {-0.666667, -0.666667, 1.33333, -3.63087e-12, 3.33333, -3.33333, -1.33333, 1.33333, -9.33333, -1.33333, 6.66667, 4}, {-3.33333, 3.33333, 0.666667, 0.666667, -1.33333, 3.63087e-12, -6.66667, -4, 1.33333, -1.33333, 9.33333, 1.33333}, {0.666667, -0.666667, -3.33333, -3.33333, -1.33333, 3.63087e-12, -6.66667, 4, 9.33333, -1.33333, 1.33333, 1.33333}, {0.666667, -0.666667, 0.666667, 0.666667, 6.66667, -1.81544e-11, -2.66667, 7.26108e-12, -2.66667, -5.33333, -2.66667, 5.33333}, {-3.33333, 3.33333, 3.49705e-12, 1.33333, -0.666667, -0.666667, -1.33333, -9.33333, 1.33333, -1.33333, 4, 6.66667}, {0.666667, -0.666667, -1.74868e-11, -6.66667, -0.666667, -0.666667, -5.33333, 2.66667, 5.33333, 2.66667, 6.99515e-12, 2.66667}, {0.666667, -0.666667, 3.49765e-12, 1.33333, 3.33333, 3.33333, -1.33333, -1.33333, 1.33333, -9.33333, -4, 6.66667}, {3.33333, -3.33333, -2.81197e-12, -1.33333, 0.666667, 0.666667, 1.33333, 9.33333, -1.33333, 1.33333, -4, -6.66667}, {-0.666667, 0.666667, 1.40554e-11, 6.66667, 0.666667, 0.666667, 5.33333, -2.66667, -5.33333, -2.66667, -5.62261e-12, -2.66667}, {-0.666667, 0.666667, -2.81197e-12, -1.33333, -3.33333, -3.33333, 1.33333, 1.33333, -1.33333, 9.33333, 4, -6.66667}, {3.33333, -3.33333, -0.666667, -0.666667, 1.33333, -2.67845e-12, 6.66667, 4, -1.33333, 1.33333, -9.33333, -1.33333}, {-0.666667, 0.666667, 3.33333, 3.33333, 1.33333, -2.67904e-12, 6.66667, -4, -9.33333, 1.33333, -1.33333, -1.33333}, {-0.666667, 0.666667, -0.666667, -0.666667, -6.66667, 1.33937e-11, 2.66667, -5.35683e-12, 2.66667, 5.33333, 2.66667, -5.33333}, {-3.33333, -3.33333, -1.33333, 2.67815e-12, 0.666667, -0.666667, 9.33333, -1.33333, 1.33333, 1.33333, -6.66667, 4}, {0.666667, 0.666667, 6.66667, -1.33952e-11, 0.666667, -0.666667, -2.66667, -5.33333, -2.66667, 5.33333, -2.66667, 5.35853e-12}, {0.666667, 0.666667, -1.33333, 2.67904e-12, -3.33333, 3.33333, 1.33333, -1.33333, 9.33333, 1.33333, -6.66667, -4}, {3.33333, 3.33333, 0.666667, -0.666667, 2.81182e-12, 1.33333, -4, 6.66667, -1.33333, -1.33333, 1.33333, -9.33333}, {-0.666667, -0.666667, -3.33333, 3.33333, 2.81182e-12, 1.33333, 4, 6.66667, -1.33333, -9.33333, 1.33333, -1.33333}, {-0.666667, -0.666667, 0.666667, -0.666667, -1.40584e-11, -6.66667, 5.62269e-12, 2.66667, -5.33333, 2.66667, 5.33333, 2.66667}, {-3.33333, -3.33333, -0.666667, 0.666667, 0, -1.33333, 4, -6.66667, 1.33333, 1.33333, -1.33333, 9.33333}, {0.666667, 0.666667, 3.33333, -3.33333, 0, -1.33333, -4, -6.66667, 1.33333, 9.33333, -1.33333, 1.33333}, {0.666667, 0.666667, -0.666667, 0.666667, 0, 6.66667, 6.66134e-16, -2.66667, 5.33333, -2.66667, -5.33333, -2.66667}, {-3.33333, 3.33333, 0.666667, 0.666667, -1.33333, 0, -6.66667, -4, 1.33333, -1.33333, 9.33333, 1.33333}, {0.666667, -0.666667, -3.33333, -3.33333, -1.33333, 0, -6.66667, 4, 9.33333, -1.33333, 1.33333, 1.33333}, {0.666667, -0.666667, 0.666667, 0.666667, 6.66667, 0, -2.66667, -6.66134e-16, -2.66667, -5.33333, -2.66667, 5.33333}, {3.33333, -3.33333, -0.666667, -0.666667, 1.33333, 0, 6.66667, 4, -1.33333, 1.33333, -9.33333, -1.33333}, {-0.666667, 0.666667, 3.33333, 3.33333, 1.33333, 0, 6.66667, -4, -9.33333, 1.33333, -1.33333, -1.33333}, {-0.666667, 0.666667, -0.666667, -0.666667, -6.66667, 0, 2.66667, 6.66134e-16, 2.66667, 5.33333, 2.66667, -5.33333}, {3.33333, 3.33333, 0.666667, -0.666667, 0, 1.33333, -4, 6.66667, -1.33333, -1.33333, 1.33333, -9.33333}, {-0.666667, -0.666667, -3.33333, 3.33333, 0, 1.33333, 4, 6.66667, -1.33333, -9.33333, 1.33333, -1.33333}, {-0.666667, -0.666667, 0.666667, -0.666667, 0, -6.66667, -6.66134e-16, 2.66667, -5.33333, 2.66667, 5.33333, 2.66667}}
   ]
   + total size  : 1.4e+02kB
  ]
  + total size  : 1.4e+02kB
 ]
 
diff --git a/test/test_model/test_solid_mechanics_model/CMakeLists.txt b/test/test_model/test_solid_mechanics_model/CMakeLists.txt
index be61bc048..dd26cd1ae 100644
--- a/test/test_model/test_solid_mechanics_model/CMakeLists.txt
+++ b/test/test_model/test_solid_mechanics_model/CMakeLists.txt
@@ -1,135 +1,140 @@
 #===============================================================================
 # @file   CMakeLists.txt
 # @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
 # @date   Fri Jun 11 09:46:59 2010
 #
 # @section LICENSE
 #
 # Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
 # Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
 #
 # Akantu is free  software: you can redistribute it and/or  modify it under the
 # terms  of the  GNU Lesser  General Public  License as  published by  the Free
 # Software Foundation, either version 3 of the License, or (at your option) any
 # later version.
 #
 # Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 # A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
 # details.
 #
 # You should  have received  a copy  of the GNU  Lesser General  Public License
 # along with Akantu. If not, see <http://www.gnu.org/licenses/>.
 #
 # @section DESCRIPTION
 #
 #===============================================================================
 
 add_akantu_test(test_materials "test_materials")
 add_akantu_test(patch_tests "patch_tests")
 add_akantu_test(test_cohesive "cohesive_test")
 if(AKANTU_CONTACT)
   add_akantu_test(test_contact "test_contact")
 endif(AKANTU_CONTACT)
 
 #===============================================================================
 add_mesh(test_solid_mechanics_model_square_mesh square.geo 2 1)
 add_mesh(test_solid_mechanics_model_circle_mesh1 circle.geo 2 1 OUTPUT circle1.msh)
 add_mesh(test_solid_mechanics_model_circle_mesh2 circle.geo 2 2 OUTPUT circle2.msh)
 
-register_test(test_solid_mechanics_model_square test_solid_mechanics_model_square.cc)
-add_dependencies(test_solid_mechanics_model_square
-  test_solid_mechanics_model_square_mesh
+register_test_new(test_solid_mechanics_model_square
+  SOURCES test_solid_mechanics_model_square.cc
+  DEPENDENCIES test_solid_mechanics_model_square_mesh
+  FILES_TO_COPY material.dat test_cst_energy.pl
+  DIRECTORIES_TO_CREATE paraview
   )
 
-register_test(test_solid_mechanics_model_circle_2 test_solid_mechanics_model_circle_2.cc)
-add_dependencies(test_solid_mechanics_model_circle_2
-  test_solid_mechanics_model_circle_mesh2)
+register_test_new(test_solid_mechanics_model_circle_2
+  SOURCES test_solid_mechanics_model_circle_2.cc
+  DEPENDENCIES test_solid_mechanics_model_circle_mesh2
+  FILES_TO_COPY material.dat
+  DIRECTORIES_TO_CREATE paraview
+  )
 
 #===============================================================================
 add_mesh(test_bar_traction_2d_mesh1 bar.geo 2 1 OUTPUT bar1.msh)
 add_mesh(test_bar_traction_2d_mesh2 bar.geo 2 2 OUTPUT bar2.msh)
 add_mesh(test_bar_traction_2d_mesh_structured1 bar_structured.geo 2 1 OUTPUT bar_structured1.msh)
 
 register_test(test_solid_mechanics_model_bar_traction2d
   test_solid_mechanics_model_bar_traction2d.cc)
 add_dependencies(test_solid_mechanics_model_bar_traction2d test_bar_traction_2d_mesh1 test_bar_traction_2d_mesh2)
 
 register_test(test_solid_mechanics_model_bar_traction2d_structured
   test_solid_mechanics_model_bar_traction2d_structured.cc)
 add_dependencies(test_solid_mechanics_model_bar_traction2d_structured test_bar_traction_2d_mesh_structured1)
 
 register_test(test_solid_mechanics_model_bar_traction2d_structured_pbc
   test_solid_mechanics_model_bar_traction2d_structured_pbc.cc)
 add_dependencies(test_solid_mechanics_model_bar_traction2d_structured_pbc test_bar_traction_2d_mesh_structured1)
 
 if(AKANTU_SCOTCH AND AKANTU_MPI)
   register_test(test_solid_mechanics_model_bar_traction2d_parallel
     test_solid_mechanics_model_bar_traction2d_parallel.cc)
   add_dependencies(test_solid_mechanics_model_bar_traction2d_parallel
     test_bar_traction_2d_mesh2)
 
   add_mesh(test_solid_mechanics_model_segment_mesh segment.geo 1 2)
 
   register_test(test_solid_mechanics_model_segment_parallel
     test_solid_mechanics_model_segment_parallel.cc)
   add_dependencies(test_solid_mechanics_model_segment_parallel
     test_solid_mechanics_model_segment_mesh)
 endif()
 
 if(AKANTU_MUMPS)
   register_test(test_solid_mechanics_model_bar_traction2d_mass_not_lumped
     test_solid_mechanics_model_bar_traction2d_mass_not_lumped.cc)
   add_dependencies(test_solid_mechanics_model_bar_traction2d_mass_not_lumped test_bar_traction_2d_mesh1 test_bar_traction_2d_mesh2)
 
   add_mesh(test_implicit_mesh1 square_implicit.geo 2 1 OUTPUT square_implicit1.msh)
   add_mesh(test_implicit_mesh2 square_implicit.geo 2 2 OUTPUT square_implicit2.msh)
   register_test(test_solid_mechanics_model_implicit_2d test_solid_mechanics_model_implicit_2d.cc)
   add_dependencies(test_solid_mechanics_model_implicit_2d test_implicit_mesh1 test_implicit_mesh2)
 
   add_mesh(test_solid_mechanics_model_segment_mesh1 segment.geo 1 1 OUTPUT segment1.msh)
   register_test(test_solid_mechanics_model_implicit_1d test_solid_mechanics_model_implicit_1d.cc)
   add_dependencies(test_solid_mechanics_model_implicit_1d test_solid_mechanics_model_segment_mesh1)
 
   add_mesh(test_implicit_beam_2d_1 beam_2d.geo 2 1 OUTPUT beam_2d_lin.msh)
   add_mesh(test_implicit_beam_2d_2 beam_2d.geo 2 2 OUTPUT beam_2d_quad.msh)
   add_mesh(test_implicit_beam_3d_2 beam_3d.geo 3 2 OUTPUT beam_3d_quad.msh)
   add_mesh(test_implicit_beam_3d_1 beam_3d.geo 3 1 OUTPUT beam_3d_lin.msh)
   register_test(test_solid_mechanics_model_implicit_dynamic_2d
     test_solid_mechanics_model_implicit_dynamic_2d.cc)
   add_dependencies(test_solid_mechanics_model_implicit_dynamic_2d test_implicit_beam_2d_1 test_implicit_beam_2d_2 test_implicit_beam_3d_2 test_implicit_beam_3d_1)
   copy_files(test_solid_mechanics_model_implicit_dynamic_2d material_implicit_dynamic.dat)
 endif()
 
 #===============================================================================
 if(USING_SCOTCH)
   add_mesh(test_pbc_parallel_mesh square_structured.geo 2 1 OUTPUT square_structured.msh)
 
   register_test(test_solid_mechanics_model_pbc_parallel
     test_solid_mechanics_model_pbc_parallel.cc)
   add_dependencies(test_solid_mechanics_model_pbc_parallel test_pbc_parallel_mesh)
 endif()
 
 #===============================================================================
 add_mesh(test_cube3d_mesh1 cube.geo 3 1 OUTPUT cube1.msh)
 add_mesh(test_cube3d_mesh2 cube.geo 3 2 OUTPUT cube2.msh)
 add_mesh(test_cube3d_mesh_structured cube_structured.geo 3 1 OUTPUT cube_structured.msh)
 
 register_test(test_solid_mechanics_model_cube3d
   test_solid_mechanics_model_cube3d.cc)
 add_dependencies(test_solid_mechanics_model_cube3d test_cube3d_mesh1)
 
 register_test(test_solid_mechanics_model_cube3d_tetra10
   test_solid_mechanics_model_cube3d_tetra10.cc)
 add_dependencies(test_solid_mechanics_model_cube3d_tetra10 test_cube3d_mesh2)
 
 register_test(test_solid_mechanics_model_cube3d_pbc
   test_solid_mechanics_model_cube3d_pbc.cc)
 add_dependencies(test_solid_mechanics_model_cube3d_pbc test_cube3d_mesh_structured)
 
 
 #===============================================================================
 file(COPY material.dat DESTINATION .)
 file(COPY test_cst_energy.pl DESTINATION .)
 
 file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/paraview)
diff --git a/test/test_model/test_solid_mechanics_model/patch_tests/implicit/patch_test_implicit.cc b/test/test_model/test_solid_mechanics_model/patch_tests/implicit/patch_test_implicit.cc
index 3782a39b2..5ecf65c61 100644
--- a/test/test_model/test_solid_mechanics_model/patch_tests/implicit/patch_test_implicit.cc
+++ b/test/test_model/test_solid_mechanics_model/patch_tests/implicit/patch_test_implicit.cc
@@ -1,235 +1,235 @@
 /**
  * @file   test_check_stress.cc
  * @author David Kammer <david.kammer@epfl.ch>
  * @date   Wed Feb 16 13:56:42 2011
  *
  * @brief  patch test for elastic material in solid mechanics model
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 
 #include "aka_common.hh"
 #include "mesh.hh"
 #include "mesh_io_msh.hh"
 #include "mesh_utils.hh"
 #include "solid_mechanics_model.hh"
 #include "material.hh"
 #include "element_class.hh"
 
 using namespace akantu;
 
 Real alpha [3][4] = { { 0.01, 0.02, 0.03, 0.04 },
 		      { 0.05, 0.06, 0.07, 0.08 },
 		      { 0.09, 0.10, 0.11, 0.12 } };
 
 /* -------------------------------------------------------------------------- */
 template<ElementType type, bool is_plane_strain>
 static types::RMatrix prescribed_strain() {
   UInt spatial_dimension = ElementClass<type>::getSpatialDimension();
   types::RMatrix strain(spatial_dimension, spatial_dimension);
 
   for (UInt i = 0; i < spatial_dimension; ++i) {
     for (UInt j = 0; j < spatial_dimension; ++j) {
       strain(i, j) = alpha[i][j + 1];
     }
   }
   return strain;
 }
 
 template<ElementType type, bool is_plane_strain>
 static types::RMatrix prescribed_stress() {
   UInt spatial_dimension = ElementClass<type>::getSpatialDimension();
   types::RMatrix stress(spatial_dimension, spatial_dimension);
 
   //plane strain in 2d
   types::RMatrix strain(spatial_dimension, spatial_dimension);
   types::RMatrix pstrain; pstrain = prescribed_strain<type, is_plane_strain>();
   Real nu = 0.3;
   Real E  = 2.1e11;
   Real trace = 0;
 
   /// symetric part of the strain tensor
   for (UInt i = 0; i < spatial_dimension; ++i)
     for (UInt j = 0; j < spatial_dimension; ++j)
       strain(i,j) = 0.5 * (pstrain(i, j) + pstrain(j, i));
 
 
   for (UInt i = 0; i < spatial_dimension; ++i) trace += strain(i,i);
 
   Real lambda   = nu * E / ((1 + nu) * (1 - 2*nu));
   Real mu       = E / (2 * (1 + nu));
 
   if(!is_plane_strain) {
     std::cout << "toto" << std::endl;
     lambda = nu * E / (1 - nu*nu);
   }
 
   if(spatial_dimension == 1) {
     stress(0, 0) = E * strain(0, 0);
   } else {
     for (UInt i = 0; i < spatial_dimension; ++i)
       for (UInt j = 0; j < spatial_dimension; ++j) {
 	stress(i, j) =  (i == j)*lambda*trace + 2*mu*strain(i, j);
       }
   }
 
   return stress;
 }
 
 /* -------------------------------------------------------------------------- */
 
 /* -------------------------------------------------------------------------- */
 int main(int argc, char *argv[])
 {
   initialize(argc, argv);
 
   UInt dim = ElementClass<TYPE>::getSpatialDimension();
   const ElementType element_type = TYPE;
 
   /// load mesh
   Mesh my_mesh(dim);
   MeshIOMSH mesh_io;
 
   std::stringstream filename; filename << TYPE << ".msh";
   mesh_io.read(filename.str(), my_mesh);
 
   //  MeshUtils::purifyMesh(my_mesh);
 
   UInt nb_nodes = my_mesh.getNbNodes();
 
   /// declaration of model
   SolidMechanicsModel  my_model(my_mesh);
   /// model initialization
   if(PLANE_STRAIN)
     my_model.initFull("material_check_stress_plane_strain.dat", _static);
   else
     my_model.initFull("material_check_stress_plane_stress.dat", _static);
 
   const Vector<Real> & coordinates = my_mesh.getNodes();
   Vector<Real> & displacement = my_model.getDisplacement();
   Vector<bool> & boundary = my_model.getBoundary();
 
   MeshUtils::buildFacets(my_mesh);
   MeshUtils::buildSurfaceID(my_mesh);
 
   CSR<UInt> surface_nodes;
   MeshUtils::buildNodesPerSurface(my_mesh, surface_nodes);
 
   for (UInt s = 0; s < surface_nodes.getNbRows(); ++s) {
     CSR<UInt>::iterator snode = surface_nodes.begin(s);
     for(; snode != surface_nodes.end(s); ++snode) {
       UInt n = *snode;
       std::cout << "Node " << n << std::endl;
       for (UInt i = 0; i < dim; ++i) {
 	displacement(n, i) = alpha[i][0];
 	for (UInt j = 0; j < dim; ++j) {
 	  displacement(n, i) += alpha[i][j + 1] * coordinates(n, j);
 	}
 	boundary(n, i) = true;
       }
     }
   }
 
   /* ------------------------------------------------------------------------ */
   /* Main loop                                                                */
   /* ------------------------------------------------------------------------ */
   akantu::UInt count = 0;
   my_model.assembleStiffnessMatrix();
   my_model.updateResidual();
 
   my_model.getStiffnessMatrix().saveMatrix("K.mtx");
 
   while(!my_model.testConvergenceResidual(2e-4) && (count < 100)) {
     std::cout << "Iter : " << ++count << std::endl;
     my_model.solveStatic();
     my_model.updateResidual();
   }
 
-  my_model.computeStresses();
-
   if(count > 1) {
     std::cerr << "The code did not converge in 1 step !" << std::endl;
     return EXIT_FAILURE;
   }
 
+  my_model.computeStresses();
+
   /* ------------------------------------------------------------------------ */
   /* Checks                                                                   */
   /* ------------------------------------------------------------------------ */
   UInt nb_quadrature_points = my_model.getFEM().getNbQuadraturePoints(element_type);
 
   Vector<Real> & stress_vect = const_cast<Vector<Real> &>(my_model.getMaterial(0).getStress(element_type));
   Vector<Real> & strain_vect = const_cast<Vector<Real> &>(my_model.getMaterial(0).getStrain(element_type));
 
   Vector<Real>::iterator<types::RMatrix> stress_it = stress_vect.begin(dim, dim);
   Vector<Real>::iterator<types::RMatrix> strain_it = strain_vect.begin(dim, dim);
 
   types::RMatrix presc_stress; presc_stress = prescribed_stress<TYPE, PLANE_STRAIN>();
   types::RMatrix presc_strain; presc_strain = prescribed_strain<TYPE, PLANE_STRAIN>();
 
   UInt nb_element = my_mesh.getNbElement(TYPE);
 
   for (UInt el = 0; el < nb_element; ++el) {
     for (UInt q = 0; q < nb_quadrature_points; ++q) {
       types::RMatrix & stress = *stress_it;
       types::RMatrix & strain = *strain_it;
 
       for (UInt i = 0; i < dim; ++i) {
 	for (UInt j = 0; j < dim; ++j) {
 	  if(!(std::abs(strain(i, j) - presc_strain(i, j)) < 2e-15)) {
 	    std::cerr << "strain[" << i << "," << j << "] = " << strain(i, j) << " but should be = " << presc_strain(i, j) << " (-" << std::abs(strain(i, j) - presc_strain(i, j)) << ") [el : " << el<< " - q : " << q << "]" << std::endl;
 	    std::cerr << "computed : " << strain << "reference : " << presc_strain << std::endl;
 	    return EXIT_FAILURE;
 	  }
 
 	  if(!(std::abs(stress(i, j) - presc_stress(i, j)) < 1e-3)) {
 	    std::cerr << "stress[" << i << "," << j << "] = " << stress(i, j) << " but should be = " << presc_stress(i, j) << " (-" << std::abs(stress(i, j) - presc_stress(i, j)) << ") [el : " << el<< " - q : " << q << "]" << std::endl;
 	    std::cerr << "computed : " << stress << "reference : " << presc_stress << std::endl;
 	    return EXIT_FAILURE;
 	  }
 	}
       }
 
       ++stress_it;
       ++strain_it;
     }
   }
 
 
   for (UInt n = 0; n < nb_nodes; ++n) {
     for (UInt i = 0; i < dim; ++i) {
       Real disp = alpha[i][0];
       for (UInt j = 0; j < dim; ++j) {
 	disp += alpha[i][j + 1] * coordinates(n, j);
       }
 
       if(!(std::abs(displacement(n,i) - disp) < 2e-15)) {
 	std::cerr << "displacement(" << n << ", " << i <<")=" << displacement(n,i) << " should be equal to " << disp <<  std::endl;
 	return EXIT_FAILURE;
       }
     }
   }
 
   finalize();
 
   return EXIT_SUCCESS;
 }
 
diff --git a/test/test_model/test_solid_mechanics_model/test_solid_mechanics_model_bar_traction2d_parallel.cc b/test/test_model/test_solid_mechanics_model/test_solid_mechanics_model_bar_traction2d_parallel.cc
index efd9bd0ec..935f89916 100644
--- a/test/test_model/test_solid_mechanics_model/test_solid_mechanics_model_bar_traction2d_parallel.cc
+++ b/test/test_model/test_solid_mechanics_model/test_solid_mechanics_model_bar_traction2d_parallel.cc
@@ -1,169 +1,171 @@
 /**
  * @file   test_solid_mechanics_model.cc
  * @author Nicolas Richart <nicolas.richart@epfl.ch>
  * @date   Tue Jul 27 14:34:13 2010
  *
  * @brief  test of the class SolidMechanicsModel
  *
  * @section LICENSE
  *
  * Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
  * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
  *
  * Akantu is free  software: you can redistribute it and/or  modify it under the
  * terms  of the  GNU Lesser  General Public  License as  published by  the Free
  * Software Foundation, either version 3 of the License, or (at your option) any
  * later version.
  *
  * Akantu is  distributed in the  hope that it  will be useful, but  WITHOUT ANY
  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  * A  PARTICULAR PURPOSE. See  the GNU  Lesser General  Public License  for more
  * details.
  *
  * You should  have received  a copy  of the GNU  Lesser General  Public License
  * along with Akantu. If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
 /* -------------------------------------------------------------------------- */
 #include <limits>
 #include <fstream>
 
 /* -------------------------------------------------------------------------- */
 #include "aka_common.hh"
 #include "mesh.hh"
 #include "mesh_io_msh.hh"
 #include "solid_mechanics_model.hh"
 #include "material.hh"
 #include "static_communicator.hh"
 #include "mesh_partition_scotch.hh"
 
+using namespace akantu;
+
 /* -------------------------------------------------------------------------- */
 #ifdef AKANTU_USE_IOHELPER
 #  include "dumper_iohelper.hh"
 #endif //AKANTU_USE_IOHELPER
 
 int main(int argc, char *argv[])
 {
   akantu::UInt spatial_dimension = 2;
   akantu::UInt max_steps = 5000;
   akantu::Real time_factor = 0.8;
 
   akantu::initialize(argc, argv);
 
   akantu::Mesh mesh(spatial_dimension);
 
   akantu::StaticCommunicator & comm =
     akantu::StaticCommunicator::getStaticCommunicator();
   akantu::Int psize = comm.getNbProc();
   akantu::Int prank = comm.whoAmI();
 
   akantu::debug::setDebugLevel(akantu::dblWarning);
 
   akantu::MeshPartition * partition = NULL;
   if(prank == 0) {
     akantu::MeshIOMSH mesh_io;
     mesh_io.read("bar2.msh", mesh);
     partition = new akantu::MeshPartitionScotch(mesh, spatial_dimension);
     partition->partitionate(psize);
   }
 
   /* ------------------------------------------------------------------------ */
   /* Initialization                                                           */
   /* ------------------------------------------------------------------------ */
   akantu::SolidMechanicsModel model(mesh);
 
   /// model initialization
   model.initParallel(partition);
 
   model.initFull("material.dat");
 
   if(prank == 0)
     std::cout << model.getMaterial(0) << std::endl;
 
   model.assembleMassLumped();
 
 
   akantu::UInt nb_nodes = mesh.getNbNodes();
 
   /* ------------------------------------------------------------------------ */
   /* Boundary + initial conditions                                            */
   /* ------------------------------------------------------------------------ */
   akantu::Real eps = 1e-16;
   const akantu::Vector<akantu::Real> & pos = mesh.getNodes();
   akantu::Vector<akantu::Real> & disp = model.getDisplacement();
   akantu::Vector<bool> & boun = model.getBoundary();
 
   for (akantu::UInt i = 0; i < nb_nodes; ++i) {
     if(pos(i, 0) >= 9.) disp(i, 0) = (pos(i, 0) - 9) / 100.;
     if(pos(i) <= eps)   boun(i, 0) = true;
     if(pos(i, 1) <= eps || pos(i, 1) >= 1 - eps ) boun(i, 1) = true;
   }
 
   model.synchronizeBoundaries();
 
   model.updateResidual();
 
   model.setBaseName("bar2d_parallel");
   model.addDumpField("displacement");
   model.addDumpField("mass"        );
   model.addDumpField("velocity"    );
   model.addDumpField("acceleration");
   model.addDumpField("force"       );
   model.addDumpField("residual"    );
   model.addDumpField("stress"      );
   model.addDumpField("strain"      );
-  model.addDumpFieldExternal("partition",
-			     new akantu::DumperIOHelper::ElementalField<akantu::UInt>(partition->getPartitions(), spatial_dimension));
+  model.addDumpFieldExternal("partitions",
+			     new akantu::DumperIOHelper::ElementalField<akantu::UInt>(partition->getPartitions(), spatial_dimension, _not_ghost));
   model.dump();
 
   std::ofstream energy;
   if(prank == 0) {
     energy.open("energy_bar_2d_para.csv");
     energy << "id,rtime,epot,ekin,tot" << std::endl;
   }
 
   double total_time = 0.;
 
   /// Setting time step
   akantu::Real time_step = model.getStableTimeStep() * time_factor;
   if(prank == 0)
     std::cout << "Time Step = " << time_step << "s" << std::endl;
   model.setTimeStep(time_step);
 
   /* ------------------------------------------------------------------------ */
   /* Main loop                                                                */
   /* ------------------------------------------------------------------------ */
   for(akantu::UInt s = 1; s <= max_steps; ++s) {
 
     double start = MPI_Wtime();
 
     model.explicitPred();
 
     model.updateResidual();
     model.updateAcceleration();
     model.explicitCorr();
 
     double end = MPI_Wtime();
 
     akantu::Real epot = model.getPotentialEnergy();
     akantu::Real ekin = model.getKineticEnergy();
 
     total_time += end - start;
 
     if(prank == 0 && (s % 100 == 0)) {
       std::cerr << "passing step " << s << "/" << max_steps << std::endl;
     }
     energy << s << "," << (s-1)*time_step << "," << epot << "," << ekin << "," << epot + ekin
 	     << std::endl;
 
     if(s % 100 == 0) {
       model.dump();
     }
   }
 
   if(prank == 0) std::cout << "Time : " << psize << " " << total_time / max_steps << " " << total_time << std::endl;
 
   akantu::finalize();
   return EXIT_SUCCESS;
 }