From 3ca1652cca9ad493764298f32a8fbc5dee6fd95b Mon Sep 17 00:00:00 2001 From: osu1191 Date: Sun, 20 Apr 2025 17:13:32 -0400 Subject: [PATCH 01/12] pylibefp update --- CMakeLists.txt | 38 +- cpp.sh | 9 + gil_module.sh | 3 + make_conda_env.md | 9 + og_CMakeLists.txt | 286 +++ python/CMakeLists.txt | 3 - python/core.cc | 86 +- python/core.cc_og | 686 +++++++ python/py.sh | 8 + python/up_core.cc | 704 +++++++ python/up_wrapper.py | 1761 +++++++++++++++++ python/wrapper.py | 183 +- python/wrapper.py_og | 1708 ++++++++++++++++ setup.sh | 33 +- src/efp.c | 69 +- src/efp.h | 6 + .../conftest.cpython-312-pytest-8.3.5.pyc | Bin 0 -> 823 bytes .../ene.cpython-312-pytest-8.3.5.pyc | Bin 0 -> 1142 bytes .../pair2.cpython-312-pytest-8.3.5.pyc | Bin 0 -> 1328 bytes .../__pycache__/systems.cpython-312.pyc | Bin 0 -> 11328 bytes .../test_efpefp.cpython-312-pytest-8.3.5.pyc | Bin 0 -> 49431 bytes .../test_libefp.cpython-312-pytest-8.3.5.pyc | Bin 0 -> 40212 bytes .../test_lori.cpython-312-pytest-8.3.5.pyc | Bin 0 -> 1158 bytes tests/pytests/atoms.py | 26 + tests/pytests/check_total.py | 28 + tests/pytests/efp_1.py | 105 + tests/pytests/efp_2.py | 84 + tests/pytests/efp_3.py | 88 + tests/pytests/ene.py | 28 + tests/pytests/mehh.py | 29 + tests/pytests/pair.py | 33 + tests/pytests/pair2.py | 34 + tests/pytests/pbc.py | 40 + tests/pytests/symm.py | 25 + tests/pytests/systems.py | 16 +- tests/pytests/test_dict.py | 8 +- tests/pytests/test_efpefp.py | 2 +- tests/pytests/test_libefp.py | 6 +- tests/pytests/test_lori.py | 27 + tests/pytests/test_psi.py | 16 +- tests/pytests/total_1.py | 50 + 41 files changed, 6130 insertions(+), 107 deletions(-) create mode 100755 cpp.sh create mode 100644 gil_module.sh create mode 100644 make_conda_env.md create mode 100644 og_CMakeLists.txt create mode 100644 python/core.cc_og create mode 100755 python/py.sh create mode 100644 python/up_core.cc create mode 100644 python/up_wrapper.py create mode 100644 python/wrapper.py_og create mode 100644 tests/pytests/__pycache__/conftest.cpython-312-pytest-8.3.5.pyc create mode 100644 tests/pytests/__pycache__/ene.cpython-312-pytest-8.3.5.pyc create mode 100644 tests/pytests/__pycache__/pair2.cpython-312-pytest-8.3.5.pyc create mode 100644 tests/pytests/__pycache__/systems.cpython-312.pyc create mode 100644 tests/pytests/__pycache__/test_efpefp.cpython-312-pytest-8.3.5.pyc create mode 100644 tests/pytests/__pycache__/test_libefp.cpython-312-pytest-8.3.5.pyc create mode 100644 tests/pytests/__pycache__/test_lori.cpython-312-pytest-8.3.5.pyc create mode 100644 tests/pytests/atoms.py create mode 100644 tests/pytests/check_total.py create mode 100644 tests/pytests/efp_1.py create mode 100644 tests/pytests/efp_2.py create mode 100644 tests/pytests/efp_3.py create mode 100644 tests/pytests/ene.py create mode 100644 tests/pytests/mehh.py create mode 100644 tests/pytests/pair.py create mode 100644 tests/pytests/pair2.py create mode 100644 tests/pytests/pbc.py create mode 100644 tests/pytests/symm.py create mode 100644 tests/pytests/test_lori.py create mode 100644 tests/pytests/total_1.py diff --git a/CMakeLists.txt b/CMakeLists.txt index 5d2431d0..e26ee451 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,23 +4,7 @@ if (POLICY CMP0135) endif () # extract project version from source - -if(NOT DEFINED torch_switch) - if(DEFINED ENV{TORCH_SWITCH}) - set(torch_switch $ENV{TORCH_SWITCH}) - else() - set(torch_switch OFF) - endif() -endif() - -option(torch_switch "Enable Torch library integration" ${TORCH_SWITCH}) - -if(torch_switch) - add_definitions(-DTORCH_SWITCH) -endif() - file(STRINGS "src/efp.h" _src_efp_h REGEX "LIBEFP_VERSION_STRING") - if (${_src_efp_h} MATCHES "^#define LIBEFP_VERSION_STRING \"(.*)\"$") set(_libefp_VERSION ${CMAKE_MATCH_1}) endif() @@ -29,17 +13,9 @@ project( libefp # someday when Makefile dropped, configure efp.h.in from cmake VERSION ${_libefp_VERSION} - LANGUAGES C CXX + LANGUAGES C ) - -#set(CMAKE_INSTALL_PREFIX "${PROJECT_SOURCE_DIR}/installed" CACHE PATH "Installation directory" FORCE) -#set(CMAKE_INSTALL_PREFIX "${LIBEFP_DIR}" CACHE PATH "Installation directory") -set(CMAKE_INSTALL_LIBDIR "lib") - -### LVS needs this on MacOS silicon -set(CMAKE_CXX_STANDARD 17) - -set(libefp_AUTHORS "Ilya A. Kaliman, Lori A. Burns, Suranjan Paul, Dmitry Morozov, Carlos H. Borca, Yen (Terri) Bui, Yongbin Kim, Lyudmila V. Slipchenko") +set(libefp_AUTHORS "Ilya A. Kaliman, Lori A. Burns, Dmitry Morozov, Carlos H. Borca, Yen (Terri) Bui, Yongbin Kim, Lyudmila V. Slipchenko") set(libefp_DESCRIPTION "Parallel implementation of the Effective Fragment Potential method") set(libefp_URL "https://github.com/libefp2/libefp") set(libefp_LICENSE "BSD 2-clause") @@ -48,7 +24,6 @@ list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) set(efp libefp) # Namespace - # TODO: Remove when requiring cmake >= 3.21 # from LecrisUT/CMake-Template if (NOT DEFINED ${efp}_IS_TOP_LEVEL) if (CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME) @@ -79,10 +54,7 @@ option_with_default(BUILD_FPIC "Libraries will be compiled with position indepen if((${BUILD_SHARED_LIBS}) AND NOT ${BUILD_FPIC}) message(FATAL_ERROR "BUILD_SHARED_LIBS ON and BUILD_FPIC OFF are incompatible, as shared library requires position independent code") endif() - -### This option turns OPENMP ON and OFF! -option_with_print(LIBEFP_ENABLE_OPENMP "Enable OpenMP parallelization. Psi4 wants OFF" ON) - +option_with_print(LIBEFP_ENABLE_OPENMP "Enable OpenMP parallelization. Psi4 wants OFF" OFF) option_with_print(ENABLE_GENERIC "Enable mostly static linking in shared library" OFF) include(xhost) # defines: option(ENABLE_XHOST "Enable processor-specific optimization" ON) option_with_print(FRAGLIB_UNDERSCORE_L "DEPRECATED: Installed fragment library has names ending in _L. Psi4 wants OFF" ON) @@ -160,7 +132,6 @@ set(raw_sources_list util.c xr.c ) - set(src_prefix "src/") string(REGEX REPLACE "([^;]+)" "${src_prefix}\\1" sources_list "${raw_sources_list}") @@ -232,9 +203,6 @@ install(FILES fraglib/makefp.inp install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/fraglib DESTINATION ${CMAKE_INSTALL_DATADIR}/${efp}) -install(DIRECTORY ${PROJECT_SOURCE_DIR}/nnlib - DESTINATION ${CMAKE_INSTALL_DATADIR}/${efp}) - # headers NOT namespace protected install(FILES ${src_prefix}/efp.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) diff --git a/cpp.sh b/cpp.sh new file mode 100755 index 00000000..4797f976 --- /dev/null +++ b/cpp.sh @@ -0,0 +1,9 @@ +rm -rf build +rm -rf installed + +cmake -S . -B build \ + -D CMAKE_INSTALL_PREFIX=/scratch/gilbreth/paulsk/backup/branch_pylib/libefp/installed \ + -D BUILD_SHARED_LIBS=ON \ + -D LIBEFP_ENABLE_OPENMP=ON + +cmake --build build --target install diff --git a/gil_module.sh b/gil_module.sh new file mode 100644 index 00000000..8fb5ed94 --- /dev/null +++ b/gil_module.sh @@ -0,0 +1,3 @@ +module load gcc/13.3.0 +module load netlib-lapack/3.11.0 +module load openblas/0.3.27 diff --git a/make_conda_env.md b/make_conda_env.md new file mode 100644 index 00000000..f44b3da4 --- /dev/null +++ b/make_conda_env.md @@ -0,0 +1,9 @@ + + +### make sure torch_switch = OFF, in setup.sh ######################### + +conda create -n libefp-dev python=3.12 -y + +conda activate libefp-dev + +conda install -c conda-forge cmake ninja pybind11 pytest blas-devel numpy c-compiler cxx-compiler fortran-compiler qcelemental -y diff --git a/og_CMakeLists.txt b/og_CMakeLists.txt new file mode 100644 index 00000000..5d2431d0 --- /dev/null +++ b/og_CMakeLists.txt @@ -0,0 +1,286 @@ +cmake_minimum_required(VERSION 3.16) +if (POLICY CMP0135) + cmake_policy(SET CMP0135 NEW) +endif () + +# extract project version from source + +if(NOT DEFINED torch_switch) + if(DEFINED ENV{TORCH_SWITCH}) + set(torch_switch $ENV{TORCH_SWITCH}) + else() + set(torch_switch OFF) + endif() +endif() + +option(torch_switch "Enable Torch library integration" ${TORCH_SWITCH}) + +if(torch_switch) + add_definitions(-DTORCH_SWITCH) +endif() + +file(STRINGS "src/efp.h" _src_efp_h REGEX "LIBEFP_VERSION_STRING") + +if (${_src_efp_h} MATCHES "^#define LIBEFP_VERSION_STRING \"(.*)\"$") + set(_libefp_VERSION ${CMAKE_MATCH_1}) +endif() + +project( + libefp + # someday when Makefile dropped, configure efp.h.in from cmake + VERSION ${_libefp_VERSION} + LANGUAGES C CXX + ) + +#set(CMAKE_INSTALL_PREFIX "${PROJECT_SOURCE_DIR}/installed" CACHE PATH "Installation directory" FORCE) +#set(CMAKE_INSTALL_PREFIX "${LIBEFP_DIR}" CACHE PATH "Installation directory") +set(CMAKE_INSTALL_LIBDIR "lib") + +### LVS needs this on MacOS silicon +set(CMAKE_CXX_STANDARD 17) + +set(libefp_AUTHORS "Ilya A. Kaliman, Lori A. Burns, Suranjan Paul, Dmitry Morozov, Carlos H. Borca, Yen (Terri) Bui, Yongbin Kim, Lyudmila V. Slipchenko") +set(libefp_DESCRIPTION "Parallel implementation of the Effective Fragment Potential method") +set(libefp_URL "https://github.com/libefp2/libefp") +set(libefp_LICENSE "BSD 2-clause") + +list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) + +set(efp libefp) # Namespace + + +# TODO: Remove when requiring cmake >= 3.21 # from LecrisUT/CMake-Template +if (NOT DEFINED ${efp}_IS_TOP_LEVEL) + if (CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME) + set(PROJECT_IS_TOP_LEVEL ON) + else () + set(PROJECT_IS_TOP_LEVEL OFF) + endif () + set(${efp}_IS_TOP_LEVEL ${PROJECT_IS_TOP_LEVEL}) +endif () + +################################### Options #################################### +include(psi4OptionsTools) +if (${efp}_IS_TOP_LEVEL) + if (DEFINED ENABLE_OPENMP) + message(FATAL_ERROR "Use LIBEFP_ENABLE_OPENMP instead of ENABLE_OPENMP.") + endif() + if (DEFINED FRAGLIB_UNDERSCORE_L) + message(WARNING "Using FRAGLIB_UNDERSCORE_L=OFF is deprecated and may be removed as soon as v1.10. Please adapt your fragment search to handle name and name_L.") + endif() + if (DEFINED FRAGLIB_DEEP) + message(WARNING "Using FRAGLIB_DEEP=OFF is deprecated and may be removed as soon as v1.10. Please adapt your fraglib library usage to handle a list of paths.") + endif() +endif() + +option_with_default(CMAKE_BUILD_TYPE "Build type" Release) +option_with_print(BUILD_SHARED_LIBS "Build final library as shared, not static" OFF) +option_with_default(BUILD_FPIC "Libraries will be compiled with position independent code" ON) +if((${BUILD_SHARED_LIBS}) AND NOT ${BUILD_FPIC}) + message(FATAL_ERROR "BUILD_SHARED_LIBS ON and BUILD_FPIC OFF are incompatible, as shared library requires position independent code") +endif() + +### This option turns OPENMP ON and OFF! +option_with_print(LIBEFP_ENABLE_OPENMP "Enable OpenMP parallelization. Psi4 wants OFF" ON) + +option_with_print(ENABLE_GENERIC "Enable mostly static linking in shared library" OFF) +include(xhost) # defines: option(ENABLE_XHOST "Enable processor-specific optimization" ON) +option_with_print(FRAGLIB_UNDERSCORE_L "DEPRECATED: Installed fragment library has names ending in _L. Psi4 wants OFF" ON) +option_with_print(FRAGLIB_DEEP "DEPRECATED: Installed fragment libary has hierarchical, not flat, filestructure. Psi4 wants OFF" ON) +option_with_print(INSTALL_DEVEL_HEADERS "Install additional namespaced devel headers beyond convenience efp.h" OFF) +option_with_default(LIBEFP_CMAKECONFIG_INSTALL_DIR "Directory within CMAKE_INSTALL_PREFIX to which CMake configuration files installed" "share/cmake/libefp") +option_with_print(LIBEFP_ENABLE_EFPMD "Build standalone efpmd executable (requires Fortran). This also enables testing" ON) + +option_with_default(PYMOD_INSTALL_LIBDIR "If LIBEFP_ENABLE_PYTHON, location within CMAKE_INSTALL_LIBDIR to which python modules are installed" /) +option_with_print(LIBEFP_ENABLE_PYTHON "Build Python bindings (requires CXX, Python, and Pybind11)" OFF) + +######################### Process & Validate Options ########################### +include(autocmake_safeguards) +include(custom_static_library) + +if (LIBEFP_ENABLE_OPENMP) + if (CMAKE_C_COMPILER_ID STREQUAL "IntelLLVM") + message(WARNING "CMake v3.28 doesn't find OpenMP C language for IntelLLVM (icx), so configure will likely fail. Rerun with `-D LIBEFP_ENABLE_OPENMP=OFF` or pass flags in CMAKE_C_FLAGS.") + endif() + + find_package(OpenMP REQUIRED COMPONENTS C) +endif() + +# for MKL serial, this is recommended: +# set(BLA_VENDOR Intel10_64lp_seq) +find_package(TargetLAPACK REQUIRED) + +################################# Main Project ################################# +include(GNUInstallDirs) +include(CMakePackageConfigHelpers) + +# <<< Build >>> + +# fragment library +set(FRAGLIB_DATADIRS "") +file(GLOB_RECURSE _dotefps RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "fraglib/*.efp") +foreach(_dotefp ${_dotefps}) + get_filename_component(_efpdir ${_dotefp} DIRECTORY) + get_filename_component(_efpfile ${_dotefp} NAME) + file(READ ${_dotefp} _strefpL) + string(REPLACE "_L" "" _strefp ${_strefpL}) + + if(FRAGLIB_DEEP) + set(_destdir ${_efpdir}) + else() + set(_destdir fraglib) + endif() + if(FRAGLIB_UNDERSCORE_L) + set(_destcontents ${_strefpL}) + else() + set(_destcontents ${_strefp}) + endif() + + list(APPEND FRAGLIB_DATADIRS "${_destdir}") + file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/${_destdir}/${_efpfile} ${_destcontents}) +endforeach() +list(REMOVE_DUPLICATES FRAGLIB_DATADIRS) + +# libefp C library +set(raw_sources_list + aidisp.c + balance.c + clapack.c + disp.c + efp.c + elec.c + electerms.c + int.c + log.c + parse.c + pol.c + poldirect.c + stream.c + swf.c + util.c + xr.c + ) + +set(src_prefix "src/") +string(REGEX REPLACE "([^;]+)" "${src_prefix}\\1" sources_list "${raw_sources_list}") + +if (CMAKE_C_COMPILER_ID STREQUAL "IntelLLVM") + # Linux+icx: without this, many efpmd tests produce wrong answers + set_source_files_properties( + src/elec.c + src/util.c + PROPERTIES + COMPILE_OPTIONS "-O0" + ) +endif() + +set(export_properties + "${efp}_VERSION" + "${efp}_FRAGLIB_DIRS" + ) + +# STATIC/SHARED on below governed by BUILD_SHARED_LIBS +add_library(efp ${sources_list}) +add_library(${efp}::efp ALIAS efp) +set_target_properties(efp + PROPERTIES + POSITION_INDEPENDENT_CODE ${BUILD_FPIC} + C_STANDARD 99 + C_STANDARD_REQUIRED ON + C_EXTENSIONS OFF + SOVERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} + OUTPUT_NAME "efp" + EXPORT_NAME "efp" + ${efp}_VERSION ${${efp}_VERSION} + ${efp}_FRAGLIB_DIRS "${FRAGLIB_DATADIRS}" + ) +set_property(TARGET efp APPEND PROPERTY EXPORT_PROPERTIES "${export_properties}") + +if(${BUILD_SHARED_LIBS}) + target_link_libraries(efp PRIVATE ${LIBC_INTERJECT}) + if(APPLE) + set_target_properties(efp PROPERTIES LINK_FLAGS "-undefined dynamic_lookup") + endif() +endif() +target_link_libraries( + efp + PUBLIC + tgt::lapack + $<$:OpenMP::OpenMP_C> + ) + +# pylibefp bindings +if (LIBEFP_ENABLE_PYTHON) + enable_language(CXX) + add_subdirectory(python) +endif() + +# efpmd executable +if (LIBEFP_ENABLE_EFPMD) + # needed to link the Fortran routines in libff into the efpmd executable + enable_language(Fortran) + add_subdirectory(efpmd) + + enable_testing() + add_subdirectory(tests) +endif() + +# <<< Install >>> + +install(FILES fraglib/makefp.inp + DESTINATION ${CMAKE_INSTALL_DATADIR}/${efp}) +install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/fraglib + DESTINATION ${CMAKE_INSTALL_DATADIR}/${efp}) + +install(DIRECTORY ${PROJECT_SOURCE_DIR}/nnlib + DESTINATION ${CMAKE_INSTALL_DATADIR}/${efp}) + +# headers NOT namespace protected +install(FILES ${src_prefix}/efp.h + DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) +if (INSTALL_DEVEL_HEADERS) + install(DIRECTORY ${src_prefix} + DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${efp} + FILES_MATCHING PATTERN "*.h") +endif() +install(TARGETS efp + EXPORT "${efp}Targets-C" + PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} + ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}) + +# <<< Export Interface >>> + +target_compile_definitions(efp INTERFACE USING_${efp}) +target_include_directories(efp INTERFACE + $) + +# <<< Export Config >>> + +configure_package_config_file( + cmake/${efp}Config.cmake.in + "${CMAKE_CURRENT_BINARY_DIR}/${efp}Config.cmake" + INSTALL_DESTINATION ${LIBEFP_CMAKECONFIG_INSTALL_DIR} + ) +write_basic_package_version_file( + ${CMAKE_CURRENT_BINARY_DIR}/${efp}ConfigVersion.cmake + VERSION ${${efp}_VERSION} + COMPATIBILITY SameMinorVersion + ) +install( + FILES + ${CMAKE_CURRENT_BINARY_DIR}/${efp}Config.cmake + ${CMAKE_CURRENT_BINARY_DIR}/${efp}ConfigVersion.cmake + cmake/FindTargetLAPACK.cmake + DESTINATION + ${LIBEFP_CMAKECONFIG_INSTALL_DIR} + ) +install( + EXPORT + "${efp}Targets-C" + NAMESPACE + "${efp}::" + DESTINATION + ${LIBEFP_CMAKECONFIG_INSTALL_DIR} + ) diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index 1ec61b55..97525d64 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -78,13 +78,10 @@ if (APPLE) else() set(base "$ORIGIN") endif() - -set(CMAKE_INSTALL_LIBDIR "lib") file(RELATIVE_PATH relDir ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}${PYMOD_INSTALL_LIBDIR}/pylibefp ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}) set(CMAKE_INSTALL_RPATH ${base} ${base}/${relDir} ${_dloc}) - message(STATUS "pylibefp rpath: ${CMAKE_INSTALL_RPATH}") pybind11_add_module( diff --git a/python/core.cc b/python/core.cc index ca2fa5c2..81cf9fb6 100644 --- a/python/core.cc +++ b/python/core.cc @@ -59,6 +59,35 @@ efp_result _efp_set_frag_coordinates(efp* efp, size_t frag_idx, efp_coord_type c return res; } +//SKP + +efp_result _efp_set_pairwise_energy(efp* efp, size_t n_frag, py::list pair_energy_list) { + std::vector pair_energies(n_frag); + + for (size_t i = 0; i < n_frag; ++i) { + py::dict py_energy = pair_energy_list[i]; + + pair_energies[i].electrostatic = py_energy["electrostatic"].cast(); + pair_energies[i].exchange_repulsion = py_energy["exchange_repulsion"].cast(); + pair_energies[i].polarization = py_energy["polarization"].cast(); + pair_energies[i].dispersion = py_energy["dispersion"].cast(); + pair_energies[i].total = py_energy["total"].cast(); + } + + return efp_set_pairwise_energy(efp, pair_energies.data()); +} + +efp_result _efp_compute_pairwise_energy_range(efp* efp, size_t frag_from, size_t frag_to) { + + return efp_compute_pairwise_energy_range_range(efp, frag_from, frag_to); + +} + +efp_result _efp_compute_two_body_crystal(efp *efp) { + + return efp_compute_two_body_crystal(efp); +} + efp_result _efp_set_point_charge_values(efp* efp, size_t n_ptc, py::list ptc) { enum efp_result res; @@ -135,6 +164,29 @@ py::tuple _efp_get_gradient(efp* efp, size_t n_frag) { return rets; } +// SKP + +py::list _efp_get_pairwise_energy(efp* efp, size_t n_frag) { + enum efp_result res; + + std::vector pair_energies(n_frag); + res = efp_get_pairwise_energy(efp, pair_energies.data()); + + py::list py_energies; + + for (size_t i = 0; i < n_frag; ++i) { + py::dict energy; + energy["electrostatic"] = pair_energies[i].electrostatic; + energy["exchange_repulsion"] = pair_energies[i].exchange_repulsion; + energy["polarization"] = pair_energies[i].polarization; + energy["dispersion"] = pair_energies[i].dispersion; + energy["total"] = pair_energies[i].total; + py_energies.append(energy); + } + + return py_energies; +} + py::tuple _efp_get_frag_count(efp* efp) { enum efp_result res; size_t n_frag = 0; @@ -453,6 +505,7 @@ efp_result cwrapped_field_fn(size_t n_pt, const double* xyz, double* field, void return EFP_RESULT_SUCCESS; } + void _efp_set_electron_density_field_fn(efp* efp, py::function fn) { field_fn_callback = fn; efp_set_electron_density_field_fn(efp, cwrapped_field_fn); @@ -514,8 +567,21 @@ PYBIND11_MODULE(core, m) { .value("EFP_TERM_AI_DISP", EFP_TERM_AI_DISP, "Ab initio/EFP dispersion, reserved for future.") .value("EFP_TERM_AI_XR", EFP_TERM_AI_XR, "Ab initio/EFP exchange repulsion, reserved for future.") .value("EFP_TERM_AI_CHTR", EFP_TERM_AI_CHTR, "Ab initio/EFP charge transfer, reserved for future.") + .value("EFP_TERM_QQ", EFP_TERM_QQ, "MM-like charge-charge coulomb interaction") // SKP + .value("EFP_TERM_LJ", EFP_TERM_LJ, "MM-like Lennard-Jones interaction") // SKP + .value("EFP_TERM_AI_QQ", EFP_TERM_AI_QQ, "QM/MM coulomb interaction with MM charges") // SKP .export_values(); - +// ============= SKP addition ========================== // + py::enum_(m, "efp_special_term", py::arithmetic(), "Flags to specify EFP energy terms for a special fragment") + .value("EFP_SPEC_TERM_ELEC", EFP_SPEC_TERM_ELEC, "EFP/EFP electrostatics.") + .value("EFP_SPEC_TERM_POL", EFP_SPEC_TERM_POL, "EFP/EFP polarization.") + .value("EFP_SPEC_TERM_DISP", EFP_SPEC_TERM_DISP, "EFP/EFP dispersion.") + .value("EFP_SPEC_TERM_XR", EFP_SPEC_TERM_XR, "EFP/EFP exchange repulsion.") + .value("EFP_SPEC_TERM_CHTR", EFP_SPEC_TERM_CHTR, "EFP/EFP charge transfer, reserved for future.") + .value("EFP_SPEC_TERM_QQ", EFP_SPEC_TERM_QQ, "MM-like charge-charge coulomb interaction") + .value("EFP_SPEC_TERM_LJ", EFP_SPEC_TERM_LJ, "MM-like Lennard-Jones interaction") + .export_values(); +//====================================================== // py::enum_(m, "efp_disp_damp", "Fragment-fragment dispersion damping type") .value("EFP_DISP_DAMP_OVERLAP", EFP_DISP_DAMP_OVERLAP, "Overlap-based damping (default).") .value("EFP_DISP_DAMP_TT", EFP_DISP_DAMP_TT, "Tang-Toennies damping.") @@ -554,8 +620,13 @@ PYBIND11_MODULE(core, m) { .def_readwrite("pol_driver", &efp_opts::pol_driver, "Driver used to find polarization induced dipoles.") .def_readwrite("enable_pbc", &efp_opts::enable_pbc, "Enable periodic boundary conditions if nonzero.") .def_readwrite("enable_cutoff", &efp_opts::enable_cutoff, "Enable frag-fraginteraction cutoff if nonzero.") - .def_readwrite("swf_cutoff", &efp_opts::swf_cutoff, "Cutoff distance for frag-frag interactions."); - + .def_readwrite("swf_cutoff", &efp_opts::swf_cutoff, "Cutoff distance for frag-frag interactions.") + .def_readwrite("special_terms", &efp_opts::special_terms, "Terms for a special fragment - typically QM or ML fragment") // SKP + .def_readwrite("enable_pairwise", &efp_opts::enable_pairwise, "Enable ligand-fragment energy decomposition from total system") // SKP + .def_readwrite("symmetry", &efp_opts::symmetry, "Sets system symmetry option") // SKP + .def_readwrite("ligand", &efp_opts::ligand, "Ligand number") // SKP + .def_readwrite("special_fragment", &efp_opts::special_fragment, "Index of a special (QM or ML) fragment"); // SKP + py::class_(m, "efp_energy", "EFP energy terms") .def(py::init()) .def_readwrite("electrostatic", &efp_energy::electrostatic, "EFP/EFP electrostatic energy.") @@ -573,7 +644,8 @@ PYBIND11_MODULE(core, m) { .def_readwrite("dispersion", &efp_energy::dispersion, "EFP/EFP dispersion energy.") .def_readwrite("ai_dispersion", &efp_energy::ai_dispersion, "AI/EFP dispersion energy.") .def_readwrite("exchange_repulsion", &efp_energy::exchange_repulsion, "EFP/EFP exchange-repulsion energy.") - .def_readwrite("total", &efp_energy::total, "Sum of all the above energy terms."); + .def_readwrite("qq", &efp_energy::qq, "EFP/EFP charge-charge energy.") + .def_readwrite("total", &efp_energy::total, "Sum of all the above energy terms."); py::class_(m, "efp_atom", "EFP atom info") .def(py::init()) @@ -649,7 +721,11 @@ PYBIND11_MODULE(core, m) { "Wrapped gets values of polarization conjugated induced dipoles") .def("_efp_get_energy", &efp_get_energy, "Gets computed energy components") .def("_efp_get_gradient", &_efp_get_gradient, "Gets computed EFP energy gradient") - .def("_efp_get_frag_count", &_efp_get_frag_count, "Gets the number of fragments in this computation") + .def("_efp_get_pairwise_energy", &_efp_get_pairwise_energy, "Gets pairwise energies") + .def("_efp_set_pairwise_energy", &_efp_set_pairwise_energy, "Sets pairwise energies") + .def("_efp_compute_pairwise_energy_range", &_efp_compute_pairwise_energy_range, "Computes pairwise_energy_range") + .def("_efp_compute_two_body_crystal", &_efp_compute_two_body_crystal, "Computes two body crystal for symmetric systems") + .def("_efp_get_frag_count", &_efp_get_frag_count, "Gets the number of fragments in this computation") .def("_efp_get_frag_name", &_efp_get_frag_name, "Gets the name of the specified effective fragment") .def("_efp_get_frag_atom_count", &_efp_get_frag_atom_count, "Gets the number of atoms on fragment") .def("_efp_get_frag_atoms", &_efp_get_frag_atoms, diff --git a/python/core.cc_og b/python/core.cc_og new file mode 100644 index 00000000..ca2fa5c2 --- /dev/null +++ b/python/core.cc_og @@ -0,0 +1,686 @@ +/* + pylibefp/core.cc: Main binding of libefp with pybind11 + + Copyright (c) 2017-2019 The Psi4 Developers + + All rights reserved. Use of this source code is governed by a + BSD-style license that can be found in the LICENSE file. +*/ + +#include +#if __has_include() +#include +#else +#include "private.h" +#endif + +#include + +#include +#include + +namespace py = pybind11; + +class libefpException : public std::exception { + public: + explicit libefpException(const char* m) : message{m} {} + virtual const char* what() const noexcept override { return message.c_str(); } + + private: + std::string message = ""; +}; + +std::string _efp_banner(efp* efp) { + std::string str; + str = std::string(efp_banner()); + return str; +} + +py::tuple _efp_get_frag_name(efp* efp, size_t frag_idx) { + enum efp_result res; + char buffer[80]; + + res = efp_get_frag_name(efp, frag_idx, 80, buffer); + std::string fname = std::string(buffer); + + py::tuple rets = py::make_tuple(res, fname); + return rets; +} + +efp_result _efp_set_frag_coordinates(efp* efp, size_t frag_idx, efp_coord_type ctype, py::list coord) { + enum efp_result res; + + double* ccoords = NULL; + ccoords = new double[12]; // room for xyzabc (6), points (9), or rotmat (12) + double* pcoords = ccoords; + for (auto itm : coord) *pcoords++ = itm.cast(); + + res = efp_set_frag_coordinates(efp, frag_idx, ctype, ccoords); + return res; +} + +efp_result _efp_set_point_charge_values(efp* efp, size_t n_ptc, py::list ptc) { + enum efp_result res; + + double* cptc = NULL; + cptc = new double[n_ptc]; + double* pptc = cptc; + for (auto itm : ptc) *pptc++ = itm.cast(); + + res = efp_set_point_charge_values(efp, cptc); + return res; +} + +efp_result _efp_set_point_charge_coordinates(efp* efp, size_t n_ptc, py::list xyz) { + enum efp_result res; + + double* cxyz = NULL; + cxyz = new double[3 * n_ptc]; + double* pxyz = cxyz; + for (auto itm : xyz) *pxyz++ = itm.cast(); + + res = efp_set_point_charge_coordinates(efp, cxyz); + return res; +} + +efp_result _efp_set_point_charges(efp* efp, size_t n_ptc, py::list ptc, py::list xyz) { + enum efp_result res; + + double* cptc = NULL; + cptc = new double[n_ptc]; + double* pptc = cptc; + for (auto itm : ptc) *pptc++ = itm.cast(); + + double* cxyz = NULL; + cxyz = new double[3 * n_ptc]; + double* pxyz = cxyz; + for (auto itm : xyz) *pxyz++ = itm.cast(); + + res = efp_set_point_charges(efp, n_ptc, cptc, cxyz); + return res; +} + +py::tuple _efp_get_frag_charge(efp* efp, size_t frag_idx) { + enum efp_result res; + double charge = 0.0; + + res = efp_get_frag_charge(efp, frag_idx, &charge); + + py::tuple rets = py::make_tuple(res, charge); + return rets; +} + +py::tuple _efp_get_frag_multiplicity(efp* efp, size_t frag_idx) { + enum efp_result res; + int multiplicity = 0; + + res = efp_get_frag_multiplicity(efp, frag_idx, &multiplicity); + + py::tuple rets = py::make_tuple(res, multiplicity); + return rets; +} + +py::tuple _efp_get_gradient(efp* efp, size_t n_frag) { + enum efp_result res; + py::list grad; + + double* ccoords = NULL; + ccoords = new double[6 * n_frag]; + double* pcoords = ccoords; + + res = efp_get_gradient(efp, ccoords); + for (size_t ic = 0; ic < 6 * n_frag; ++ic) grad.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, grad); + return rets; +} + +py::tuple _efp_get_frag_count(efp* efp) { + enum efp_result res; + size_t n_frag = 0; + + res = efp_get_frag_count(efp, &n_frag); + + py::tuple rets = py::make_tuple(res, n_frag); + return rets; +} + +py::tuple _efp_get_frag_atom_count(efp* efp, size_t frag_idx) { + enum efp_result res; + size_t n_atom = 0; + + res = efp_get_frag_atom_count(efp, frag_idx, &n_atom); + + py::tuple rets = py::make_tuple(res, n_atom); + return rets; +} + +py::tuple _efp_get_periodic_box(efp* efp) { + enum efp_result res; + py::list xyz; + + size_t dim = 6; + double* ccoords = NULL; + ccoords = new double[dim]; + double* pcoords = ccoords; + + res = efp_get_periodic_box(efp, ccoords); + for (size_t ic = 0; ic < dim; ++ic) xyz.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, xyz); + return rets; +} + +py::tuple _efp_get_multipole_count(efp* efp) { + enum efp_result res; + size_t n_mult = 0; + + res = efp_get_multipole_count(efp, &n_mult); + + py::tuple rets = py::make_tuple(res, n_mult); + return rets; +} + +py::tuple _efp_get_multipole_coordinates(efp* efp, size_t n_mult) { + enum efp_result res; + py::list xyz; + + size_t dim = 3 * n_mult; + double* ccoords = NULL; + ccoords = new double[dim]; + double* pcoords = ccoords; + + res = efp_get_multipole_coordinates(efp, ccoords); + for (size_t ic = 0; ic < dim; ++ic) xyz.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, xyz); + return rets; +} + +py::tuple _efp_get_multipole_values(efp* efp, size_t n_mult) { + enum efp_result res; + py::list mult; + + size_t dim = (1 + 3 + 6 + 10) * n_mult; + double* ccoords = NULL; + ccoords = new double[dim]; + double* pcoords = ccoords; + + res = efp_get_multipole_values(efp, ccoords); + for (size_t ic = 0; ic < dim; ++ic) mult.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, mult); + return rets; +} + +py::tuple _efp_get_induced_dipole_count(efp* efp) { + enum efp_result res; + size_t n_dip = 0; + + res = efp_get_induced_dipole_count(efp, &n_dip); + + py::tuple rets = py::make_tuple(res, n_dip); + return rets; +} + +py::tuple _efp_get_induced_dipole_coordinates(efp* efp, size_t n_dip) { + enum efp_result res; + py::list xyz; + + size_t dim = 3 * n_dip; + double* ccoords = NULL; + ccoords = new double[dim]; + double* pcoords = ccoords; + + res = efp_get_induced_dipole_coordinates(efp, ccoords); + for (size_t ic = 0; ic < dim; ++ic) xyz.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, xyz); + return rets; +} + +py::tuple _efp_get_induced_dipole_values(efp* efp, size_t n_dip) { + enum efp_result res; + py::list vals; + + size_t dim = 3 * n_dip; + double* ccoords = NULL; + ccoords = new double[dim]; + double* pcoords = ccoords; + + res = efp_get_induced_dipole_values(efp, ccoords); + for (size_t ic = 0; ic < dim; ++ic) vals.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, vals); + return rets; +} + +py::tuple _efp_get_induced_dipole_conj_values(efp* efp, size_t n_dip) { + enum efp_result res; + py::list vals; + + size_t dim = 3 * n_dip; + double* ccoords = NULL; + ccoords = new double[dim]; + double* pcoords = ccoords; + + res = efp_get_induced_dipole_conj_values(efp, ccoords); + for (size_t ic = 0; ic < dim; ++ic) vals.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, vals); + return rets; +} + +py::tuple _efp_get_point_charge_count(efp* efp) { + enum efp_result res; + size_t n_ptc = 0; + + res = efp_get_point_charge_count(efp, &n_ptc); + + py::tuple rets = py::make_tuple(res, n_ptc); + return rets; +} + +py::tuple _efp_get_point_charge_coordinates(efp* efp, size_t n_ptc) { + enum efp_result res; + py::list xyz; + + size_t dim = 3 * n_ptc; + double* ccoords = NULL; + ccoords = new double[dim]; + double* pcoords = ccoords; + + res = efp_get_point_charge_coordinates(efp, ccoords); + for (size_t ic = 0; ic < dim; ++ic) xyz.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, xyz); + return rets; +} + +py::tuple _efp_get_point_charge_values(efp* efp, size_t n_ptc) { + enum efp_result res; + py::list vals; + + size_t dim = n_ptc; + double* ccoords = NULL; + ccoords = new double[dim]; + double* pcoords = ccoords; + + res = efp_get_point_charge_values(efp, ccoords); + for (size_t ic = 0; ic < dim; ++ic) vals.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, vals); + return rets; +} + +// TODO: probably filling would fail if res not good in a lot of these + +py::tuple _efp_get_frag_atoms(efp* efp, size_t frag_idx, size_t frag_natom) { + enum efp_result res; + struct efp_atom * atoms = new struct efp_atom[frag_natom]; + py::list ats_info; + + if ((res = efp_get_frag_atoms(efp, frag_idx, frag_natom, atoms))) { + py::tuple rets = py::make_tuple(res, ats_info); + return rets; + } + + for (size_t iat = 0; iat < frag_natom; ++iat) { + py::dict at_info; + at_info[py::str("Z")] = atoms[iat].znuc; + at_info[py::str("mass")] = atoms[iat].mass; + at_info[py::str("label")] = atoms[iat].label; + at_info[py::str("x")] = atoms[iat].x; + at_info[py::str("y")] = atoms[iat].y; + at_info[py::str("z")] = atoms[iat].z; + ats_info.append(at_info); + } + delete [] atoms; + + py::tuple rets = py::make_tuple(res, ats_info); + return rets; +} + +// py::dict extend_efp_get_atoms(efp* efp) { +// enum efp_result res; +// size_t frag_natom, natom=0; +// double frag_chg; +// int frag_mult; +// py::list fr, frt, frcg, frmp, full_atoms; +// +// py::dict mol_info; +// mol_info[py::str("units")] = "Bohr"; +// mol_info[py::str("input_units_to_au")] = 1.0; +// mol_info[py::str("fix_com")] = true; +// mol_info[py::str("fix_orientation")] = true; +// mol_info[py::str("fix_symmetry")] = "c1"; +// +// size_t frag_count = twrapped_efp_get_frag_count(efp); +// for (int ifr = 0; ifr < frag_count; ++ifr) { +// frag_natom = twrapped_efp_get_frag_atom_count(efp, ifr); +// py::list f; +// f.append(natom); +// natom = natom + frag_natom; +// f.append(natom); +// fr.append(f); +// frt.append("Real"); +// frcg.append(static_cast(wrapped_efp_get_frag_charge(efp, ifr))); +// frmp.append(wrapped_efp_get_frag_multiplicity(efp, ifr)); +// +// struct efp_atom atoms[frag_natom]; +// if ((res = efp_get_frag_atoms(efp, ifr, frag_natom, atoms))) { +// std::string sres = "efp_get_frag_atoms: " + rts(res) + "\n"; +// throw libefpException(sres.c_str()); +// } +// +// for (size_t iat = 0; iat < frag_natom; ++iat) { +// py::dict at_init; +// at_init[py::str("Z")] = atoms[iat].znuc; +// at_init[py::str("mass")] = atoms[iat].mass; +// at_init[py::str("label")] = atoms[iat].label; +// at_init[py::str("x")] = atoms[iat].x; +// at_init[py::str("y")] = atoms[iat].y; +// at_init[py::str("z")] = atoms[iat].z; +// full_atoms.append(at_init); +// } +// } +// +// mol_info[py::str("fragments")] = fr; +// mol_info[py::str("fragment_types")] = frt; +// mol_info[py::str("fragment_charges")] = frcg; +// mol_info[py::str("fragment_multiplicities")] = frmp; +// mol_info[py::str("full_atoms")] = full_atoms; +// +// return mol_info; +//} + +py::tuple _efp_get_coordinates(efp* efp, size_t n_frag) { + enum efp_result res; + py::list xyzabc; + + double* ccoords = NULL; + ccoords = new double[6 * n_frag]; + double* pcoords = ccoords; + + res = efp_get_coordinates(efp, pcoords); + for (size_t ic = 0; ic < 6 * n_frag; ++ic) xyzabc.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, xyzabc); + return rets; +} + +py::tuple _efp_get_frag_xyzabc(efp* efp, size_t frag_idx) { + enum efp_result res; + py::list xyzabc; + + double* ccoords = NULL; + ccoords = new double[6]; + double* pcoords = ccoords; + + res = efp_get_frag_xyzabc(efp, frag_idx, pcoords); + for (size_t ic = 0; ic < 6; ++ic) xyzabc.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, xyzabc); + return rets; +} + +py::tuple _efp_get_wavefunction_dependent_energy(efp* efp) { + enum efp_result res; + double ene; + + res = efp_get_wavefunction_dependent_energy(efp, &ene); + + py::tuple rets = py::make_tuple(res, ene); + return rets; +} + +// stash the python E_field fn here +py::function field_fn_callback; +py::function get_field_fn_callback(void) { return field_fn_callback; } + +efp_result cwrapped_field_fn(size_t n_pt, const double* xyz, double* field, void* user_data) { + // prepare xyz: double* --> py::list + py::list py_xyz; + for (size_t ic = 0; ic < 3 * n_pt; ++ic) py_xyz.append(xyz[ic]); + + py::function fn = get_field_fn_callback(); + py::list py_field = fn(py_xyz); + + // harvest field: py::list --> double* + double* field_p = field; + for (auto itm : py_field) *field_p++ = itm.cast(); + + return EFP_RESULT_SUCCESS; +} + +void _efp_set_electron_density_field_fn(efp* efp, py::function fn) { + field_fn_callback = fn; + efp_set_electron_density_field_fn(efp, cwrapped_field_fn); +} + +py::function dummy; +void _clear_electron_density_field_fn(efp* efp) { field_fn_callback = dummy; } + +void _clean(efp* efp) { + _clear_electron_density_field_fn(efp); + efp_shutdown(efp); +} + +// // py::list coord --> double* ccoords +// double* ccoords = NULL; +// ccoords = new double[12]; // room for xyzabc (6), points (9), or rotmat (12) +// double* pcoords = ccoords; +// for (auto itm : coord) +// *pcoords++ = itm.cast(); +// +// // double* coords --> py::list +// py::list coord; +// +// double* ccoords = NULL; +// ccoords = new double[12]; +// double* pcoords = ccoords; +// +// double* ccoords = new double[12]; // alt +// +// res = efp_get_multipole_coordinates(efp, ccoords); +// for (size_t ic = 0; ic < 12; ++ic) +// coord.append(ccoords[ic]); + +PYBIND11_MODULE(core, m) { + m.doc() = "Python wrapping of parallel implementation of the Effective Fragment Potential (EFP) method"; + + m.attr("__copyright__") = py::str("Copyright (c) 2017-2019 The Psi4 Developers"); + py::exception(m, "libefpException"); + + // clang-format off + py::enum_(m, "efp_result", "Result of a libefp operation") + .value("EFP_RESULT_SUCCESS", EFP_RESULT_SUCCESS, "Operation was successful.") + .value("EFP_RESULT_FATAL", EFP_RESULT_FATAL, "Fatal error has occurred.") + .value("EFP_RESULT_NO_MEMORY", EFP_RESULT_NO_MEMORY, "Insufficient memory.") + .value("EFP_RESULT_FILE_NOT_FOUND", EFP_RESULT_FILE_NOT_FOUND, "File not found.") + .value("EFP_RESULT_SYNTAX_ERROR", EFP_RESULT_SYNTAX_ERROR, "Syntax error.") + .value("EFP_RESULT_UNKNOWN_FRAGMENT", EFP_RESULT_UNKNOWN_FRAGMENT, "Unknown EFP fragment.") + .value("EFP_RESULT_POL_NOT_CONVERGED", EFP_RESULT_POL_NOT_CONVERGED, "Polarization SCF procedure did not converge.") + .export_values(); + + py::enum_(m, "efp_term", py::arithmetic(), "Flags to specify EFP energy terms") + .value("EFP_TERM_ELEC", EFP_TERM_ELEC, "EFP/EFP electrostatics.") + .value("EFP_TERM_POL", EFP_TERM_POL, "EFP/EFP polarization.") + .value("EFP_TERM_DISP", EFP_TERM_DISP, "EFP/EFP dispersion.") + .value("EFP_TERM_XR", EFP_TERM_XR, "EFP/EFP exchange repulsion.") + .value("EFP_TERM_CHTR", EFP_TERM_CHTR, "EFP/EFP charge transfer, reserved for future.") + .value("EFP_TERM_AI_ELEC", EFP_TERM_AI_ELEC, "Ab initio/EFP electrostatics.") + .value("EFP_TERM_AI_POL", EFP_TERM_AI_POL, "Ab initio/EFP polarization.") + .value("EFP_TERM_AI_DISP", EFP_TERM_AI_DISP, "Ab initio/EFP dispersion, reserved for future.") + .value("EFP_TERM_AI_XR", EFP_TERM_AI_XR, "Ab initio/EFP exchange repulsion, reserved for future.") + .value("EFP_TERM_AI_CHTR", EFP_TERM_AI_CHTR, "Ab initio/EFP charge transfer, reserved for future.") + .export_values(); + + py::enum_(m, "efp_disp_damp", "Fragment-fragment dispersion damping type") + .value("EFP_DISP_DAMP_OVERLAP", EFP_DISP_DAMP_OVERLAP, "Overlap-based damping (default).") + .value("EFP_DISP_DAMP_TT", EFP_DISP_DAMP_TT, "Tang-Toennies damping.") + .value("EFP_DISP_DAMP_OFF", EFP_DISP_DAMP_OFF, "No dispersion damping.") + .export_values(); + + py::enum_(m, "efp_elec_damp", "Fragment-fragment electrostatic damping type") + .value("EFP_ELEC_DAMP_SCREEN", EFP_ELEC_DAMP_SCREEN, "SCREEN-controlled damping (default).") + .value("EFP_ELEC_DAMP_OVERLAP", EFP_ELEC_DAMP_OVERLAP, "Overlap-based damping.") + .value("EFP_ELEC_DAMP_OFF", EFP_ELEC_DAMP_OFF, "No electrostatic damping.") + .export_values(); + + py::enum_(m, "efp_pol_damp", "Fragment-fragment polarization damping type") + .value("EFP_POL_DAMP_TT", EFP_POL_DAMP_TT, "Tang-Toennies like damping (default).") + .value("EFP_POL_DAMP_OFF", EFP_POL_DAMP_OFF, "No polarization damping.") + .export_values(); + + py::enum_(m, "efp_coord_type", "Describes the way fragment coordinates are specified") + .value("EFP_COORD_TYPE_XYZABC", EFP_COORD_TYPE_XYZABC, "Coordinates of center of mass of a fragment and Euler angles.") + .value("EFP_COORD_TYPE_POINTS", EFP_COORD_TYPE_POINTS, "Coordinates of three points belonging to a fragment.") + .value("EFP_COORD_TYPE_ROTMAT", EFP_COORD_TYPE_ROTMAT, "Coordinates of fragment center of mass and its rotation matrix.") + .export_values(); + + + py::enum_(m, "efp_pol_driver", "Driver used for solving polarization equations") + .value("EFP_POL_DRIVER_ITERATIVE", EFP_POL_DRIVER_ITERATIVE, "Iterative solution of polarization equations.") + .value("EFP_POL_DRIVER_DIRECT", EFP_POL_DRIVER_DIRECT, "Direct solution of polarization equations.") + .export_values(); + + py::class_(m, "efp_opts", "Options controlling EFP computation") + .def(py::init()) + .def_readwrite("terms", &efp_opts::terms, "Specifies which energy terms to compute.") + .def_readwrite("disp_damp", &efp_opts::disp_damp, "Dispersion damping type (see #efp_disp_damp).") + .def_readwrite("elec_damp", &efp_opts::elec_damp, "Electrostatic damping type (see #efp_elec_damp).") + .def_readwrite("pol_damp", &efp_opts::pol_damp, "Polarization damping type (see #efp_pol_damp).") + .def_readwrite("pol_driver", &efp_opts::pol_driver, "Driver used to find polarization induced dipoles.") + .def_readwrite("enable_pbc", &efp_opts::enable_pbc, "Enable periodic boundary conditions if nonzero.") + .def_readwrite("enable_cutoff", &efp_opts::enable_cutoff, "Enable frag-fraginteraction cutoff if nonzero.") + .def_readwrite("swf_cutoff", &efp_opts::swf_cutoff, "Cutoff distance for frag-frag interactions."); + + py::class_(m, "efp_energy", "EFP energy terms") + .def(py::init()) + .def_readwrite("electrostatic", &efp_energy::electrostatic, "EFP/EFP electrostatic energy.") + .def_readwrite("charge_penetration", &efp_energy::charge_penetration, "Charge penetration energy from" + "overlap-based electrostatic damping." + "Zero if overlap-based damping is turned" + "off.") + .def_readwrite("electrostatic_point_charges", &efp_energy::electrostatic_point_charges, + "Interaction energy of EFP electrostatics" + "with point charges.") + .def_readwrite("polarization", &efp_energy::polarization, "All polarization energy goes here." + "Polarization is computed self-consist-" + "ently so it can't be separated into" + "EFP/EFP and AI/EFP parts.") + .def_readwrite("dispersion", &efp_energy::dispersion, "EFP/EFP dispersion energy.") + .def_readwrite("ai_dispersion", &efp_energy::ai_dispersion, "AI/EFP dispersion energy.") + .def_readwrite("exchange_repulsion", &efp_energy::exchange_repulsion, "EFP/EFP exchange-repulsion energy.") + .def_readwrite("total", &efp_energy::total, "Sum of all the above energy terms."); + + py::class_(m, "efp_atom", "EFP atom info") + .def(py::init()) + //.def_readonly("label", &efp_atom::label, "Atom label.") // char label[32] + .def_readwrite("x", &efp_atom::x, "X coordinate of atom position.") + .def_readwrite("y", &efp_atom::y, "Y coordinate of atom position.") + .def_readwrite("z", &efp_atom::z, "Z coordinate of atom position.") + .def_readwrite("mass", &efp_atom::mass, "Atom mass.") + .def_readwrite("znuc", &efp_atom::znuc, "Nuclear charge."); + // clang-format on + + py::class_>(m, "efp", py::dynamic_attr(), "Main libefp opaque structure") + // dynamic_attr for stashing input_units_to_au + .def(py::init(&efp_create), "Creates a new efp object via `efp_create`") + .def("banner", &_efp_banner, "Gets a human readable banner string with information about the library") + .def("_efp_set_opts", &efp_set_opts, "Wrapped set computation options") + .def("_efp_get_opts", &efp_get_opts, "Gets currently set computation options") + .def("_efp_add_potential", &efp_add_potential, "Wrapped adds EFP potential from full file path") + .def("_efp_add_fragment", &efp_add_fragment, "Wrapped adds a new fragment to the EFP subsystem") + .def("_efp_prepare", &efp_prepare, "Wrapped prepares the calculation") + .def("set_electron_density_field_fn", &_efp_set_electron_density_field_fn, + "Sets the callback function which computes electric field from electrons in ab initio subsystem") + .def("clear_electron_density_field_fn", &_clear_electron_density_field_fn, + "Detaches callback function from EFP instance (necessary for destruction. Called by clean or call " + "alongside shutdown") + .def("_efp_set_point_charges", &_efp_set_point_charges, + "Wrapped setup arbitrary point charges of magnitude at locations interacting with EFP subsystem", + py::arg("n_ptc"), py::arg("ptc"), py::arg("xyz")) + .def("_efp_set_point_charge_coordinates", &_efp_set_point_charge_coordinates, + "Wrapped sets coordinates of arbitrary point charges interacting with EFP subsystem", + py::arg("n_ptc"), py::arg("xyz")) + .def("_efp_set_point_charge_values", &_efp_set_point_charge_values, + "Wrapped sets magnitudes of arbitrary point charges interacting with EFP subsystem") + .def("_efp_get_point_charge_count", &_efp_get_point_charge_count, + "Gets the number of currently set point charges") + .def("_efp_get_point_charge_coordinates", &_efp_get_point_charge_coordinates, + "Wrapped gets coordinates of currently set point charges", + py::arg("n_ptc")) + .def("_efp_get_point_charge_values", &_efp_get_point_charge_values, + "Wrapped gets values of currently set point charges") + .def("get_point_charge_gradient", &efp_get_point_charge_gradient, + "Gets gradient on point charges from EFP subsystem and returns them in *arg1*") + .def("_efp_set_frag_coordinates", &_efp_set_frag_coordinates, + "Wrapped updates position and orientation of the specified effective fragment with type", + py::arg("frag_idx"), py::arg("ctype"), py::arg("coord")) + .def("_efp_get_coordinates", &_efp_get_coordinates, + py::arg("n_frag"), + "Wrapped gets center of mass positions and Euler angles of the effective fragments") + .def("_efp_get_frag_xyzabc", &_efp_get_frag_xyzabc, py::arg("frag_idx"), + "Wrapped gets center of mass position and Euler angles on fragment ``frag_idx``") + .def("_efp_set_periodic_box", &efp_set_periodic_box, "Wrapped sets up periodic box size") + .def("_efp_get_periodic_box", &_efp_get_periodic_box, "Wrapped gets periodic box size") + .def("_efp_get_wavefunction_dependent_energy", &_efp_get_wavefunction_dependent_energy, + "Wrapped updates wavefunction-dependent energy terms") + .def("_efp_compute", &efp_compute, py::arg("do_gradient") = false, + "Perform the EFP computation, optionally doing gradient") + .def("_efp_get_frag_charge", &_efp_get_frag_charge, "Gets total charge on fragment", py::arg("frag_idx")) + .def("_efp_get_frag_multiplicity", &_efp_get_frag_multiplicity, "Gets spin multiplicity on fragment") + // Multipoles & Induced Dipoles + .def("_efp_get_multipole_count", &_efp_get_multipole_count, + "Wrapped gets total number of multipoles from EFP electrostatics") + .def("_efp_get_multipole_coordinates", &_efp_get_multipole_coordinates, + "Wrapped gets coordinates of electrostatics multipoles") + .def("_efp_get_multipole_values", &_efp_get_multipole_values, + "Wrapped gets electrostatics multipoles from EFP fragments") + .def("_efp_get_induced_dipole_count", &_efp_get_induced_dipole_count, + "Wrapped gets the number of polarization induced dipoles") + .def("_efp_get_induced_dipole_coordinates", &_efp_get_induced_dipole_coordinates, + "Wrapped gets coordinates of induced dipoles") + .def("_efp_get_induced_dipole_values", &_efp_get_induced_dipole_values, + "Wrapped gets values of polarization induced dipoles") + .def("_efp_get_induced_dipole_conj_values", &_efp_get_induced_dipole_conj_values, + "Wrapped gets values of polarization conjugated induced dipoles") + .def("_efp_get_energy", &efp_get_energy, "Gets computed energy components") + .def("_efp_get_gradient", &_efp_get_gradient, "Gets computed EFP energy gradient") + .def("_efp_get_frag_count", &_efp_get_frag_count, "Gets the number of fragments in this computation") + .def("_efp_get_frag_name", &_efp_get_frag_name, "Gets the name of the specified effective fragment") + .def("_efp_get_frag_atom_count", &_efp_get_frag_atom_count, "Gets the number of atoms on fragment") + .def("_efp_get_frag_atoms", &_efp_get_frag_atoms, + "Wrapped get atoms comprising the specified 0-indexed fragment, ``frag_idx``", + py::arg("frag_idx"), py::arg("frag_natom")) + .def("get_electric_field", &efp_get_electric_field, + "Gets electric field for a point on 0-indexed fragment *arg0* and returns it in *arg1*") + .def("torque_to_derivative", &efp_torque_to_derivative, + "Convert rigid body torque *arg1* to derivatives *arg2* of energy by Euler angles *arg0*") + .def("clean", &_clean, "Preferred destructor combining libefp::efp_shutdown and field_fn release") + .def("shutdown", &efp_shutdown, "Release all resources used by this EFP"); +} + +// Unwrapped +// * efp_print_banner +// * efp_set_electron_density_field_user_data # what is this? +// * result_to_string + +// clang-format off +// .def("set_error_log", &efp_set_error_log, "Sets the error log callback function") +// .def("skip_fragments", &efp_skip_fragments, "Skip interactions between the fragments *arg0* and *arg1* inclusive if *arg2*") +// .def("set_coordinates", &efp_set_coordinates, "Update positions and orientations of all fragments with types in array *arg0* and returns them in *arg1*") +// .def("get_stress_tensor", &efp_get_stress_tensor, "Gets the stress tensor and returns it in *arg0*") +// .def("get_ai_screen", &efp_get_ai_screen, "Gets the ab initio screening parameters on 0-indexed fragment *arg0* and returns it in *arg1*") +// .def("set_orbital_energies", &efp_set_orbital_energies, "Sets ab initio orbital energies to *efp0* number core orbitals, *efp1* number active orbitals, *efp2* number virtual orbitals, *efp3* array of orbital energies") +// .def("set_dipole_integrals", &efp_set_dipole_integrals, "Sets ab initio dipole integrals to *efp0* number core orbitals, *efp1* number active orbitals, *efp2* number virtual orbitals, *efp3* dipole integral matrices") +// .def("get_frag_multipole_count", &efp_get_frag_multipole_count, "Gets number of electrostatic multipole points on 0-indexed fragment *arg0* and returns it in *arg1*") +// .def("get_lmo_count", &efp_get_lmo_count, "Gets the number of LMOs in a fragment and returns it in *arg0*") +// .def("get_lmo_coordinates", &efp_get_lmo_coordinates, "Gets coordinates of LMO centroids on 0-indexed fragment *arg0* and returns it in *arg1*") +// .def("get_xrfit", &efp_get_xrfit, "Gets parameters of fitted exchange-repulsion on 0-indexed fragment *arg0* and returns it in *arg1*") +// .def("get_atomic_gradient", &efp_get_atomic_gradient, "Gets computed EFP energy gradient on individual atoms and returns it in *arg0*") +// .def("get_frag_mass", &efp_get_frag_mass, "Gets total mass on 0-indexed fragment *arg0* and returns it in *arg1*") +// .def("get_frag_inertia", &efp_get_frag_inertia, "Gets fragment principal moments of inertia on 0-indexed fragment *arg0* and returns it in *arg1*") +// clang-format on diff --git a/python/py.sh b/python/py.sh new file mode 100755 index 00000000..a1f4ce40 --- /dev/null +++ b/python/py.sh @@ -0,0 +1,8 @@ +rm -rf build +mkdir build +cd build + +cmake -DCMAKE_INSTALL_PREFIX=$LIBEFP_DIR/installed -DCMAKE_PREFIX_PATH="$CONDA_PREFIX;$LIBEFP_DIR/installed" .. + +make VERBOSE=1 +make install diff --git a/python/up_core.cc b/python/up_core.cc new file mode 100644 index 00000000..2a42088d --- /dev/null +++ b/python/up_core.cc @@ -0,0 +1,704 @@ +/* + pylibefp/core.cc: Main binding of libefp with pybind11 + + Copyright (c) 2017-2019 The Psi4 Developers + + All rights reserved. Use of this source code is governed by a + BSD-style license that can be found in the LICENSE file. +*/ + +#include +#if __has_include() +#include +#else +#include "private.h" +#endif + +#include + +#include +#include + +namespace py = pybind11; + +class libefpException : public std::exception { + public: + explicit libefpException(const char* m) : message{m} {} + virtual const char* what() const noexcept override { return message.c_str(); } + + private: + std::string message = ""; +}; + +std::string _efp_banner(efp* efp) { + std::string str; + str = std::string(efp_banner()); + return str; +} + +py::tuple _efp_get_frag_name(efp* efp, size_t frag_idx) { + enum efp_result res; + char buffer[80]; + + res = efp_get_frag_name(efp, frag_idx, 80, buffer); + std::string fname = std::string(buffer); + + py::tuple rets = py::make_tuple(res, fname); + return rets; +} + +efp_result _efp_set_frag_coordinates(efp* efp, size_t frag_idx, efp_coord_type ctype, py::list coord) { + enum efp_result res; + + double* ccoords = NULL; + ccoords = new double[12]; // room for xyzabc (6), points (9), or rotmat (12) + double* pcoords = ccoords; + for (auto itm : coord) *pcoords++ = itm.cast(); + + res = efp_set_frag_coordinates(efp, frag_idx, ctype, ccoords); + return res; +} + +efp_result _efp_set_point_charge_values(efp* efp, size_t n_ptc, py::list ptc) { + enum efp_result res; + + double* cptc = NULL; + cptc = new double[n_ptc]; + double* pptc = cptc; + for (auto itm : ptc) *pptc++ = itm.cast(); + + res = efp_set_point_charge_values(efp, cptc); + return res; +} + +efp_result _efp_set_point_charge_coordinates(efp* efp, size_t n_ptc, py::list xyz) { + enum efp_result res; + + double* cxyz = NULL; + cxyz = new double[3 * n_ptc]; + double* pxyz = cxyz; + for (auto itm : xyz) *pxyz++ = itm.cast(); + + res = efp_set_point_charge_coordinates(efp, cxyz); + return res; +} + +efp_result _efp_set_point_charges(efp* efp, size_t n_ptc, py::list ptc, py::list xyz) { + enum efp_result res; + + double* cptc = NULL; + cptc = new double[n_ptc]; + double* pptc = cptc; + for (auto itm : ptc) *pptc++ = itm.cast(); + + double* cxyz = NULL; + cxyz = new double[3 * n_ptc]; + double* pxyz = cxyz; + for (auto itm : xyz) *pxyz++ = itm.cast(); + + res = efp_set_point_charges(efp, n_ptc, cptc, cxyz); + return res; +} + +py::tuple _efp_get_frag_charge(efp* efp, size_t frag_idx) { + enum efp_result res; + double charge = 0.0; + + res = efp_get_frag_charge(efp, frag_idx, &charge); + + py::tuple rets = py::make_tuple(res, charge); + return rets; +} + +py::tuple _efp_get_frag_multiplicity(efp* efp, size_t frag_idx) { + enum efp_result res; + int multiplicity = 0; + + res = efp_get_frag_multiplicity(efp, frag_idx, &multiplicity); + + py::tuple rets = py::make_tuple(res, multiplicity); + return rets; +} + +py::tuple _efp_get_gradient(efp* efp, size_t n_frag) { + enum efp_result res; + py::list grad; + + double* ccoords = NULL; + ccoords = new double[6 * n_frag]; + double* pcoords = ccoords; + + res = efp_get_gradient(efp, ccoords); + for (size_t ic = 0; ic < 6 * n_frag; ++ic) grad.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, grad); + return rets; +} + +py::tuple _efp_get_frag_count(efp* efp) { + enum efp_result res; + size_t n_frag = 0; + + res = efp_get_frag_count(efp, &n_frag); + + py::tuple rets = py::make_tuple(res, n_frag); + return rets; +} + +py::tuple _efp_get_frag_atom_count(efp* efp, size_t frag_idx) { + enum efp_result res; + size_t n_atom = 0; + + res = efp_get_frag_atom_count(efp, frag_idx, &n_atom); + + py::tuple rets = py::make_tuple(res, n_atom); + return rets; +} + +py::tuple _efp_get_periodic_box(efp* efp) { + enum efp_result res; + py::list xyz; + + size_t dim = 6; + double* ccoords = NULL; + ccoords = new double[dim]; + double* pcoords = ccoords; + + res = efp_get_periodic_box(efp, ccoords); + for (size_t ic = 0; ic < dim; ++ic) xyz.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, xyz); + return rets; +} + +py::tuple _efp_get_multipole_count(efp* efp) { + enum efp_result res; + size_t n_mult = 0; + + res = efp_get_multipole_count(efp, &n_mult); + + py::tuple rets = py::make_tuple(res, n_mult); + return rets; +} + +py::tuple _efp_get_multipole_coordinates(efp* efp, size_t n_mult) { + enum efp_result res; + py::list xyz; + + size_t dim = 3 * n_mult; + double* ccoords = NULL; + ccoords = new double[dim]; + double* pcoords = ccoords; + + res = efp_get_multipole_coordinates(efp, ccoords); + for (size_t ic = 0; ic < dim; ++ic) xyz.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, xyz); + return rets; +} + +py::tuple _efp_get_multipole_values(efp* efp, size_t n_mult) { + enum efp_result res; + py::list mult; + + size_t dim = (1 + 3 + 6 + 10) * n_mult; + double* ccoords = NULL; + ccoords = new double[dim]; + double* pcoords = ccoords; + + res = efp_get_multipole_values(efp, ccoords); + for (size_t ic = 0; ic < dim; ++ic) mult.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, mult); + return rets; +} + +py::tuple _efp_get_induced_dipole_count(efp* efp) { + enum efp_result res; + size_t n_dip = 0; + + res = efp_get_induced_dipole_count(efp, &n_dip); + + py::tuple rets = py::make_tuple(res, n_dip); + return rets; +} + +py::tuple _efp_get_induced_dipole_coordinates(efp* efp, size_t n_dip) { + enum efp_result res; + py::list xyz; + + size_t dim = 3 * n_dip; + double* ccoords = NULL; + ccoords = new double[dim]; + double* pcoords = ccoords; + + res = efp_get_induced_dipole_coordinates(efp, ccoords); + for (size_t ic = 0; ic < dim; ++ic) xyz.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, xyz); + return rets; +} + +py::tuple _efp_get_induced_dipole_values(efp* efp, size_t n_dip) { + enum efp_result res; + py::list vals; + + size_t dim = 3 * n_dip; + double* ccoords = NULL; + ccoords = new double[dim]; + double* pcoords = ccoords; + + res = efp_get_induced_dipole_values(efp, ccoords); + for (size_t ic = 0; ic < dim; ++ic) vals.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, vals); + return rets; +} + +py::tuple _efp_get_induced_dipole_conj_values(efp* efp, size_t n_dip) { + enum efp_result res; + py::list vals; + + size_t dim = 3 * n_dip; + double* ccoords = NULL; + ccoords = new double[dim]; + double* pcoords = ccoords; + + res = efp_get_induced_dipole_conj_values(efp, ccoords); + for (size_t ic = 0; ic < dim; ++ic) vals.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, vals); + return rets; +} + +py::tuple _efp_get_point_charge_count(efp* efp) { + enum efp_result res; + size_t n_ptc = 0; + + res = efp_get_point_charge_count(efp, &n_ptc); + + py::tuple rets = py::make_tuple(res, n_ptc); + return rets; +} + +py::tuple _efp_get_point_charge_coordinates(efp* efp, size_t n_ptc) { + enum efp_result res; + py::list xyz; + + size_t dim = 3 * n_ptc; + double* ccoords = NULL; + ccoords = new double[dim]; + double* pcoords = ccoords; + + res = efp_get_point_charge_coordinates(efp, ccoords); + for (size_t ic = 0; ic < dim; ++ic) xyz.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, xyz); + return rets; +} + +py::tuple _efp_get_point_charge_values(efp* efp, size_t n_ptc) { + enum efp_result res; + py::list vals; + + size_t dim = n_ptc; + double* ccoords = NULL; + ccoords = new double[dim]; + double* pcoords = ccoords; + + res = efp_get_point_charge_values(efp, ccoords); + for (size_t ic = 0; ic < dim; ++ic) vals.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, vals); + return rets; +} + +// TODO: probably filling would fail if res not good in a lot of these + +py::tuple _efp_get_frag_atoms(efp* efp, size_t frag_idx, size_t frag_natom) { + enum efp_result res; + struct efp_atom * atoms = new struct efp_atom[frag_natom]; + py::list ats_info; + + if ((res = efp_get_frag_atoms(efp, frag_idx, frag_natom, atoms))) { + py::tuple rets = py::make_tuple(res, ats_info); + return rets; + } + + for (size_t iat = 0; iat < frag_natom; ++iat) { + py::dict at_info; + at_info[py::str("Z")] = atoms[iat].znuc; + at_info[py::str("mass")] = atoms[iat].mass; + at_info[py::str("label")] = atoms[iat].label; + at_info[py::str("x")] = atoms[iat].x; + at_info[py::str("y")] = atoms[iat].y; + at_info[py::str("z")] = atoms[iat].z; + ats_info.append(at_info); + } + delete [] atoms; + + py::tuple rets = py::make_tuple(res, ats_info); + return rets; +} + +// py::dict extend_efp_get_atoms(efp* efp) { +// enum efp_result res; +// size_t frag_natom, natom=0; +// double frag_chg; +// int frag_mult; +// py::list fr, frt, frcg, frmp, full_atoms; +// +// py::dict mol_info; +// mol_info[py::str("units")] = "Bohr"; +// mol_info[py::str("input_units_to_au")] = 1.0; +// mol_info[py::str("fix_com")] = true; +// mol_info[py::str("fix_orientation")] = true; +// mol_info[py::str("fix_symmetry")] = "c1"; +// +// size_t frag_count = twrapped_efp_get_frag_count(efp); +// for (int ifr = 0; ifr < frag_count; ++ifr) { +// frag_natom = twrapped_efp_get_frag_atom_count(efp, ifr); +// py::list f; +// f.append(natom); +// natom = natom + frag_natom; +// f.append(natom); +// fr.append(f); +// frt.append("Real"); +// frcg.append(static_cast(wrapped_efp_get_frag_charge(efp, ifr))); +// frmp.append(wrapped_efp_get_frag_multiplicity(efp, ifr)); +// +// struct efp_atom atoms[frag_natom]; +// if ((res = efp_get_frag_atoms(efp, ifr, frag_natom, atoms))) { +// std::string sres = "efp_get_frag_atoms: " + rts(res) + "\n"; +// throw libefpException(sres.c_str()); +// } +// +// for (size_t iat = 0; iat < frag_natom; ++iat) { +// py::dict at_init; +// at_init[py::str("Z")] = atoms[iat].znuc; +// at_init[py::str("mass")] = atoms[iat].mass; +// at_init[py::str("label")] = atoms[iat].label; +// at_init[py::str("x")] = atoms[iat].x; +// at_init[py::str("y")] = atoms[iat].y; +// at_init[py::str("z")] = atoms[iat].z; +// full_atoms.append(at_init); +// } +// } +// +// mol_info[py::str("fragments")] = fr; +// mol_info[py::str("fragment_types")] = frt; +// mol_info[py::str("fragment_charges")] = frcg; +// mol_info[py::str("fragment_multiplicities")] = frmp; +// mol_info[py::str("full_atoms")] = full_atoms; +// +// return mol_info; +//} + +py::tuple _efp_get_coordinates(efp* efp, size_t n_frag) { + enum efp_result res; + py::list xyzabc; + + double* ccoords = NULL; + ccoords = new double[6 * n_frag]; + double* pcoords = ccoords; + + res = efp_get_coordinates(efp, pcoords); + for (size_t ic = 0; ic < 6 * n_frag; ++ic) xyzabc.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, xyzabc); + return rets; +} + +py::tuple _efp_get_frag_xyzabc(efp* efp, size_t frag_idx) { + enum efp_result res; + py::list xyzabc; + + double* ccoords = NULL; + ccoords = new double[6]; + double* pcoords = ccoords; + + res = efp_get_frag_xyzabc(efp, frag_idx, pcoords); + for (size_t ic = 0; ic < 6; ++ic) xyzabc.append(ccoords[ic]); + + py::tuple rets = py::make_tuple(res, xyzabc); + return rets; +} + +py::tuple _efp_get_wavefunction_dependent_energy(efp* efp) { + enum efp_result res; + double ene; + + res = efp_get_wavefunction_dependent_energy(efp, &ene); + + py::tuple rets = py::make_tuple(res, ene); + return rets; +} + +// stash the python E_field fn here +py::function field_fn_callback; +py::function get_field_fn_callback(void) { return field_fn_callback; } + +efp_result cwrapped_field_fn(size_t n_pt, const double* xyz, double* field, void* user_data) { + // prepare xyz: double* --> py::list + py::list py_xyz; + for (size_t ic = 0; ic < 3 * n_pt; ++ic) py_xyz.append(xyz[ic]); + + py::function fn = get_field_fn_callback(); + py::list py_field = fn(py_xyz); + + // harvest field: py::list --> double* + double* field_p = field; + for (auto itm : py_field) *field_p++ = itm.cast(); + + return EFP_RESULT_SUCCESS; +} + +void _efp_set_electron_density_field_fn(efp* efp, py::function fn) { + field_fn_callback = fn; + efp_set_electron_density_field_fn(efp, cwrapped_field_fn); +} + +py::function dummy; +void _clear_electron_density_field_fn(efp* efp) { field_fn_callback = dummy; } + +void _clean(efp* efp) { + _clear_electron_density_field_fn(efp); + efp_shutdown(efp); +} + +// // py::list coord --> double* ccoords +// double* ccoords = NULL; +// ccoords = new double[12]; // room for xyzabc (6), points (9), or rotmat (12) +// double* pcoords = ccoords; +// for (auto itm : coord) +// *pcoords++ = itm.cast(); +// +// // double* coords --> py::list +// py::list coord; +// +// double* ccoords = NULL; +// ccoords = new double[12]; +// double* pcoords = ccoords; +// +// double* ccoords = new double[12]; // alt +// +// res = efp_get_multipole_coordinates(efp, ccoords); +// for (size_t ic = 0; ic < 12; ++ic) +// coord.append(ccoords[ic]); + +PYBIND11_MODULE(core, m) { + m.doc() = "Python wrapping of parallel implementation of the Effective Fragment Potential (EFP) method"; + + m.attr("__copyright__") = py::str("Copyright (c) 2017-2019 The Psi4 Developers"); + py::exception(m, "libefpException"); + + // clang-format off + py::enum_(m, "efp_result", "Result of a libefp operation") + .value("EFP_RESULT_SUCCESS", EFP_RESULT_SUCCESS, "Operation was successful.") + .value("EFP_RESULT_FATAL", EFP_RESULT_FATAL, "Fatal error has occurred.") + .value("EFP_RESULT_NO_MEMORY", EFP_RESULT_NO_MEMORY, "Insufficient memory.") + .value("EFP_RESULT_FILE_NOT_FOUND", EFP_RESULT_FILE_NOT_FOUND, "File not found.") + .value("EFP_RESULT_SYNTAX_ERROR", EFP_RESULT_SYNTAX_ERROR, "Syntax error.") + .value("EFP_RESULT_UNKNOWN_FRAGMENT", EFP_RESULT_UNKNOWN_FRAGMENT, "Unknown EFP fragment.") + .value("EFP_RESULT_POL_NOT_CONVERGED", EFP_RESULT_POL_NOT_CONVERGED, "Polarization SCF procedure did not converge.") + .export_values(); + + py::enum_(m, "efp_term", py::arithmetic(), "Flags to specify EFP energy terms") + .value("EFP_TERM_ELEC", EFP_TERM_ELEC, "EFP/EFP electrostatics.") + .value("EFP_TERM_POL", EFP_TERM_POL, "EFP/EFP polarization.") + .value("EFP_TERM_DISP", EFP_TERM_DISP, "EFP/EFP dispersion.") + .value("EFP_TERM_XR", EFP_TERM_XR, "EFP/EFP exchange repulsion.") + .value("EFP_TERM_CHTR", EFP_TERM_CHTR, "EFP/EFP charge transfer, reserved for future.") + .value("EFP_TERM_AI_ELEC", EFP_TERM_AI_ELEC, "Ab initio/EFP electrostatics.") + .value("EFP_TERM_AI_POL", EFP_TERM_AI_POL, "Ab initio/EFP polarization.") + .value("EFP_TERM_AI_DISP", EFP_TERM_AI_DISP, "Ab initio/EFP dispersion, reserved for future.") + .value("EFP_TERM_AI_XR", EFP_TERM_AI_XR, "Ab initio/EFP exchange repulsion, reserved for future.") + .value("EFP_TERM_AI_CHTR", EFP_TERM_AI_CHTR, "Ab initio/EFP charge transfer, reserved for future.") + .value("EFP_TERM_QQ", EFP_TERM_QQ, "MM-like charge-charge coulomb interaction") // SKP + .value("EFP_TERM_LJ", EFP_TERM_LJ, "MM-like Lennard-Jones interaction") // SKP + .value("EFP_TERM_AI_QQ", EFP_TERM_AI_QQ, "QM/MM coulomb interaction with MM charges") // SKP + .export_values(); +// ============= SKP addition ========================== // + py::enum_(m, "efp_special_term", py::arithmetic(), "Flags to specify EFP energy terms for a special fragment") + .value("EFP_SPEC_TERM_ELEC", EFP_SPEC_TERM_ELEC, "EFP/EFP electrostatics.") + .value("EFP_SPEC_TERM_POL", EFP_SPEC_TERM_POL, "EFP/EFP polarization.") + .value("EFP_SPEC_TERM_DISP", EFP_SPEC_TERM_DISP, "EFP/EFP dispersion.") + .value("EFP_SPEC_TERM_XR", EFP_SPEC_TERM_XR, "EFP/EFP exchange repulsion.") + .value("EFP_SPEC_TERM_CHTR", EFP_SPEC_TERM_CHTR, "EFP/EFP charge transfer, reserved for future.") + .value("EFP_SPEC_TERM_QQ", EFP_SPEC_TERM_QQ, "MM-like charge-charge coulomb interaction") + .value("EFP_SPEC_TERM_LJ", EFP_SPEC_TERM_LJ, "MM-like Lennard-Jones interaction") + .export_values(); +//====================================================== // + py::enum_(m, "efp_disp_damp", "Fragment-fragment dispersion damping type") + .value("EFP_DISP_DAMP_OVERLAP", EFP_DISP_DAMP_OVERLAP, "Overlap-based damping (default).") + .value("EFP_DISP_DAMP_TT", EFP_DISP_DAMP_TT, "Tang-Toennies damping.") + .value("EFP_DISP_DAMP_OFF", EFP_DISP_DAMP_OFF, "No dispersion damping.") + .export_values(); + + py::enum_(m, "efp_elec_damp", "Fragment-fragment electrostatic damping type") + .value("EFP_ELEC_DAMP_SCREEN", EFP_ELEC_DAMP_SCREEN, "SCREEN-controlled damping (default).") + .value("EFP_ELEC_DAMP_OVERLAP", EFP_ELEC_DAMP_OVERLAP, "Overlap-based damping.") + .value("EFP_ELEC_DAMP_OFF", EFP_ELEC_DAMP_OFF, "No electrostatic damping.") + .export_values(); + + py::enum_(m, "efp_pol_damp", "Fragment-fragment polarization damping type") + .value("EFP_POL_DAMP_TT", EFP_POL_DAMP_TT, "Tang-Toennies like damping (default).") + .value("EFP_POL_DAMP_OFF", EFP_POL_DAMP_OFF, "No polarization damping.") + .export_values(); + + py::enum_(m, "efp_coord_type", "Describes the way fragment coordinates are specified") + .value("EFP_COORD_TYPE_XYZABC", EFP_COORD_TYPE_XYZABC, "Coordinates of center of mass of a fragment and Euler angles.") + .value("EFP_COORD_TYPE_POINTS", EFP_COORD_TYPE_POINTS, "Coordinates of three points belonging to a fragment.") + .value("EFP_COORD_TYPE_ROTMAT", EFP_COORD_TYPE_ROTMAT, "Coordinates of fragment center of mass and its rotation matrix.") + .export_values(); + + + py::enum_(m, "efp_pol_driver", "Driver used for solving polarization equations") + .value("EFP_POL_DRIVER_ITERATIVE", EFP_POL_DRIVER_ITERATIVE, "Iterative solution of polarization equations.") + .value("EFP_POL_DRIVER_DIRECT", EFP_POL_DRIVER_DIRECT, "Direct solution of polarization equations.") + .export_values(); + + py::class_(m, "efp_opts", "Options controlling EFP computation") + .def(py::init()) + .def_readwrite("terms", &efp_opts::terms, "Specifies which energy terms to compute.") + .def_readwrite("disp_damp", &efp_opts::disp_damp, "Dispersion damping type (see #efp_disp_damp).") + .def_readwrite("elec_damp", &efp_opts::elec_damp, "Electrostatic damping type (see #efp_elec_damp).") + .def_readwrite("pol_damp", &efp_opts::pol_damp, "Polarization damping type (see #efp_pol_damp).") + .def_readwrite("pol_driver", &efp_opts::pol_driver, "Driver used to find polarization induced dipoles.") + .def_readwrite("enable_pbc", &efp_opts::enable_pbc, "Enable periodic boundary conditions if nonzero.") + .def_readwrite("enable_cutoff", &efp_opts::enable_cutoff, "Enable frag-fraginteraction cutoff if nonzero.") + .def_readwrite("swf_cutoff", &efp_opts::swf_cutoff, "Cutoff distance for frag-frag interactions.") + .def_readwrite("special_terms", &efp_opts::special_terms, "Terms for a special fragment - typically QM or ML fragment") // SKP + .def_readwrite("enable_pairwise", &efp_opts::enable_pairwise, "Enable ligand-fragment energy decomposition from total system") // SKP + .def_readwrite("ligand", &efp_opts::ligand, "Ligand number") // SKP + .def_readwrite("special_fragment", &efp_opts::special_fragment, "Index of a special (QM or ML) fragment"); // SKP + + py::class_(m, "efp_energy", "EFP energy terms") + .def(py::init()) + .def_readwrite("electrostatic", &efp_energy::electrostatic, "EFP/EFP electrostatic energy.") + .def_readwrite("charge_penetration", &efp_energy::charge_penetration, "Charge penetration energy from" + "overlap-based electrostatic damping." + "Zero if overlap-based damping is turned" + "off.") + .def_readwrite("electrostatic_point_charges", &efp_energy::electrostatic_point_charges, + "Interaction energy of EFP electrostatics" + "with point charges.") + .def_readwrite("polarization", &efp_energy::polarization, "All polarization energy goes here." + "Polarization is computed self-consist-" + "ently so it can't be separated into" + "EFP/EFP and AI/EFP parts.") + .def_readwrite("dispersion", &efp_energy::dispersion, "EFP/EFP dispersion energy.") + .def_readwrite("ai_dispersion", &efp_energy::ai_dispersion, "AI/EFP dispersion energy.") + .def_readwrite("exchange_repulsion", &efp_energy::exchange_repulsion, "EFP/EFP exchange-repulsion energy.") + .def_readwrite("qq", &efp_energy::qq, "EFP/EFP charge-charge energy.") + .def_readwrite("total", &efp_energy::total, "Sum of all the above energy terms."); + + py::class_(m, "efp_atom", "EFP atom info") + .def(py::init()) + //.def_readonly("label", &efp_atom::label, "Atom label.") // char label[32] + .def_readwrite("x", &efp_atom::x, "X coordinate of atom position.") + .def_readwrite("y", &efp_atom::y, "Y coordinate of atom position.") + .def_readwrite("z", &efp_atom::z, "Z coordinate of atom position.") + .def_readwrite("mass", &efp_atom::mass, "Atom mass.") + .def_readwrite("znuc", &efp_atom::znuc, "Nuclear charge."); + // clang-format on + + py::class_>(m, "efp", py::dynamic_attr(), "Main libefp opaque structure") + // dynamic_attr for stashing input_units_to_au + .def(py::init(&efp_create), "Creates a new efp object via `efp_create`") + .def("banner", &_efp_banner, "Gets a human readable banner string with information about the library") + .def("_efp_set_opts", &efp_set_opts, "Wrapped set computation options") + .def("_efp_get_opts", &efp_get_opts, "Gets currently set computation options") + .def("_efp_add_potential", &efp_add_potential, "Wrapped adds EFP potential from full file path") + .def("_efp_add_fragment", &efp_add_fragment, "Wrapped adds a new fragment to the EFP subsystem") + .def("_efp_prepare", &efp_prepare, "Wrapped prepares the calculation") + .def("set_electron_density_field_fn", &_efp_set_electron_density_field_fn, + "Sets the callback function which computes electric field from electrons in ab initio subsystem") + .def("clear_electron_density_field_fn", &_clear_electron_density_field_fn, + "Detaches callback function from EFP instance (necessary for destruction. Called by clean or call " + "alongside shutdown") + .def("_efp_set_point_charges", &_efp_set_point_charges, + "Wrapped setup arbitrary point charges of magnitude at locations interacting with EFP subsystem", + py::arg("n_ptc"), py::arg("ptc"), py::arg("xyz")) + .def("_efp_set_point_charge_coordinates", &_efp_set_point_charge_coordinates, + "Wrapped sets coordinates of arbitrary point charges interacting with EFP subsystem", + py::arg("n_ptc"), py::arg("xyz")) + .def("_efp_set_point_charge_values", &_efp_set_point_charge_values, + "Wrapped sets magnitudes of arbitrary point charges interacting with EFP subsystem") + .def("_efp_get_point_charge_count", &_efp_get_point_charge_count, + "Gets the number of currently set point charges") + .def("_efp_get_point_charge_coordinates", &_efp_get_point_charge_coordinates, + "Wrapped gets coordinates of currently set point charges", + py::arg("n_ptc")) + .def("_efp_get_point_charge_values", &_efp_get_point_charge_values, + "Wrapped gets values of currently set point charges") + .def("get_point_charge_gradient", &efp_get_point_charge_gradient, + "Gets gradient on point charges from EFP subsystem and returns them in *arg1*") + .def("_efp_set_frag_coordinates", &_efp_set_frag_coordinates, + "Wrapped updates position and orientation of the specified effective fragment with type", + py::arg("frag_idx"), py::arg("ctype"), py::arg("coord")) + .def("_efp_get_coordinates", &_efp_get_coordinates, + py::arg("n_frag"), + "Wrapped gets center of mass positions and Euler angles of the effective fragments") + .def("_efp_get_frag_xyzabc", &_efp_get_frag_xyzabc, py::arg("frag_idx"), + "Wrapped gets center of mass position and Euler angles on fragment ``frag_idx``") + .def("_efp_set_periodic_box", &efp_set_periodic_box, "Wrapped sets up periodic box size") + .def("_efp_get_periodic_box", &_efp_get_periodic_box, "Wrapped gets periodic box size") + .def("_efp_get_wavefunction_dependent_energy", &_efp_get_wavefunction_dependent_energy, + "Wrapped updates wavefunction-dependent energy terms") + .def("_efp_compute", &efp_compute, py::arg("do_gradient") = false, + "Perform the EFP computation, optionally doing gradient") + .def("_efp_get_frag_charge", &_efp_get_frag_charge, "Gets total charge on fragment", py::arg("frag_idx")) + .def("_efp_get_frag_multiplicity", &_efp_get_frag_multiplicity, "Gets spin multiplicity on fragment") + // Multipoles & Induced Dipoles + .def("_efp_get_multipole_count", &_efp_get_multipole_count, + "Wrapped gets total number of multipoles from EFP electrostatics") + .def("_efp_get_multipole_coordinates", &_efp_get_multipole_coordinates, + "Wrapped gets coordinates of electrostatics multipoles") + .def("_efp_get_multipole_values", &_efp_get_multipole_values, + "Wrapped gets electrostatics multipoles from EFP fragments") + .def("_efp_get_induced_dipole_count", &_efp_get_induced_dipole_count, + "Wrapped gets the number of polarization induced dipoles") + .def("_efp_get_induced_dipole_coordinates", &_efp_get_induced_dipole_coordinates, + "Wrapped gets coordinates of induced dipoles") + .def("_efp_get_induced_dipole_values", &_efp_get_induced_dipole_values, + "Wrapped gets values of polarization induced dipoles") + .def("_efp_get_induced_dipole_conj_values", &_efp_get_induced_dipole_conj_values, + "Wrapped gets values of polarization conjugated induced dipoles") + .def("_efp_get_energy", &efp_get_energy, "Gets computed energy components") + .def("_efp_get_gradient", &_efp_get_gradient, "Gets computed EFP energy gradient") + .def("_efp_get_frag_count", &_efp_get_frag_count, "Gets the number of fragments in this computation") + .def("_efp_get_frag_name", &_efp_get_frag_name, "Gets the name of the specified effective fragment") + .def("_efp_get_frag_atom_count", &_efp_get_frag_atom_count, "Gets the number of atoms on fragment") + .def("_efp_get_frag_atoms", &_efp_get_frag_atoms, + "Wrapped get atoms comprising the specified 0-indexed fragment, ``frag_idx``", + py::arg("frag_idx"), py::arg("frag_natom")) + .def("get_electric_field", &efp_get_electric_field, + "Gets electric field for a point on 0-indexed fragment *arg0* and returns it in *arg1*") + .def("torque_to_derivative", &efp_torque_to_derivative, + "Convert rigid body torque *arg1* to derivatives *arg2* of energy by Euler angles *arg0*") + .def("clean", &_clean, "Preferred destructor combining libefp::efp_shutdown and field_fn release") + .def("shutdown", &efp_shutdown, "Release all resources used by this EFP"); +} + +// Unwrapped +// * efp_print_banner +// * efp_set_electron_density_field_user_data # what is this? +// * result_to_string + +// clang-format off +// .def("set_error_log", &efp_set_error_log, "Sets the error log callback function") +// .def("skip_fragments", &efp_skip_fragments, "Skip interactions between the fragments *arg0* and *arg1* inclusive if *arg2*") +// .def("set_coordinates", &efp_set_coordinates, "Update positions and orientations of all fragments with types in array *arg0* and returns them in *arg1*") +// .def("get_stress_tensor", &efp_get_stress_tensor, "Gets the stress tensor and returns it in *arg0*") +// .def("get_ai_screen", &efp_get_ai_screen, "Gets the ab initio screening parameters on 0-indexed fragment *arg0* and returns it in *arg1*") +// .def("set_orbital_energies", &efp_set_orbital_energies, "Sets ab initio orbital energies to *efp0* number core orbitals, *efp1* number active orbitals, *efp2* number virtual orbitals, *efp3* array of orbital energies") +// .def("set_dipole_integrals", &efp_set_dipole_integrals, "Sets ab initio dipole integrals to *efp0* number core orbitals, *efp1* number active orbitals, *efp2* number virtual orbitals, *efp3* dipole integral matrices") +// .def("get_frag_multipole_count", &efp_get_frag_multipole_count, "Gets number of electrostatic multipole points on 0-indexed fragment *arg0* and returns it in *arg1*") +// .def("get_lmo_count", &efp_get_lmo_count, "Gets the number of LMOs in a fragment and returns it in *arg0*") +// .def("get_lmo_coordinates", &efp_get_lmo_coordinates, "Gets coordinates of LMO centroids on 0-indexed fragment *arg0* and returns it in *arg1*") +// .def("get_xrfit", &efp_get_xrfit, "Gets parameters of fitted exchange-repulsion on 0-indexed fragment *arg0* and returns it in *arg1*") +// .def("get_atomic_gradient", &efp_get_atomic_gradient, "Gets computed EFP energy gradient on individual atoms and returns it in *arg0*") +// .def("get_frag_mass", &efp_get_frag_mass, "Gets total mass on 0-indexed fragment *arg0* and returns it in *arg1*") +// .def("get_frag_inertia", &efp_get_frag_inertia, "Gets fragment principal moments of inertia on 0-indexed fragment *arg0* and returns it in *arg1*") +// clang-format on diff --git a/python/up_wrapper.py b/python/up_wrapper.py new file mode 100644 index 00000000..5455d185 --- /dev/null +++ b/python/up_wrapper.py @@ -0,0 +1,1761 @@ +# +# @BEGIN LICENSE +# +# pylibefp/wrapper/wrapper.py: +# +# Copyright (c) 2017-2019 The Psi4 Developers +# +# All rights reserved. Use of this source code is governed by a +# BSD-style license that can be found in the LICENSE file. +# +# @END LICENSE +# + +import os +import re +import sys +import math +import functools +from pathlib import Path +from typing import Dict + +import qcelemental as qcel + +from . import core +from .exceptions import Fatal, NoMemory, FileNotFound, EFPSyntaxError, UnknownFragment, PolNotConverged, PyEFPSyntaxError + +_lbtl = { + 'libefp': {}, + 'psi': { + 'elec': 'elst', + 'pol': 'ind', + 'xr': 'exch', + 'qq': 'charge_charge', + 'lj': 'lennard-jones', + 'elec_damp': 'elst_damping', + 'pol_damp': 'ind_damping', + 'disp_damp': 'disp_damping', + 'pol_driver': 'ind_driver', + 'ai_elec': 'qm_elst', + 'ai_pol': 'qm_ind', + 'ai_disp': 'qm_disp', + 'ai_xr': 'qm_exch', + 'ai_chtr': 'qm_chtr', + 'ai_qq': 'qm_qq', + }, +} + + +def _rekey(rawdict, label): + newdict = rawdict.copy() + for key in rawdict.keys(): + topic = _lbtl[label].get(key, key) + newdict[topic] = newdict.pop(key) + return newdict + + +def _result_to_error(res, msg=''): + + if res == core.efp_result.EFP_RESULT_SUCCESS: + return + elif res == core.efp_result.EFP_RESULT_FATAL: + raise Fatal(msg) + elif res == core.efp_result.EFP_RESULT_NO_MEMORY: + raise NoMemory(msg) + elif res == core.efp_result.EFP_RESULT_FILE_NOT_FOUND: + raise FileNotFound(msg) + elif res == core.efp_result.EFP_RESULT_SYNTAX_ERROR: + raise EFPSyntaxError(msg) + elif res == core.efp_result.EFP_RESULT_UNKNOWN_FRAGMENT: + raise UnknownFragment(msg) + elif res == core.efp_result.EFP_RESULT_POL_NOT_CONVERGED: + raise PolNotConverged(msg) + + +def prepare(efpobj): + """Prepare the calculation after all fragments added. + + Returns + ------- + None + + """ + res = efpobj._efp_prepare() + _result_to_error(res) + + +def compute(efpobj, do_gradient=False): + """Perform the EFP computation. + + Parameters + ---------- + do_gradient : bool, optional + If True, compute the gradient in addition to energy. + + Returns + ------- + None + + """ + res = efpobj._efp_compute(do_gradient) + _result_to_error(res) + + +def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): + """Searches for EFP fragments and adds to `efpobj`. + + Parameters + ---------- + potential : str or list + Single fragment name or a list of fragments, with or without + ".efp" extension. + fragpath : string, optional + String with ":"-separated paths that may include absolute + paths, relative paths, "$"-marked environment variables, and + the word LIBRARY. Relative paths and environment variables will + be expanded. "LIBRARY" will be expanded to the native libefp + fragment library. + duplicates_ok : bool, optional + Whether to continue or to return pylibefp.Fatal if asked + to load a duplicate potential according to libefp default + behavior. The `potential` list is always filtered to avoid + duplicates. Activating `duplicates_ok` additionally allows + repeated calls to this function to add duplicate potentials. + + Returns + ------- + None + + .. versionchanged:: 1.9 + Now handles `_L` fragments by only looking in LIBRARY paths for these. + Also now handles "deep" library layouts. Unlike C libefp, a fragment + without _L extension is sought in all fraglib paths, including LIBRARY, + if present. + + """ + paths = [] + library_paths = [] + for pth in fragpath.split(os.pathsep): + if pth == 'LIBRARY': + for lst in [paths, library_paths]: + for spth in '@libefp_FRAGLIB_DIRS@'.split(';'): + lst.append(spth) + lst.append('/scratch/gilbreth/paulsk/backup/oglib/uplibefp2/fraglib') + #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib') + #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib/databases') + #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') + #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib/databases') + #lst.append('/scratch/gilbreth/paulsk/backup/libefp/installed/share/libefp/fraglib') + #lst.append('/scratch/gilbreth/paulsk/backup/libefp/installed/share/libefp/fraglib/databases') + #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') + #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib/databases') + for spth in '@FRAGLIB_DATADIRS@'.split(';'): + lst.append(str((Path('@CMAKE_CURRENT_SOURCE_DIR@') / '..' / spth).resolve())) + else: + paths.append(os.path.expandvars(os.path.expanduser(pth))) + + # locate efpfrags full path name + abspath_pots = [] + if isinstance(potential, str): + potential = [potential] + uniq_pots = list(set(potential)) + for pot in uniq_pots: + pathpot = Path(pot).with_suffix('.efp') + search_paths = [] + + if pathpot.stem.upper().endswith('_L'): + # if "frag_L", only search for "LIBRARY/frag.efp" + file_pot_name = pathpot.with_name(str(pathpot.stem)[:-2]).with_suffix('.efp') + for pth in library_paths: + search_paths.append((pth / file_pot_name).resolve()) + else: + # otherwise, search all "/frag.efp", possibly incl. LIBRARY + for pth in paths: + search_paths.append((pth / pathpot).resolve()) + + for pth in search_paths: + if pth.is_file(): + abspath_pots.append(str(pth)) + break + + # load the potentials + for ipot, pot in enumerate(abspath_pots): + res = efpobj._efp_add_potential(pot) + try: + _result_to_error(res, uniq_pots[ipot]) + except Fatal as e: + if duplicates_ok: + pass + else: + raise Fatal('Invalid fragment name (probably already added): {}'.format(uniq_pots[ipot])) + + print(r""" EFP fragment {} read from {}""".format(uniq_pots[ipot], pot)) + + +def add_fragment(efpobj, fragments): + """Registers EFP fragments to `efpobj` in order. + + Parameters + ---------- + fragments : list of str + Names of fragments to define the EFP subsystem. + + .. versionchanged:: 1.9 + Fragments are checking `_L` extensions for library files, too. + + Returns + ------- + None + + """ + if isinstance(fragments, str): + fragments = [fragments] + for frag in fragments: + res = efpobj._efp_add_fragment(frag) + try: + _result_to_error(res, frag) + except UnknownFragment as e: + res = efpobj._efp_add_fragment(frag + "_L") + _result_to_error(res, frag) + + +def get_opts(efpobj, label='libefp'): + """Returns the options state of *efpobj* as a dictionary. + + Parameters + ---------- + label : {'libefp', 'psi'}, optional + Returned dictionary keys are identical to libefp efp_opts struct + names unless custom renaming requested via `label`. + + Returns + ------- + dict + Current options state of `efpobj` translated into bools, strings, + and floats, rather than libefp custom datatypes. + + """ + opts = core.efp_opts() + res = efpobj._efp_get_opts(opts) + _result_to_error(res) + + dopts = {} + + dopts['elec'] = bool(opts.terms & core.efp_term.EFP_TERM_ELEC) + dopts['pol'] = bool(opts.terms & core.efp_term.EFP_TERM_POL) + dopts['disp'] = bool(opts.terms & core.efp_term.EFP_TERM_DISP) + dopts['xr'] = bool(opts.terms & core.efp_term.EFP_TERM_XR) + dopts['chtr'] = bool(opts.terms & core.efp_term.EFP_TERM_CHTR) + dopts['qq'] = bool(opts.terms & core.efp_term.EFP_TERM_QQ) # SKP + dopts['lj'] = bool(opts.terms & core.efp_term.EFP_TERM_LJ) # SKP + + dopts['spec_elec'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_ELEC) # SKP + dopts['spec_pol'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_POL) # SKP + dopts['spec_disp'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_DISP) # SKP + dopts['spec_xr'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_XR) # SKP + dopts['spec_chtr'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_CHTR) # SKP + + dopts['elec_damp'] = { + core.EFP_ELEC_DAMP_SCREEN: 'screen', + core.EFP_ELEC_DAMP_OVERLAP: 'overlap', + core.EFP_ELEC_DAMP_OFF: 'off', + }[opts.elec_damp] + + dopts['pol_damp'] = { + core.EFP_POL_DAMP_TT: 'tt', + core.EFP_POL_DAMP_OFF: 'off', + }[opts.pol_damp] + + dopts['disp_damp'] = { + core.EFP_DISP_DAMP_TT: 'tt', + core.EFP_DISP_DAMP_OVERLAP: 'overlap', + core.EFP_DISP_DAMP_OFF: 'off', + }[opts.disp_damp] + + dopts['enable_pbc'] = bool(opts.enable_pbc) + dopts['enable_cutoff'] = bool(opts.enable_cutoff) + dopts['swf_cutoff'] = opts.swf_cutoff + dopts['special_fragment'] = opts.special_fragment + dopts['enable_pairwise'] = bool(opts.enable_pairwise) # SKP + + dopts['pol_driver'] = { + core.EFP_POL_DRIVER_ITERATIVE: 'iterative', + core.EFP_POL_DRIVER_DIRECT: 'direct', + }[opts.pol_driver] + + dopts['ai_elec'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_ELEC) + dopts['ai_pol'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_POL) + dopts['ai_disp'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_DISP) + dopts['ai_xr'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_XR) + dopts['ai_chtr'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_CHTR) + dopts['ai_qq'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_QQ) # SKP + + return _rekey(dopts, label=label) + + +def set_opts(efpobj, dopts, label='libefp', append='libefp'): + """Sets the options state of `efpobj` from dictionary `dopts`. + + Parameters + ---------- + dopts : dict + Input dict with keys from libefp efp_opts (see `label`) and + values bools, strings, floats, and ints, as appropriate, rather + than libefp custom datatypes. + label : {'libefp', 'psi'}, optional + Input `dopts` keys are read as libefp efp_opts struct names or + by the custom translation set defined for `label`. + append : {'libefp', 'psi', 'append'}, optional + When ``libefp``, input `dopts` keys are applied to the default + (generally OFF) efp_opts state. When ``psi``, input `dopts` + keys are applied to the default (generally ON) Psi efp_opts + state. When ``append``, input `dopts` keys are applied to the + current *efpobj* opt_opts state. + + Returns + ------- + dict + After setting the options state, `efpobj` is queried as to the + current options state, which is then returned. + + """ + # warn on stray dopts keys + allowed = [ + 'elec', 'pol', 'disp', 'xr', 'elec_damp', 'pol_damp', 'disp_damp', 'enable_pbc', 'enable_cutoff', 'swf_cutoff', + 'pol_driver', 'ai_elec', 'ai_pol', + 'spec_elec', 'spec_pol', 'spec_disp', 'spec_xr', 'spec_chtr', 'ai_qq', 'qq', 'lj', 'special_fragment' # SKP + ] + label_allowed = [_lbtl[label].get(itm, itm) for itm in allowed] + for key in dopts.keys(): + if key not in label_allowed: + print('Warning: unrecognized key {}'.format(key)) + trues = [True, 1, 'yes', 'true', 'on'] + falses = [False, 0, 'no', 'false', 'off'] + + # prepare base options state for dopts + opts = core.efp_opts() + if append == 'libefp': + pass + elif append == 'psi': + opts.terms |= core.efp_term.EFP_TERM_ELEC + opts.terms |= core.efp_term.EFP_TERM_POL + opts.terms |= core.efp_term.EFP_TERM_DISP + opts.terms |= core.efp_term.EFP_TERM_XR + opts.terms |= core.efp_term.EFP_TERM_QQ # SKP + opts.terms |= core.efp_term.EFP_TERM_LJ # SKP + opts.elec_damp = core.EFP_ELEC_DAMP_SCREEN + opts.pol_damp = core.EFP_POL_DAMP_TT + opts.disp_damp = core.EFP_DISP_DAMP_OVERLAP + opts.terms |= core.efp_term.EFP_TERM_AI_ELEC + opts.terms |= core.efp_term.EFP_TERM_AI_POL + opts.terms |= core.efp_term.EFP_TERM_AI_QQ # SKP + #elif append == 'qchem': + # # q-chem and psi4 have different defaults for at least this option + # opts.disp_damp = core.EFP_DISP_DAMP_TT + elif append == 'append': + res = efpobj._efp_get_opts(opts) + _result_to_error(res) + else: + raise PyEFPSyntaxError('Unrecognized opts default set: {}'.format(append)) + + # apply dopts to options state + topic = _lbtl[label].get('elec', 'elec') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_ELEC + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_ELEC + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('pol', 'pol') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_POL + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_POL + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('disp', 'disp') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_DISP + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_DISP + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('xr', 'xr') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_XR + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_XR + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) +#========== SKP changes ======================================================================# + topic = _lbtl[label].get('qq', 'qq') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_QQ + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_QQ + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('lj', 'lj') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_LJ + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_LJ + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) +#================================================================================================# + # may be enabled in a future libefp release + # topic = _lbtl[label].get('chtr', 'chtr') + + topic = _lbtl[label].get('elec_damp', 'elec_damp') + if topic in dopts: + try: + opts.elec_damp = { + 'screen': core.EFP_ELEC_DAMP_SCREEN, + 'overlap': core.EFP_ELEC_DAMP_OVERLAP, + 'off': core.EFP_ELEC_DAMP_OFF, + }[dopts[topic].lower()] + except KeyError: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [screen/overlap/off] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('pol_damp', 'pol_damp') + if topic in dopts: + try: + opts.pol_damp = { + 'tt': core.EFP_POL_DAMP_TT, + 'off': core.EFP_POL_DAMP_OFF, + }[dopts[topic].lower()] + except KeyError: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [tt/off] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('disp_damp', 'disp_damp') + if topic in dopts: + try: + opts.disp_damp = { + 'overlap': core.EFP_DISP_DAMP_OVERLAP, + 'tt': core.EFP_DISP_DAMP_TT, + 'off': core.EFP_DISP_DAMP_OFF, + }[dopts[topic].lower()] + except KeyError: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [overlap/tt/off] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('enable_pbc', 'enable_pbc') + if topic in dopts: + if dopts[topic] in trues: + opts.enable_pbc = 1 + elif dopts[topic] in falses: + opts.enable_pbc = 0 + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + topic = _lbtl[label].get('enable_cutoff', 'enable_cutoff') + if topic in dopts: + if dopts[topic] in trues: + opts.enable_cutoff = 1 + elif dopts[topic] in falses: + opts.enable_cutoff = 0 + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('swf_cutoff', 'swf_cutoff') + if topic in dopts: + opts.swf_cutoff = float(dopts[topic]) + + topic = _lbtl[label].get('pol_driver', 'pol_driver') + if topic in dopts: + try: + opts.pol_driver = { + 'iterative': core.EFP_POL_DRIVER_ITERATIVE, + 'direct': core.EFP_POL_DRIVER_DIRECT, + }[dopts[topic].lower()] + except KeyError: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [iterative/direct] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('ai_elec', 'ai_elec') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_AI_ELEC + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_AI_ELEC + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('ai_pol', 'ai_pol') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_AI_POL + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_AI_POL + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) +#=================== SKP addition ===================================================# + topic = _lbtl[label].get('ai_qq', 'ai_qq') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_AI_QQ + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_AI_QQ + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) +#======================================================================================# + # may be enabled in a future libefp release + # topic = _lbtl[label].get('ai_disp', 'ai_disp') + # topic = _lbtl[label].get('ai_xr', 'ai_xr') + # topic = _lbtl[label].get('ai_chtr', 'ai_chtr') + + # set computed options state + res = efpobj._efp_set_opts(opts) + _result_to_error(res) + + return efpobj.get_opts(label=label) + + +def set_periodic_box(efpobj, xyz, alpha=90.0, beta=90.0, gamma=90.0): + """Set periodic box size. + + Parameters + ---------- + xyz : list + (3,) Box sizes in three dimensions [x, y, z] in Bohr. + alpha + Unit cell alpha angle in degrees. + beta + Unit cell beta angle in degrees. + gamma + Unit cell gamma angle in degrees. + + Returns + ------- + None + + .. versionchanged:: 1.9 + Parameters alpha, beta, and gamma added. + + """ + if len(xyz) != 3: + raise PyEFPSyntaxError('Invalid periodic box setting: {}'.format(xyz)) + + res = efpobj._efp_set_periodic_box(xyz[0], xyz[1], xyz[2], alpha, beta, gamma) + _result_to_error(res) + (res, xyzabc) = efpobj._efp_get_periodic_box() + _result_to_error(res) + + +def get_periodic_box(efpobj): + """Get periodic box size. + + Returns + ------- + list + Box sizes in three dimensions [x, y, z] in Bohr. + And box angles [alpha, beta, gamma] in degrees. + + .. versionchanged:: 1.9 + Return size extended from 3 to 6 to include angles. + + """ + (res, xyzabc) = efpobj._efp_get_periodic_box() + _result_to_error(res) + + return xyzabc + + +#def opts_summary(efpobj, labels='libefp'): +# +# opts = efpobj.get_opts() +## py::dict opts = opts_to_dict(efp); +# +# elec = 'Electrostatics' +# xr = 'Exchange' +# disp = 'Dispersion' +# if labels == 'libefp': +# pol = 'Polarization' +# elif labels == 'psi4': +# pol = 'Induction' +# +# text = '' +# text += '\n ==> EFP/EFP Setup <==\n\n' +# text += ' {:<30} {:12}\n'.format(elec + ' enabled?:', 'true' if opts["elec"] else 'false') +# text += ' {:<30} {:12}\n'.format(pol + ' enabled?:', 'true' if opts["pol"] else 'false') +# text += ' {:<30} {:12}\n'.format(disp + ' enabled?:', 'true' if opts["disp"] else 'false') +# text += ' {:<30} {:12}\n'.format(xr + ' enabled?:', 'true' if opts["xr"] else 'false') +# text += ' {:<30} {:12}\n'.format('Charge-Transfer enabled?:', 'undefined') +# +# text += '\n {:<30} {:12}\n'.format(elec + ' damping:', opts["elec_damp"]) +# text += ' {:<30} {:12}\n'.format(pol + 'damping:', opts["pol_damp"]) +# text += ' {:<30} {:12}\n'.format(disp + ' damping:', opts["disp_damp"]) +# text += ' {:<30} {:12}\n'.format(pol + ' driver:', opts["pol_driver"]) +# +# text += '\n ==> QM/EFP Setup <==\n\n' +##// sprintf(buffer, " Number of QM fragments: %12d\n", -1); //, nfrag_); +# text += ' Electrostatics enabled?: {:12}\n'.format('true' if opts["ai_elec"] else 'false') +# text += ' Polarization enabled?: {:12}\n'.format('true' if opts["ai_pol"] else 'false') +# text += ' Dispersion enabled?: {:12}\n'.format('undefined') +# text += ' Exchange enabled?: {:12}\n'.format('undefined') +# text += ' Charge-Transfer enabled?: {:12}\n'.format('undefined') +# +# return text + + +def get_energy(efpobj, label='libefp'): + """Gets the energy components from `efpobj` computation as a dictionary. + + Parameters + ---------- + label : {'libefp', 'psi'}, optional + Returned dictionary keys are identical to libefp efp_energy struct + names plus elec, pol, disp, xr, & total components unless custom renaming + requested via `label`. + + Returns + ------- + dict + Individual terms, summed components, and total energies. + + """ + ene = core.efp_energy() + res = efpobj._efp_get_energy(ene) + _result_to_error(res) + + energies = { + 'electrostatic': ene.electrostatic, + 'charge_penetration': ene.charge_penetration, + 'electrostatic_point_charges': ene.electrostatic_point_charges, + 'polarization': ene.polarization, + 'dispersion': ene.dispersion, + 'exchange_repulsion': ene.exchange_repulsion, + 'total': ene.total, + 'elec': ene.electrostatic + ene.charge_penetration + ene.electrostatic_point_charges, + 'xr': ene.exchange_repulsion, + 'pol': ene.polarization, + 'disp': ene.dispersion, + 'qq': ene.qq, + } + + return _rekey(energies, label=label) + + +def get_frag_count(efpobj): + """Gets the number of fragments in `efpobj` computation. + + Returns + ------- + int + Number of fragments in calculation. + + """ + (res, nfrag) = efpobj._efp_get_frag_count() + _result_to_error(res) + + return nfrag + + +def get_multipole_count(efpobj): + """Gets the number of multipoles in `efpobj` computation. + + Returns + ------- + int + Total number of multipoles from electrostatics calculation. + + """ + (res, nmult) = efpobj._efp_get_multipole_count() + _result_to_error(res) + + return nmult + + +def get_multipole_coordinates(efpobj, verbose=1): + """Gets the coordinates of `efpobj` electrostatics multipoles. + + Parameters + ---------- + verbose : int, optional + Whether to print out the multipole coordinates. 0: no printing. 1: + print charges and dipoles. 2: additionally print quadrupoles + and octupoles. + + Returns + ------- + list + ``3 n_mult`` (flat) array of multipole locations. + + Examples + -------- + + >>> # Use with NumPy + >>> n_mult = efpobj.get_multipole_count() + >>> xyz_mult = np.asarray(efpobj.get_multipole_coordinates()).reshape(n_mult, 3) + + """ + nmult = efpobj.get_multipole_count() + (res, xyz) = efpobj._efp_get_multipole_coordinates(nmult) + _result_to_error(res) + + if verbose >= 1: + xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) + + text = '\n ==> EFP Multipole Coordinates <==\n\n' + for mu in range(nmult): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) + print(text) + + return xyz + + +def get_multipole_values(efpobj, verbose=1): + """Gets the computed per-point multipoles of `efpobj`. + + Parameters + ---------- + verbose : int, optional + Whether to print out the multipole arrays. 0: no printing. 1: + print charges and dipoles. ``2``: additionally print quadrupoles + and octupoles. + + Returns + ------- + list + ``20 n_mult`` (flat) array of per-point multipole values including + charges + dipoles + quadrupoles + octupoles. + Dipoles stored as x, y, z. + Quadrupoles stored as xx, yy, zz, xy, xz, yz. + Octupoles stored as xxx, yyy, zzz, xxy, xxz, xyy, yyz, xzz, yzz, xyz. + + Examples + -------- + >>> # Use with NumPy + >>> n_mult = efpobj.get_multipole_count() + >>> val_mult = np.asarray(efpobj.get_multipole_values()).reshape(n_mult, 20) + + """ + nmult = efpobj.get_multipole_count() + (res, mult) = efpobj._efp_get_multipole_values(nmult) + _result_to_error(res) + + if verbose >= 1: + mult20 = list(map(list, zip(*[iter(mult)] * 20))) + + text = '\n ==> EFP Multipoles: Charge & Dipole <==\n\n' + for mu in range(nmult): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *mult20[mu][:4]) + + if verbose >= 2: + text += '\n ==> EFP Multipoles: Quadrupole <==\n\n' + for mu in range(nmult): + text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format(mu, *mult20[mu][4:10]) + text += '\n ==> EFP Multipoles: Octupole <==\n\n' + for mu in range(nmult): + text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format( + mu, *mult20[mu][10:]) + print(text) + + return mult + + +def get_induced_dipole_count(efpobj): + """Gets the number of polarization induced dipoles in `efpobj` computation. + + Returns + ------- + int + Total number of polarization induced dipoles. + + """ + (res, ndip) = efpobj._efp_get_induced_dipole_count() + _result_to_error(res) + + return ndip + + +def get_induced_dipole_coordinates(efpobj, verbose=1): + """Gets the coordinates of `efpobj` induced dipoles. + + Parameters + ---------- + verbose : int, optional + Whether to print out the multipole arrays. 0: no printing. 1: + print induced dipole coordinates. + + Returns + ------- + list + (3 * n_dip, ) (flat) array of induced dipole locations. + + """ + ndip = efpobj.get_induced_dipole_count() + (res, xyz) = efpobj._efp_get_induced_dipole_coordinates(ndip) + _result_to_error(res) + + if verbose >= 1: + xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) + + text = '\n ==> EFP Induced Dipole Coordinates <==\n\n' + for mu in range(ndip): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) + print(text) + + return xyz + + +def get_induced_dipole_values(efpobj, verbose=1): + """Gets the values of polarization induced dipoles of `efpobj`. + + Parameters + ---------- + verbose : int, optional + Whether to print out the induced dipole arrays. 0: no + printing. 1: print induced dipole values. + + Returns + ------- + list + ``3*n_dip`` (flat) array of polarization induced dipole values. + + Examples + -------- + >>> # Use with NumPy + >>> n_dip = efpobj.get_induced_dipole_count() + >>> val_dip = np.asarray(efpobj.get_induced_dipole_values()).reshape(n_dip, 3) + + """ + ndip = efpobj.get_induced_dipole_count() + (res, vals) = efpobj._efp_get_induced_dipole_values(ndip) + _result_to_error(res) + + if verbose >= 1: + vals3 = list(map(list, zip(*[iter(vals)] * 3))) + + text = '\n ==> EFP Induced Dipoles <==\n\n' + for mu in range(ndip): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *vals3[mu]) + print(text) + + return vals + + +def get_induced_dipole_conj_values(efpobj, verbose=1): + """Gets the values of polarization conjugated induced dipoles of `efpobj`. + + Parameters + ---------- + verbose : int, optional + Whether to print out the induced dipole conj arrays. + 0: no printing. 1: print induced dipole values. + + Returns + ------- + list + 3 x n_dip (flat) array of conjugate induced dipole values. + + """ + ndip = efpobj.get_induced_dipole_count() + (res, vals) = efpobj._efp_get_induced_dipole_conj_values(ndip) + _result_to_error(res) + + if verbose >= 1: + vals3 = list(map(list, zip(*[iter(vals)] * 3))) + + text = '\n ==> EFP Conj. Induced Dipoles <==\n\n' + for mu in range(ndip): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *vals3[mu]) + print(text) + + return vals + + +def get_point_charge_count(efpobj): + """Gets the number of set point charges `efpobj`. + + Returns + ------- + int + Total number of set point charges. + + """ + (res, nptc) = efpobj._efp_get_point_charge_count() + _result_to_error(res) + + return nptc + + +def get_point_charge_coordinates(efpobj, verbose=1): + """Gets the coordinates of set point charges on `efpobj`. + + Parameters + ---------- + verbose : int, optional + Whether to print out the point charge arrays. 0: no printing. + 1: print point charge coordinates. + + Returns + ------- + list + 3 x n_ptc (flat) array of point charge locations. + + """ + nptc = efpobj.get_point_charge_count() + (res, xyz) = efpobj._efp_get_point_charge_coordinates(nptc) + _result_to_error(res) + + if verbose >= 1: + xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) + + text = '\n ==> EFP Point Charge Coordinates <==\n\n' + for mu in range(nptc): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) + print(text) + + return xyz + + +def get_point_charge_values(efpobj, verbose=1): + """Gets the values of set point charges on `efpobj`. + + Parameters + ---------- + verbose : int, optional + Whether to print out the point charge arrays. 0: no + printing. 1: print point charge values. + + Returns + ------- + list + ``n_ptc`` array of point charge values. + + Examples + -------- + >>> # Use with NumPy + >>> val_ptc = np.asarray(efpobj.get_point_charge_values()) + + """ + nptc = efpobj.get_point_charge_count() + (res, vals) = efpobj._efp_get_point_charge_values(nptc) + _result_to_error(res) + + if verbose >= 1: + text = '\n ==> EFP Point Charges <==\n\n' + for mu in range(nptc): + text += '{:6d} {:14.8f}\n'.format(mu, vals[mu]) + print(text) + + return vals + + +def get_wavefunction_dependent_energy(efpobj): + """Updates wavefunction-dependent energy terms for SCF. + + Returns + ------- + float + Wavefunction-dependent EFP energy. + + """ + (res, wde) = efpobj._efp_get_wavefunction_dependent_energy() + _result_to_error(res) + + return wde + + +def get_gradient(efpobj): + """Gets the computed per-fragment EFP energy gradient of `efpobj`. + + Returns + ------- + list + ``6 x n_frag`` array of per-fragment negative force and torque. + + """ + nfrag = efpobj.get_frag_count() + (res, grad) = efpobj._efp_get_gradient(nfrag) + _result_to_error(res) + + return grad + + +def gradient_summary(efpobj): + """Gets the computed per-fragment EFP energy gradient of `efpobj`. + + Returns + ------- + str + Formatted text of the `6 x n_frag` gradient and torque. + + """ + grad = efpobj.get_gradient() + grad6 = list(map(list, zip(*[iter(grad)] * 6))) + + text = '\n ==> EFP Gradient & Torque <==\n\n' + for fr in grad6: + text += '{:14.8f} {:14.8f} {:14.8f} {:14.8f} {:14.8f} {:14.8f}\n'.format(*fr) + + text += '\n' + return text + + +def energy_summary(efpobj, label='libefp', scfefp=None): + """Forms summary of EFP and SCFEFP energy components from `efpobj`. + + Parameters + ---------- + label : {'libefp', 'psi'}, optional + Text labels use libefp terms names unless custom renaming + requested via `label`. + scfefp : float, optional + Total SCF energy (Hartrees) including EFP wavefunction dependent + and wavefunction independent terms. Used for add'l printing. + + Returns + ------- + str + Summary suitable for printing indicating energy components + (electrostatics, exchange, induction, dispersion, total), whether + each are enabled in options, and breakdown into pure-EFP and + QM-EFP, where available. If scfefp, includes a section on SCF + iterated and SCF total. + + """ + opt = efpobj.get_opts() + ene = efpobj.get_energy() + + def _enabled(tf, t='*', f='', suffix=''): + if tf: + return t + suffix + else: + return f + + elec = 'Electrostatics' + disp = 'Dispersion' + if label == 'libefp': + xr = 'Exchange-Repulsion' + indc = 'Polarization' + elif label == 'psi': + xr = 'Exchange' + indc = 'Induction' + + # yapf: disable + text = '\n' + text += '\n EFP Results\n' + text += ' ------------------------------------------------------------\n' + text += ' {:<30}{:20.12f} [Eh] {}\n'.format(elec, ene['electrostatic'] + + ene['charge_penetration'] + + ene['electrostatic_point_charges'], + _enabled(opt['elec'] or opt['ai_elec'], + suffix=(' (' + opt['elec_damp'] + ' damping)'))) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('EFP/EFP', ene['electrostatic'] + + ene['charge_penetration'], + _enabled(opt['elec'])) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('QM-Nuc/EFP', + ene['electrostatic_point_charges'], + _enabled(opt['ai_elec'])) + text += '\n {:<30}{:20.12f} [Eh] {}\n'.format(xr, ene['exchange_repulsion'], + _enabled(opt['xr'])) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('EFP/EFP', ene['exchange_repulsion'], + _enabled(opt['xr'])) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('QM/EFP', 0.0, '') + text += '\n {:<30}{:20.12f} [Eh] {}\n'.format(indc, ene['polarization'], + _enabled(opt['pol'] or opt['ai_pol'], + suffix=(' (' + opt['pol_damp'] + ' damping)'))) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format(_enabled(opt['ai_pol'], t='QM/EFP', f='EFP/EFP'), + ene['polarization'], + _enabled(opt['pol'] or opt['ai_pol'])) + text += '\n {:<30}{:20.12f} [Eh] {}\n'.format(disp, ene['dispersion'], + _enabled(opt['disp'], + suffix=(' (' + opt['disp_damp'] + ' damping)'))) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('EFP/EFP', ene['dispersion'], + _enabled(opt['disp'])) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('QM/EFP', 0.0, '') + text += '\n {:<30}{:20.12f} [Eh]\n'.format('Total EFP', ene['total']) + # yapf: enable + if scfefp is not None: + wie = ene['total'] - ene['pol'] + text += ' EFP excluding EFP {:<12}{:20.12f} [Eh]\n'.format(indc, wie) + text += ' SCF including EFP {:<12}{:20.12f} [Eh]\n'.format(indc, scfefp - wie) + text += ' Total SCF including Total EFP {:20.12f} [Eh]\n'.format(scfefp) + + text += '\n' + return text + + +def geometry_summary(efpobj, units_to_bohr=1.0): + """Formatted geometry and fragments for `efpobj`. + + Parameters + ---------- + units_to_bohr : float,optional + Conversion factor for printing; for Angstroms, approx. 0.529177. + + Returns + ------- + str + Summary of EFP geometry & point charges (QM atoms) suitable for printing. + + """ + text = '' + text += '\n ==> EFP Geometry <==\n\n' + text += ' Geometry (in {} * {:12.8f}):\n\n'.format('Bohr', units_to_bohr) + text += ' Center X Y Z QM/EFP\n' + text += ' ------------ ----------------- ----------------- ----------------- ------------\n' + + mol_info = efpobj.get_atoms() + terminal_frag = [fr[0] for fr in mol_info['fragments'][1:]] + frag_names = efpobj.get_frag_name() + + ifr = 0 + for iat, at in enumerate(mol_info['full_atoms']): + if iat in terminal_frag: + text += ' --\n' + ifr += 1 + text += ' {:8}{:4} {:17.12f} {:17.12f} {:17.12f} {}\n'.format(at['symbol'], '', + at['x'] * units_to_bohr, + at['y'] * units_to_bohr, + at['z'] * units_to_bohr, + frag_names[ifr].lower()) + + # TODO move into dict? + ptc_info = { + 'n': efpobj.get_point_charge_count(), + 'xyz': efpobj.get_point_charge_coordinates(verbose=0), + 'val': efpobj.get_point_charge_values(verbose=0) + } + + if ptc_info['n'] > 0: + mult3 = list(map(list, zip(*[iter(ptc_info['xyz'])] * 3))) + text += ' ------------\n' + for ptc in range(ptc_info['n']): + text += ' {:8}{:4} {:17.12f} {:17.12f} {:17.12f} {}\n'.format(ptc_info['val'][ptc], '', + mult3[ptc][0] * units_to_bohr, + mult3[ptc][1] * units_to_bohr, + mult3[ptc][2] * units_to_bohr, + 'point_charge') + + text += '\n' + return text + + +def nuclear_repulsion_energy(efpobj, use_efp_frags=True, use_point_charges=False): + """Computes nuclear repulsion energy for `efpobj`. + + Parameters + ---------- + use_efp_frags : bool, optional + If True (default), compute NRE using the efp fragment subsystem. + use_point_charges : bool, optional + If True (not default), include point charges (generally QM atoms) + in NRE computation. + + Returns + ------- + float + Nuclear repulsion energy [E_h] for specified geometry subsystem + + """ + nre = 0.0 + loc = [] + + if use_efp_frags: + loc.extend(efpobj.get_atoms()['full_atoms']) + if use_point_charges: + ptc_xyz = efpobj.get_point_charge_coordinates(verbose=0) + ptc_val = efpobj.get_point_charge_values(verbose=0) + for ptc in range(efpobj.get_point_charge_count()): + loc.append({ + 'Z': ptc_val[ptc], + 'x': ptc_xyz[ptc * 3], + 'y': ptc_xyz[ptc * 3 + 1], + 'z': ptc_xyz[ptc * 3 + 2] + }) + + for iat1, at1 in enumerate(loc): + for iat2, at2 in enumerate(loc): + if iat2 < iat1: + ZZ = at1['Z'] * at2['Z'] + dx = at1['x'] - at2['x'] + dy = at1['y'] - at2['y'] + dz = at1['z'] - at2['z'] + dist = math.sqrt(dx * dx + dy * dy + dz * dz) + nre += ZZ / dist + + return nre + + +#def _frag_idx_validation(efpobj, ifr): +# nfr = efpobj.get_frag_count() +# if (ifr < 0) or (ifr >= nfr): +# raise PyEFPSyntaxError('Invalid fragment index for 0-indexed {}-fragment EFP: {}'.format(nfr, ifr)) + + +def set_frag_coordinates(efpobj, ifr, ctype, coord): + """Set fragment orientation on `efpobj` from hint. + + Parameters + ---------- + ifr : int + Index of fragment (0-indexed). + ctype : core.efp_coord_type or str {'xyzabc', 'points', 'rotmat'} + Type of coodinates hint among ``xyzabc``, `points`, & `rotmat`. + coord : list of floats + 6-, 9-, or 12-element hint of coordinates. + + Returns + ------- + None + + """ + if isinstance(ctype, str): + try: + ctype = { + 'xyzabc': core.EFP_COORD_TYPE_XYZABC, + 'points': core.EFP_COORD_TYPE_POINTS, + 'rotmat': core.EFP_COORD_TYPE_ROTMAT, + }[ctype.lower()] + except KeyError: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [xyzabc/points/rotmat] {}: {}'.format('ctype', ctype)) + + efpobj.input_units_to_au = 1.0 + res = efpobj._efp_set_frag_coordinates(ifr, ctype, coord) + _result_to_error(res) + + +def set_point_charge_coordinates(efpobj, xyz): + """Reset arbitrary point charge locations (often QM atoms) + interacting with the EFP subsystem. Must have been initially set + with set_point_charges. + + Parameters + ---------- + xyz : list + ``3 * n_ptc`` array of XYZ coordinates of charge positions, + generally QM coordinates. + + Returns + ------- + None + + """ + n_ptc = efpobj.get_point_charge_count() + if n_ptc == 0: + raise PyEFPSyntaxError('Must initialize point charges with set_point_charges') + if len(xyz) != (3 * n_ptc): + raise PyEFPSyntaxError('Invalid point charge length: {}'.format(xyz)) + + res = efpobj._efp_set_point_charge_coordinates(len(xyz), xyz) + _result_to_error(res) + + +def set_point_charge_values(efpobj, ptc): + """Reset arbitrary point charge values (often QM atoms) + interacting with the EFP subsystem. Must have been initially set + with set_point_charges. + + Parameters + ---------- + ptc : list of float + array of charge values, generally QM nuclear charges. + + Returns + ------- + None + + """ + n_ptc = efpobj.get_point_charge_count() + if n_ptc == 0: + raise PyEFPSyntaxError('Must initialize point charges with set_point_charges') + if len(ptc) != n_ptc: + raise PyEFPSyntaxError('Invalid point charge length: {}'.format(ptc)) + + res = efpobj._efp_set_point_charge_values(len(ptc), ptc) + _result_to_error(res) + + +def set_point_charges(efpobj, ptc, coord): + """Sets arbitrary point charges (often QM atoms) interacting with the + EFP subsystem. + + Parameters + ---------- + ptc : list + (n_ptc, ) array of charge values, generally QM Z. + coord : list + (3 * n_ptc, ) or (n_ptc, 3) array (that is, flat or nested) + of XYZ coordinates [a0] of charge positions, generally QM coordinates. + + Returns + ------- + None + + """ + if len(ptc) == len(coord): + coord = sum(coord, []) + + if (len(ptc) * 3) != len(coord): + raise PyEFPSyntaxError('Invalid point charges setting: {}'.format(coord)) + + res = efpobj._efp_set_point_charges(len(ptc), ptc, coord) + _result_to_error(res) + + +def get_frag_name(efpobj, ifr=None): + """Gets system name on fragment(s) of `efpobj`. + + Parameters + ---------- + ifr : int, optional + Index of fragment (0-indexed) if not all. + + Returns + ------- + str, list of str + If `ifr`, name of fragment `ifr`. Otherwise, names of all + fragments in list. + + """ + return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='name') + + +def _get_frag_common(efpobj, ifr, topic): + nfr = efpobj.get_frag_count() + + fn_mapper = { + 'name': efpobj._efp_get_frag_name, + 'charge': efpobj._efp_get_frag_charge, + 'xyzabc': efpobj._efp_get_frag_xyzabc, + 'atom_count': efpobj._efp_get_frag_atom_count, + 'multiplicity': efpobj._efp_get_frag_multiplicity, + } + + if ifr is None: + frags = [] + for fr in range(nfr): + (res, ftopic) = fn_mapper[topic](fr) + _result_to_error(res) + frags.append(ftopic) + + return frags + + else: + if ifr in range(nfr): + (res, ftopic) = fn_mapper[topic](ifr) + _result_to_error(res) + + return ftopic + else: + raise PyEFPSyntaxError('Invalid fragment index for 0-indexed {}-fragment EFP: {}'.format(nfr, ifr)) + + +def get_frag_charge(efpobj, ifr=None, zero=1e-8): + """Gets total charge on fragment(s) of `efpobj`. + + Parameters + ---------- + ifr : int, optional + Index of fragment (0-indexed) if not all. + zero : float, optional + Absolute value under which to zero charge. + + Returns + ------- + str, list of str + If `ifr`, charge of fragment `ifr`. Otherwise, charges of all + fragments in list. + + """ + chg = _get_frag_common(efpobj=efpobj, ifr=ifr, topic='charge') + if ifr is None: + return [(0.0 if math.fabs(c) < zero else c) for c in chg] + else: + if math.fabs(chg) < zero: + return 0.0 + else: + return chg + + +def get_frag_multiplicity(efpobj, ifr=None): + """Gets spin multiplicity on fragment(s) of `efpobj`. + + Parameters + ---------- + ifr : int, optional + Index of fragment (0-indexed) if not all. + + Returns + ------- + str, list of str + If `ifr`, multiplicity of fragment `ifr`. Otherwise, multiplicity + of all fragments in list. + + """ + return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='multiplicity') + + +def get_frag_atom_count(efpobj, ifr=None): + """Gets atom count on fragment(s) of `efpobj`. + + Parameters + ---------- + ifr : int, optional + Index of fragment (0-indexed) if not all. + + Returns + ------- + str, list of str + If `ifr`, atom count of fragment `ifr`. Otherwise, atom counts + of all fragments in list. + + """ + return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='atom_count') + + +def get_frag_atoms(efpobj, ifr): + """Gets geometry information for atoms modeled by fragment in `efpobj`. + + Parameters + ---------- + ifr : int + Index of fragment (0-indexed). + + Returns + ------- + list of dict + Each atom in fragment `ifr` has position, charge, and element + fields below in a dictionary at list index `ifr` + ``Z`` (*float*) nuclear charge. + ``label`` (*str*) atom label from EFP file, e.g., A02H2. + ``x`` (*float*) X coordinate of atom position. + ``y`` (*float*) Y coordinate of atom position. + ``z`` (*float*) Z coordinate of atom position. + ``mass`` (*float*) atom mass [amu] + ``symbol`` (*str*) atomic symbol extracted from label. + + """ + nfr = efpobj.get_frag_count() + nat = efpobj.get_frag_atom_count(ifr) + + if ifr in range(nfr): + (res, atoms) = efpobj._efp_get_frag_atoms(ifr, nat) + _result_to_error(res) + + for at in atoms: + mobj = re.match(r'\AA\d*(?P[A-Z]{1,3})\d*\Z', at['label']) + if mobj: + at['symbol'] = mobj.group('symbol').capitalize() + return atoms + else: + raise PyEFPSyntaxError('Invalid fragment index for 0-indexed {}-fragment EFP: {}'.format(nfr, ifr)) + + +def get_atoms(efpobj): + #enum efp_result res; + #size_t frag_natom, natom=0; + #double frag_chg; + #int frag_mult; + #py::list fr, frt, frcg, frmp, full_atoms; + + natom = 0 + frag_count = efpobj.get_frag_count() + frag_natom = efpobj.get_frag_atom_count() + fr = [] + full_atoms = [] + for ifr in range(frag_count): + frat = frag_natom[ifr] + + fr.append([natom, natom + frat]) + natom += frat + + pyat = efpobj.get_frag_atoms(ifr) + full_atoms.extend(pyat) + + mol_info = {} + # mol_info["units"] = "Bohr" + mol_info["input_units_to_au"] = 1.0 + mol_info["fix_com"] = True + mol_info["fix_orientation"] = True + mol_info["fix_symmetry"] = "c1" + + mol_info['fragments'] = fr + mol_info['fragment_types'] = ['Real'] * frag_count + mol_info['fragment_charges'] = efpobj.get_frag_charge() + mol_info['fragment_multiplicities'] = efpobj.get_frag_multiplicity() + mol_info['full_atoms'] = full_atoms + + return mol_info + + +def to_viz_dict(efpobj): + + pyat = efpobj.get_atoms() + for at in pyat['full_atoms']: + at['ghosted'] = False + at['at_type'] = 'efpxyz' + mobj = re.match(r'\AA\d*(?P[A-Z]{1,3})\d*\Z', at['label']) + if mobj: + at['symbol'] = mobj.group('symbol').capitalize() + at['charge'] = at['Z'] + #pyat['molecule']['fragment_charges'].append(efpobj.get_frag_charges(fr) + #pyat['molecule']['fragment_multiplicities'].append(efpobj.get_frag_multiplicity(fr) + + return pyat + + +def get_frag_xyzabc(efpobj, ifr=None): + """Get the XYZABC coordinates hint on fragment(s) from `efpobj`. + + Parameters + ---------- + ifr : int, optional + Index of fragment (0-indexed) if not all. + + Returns + ------- + list, list of list + If `ifr`, hint for fragment `ifr`. Otherwise, hints of all + fragments in list. Note that fragments inputted through POINTS + will still be returned as XYZABC. Also, fragments inputted + through XYZABC will have the angles standardized to (-pi, pi]. + + """ + return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='xyzabc') + + +def to_dict(efpobj, dtype='psi4'): + molrec = {} + + nfr = efpobj.get_frag_count() + fnat = efpobj.get_frag_atom_count() + frs = functools.reduce(lambda c, x: c + [c[-1] + x], fnat, + [0])[1:] # np.cumsum(fnat) https://stackoverflow.com/a/33034961 + nat = frs[-1] + + molrec['units'] = 'Bohr' + molrec['fix_com'] = True + molrec['fix_orientation'] = True + + atommajor = efpobj.get_atoms()['full_atoms'] + geom = [] + for at in atommajor: + xyz = [at['x'], at['y'], at['z']] + geom.extend(xyz) + molrec['geom'] = geom + molrec['elea'] = [-1] * nat + molrec['elez'] = [int(at['Z']) for at in atommajor] + molrec['elem'] = [at['symbol'] for at in atommajor] + molrec['mass'] = [at['mass'] for at in atommajor] + molrec['real'] = [True] * nat + molrec['elbl'] = ['_' + at['label'].lower() for at in atommajor] + + molrec['fragment_separators'] = frs[:-1] + molrec['fragment_charges'] = efpobj.get_frag_charge() + molrec['fragment_multiplicities'] = efpobj.get_frag_multiplicity() + + def _high_spin_sum(mult_list): + mm = 1 + for m in mult_list: + mm += m - 1 + return mm + + molrec['molecular_charge'] = sum(molrec['fragment_charges']) + molrec['molecular_multiplicity'] = _high_spin_sum(molrec['fragment_multiplicities']) + molrec['provenance'] = provenance_stamp(__name__ + '.' + sys._getframe().f_code.co_name) + + molrec['fragment_files'] = [fl.lower() for fl in efpobj.get_frag_name()] + molrec['hint_types'] = ['xyzabc'] * nfr + molrec['geom_hints'] = efpobj.get_frag_xyzabc() + + return qcel.molparse.to_schema(molrec, dtype=dtype) + + +def old_to_dict(efpobj): + pysys = {} + pysys['full_fragments'] = [] + + for fr in range(efpobj.get_frag_count()): + pysys['full_fragments'].append({ + 'coordinates_hint': efpobj.get_frag_xyzabc(fr), + 'efp_type': 'xyzabc', + 'fragment_file': efpobj.get_frag_name(fr).lower(), + }) + + #pysys['molecule'] = { + # 'fix_com': True, + # 'fix_orientation': True, + # 'fix_symmetry': 'c1', + # 'fragment_charges': [], + # 'fragment_multiplicities': [], + # 'fragment_types': [], + # 'fragments': [], + # 'full_atoms': [], + # #'input_units_to_au': 1.8897261328856432, + # 'name': 'default', + # 'input_units_to_au': 1.0} + # #'units': 'Bohr'} + pysys['molecule'] = {'input_units_to_au': efpobj.input_units_to_au} + + return pysys + + +# only wrapped to throw Py exceptions +core.efp.prepare = prepare +core.efp.compute = compute + +core.efp.add_potential = add_potential +core.efp.add_fragment = add_fragment +core.efp.get_opts = get_opts +core.efp.set_opts = set_opts +core.efp.get_frag_count = get_frag_count +core.efp.get_energy = get_energy +core.efp.get_gradient = get_gradient +core.efp.energy_summary = energy_summary +core.efp.nuclear_repulsion_energy = nuclear_repulsion_energy +core.efp.to_viz_dict = to_viz_dict +core.efp.to_dict = to_dict +core.efp.get_frag_name = get_frag_name +core.efp.get_frag_charge = get_frag_charge +core.efp.get_frag_multiplicity = get_frag_multiplicity +core.efp.set_frag_coordinates = set_frag_coordinates +core.efp.set_point_charges = set_point_charges +core.efp.set_point_charge_coordinates = set_point_charge_coordinates +core.efp.set_point_charge_values = set_point_charge_values +core.efp.get_point_charge_count = get_point_charge_count +core.efp.get_point_charge_coordinates = get_point_charge_coordinates +core.efp.get_point_charge_values = get_point_charge_values +core.efp.get_multipole_count = get_multipole_count +core.efp.get_multipole_coordinates = get_multipole_coordinates +core.efp.get_multipole_values = get_multipole_values +core.efp.get_induced_dipole_count = get_induced_dipole_count +core.efp.get_induced_dipole_coordinates = get_induced_dipole_coordinates +core.efp.get_induced_dipole_values = get_induced_dipole_values +core.efp.get_induced_dipole_conj_values = get_induced_dipole_conj_values +core.efp.get_frag_atom_count = get_frag_atom_count +core.efp.get_wavefunction_dependent_energy = get_wavefunction_dependent_energy +core.efp.set_periodic_box = set_periodic_box +core.efp.get_periodic_box = get_periodic_box +core.efp.get_frag_xyzabc = get_frag_xyzabc + +core.efp.get_frag_atoms = get_frag_atoms +core.efp.get_atoms = get_atoms +core.efp.geometry_summary = geometry_summary +core.efp.gradient_summary = gradient_summary + + +def process_units(molrec): + """From any (not both None) combination of `units` and + `input_units_to_au`, returns both quantities validated. The degree + of checking is unnecessary if coming from a molrec (prevalidated and + guaranteed to have "units"), but function is general-purpose. + + """ + units = molrec.get('units', None) + input_units_to_au = molrec.get('input_units_to_au', None) + + b2a = qcel.constants.bohr2angstroms + a2b = 1. / b2a + + def perturb_check(candidate, reference): + return (abs(candidate, reference) < 0.05) + + if units is None and input_units_to_au is not None: + if perturb_check(input_units_to_au, 1.): + funits = 'Bohr' + fiutau = input_units_to_au + elif perturb_check(input_units_to_au, a2b): + funits = 'Angstrom' + fiutau = input_units_to_au + else: + raise PyEFPSyntaxError("""No big perturbations to physical constants! {} !~= ({} or {})""".format( + input_units_to_au, 1.0, a2b)) + + elif units in ['Angstrom', 'Bohr'] and input_units_to_au is None: + funits = units + + if funits == 'Bohr': + fiutau = 1. + elif funits == 'Angstrom': + fiutau = a2b + + elif units in ['Angstrom', 'Bohr'] and input_units_to_au is not None: + expected_iutau = a2b if units == 'Angstrom' else 1. + + if perturn_check(input_units_to_au, expected_iutau): + funits = units + fiutau = input_units_to_au + else: + raise PyEFPSyntaxError("""No big perturbations to physical constants! {} !~= {}""".format( + input_units_to_au, expected_iutau)) + + else: + raise PyEFPSyntaxError('Insufficient information: {} & {}'.format(units, input_units_to_au)) + + return funits, fiutau + + +def from_dict(efp_init): + """Instantiate an EFP object from `efp_init`. + + Parameters + ---------- + efp_init : nested dict + Dictionary of prescribed format to specify EFP fragments (no QM hints). + + Returns + ------- + :py:class:`pylibefp.core.efp` + New EFP instance with fragments defined and finished off through + :py:func:`pylibefp.core.efp.prepare`. + + """ + efpobj = core.efp() + + units, input_units_to_au = process_units(efp_init) + + def hint_to_au(hint, htype, iutau): + if htype == 'xyzabc': + return [(h * iutau if idx < 3 else h) for idx, h in enumerate(hint)] + elif htype == 'points': + return [h * iutau for h in hint] + + for ifr, (fl, ht, gh) in enumerate(zip(efp_init['fragment_files'], efp_init['hint_types'], + efp_init['geom_hints'])): + efpobj.add_potential(fl, duplicates_ok=True) + efpobj.add_fragment(fl) + hint = hint_to_au(gh, ht, input_units_to_au) + efpobj.set_frag_coordinates(ifr, ht, hint) + + #efpobj.input_units_to_au = efp_init['input_units_to_au'] + efpobj.input_units_to_au = input_units_to_au + efpobj.prepare() + return efpobj + + +def provenance_stamp(routine: str) -> Dict[str, str]: + """Return dictionary satisfying QCSchema, + https://github.com/MolSSI/QCSchema/blob/master/qcschema/dev/definitions.py#L23-L41 + with PylibEFP's credentials for creator and version. The + generating routine's name is passed in through `routine`. + + """ + from pylibefp import __version__ + return {'creator': 'PylibEFP', 'version': __version__, 'routine': routine} diff --git a/python/wrapper.py b/python/wrapper.py index 57a5ddbf..f5cdf815 100644 --- a/python/wrapper.py +++ b/python/wrapper.py @@ -30,6 +30,8 @@ 'elec': 'elst', 'pol': 'ind', 'xr': 'exch', + 'qq': 'charge_charge', + 'lj': 'lennard-jones', 'elec_damp': 'elst_damping', 'pol_damp': 'ind_damping', 'disp_damp': 'disp_damping', @@ -39,6 +41,7 @@ 'ai_disp': 'qm_disp', 'ai_xr': 'qm_exch', 'ai_chtr': 'qm_chtr', + 'ai_qq': 'qm_qq', }, } @@ -96,7 +99,23 @@ def compute(efpobj, do_gradient=False): """ res = efpobj._efp_compute(do_gradient) _result_to_error(res) + # If pairwise is enabled, call the pairwise interaction calculator +# if efpobj.get_opts().get("enable_pairwise", False): +# nfrag = efpobj.get_frag_count() +# res2 = efpobj._efp_compute_pairwise_energy_range(0, nfrag) +# _result_to_error(res2) +# efpobj.print_pairwise_energies() + if efpobj.get_opts().get("enable_pairwise", False): + if efpobj.get_opts().get("symmetry", False): + # Use the symmetry-aware two-body computation + res2 = efpobj._efp_compute_two_body_crystal() + else: + # Use the regular pairwise energy range + nfrag = efpobj.get_frag_count() + res2 = efpobj._efp_compute_pairwise_energy_range(0, nfrag) + _result_to_error(res2) + efpobj.print_pairwise_energies() def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): """Searches for EFP fragments and adds to `efpobj`. @@ -137,10 +156,15 @@ def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): for lst in [paths, library_paths]: for spth in '@libefp_FRAGLIB_DIRS@'.split(';'): lst.append(spth) - lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib') - lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib/databases') - lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') - lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib/databases') + lst.append('/scratch/gilbreth/paulsk/backup/oglib/uplibefp2/fraglib') + #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib') + #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib/databases') + #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') + #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib/databases') + #lst.append('/scratch/gilbreth/paulsk/backup/libefp/installed/share/libefp/fraglib') + #lst.append('/scratch/gilbreth/paulsk/backup/libefp/installed/share/libefp/fraglib/databases') + #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') + #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib/databases') for spth in '@FRAGLIB_DATADIRS@'.split(';'): lst.append(str((Path('@CMAKE_CURRENT_SOURCE_DIR@') / '..' / spth).resolve())) else: @@ -238,7 +262,15 @@ def get_opts(efpobj, label='libefp'): dopts['disp'] = bool(opts.terms & core.efp_term.EFP_TERM_DISP) dopts['xr'] = bool(opts.terms & core.efp_term.EFP_TERM_XR) dopts['chtr'] = bool(opts.terms & core.efp_term.EFP_TERM_CHTR) - + dopts['qq'] = bool(opts.terms & core.efp_term.EFP_TERM_QQ) # SKP + dopts['lj'] = bool(opts.terms & core.efp_term.EFP_TERM_LJ) # SKP + + dopts['spec_elec'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_ELEC) # SKP + dopts['spec_pol'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_POL) # SKP + dopts['spec_disp'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_DISP) # SKP + dopts['spec_xr'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_XR) # SKP + dopts['spec_chtr'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_CHTR) # SKP + dopts['elec_damp'] = { core.EFP_ELEC_DAMP_SCREEN: 'screen', core.EFP_ELEC_DAMP_OVERLAP: 'overlap', @@ -259,6 +291,10 @@ def get_opts(efpobj, label='libefp'): dopts['enable_pbc'] = bool(opts.enable_pbc) dopts['enable_cutoff'] = bool(opts.enable_cutoff) dopts['swf_cutoff'] = opts.swf_cutoff + dopts['special_fragment'] = opts.special_fragment + dopts['enable_pairwise'] = bool(opts.enable_pairwise) # SKP + dopts['symmetry'] = bool(opts.symmetry) # SKP + dopts['ligand'] = opts.ligand # SKP dopts['pol_driver'] = { core.EFP_POL_DRIVER_ITERATIVE: 'iterative', @@ -270,6 +306,7 @@ def get_opts(efpobj, label='libefp'): dopts['ai_disp'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_DISP) dopts['ai_xr'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_XR) dopts['ai_chtr'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_CHTR) + dopts['ai_qq'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_QQ) # SKP return _rekey(dopts, label=label) @@ -303,7 +340,8 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): # warn on stray dopts keys allowed = [ 'elec', 'pol', 'disp', 'xr', 'elec_damp', 'pol_damp', 'disp_damp', 'enable_pbc', 'enable_cutoff', 'swf_cutoff', - 'pol_driver', 'ai_elec', 'ai_pol' + 'pol_driver', 'ai_elec', 'ai_pol', 'enable_pairwise', 'ligand', 'symmetry', + 'spec_elec', 'spec_pol', 'spec_disp', 'spec_xr', 'spec_chtr', 'ai_qq', 'qq', 'lj', 'special_fragment' # SKP ] label_allowed = [_lbtl[label].get(itm, itm) for itm in allowed] for key in dopts.keys(): @@ -321,11 +359,14 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): opts.terms |= core.efp_term.EFP_TERM_POL opts.terms |= core.efp_term.EFP_TERM_DISP opts.terms |= core.efp_term.EFP_TERM_XR + opts.terms |= core.efp_term.EFP_TERM_QQ # SKP + opts.terms |= core.efp_term.EFP_TERM_LJ # SKP opts.elec_damp = core.EFP_ELEC_DAMP_SCREEN opts.pol_damp = core.EFP_POL_DAMP_TT opts.disp_damp = core.EFP_DISP_DAMP_OVERLAP opts.terms |= core.efp_term.EFP_TERM_AI_ELEC opts.terms |= core.efp_term.EFP_TERM_AI_POL + opts.terms |= core.efp_term.EFP_TERM_AI_QQ # SKP #elif append == 'qchem': # # q-chem and psi4 have different defaults for at least this option # opts.disp_damp = core.EFP_DISP_DAMP_TT @@ -345,7 +386,7 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): else: _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - + topic = _lbtl[label].get('pol', 'pol') if topic in dopts: if dopts[topic] in trues: @@ -375,7 +416,27 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): else: _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - +#========== SKP changes ======================================================================# + topic = _lbtl[label].get('qq', 'qq') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_QQ + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_QQ + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('lj', 'lj') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_LJ + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_LJ + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) +#================================================================================================# # may be enabled in a future libefp release # topic = _lbtl[label].get('chtr', 'chtr') @@ -423,6 +484,35 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): else: _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + topic = _lbtl[label].get('symmetry', 'symmetry') + if topic in dopts: + if dopts[topic] in trues: + opts.symmetry = 1 + elif dopts[topic] in falses: + opts.symmetry = 0 + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) +# PAIRWISE - SKP + topic = _lbtl[label].get('enable_pairwise', 'enable_pairwise') + if topic in dopts: + if dopts[topic] in trues: + opts.enable_pairwise = 1 + elif dopts[topic] in falses: + opts.enable_pairwise = 0 + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) +# LIGAND - SKP + topic = _lbtl[label].get('ligand', 'ligand') + if topic in dopts: + ligand_idx = dopts[topic] + if not isinstance(ligand_idx, int): + raise TypeError(f"ligand value must be an integer, got: {ligand_idx}") + if ligand_idx >= efpobj.get_frag_count(): + raise ValueError(f"Invalid ligand index: {ligand_idx}, only {efpobj.get_frag_count()} fragments present.") + opts.ligand = ligand_idx + topic = _lbtl[label].get('enable_cutoff', 'enable_cutoff') if topic in dopts: @@ -468,12 +558,22 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): else: _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - +#=================== SKP addition ===================================================# + topic = _lbtl[label].get('ai_qq', 'ai_qq') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_AI_QQ + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_AI_QQ + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) +#======================================================================================# # may be enabled in a future libefp release # topic = _lbtl[label].get('ai_disp', 'ai_disp') # topic = _lbtl[label].get('ai_xr', 'ai_xr') # topic = _lbtl[label].get('ai_chtr', 'ai_chtr') - + # set computed options state res = efpobj._efp_set_opts(opts) _result_to_error(res) @@ -600,11 +700,34 @@ def get_energy(efpobj, label='libefp'): 'xr': ene.exchange_repulsion, 'pol': ene.polarization, 'disp': ene.dispersion, + 'qq': ene.qq, } return _rekey(energies, label=label) +def print_pairwise_energies(efpobj): + """Prints pairwise energy between ligand and all fragments.""" + + ligand_index = efpobj.get_opts().get("ligand", 0) + nfrag = efpobj.get_frag_count() + + energies = efpobj._efp_get_pairwise_energy(nfrag) + + for i in range(nfrag): + if i == ligand_index: + continue + + print(f"\nPAIRWISE ENERGY BETWEEN FRAGMENT {i} AND LIGAND {ligand_index}") + energy = energies[i] + print(f"{'ELECTROSTATIC':>40} {energy['electrostatic']:16.10f}") + print(f"{'POLARIZATION':>40} {energy['polarization']:16.10f}") + print(f"{'DISPERSION':>40} {energy['dispersion']:16.10f}") + print(f"{'EXCHANGE REPULSION':>40} {energy['exchange_repulsion']:16.10f}") + print(f"{'TOTAL':>40} {energy['total']:16.10f}") + print("------------------------------------------------------------") + + def get_frag_count(efpobj): """Gets the number of fragments in `efpobj` computation. @@ -942,6 +1065,43 @@ def get_gradient(efpobj): return grad +# SKP + +def get_pairwise_energy(efpobj): + """Gets the per-fragment pairwise energy breakdowns. + + Returns + ------- + list of dict + A list of `n_frag` dictionaries, each containing energy components: + 'electrostatic', 'exchange_repulsion', 'polarization', + 'dispersion', and 'total'. + """ + nfrag = efpobj.get_frag_count() + energies = efpobj._efp_get_pairwise_energy(nfrag) + return energies + +#SKP + +def set_pairwise_energy(efpobj, pair_energies): + """Sets pairwise energy values per fragment. + + Parameters + ---------- + pair_energies : list of dict + A list of dicts with energy components for each fragment, where each dict includes: + 'electrostatic', 'exchange_repulsion', 'polarization', 'dispersion', and 'total'. + + Returns + ------- + None + """ + nfrag = efpobj.get_frag_count() + if len(pair_energies) != nfrag: + raise PyEFPSyntaxError(f"Expected {nfrag} energy entries, got {len(pair_energies)}") + + res = efpobj._efp_set_pairwise_energy(nfrag, pair_energies) + _result_to_error(res) def gradient_summary(efpobj): """Gets the computed per-fragment EFP energy gradient of `efpobj`. @@ -1575,6 +1735,9 @@ def old_to_dict(efpobj): core.efp.get_frag_count = get_frag_count core.efp.get_energy = get_energy core.efp.get_gradient = get_gradient +core.efp.get_pairwise_energy = get_pairwise_energy +core.efp.set_pairwise_energy = set_pairwise_energy +core.efp.print_pairwise_energies = print_pairwise_energies core.efp.energy_summary = energy_summary core.efp.nuclear_repulsion_energy = nuclear_repulsion_energy core.efp.to_viz_dict = to_viz_dict diff --git a/python/wrapper.py_og b/python/wrapper.py_og new file mode 100644 index 00000000..57a5ddbf --- /dev/null +++ b/python/wrapper.py_og @@ -0,0 +1,1708 @@ +# +# @BEGIN LICENSE +# +# pylibefp/wrapper/wrapper.py: +# +# Copyright (c) 2017-2019 The Psi4 Developers +# +# All rights reserved. Use of this source code is governed by a +# BSD-style license that can be found in the LICENSE file. +# +# @END LICENSE +# + +import os +import re +import sys +import math +import functools +from pathlib import Path +from typing import Dict + +import qcelemental as qcel + +from . import core +from .exceptions import Fatal, NoMemory, FileNotFound, EFPSyntaxError, UnknownFragment, PolNotConverged, PyEFPSyntaxError + +_lbtl = { + 'libefp': {}, + 'psi': { + 'elec': 'elst', + 'pol': 'ind', + 'xr': 'exch', + 'elec_damp': 'elst_damping', + 'pol_damp': 'ind_damping', + 'disp_damp': 'disp_damping', + 'pol_driver': 'ind_driver', + 'ai_elec': 'qm_elst', + 'ai_pol': 'qm_ind', + 'ai_disp': 'qm_disp', + 'ai_xr': 'qm_exch', + 'ai_chtr': 'qm_chtr', + }, +} + + +def _rekey(rawdict, label): + newdict = rawdict.copy() + for key in rawdict.keys(): + topic = _lbtl[label].get(key, key) + newdict[topic] = newdict.pop(key) + return newdict + + +def _result_to_error(res, msg=''): + + if res == core.efp_result.EFP_RESULT_SUCCESS: + return + elif res == core.efp_result.EFP_RESULT_FATAL: + raise Fatal(msg) + elif res == core.efp_result.EFP_RESULT_NO_MEMORY: + raise NoMemory(msg) + elif res == core.efp_result.EFP_RESULT_FILE_NOT_FOUND: + raise FileNotFound(msg) + elif res == core.efp_result.EFP_RESULT_SYNTAX_ERROR: + raise EFPSyntaxError(msg) + elif res == core.efp_result.EFP_RESULT_UNKNOWN_FRAGMENT: + raise UnknownFragment(msg) + elif res == core.efp_result.EFP_RESULT_POL_NOT_CONVERGED: + raise PolNotConverged(msg) + + +def prepare(efpobj): + """Prepare the calculation after all fragments added. + + Returns + ------- + None + + """ + res = efpobj._efp_prepare() + _result_to_error(res) + + +def compute(efpobj, do_gradient=False): + """Perform the EFP computation. + + Parameters + ---------- + do_gradient : bool, optional + If True, compute the gradient in addition to energy. + + Returns + ------- + None + + """ + res = efpobj._efp_compute(do_gradient) + _result_to_error(res) + + +def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): + """Searches for EFP fragments and adds to `efpobj`. + + Parameters + ---------- + potential : str or list + Single fragment name or a list of fragments, with or without + ".efp" extension. + fragpath : string, optional + String with ":"-separated paths that may include absolute + paths, relative paths, "$"-marked environment variables, and + the word LIBRARY. Relative paths and environment variables will + be expanded. "LIBRARY" will be expanded to the native libefp + fragment library. + duplicates_ok : bool, optional + Whether to continue or to return pylibefp.Fatal if asked + to load a duplicate potential according to libefp default + behavior. The `potential` list is always filtered to avoid + duplicates. Activating `duplicates_ok` additionally allows + repeated calls to this function to add duplicate potentials. + + Returns + ------- + None + + .. versionchanged:: 1.9 + Now handles `_L` fragments by only looking in LIBRARY paths for these. + Also now handles "deep" library layouts. Unlike C libefp, a fragment + without _L extension is sought in all fraglib paths, including LIBRARY, + if present. + + """ + paths = [] + library_paths = [] + for pth in fragpath.split(os.pathsep): + if pth == 'LIBRARY': + for lst in [paths, library_paths]: + for spth in '@libefp_FRAGLIB_DIRS@'.split(';'): + lst.append(spth) + lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib') + lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib/databases') + lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') + lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib/databases') + for spth in '@FRAGLIB_DATADIRS@'.split(';'): + lst.append(str((Path('@CMAKE_CURRENT_SOURCE_DIR@') / '..' / spth).resolve())) + else: + paths.append(os.path.expandvars(os.path.expanduser(pth))) + + # locate efpfrags full path name + abspath_pots = [] + if isinstance(potential, str): + potential = [potential] + uniq_pots = list(set(potential)) + for pot in uniq_pots: + pathpot = Path(pot).with_suffix('.efp') + search_paths = [] + + if pathpot.stem.upper().endswith('_L'): + # if "frag_L", only search for "LIBRARY/frag.efp" + file_pot_name = pathpot.with_name(str(pathpot.stem)[:-2]).with_suffix('.efp') + for pth in library_paths: + search_paths.append((pth / file_pot_name).resolve()) + else: + # otherwise, search all "/frag.efp", possibly incl. LIBRARY + for pth in paths: + search_paths.append((pth / pathpot).resolve()) + + for pth in search_paths: + if pth.is_file(): + abspath_pots.append(str(pth)) + break + + # load the potentials + for ipot, pot in enumerate(abspath_pots): + res = efpobj._efp_add_potential(pot) + try: + _result_to_error(res, uniq_pots[ipot]) + except Fatal as e: + if duplicates_ok: + pass + else: + raise Fatal('Invalid fragment name (probably already added): {}'.format(uniq_pots[ipot])) + + print(r""" EFP fragment {} read from {}""".format(uniq_pots[ipot], pot)) + + +def add_fragment(efpobj, fragments): + """Registers EFP fragments to `efpobj` in order. + + Parameters + ---------- + fragments : list of str + Names of fragments to define the EFP subsystem. + + .. versionchanged:: 1.9 + Fragments are checking `_L` extensions for library files, too. + + Returns + ------- + None + + """ + if isinstance(fragments, str): + fragments = [fragments] + for frag in fragments: + res = efpobj._efp_add_fragment(frag) + try: + _result_to_error(res, frag) + except UnknownFragment as e: + res = efpobj._efp_add_fragment(frag + "_L") + _result_to_error(res, frag) + + +def get_opts(efpobj, label='libefp'): + """Returns the options state of *efpobj* as a dictionary. + + Parameters + ---------- + label : {'libefp', 'psi'}, optional + Returned dictionary keys are identical to libefp efp_opts struct + names unless custom renaming requested via `label`. + + Returns + ------- + dict + Current options state of `efpobj` translated into bools, strings, + and floats, rather than libefp custom datatypes. + + """ + opts = core.efp_opts() + res = efpobj._efp_get_opts(opts) + _result_to_error(res) + + dopts = {} + + dopts['elec'] = bool(opts.terms & core.efp_term.EFP_TERM_ELEC) + dopts['pol'] = bool(opts.terms & core.efp_term.EFP_TERM_POL) + dopts['disp'] = bool(opts.terms & core.efp_term.EFP_TERM_DISP) + dopts['xr'] = bool(opts.terms & core.efp_term.EFP_TERM_XR) + dopts['chtr'] = bool(opts.terms & core.efp_term.EFP_TERM_CHTR) + + dopts['elec_damp'] = { + core.EFP_ELEC_DAMP_SCREEN: 'screen', + core.EFP_ELEC_DAMP_OVERLAP: 'overlap', + core.EFP_ELEC_DAMP_OFF: 'off', + }[opts.elec_damp] + + dopts['pol_damp'] = { + core.EFP_POL_DAMP_TT: 'tt', + core.EFP_POL_DAMP_OFF: 'off', + }[opts.pol_damp] + + dopts['disp_damp'] = { + core.EFP_DISP_DAMP_TT: 'tt', + core.EFP_DISP_DAMP_OVERLAP: 'overlap', + core.EFP_DISP_DAMP_OFF: 'off', + }[opts.disp_damp] + + dopts['enable_pbc'] = bool(opts.enable_pbc) + dopts['enable_cutoff'] = bool(opts.enable_cutoff) + dopts['swf_cutoff'] = opts.swf_cutoff + + dopts['pol_driver'] = { + core.EFP_POL_DRIVER_ITERATIVE: 'iterative', + core.EFP_POL_DRIVER_DIRECT: 'direct', + }[opts.pol_driver] + + dopts['ai_elec'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_ELEC) + dopts['ai_pol'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_POL) + dopts['ai_disp'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_DISP) + dopts['ai_xr'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_XR) + dopts['ai_chtr'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_CHTR) + + return _rekey(dopts, label=label) + + +def set_opts(efpobj, dopts, label='libefp', append='libefp'): + """Sets the options state of `efpobj` from dictionary `dopts`. + + Parameters + ---------- + dopts : dict + Input dict with keys from libefp efp_opts (see `label`) and + values bools, strings, floats, and ints, as appropriate, rather + than libefp custom datatypes. + label : {'libefp', 'psi'}, optional + Input `dopts` keys are read as libefp efp_opts struct names or + by the custom translation set defined for `label`. + append : {'libefp', 'psi', 'append'}, optional + When ``libefp``, input `dopts` keys are applied to the default + (generally OFF) efp_opts state. When ``psi``, input `dopts` + keys are applied to the default (generally ON) Psi efp_opts + state. When ``append``, input `dopts` keys are applied to the + current *efpobj* opt_opts state. + + Returns + ------- + dict + After setting the options state, `efpobj` is queried as to the + current options state, which is then returned. + + """ + # warn on stray dopts keys + allowed = [ + 'elec', 'pol', 'disp', 'xr', 'elec_damp', 'pol_damp', 'disp_damp', 'enable_pbc', 'enable_cutoff', 'swf_cutoff', + 'pol_driver', 'ai_elec', 'ai_pol' + ] + label_allowed = [_lbtl[label].get(itm, itm) for itm in allowed] + for key in dopts.keys(): + if key not in label_allowed: + print('Warning: unrecognized key {}'.format(key)) + trues = [True, 1, 'yes', 'true', 'on'] + falses = [False, 0, 'no', 'false', 'off'] + + # prepare base options state for dopts + opts = core.efp_opts() + if append == 'libefp': + pass + elif append == 'psi': + opts.terms |= core.efp_term.EFP_TERM_ELEC + opts.terms |= core.efp_term.EFP_TERM_POL + opts.terms |= core.efp_term.EFP_TERM_DISP + opts.terms |= core.efp_term.EFP_TERM_XR + opts.elec_damp = core.EFP_ELEC_DAMP_SCREEN + opts.pol_damp = core.EFP_POL_DAMP_TT + opts.disp_damp = core.EFP_DISP_DAMP_OVERLAP + opts.terms |= core.efp_term.EFP_TERM_AI_ELEC + opts.terms |= core.efp_term.EFP_TERM_AI_POL + #elif append == 'qchem': + # # q-chem and psi4 have different defaults for at least this option + # opts.disp_damp = core.EFP_DISP_DAMP_TT + elif append == 'append': + res = efpobj._efp_get_opts(opts) + _result_to_error(res) + else: + raise PyEFPSyntaxError('Unrecognized opts default set: {}'.format(append)) + + # apply dopts to options state + topic = _lbtl[label].get('elec', 'elec') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_ELEC + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_ELEC + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('pol', 'pol') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_POL + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_POL + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('disp', 'disp') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_DISP + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_DISP + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('xr', 'xr') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_XR + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_XR + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + # may be enabled in a future libefp release + # topic = _lbtl[label].get('chtr', 'chtr') + + topic = _lbtl[label].get('elec_damp', 'elec_damp') + if topic in dopts: + try: + opts.elec_damp = { + 'screen': core.EFP_ELEC_DAMP_SCREEN, + 'overlap': core.EFP_ELEC_DAMP_OVERLAP, + 'off': core.EFP_ELEC_DAMP_OFF, + }[dopts[topic].lower()] + except KeyError: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [screen/overlap/off] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('pol_damp', 'pol_damp') + if topic in dopts: + try: + opts.pol_damp = { + 'tt': core.EFP_POL_DAMP_TT, + 'off': core.EFP_POL_DAMP_OFF, + }[dopts[topic].lower()] + except KeyError: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [tt/off] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('disp_damp', 'disp_damp') + if topic in dopts: + try: + opts.disp_damp = { + 'overlap': core.EFP_DISP_DAMP_OVERLAP, + 'tt': core.EFP_DISP_DAMP_TT, + 'off': core.EFP_DISP_DAMP_OFF, + }[dopts[topic].lower()] + except KeyError: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [overlap/tt/off] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('enable_pbc', 'enable_pbc') + if topic in dopts: + if dopts[topic] in trues: + opts.enable_pbc = 1 + elif dopts[topic] in falses: + opts.enable_pbc = 0 + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('enable_cutoff', 'enable_cutoff') + if topic in dopts: + if dopts[topic] in trues: + opts.enable_cutoff = 1 + elif dopts[topic] in falses: + opts.enable_cutoff = 0 + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('swf_cutoff', 'swf_cutoff') + if topic in dopts: + opts.swf_cutoff = float(dopts[topic]) + + topic = _lbtl[label].get('pol_driver', 'pol_driver') + if topic in dopts: + try: + opts.pol_driver = { + 'iterative': core.EFP_POL_DRIVER_ITERATIVE, + 'direct': core.EFP_POL_DRIVER_DIRECT, + }[dopts[topic].lower()] + except KeyError: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [iterative/direct] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('ai_elec', 'ai_elec') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_AI_ELEC + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_AI_ELEC + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('ai_pol', 'ai_pol') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_AI_POL + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_AI_POL + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + # may be enabled in a future libefp release + # topic = _lbtl[label].get('ai_disp', 'ai_disp') + # topic = _lbtl[label].get('ai_xr', 'ai_xr') + # topic = _lbtl[label].get('ai_chtr', 'ai_chtr') + + # set computed options state + res = efpobj._efp_set_opts(opts) + _result_to_error(res) + + return efpobj.get_opts(label=label) + + +def set_periodic_box(efpobj, xyz, alpha=90.0, beta=90.0, gamma=90.0): + """Set periodic box size. + + Parameters + ---------- + xyz : list + (3,) Box sizes in three dimensions [x, y, z] in Bohr. + alpha + Unit cell alpha angle in degrees. + beta + Unit cell beta angle in degrees. + gamma + Unit cell gamma angle in degrees. + + Returns + ------- + None + + .. versionchanged:: 1.9 + Parameters alpha, beta, and gamma added. + + """ + if len(xyz) != 3: + raise PyEFPSyntaxError('Invalid periodic box setting: {}'.format(xyz)) + + res = efpobj._efp_set_periodic_box(xyz[0], xyz[1], xyz[2], alpha, beta, gamma) + _result_to_error(res) + (res, xyzabc) = efpobj._efp_get_periodic_box() + _result_to_error(res) + + +def get_periodic_box(efpobj): + """Get periodic box size. + + Returns + ------- + list + Box sizes in three dimensions [x, y, z] in Bohr. + And box angles [alpha, beta, gamma] in degrees. + + .. versionchanged:: 1.9 + Return size extended from 3 to 6 to include angles. + + """ + (res, xyzabc) = efpobj._efp_get_periodic_box() + _result_to_error(res) + + return xyzabc + + +#def opts_summary(efpobj, labels='libefp'): +# +# opts = efpobj.get_opts() +## py::dict opts = opts_to_dict(efp); +# +# elec = 'Electrostatics' +# xr = 'Exchange' +# disp = 'Dispersion' +# if labels == 'libefp': +# pol = 'Polarization' +# elif labels == 'psi4': +# pol = 'Induction' +# +# text = '' +# text += '\n ==> EFP/EFP Setup <==\n\n' +# text += ' {:<30} {:12}\n'.format(elec + ' enabled?:', 'true' if opts["elec"] else 'false') +# text += ' {:<30} {:12}\n'.format(pol + ' enabled?:', 'true' if opts["pol"] else 'false') +# text += ' {:<30} {:12}\n'.format(disp + ' enabled?:', 'true' if opts["disp"] else 'false') +# text += ' {:<30} {:12}\n'.format(xr + ' enabled?:', 'true' if opts["xr"] else 'false') +# text += ' {:<30} {:12}\n'.format('Charge-Transfer enabled?:', 'undefined') +# +# text += '\n {:<30} {:12}\n'.format(elec + ' damping:', opts["elec_damp"]) +# text += ' {:<30} {:12}\n'.format(pol + 'damping:', opts["pol_damp"]) +# text += ' {:<30} {:12}\n'.format(disp + ' damping:', opts["disp_damp"]) +# text += ' {:<30} {:12}\n'.format(pol + ' driver:', opts["pol_driver"]) +# +# text += '\n ==> QM/EFP Setup <==\n\n' +##// sprintf(buffer, " Number of QM fragments: %12d\n", -1); //, nfrag_); +# text += ' Electrostatics enabled?: {:12}\n'.format('true' if opts["ai_elec"] else 'false') +# text += ' Polarization enabled?: {:12}\n'.format('true' if opts["ai_pol"] else 'false') +# text += ' Dispersion enabled?: {:12}\n'.format('undefined') +# text += ' Exchange enabled?: {:12}\n'.format('undefined') +# text += ' Charge-Transfer enabled?: {:12}\n'.format('undefined') +# +# return text + + +def get_energy(efpobj, label='libefp'): + """Gets the energy components from `efpobj` computation as a dictionary. + + Parameters + ---------- + label : {'libefp', 'psi'}, optional + Returned dictionary keys are identical to libefp efp_energy struct + names plus elec, pol, disp, xr, & total components unless custom renaming + requested via `label`. + + Returns + ------- + dict + Individual terms, summed components, and total energies. + + """ + ene = core.efp_energy() + res = efpobj._efp_get_energy(ene) + _result_to_error(res) + + energies = { + 'electrostatic': ene.electrostatic, + 'charge_penetration': ene.charge_penetration, + 'electrostatic_point_charges': ene.electrostatic_point_charges, + 'polarization': ene.polarization, + 'dispersion': ene.dispersion, + 'exchange_repulsion': ene.exchange_repulsion, + 'total': ene.total, + 'elec': ene.electrostatic + ene.charge_penetration + ene.electrostatic_point_charges, + 'xr': ene.exchange_repulsion, + 'pol': ene.polarization, + 'disp': ene.dispersion, + } + + return _rekey(energies, label=label) + + +def get_frag_count(efpobj): + """Gets the number of fragments in `efpobj` computation. + + Returns + ------- + int + Number of fragments in calculation. + + """ + (res, nfrag) = efpobj._efp_get_frag_count() + _result_to_error(res) + + return nfrag + + +def get_multipole_count(efpobj): + """Gets the number of multipoles in `efpobj` computation. + + Returns + ------- + int + Total number of multipoles from electrostatics calculation. + + """ + (res, nmult) = efpobj._efp_get_multipole_count() + _result_to_error(res) + + return nmult + + +def get_multipole_coordinates(efpobj, verbose=1): + """Gets the coordinates of `efpobj` electrostatics multipoles. + + Parameters + ---------- + verbose : int, optional + Whether to print out the multipole coordinates. 0: no printing. 1: + print charges and dipoles. 2: additionally print quadrupoles + and octupoles. + + Returns + ------- + list + ``3 n_mult`` (flat) array of multipole locations. + + Examples + -------- + + >>> # Use with NumPy + >>> n_mult = efpobj.get_multipole_count() + >>> xyz_mult = np.asarray(efpobj.get_multipole_coordinates()).reshape(n_mult, 3) + + """ + nmult = efpobj.get_multipole_count() + (res, xyz) = efpobj._efp_get_multipole_coordinates(nmult) + _result_to_error(res) + + if verbose >= 1: + xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) + + text = '\n ==> EFP Multipole Coordinates <==\n\n' + for mu in range(nmult): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) + print(text) + + return xyz + + +def get_multipole_values(efpobj, verbose=1): + """Gets the computed per-point multipoles of `efpobj`. + + Parameters + ---------- + verbose : int, optional + Whether to print out the multipole arrays. 0: no printing. 1: + print charges and dipoles. ``2``: additionally print quadrupoles + and octupoles. + + Returns + ------- + list + ``20 n_mult`` (flat) array of per-point multipole values including + charges + dipoles + quadrupoles + octupoles. + Dipoles stored as x, y, z. + Quadrupoles stored as xx, yy, zz, xy, xz, yz. + Octupoles stored as xxx, yyy, zzz, xxy, xxz, xyy, yyz, xzz, yzz, xyz. + + Examples + -------- + >>> # Use with NumPy + >>> n_mult = efpobj.get_multipole_count() + >>> val_mult = np.asarray(efpobj.get_multipole_values()).reshape(n_mult, 20) + + """ + nmult = efpobj.get_multipole_count() + (res, mult) = efpobj._efp_get_multipole_values(nmult) + _result_to_error(res) + + if verbose >= 1: + mult20 = list(map(list, zip(*[iter(mult)] * 20))) + + text = '\n ==> EFP Multipoles: Charge & Dipole <==\n\n' + for mu in range(nmult): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *mult20[mu][:4]) + + if verbose >= 2: + text += '\n ==> EFP Multipoles: Quadrupole <==\n\n' + for mu in range(nmult): + text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format(mu, *mult20[mu][4:10]) + text += '\n ==> EFP Multipoles: Octupole <==\n\n' + for mu in range(nmult): + text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format( + mu, *mult20[mu][10:]) + print(text) + + return mult + + +def get_induced_dipole_count(efpobj): + """Gets the number of polarization induced dipoles in `efpobj` computation. + + Returns + ------- + int + Total number of polarization induced dipoles. + + """ + (res, ndip) = efpobj._efp_get_induced_dipole_count() + _result_to_error(res) + + return ndip + + +def get_induced_dipole_coordinates(efpobj, verbose=1): + """Gets the coordinates of `efpobj` induced dipoles. + + Parameters + ---------- + verbose : int, optional + Whether to print out the multipole arrays. 0: no printing. 1: + print induced dipole coordinates. + + Returns + ------- + list + (3 * n_dip, ) (flat) array of induced dipole locations. + + """ + ndip = efpobj.get_induced_dipole_count() + (res, xyz) = efpobj._efp_get_induced_dipole_coordinates(ndip) + _result_to_error(res) + + if verbose >= 1: + xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) + + text = '\n ==> EFP Induced Dipole Coordinates <==\n\n' + for mu in range(ndip): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) + print(text) + + return xyz + + +def get_induced_dipole_values(efpobj, verbose=1): + """Gets the values of polarization induced dipoles of `efpobj`. + + Parameters + ---------- + verbose : int, optional + Whether to print out the induced dipole arrays. 0: no + printing. 1: print induced dipole values. + + Returns + ------- + list + ``3*n_dip`` (flat) array of polarization induced dipole values. + + Examples + -------- + >>> # Use with NumPy + >>> n_dip = efpobj.get_induced_dipole_count() + >>> val_dip = np.asarray(efpobj.get_induced_dipole_values()).reshape(n_dip, 3) + + """ + ndip = efpobj.get_induced_dipole_count() + (res, vals) = efpobj._efp_get_induced_dipole_values(ndip) + _result_to_error(res) + + if verbose >= 1: + vals3 = list(map(list, zip(*[iter(vals)] * 3))) + + text = '\n ==> EFP Induced Dipoles <==\n\n' + for mu in range(ndip): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *vals3[mu]) + print(text) + + return vals + + +def get_induced_dipole_conj_values(efpobj, verbose=1): + """Gets the values of polarization conjugated induced dipoles of `efpobj`. + + Parameters + ---------- + verbose : int, optional + Whether to print out the induced dipole conj arrays. + 0: no printing. 1: print induced dipole values. + + Returns + ------- + list + 3 x n_dip (flat) array of conjugate induced dipole values. + + """ + ndip = efpobj.get_induced_dipole_count() + (res, vals) = efpobj._efp_get_induced_dipole_conj_values(ndip) + _result_to_error(res) + + if verbose >= 1: + vals3 = list(map(list, zip(*[iter(vals)] * 3))) + + text = '\n ==> EFP Conj. Induced Dipoles <==\n\n' + for mu in range(ndip): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *vals3[mu]) + print(text) + + return vals + + +def get_point_charge_count(efpobj): + """Gets the number of set point charges `efpobj`. + + Returns + ------- + int + Total number of set point charges. + + """ + (res, nptc) = efpobj._efp_get_point_charge_count() + _result_to_error(res) + + return nptc + + +def get_point_charge_coordinates(efpobj, verbose=1): + """Gets the coordinates of set point charges on `efpobj`. + + Parameters + ---------- + verbose : int, optional + Whether to print out the point charge arrays. 0: no printing. + 1: print point charge coordinates. + + Returns + ------- + list + 3 x n_ptc (flat) array of point charge locations. + + """ + nptc = efpobj.get_point_charge_count() + (res, xyz) = efpobj._efp_get_point_charge_coordinates(nptc) + _result_to_error(res) + + if verbose >= 1: + xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) + + text = '\n ==> EFP Point Charge Coordinates <==\n\n' + for mu in range(nptc): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) + print(text) + + return xyz + + +def get_point_charge_values(efpobj, verbose=1): + """Gets the values of set point charges on `efpobj`. + + Parameters + ---------- + verbose : int, optional + Whether to print out the point charge arrays. 0: no + printing. 1: print point charge values. + + Returns + ------- + list + ``n_ptc`` array of point charge values. + + Examples + -------- + >>> # Use with NumPy + >>> val_ptc = np.asarray(efpobj.get_point_charge_values()) + + """ + nptc = efpobj.get_point_charge_count() + (res, vals) = efpobj._efp_get_point_charge_values(nptc) + _result_to_error(res) + + if verbose >= 1: + text = '\n ==> EFP Point Charges <==\n\n' + for mu in range(nptc): + text += '{:6d} {:14.8f}\n'.format(mu, vals[mu]) + print(text) + + return vals + + +def get_wavefunction_dependent_energy(efpobj): + """Updates wavefunction-dependent energy terms for SCF. + + Returns + ------- + float + Wavefunction-dependent EFP energy. + + """ + (res, wde) = efpobj._efp_get_wavefunction_dependent_energy() + _result_to_error(res) + + return wde + + +def get_gradient(efpobj): + """Gets the computed per-fragment EFP energy gradient of `efpobj`. + + Returns + ------- + list + ``6 x n_frag`` array of per-fragment negative force and torque. + + """ + nfrag = efpobj.get_frag_count() + (res, grad) = efpobj._efp_get_gradient(nfrag) + _result_to_error(res) + + return grad + + +def gradient_summary(efpobj): + """Gets the computed per-fragment EFP energy gradient of `efpobj`. + + Returns + ------- + str + Formatted text of the `6 x n_frag` gradient and torque. + + """ + grad = efpobj.get_gradient() + grad6 = list(map(list, zip(*[iter(grad)] * 6))) + + text = '\n ==> EFP Gradient & Torque <==\n\n' + for fr in grad6: + text += '{:14.8f} {:14.8f} {:14.8f} {:14.8f} {:14.8f} {:14.8f}\n'.format(*fr) + + text += '\n' + return text + + +def energy_summary(efpobj, label='libefp', scfefp=None): + """Forms summary of EFP and SCFEFP energy components from `efpobj`. + + Parameters + ---------- + label : {'libefp', 'psi'}, optional + Text labels use libefp terms names unless custom renaming + requested via `label`. + scfefp : float, optional + Total SCF energy (Hartrees) including EFP wavefunction dependent + and wavefunction independent terms. Used for add'l printing. + + Returns + ------- + str + Summary suitable for printing indicating energy components + (electrostatics, exchange, induction, dispersion, total), whether + each are enabled in options, and breakdown into pure-EFP and + QM-EFP, where available. If scfefp, includes a section on SCF + iterated and SCF total. + + """ + opt = efpobj.get_opts() + ene = efpobj.get_energy() + + def _enabled(tf, t='*', f='', suffix=''): + if tf: + return t + suffix + else: + return f + + elec = 'Electrostatics' + disp = 'Dispersion' + if label == 'libefp': + xr = 'Exchange-Repulsion' + indc = 'Polarization' + elif label == 'psi': + xr = 'Exchange' + indc = 'Induction' + + # yapf: disable + text = '\n' + text += '\n EFP Results\n' + text += ' ------------------------------------------------------------\n' + text += ' {:<30}{:20.12f} [Eh] {}\n'.format(elec, ene['electrostatic'] + + ene['charge_penetration'] + + ene['electrostatic_point_charges'], + _enabled(opt['elec'] or opt['ai_elec'], + suffix=(' (' + opt['elec_damp'] + ' damping)'))) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('EFP/EFP', ene['electrostatic'] + + ene['charge_penetration'], + _enabled(opt['elec'])) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('QM-Nuc/EFP', + ene['electrostatic_point_charges'], + _enabled(opt['ai_elec'])) + text += '\n {:<30}{:20.12f} [Eh] {}\n'.format(xr, ene['exchange_repulsion'], + _enabled(opt['xr'])) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('EFP/EFP', ene['exchange_repulsion'], + _enabled(opt['xr'])) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('QM/EFP', 0.0, '') + text += '\n {:<30}{:20.12f} [Eh] {}\n'.format(indc, ene['polarization'], + _enabled(opt['pol'] or opt['ai_pol'], + suffix=(' (' + opt['pol_damp'] + ' damping)'))) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format(_enabled(opt['ai_pol'], t='QM/EFP', f='EFP/EFP'), + ene['polarization'], + _enabled(opt['pol'] or opt['ai_pol'])) + text += '\n {:<30}{:20.12f} [Eh] {}\n'.format(disp, ene['dispersion'], + _enabled(opt['disp'], + suffix=(' (' + opt['disp_damp'] + ' damping)'))) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('EFP/EFP', ene['dispersion'], + _enabled(opt['disp'])) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('QM/EFP', 0.0, '') + text += '\n {:<30}{:20.12f} [Eh]\n'.format('Total EFP', ene['total']) + # yapf: enable + if scfefp is not None: + wie = ene['total'] - ene['pol'] + text += ' EFP excluding EFP {:<12}{:20.12f} [Eh]\n'.format(indc, wie) + text += ' SCF including EFP {:<12}{:20.12f} [Eh]\n'.format(indc, scfefp - wie) + text += ' Total SCF including Total EFP {:20.12f} [Eh]\n'.format(scfefp) + + text += '\n' + return text + + +def geometry_summary(efpobj, units_to_bohr=1.0): + """Formatted geometry and fragments for `efpobj`. + + Parameters + ---------- + units_to_bohr : float,optional + Conversion factor for printing; for Angstroms, approx. 0.529177. + + Returns + ------- + str + Summary of EFP geometry & point charges (QM atoms) suitable for printing. + + """ + text = '' + text += '\n ==> EFP Geometry <==\n\n' + text += ' Geometry (in {} * {:12.8f}):\n\n'.format('Bohr', units_to_bohr) + text += ' Center X Y Z QM/EFP\n' + text += ' ------------ ----------------- ----------------- ----------------- ------------\n' + + mol_info = efpobj.get_atoms() + terminal_frag = [fr[0] for fr in mol_info['fragments'][1:]] + frag_names = efpobj.get_frag_name() + + ifr = 0 + for iat, at in enumerate(mol_info['full_atoms']): + if iat in terminal_frag: + text += ' --\n' + ifr += 1 + text += ' {:8}{:4} {:17.12f} {:17.12f} {:17.12f} {}\n'.format(at['symbol'], '', + at['x'] * units_to_bohr, + at['y'] * units_to_bohr, + at['z'] * units_to_bohr, + frag_names[ifr].lower()) + + # TODO move into dict? + ptc_info = { + 'n': efpobj.get_point_charge_count(), + 'xyz': efpobj.get_point_charge_coordinates(verbose=0), + 'val': efpobj.get_point_charge_values(verbose=0) + } + + if ptc_info['n'] > 0: + mult3 = list(map(list, zip(*[iter(ptc_info['xyz'])] * 3))) + text += ' ------------\n' + for ptc in range(ptc_info['n']): + text += ' {:8}{:4} {:17.12f} {:17.12f} {:17.12f} {}\n'.format(ptc_info['val'][ptc], '', + mult3[ptc][0] * units_to_bohr, + mult3[ptc][1] * units_to_bohr, + mult3[ptc][2] * units_to_bohr, + 'point_charge') + + text += '\n' + return text + + +def nuclear_repulsion_energy(efpobj, use_efp_frags=True, use_point_charges=False): + """Computes nuclear repulsion energy for `efpobj`. + + Parameters + ---------- + use_efp_frags : bool, optional + If True (default), compute NRE using the efp fragment subsystem. + use_point_charges : bool, optional + If True (not default), include point charges (generally QM atoms) + in NRE computation. + + Returns + ------- + float + Nuclear repulsion energy [E_h] for specified geometry subsystem + + """ + nre = 0.0 + loc = [] + + if use_efp_frags: + loc.extend(efpobj.get_atoms()['full_atoms']) + if use_point_charges: + ptc_xyz = efpobj.get_point_charge_coordinates(verbose=0) + ptc_val = efpobj.get_point_charge_values(verbose=0) + for ptc in range(efpobj.get_point_charge_count()): + loc.append({ + 'Z': ptc_val[ptc], + 'x': ptc_xyz[ptc * 3], + 'y': ptc_xyz[ptc * 3 + 1], + 'z': ptc_xyz[ptc * 3 + 2] + }) + + for iat1, at1 in enumerate(loc): + for iat2, at2 in enumerate(loc): + if iat2 < iat1: + ZZ = at1['Z'] * at2['Z'] + dx = at1['x'] - at2['x'] + dy = at1['y'] - at2['y'] + dz = at1['z'] - at2['z'] + dist = math.sqrt(dx * dx + dy * dy + dz * dz) + nre += ZZ / dist + + return nre + + +#def _frag_idx_validation(efpobj, ifr): +# nfr = efpobj.get_frag_count() +# if (ifr < 0) or (ifr >= nfr): +# raise PyEFPSyntaxError('Invalid fragment index for 0-indexed {}-fragment EFP: {}'.format(nfr, ifr)) + + +def set_frag_coordinates(efpobj, ifr, ctype, coord): + """Set fragment orientation on `efpobj` from hint. + + Parameters + ---------- + ifr : int + Index of fragment (0-indexed). + ctype : core.efp_coord_type or str {'xyzabc', 'points', 'rotmat'} + Type of coodinates hint among ``xyzabc``, `points`, & `rotmat`. + coord : list of floats + 6-, 9-, or 12-element hint of coordinates. + + Returns + ------- + None + + """ + if isinstance(ctype, str): + try: + ctype = { + 'xyzabc': core.EFP_COORD_TYPE_XYZABC, + 'points': core.EFP_COORD_TYPE_POINTS, + 'rotmat': core.EFP_COORD_TYPE_ROTMAT, + }[ctype.lower()] + except KeyError: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [xyzabc/points/rotmat] {}: {}'.format('ctype', ctype)) + + efpobj.input_units_to_au = 1.0 + res = efpobj._efp_set_frag_coordinates(ifr, ctype, coord) + _result_to_error(res) + + +def set_point_charge_coordinates(efpobj, xyz): + """Reset arbitrary point charge locations (often QM atoms) + interacting with the EFP subsystem. Must have been initially set + with set_point_charges. + + Parameters + ---------- + xyz : list + ``3 * n_ptc`` array of XYZ coordinates of charge positions, + generally QM coordinates. + + Returns + ------- + None + + """ + n_ptc = efpobj.get_point_charge_count() + if n_ptc == 0: + raise PyEFPSyntaxError('Must initialize point charges with set_point_charges') + if len(xyz) != (3 * n_ptc): + raise PyEFPSyntaxError('Invalid point charge length: {}'.format(xyz)) + + res = efpobj._efp_set_point_charge_coordinates(len(xyz), xyz) + _result_to_error(res) + + +def set_point_charge_values(efpobj, ptc): + """Reset arbitrary point charge values (often QM atoms) + interacting with the EFP subsystem. Must have been initially set + with set_point_charges. + + Parameters + ---------- + ptc : list of float + array of charge values, generally QM nuclear charges. + + Returns + ------- + None + + """ + n_ptc = efpobj.get_point_charge_count() + if n_ptc == 0: + raise PyEFPSyntaxError('Must initialize point charges with set_point_charges') + if len(ptc) != n_ptc: + raise PyEFPSyntaxError('Invalid point charge length: {}'.format(ptc)) + + res = efpobj._efp_set_point_charge_values(len(ptc), ptc) + _result_to_error(res) + + +def set_point_charges(efpobj, ptc, coord): + """Sets arbitrary point charges (often QM atoms) interacting with the + EFP subsystem. + + Parameters + ---------- + ptc : list + (n_ptc, ) array of charge values, generally QM Z. + coord : list + (3 * n_ptc, ) or (n_ptc, 3) array (that is, flat or nested) + of XYZ coordinates [a0] of charge positions, generally QM coordinates. + + Returns + ------- + None + + """ + if len(ptc) == len(coord): + coord = sum(coord, []) + + if (len(ptc) * 3) != len(coord): + raise PyEFPSyntaxError('Invalid point charges setting: {}'.format(coord)) + + res = efpobj._efp_set_point_charges(len(ptc), ptc, coord) + _result_to_error(res) + + +def get_frag_name(efpobj, ifr=None): + """Gets system name on fragment(s) of `efpobj`. + + Parameters + ---------- + ifr : int, optional + Index of fragment (0-indexed) if not all. + + Returns + ------- + str, list of str + If `ifr`, name of fragment `ifr`. Otherwise, names of all + fragments in list. + + """ + return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='name') + + +def _get_frag_common(efpobj, ifr, topic): + nfr = efpobj.get_frag_count() + + fn_mapper = { + 'name': efpobj._efp_get_frag_name, + 'charge': efpobj._efp_get_frag_charge, + 'xyzabc': efpobj._efp_get_frag_xyzabc, + 'atom_count': efpobj._efp_get_frag_atom_count, + 'multiplicity': efpobj._efp_get_frag_multiplicity, + } + + if ifr is None: + frags = [] + for fr in range(nfr): + (res, ftopic) = fn_mapper[topic](fr) + _result_to_error(res) + frags.append(ftopic) + + return frags + + else: + if ifr in range(nfr): + (res, ftopic) = fn_mapper[topic](ifr) + _result_to_error(res) + + return ftopic + else: + raise PyEFPSyntaxError('Invalid fragment index for 0-indexed {}-fragment EFP: {}'.format(nfr, ifr)) + + +def get_frag_charge(efpobj, ifr=None, zero=1e-8): + """Gets total charge on fragment(s) of `efpobj`. + + Parameters + ---------- + ifr : int, optional + Index of fragment (0-indexed) if not all. + zero : float, optional + Absolute value under which to zero charge. + + Returns + ------- + str, list of str + If `ifr`, charge of fragment `ifr`. Otherwise, charges of all + fragments in list. + + """ + chg = _get_frag_common(efpobj=efpobj, ifr=ifr, topic='charge') + if ifr is None: + return [(0.0 if math.fabs(c) < zero else c) for c in chg] + else: + if math.fabs(chg) < zero: + return 0.0 + else: + return chg + + +def get_frag_multiplicity(efpobj, ifr=None): + """Gets spin multiplicity on fragment(s) of `efpobj`. + + Parameters + ---------- + ifr : int, optional + Index of fragment (0-indexed) if not all. + + Returns + ------- + str, list of str + If `ifr`, multiplicity of fragment `ifr`. Otherwise, multiplicity + of all fragments in list. + + """ + return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='multiplicity') + + +def get_frag_atom_count(efpobj, ifr=None): + """Gets atom count on fragment(s) of `efpobj`. + + Parameters + ---------- + ifr : int, optional + Index of fragment (0-indexed) if not all. + + Returns + ------- + str, list of str + If `ifr`, atom count of fragment `ifr`. Otherwise, atom counts + of all fragments in list. + + """ + return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='atom_count') + + +def get_frag_atoms(efpobj, ifr): + """Gets geometry information for atoms modeled by fragment in `efpobj`. + + Parameters + ---------- + ifr : int + Index of fragment (0-indexed). + + Returns + ------- + list of dict + Each atom in fragment `ifr` has position, charge, and element + fields below in a dictionary at list index `ifr` + ``Z`` (*float*) nuclear charge. + ``label`` (*str*) atom label from EFP file, e.g., A02H2. + ``x`` (*float*) X coordinate of atom position. + ``y`` (*float*) Y coordinate of atom position. + ``z`` (*float*) Z coordinate of atom position. + ``mass`` (*float*) atom mass [amu] + ``symbol`` (*str*) atomic symbol extracted from label. + + """ + nfr = efpobj.get_frag_count() + nat = efpobj.get_frag_atom_count(ifr) + + if ifr in range(nfr): + (res, atoms) = efpobj._efp_get_frag_atoms(ifr, nat) + _result_to_error(res) + + for at in atoms: + mobj = re.match(r'\AA\d*(?P[A-Z]{1,3})\d*\Z', at['label']) + if mobj: + at['symbol'] = mobj.group('symbol').capitalize() + return atoms + else: + raise PyEFPSyntaxError('Invalid fragment index for 0-indexed {}-fragment EFP: {}'.format(nfr, ifr)) + + +def get_atoms(efpobj): + #enum efp_result res; + #size_t frag_natom, natom=0; + #double frag_chg; + #int frag_mult; + #py::list fr, frt, frcg, frmp, full_atoms; + + natom = 0 + frag_count = efpobj.get_frag_count() + frag_natom = efpobj.get_frag_atom_count() + fr = [] + full_atoms = [] + for ifr in range(frag_count): + frat = frag_natom[ifr] + + fr.append([natom, natom + frat]) + natom += frat + + pyat = efpobj.get_frag_atoms(ifr) + full_atoms.extend(pyat) + + mol_info = {} + # mol_info["units"] = "Bohr" + mol_info["input_units_to_au"] = 1.0 + mol_info["fix_com"] = True + mol_info["fix_orientation"] = True + mol_info["fix_symmetry"] = "c1" + + mol_info['fragments'] = fr + mol_info['fragment_types'] = ['Real'] * frag_count + mol_info['fragment_charges'] = efpobj.get_frag_charge() + mol_info['fragment_multiplicities'] = efpobj.get_frag_multiplicity() + mol_info['full_atoms'] = full_atoms + + return mol_info + + +def to_viz_dict(efpobj): + + pyat = efpobj.get_atoms() + for at in pyat['full_atoms']: + at['ghosted'] = False + at['at_type'] = 'efpxyz' + mobj = re.match(r'\AA\d*(?P[A-Z]{1,3})\d*\Z', at['label']) + if mobj: + at['symbol'] = mobj.group('symbol').capitalize() + at['charge'] = at['Z'] + #pyat['molecule']['fragment_charges'].append(efpobj.get_frag_charges(fr) + #pyat['molecule']['fragment_multiplicities'].append(efpobj.get_frag_multiplicity(fr) + + return pyat + + +def get_frag_xyzabc(efpobj, ifr=None): + """Get the XYZABC coordinates hint on fragment(s) from `efpobj`. + + Parameters + ---------- + ifr : int, optional + Index of fragment (0-indexed) if not all. + + Returns + ------- + list, list of list + If `ifr`, hint for fragment `ifr`. Otherwise, hints of all + fragments in list. Note that fragments inputted through POINTS + will still be returned as XYZABC. Also, fragments inputted + through XYZABC will have the angles standardized to (-pi, pi]. + + """ + return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='xyzabc') + + +def to_dict(efpobj, dtype='psi4'): + molrec = {} + + nfr = efpobj.get_frag_count() + fnat = efpobj.get_frag_atom_count() + frs = functools.reduce(lambda c, x: c + [c[-1] + x], fnat, + [0])[1:] # np.cumsum(fnat) https://stackoverflow.com/a/33034961 + nat = frs[-1] + + molrec['units'] = 'Bohr' + molrec['fix_com'] = True + molrec['fix_orientation'] = True + + atommajor = efpobj.get_atoms()['full_atoms'] + geom = [] + for at in atommajor: + xyz = [at['x'], at['y'], at['z']] + geom.extend(xyz) + molrec['geom'] = geom + molrec['elea'] = [-1] * nat + molrec['elez'] = [int(at['Z']) for at in atommajor] + molrec['elem'] = [at['symbol'] for at in atommajor] + molrec['mass'] = [at['mass'] for at in atommajor] + molrec['real'] = [True] * nat + molrec['elbl'] = ['_' + at['label'].lower() for at in atommajor] + + molrec['fragment_separators'] = frs[:-1] + molrec['fragment_charges'] = efpobj.get_frag_charge() + molrec['fragment_multiplicities'] = efpobj.get_frag_multiplicity() + + def _high_spin_sum(mult_list): + mm = 1 + for m in mult_list: + mm += m - 1 + return mm + + molrec['molecular_charge'] = sum(molrec['fragment_charges']) + molrec['molecular_multiplicity'] = _high_spin_sum(molrec['fragment_multiplicities']) + molrec['provenance'] = provenance_stamp(__name__ + '.' + sys._getframe().f_code.co_name) + + molrec['fragment_files'] = [fl.lower() for fl in efpobj.get_frag_name()] + molrec['hint_types'] = ['xyzabc'] * nfr + molrec['geom_hints'] = efpobj.get_frag_xyzabc() + + return qcel.molparse.to_schema(molrec, dtype=dtype) + + +def old_to_dict(efpobj): + pysys = {} + pysys['full_fragments'] = [] + + for fr in range(efpobj.get_frag_count()): + pysys['full_fragments'].append({ + 'coordinates_hint': efpobj.get_frag_xyzabc(fr), + 'efp_type': 'xyzabc', + 'fragment_file': efpobj.get_frag_name(fr).lower(), + }) + + #pysys['molecule'] = { + # 'fix_com': True, + # 'fix_orientation': True, + # 'fix_symmetry': 'c1', + # 'fragment_charges': [], + # 'fragment_multiplicities': [], + # 'fragment_types': [], + # 'fragments': [], + # 'full_atoms': [], + # #'input_units_to_au': 1.8897261328856432, + # 'name': 'default', + # 'input_units_to_au': 1.0} + # #'units': 'Bohr'} + pysys['molecule'] = {'input_units_to_au': efpobj.input_units_to_au} + + return pysys + + +# only wrapped to throw Py exceptions +core.efp.prepare = prepare +core.efp.compute = compute + +core.efp.add_potential = add_potential +core.efp.add_fragment = add_fragment +core.efp.get_opts = get_opts +core.efp.set_opts = set_opts +core.efp.get_frag_count = get_frag_count +core.efp.get_energy = get_energy +core.efp.get_gradient = get_gradient +core.efp.energy_summary = energy_summary +core.efp.nuclear_repulsion_energy = nuclear_repulsion_energy +core.efp.to_viz_dict = to_viz_dict +core.efp.to_dict = to_dict +core.efp.get_frag_name = get_frag_name +core.efp.get_frag_charge = get_frag_charge +core.efp.get_frag_multiplicity = get_frag_multiplicity +core.efp.set_frag_coordinates = set_frag_coordinates +core.efp.set_point_charges = set_point_charges +core.efp.set_point_charge_coordinates = set_point_charge_coordinates +core.efp.set_point_charge_values = set_point_charge_values +core.efp.get_point_charge_count = get_point_charge_count +core.efp.get_point_charge_coordinates = get_point_charge_coordinates +core.efp.get_point_charge_values = get_point_charge_values +core.efp.get_multipole_count = get_multipole_count +core.efp.get_multipole_coordinates = get_multipole_coordinates +core.efp.get_multipole_values = get_multipole_values +core.efp.get_induced_dipole_count = get_induced_dipole_count +core.efp.get_induced_dipole_coordinates = get_induced_dipole_coordinates +core.efp.get_induced_dipole_values = get_induced_dipole_values +core.efp.get_induced_dipole_conj_values = get_induced_dipole_conj_values +core.efp.get_frag_atom_count = get_frag_atom_count +core.efp.get_wavefunction_dependent_energy = get_wavefunction_dependent_energy +core.efp.set_periodic_box = set_periodic_box +core.efp.get_periodic_box = get_periodic_box +core.efp.get_frag_xyzabc = get_frag_xyzabc + +core.efp.get_frag_atoms = get_frag_atoms +core.efp.get_atoms = get_atoms +core.efp.geometry_summary = geometry_summary +core.efp.gradient_summary = gradient_summary + + +def process_units(molrec): + """From any (not both None) combination of `units` and + `input_units_to_au`, returns both quantities validated. The degree + of checking is unnecessary if coming from a molrec (prevalidated and + guaranteed to have "units"), but function is general-purpose. + + """ + units = molrec.get('units', None) + input_units_to_au = molrec.get('input_units_to_au', None) + + b2a = qcel.constants.bohr2angstroms + a2b = 1. / b2a + + def perturb_check(candidate, reference): + return (abs(candidate, reference) < 0.05) + + if units is None and input_units_to_au is not None: + if perturb_check(input_units_to_au, 1.): + funits = 'Bohr' + fiutau = input_units_to_au + elif perturb_check(input_units_to_au, a2b): + funits = 'Angstrom' + fiutau = input_units_to_au + else: + raise PyEFPSyntaxError("""No big perturbations to physical constants! {} !~= ({} or {})""".format( + input_units_to_au, 1.0, a2b)) + + elif units in ['Angstrom', 'Bohr'] and input_units_to_au is None: + funits = units + + if funits == 'Bohr': + fiutau = 1. + elif funits == 'Angstrom': + fiutau = a2b + + elif units in ['Angstrom', 'Bohr'] and input_units_to_au is not None: + expected_iutau = a2b if units == 'Angstrom' else 1. + + if perturn_check(input_units_to_au, expected_iutau): + funits = units + fiutau = input_units_to_au + else: + raise PyEFPSyntaxError("""No big perturbations to physical constants! {} !~= {}""".format( + input_units_to_au, expected_iutau)) + + else: + raise PyEFPSyntaxError('Insufficient information: {} & {}'.format(units, input_units_to_au)) + + return funits, fiutau + + +def from_dict(efp_init): + """Instantiate an EFP object from `efp_init`. + + Parameters + ---------- + efp_init : nested dict + Dictionary of prescribed format to specify EFP fragments (no QM hints). + + Returns + ------- + :py:class:`pylibefp.core.efp` + New EFP instance with fragments defined and finished off through + :py:func:`pylibefp.core.efp.prepare`. + + """ + efpobj = core.efp() + + units, input_units_to_au = process_units(efp_init) + + def hint_to_au(hint, htype, iutau): + if htype == 'xyzabc': + return [(h * iutau if idx < 3 else h) for idx, h in enumerate(hint)] + elif htype == 'points': + return [h * iutau for h in hint] + + for ifr, (fl, ht, gh) in enumerate(zip(efp_init['fragment_files'], efp_init['hint_types'], + efp_init['geom_hints'])): + efpobj.add_potential(fl, duplicates_ok=True) + efpobj.add_fragment(fl) + hint = hint_to_au(gh, ht, input_units_to_au) + efpobj.set_frag_coordinates(ifr, ht, hint) + + #efpobj.input_units_to_au = efp_init['input_units_to_au'] + efpobj.input_units_to_au = input_units_to_au + efpobj.prepare() + return efpobj + + +def provenance_stamp(routine: str) -> Dict[str, str]: + """Return dictionary satisfying QCSchema, + https://github.com/MolSSI/QCSchema/blob/master/qcschema/dev/definitions.py#L23-L41 + with PylibEFP's credentials for creator and version. The + generating routine's name is passed in through `routine`. + + """ + from pylibefp import __version__ + return {'creator': 'PylibEFP', 'version': __version__, 'routine': routine} diff --git a/setup.sh b/setup.sh index 34557c61..68482308 100644 --- a/setup.sh +++ b/setup.sh @@ -1,30 +1,33 @@ -#!/bin/zsh +#!/bin/csh -export TORCH_SWITCH=ON +setenv TORCH_SWITCH OFF -export LIBEFP_DIR="./" -export INSTALLATION_DIR="$LIBEFP_DIR" +#setenv LIBEFP_DIR "/depot/lslipche/data/skp/torch_skp_branch/libefp" +setenv LIBEFP_DIR "/scratch/gilbreth/paulsk/backup/branch_pylib/libefp" +setenv PYTHONPATH "$LIBEFP_DIR/installed/lib64/" -if [[ "$TORCH_SWITCH" == "ON" ]] then +if ("$TORCH_SWITCH" == "ON") then # Set the installation directory for LibTorch - export TORCH_INSTALLED_DIR="" - export LIBTORCH_INCLUDE_DIRS="$TORCH_INSTALLED_DIR/include/;$TORCH_INSTALLED_DIR/include/torch/csrc/api/include" - export TORCHANI_DIR="$LIBEFP_DIR/efpmd/torch" - + setenv CONDA_PREFIX "/apps/spack/gilbreth/apps/anaconda/2020.11-py38-gcc-4.8.5-djkvkvk/etc/profile.d/conda.csh" + setenv TORCH_INSTALLED_DIR "/depot/lslipche/data/skp/libtorch" + setenv LIBTORCH_INCLUDE_DIRS "$TORCH_INSTALLED_DIR/include/;$TORCH_INSTALLED_DIR/include/torch/csrc/api/include" + #setenv PYTHON_REQS "/apps/spack/gilbreth/apps/anaconda/2020.11-py38-gcc-4.8.5-djkvkvk/etc/profile.d/conda.csh;$LIBEFP_DIR/python/../installed;$TORCH_INSTALLED_DIR" + setenv TORCHANI_DIR "$LIBEFP_DIR/efpmd/torch" + echo "Environment variables set for Torch integration:" echo "LIBEFP_DIR=$LIBEFP_DIR" - echo "INSTALLATION_DIR=$INSTALLATION_DIR" echo "TORCH_INSTALLED_DIR=$TORCH_INSTALLED_DIR" echo "LIBTORCH_INCLUDE_DIRS=$LIBTORCH_INCLUDE_DIRS" echo "TORCHANI_DIR=$TORCHANI_DIR" + echo "PYTHON_REQS=$PYTHON_REQS" else - unset LIBTORCH_INCLUDE_DIRS - unset TORCH_INSTALLED_DIR - unset TORCHANI_DIR + unsetenv LIBTORCH_INCLUDE_DIRS + unsetenv TORCH_INSTALLED_DIR + unsetenv TORCHANI_DIR echo "Torch integration is disabled. Only basic environment variables are set:" echo "LIBEFP_DIR=$LIBEFP_DIR" - echo "INSTALLATION_DIR=$INSTALLATION_DIR" -fi +endif echo "TORCH_SWITCH=$TORCH_SWITCH" + diff --git a/src/efp.c b/src/efp.c index 84f661a3..dff57265 100644 --- a/src/efp.c +++ b/src/efp.c @@ -108,12 +108,12 @@ set_coord_points(struct frag *frag, const double *coord) static enum efp_result set_coord_atoms(struct frag *frag, const double *coord) { - int natoms = frag->n_atoms; - - // printf("\nCOORDINATES IN set_coord_atoms\n"); - // for (size_t i=0; in_atoms; + //double BOHR_RADIUS = 0.52917721092; + //printf("\nCOORDINATES IN set_coord_atoms\n"); + //for (size_t i=0; iterms & EFP_TERM_QQ; } + static void compute_two_body_range(struct efp *efp, size_t frag_from, size_t frag_to, void *data) @@ -667,13 +668,20 @@ compute_two_body_range(struct efp *efp, size_t frag_from, size_t frag_to, } } +EFP_EXPORT enum efp_result +efp_compute_pairwise_energy_range_range(struct efp *efp, size_t frag_from, size_t frag_to) +{ + compute_two_body_range(efp, frag_from, frag_to, NULL); + return EFP_RESULT_SUCCESS; +} + EFP_EXPORT enum efp_result compute_two_body_crystal(struct efp *efp) { double e_elec = 0.0, e_disp = 0.0, e_xr = 0.0, e_cp = 0.0, e_elec_tmp = 0.0, e_disp_tmp = 0.0; - // no parallelization int nsymm = efp->nsymm_frag; + printf("nsymm = %4d\n",nsymm); size_t *unique_frag = (size_t *)calloc(nsymm, sizeof(size_t)); unique_symm_frag(efp, unique_frag); @@ -682,11 +690,12 @@ compute_two_body_crystal(struct efp *efp) for (size_t k = 0; k < nsymm; k++) { size_t i = unique_frag[k]; - struct frag *frag = efp->frags + i; + printf("unique_frag %16.10lf\n",unique_frag[k]); + struct frag *frag = efp->frags + i; // scaling factor that tells how many fragments like this are in the system size_t factor = nsymm_frag[k]; - + printf("nsymm_frag = %16.10lf\n",factor); for (size_t fr_j=0; fr_jn_frag; fr_j++){ if ( fr_j != i && !efp_skip_frag_pair(efp, i, fr_j)) { @@ -768,6 +777,13 @@ compute_two_body_crystal(struct efp *efp) return EFP_RESULT_SUCCESS; } +EFP_EXPORT enum efp_result +efp_compute_two_body_crystal(struct efp *efp) +{ + compute_two_body_crystal(efp); + return EFP_RESULT_SUCCESS; +} + EFP_EXPORT enum efp_result efp_get_energy(struct efp *efp, struct efp_energy *energy) { @@ -2467,6 +2483,27 @@ efp_get_frag_mass(struct efp *efp, size_t frag_idx, double *mass_out) return EFP_RESULT_SUCCESS; } +/* +EFP_EXPORT enum efp_result +efp_get_frag_atom_mass(struct efp *efp, size_t frag_idx, double *atom_mass_out) +{ + assert(efp); + assert(atom_mass_out); + assert(frag_idx < efp->n_frag); + + const struct frag *frag = efp->frags + frag_idx; + size_t n_atoms; + *n_atoms = efp->frags[frag_idx].n_atoms; + + double atom_mass_out[n_atoms] ; + + for (size_t i = 0; i < frag->n_atoms; i++) + atom_mass_out[i] = frag->atoms[i].mass; + + return EFP_RESULT_SUCCESS; +} +*/ + EFP_EXPORT enum efp_result efp_get_frag_inertia(struct efp *efp, size_t frag_idx, double *inertia_out) { @@ -2494,6 +2531,7 @@ efp_get_frag_inertia(struct efp *efp, size_t frag_idx, double *inertia_out) return EFP_RESULT_SUCCESS; } + EFP_EXPORT enum efp_result efp_get_frag_atom_count(struct efp *efp, size_t frag_idx, size_t *n_atoms) { @@ -2506,6 +2544,7 @@ efp_get_frag_atom_count(struct efp *efp, size_t frag_idx, size_t *n_atoms) return EFP_RESULT_SUCCESS; } + EFP_EXPORT enum efp_result efp_get_frag_atoms(struct efp *efp, size_t frag_idx, size_t size, struct efp_atom *atoms) @@ -2942,13 +2981,13 @@ print_frag_info(struct efp *efp, size_t frag_index) { print_atoms(efp, frag_index, i); } - for (int i=0; i < fr->n_multipole_pts; i++) { - print_mult_pt(efp, frag_index, i); - } + //for (int i=0; i < fr->n_multipole_pts; i++) { + // print_mult_pt(efp, frag_index, i); + //} - for (int i=0; i < fr->n_polarizable_pts; i++) { - print_pol_pt(efp, frag_index, i); - } + //for (int i=0; i < fr->n_polarizable_pts; i++) { + // print_pol_pt(efp, frag_index, i); + //} print_ligand(efp, frag_index); printf("\n"); diff --git a/src/efp.h b/src/efp.h index 4064cdb8..7a3f9ba5 100644 --- a/src/efp.h +++ b/src/efp.h @@ -383,7 +383,11 @@ void efp_set_error_log(void (*cb)(const char *)); * \return ::EFP_RESULT_SUCCESS on success or error code otherwise. */ enum efp_result efp_set_opts(struct efp *efp, const struct efp_opts *opts); + +enum efp_result efp_compute_pairwise_energy_range_range(struct efp *efp, size_t frag_from, size_t frag_to); +enum efp_result efp_compute_two_body_crystal(struct efp *efp); + /** * Get currently set computation options. * @@ -1290,6 +1294,8 @@ enum efp_result efp_get_frag_name(struct efp *efp, size_t frag_idx, size_t size, enum efp_result efp_get_frag_mass(struct efp *efp, size_t frag_idx, double *mass); +//enum efp_result efp_get_frag_atom_mass(struct efp *efp, size_t frag_idx, double *atom_mass_out); + /** * Get fragment principal moments of inertia. * diff --git a/tests/pytests/__pycache__/conftest.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/conftest.cpython-312-pytest-8.3.5.pyc new file mode 100644 index 0000000000000000000000000000000000000000..37acc4b51cf0c600fadb08062a4f2497360be3f7 GIT binary patch literal 823 zcmbVJy>8S%5Z<+Y_WF{GB7~3-Qba*>%`Fdr5HCO)sN5KPy~jE6*=BzT?t(apmI5ga z50EH43A8EDHXu>a9dbv-j(tB#LBmQr^Ud$hH~V!o8X|i>y%@~CSp5@>_3>7q{b<1% z%20+26yZ)gbC)?7&An)V`-mU;4&wgN-nx9NGbeLDdzVh{$p#B_xe7+)pEdrCn&4VZ zn2`mFh7BHvzo5^d2_%;?ugd3R#|$K^YHor=t4d4G@an0xaxG|q+8Jul1wOn$V{8J! zUuiCtgzWo&o>Iv~qS%bS%!^cTHKTQ+3wcb_gdOXerXnfXEUud(PpQ3pT2lq}v~GIM zs&WcwQa5H#auw@3u3mGI6ouHakH7@&z=~7!!y~N)$dIWnnX)_>nAgvZp+#Urf^5VH z5PYNY`-jB7HA3+2f`It{b_^9yM4VM8rMP9=z~{<->Te$DI*)e@Np)VRyp(45N!`R7 z>#ki;w}V7VE`ZoX@Dq_MZo-WVcHjGkwiwdmL>Rw^CYa`Lloq_(S;woJqi4S*P9Dvx zOc(sIxMwGXPn6HBSh^VF?+7i>yV24|&i?70_XlqeKIG@OukhrzgK^lp$e~L>OR`Nk TI)8A5=_cV}m(UWM)p7m{{9(Ga literal 0 HcmV?d00001 diff --git a/tests/pytests/__pycache__/ene.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/ene.cpython-312-pytest-8.3.5.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d6087d3083867e56216ec07e4e7f6614cc5db31e GIT binary patch literal 1142 zcmZ`$J#W)M7(Rc-c9JHBmNY_$54A#B>VXwOCe(?EDT{IJtK-xk*RvxU#E^)htlj9) zi4FBP@C#UoTB+d{DlwpLK`jdtcXr+Mi?e+9ywCH#kKgzFwOrN!UAwQP&L0kdpDf5% zs?gwMmnt8D102o=EiOIzK(KiZ1Y%3#GDU95Q0~s<#j~@k&v1_R&Ol3Xc!ziSmI{^b zLaxqEsP55kv&8|LQOoef{YpmtqLyLWuiyel{KV}E8IyY5lqsc|@|DcH*FE$8Q>S~^ zb*JDc^kt7qA8ogAX^#8XD=s-c{J-APc>r%gedgEa8pUH)@RDeWhn^ra2uz>IoBg*| z+iu9eax*MZlx}WDO`qpl^9(4>V|L#S85i>0iv{ydEK~lh{6X^tkz*S}7`|#0hzNaX z6P4|zV+Dxto0teF@`>npF%3612=8|rw~5m3d4A%BF)1}s-#m}%Ch8|JPFAcqhB)z} za0SCR*h?T$&nZ&KIgJ*xbko8_L4DtA!!<-iJHn6%3`%R*a${1q9LGda0>i|!d{SZ| zQvynm`4}c?WZF@L9WS(~B`F{bkwtwJCPyftlpO`AM_bWcO2H6fw@*J4LLwpTg~?}d z!fy5NszI;BO6-o|dVU+jq+=kf=f~?t+p^bt$Y^6Lv^#WE+OUx|ZLl$7BO50+sObvo z6Xj_TIXxdf!;h&k`!Deqx=jU+<9-0J1>RSt3Mf=Y!7w)0S@|}V39Y_QFgNB#s1pfd4 C;tFs8 literal 0 HcmV?d00001 diff --git a/tests/pytests/__pycache__/pair2.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/pair2.cpython-312-pytest-8.3.5.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3097ed9e8ef2793cdcaf084334971f389d39547c GIT binary patch literal 1328 zcma)4J8u&~5Z?1W?f5Ai91|ggPznpl2cbnM6+#qLRBn#--NwG;9;>}GiK%Q6YLBhmQ=?`ykdxSv zYDr?O%#PXVO_IA%TPz8IqBOG4o);A5v)ssr@0Fp7vLo%vBV?HCZ%TEj)UKe^hf3pu za{hAlai_zYH!t%}(n-Odft_?zC%vto>-g5?h;tcl|C_HBU}6jZ;jbkSDU!mpUR$bU z4n@GTipp*X@e-bDWiFVEyel6wfvh7MG@)aqKCS1l=M0 zc_1EXj7i3c)c^>V@!>hw!On;JQaF zie0wmMucmg+rWWSndL^k<$AFjL_EDj+t$P@TeKaMD6ZltA}n^ppvuS^b7R7j6Nu|$ zECs?RBV+Av40n4-DJ95o3y405qb z+uV5Qhfd2QkJw#EEuK3149AfyNzxaDHqh(bk%shK&+qyNTB)y<_Oxa$hg+>GK`s O6H+_&n-r@+hkpPmX)mq- literal 0 HcmV?d00001 diff --git a/tests/pytests/__pycache__/systems.cpython-312.pyc b/tests/pytests/__pycache__/systems.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d4102f8600b00689f90cefa0e42e9ff8562dbafe GIT binary patch literal 11328 zcmds7dvH|M8Q;gRx&sp?a&T7wtG>uKG4}U%m8a0QAXq1S_7f2k)r*+bMNMHa&hm{ z_y@f+_q*ruo!|M+>pS21&VAeMb{gP$a;+sC_ZbYwF_L{uYGC+U2s~nt43e?S&|;8G zEk?=QZroI0FtnH?;Z8$~S+W2XBr8yhWCLoI>_Baj1E^hc0(D3QK%ITYT2}^vn@BqL z*yF;N$HYOUo*^-$1Qd#Lnc*GoFkW@j zvrXpPY}^Ai;A1oZheHXEryK{gn|~y;BuJLHE1SLvmsdPX-iMIzO{>DSEsET`!)sJLh3LX3={>< z#sX@<9>`!XsxfaixjN8qPurt?U7c<19nrK9iqQ778H4ViB(+8(@%Em0XRs^n!e|E# zl5R*ydt>c!7HbVfB2?<^3C7!FX>+iyEp3a^_Gpl{_nXq@SYIq{!9uYZN?Kk0^>zMO zhz8@Ku%C2xwbAx?*dGn{cExV@w*^DD_eT9~G}sdgw=#+Rid25Uj>r7bKIIFb@%HZ6 z;%Hymu7q2c&`N-}!yDTPWUJw?&f@Kh?p<`)S($QH4mf>V8;-fXJ4n(sbL&+{1lwVu zG$oYoXg?%Wv6wd{cz4`*NT_77s+3Um=&GmeyX*Is^sjh6^m4-sopQ;6*#7BnG$dCw zC)eDZT-b6*xFs*}e2rQ_b#_x4GnQ%en znDSOG9~P73;HJFRa&iJTU$%h5a&d9DR45hc!1e(4G_Gth7cb%BUa3?n(}7(M*mkaL z1s9*r#b-#BQk4#DA7Ibq%JOybePWkpN!1*7ZWS}Tsn$YKTT?3%78;Ay`KLscaa0A`<&1!$!3&Q|CQ6Gevf3g` zfEGdqEeE2iF**anquQsA`XO41*|nf!wY1O2t`+$xo~3)|_FuBET|?RRi<*f)PSw!)nod%WDE+~cq( zDnVKWT{b}p;t=EL4Icq|ekj2!4ckp26ETELx4{J8V%lt)xJ(~3-R~A4cZ(^f9brMm zH-&gMR7g{Z=KwtC6yg;Co@)y6+<;d&g?L4P=b1vhX@FNeg?J@^=RHTfoEt&NWMs4U z4xm#Tsx57*b&T6$*gk_KZ3~6#BVjOW$9A11kgh~=Ge}#bkVvUZ4Wox*L5O69;y)56fSbeq-KfzxvCaHCi`aI^|w{~OfuR2 z%0Cy}y1hVV+Y{ijcu|>5?k+p}?!Q-`5Xst4l5^f4`G-jU{OcM14|aLw!CleIoQHoS zi)7u)ae)3@Bs;JA^{4D$ZS&jI9HQO*BEBq*SC>0p9f>oQ$yZiWljDzp~8JAsyu}#r@q|8TW>w1x(mi;(|HOMnnRtKK_|Ycs=Lw<|84wA!`RKc5 zncUZfOglw#?-e)#dqjdlKGJh4JDfv_49*(BRW|H133XDO7Rg_56xKQdY8!_VYA23} zOw?B8k$n29^Gpzu4Ivq&b*cropw7R-_qN!3(S3vRw z@WwtntEm#yX{sEtJMQ^GswOf}8U^~)>>a@;=RQP|HIYX>_<=E%Y=Nx?WxG zX)JLanCWS(aJ^>rH2PexE%r3dalKyVX{>Qgu+K()KHq@Fe16zx6RojHhgSX&3tl40 z${m`t4ynwx${X7uIdxz&yC_d=JOJxCTr-;{Pi#S&CJ8#^E(Uvq?@#_P&F6b1hg7Nq zy9}`T18*+ua`4Ml=)j&1*!gx%G_Y zOpX4|g*{F3N`*T5dzMCj=fcMR)+2YdMt|qV1`jSLcTW4b791t6v?Ca5k4Jji!6R!A z)rFU#^_sSZmWP+KZ>Vc2ShHxurY)f`gyGXwhaV}_jT};U486HR7!t>s#G`H&#f75S zH*bonQ)576#wwiyxXdd;XJH5pO#&}G7iA3}dq6dgGK$ft<}V9SH?T2#PxX6L1XN4< zQ<3?P=~7@ARGcrzvp${T09}UVa66&ZNG=AVA}k1G@cf>^O(KIjGl$z`DZLJuegto< z2O6y9HaRI6+*g`(nj_3*8`|5@-?^{;K*@_M-Y_2wz3E8acvJG$)?}z7xsV(Z!V^6w z`EfS`c8hN8{J8UzBtP!_B*~9kkz^k9_d?zMt%v)Drz&YIB_iXaOd(pjoLQ< z$M;!q_s8iuE!)Npy4Jz%Be~*EsX%gZ*tvD6yXmY-kK%YJDh_2-bxd7=;vF8v6AZly z$#=VEm(lBi>1KFiyMSovm~*)pI+yjw=CK?<7}~#y(@DB#=6QQH#9JYg;yQPC<{{-~ z<|HgWUne$N^gI@S4aMi{wMy(7*gV#xx^&9Tys})I`P*ndt|fQw)mkumH8kdxVI2L+VO}d{a?qySD|b0v1xy{da?gILa@qH18hroTATv@l6~aU#W!yHX z$*o&`yaFDd^YYNn|G2>~m3(fNbKWF#O9}3kB@ef;X>FR!xzCm54|;AcU+ZQ$_cAPR z0#_e;ROw|%CN4hJ+#gBMM#xl6`hSUZHpY~5#EatCwyGHMa}j4AkU_=cX$sK!m{fxV zj}>$gl3FC_!c>8b0lFBIw6|cV`ftYi?j^Jt*fzi$dk2WtCj7B$K|V`)^5SgHY2{De zf7>+A1XH%$>du=xOm158%Z=Zu!1JNgjxmoD zRo;{3fCU8~s7NuY><-WEO|*mZ~M6 z4(!<)a?jzg_;wXbbI-xAGOwxD##|;8T>}ca6hl`aVIf91dt)Z#s(R^!@~_Bv6T~ai zA7gQLsJIeC>=?mx+l3fqXNlDqVvdo85K^rdxJ-ixJaYnyw#17SX2xXGvkYH}%DDtR zCyI(ijj3|Y574VI9sMV2QkASvf7a18Q0Pv0V|T$8uB|_B$wzr?K*94s|!;6|A+mC$o>Xm_iW6;#ZI8im}T1_8_RwJ z`}ak?oBLsRMC$EozntPZ6$aQ43ji518;!>I4MlL}V=LNfK4Nv;)3B{`tNEnWX)HQ9 b!wsZ*29Qg=)oHd1_1^eW4vH&Fu2`PHA1ppu5N6^bdT|4 zZ*9+9n0dq+@31#MPi(BTa5G|!&vMM}j6F9u!QI5(bxY!;>GR#~?Kr~W3(uVmb1^%P zjk){&tjetFR;jCHgbiL*bpQ3&Uzu5%S($(R`RAX1{xT5o+HjnE+AsiFW3$j%TB-&*#%fC7Xp^aZoqQc16Uz@0V`!6V3q6# ztd;|Sv*aSc*>W-99JvH=u3QROBbNcrlgk0;%N2kNttXUd`%{s05hpzr?mQ8R2JLD4ovm6z?BoP=;D2o$ zz^k@4RQwzEge`8{ZhOVvTF`E5EjWrW347cw7ksDSn}w1sQGlz0{kUVtKVg5`7If?l zdeddC$HPinB-9(}j>MF3ti7i@Ey?ZC-n5rs1UVu~q%+c*4iJnfJ<%A#wWjB0T!wmk z+Ph;RHMwZIEOHWPH&Rw2y(cD6Cwf=5DB!{)m^Dj~*8-fAi1{kTD7 z@23dxRa*?*Lp^wNpm)_lA+in`?@M-^D>$#kuv0jC+gS%shutsCx`|7EKVgq~_+3FO zkfoDo3$k+)ZZXV77$}8wmfZ;l86UT(!0qe2hKv57Id?Xpky=bfX<+&PMiH=r0pn&dEVmAxszo@7hm(uWIZwI3OPsN4QTzJaq@I&?#GO1Y zKR<_0!by9=k&yaq!Q#CK(k}GnNThq9K%sV)_7Ecp$>FZv4}bi-=U;3pXxhSVD1N%@ zjP=CAogeH=$7XP5UD!d%@TuGGhi+APqRvj^4g{0u2Nj39KTpW+0Gu zNBg3&NLQ!5WBIetserNqgHsBBs*T$M}l&h`W3HLM{XL#*5YJg__3NC|)!1S{w?!>$G3x znDlZQ!pcUFs7XaX1vqVc-&g*P4X3w{OYT3p|JnP`uIfLYDqA}$ts}yoXZO6Ycida_ z%F35kj(F#uZvLRW<~tit?-}18N=l*Ad(Kp)q*=huZt5>i&0RON>2hIe)B==;%80m%#j;7kq;GyW%d!{HMa`jI8{|G5>&EG;OR`Fh5J?FG7O#7Rkla zmIJ}kEps43A_v75OkFT$i*PQ^xaAU!`4{HR{0n(pe%6@3GvNaBF9q{2?0G7pbcTDC zx#&r4rf$XH$9HBD%!j z#1?cbYY8XLM>1Ae%vQuSi3CV;d;vQI{Q)7uv zjU|#y?9`Z|Q)Pz4CQqTfpnIv@I%Dh*5-Z5sVJw5}OSp7q5O+d~c3tobHd+`jWNeg} zRxyv?QNl6(oFPM(b9#q~WEUe@i5;wuCdSa1SiU)`G^B5mBV7&z6U&(s zJtQ$Pxg_s8F{W#l1EUn5I|m{pa!_KCTfrVJ!UgD z?{qWg(;K%Wr7b$2CgF5^{idX}3ADt9dJSu70;(uA6n+A;T8Pu6O}Sq&cNorl=4yEU|M}W8ISMV{)zEM6L}8hRo&KsmO3&j9g3XFkdx`QBhzbX~)HzvXm-CNMeU_>9plQ zeC924AVMMsr55t))aBZ;X_jltHHMsa$?eeN#)6W{-55_MW|#I7?~)a$ca^qzpS_iA zASK6k+|e~1Q)ki>gkHnvz>Kj@6nYJOwMDrP+1WyTbzTNv)kgS>`X3pJCHFs?DmyYN z9lhaP^;Q*wXH>p6+lEt#9~nQl4O_m(8Q9e?mgRe z`n}!1nf+6CL!m)czVaz!eaafdm_%*K9s*(UK?K=L!6s2#%BixZQE8PaKjUi4eMghh zQB5oah7r6!HFx!p|J{dE>+YXnRH$9U!5jR{+!PL?@hi=o{GVey+AhAI*FO?9Q5#}n9^=dc*-qn0 zhDn6+iFDazGHqTcMwoos+%0?Z9!-5QBTSF%%{xa{5{yuzSxPV>B$(q=ObM)VAliUs z4n#;|&lV%hsZX2xr+L~uuvaNXYdi2^(=zw>p1b?w%}Nn2r$JisFwNRYCDfoCM2Zpo zO+}?MtIk%OSw1Q)$SEluY)MKjkd!J?QWdbXHOVC#QnNP>bzWYZ+Pwc36P2jK!G~Y(F^y{55*X$#K}^pHNr zEkd_yPn-uTNS_cE3!!U(W7VFj}QXt75cj#F@pg*$D^ANow`1 zBOw)FR$k=C857e49W_}&ahY%-v`d7>1XBko`m>INJMQkN%_8D5;gRPgym3$5OFGkp zFGk8Ec3=w38Q16k{c%4guFlJI<(k-H9;Ran$MiGL3DX1wIlbdfj_KzZ&FHd&zeP-3 z=`m>jA?uhJ101|2cbvH3;PSk@b6#mk(BCOE8T7(l?PkDac zB{J5mNs06}miN05t&+z;3FlknT<}ASaAE?@BAl2kvj`{ng+(|oFN;MuKMyA_IOk_Z za)B64hq1#DmuAPZj(C8_-;KWqe=q*NgkP>@JcDN1vW|o# z-wJ|th(*bZ zc)i|ooaScdAUgO3@ zedXkyFP_U-jGD5vGjXS>zNIK$WIAf9kn0ka@rrmQ8#Ps7)Z~fL`WkkyC3jVEk73m0 zje8-Z{9Ils*H7E1X#;;=-Ys!L42+uU<%Ya-WYm(FXdm>Ybe8%Q)p<)R)jTi!tVt_eOG9HK z=y(&A_*dcYNqAwRy-KqPRPIMN3%XRpJW|}UX&lwmkE~&o2LMi$ZrZe|mKF|@iS*Lo zhT7Uwj?J4l>vVNNA@1lTEM@FsVX;0uaH6|C77fLELM=VVl{O@ag~QKBk1*KKp-$wU>=p zVW}>@BrI$7C0le!>n+#vKtQxGt2qgXMrsO1>!=#&A)(fu6WuXyVky>XF0WPBa*B1H z4ZyTG$fNdr!Z;BRRx{NAj1#dYR3ie@i0kmk5T1!gc16^u)g8mLWn9#?_OKz#2Zi^13?K9cpQMNiQ%h1b5r$qo#>2(i?V7R57b&ZFs%xvqt@wR?Y*7tt?jYCo4D># z*}=f1^{jMIolaKI$`f?AlWN?#cUMzr&nZ^Tw7@y+`hu#N9(HqA?3|?pt7SD9oTaaBov^OI!MLt}mGNSY@nU`2uloXMXvnx~%D7scakVz%DkBwePnM?Y zMWC_K__%e(XpI?792r_Wi_biSIo#=p2>Se4vt|ukRR@?iBaG{@T|^7OWhs9F^9B z_Tr*3?>wwh8}Tj}m1;G@f|Pf`h1R5Z!HBnURBAF%`*kX}5ZriAQo2VoU)EeMjBma- zDbWHpGSuN#I^*kiT=pj)l2f}Psr8Yh6v2Jts<(AJlF|-69kPKQuUQHLt%4gbuSiOd zoRP<>f~l$?P{5I@Wk4?M|IyI_SWrJQaP&OL8os0hhX zgiKZiRq`<5%O*y9iY&}3!_R5~DHkI$KxlzPs_ z#uhZC7Bm4J+zJ46aO=o|H9-Hy@zcON0U+-Leq4;xQ1RHhy{UD3fhO1O9b0!WweBF{ zhhTsO%0VEhbqsIs2IZTZ&)%LyLLjwwkNSE*8us;!N&4>!1yTtkIy#C>-EIs99C49R z78M~mijc_#aIHZp4paUGis!1hfJotQ9O@NP;3!fU3W!)JAWw@5sN)B9{7{RIw|DD! zX311K;D3>NSSt-vE3Hpe)hDI!U?~95!P1c`)O+~S{V{Z9e_?SFElrUB@srnm39co&e1cfE=AwV}Z+ zV@+2un(Eme^)4kN*K}6 zQ7Lprql&4ZD0_jV>KPuALD78ZBtZ(vqdsEg!@kIvr2nq4Kq_U#fQvB0QiPo6Pz>DXsPQ&A z&(Usk)Oh<6I=FV5qoXJYIyh00Jj%pTDwB?*vui<6EFBM_Q*e4_VN^O`js?z}pum{2 z3FowWVk0L#FsXEssUSR5xQxCjXt{D+x}ckjJLAsi-^yex?n7{Pboe=@pU-P3GqWR2 z4m->|NyLP?C|6@);z5sLvRrs#45&Iix#Q?6T#InR9M2-0uBgnJSKZu6_G*ULu2?0n z55qG|{9wRrlC&;3_*ql%!EsUoCjSX3;e0_5gi?s?moL*r4A!GpFoEe3pAOTkV>E7 z9C&9o+YILbZ@v+ngRLrKoMYMdzVWMn{NImea}MQCQTOh%Y+>?k7vJq1-*&Mmakb^B_>@h!s*|3 zvEakZW0mfX#3DW2&|Uwwiv=5oxTNgKI;Q$Ax#^< z0ev@m3LNmzdog(7xtA`fCuOgh%>Tn{=$I|aUmz(Oenl?=i@i!n}vf!oH9T zTiHWq44YMtuQY5X6ByN{!fl7XUHL}IBU@B66Mfjc-7w#2GF3^#<`ra-AjZuwUoecD zF_p;;0W!wTA$suR1lZg($4%X@ay*%dhTm-inWm+%CO7-lY3-tIcG@F%~98jYEq34WmbC8}GMqWcMBgW&;S7G1GL z`5^-R82`z-V$RXfWoN z-IC&7(c^t_A9D~qF>F1c}d0g1UXIGD5;tXSA49r{^ zd~cgAgVzVfnBx*NM;1A+G~~l1=NXGBbLLnN$>!K{ht;`G?r?(ZKuM8riHtRCQX;*L z<^3*1tK>0ILa(9TOx~Y9n`aSD^fQZaVz^=vPIn}cyJq!e2f4$E#gwv7a}eQ=k&wd< zLtbh%lHn8=&Lw!gnGLZp%$ndNA^~56>>JIT(j>6Q09-)a&XY!e4aAEs=*yprww^HRy&iF8Tc?^G<~ z=V=(;X#nrCC{c`=X6{TnW9bNenp7#7l0)Il_MFKAoSVv$zf$tGG2N0#Y$TI8Xn^zePJ26Io3n70=QGSQX z{%kn~lhe|m{O+RULr0UHy{WP%M1XXCP)Y9OxS}8V;%io0-rD z4@uw~bnvr*bu%NO42>s=PU`+viSMM|ThY)vVY)w4!(lM#Y092aWDGtJKATfN!gg3} z3M=m*W25*-2{B=Vxi;~;B~+C&c7AxV?BEUcOI1?pV-*r$*kP(k5n~k#&5W5XfRI}a zaZN^?Q?LavSnE77bmSNNTPJkitVzSSQL;&9^9`G5Hnk|En|z-FzfNEiKr8;@pkY4A zRoCvFx|)xfzubTsaXt&D&WmFQNt0PPeO_Fhh5PExi%+?s8XBcgWQg}oK0CGV3WkX4 zM!Pp+7LL!2ryV`Vj!l>wPrKRXG_?QjfzA`Z_^Yz7O&BU`UCjchj86#%q4D8%5PKW$F^a9?BRhLTn}L-(l+P{SM=8m?HKiK z!&S<+ZA{XCSLnV<7}3#DN=l^;OWXQu1Uj@spvlaHRC-FsRg_waoq`fGsOvXIr6vKt`i%rb-UQ?97M{FL-9eN0l%gBR<{6<=;Nu@gL9qr*B!!Y3J&Zs?5mDOYjZ- zIdb@0{FMs?CYKp!S~TisrbSaFOh=1mgCJ(5F?{aFAOGQ{Kb@`?-J<*gIs7O5l^+q9 zyhYC#JD`4W@G-*Y8p_WYJG3pn^738f|LtFG`S8=@zkczpfBayxQj1#6GU!(aHGhU1 z6PMfwgNG*NKOlgFF`M$&l*EL#OVTJC!OzE7{&SlUkP(5z`~-R31bS2aAHpci*RE90~mIA zHIL@`8tY8v(VScekYNY;3MD_GY@Y<2OA}?;h8|dwPZ~IbXV6ST4~6tSA9*N9ZflRW zh~KsHjy_F=dzm8C0-XApVU0zDaQ;TvWS$I}a{^j+(I6Zj62^T$UYDP_JlsAS7I-vZ zy$4_65%gwzMhHN*rZE3OE}qEWl!n4x6WK}=6%L+g@h+j_ zhvYA{s#l1_QF0vBrBcap6dZhM@hMw6en7_`wRRkpW90N1W)*IhkyD#ZcD`Xx6zJ;? zu_vN7W4GP*ileol&DL6Q6mkk&`V@Yv;F~T9b1v8kmKZfVa)ftl;hn~vW6k6%KKo)O zRhdduE|_Z`4@n z!6}&yCW>_v(|93v8`Ox#Q?|L9#!VZ_Xcs*0ESmlViN^AxxQE zg5@ACZ8=D}T#6+jckpoN+hy_cxc5St7{95@LdxWFxnkPd6uA#(2QR5*|DF&7ZK}dh zpC&v(@81^T^wC3Q-X%2lZj)Z4+lE;30r5>jiHxb5l}Pk&ixN$_H_27!3fZ`+BJb8J z_JiQ>(9l}T&?;%y%X0j^SkzD)mqhCf@^`PFGg@c$OzYHZ23owC)@i%pt+T)&4;GR< z7KCLE&uE;GIz70+nDvuE0`v4&>aFZLe4vD|eIE&YVQl`{BSnaeE4 z+`80eIx?ul$e@z9TI?R~H60nyh{42447(WDBmyx~#IOSrgFEhz2MjU;w8%{7I}f`n zv0;Dgv zz}E@TlBQs_t~5`(*tTNPbipwt?dqc4zoKbZD?2NHPcfb$aGJog1fC=CJb@Po;Ip(cR zd27eKOHyNqypkF>T&~+aA$Z>8?Mc-^*L>)5A0zC!+?T3@NBKi=!rz!g0(Fm!_zvNE*mr15(tlSdgi09E z(NScf(HIOk;v!otDnfD;A(Pd2s^nq9p`O-LSEF5kPMTKigbm zzrMK!-0f2wgaL8#?KKcg-HHNxUI?7F&6tNx2v7prHUo*MxPbKB{o0-vh$wK1IFNJwrQFcQhyGZU4k(bM7p7_vz%m17rJIQu|s)_Q}be5tW?mI;kOT z9l%p<+9im07wjld@3A`AjyOqnn{L1&*S}M{eU;(AV~?2#|1YB>3FED6W<;ckj3URz zkVu?}J0nKoL|hcYcuRdsvaQ2N)Sl9H(nwUFq7~Zo21;wBPll@rv9+Qt>av{{zHF!E zQuOV_#Y9qSxtMtK8Jq^68C!dQYVG|%lWXrETl-LI?L&kg!6qmz>hhi>C`ZDhKJ>Ph zVITH;(SKJcj7k{M(NPJHRjI>L3oY@{V*p1om!cvPM-gc-AtE7LEE3{Vwsia<9Y2CO zFiM!hWM)gH1E!>w-(M}Z6)paKIa^)i-@zukFJ`?dO~bQ~eN$fygwO5b~u(GfM&SdUVq`i=|3pftN)%p~Su6O93|{ z`>Iz?8eX&=d1c|n*vHQq1Y;)9XL;enCa1rqcv%({*SS31=%!;;i}D*hVGW5_Ng%n6 z6y}dt&d)3l0ky1ZfQHg36B8{T|foh={~nuNAD)4$#O#zm{H zu6#@#eE`73;bumUZB_mcLha12$IcnAoO7%9SRabZKF)vi`9IDMauSG@ze4{v4WH+k zmA`l~#^VNlp1+WlzpT&hMu~#%JPbqCg~0!S;OatPVfLBz5zoJ8%gU!n?I88+5g@t0 z#hSt3c-8z*OFd*W=z+~(g}Ke(&Gk7>yF;O_aC>(s6kL&Zx14ClPTbv5rr1i)4)ylY z_ONxTmax62yH1Hbt+dA?X^$YK3pJYR0qqFtD(zC^DLd%G-P_mM-V!<1n=XH{6@GZS zBHgiYXB{Qn-rc6UQDgcslBCjw*iJqc>58(wh?R{XDO(BLL*PCF4-(i<;2?qT68Lih z-zV?`0)Ii^Jb@n)xJZB;pfUG9%m<0`E?xeNz|RTLiafToiJ6HqEf{rX2 z1VJ&vEmuo2Z>o`+SwIzL1uwF<*sm_EvbWl=HU{hnQmeuu;GZnCN&Xj44LfH4N-F*1 N2R?Dwq&ckM{~xrQn1TQR literal 0 HcmV?d00001 diff --git a/tests/pytests/__pycache__/test_libefp.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/test_libefp.cpython-312-pytest-8.3.5.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cae9cc2470a9add3f170bb2cdb8bac61bbcace60 GIT binary patch literal 40212 zcmeHQ3ve69c|H(__mgiD5+%x(C_)cPq#l%I*xWDgl$zCbNLi7 zF9?z#*;2xO8$DK~?TIRzkQVnlZ0Z%~ekZ-++V6s6Rm%MhxDK2>H%frca((6HnNS}l2i)<|BUwUQ5Lo#Y2vF9m=$NI{^DQV3|16b9NX zRRfKT+M+c-$L#Kn+7#QGs9kX-hSI}vl2ocSCPtEp5t8XYlvIK&=ukX0lFTG9BHKd1 z*kQkX(1Q=1wXqAYX-rO#g#nZ(+9aD)1-nhMXGM1Ds6&9qJ?VH&OC@KM9FmZ-=c?qY z0T+|vN7=?CZFm>RLGdOzi&D2Z@3R-A=qpZ75cKD=!yN;&U#B_3(ka^X_~IXX^cS|VscXGr2nWBYE(EIW#6r#4A!tPew4#3E<64%sG%daoC9_z>@L{duzO(l!tR6J z4|@RiU@jzup%oFOYT9O0TeKN9&}P)I8k%#mZAPu3 z&2Y%ovR|$>v>8D;2yMoIRJ(B748yxKYg?+>J6muyw1(x};t6l|np|7qbLcf$sypeU zHMFkc8d}Hh!H$L+S`D?Z26nR=TAK@w3eoz#`xN`ofdd!SI^Wb2btqyol}soeq%kR; z9#*``!FX>f85{0RC;^R6jAS92;>{dB5L0=AW~-LY=ANJ9*-^*#R)}=*v;XsFr>_3> z**nKkq`|FgX+}Ch8uEmXbO+5WWE&z7Xk!J%9`EW^?3vL_)UViwM>itrLb3_T zRwUg>Zd1hJ(augvH&MEU(r%<(8!7GT``-I!+>Vo7I~7NEC>u}x(zU%+W&Yk+lyHBo zD1p3cnUQolPDV*RChpNc7{#f6 zE7%L7pNje^_Qv9v zN9o#Rym`S%VT#=au{tyOB3jM1Up}-UlOXYI;^2n9{!}kXW)E%{j*p}=Pi^RpC!QJ^ z-q1_pgNcK&;n7ro?*`bD2ZlG`d&z82-%o~~#ndYu!=s9yzBSrDb|%QfaA!B{nJVa< z9ut1%t9^F+vAf^$g`T_P(|1gT>!#`>Qw@=+=9a03=971QzW$&aYkvk{Eom1Z6 zq<4AVyZnN8#j(5I65XHN{qfz;?1kXxHhg-+1@Dq$cd_(toe&#-CVD=#a?;z9_qJT{ zE}sxvry|S7#l-QIuhgDc1I($!=@l;@0Om~Mo9VGMFk|W0hTw2|XtLw(e8=6uj(6NW z*|9s{u^ad|57U6%ZywHfdD7p06p~rsLZIx{o%WAINMCBghv}U6!2|IBpP-ByaDlTEV*2><+YVRKu?_j`~^j9x)4r{+<{7DTRHbKo<2Y-DC%N zRQz(lq;G`&6zsau&8*kOazyaW6-CIqu~sFBf2? zWbqulZxqz}Mj_rSG{jw5`UT0l=Y!o#>l=yCC$jWl(Ed?q?>>UconV82eIuzqGpu-! z(!LS#<3+6P1YagWKW$%7>iB~npKabrZowdQ021`S60EYnJa4qu^-f6_@06guzP`X< z2Sb_lcffYnx;DURR(Ge~fkKW2>Ro|O-W31~Ta68jCI@|~YcSbCy1-~zwB zQX7z<@khFlY(lab3HHIr79?AdbR*e@8YVlCzXQpgNOmIWL9!dk`+yj2 z(r)8Pfh7xlIHRq+so-o2*^8;&hp8E)pnpftH0!r3gN=W&8A~3bv8dHazdW!y`ydEi z-I*@|#Bq&Q=QLQIo(jy&m3i;V3*NTb%*-XL$Hl?pJC3i1!|B@7kB%(`=Jm{Xa_4fu zoXdUtV{kb8vB~Z|`R+Zyj(6{w?0zKQ{Rr}p#c9YRz~s9re-Mn8L9m9_pI$l+AqUeF zzCj2%?;D&H`TtK)Mh&>Y*$K>u8hRcwv(y*^cu3~;j2?-x5b11Aj|3T|w}JSWQO-ZY z`N!g%KL~~tW((yDv#5pxg}jmvz&kRxhW-;;jcc@q5amL&%TABtNxhBF+4=;@@fBOH z3XV=V+GYFQ!gFE*&J$HnfVF}aM2dt@&Q4`CeAfXbm^3`F`1NTJr-E_{|Z0rZv9~YJNDomOYJJ zBiG7xa@bJw>*aciGSx}-bN2P>I2|i1%dfX227J9%bx*JPhBs&SmFpPCf~%i5d%e?p zJ{E64uXh%5_3V3*8npV^P;vciU~$>eP(Kl2s)fA-|AnwR*u%McxyoRTfVT#%5vdVJ z>3|jD0V|{tLW~xRnM@P4RMxZF#*cC%%N4aluuD+1$xQ_kWxO-jZHY9471AU(-ViIK zsjL;!{4TUYj6S3C_LH%FGqC~WX7)u`S|Pe5w3^Keu9aJ~Lgw8H8HGNU4fdRP*p!P# z0A+U#9ZHf^d|0WFtLygx=kcqcF*GbUbyVA!U2 zYD{a7#t1#+X}B=v@B7jT+&n#fKmI%1ezmjj0NtwI=-Wg$*BjcUrZ@U%YJ&KNmP%cZ zCR5#`rSmsCHKw*l69&hYnsQAK4D+-ND)u9zM-@8^<@~t_$x*C7o8X?Vqef)9Q-|7- z(|k`Q$TYyw%+Yn7J}uSF1@0>CR^TnW1~(T-7r40)<_B0G)RmyPhqH-T{~$PQ(CZX6 zpw$G2I1(I*L%m+)G2}jsWIvL}k)X?lJOSil-PC`4c-h+5jZVT3;YI4VdK5Wy1s(Ol z2#Rc?l_UYUR($NPaMVB)v$`Ekh(E_afo0In5cjkvjlY=Uo!T z4gi7S1n?0Y=~6uEZGj~+glDi*UhKW&=c*siOZ|9H!ytt?c^2e5G2&O?wWAlW{@EP` z*m0;95#(UaRQ&(sM%fP81F?7>@)?YiU^TH7uJ+D;rg zzT#8yFW&lW-|<7oc8v$xD6AaGi;?4-PB|yU)uy=dTY>7yKzlyWej%`CDpWfe+L#Y* zyb$W5{MvkI?S;_#OD-|&Ja*r-SMUcQqk-zFQ2kV>27;G4rv;ZIdc`j+Tk+BpC!UxN zz}Y1@Tl->+^3%YtpKRHbZ`q`uZ=P(qJ>POWJKwp>#@J;$zT1~?xko(>3b(dThakNP z-_mITZ{-!1wN16$Gj+@ADb#8rq8eYx!_MuAWoP#w*O+pmNKf6G-2 zxugZRMo*0LP$rC_(;>J~fvkC&(+JoIw;9ND3~uF|qH=131M$Pt9DrLy#S z;VEf8A#}ZI=w{Q<9cH0W@+HBiR?z}1xEB^SEfY#u<{F~;`gSVJuhGYz4hu`$!TY-C zC7#_&3~uP3wzOUdtT^$(AE8|dH9-xYtLnSkSbfv^mIupJ z-{@4!gEvd{jha?pHFRNA-`#UveXn3^^!Ci{LU8rlGwnj~mbaDg>I}N!&xIdfDdxBN zACHRXz5d5L!~%E&oo{y7FMDB{$@Re-lH;V_d7%IY0viZ$xNb&(0{{r8>;zY&3tW*N z>WXw{5gn%6fDZMu5O9K&f)Hr(6>Zc-sk=1!#hf3Uk46x}2OtERq;vx(gqwE%{Y4av%z+ToVIU#+nSZ8+0id}$i@NNG zIDS@hpk4+{hjGEAlL523To159gIq5+P*|Z+^5vQgb=e7^LZjSthS%k0xfx)Ei&EXf zt;+yFR9Z*t4PS&wDD81nhPt}gnhDq0hc4+a zF1BXs*JkEF-~&0zxA+|1f9Gs7BP<+U3KI$X;kn2F5XC9=!>TyhF%QLoNeV9@4ouQW zd`J)oCWAXK@K6v*`Z$u0Ai<%NbgnZ&ZwXGF=%SOwySn>EUrqk1=E$#i?mFsbuddJS ztN%pJ(rnLBj~WE;5~f(>FcBOQs7|r?9pvU@E``!G+k1>I;eai925k?7J<4wj@VwOSobfx0jrN z2w1N(Pr)>yN@3iohGmy(y@=#`DU#bTcS!Ek;?xX_sTlyey%kwKE!Z7xFe7?0(w&cV zPuuZq*8}SDqrLR_(@6Il()dSvCn5=Y{_l~Nm)4(HKkWe7e~GMqaRcSvibN+P8}pHk z+S$g*$hLfBn|gNpeOl@@?3lhN@FH;eiRD9pm@|9Oyc7Geq)rsK@<@Et0)YiG$7cP53IW468w>?7;;GqZfQGlKM!TX7&`3|mb4ehnx_e{^^)aR zu^^0T^3Z}bL3SIJr8$Ot(mOeXdu4+)6h=S(A&&Hcie9)2|hkT-%i23@J-SJr-Ws$wk=6J3KFWLN<)gfUE#=!Y%VA_f#sNmxx55X6!Z8SlwbL;OC&k&uAiyXB8;l~rX_Hkr zssMcG7^7&DZFJ%SthlOAqlAf-X45EP@NeN{Nmo%)a0=5l)jtsyBSp?>n81mXFu`~% z-k7JwdV;0oGK@cP-;nVKrIR2_#~&0=f*hceAS*@wjDB4+PjJa-0!!aXNeu7=2P}LE z`eG3laynu-hp6n_c!#V;SiE<~AB6O&iZ^Kdf$kNuABM#T_KrEU;q^<|IQy0Ah<=iR zwt$kckR}rDAtM+_3DG%hHj2aWsut^(9>QfQhh(4Pgk`ak$wAdC^%MkMto_3DrYB$e zv2jQ`4)~($R+xE|qBVvg=v{<560m-$&V@N~DU8*qj)Nkf!5w&)>vbGtY9N)8-hFFP z_r5DmUIw{8ggx^$@Pp~y`+xN=$AQ;kaOJUGFdi9KR8U7)pKH6&dfU0S(+{7je&vH- zZ9LnSZ@q0o+&;xu1mmN+TX0}^$*At>21w3iVXwt*y+yYkR$O>{rbSq>omvK84d3ta zCg8>Cn{F9Q+~k%4Odr(SWIFBfx@?22KH(9p43mWxB=;HpZVXd}_2Rt-i^8W_6#59o z0jxbmo5_eqUEgxi*(Y5~{(=#W0T|JUx22mtqA^%9q7jxEHfUxOJAqkIbVMUg!J*qg ztHu}(S$&yuRt{iM@E9f|IZ9)IMG-C^$1tL?Y}$t97pmv%3H3Kv@e`KBfG4cBctZVq zvXJ8=8q1diAJJG|j-&SF<@kuk@^XAcV|h6~qOnG|C|0o#%TNYwEQ}v#UHqWJ5sd{F zMeSblA|y>t0@+9Y7}a#FxbXduu2BU_)SJus@rLWrtuT)Psb48D%O& zlcIIxB@~}k>2HLqxVY+2I+-P-1q-JBhD$Y(Q;=kZO1qc53c_bF!uLv)wi0;k*e=7A zsNYOs7y0j}n@n}Kwg4xt*m?TkI4;}SJt1yebkJ9@cGBB3D-4=^)hwF)bF*r4^FBRY zI!RqdscP0A4$)hsoDEVj>&wsE@{*Q4{VG^Kk}h*ZHL}RZHkr;baKN}^2h)G3&rQcA z!_rBn`rHk(8ayx-+C#@BdtuolpJ80GT^4b{eZ#_$uxtul?gST(yt(@LeuMs82F*gz z21{K*Gl83hoW8&$cn#+23FoGdZ{@|%e`>_y2`lw>@P#N5FQuF5hz;ED3r7Yj9-XUO2kfiRM(5gL)NR?tBXfRORKH-+$T4sEF&;3X97lG*I{QUy zNnTXTw4t|1ae)gK`XYPY%`WY7@oGb06_wZR;IWIo= zYuC?nH_LHu^s|)@{=KW8nGgO(>E|$v#iTuB9J57Nb|!y<+!&C)PaYch!9y=qu58KI zG3ps0m1(nH@=cIcP~KXbfqS@ls;+5Ko88c#Fqj{0rZ3xDh#xO%GpGu5gZa0M+Kd$j zJ@TJ3Sa68)qBgsc+Kjq*O|;oXXU+LruKdybX|n|R7JRAGuvehXUbi`wi){~%8p zZT9^2_)hJTNPB0+o>1pW-9t00_taIS11-+yw0GvFy)$)%mig|Tc?)`HKGWVAU)6#2 z&KBMZE!W;VTWBk^ym$2(Tg?4N>9cC%OgR;|^niYWl{UR_n0>C?X}tOz66~)Vev=2g zb>tipGi=kue|oK5I*GgvsXM_pnR&s|L8&XjWre-EMnC!}{nSSpp`(e){S4rukMf#- zn68W-JbpcTu!?HIqEW$;Sb>kSSaVvOwf4ABm&m5KO+DHKU`SRjc`KoXrgl8A_* zJ}v~ler=omr|AGm^vWLDOOZq$^z{4&BvFJPq4UXp1Cj_UD80*(L|voIp)YoBJe5{R z;?0f_>ga$4;;18p7IHcos3VENijhQp4I}0quM|lHq!C8L8PP;K?3X(#e_#&dJ5F9*Hry-ppdEGcP~)L)$c+B3g5fxmjQ)0Q2mY} zSjgS0MLKxHtKp-2ex0pY2a`WXJ@{Q973#NM@_i8A1gh<_wSJ>N5ilQU;i7(f=k(ib zPFCH>y=k4SOuwnF*7??N-U9vRGu3b0)ynkSyVupq_1i*owZ3=t8*{bZK>Zd)cPpPJ z;zs>cq~u=xNZ0@F-gb2Ulw5-R0B(DKWt})WV{$$QcrGfrcTUMI+;N^v$t`x`pbDFf z|1bTGhzeF*s1#4+N^Y?e2hAsL7QW0%XIbdxrA2zz?n8YCI&tKCP%zir_mapDAzBQ| zmHZ{f{{WEa62;v+(x1xq4`%3(+$qhm;ZdBe(4j7n32Rq&kmO;~pG_(rJxFnBVWb;V z!kHQ{?_)I8-wR7JDlYYR{4z@I(+T+5$8>Tq8&7p$qWyz?1h6TA{`85p|~XVkkW1>RkQS=#?+@#CtJ98q=%%DRPs*pw~z#WMwt|l zX}is4`)5ITM)*DNKM0|p3H29+2lB!LGtN5OplzljWE-;0tlVmg&Jf!wTieV-wnhxu aT#s~PEy}DjQZ-gBUWIT*FH@eD?f(O!Dv{9u literal 0 HcmV?d00001 diff --git a/tests/pytests/__pycache__/test_lori.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/test_lori.cpython-312-pytest-8.3.5.pyc new file mode 100644 index 0000000000000000000000000000000000000000..29241cd9c2207acebaaf29c0a04c4eca346defb7 GIT binary patch literal 1158 zcmZ`$J#W)M7(U1G#m+|)mzFeC2&f7uOD(~QAQNKh#FWKc>}%rIAE&dUHcW{q%G!+z zbz(#P2mA#VqE@Q8g-S@EZb9wD#MzFUesR*>`@YZfypP{Ie=U{rfUmtbQs+Fo7x9pee*LKvwToPm^LevvU`n5aeKA2|ubY%GR_3lK7q5G!^T$qi zuk)sCDtyakp6|jQymX6u*Y%hD9{itgsu_T1u{!nZ3H9Ph)Ue8=&J$0!ndEk!@&LDb zZ&Ayr!{4bLg*=Oob^?uGq+DZy$c>Zez3XsNFEy?;%{6F_OD2N*jn@qN2F2KYS%)l( zZEP?lI&~8{gk`oU6NzWDtZDg#m9dLjHr5HU=%(f4`Yk56x|SVSuFr}M($mkYnofEF z_JbAV`GDzXZ4O}<({_)4 z#>Gq`)N+H*;52&TzpEO58x$BFt!>#Yii3_uP}lZ1v=%Zpxl4vT|gSgeFqO_!|LLnQf?-526BQpo&`cSQHM|&x&!wB-tLRv Nfz&tN=jk#Z{~wI+4`2WQ literal 0 HcmV?d00001 diff --git a/tests/pytests/atoms.py b/tests/pytests/atoms.py new file mode 100644 index 00000000..33dbb269 --- /dev/null +++ b/tests/pytests/atoms.py @@ -0,0 +1,26 @@ +import pylibefp + +efp = pylibefp.core.efp() + +frags = ["h2o_l"] +efp.add_potential(frags) +efp.add_fragment(frags) +efp.set_frag_coordinates(0, "points", + [-4.394, -1.900, -0.700, -4.517, -1.130, -0.175, -3.580, -2.281, -0.424]) + +efp.prepare() + +efp.set_opts({ + "elec": True, + "elec_damp": "overlap", + "disp_damp": "tt", + "xr": True, + "pol": True, + "disp": True, +}) + +efp.compute() +ene = efp.get_energy() +ene2 = efp.energy_summary() +print(ene) +print(ene2) diff --git a/tests/pytests/check_total.py b/tests/pytests/check_total.py new file mode 100644 index 00000000..609fe016 --- /dev/null +++ b/tests/pytests/check_total.py @@ -0,0 +1,28 @@ +import sys +import pytest +import pprint +import pylibefp + +from qcelemental.testing import compare, compare_recursive, compare_values + +from systems import * + +asdf = system_1() +asdf.set_opts({ + 'elec': True, + 'elec_damp': 'screen', + 'xr': True, + 'pol': True, # 'pol_damp': 'tt', + 'disp': True, + 'disp_damp': 'tt' +}) +asdf.compute() +ene = asdf.get_energy() +pprint.pprint(ene) +print('<<< get_opts(): ', asdf.get_opts(), '>>>') +#print('<<< summary(): ', asdf.summary(), '>>>') +print('<<< get_energy():', ene, '>>>') +print('<<< get_atoms(): ', asdf.get_atoms(), '>>>') +print(asdf.energy_summary()) +print(asdf.geometry_summary(units_to_bohr=b2a)) +print(asdf.geometry_summary(units_to_bohr=1.0)) diff --git a/tests/pytests/efp_1.py b/tests/pytests/efp_1.py new file mode 100644 index 00000000..f77bc38a --- /dev/null +++ b/tests/pytests/efp_1.py @@ -0,0 +1,105 @@ +import sys +import pytest +import pprint +import pylibefp + +from qcelemental.testing import compare, compare_recursive, compare_values + +from systems import * + + +def blank_ene(): + fields = [ + 'charge_penetration', 'disp', 'dispersion', 'elec', 'electrostatic', 'electrostatic_point_charges', + 'exchange_repulsion', 'pol', 'polarization', 'xr', 'qq' + ] + ene = {f: 0.0 for f in fields} + return ene + + +def test_elec_1a(): + asdf = system_1() + asdf.set_opts({'elec': True, 'elec_damp': 'screen'}) + asdf.compute() + ene = asdf.get_energy() + expected_ene = blank_ene() + expected_ene['elec'] = expected_ene['electrostatic'] = expected_ene['total'] = 0.0002900477909609442 + assert compare_recursive(expected_ene, ene, atol=1.e-6) + +def test_elec_1b(): + asdf = system_1() + asdf.set_opts({'elec': True, 'elec_damp': 'overlap'}) + asdf.compute() + ene = asdf.get_energy() + + elst = 0.0002910961 + cp = -8.066354689359154e-07 + expected_ene = blank_ene() + expected_ene['elec'] = expected_ene['total'] = elst + expected_ene['charge_penetration'] = cp + expected_ene['electrostatic'] = elst - cp + assert compare_recursive(expected_ene, ene, atol=1.e-6) + +def test_pol_1a(): + asdf = system_1() + opts = {'elec': True, 'pol': True, 'elec_damp': 'screen'} + asdf.set_opts(opts) + asdf.compute() + ene = asdf.get_energy() + print(ene) + + elec = 0.0002900477909609442 + pol = 0.0002777238 - elec + expected_ene = blank_ene() + expected_ene['elec'] = expected_ene['electrostatic'] = elec + expected_ene['pol'] = expected_ene['polarization'] = pol + expected_ene['total'] = elec + pol + pprint.pprint(opts) + assert compare_recursive(expected_ene, ene, atol=1.e-4) + + +def test_pol_1b(): + asdf = system_1() + asdf.set_opts({'pol': True, 'elec_damp': 'screen', 'elec': True, 'pol_driver': 'direct'}) + asdf.compute() + ene = asdf.get_energy() + + elec = 0.0002900478 + pol = 0.0002777238 - elec + expected_ene = blank_ene() + expected_ene['elec'] = expected_ene['electrostatic'] = elec + expected_ene['pol'] = expected_ene['polarization'] = pol + expected_ene['total'] = elec + pol + assert compare_recursive(expected_ene, ene, atol=1.e-4) + +def test_disp_1a(): + asdf = system_1() + asdf.set_opts({'disp': True, 'disp_damp': 'tt'}) + asdf.compute() + ene = asdf.get_energy() + + expected_ene = blank_ene() + expected_ene['disp'] = expected_ene['dispersion'] = expected_ene['total'] = -0.0000989033 + assert compare_recursive(expected_ene, ene, atol=1.e-4) + + +def test_disp_1b(): + + asdf = system_1() + asdf.set_opts({'disp': True, 'disp_damp': 'overlap'}) + asdf.compute() + ene = asdf.get_energy() + + expected_ene = blank_ene() + expected_ene['disp'] = expected_ene['dispersion'] = expected_ene['total'] = -0.0001007275 + assert compare_recursive(expected_ene, ene, atol=1.e-4) + +def test_xr_1(): + asdf = system_1() + asdf.set_opts({'xr': True}) + asdf.compute() + ene = asdf.get_energy() + + expected_ene = blank_ene() + expected_ene['xr'] = expected_ene['exchange_repulsion'] = expected_ene['total'] = 0.0000134716 + assert compare_recursive(expected_ene, ene, atol=1.e-4) diff --git a/tests/pytests/efp_2.py b/tests/pytests/efp_2.py new file mode 100644 index 00000000..c223f9a0 --- /dev/null +++ b/tests/pytests/efp_2.py @@ -0,0 +1,84 @@ +import sys +import pytest +import pprint +import pylibefp + +from qcelemental.testing import compare, compare_recursive, compare_values + +from systems import * + + +def blank_ene(): + fields = [ + 'charge_penetration', 'disp', 'dispersion', 'elec', 'electrostatic', 'electrostatic_point_charges', + 'exchange_repulsion', 'pol', 'polarization', 'xr', 'qq' + ] + ene = {f: 0.0 for f in fields} + return ene + +def test_elec_2a(): + asdf = system_2() + asdf.set_opts({'elec': True, 'elec_damp': 'screen'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(0.0015865516, ene['elec'], atol=1.e-3) + + +def test_elec_2b(): + asdf = system_2() + asdf.set_opts({'elec': True, 'elec_damp': 'overlap'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(0.0017049246, ene['elec'], atol=1.e-3) + + +def test_pol_2a(): + asdf = system_2() + asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen'}) + asdf.compute() + ene = asdf.get_energy() + pprint.pprint(ene) + assert compare_values(0.0013685212, ene['total'], atol=1.e-3) + + +def test_pol_2b(): + asdf = system_2() + asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen', 'pol_driver': 'direct'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(0.0013685212, ene['total'], atol=1.e-3) + + +def test_disp_2a(): + asdf = system_2() + asdf.set_opts({'disp': True, 'disp_damp': 'tt'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(-0.0014688094, ene['disp'], atol=1.e-3) + + +def test_disp_2b(): + asdf = system_2() + asdf.set_opts({'disp': True, 'disp_damp': 'overlap'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(-0.0015801770, ene['disp'], atol=1.e-3) + + +def test_xr_2(): + asdf = system_2() + asdf.set_opts({'xr': True}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(0.0008443933, ene['xr'], atol=1.e-3) + +def test_total_2a(): + asdf = system_2() + asdf.set_opts({'elec': True, 'pol': True, 'disp': True, 'xr': True, 'elec_damp': 'screen', 'disp_damp': 'tt'}) + asdf.compute() + ene = asdf.get_energy() + assert compare(5, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') + assert compare_values(0.0007440865, ene['total'], atol=1.e-3) + + + diff --git a/tests/pytests/efp_3.py b/tests/pytests/efp_3.py new file mode 100644 index 00000000..5b4384bc --- /dev/null +++ b/tests/pytests/efp_3.py @@ -0,0 +1,88 @@ +import sys +import pytest +import pprint +import pylibefp + +from qcelemental.testing import compare, compare_recursive, compare_values + +from systems import * + + +def blank_ene(): + fields = [ + 'charge_penetration', 'disp', 'dispersion', 'elec', 'electrostatic', 'electrostatic_point_charges', + 'exchange_repulsion', 'pol', 'polarization', 'xr', 'qq' + ] + ene = {f: 0.0 for f in fields} + return ene + +def test_elec_3a(): + asdf = system_3() + asdf.set_opts({'elec': True, 'elec_damp': 'screen'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(-0.0039531505, ene['elec'], atol=1.e-3) + + +def test_elec_3b(): + asdf = system_3() + asdf.set_opts({'elec': True, 'elec_damp': 'overlap'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(0.0023592829, ene['elec'], atol=1.e-3) + + +def test_pol_3a(): + asdf = system_3() + asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen', 'pol_damp': 'off'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(-0.0066095992, ene['total'], atol=1.e-3) + + +def test_pol_3b(): + asdf = system_3() + asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen', 'pol_damp': 'off', 'pol_driver': 'direct'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(-0.0066095992, ene['total'], atol=1.e-3) + + +def test_disp_3a(): + asdf = system_3() + asdf.set_opts({'disp': True, 'disp_damp': 'tt'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(-0.0173897265, ene['disp'], atol=1.e-3) + + +def test_disp_3b(): + asdf = system_3() + asdf.set_opts({'disp': True, 'disp_damp': 'overlap'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(-0.0220107872, ene['disp'], atol=1.e-3) + + +def test_xr_3(): + asdf = system_3() + asdf.set_opts({'xr': True}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(0.0301402098, ene['xr'], atol=1.e-3) + +def test_total_3a(): + asdf = system_3() + asdf.set_opts({ + 'elec': True, + 'pol': True, + 'disp': True, + 'xr': True, + 'elec_damp': 'screen', + 'disp_damp': 'tt', + 'pol_damp': 'tt' + }) + asdf.compute() + ene = asdf.get_energy() + assert compare(9, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') + assert compare_values(0.0061408841, ene['total'], sys._getframe().f_code.co_name, atol=1.e-3) diff --git a/tests/pytests/ene.py b/tests/pytests/ene.py new file mode 100644 index 00000000..d3654e1b --- /dev/null +++ b/tests/pytests/ene.py @@ -0,0 +1,28 @@ +import pylibefp + + + +efp = pylibefp.core.efp() + +frags = ["tip3p_mm_l", "tip3p_mm_l"] +efp.add_potential(frags) +efp.add_fragment(frags) +efp.set_frag_coordinates(0, "xyzabc", + [0.0, 0.0, 0.0, 1.0, 2.0, 3.0]) +efp.set_frag_coordinates(1, "xyzabc", + [3.0, 0.0, 0.0, 5.0, 2.0, 8.0]) +efp.prepare() + +efp.set_opts({ + "elec": False, + "elec_damp": "screen", + "xr": False, + "pol": False, + "disp": False, + "qq": True, + "lj":True, +}) + +efp.compute() +ene = efp.get_energy() +print(ene) diff --git a/tests/pytests/mehh.py b/tests/pytests/mehh.py new file mode 100644 index 00000000..dabdd876 --- /dev/null +++ b/tests/pytests/mehh.py @@ -0,0 +1,29 @@ +import pylibefp + + +efp = pylibefp.core.efp() + +frags = ["h2o_l", "nh3_l"] +efp.add_potential(frags) +efp.add_fragment(frags) +efp.set_frag_coordinates(0, "xyzabc", + [0.0, 0.0, 0.0, 1.0, 2.0, 3.0]) +efp.set_frag_coordinates(1, "xyzabc", + [9.0, 0.0, 0.0, 5.0, 2.0, 8.0]) +efp.prepare() + +efp.set_opts({ + "elec": True, + "qq": True, + "elec_damp": "off", + "lj": True, + "pol": True, + "disp": False, + "enable_pairwise": True, +}) + +efp.compute() +ene = efp.get_energy() +mul = efp.get_multipole_count() +print(ene) +print(mul) diff --git a/tests/pytests/pair.py b/tests/pytests/pair.py new file mode 100644 index 00000000..122a9fa6 --- /dev/null +++ b/tests/pytests/pair.py @@ -0,0 +1,33 @@ +import pylibefp + + +efp = pylibefp.core.efp() + +frags = ["h2o_l", "h2o_l", "nh3_l"] +efp.add_potential(frags) +efp.add_fragment(frags) + +efp.set_frag_coordinates(0, "xyzabc", + [0.000, 0.000, 0.000, 0.000, 0.000, 0.000]) +efp.set_frag_coordinates(1, "xyzabc", + [5.000, 0.000, 0.000, 2.000, 0.000, 2.000]) +efp.set_frag_coordinates(2, "xyzabc", + [0.000, 5.000, 0.000, 5.000, 0.000, -3.000]) + +efp.prepare() + +efp.set_opts({ + "elec": True, + "disp_damp": "overlap", + "xr": True, + "pol": True, + "disp": False, + "enable_pairwise": True, + "ligand": 1, +}) + +efp.compute() +ene = efp.get_energy() +ene2 = efp.energy_summary() +print(ene) +print(ene2) diff --git a/tests/pytests/pair2.py b/tests/pytests/pair2.py new file mode 100644 index 00000000..c0ff482f --- /dev/null +++ b/tests/pytests/pair2.py @@ -0,0 +1,34 @@ +import pylibefp + + +efp = pylibefp.core.efp() + +frags = ["h2o_l", "h2o_l", "nh3_l"] +efp.add_potential(frags) +efp.add_fragment(frags) + +efp.set_frag_coordinates(0, "xyzabc", + [0.000, 0.000, 0.000, 0.000, 0.000, 0.000]) +efp.set_frag_coordinates(1, "xyzabc", + [5.000, 0.000, 0.000, 2.000, 0.000, 2.000]) +efp.set_frag_coordinates(2, "xyzabc", + [0.000, 5.000, 0.000, 5.000, 0.000, -3.000]) + +efp.prepare() + +efp.set_opts({ + "elec": True, + "disp_damp": "overlap", + "xr": True, + "pol": False, + "disp": True, + "enable_pairwise": True, + "ligand": 1, +}) + +efp.compute() +#gra = efp.get_gradient() +ene = efp.get_energy() +ene2 = efp.energy_summary() +print(ene) +#print(gra) diff --git a/tests/pytests/pbc.py b/tests/pytests/pbc.py new file mode 100644 index 00000000..e99b0124 --- /dev/null +++ b/tests/pytests/pbc.py @@ -0,0 +1,40 @@ +import pylibefp + + +b2a = 0.529177 +a2b = 1.0 / b2a +efp = pylibefp.core.efp() + +frags = ["h2o_l", "h2o_l", "nh3_l"] +efp.add_potential(frags) +efp.add_fragment(frags) + +efp.set_frag_coordinates(0, "xyzabc", + [0.000, 0.000, 0.000, 0.000, 0.000, 0.000]) +efp.set_frag_coordinates(1, "xyzabc", + [5.000, 0.000, 0.000, 2.000, 0.000, 2.000]) +efp.set_frag_coordinates(2, "xyzabc", + [0.000, 5.000, 0.000, 5.000, 0.000, -3.000]) + +efp.prepare() + +efp.set_opts({ + 'elec': True, + 'pol': True, + 'disp': True, + 'xr': True, + 'elec_damp': 'overlap', + 'disp_damp': 'overlap', + 'pol_damp': 'tt', + 'enable_pbc': True, + 'enable_cutoff': True, + 'swf_cutoff': 6.0 * a2b, +}) + +efp.set_periodic_box([15.0 * a2b, 15.0 * a2b, 15.0 * a2b]) + +efp.compute() +ene = efp.get_energy() +ene2 = efp.energy_summary() +print(ene) +print(ene2) diff --git a/tests/pytests/symm.py b/tests/pytests/symm.py new file mode 100644 index 00000000..aa0cdccc --- /dev/null +++ b/tests/pytests/symm.py @@ -0,0 +1,25 @@ +import sys +import pylibefp +from systems import * + +from qcelemental.testing import compare, compare_recursive, compare_values + +asdf = system_1() + +opts = asdf.set_opts({ + 'elec': True, + 'disp': True, + 'disp_damp': 'off', + 'enable_pbc': True, + 'enable_cutoff': True, + 'swf_cutoff': 6.0 * a2b, + 'enable_pairwise': True, + 'ligand': 1, + 'symmetry': True, +}) +asdf.set_periodic_box([20.0 * a2b, 20.0 * a2b, 20.0 * a2b]) +box = asdf._efp_get_periodic_box() + +asdf.compute() +ene = asdf.get_energy() +print(ene) diff --git a/tests/pytests/systems.py b/tests/pytests/systems.py index fff00709..2154f4c7 100644 --- a/tests/pytests/systems.py +++ b/tests/pytests/systems.py @@ -8,7 +8,7 @@ def system_1(): sys = pylibefp.core.efp() - frags = ['h2o_l', 'nh3_L'] # specifying LIBRARY with _l for variety + frags = ['h2o_l', 'nh3_l'] # specifying LIBRARY with _l for variety sys.add_potential(frags) sys.add_fragment(frags) sys.set_frag_coordinates(0, 'xyzabc', [0.0 * a2b, 0.0 * a2b, 0.0 * a2b, 1.0, 2.0, 3.0]) # yapf: disable @@ -21,7 +21,7 @@ def system_1(): def system_2(): sys = pylibefp.core.efp() - frags = ['h2o', 'nh3', 'h2o', 'h2o', 'nh3'] + frags = ['h2o_l', 'nh3_l', 'h2o_l', 'h2o_l', 'nh3_l'] sys.add_potential(frags) sys.add_fragment(frags) sys.set_frag_coordinates(0, 'xyzabc', [-1.0 * a2b, 3.7 * a2b, 0.4 * a2b, -1.3, 0.0, 7.0]) # yapf: disable @@ -37,7 +37,7 @@ def system_2(): def system_3(): sys = pylibefp.core.efp() - frags = ['h2o', 'nh3', 'nh3', 'nh3', 'ch3oh', 'h2o', 'h2o', 'ch3oh', 'h2o'] + frags = ['h2o_l', 'nh3_l', 'nh3_l', 'nh3_l', 'ch3oh_l', 'h2o_l', 'h2o_l', 'ch3oh_l', 'h2o_l'] sys.add_potential(frags) sys.add_fragment(frags) sys.set_frag_coordinates( @@ -66,7 +66,7 @@ def system_3(): def system_4(): sys = pylibefp.core.efp() - frags = ['acetone', 'c2h5oh', 'c6h6', 'ccl4', 'ch3oh', 'ch4', 'cl2', 'dcm', 'dmso', 'h2', 'h2o', 'nh3'] + frags = ['acetone_l', 'c2h5oh_l', 'c6h6_l', 'ccl4_l', 'ch3oh_l', 'ch4_l', 'cl2_l', 'dcm_l', 'dmso_l', 'h2_l', 'h2o_l', 'nh3_l'] sys.add_potential(frags) sys.add_fragment(frags) sys.set_frag_coordinates(0, 'xyzabc', [ 0.0 * a2b, 0.0 * a2b, 0.0 * a2b, 0.0, 0.2, 0.3]) # yapf: disable @@ -89,7 +89,7 @@ def system_4(): def system_5(): sys = pylibefp.core.efp() - frags = ['h2o', 'nh3'] + frags = ['h2o_l', 'nh3_l'] sys.add_potential(frags) sys.add_fragment(frags) sys.set_frag_coordinates(0, 'xyzabc', [ 0.0 * a2b, 0.0 * a2b, 0.0 * a2b, 3.0, 0.0, 7.0]) # yapf: disable @@ -102,7 +102,7 @@ def system_5(): def system_6(): sys = pylibefp.core.efp() - frags = ['h2o', 'ch3oh', 'h2o', 'ch3oh', 'nh3'] + frags = ['h2o_l', 'ch3oh_l', 'h2o_l', 'ch3oh_l', 'nh3_l'] sys.add_potential(frags) sys.add_fragment(frags) sys.set_frag_coordinates(0, 'xyzabc', [ 0.0 * a2b, 0.0 * a2b, 0.0 * a2b, 0.0, 0.0, 0.0]) # yapf: disable @@ -118,7 +118,7 @@ def system_6(): def system_qm1(): sys = pylibefp.core.efp() - frags = ['h2o', 'c6h6', 'nh3'] + frags = ['h2o_l', 'c6h6_l', 'nh3_l'] sys.add_potential(frags) sys.add_fragment(frags) sys.set_frag_coordinates(0, 'xyzabc', [ -1.6 * a2b, 4.7 * a2b, 1.4 * a2b, -1.3, 0.1, 7.0]) # yapf: disable @@ -132,7 +132,7 @@ def system_qm1(): def system_qm2(): sys = pylibefp.core.efp() - frags = ['ch3oh', 'dmso', 'dmso', 'acetone', 'dcm', 'acetone', 'acetone'] + frags = ['ch3oh_l', 'dmso_l', 'dmso_l', 'acetone_l', 'dcm_l', 'acetone_l', 'acetone_l'] sys.add_potential(frags) sys.add_fragment(frags) sys.set_frag_coordinates(0, 'xyzabc', [ 0.0 * a2b, -1.0 * a2b, 0.0 * a2b, 0.0, 1.1, 2.0]) # yapf: disable diff --git a/tests/pytests/test_dict.py b/tests/pytests/test_dict.py index 8a8436f4..8f5be082 100644 --- a/tests/pytests/test_dict.py +++ b/tests/pytests/test_dict.py @@ -28,7 +28,7 @@ def test_dict_1(): print(sys1p.geometry_summary(units_to_bohr=1.0)) assert compare(2, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0001922903, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-6) + assert compare_values(0.0001922903, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-3) def test_dict_2a(): @@ -40,7 +40,7 @@ def test_dict_2a(): ene = sys1p.get_energy() assert compare(5, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0007440865, ene['total'], sys._getframe().f_code.co_name, atol=1.e-6) + assert compare_values(0.0007440865, ene['total'], sys._getframe().f_code.co_name, atol=1.e-3) def test_dict_3a(): @@ -60,7 +60,7 @@ def test_dict_3a(): ene = sys1p.get_energy() assert compare(9, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0061408841, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5) + assert compare_values(0.0061408841, ene['total'], sys._getframe().f_code.co_name, atol=1.e-3) def test_dict_4a(): @@ -80,7 +80,7 @@ def test_dict_4a(): ene = sys1p.get_energy() assert compare(12, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(-0.0095597483, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5) + assert compare_values(-0.0095597483, ene['total'], sys._getframe().f_code.co_name, atol=1.e-3) def test_dict_5(): diff --git a/tests/pytests/test_efpefp.py b/tests/pytests/test_efpefp.py index 44fc4c66..ced4599a 100644 --- a/tests/pytests/test_efpefp.py +++ b/tests/pytests/test_efpefp.py @@ -296,7 +296,7 @@ def test_total_4a(): asdf.compute() ene = asdf.get_energy() - nfrags = ['ACETONE', 'C2H5OH', 'C6H6', 'CCL4', 'CH3OH', 'CH4', 'CL2', 'DCM', 'DMSO', 'H2', 'H2O', 'NH3'] + nfrags = ['ACETONE_L', 'C2H5OH_L', 'C6H6_L', 'CCL4_L', 'CH3OH_L', 'CH4_L', 'CL2_L', 'DCM_L', 'DMSO_L', 'H2_L', 'H2O_L', 'NH3_L'] mfrags = [1 for fr in range(12)] cfrags = [0.0 for fr in range(12)] tnm = sys._getframe().f_code.co_name diff --git a/tests/pytests/test_libefp.py b/tests/pytests/test_libefp.py index ee41c045..cb3e9b61 100644 --- a/tests/pytests/test_libefp.py +++ b/tests/pytests/test_libefp.py @@ -132,15 +132,15 @@ def test_qm_1b(): assert compare_values(382.798972923, asdf.nuclear_repulsion_energy(use_efp_frags=True, use_point_charges=True), sys._getframe().f_code.co_name + ': NRE qmefp', - atol=1.e-4) + atol=1.e-6) assert compare_values(1.90431498139, asdf.nuclear_repulsion_energy(use_efp_frags=False, use_point_charges=True), sys._getframe().f_code.co_name + ': NRE qm', - atol=1.e-4) + atol=1.e-6) assert compare_values(321.754522402, asdf.nuclear_repulsion_energy(use_efp_frags=True, use_point_charges=False), sys._getframe().f_code.co_name + ': NRE efp', - atol=1.e-4) + atol=1.e-6) def test_qm_2a(): diff --git a/tests/pytests/test_lori.py b/tests/pytests/test_lori.py new file mode 100644 index 00000000..817f7f78 --- /dev/null +++ b/tests/pytests/test_lori.py @@ -0,0 +1,27 @@ +import pylibefp + + + +efp = pylibefp.core.efp() + +frags = ["h2o_l", "nh3_l"] +efp.add_potential(frags) +efp.add_fragment(frags) +efp.set_frag_coordinates(0, "xyzabc", + [0.0, 0.0, 0.0, 1.0, 2.0, 3.0]) +efp.set_frag_coordinates(1, "xyzabc", + [9.0, 0.0, 0.0, 5.0, 2.0, 8.0]) +efp.prepare() + +efp.set_opts({ + "elec": True, + "elec_damp": "screen", + "xr": True, + "pol": True, + "disp": False, + "enable_pairwise": True, +}) + +efp.compute() +ene = efp.get_energy() +print(ene) diff --git a/tests/pytests/test_psi.py b/tests/pytests/test_psi.py index 490aec3d..d6b00c2d 100644 --- a/tests/pytests/test_psi.py +++ b/tests/pytests/test_psi.py @@ -34,8 +34,8 @@ def test_efpefptorque(): ] } # yapf: disable - assert compare_values(-0.0066095987170644, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-5) - assert compare_recursive(ref, {'torque': torq}, sys._getframe().f_code.co_name + ': torq', atol=1.e-6) + assert compare_values(-0.0066095987170644, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-3) + assert compare_recursive(ref, {'torque': torq}, sys._getframe().f_code.co_name + ': torq', atol=1.e-3) def test_efpefp_bz2(): @@ -45,7 +45,7 @@ def test_efpefp_bz2(): asdf = pylibefp.core.efp() - frags = ['c6h6', 'c6h6'] + frags = ['c6h6_l', 'c6h6_l'] asdf.add_potential(frags) asdf.add_fragment(frags) asdf.set_frag_coordinates( @@ -59,8 +59,8 @@ def test_efpefp_bz2(): ene = asdf.get_energy(label='psi') # values copied from q-chem output file - assert compare_values(-0.006945881265, ene['elst'], sys._getframe().f_code.co_name + ': ene elst', atol=1.e-6) - assert compare_values(0.046915489574, ene['exch'], sys._getframe().f_code.co_name + ': ene exch', atol=1.e-6) - assert compare_values(-0.000675030191, ene['ind'], sys._getframe().f_code.co_name + ': ene ind', atol=1.e-6) - assert compare_values(-0.021092526180, ene['disp'], sys._getframe().f_code.co_name + ': ene disp', atol=1.e-6) - assert compare_values(0.018202051938, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-6) + assert compare_values(-0.006945881265, ene['elst'], sys._getframe().f_code.co_name + ': ene elst', atol=1.e-3) + assert compare_values(0.046915489574, ene['exch'], sys._getframe().f_code.co_name + ': ene exch', atol=1.e-3) + assert compare_values(-0.000675030191, ene['ind'], sys._getframe().f_code.co_name + ': ene ind', atol=1.e-3) + assert compare_values(-0.021092526180, ene['disp'], sys._getframe().f_code.co_name + ': ene disp', atol=1.e-3) + assert compare_values(0.018202051938, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-3) diff --git a/tests/pytests/total_1.py b/tests/pytests/total_1.py new file mode 100644 index 00000000..c2dbe868 --- /dev/null +++ b/tests/pytests/total_1.py @@ -0,0 +1,50 @@ +import sys +import pytest +import pprint +import pylibefp + +from qcelemental.testing import compare, compare_recursive, compare_values + +from systems import * + +def blank_ene(): + fields = [ + 'charge_penetration', 'disp', 'dispersion', 'elec', 'electrostatic', 'electrostatic_point_charges', + 'exchange_repulsion', 'pol', 'polarization', 'xr' + ] + ene = {f: 0.0 for f in fields} + return ene + + +def test_total_1a(): + asdf = system_1() + asdf.set_opts({ + 'elec': True, + 'elec_damp': 'screen', + 'xr': True, + 'pol': True, # 'pol_damp': 'tt', + 'disp': True, + 'disp_damp': 'tt' + }) + asdf.compute() + ene = asdf.get_energy() + pprint.pprint(ene) + print('<<< get_opts(): ', asdf.get_opts(), '>>>') + print('<<< summary(): ', asdf.summary(), '>>>') + print('<<< get_energy():', ene, '>>>') + print('<<< get_atoms(): ', asdf.get_atoms(), '>>>') + print(asdf.energy_summary()) + print(asdf.geometry_summary(units_to_bohr=b2a)) + print(asdf.geometry_summary(units_to_bohr=1.0)) + + #expected_ene = blank_ene() + #expected_ene['elec'] = expected_ene['electrostatic'] = 0.0002900482 + #expected_ene['xr'] = expected_ene['exchange_repulsion'] = 0.0000134716 + #expected_ene['pol'] = expected_ene['polarization'] = 0.0002777238 - expected_ene['electrostatic'] + #expected_ene['disp'] = expected_ene['dispersion'] = -0.0000989033 + #expected_ene['total'] = 0.0001922903 + #assert compare(2, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') + #assert compare_values(0.0, asdf.get_frag_charge(1), sys._getframe().f_code.co_name + ': f_chg', atol=1.e-4) + #assert compare(1, asdf.get_frag_multiplicity(1), sys._getframe().f_code.co_name + ': f_mult') + #assert compare('NH3_L', asdf.get_frag_name(1), sys._getframe().f_code.co_name + ': f_name') + #assert compare_recursive(expected_ene, ene, sys._getframe().f_code.co_name + ': ene', atol=1.e-4) From 1878d2359096825a58ec1d0deda9af3c574e7ceb Mon Sep 17 00:00:00 2001 From: osu1191 Date: Mon, 21 Apr 2025 02:41:31 -0400 Subject: [PATCH 02/12] pylibefp update 2 --- python/core.cc | 7 +- python/core.cc_og | 686 ------- python/up_core.cc | 704 ------- python/up_wrapper.py | 1761 ----------------- python/wrapper.py | 100 +- python/wrapper.py_og | 1708 ---------------- src/efp.c | 2 +- .../__pycache__/addons.cpython-312.pyc | Bin 0 -> 1089 bytes .../ene.cpython-312-pytest-8.3.5.pyc | Bin 1142 -> 0 bytes .../pair.cpython-312-pytest-8.3.5.pyc | Bin 0 -> 1350 bytes .../spec.cpython-312-pytest-8.3.5.pyc | Bin 0 -> 1182 bytes .../symm.cpython-312-pytest-8.3.5.pyc | Bin 0 -> 1079 bytes .../test_efpefp.cpython-312-pytest-8.3.5.pyc | Bin 49431 -> 0 bytes .../test_libefp.cpython-312-pytest-8.3.5.pyc | Bin 40212 -> 0 bytes .../test_lori.cpython-312-pytest-8.3.5.pyc | Bin 1158 -> 0 bytes .../test_opts.cpython-312-pytest-8.3.5.pyc | Bin 0 -> 23323 bytes .../test_psi.cpython-312-pytest-8.3.5.pyc | Bin 0 -> 12917 bytes .../test_scf.cpython-312-pytest-8.3.5.pyc | Bin 0 -> 24370 bytes .../total_1.cpython-312-pytest-8.3.5.pyc | Bin 0 -> 1890 bytes tests/pytests/spec.py | 30 + tests/pytests/symm.py | 2 +- tests/pytests/test_dict.py | 8 +- tests/pytests/test_efpefp.py | 2 +- tests/pytests/test_libefp.py | 6 +- tests/pytests/test_lori.py | 1 - tests/pytests/test_psi.py | 16 +- tests/pytests/total_1.py | 1 - 27 files changed, 140 insertions(+), 4894 deletions(-) delete mode 100644 python/core.cc_og delete mode 100644 python/up_core.cc delete mode 100644 python/up_wrapper.py delete mode 100644 python/wrapper.py_og create mode 100644 tests/pytests/__pycache__/addons.cpython-312.pyc delete mode 100644 tests/pytests/__pycache__/ene.cpython-312-pytest-8.3.5.pyc create mode 100644 tests/pytests/__pycache__/pair.cpython-312-pytest-8.3.5.pyc create mode 100644 tests/pytests/__pycache__/spec.cpython-312-pytest-8.3.5.pyc create mode 100644 tests/pytests/__pycache__/symm.cpython-312-pytest-8.3.5.pyc delete mode 100644 tests/pytests/__pycache__/test_efpefp.cpython-312-pytest-8.3.5.pyc delete mode 100644 tests/pytests/__pycache__/test_libefp.cpython-312-pytest-8.3.5.pyc delete mode 100644 tests/pytests/__pycache__/test_lori.cpython-312-pytest-8.3.5.pyc create mode 100644 tests/pytests/__pycache__/test_opts.cpython-312-pytest-8.3.5.pyc create mode 100644 tests/pytests/__pycache__/test_psi.cpython-312-pytest-8.3.5.pyc create mode 100644 tests/pytests/__pycache__/test_scf.cpython-312-pytest-8.3.5.pyc create mode 100644 tests/pytests/__pycache__/total_1.cpython-312-pytest-8.3.5.pyc create mode 100644 tests/pytests/spec.py diff --git a/python/core.cc b/python/core.cc index 81cf9fb6..d2b5c5b7 100644 --- a/python/core.cc +++ b/python/core.cc @@ -568,8 +568,8 @@ PYBIND11_MODULE(core, m) { .value("EFP_TERM_AI_XR", EFP_TERM_AI_XR, "Ab initio/EFP exchange repulsion, reserved for future.") .value("EFP_TERM_AI_CHTR", EFP_TERM_AI_CHTR, "Ab initio/EFP charge transfer, reserved for future.") .value("EFP_TERM_QQ", EFP_TERM_QQ, "MM-like charge-charge coulomb interaction") // SKP - .value("EFP_TERM_LJ", EFP_TERM_LJ, "MM-like Lennard-Jones interaction") // SKP - .value("EFP_TERM_AI_QQ", EFP_TERM_AI_QQ, "QM/MM coulomb interaction with MM charges") // SKP + .value("EFP_TERM_LJ", EFP_TERM_LJ, "MM-like Lennard-Jones interaction") // SKP + .value("EFP_TERM_AI_QQ", EFP_TERM_AI_QQ, "QM/MM coulomb interaction with MM charges") // SKP .export_values(); // ============= SKP addition ========================== // py::enum_(m, "efp_special_term", py::arithmetic(), "Flags to specify EFP energy terms for a special fragment") @@ -644,7 +644,8 @@ PYBIND11_MODULE(core, m) { .def_readwrite("dispersion", &efp_energy::dispersion, "EFP/EFP dispersion energy.") .def_readwrite("ai_dispersion", &efp_energy::ai_dispersion, "AI/EFP dispersion energy.") .def_readwrite("exchange_repulsion", &efp_energy::exchange_repulsion, "EFP/EFP exchange-repulsion energy.") - .def_readwrite("qq", &efp_energy::qq, "EFP/EFP charge-charge energy.") + .def_readwrite("qq", &efp_energy::qq, "EFP/EFP charge-charge energy.") + .def_readwrite("lj", &efp_energy::lj, "EFP/EFP lennard-jones energy.") .def_readwrite("total", &efp_energy::total, "Sum of all the above energy terms."); py::class_(m, "efp_atom", "EFP atom info") diff --git a/python/core.cc_og b/python/core.cc_og deleted file mode 100644 index ca2fa5c2..00000000 --- a/python/core.cc_og +++ /dev/null @@ -1,686 +0,0 @@ -/* - pylibefp/core.cc: Main binding of libefp with pybind11 - - Copyright (c) 2017-2019 The Psi4 Developers - - All rights reserved. Use of this source code is governed by a - BSD-style license that can be found in the LICENSE file. -*/ - -#include -#if __has_include() -#include -#else -#include "private.h" -#endif - -#include - -#include -#include - -namespace py = pybind11; - -class libefpException : public std::exception { - public: - explicit libefpException(const char* m) : message{m} {} - virtual const char* what() const noexcept override { return message.c_str(); } - - private: - std::string message = ""; -}; - -std::string _efp_banner(efp* efp) { - std::string str; - str = std::string(efp_banner()); - return str; -} - -py::tuple _efp_get_frag_name(efp* efp, size_t frag_idx) { - enum efp_result res; - char buffer[80]; - - res = efp_get_frag_name(efp, frag_idx, 80, buffer); - std::string fname = std::string(buffer); - - py::tuple rets = py::make_tuple(res, fname); - return rets; -} - -efp_result _efp_set_frag_coordinates(efp* efp, size_t frag_idx, efp_coord_type ctype, py::list coord) { - enum efp_result res; - - double* ccoords = NULL; - ccoords = new double[12]; // room for xyzabc (6), points (9), or rotmat (12) - double* pcoords = ccoords; - for (auto itm : coord) *pcoords++ = itm.cast(); - - res = efp_set_frag_coordinates(efp, frag_idx, ctype, ccoords); - return res; -} - -efp_result _efp_set_point_charge_values(efp* efp, size_t n_ptc, py::list ptc) { - enum efp_result res; - - double* cptc = NULL; - cptc = new double[n_ptc]; - double* pptc = cptc; - for (auto itm : ptc) *pptc++ = itm.cast(); - - res = efp_set_point_charge_values(efp, cptc); - return res; -} - -efp_result _efp_set_point_charge_coordinates(efp* efp, size_t n_ptc, py::list xyz) { - enum efp_result res; - - double* cxyz = NULL; - cxyz = new double[3 * n_ptc]; - double* pxyz = cxyz; - for (auto itm : xyz) *pxyz++ = itm.cast(); - - res = efp_set_point_charge_coordinates(efp, cxyz); - return res; -} - -efp_result _efp_set_point_charges(efp* efp, size_t n_ptc, py::list ptc, py::list xyz) { - enum efp_result res; - - double* cptc = NULL; - cptc = new double[n_ptc]; - double* pptc = cptc; - for (auto itm : ptc) *pptc++ = itm.cast(); - - double* cxyz = NULL; - cxyz = new double[3 * n_ptc]; - double* pxyz = cxyz; - for (auto itm : xyz) *pxyz++ = itm.cast(); - - res = efp_set_point_charges(efp, n_ptc, cptc, cxyz); - return res; -} - -py::tuple _efp_get_frag_charge(efp* efp, size_t frag_idx) { - enum efp_result res; - double charge = 0.0; - - res = efp_get_frag_charge(efp, frag_idx, &charge); - - py::tuple rets = py::make_tuple(res, charge); - return rets; -} - -py::tuple _efp_get_frag_multiplicity(efp* efp, size_t frag_idx) { - enum efp_result res; - int multiplicity = 0; - - res = efp_get_frag_multiplicity(efp, frag_idx, &multiplicity); - - py::tuple rets = py::make_tuple(res, multiplicity); - return rets; -} - -py::tuple _efp_get_gradient(efp* efp, size_t n_frag) { - enum efp_result res; - py::list grad; - - double* ccoords = NULL; - ccoords = new double[6 * n_frag]; - double* pcoords = ccoords; - - res = efp_get_gradient(efp, ccoords); - for (size_t ic = 0; ic < 6 * n_frag; ++ic) grad.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, grad); - return rets; -} - -py::tuple _efp_get_frag_count(efp* efp) { - enum efp_result res; - size_t n_frag = 0; - - res = efp_get_frag_count(efp, &n_frag); - - py::tuple rets = py::make_tuple(res, n_frag); - return rets; -} - -py::tuple _efp_get_frag_atom_count(efp* efp, size_t frag_idx) { - enum efp_result res; - size_t n_atom = 0; - - res = efp_get_frag_atom_count(efp, frag_idx, &n_atom); - - py::tuple rets = py::make_tuple(res, n_atom); - return rets; -} - -py::tuple _efp_get_periodic_box(efp* efp) { - enum efp_result res; - py::list xyz; - - size_t dim = 6; - double* ccoords = NULL; - ccoords = new double[dim]; - double* pcoords = ccoords; - - res = efp_get_periodic_box(efp, ccoords); - for (size_t ic = 0; ic < dim; ++ic) xyz.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, xyz); - return rets; -} - -py::tuple _efp_get_multipole_count(efp* efp) { - enum efp_result res; - size_t n_mult = 0; - - res = efp_get_multipole_count(efp, &n_mult); - - py::tuple rets = py::make_tuple(res, n_mult); - return rets; -} - -py::tuple _efp_get_multipole_coordinates(efp* efp, size_t n_mult) { - enum efp_result res; - py::list xyz; - - size_t dim = 3 * n_mult; - double* ccoords = NULL; - ccoords = new double[dim]; - double* pcoords = ccoords; - - res = efp_get_multipole_coordinates(efp, ccoords); - for (size_t ic = 0; ic < dim; ++ic) xyz.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, xyz); - return rets; -} - -py::tuple _efp_get_multipole_values(efp* efp, size_t n_mult) { - enum efp_result res; - py::list mult; - - size_t dim = (1 + 3 + 6 + 10) * n_mult; - double* ccoords = NULL; - ccoords = new double[dim]; - double* pcoords = ccoords; - - res = efp_get_multipole_values(efp, ccoords); - for (size_t ic = 0; ic < dim; ++ic) mult.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, mult); - return rets; -} - -py::tuple _efp_get_induced_dipole_count(efp* efp) { - enum efp_result res; - size_t n_dip = 0; - - res = efp_get_induced_dipole_count(efp, &n_dip); - - py::tuple rets = py::make_tuple(res, n_dip); - return rets; -} - -py::tuple _efp_get_induced_dipole_coordinates(efp* efp, size_t n_dip) { - enum efp_result res; - py::list xyz; - - size_t dim = 3 * n_dip; - double* ccoords = NULL; - ccoords = new double[dim]; - double* pcoords = ccoords; - - res = efp_get_induced_dipole_coordinates(efp, ccoords); - for (size_t ic = 0; ic < dim; ++ic) xyz.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, xyz); - return rets; -} - -py::tuple _efp_get_induced_dipole_values(efp* efp, size_t n_dip) { - enum efp_result res; - py::list vals; - - size_t dim = 3 * n_dip; - double* ccoords = NULL; - ccoords = new double[dim]; - double* pcoords = ccoords; - - res = efp_get_induced_dipole_values(efp, ccoords); - for (size_t ic = 0; ic < dim; ++ic) vals.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, vals); - return rets; -} - -py::tuple _efp_get_induced_dipole_conj_values(efp* efp, size_t n_dip) { - enum efp_result res; - py::list vals; - - size_t dim = 3 * n_dip; - double* ccoords = NULL; - ccoords = new double[dim]; - double* pcoords = ccoords; - - res = efp_get_induced_dipole_conj_values(efp, ccoords); - for (size_t ic = 0; ic < dim; ++ic) vals.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, vals); - return rets; -} - -py::tuple _efp_get_point_charge_count(efp* efp) { - enum efp_result res; - size_t n_ptc = 0; - - res = efp_get_point_charge_count(efp, &n_ptc); - - py::tuple rets = py::make_tuple(res, n_ptc); - return rets; -} - -py::tuple _efp_get_point_charge_coordinates(efp* efp, size_t n_ptc) { - enum efp_result res; - py::list xyz; - - size_t dim = 3 * n_ptc; - double* ccoords = NULL; - ccoords = new double[dim]; - double* pcoords = ccoords; - - res = efp_get_point_charge_coordinates(efp, ccoords); - for (size_t ic = 0; ic < dim; ++ic) xyz.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, xyz); - return rets; -} - -py::tuple _efp_get_point_charge_values(efp* efp, size_t n_ptc) { - enum efp_result res; - py::list vals; - - size_t dim = n_ptc; - double* ccoords = NULL; - ccoords = new double[dim]; - double* pcoords = ccoords; - - res = efp_get_point_charge_values(efp, ccoords); - for (size_t ic = 0; ic < dim; ++ic) vals.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, vals); - return rets; -} - -// TODO: probably filling would fail if res not good in a lot of these - -py::tuple _efp_get_frag_atoms(efp* efp, size_t frag_idx, size_t frag_natom) { - enum efp_result res; - struct efp_atom * atoms = new struct efp_atom[frag_natom]; - py::list ats_info; - - if ((res = efp_get_frag_atoms(efp, frag_idx, frag_natom, atoms))) { - py::tuple rets = py::make_tuple(res, ats_info); - return rets; - } - - for (size_t iat = 0; iat < frag_natom; ++iat) { - py::dict at_info; - at_info[py::str("Z")] = atoms[iat].znuc; - at_info[py::str("mass")] = atoms[iat].mass; - at_info[py::str("label")] = atoms[iat].label; - at_info[py::str("x")] = atoms[iat].x; - at_info[py::str("y")] = atoms[iat].y; - at_info[py::str("z")] = atoms[iat].z; - ats_info.append(at_info); - } - delete [] atoms; - - py::tuple rets = py::make_tuple(res, ats_info); - return rets; -} - -// py::dict extend_efp_get_atoms(efp* efp) { -// enum efp_result res; -// size_t frag_natom, natom=0; -// double frag_chg; -// int frag_mult; -// py::list fr, frt, frcg, frmp, full_atoms; -// -// py::dict mol_info; -// mol_info[py::str("units")] = "Bohr"; -// mol_info[py::str("input_units_to_au")] = 1.0; -// mol_info[py::str("fix_com")] = true; -// mol_info[py::str("fix_orientation")] = true; -// mol_info[py::str("fix_symmetry")] = "c1"; -// -// size_t frag_count = twrapped_efp_get_frag_count(efp); -// for (int ifr = 0; ifr < frag_count; ++ifr) { -// frag_natom = twrapped_efp_get_frag_atom_count(efp, ifr); -// py::list f; -// f.append(natom); -// natom = natom + frag_natom; -// f.append(natom); -// fr.append(f); -// frt.append("Real"); -// frcg.append(static_cast(wrapped_efp_get_frag_charge(efp, ifr))); -// frmp.append(wrapped_efp_get_frag_multiplicity(efp, ifr)); -// -// struct efp_atom atoms[frag_natom]; -// if ((res = efp_get_frag_atoms(efp, ifr, frag_natom, atoms))) { -// std::string sres = "efp_get_frag_atoms: " + rts(res) + "\n"; -// throw libefpException(sres.c_str()); -// } -// -// for (size_t iat = 0; iat < frag_natom; ++iat) { -// py::dict at_init; -// at_init[py::str("Z")] = atoms[iat].znuc; -// at_init[py::str("mass")] = atoms[iat].mass; -// at_init[py::str("label")] = atoms[iat].label; -// at_init[py::str("x")] = atoms[iat].x; -// at_init[py::str("y")] = atoms[iat].y; -// at_init[py::str("z")] = atoms[iat].z; -// full_atoms.append(at_init); -// } -// } -// -// mol_info[py::str("fragments")] = fr; -// mol_info[py::str("fragment_types")] = frt; -// mol_info[py::str("fragment_charges")] = frcg; -// mol_info[py::str("fragment_multiplicities")] = frmp; -// mol_info[py::str("full_atoms")] = full_atoms; -// -// return mol_info; -//} - -py::tuple _efp_get_coordinates(efp* efp, size_t n_frag) { - enum efp_result res; - py::list xyzabc; - - double* ccoords = NULL; - ccoords = new double[6 * n_frag]; - double* pcoords = ccoords; - - res = efp_get_coordinates(efp, pcoords); - for (size_t ic = 0; ic < 6 * n_frag; ++ic) xyzabc.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, xyzabc); - return rets; -} - -py::tuple _efp_get_frag_xyzabc(efp* efp, size_t frag_idx) { - enum efp_result res; - py::list xyzabc; - - double* ccoords = NULL; - ccoords = new double[6]; - double* pcoords = ccoords; - - res = efp_get_frag_xyzabc(efp, frag_idx, pcoords); - for (size_t ic = 0; ic < 6; ++ic) xyzabc.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, xyzabc); - return rets; -} - -py::tuple _efp_get_wavefunction_dependent_energy(efp* efp) { - enum efp_result res; - double ene; - - res = efp_get_wavefunction_dependent_energy(efp, &ene); - - py::tuple rets = py::make_tuple(res, ene); - return rets; -} - -// stash the python E_field fn here -py::function field_fn_callback; -py::function get_field_fn_callback(void) { return field_fn_callback; } - -efp_result cwrapped_field_fn(size_t n_pt, const double* xyz, double* field, void* user_data) { - // prepare xyz: double* --> py::list - py::list py_xyz; - for (size_t ic = 0; ic < 3 * n_pt; ++ic) py_xyz.append(xyz[ic]); - - py::function fn = get_field_fn_callback(); - py::list py_field = fn(py_xyz); - - // harvest field: py::list --> double* - double* field_p = field; - for (auto itm : py_field) *field_p++ = itm.cast(); - - return EFP_RESULT_SUCCESS; -} - -void _efp_set_electron_density_field_fn(efp* efp, py::function fn) { - field_fn_callback = fn; - efp_set_electron_density_field_fn(efp, cwrapped_field_fn); -} - -py::function dummy; -void _clear_electron_density_field_fn(efp* efp) { field_fn_callback = dummy; } - -void _clean(efp* efp) { - _clear_electron_density_field_fn(efp); - efp_shutdown(efp); -} - -// // py::list coord --> double* ccoords -// double* ccoords = NULL; -// ccoords = new double[12]; // room for xyzabc (6), points (9), or rotmat (12) -// double* pcoords = ccoords; -// for (auto itm : coord) -// *pcoords++ = itm.cast(); -// -// // double* coords --> py::list -// py::list coord; -// -// double* ccoords = NULL; -// ccoords = new double[12]; -// double* pcoords = ccoords; -// -// double* ccoords = new double[12]; // alt -// -// res = efp_get_multipole_coordinates(efp, ccoords); -// for (size_t ic = 0; ic < 12; ++ic) -// coord.append(ccoords[ic]); - -PYBIND11_MODULE(core, m) { - m.doc() = "Python wrapping of parallel implementation of the Effective Fragment Potential (EFP) method"; - - m.attr("__copyright__") = py::str("Copyright (c) 2017-2019 The Psi4 Developers"); - py::exception(m, "libefpException"); - - // clang-format off - py::enum_(m, "efp_result", "Result of a libefp operation") - .value("EFP_RESULT_SUCCESS", EFP_RESULT_SUCCESS, "Operation was successful.") - .value("EFP_RESULT_FATAL", EFP_RESULT_FATAL, "Fatal error has occurred.") - .value("EFP_RESULT_NO_MEMORY", EFP_RESULT_NO_MEMORY, "Insufficient memory.") - .value("EFP_RESULT_FILE_NOT_FOUND", EFP_RESULT_FILE_NOT_FOUND, "File not found.") - .value("EFP_RESULT_SYNTAX_ERROR", EFP_RESULT_SYNTAX_ERROR, "Syntax error.") - .value("EFP_RESULT_UNKNOWN_FRAGMENT", EFP_RESULT_UNKNOWN_FRAGMENT, "Unknown EFP fragment.") - .value("EFP_RESULT_POL_NOT_CONVERGED", EFP_RESULT_POL_NOT_CONVERGED, "Polarization SCF procedure did not converge.") - .export_values(); - - py::enum_(m, "efp_term", py::arithmetic(), "Flags to specify EFP energy terms") - .value("EFP_TERM_ELEC", EFP_TERM_ELEC, "EFP/EFP electrostatics.") - .value("EFP_TERM_POL", EFP_TERM_POL, "EFP/EFP polarization.") - .value("EFP_TERM_DISP", EFP_TERM_DISP, "EFP/EFP dispersion.") - .value("EFP_TERM_XR", EFP_TERM_XR, "EFP/EFP exchange repulsion.") - .value("EFP_TERM_CHTR", EFP_TERM_CHTR, "EFP/EFP charge transfer, reserved for future.") - .value("EFP_TERM_AI_ELEC", EFP_TERM_AI_ELEC, "Ab initio/EFP electrostatics.") - .value("EFP_TERM_AI_POL", EFP_TERM_AI_POL, "Ab initio/EFP polarization.") - .value("EFP_TERM_AI_DISP", EFP_TERM_AI_DISP, "Ab initio/EFP dispersion, reserved for future.") - .value("EFP_TERM_AI_XR", EFP_TERM_AI_XR, "Ab initio/EFP exchange repulsion, reserved for future.") - .value("EFP_TERM_AI_CHTR", EFP_TERM_AI_CHTR, "Ab initio/EFP charge transfer, reserved for future.") - .export_values(); - - py::enum_(m, "efp_disp_damp", "Fragment-fragment dispersion damping type") - .value("EFP_DISP_DAMP_OVERLAP", EFP_DISP_DAMP_OVERLAP, "Overlap-based damping (default).") - .value("EFP_DISP_DAMP_TT", EFP_DISP_DAMP_TT, "Tang-Toennies damping.") - .value("EFP_DISP_DAMP_OFF", EFP_DISP_DAMP_OFF, "No dispersion damping.") - .export_values(); - - py::enum_(m, "efp_elec_damp", "Fragment-fragment electrostatic damping type") - .value("EFP_ELEC_DAMP_SCREEN", EFP_ELEC_DAMP_SCREEN, "SCREEN-controlled damping (default).") - .value("EFP_ELEC_DAMP_OVERLAP", EFP_ELEC_DAMP_OVERLAP, "Overlap-based damping.") - .value("EFP_ELEC_DAMP_OFF", EFP_ELEC_DAMP_OFF, "No electrostatic damping.") - .export_values(); - - py::enum_(m, "efp_pol_damp", "Fragment-fragment polarization damping type") - .value("EFP_POL_DAMP_TT", EFP_POL_DAMP_TT, "Tang-Toennies like damping (default).") - .value("EFP_POL_DAMP_OFF", EFP_POL_DAMP_OFF, "No polarization damping.") - .export_values(); - - py::enum_(m, "efp_coord_type", "Describes the way fragment coordinates are specified") - .value("EFP_COORD_TYPE_XYZABC", EFP_COORD_TYPE_XYZABC, "Coordinates of center of mass of a fragment and Euler angles.") - .value("EFP_COORD_TYPE_POINTS", EFP_COORD_TYPE_POINTS, "Coordinates of three points belonging to a fragment.") - .value("EFP_COORD_TYPE_ROTMAT", EFP_COORD_TYPE_ROTMAT, "Coordinates of fragment center of mass and its rotation matrix.") - .export_values(); - - - py::enum_(m, "efp_pol_driver", "Driver used for solving polarization equations") - .value("EFP_POL_DRIVER_ITERATIVE", EFP_POL_DRIVER_ITERATIVE, "Iterative solution of polarization equations.") - .value("EFP_POL_DRIVER_DIRECT", EFP_POL_DRIVER_DIRECT, "Direct solution of polarization equations.") - .export_values(); - - py::class_(m, "efp_opts", "Options controlling EFP computation") - .def(py::init()) - .def_readwrite("terms", &efp_opts::terms, "Specifies which energy terms to compute.") - .def_readwrite("disp_damp", &efp_opts::disp_damp, "Dispersion damping type (see #efp_disp_damp).") - .def_readwrite("elec_damp", &efp_opts::elec_damp, "Electrostatic damping type (see #efp_elec_damp).") - .def_readwrite("pol_damp", &efp_opts::pol_damp, "Polarization damping type (see #efp_pol_damp).") - .def_readwrite("pol_driver", &efp_opts::pol_driver, "Driver used to find polarization induced dipoles.") - .def_readwrite("enable_pbc", &efp_opts::enable_pbc, "Enable periodic boundary conditions if nonzero.") - .def_readwrite("enable_cutoff", &efp_opts::enable_cutoff, "Enable frag-fraginteraction cutoff if nonzero.") - .def_readwrite("swf_cutoff", &efp_opts::swf_cutoff, "Cutoff distance for frag-frag interactions."); - - py::class_(m, "efp_energy", "EFP energy terms") - .def(py::init()) - .def_readwrite("electrostatic", &efp_energy::electrostatic, "EFP/EFP electrostatic energy.") - .def_readwrite("charge_penetration", &efp_energy::charge_penetration, "Charge penetration energy from" - "overlap-based electrostatic damping." - "Zero if overlap-based damping is turned" - "off.") - .def_readwrite("electrostatic_point_charges", &efp_energy::electrostatic_point_charges, - "Interaction energy of EFP electrostatics" - "with point charges.") - .def_readwrite("polarization", &efp_energy::polarization, "All polarization energy goes here." - "Polarization is computed self-consist-" - "ently so it can't be separated into" - "EFP/EFP and AI/EFP parts.") - .def_readwrite("dispersion", &efp_energy::dispersion, "EFP/EFP dispersion energy.") - .def_readwrite("ai_dispersion", &efp_energy::ai_dispersion, "AI/EFP dispersion energy.") - .def_readwrite("exchange_repulsion", &efp_energy::exchange_repulsion, "EFP/EFP exchange-repulsion energy.") - .def_readwrite("total", &efp_energy::total, "Sum of all the above energy terms."); - - py::class_(m, "efp_atom", "EFP atom info") - .def(py::init()) - //.def_readonly("label", &efp_atom::label, "Atom label.") // char label[32] - .def_readwrite("x", &efp_atom::x, "X coordinate of atom position.") - .def_readwrite("y", &efp_atom::y, "Y coordinate of atom position.") - .def_readwrite("z", &efp_atom::z, "Z coordinate of atom position.") - .def_readwrite("mass", &efp_atom::mass, "Atom mass.") - .def_readwrite("znuc", &efp_atom::znuc, "Nuclear charge."); - // clang-format on - - py::class_>(m, "efp", py::dynamic_attr(), "Main libefp opaque structure") - // dynamic_attr for stashing input_units_to_au - .def(py::init(&efp_create), "Creates a new efp object via `efp_create`") - .def("banner", &_efp_banner, "Gets a human readable banner string with information about the library") - .def("_efp_set_opts", &efp_set_opts, "Wrapped set computation options") - .def("_efp_get_opts", &efp_get_opts, "Gets currently set computation options") - .def("_efp_add_potential", &efp_add_potential, "Wrapped adds EFP potential from full file path") - .def("_efp_add_fragment", &efp_add_fragment, "Wrapped adds a new fragment to the EFP subsystem") - .def("_efp_prepare", &efp_prepare, "Wrapped prepares the calculation") - .def("set_electron_density_field_fn", &_efp_set_electron_density_field_fn, - "Sets the callback function which computes electric field from electrons in ab initio subsystem") - .def("clear_electron_density_field_fn", &_clear_electron_density_field_fn, - "Detaches callback function from EFP instance (necessary for destruction. Called by clean or call " - "alongside shutdown") - .def("_efp_set_point_charges", &_efp_set_point_charges, - "Wrapped setup arbitrary point charges of magnitude at locations interacting with EFP subsystem", - py::arg("n_ptc"), py::arg("ptc"), py::arg("xyz")) - .def("_efp_set_point_charge_coordinates", &_efp_set_point_charge_coordinates, - "Wrapped sets coordinates of arbitrary point charges interacting with EFP subsystem", - py::arg("n_ptc"), py::arg("xyz")) - .def("_efp_set_point_charge_values", &_efp_set_point_charge_values, - "Wrapped sets magnitudes of arbitrary point charges interacting with EFP subsystem") - .def("_efp_get_point_charge_count", &_efp_get_point_charge_count, - "Gets the number of currently set point charges") - .def("_efp_get_point_charge_coordinates", &_efp_get_point_charge_coordinates, - "Wrapped gets coordinates of currently set point charges", - py::arg("n_ptc")) - .def("_efp_get_point_charge_values", &_efp_get_point_charge_values, - "Wrapped gets values of currently set point charges") - .def("get_point_charge_gradient", &efp_get_point_charge_gradient, - "Gets gradient on point charges from EFP subsystem and returns them in *arg1*") - .def("_efp_set_frag_coordinates", &_efp_set_frag_coordinates, - "Wrapped updates position and orientation of the specified effective fragment with type", - py::arg("frag_idx"), py::arg("ctype"), py::arg("coord")) - .def("_efp_get_coordinates", &_efp_get_coordinates, - py::arg("n_frag"), - "Wrapped gets center of mass positions and Euler angles of the effective fragments") - .def("_efp_get_frag_xyzabc", &_efp_get_frag_xyzabc, py::arg("frag_idx"), - "Wrapped gets center of mass position and Euler angles on fragment ``frag_idx``") - .def("_efp_set_periodic_box", &efp_set_periodic_box, "Wrapped sets up periodic box size") - .def("_efp_get_periodic_box", &_efp_get_periodic_box, "Wrapped gets periodic box size") - .def("_efp_get_wavefunction_dependent_energy", &_efp_get_wavefunction_dependent_energy, - "Wrapped updates wavefunction-dependent energy terms") - .def("_efp_compute", &efp_compute, py::arg("do_gradient") = false, - "Perform the EFP computation, optionally doing gradient") - .def("_efp_get_frag_charge", &_efp_get_frag_charge, "Gets total charge on fragment", py::arg("frag_idx")) - .def("_efp_get_frag_multiplicity", &_efp_get_frag_multiplicity, "Gets spin multiplicity on fragment") - // Multipoles & Induced Dipoles - .def("_efp_get_multipole_count", &_efp_get_multipole_count, - "Wrapped gets total number of multipoles from EFP electrostatics") - .def("_efp_get_multipole_coordinates", &_efp_get_multipole_coordinates, - "Wrapped gets coordinates of electrostatics multipoles") - .def("_efp_get_multipole_values", &_efp_get_multipole_values, - "Wrapped gets electrostatics multipoles from EFP fragments") - .def("_efp_get_induced_dipole_count", &_efp_get_induced_dipole_count, - "Wrapped gets the number of polarization induced dipoles") - .def("_efp_get_induced_dipole_coordinates", &_efp_get_induced_dipole_coordinates, - "Wrapped gets coordinates of induced dipoles") - .def("_efp_get_induced_dipole_values", &_efp_get_induced_dipole_values, - "Wrapped gets values of polarization induced dipoles") - .def("_efp_get_induced_dipole_conj_values", &_efp_get_induced_dipole_conj_values, - "Wrapped gets values of polarization conjugated induced dipoles") - .def("_efp_get_energy", &efp_get_energy, "Gets computed energy components") - .def("_efp_get_gradient", &_efp_get_gradient, "Gets computed EFP energy gradient") - .def("_efp_get_frag_count", &_efp_get_frag_count, "Gets the number of fragments in this computation") - .def("_efp_get_frag_name", &_efp_get_frag_name, "Gets the name of the specified effective fragment") - .def("_efp_get_frag_atom_count", &_efp_get_frag_atom_count, "Gets the number of atoms on fragment") - .def("_efp_get_frag_atoms", &_efp_get_frag_atoms, - "Wrapped get atoms comprising the specified 0-indexed fragment, ``frag_idx``", - py::arg("frag_idx"), py::arg("frag_natom")) - .def("get_electric_field", &efp_get_electric_field, - "Gets electric field for a point on 0-indexed fragment *arg0* and returns it in *arg1*") - .def("torque_to_derivative", &efp_torque_to_derivative, - "Convert rigid body torque *arg1* to derivatives *arg2* of energy by Euler angles *arg0*") - .def("clean", &_clean, "Preferred destructor combining libefp::efp_shutdown and field_fn release") - .def("shutdown", &efp_shutdown, "Release all resources used by this EFP"); -} - -// Unwrapped -// * efp_print_banner -// * efp_set_electron_density_field_user_data # what is this? -// * result_to_string - -// clang-format off -// .def("set_error_log", &efp_set_error_log, "Sets the error log callback function") -// .def("skip_fragments", &efp_skip_fragments, "Skip interactions between the fragments *arg0* and *arg1* inclusive if *arg2*") -// .def("set_coordinates", &efp_set_coordinates, "Update positions and orientations of all fragments with types in array *arg0* and returns them in *arg1*") -// .def("get_stress_tensor", &efp_get_stress_tensor, "Gets the stress tensor and returns it in *arg0*") -// .def("get_ai_screen", &efp_get_ai_screen, "Gets the ab initio screening parameters on 0-indexed fragment *arg0* and returns it in *arg1*") -// .def("set_orbital_energies", &efp_set_orbital_energies, "Sets ab initio orbital energies to *efp0* number core orbitals, *efp1* number active orbitals, *efp2* number virtual orbitals, *efp3* array of orbital energies") -// .def("set_dipole_integrals", &efp_set_dipole_integrals, "Sets ab initio dipole integrals to *efp0* number core orbitals, *efp1* number active orbitals, *efp2* number virtual orbitals, *efp3* dipole integral matrices") -// .def("get_frag_multipole_count", &efp_get_frag_multipole_count, "Gets number of electrostatic multipole points on 0-indexed fragment *arg0* and returns it in *arg1*") -// .def("get_lmo_count", &efp_get_lmo_count, "Gets the number of LMOs in a fragment and returns it in *arg0*") -// .def("get_lmo_coordinates", &efp_get_lmo_coordinates, "Gets coordinates of LMO centroids on 0-indexed fragment *arg0* and returns it in *arg1*") -// .def("get_xrfit", &efp_get_xrfit, "Gets parameters of fitted exchange-repulsion on 0-indexed fragment *arg0* and returns it in *arg1*") -// .def("get_atomic_gradient", &efp_get_atomic_gradient, "Gets computed EFP energy gradient on individual atoms and returns it in *arg0*") -// .def("get_frag_mass", &efp_get_frag_mass, "Gets total mass on 0-indexed fragment *arg0* and returns it in *arg1*") -// .def("get_frag_inertia", &efp_get_frag_inertia, "Gets fragment principal moments of inertia on 0-indexed fragment *arg0* and returns it in *arg1*") -// clang-format on diff --git a/python/up_core.cc b/python/up_core.cc deleted file mode 100644 index 2a42088d..00000000 --- a/python/up_core.cc +++ /dev/null @@ -1,704 +0,0 @@ -/* - pylibefp/core.cc: Main binding of libefp with pybind11 - - Copyright (c) 2017-2019 The Psi4 Developers - - All rights reserved. Use of this source code is governed by a - BSD-style license that can be found in the LICENSE file. -*/ - -#include -#if __has_include() -#include -#else -#include "private.h" -#endif - -#include - -#include -#include - -namespace py = pybind11; - -class libefpException : public std::exception { - public: - explicit libefpException(const char* m) : message{m} {} - virtual const char* what() const noexcept override { return message.c_str(); } - - private: - std::string message = ""; -}; - -std::string _efp_banner(efp* efp) { - std::string str; - str = std::string(efp_banner()); - return str; -} - -py::tuple _efp_get_frag_name(efp* efp, size_t frag_idx) { - enum efp_result res; - char buffer[80]; - - res = efp_get_frag_name(efp, frag_idx, 80, buffer); - std::string fname = std::string(buffer); - - py::tuple rets = py::make_tuple(res, fname); - return rets; -} - -efp_result _efp_set_frag_coordinates(efp* efp, size_t frag_idx, efp_coord_type ctype, py::list coord) { - enum efp_result res; - - double* ccoords = NULL; - ccoords = new double[12]; // room for xyzabc (6), points (9), or rotmat (12) - double* pcoords = ccoords; - for (auto itm : coord) *pcoords++ = itm.cast(); - - res = efp_set_frag_coordinates(efp, frag_idx, ctype, ccoords); - return res; -} - -efp_result _efp_set_point_charge_values(efp* efp, size_t n_ptc, py::list ptc) { - enum efp_result res; - - double* cptc = NULL; - cptc = new double[n_ptc]; - double* pptc = cptc; - for (auto itm : ptc) *pptc++ = itm.cast(); - - res = efp_set_point_charge_values(efp, cptc); - return res; -} - -efp_result _efp_set_point_charge_coordinates(efp* efp, size_t n_ptc, py::list xyz) { - enum efp_result res; - - double* cxyz = NULL; - cxyz = new double[3 * n_ptc]; - double* pxyz = cxyz; - for (auto itm : xyz) *pxyz++ = itm.cast(); - - res = efp_set_point_charge_coordinates(efp, cxyz); - return res; -} - -efp_result _efp_set_point_charges(efp* efp, size_t n_ptc, py::list ptc, py::list xyz) { - enum efp_result res; - - double* cptc = NULL; - cptc = new double[n_ptc]; - double* pptc = cptc; - for (auto itm : ptc) *pptc++ = itm.cast(); - - double* cxyz = NULL; - cxyz = new double[3 * n_ptc]; - double* pxyz = cxyz; - for (auto itm : xyz) *pxyz++ = itm.cast(); - - res = efp_set_point_charges(efp, n_ptc, cptc, cxyz); - return res; -} - -py::tuple _efp_get_frag_charge(efp* efp, size_t frag_idx) { - enum efp_result res; - double charge = 0.0; - - res = efp_get_frag_charge(efp, frag_idx, &charge); - - py::tuple rets = py::make_tuple(res, charge); - return rets; -} - -py::tuple _efp_get_frag_multiplicity(efp* efp, size_t frag_idx) { - enum efp_result res; - int multiplicity = 0; - - res = efp_get_frag_multiplicity(efp, frag_idx, &multiplicity); - - py::tuple rets = py::make_tuple(res, multiplicity); - return rets; -} - -py::tuple _efp_get_gradient(efp* efp, size_t n_frag) { - enum efp_result res; - py::list grad; - - double* ccoords = NULL; - ccoords = new double[6 * n_frag]; - double* pcoords = ccoords; - - res = efp_get_gradient(efp, ccoords); - for (size_t ic = 0; ic < 6 * n_frag; ++ic) grad.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, grad); - return rets; -} - -py::tuple _efp_get_frag_count(efp* efp) { - enum efp_result res; - size_t n_frag = 0; - - res = efp_get_frag_count(efp, &n_frag); - - py::tuple rets = py::make_tuple(res, n_frag); - return rets; -} - -py::tuple _efp_get_frag_atom_count(efp* efp, size_t frag_idx) { - enum efp_result res; - size_t n_atom = 0; - - res = efp_get_frag_atom_count(efp, frag_idx, &n_atom); - - py::tuple rets = py::make_tuple(res, n_atom); - return rets; -} - -py::tuple _efp_get_periodic_box(efp* efp) { - enum efp_result res; - py::list xyz; - - size_t dim = 6; - double* ccoords = NULL; - ccoords = new double[dim]; - double* pcoords = ccoords; - - res = efp_get_periodic_box(efp, ccoords); - for (size_t ic = 0; ic < dim; ++ic) xyz.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, xyz); - return rets; -} - -py::tuple _efp_get_multipole_count(efp* efp) { - enum efp_result res; - size_t n_mult = 0; - - res = efp_get_multipole_count(efp, &n_mult); - - py::tuple rets = py::make_tuple(res, n_mult); - return rets; -} - -py::tuple _efp_get_multipole_coordinates(efp* efp, size_t n_mult) { - enum efp_result res; - py::list xyz; - - size_t dim = 3 * n_mult; - double* ccoords = NULL; - ccoords = new double[dim]; - double* pcoords = ccoords; - - res = efp_get_multipole_coordinates(efp, ccoords); - for (size_t ic = 0; ic < dim; ++ic) xyz.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, xyz); - return rets; -} - -py::tuple _efp_get_multipole_values(efp* efp, size_t n_mult) { - enum efp_result res; - py::list mult; - - size_t dim = (1 + 3 + 6 + 10) * n_mult; - double* ccoords = NULL; - ccoords = new double[dim]; - double* pcoords = ccoords; - - res = efp_get_multipole_values(efp, ccoords); - for (size_t ic = 0; ic < dim; ++ic) mult.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, mult); - return rets; -} - -py::tuple _efp_get_induced_dipole_count(efp* efp) { - enum efp_result res; - size_t n_dip = 0; - - res = efp_get_induced_dipole_count(efp, &n_dip); - - py::tuple rets = py::make_tuple(res, n_dip); - return rets; -} - -py::tuple _efp_get_induced_dipole_coordinates(efp* efp, size_t n_dip) { - enum efp_result res; - py::list xyz; - - size_t dim = 3 * n_dip; - double* ccoords = NULL; - ccoords = new double[dim]; - double* pcoords = ccoords; - - res = efp_get_induced_dipole_coordinates(efp, ccoords); - for (size_t ic = 0; ic < dim; ++ic) xyz.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, xyz); - return rets; -} - -py::tuple _efp_get_induced_dipole_values(efp* efp, size_t n_dip) { - enum efp_result res; - py::list vals; - - size_t dim = 3 * n_dip; - double* ccoords = NULL; - ccoords = new double[dim]; - double* pcoords = ccoords; - - res = efp_get_induced_dipole_values(efp, ccoords); - for (size_t ic = 0; ic < dim; ++ic) vals.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, vals); - return rets; -} - -py::tuple _efp_get_induced_dipole_conj_values(efp* efp, size_t n_dip) { - enum efp_result res; - py::list vals; - - size_t dim = 3 * n_dip; - double* ccoords = NULL; - ccoords = new double[dim]; - double* pcoords = ccoords; - - res = efp_get_induced_dipole_conj_values(efp, ccoords); - for (size_t ic = 0; ic < dim; ++ic) vals.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, vals); - return rets; -} - -py::tuple _efp_get_point_charge_count(efp* efp) { - enum efp_result res; - size_t n_ptc = 0; - - res = efp_get_point_charge_count(efp, &n_ptc); - - py::tuple rets = py::make_tuple(res, n_ptc); - return rets; -} - -py::tuple _efp_get_point_charge_coordinates(efp* efp, size_t n_ptc) { - enum efp_result res; - py::list xyz; - - size_t dim = 3 * n_ptc; - double* ccoords = NULL; - ccoords = new double[dim]; - double* pcoords = ccoords; - - res = efp_get_point_charge_coordinates(efp, ccoords); - for (size_t ic = 0; ic < dim; ++ic) xyz.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, xyz); - return rets; -} - -py::tuple _efp_get_point_charge_values(efp* efp, size_t n_ptc) { - enum efp_result res; - py::list vals; - - size_t dim = n_ptc; - double* ccoords = NULL; - ccoords = new double[dim]; - double* pcoords = ccoords; - - res = efp_get_point_charge_values(efp, ccoords); - for (size_t ic = 0; ic < dim; ++ic) vals.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, vals); - return rets; -} - -// TODO: probably filling would fail if res not good in a lot of these - -py::tuple _efp_get_frag_atoms(efp* efp, size_t frag_idx, size_t frag_natom) { - enum efp_result res; - struct efp_atom * atoms = new struct efp_atom[frag_natom]; - py::list ats_info; - - if ((res = efp_get_frag_atoms(efp, frag_idx, frag_natom, atoms))) { - py::tuple rets = py::make_tuple(res, ats_info); - return rets; - } - - for (size_t iat = 0; iat < frag_natom; ++iat) { - py::dict at_info; - at_info[py::str("Z")] = atoms[iat].znuc; - at_info[py::str("mass")] = atoms[iat].mass; - at_info[py::str("label")] = atoms[iat].label; - at_info[py::str("x")] = atoms[iat].x; - at_info[py::str("y")] = atoms[iat].y; - at_info[py::str("z")] = atoms[iat].z; - ats_info.append(at_info); - } - delete [] atoms; - - py::tuple rets = py::make_tuple(res, ats_info); - return rets; -} - -// py::dict extend_efp_get_atoms(efp* efp) { -// enum efp_result res; -// size_t frag_natom, natom=0; -// double frag_chg; -// int frag_mult; -// py::list fr, frt, frcg, frmp, full_atoms; -// -// py::dict mol_info; -// mol_info[py::str("units")] = "Bohr"; -// mol_info[py::str("input_units_to_au")] = 1.0; -// mol_info[py::str("fix_com")] = true; -// mol_info[py::str("fix_orientation")] = true; -// mol_info[py::str("fix_symmetry")] = "c1"; -// -// size_t frag_count = twrapped_efp_get_frag_count(efp); -// for (int ifr = 0; ifr < frag_count; ++ifr) { -// frag_natom = twrapped_efp_get_frag_atom_count(efp, ifr); -// py::list f; -// f.append(natom); -// natom = natom + frag_natom; -// f.append(natom); -// fr.append(f); -// frt.append("Real"); -// frcg.append(static_cast(wrapped_efp_get_frag_charge(efp, ifr))); -// frmp.append(wrapped_efp_get_frag_multiplicity(efp, ifr)); -// -// struct efp_atom atoms[frag_natom]; -// if ((res = efp_get_frag_atoms(efp, ifr, frag_natom, atoms))) { -// std::string sres = "efp_get_frag_atoms: " + rts(res) + "\n"; -// throw libefpException(sres.c_str()); -// } -// -// for (size_t iat = 0; iat < frag_natom; ++iat) { -// py::dict at_init; -// at_init[py::str("Z")] = atoms[iat].znuc; -// at_init[py::str("mass")] = atoms[iat].mass; -// at_init[py::str("label")] = atoms[iat].label; -// at_init[py::str("x")] = atoms[iat].x; -// at_init[py::str("y")] = atoms[iat].y; -// at_init[py::str("z")] = atoms[iat].z; -// full_atoms.append(at_init); -// } -// } -// -// mol_info[py::str("fragments")] = fr; -// mol_info[py::str("fragment_types")] = frt; -// mol_info[py::str("fragment_charges")] = frcg; -// mol_info[py::str("fragment_multiplicities")] = frmp; -// mol_info[py::str("full_atoms")] = full_atoms; -// -// return mol_info; -//} - -py::tuple _efp_get_coordinates(efp* efp, size_t n_frag) { - enum efp_result res; - py::list xyzabc; - - double* ccoords = NULL; - ccoords = new double[6 * n_frag]; - double* pcoords = ccoords; - - res = efp_get_coordinates(efp, pcoords); - for (size_t ic = 0; ic < 6 * n_frag; ++ic) xyzabc.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, xyzabc); - return rets; -} - -py::tuple _efp_get_frag_xyzabc(efp* efp, size_t frag_idx) { - enum efp_result res; - py::list xyzabc; - - double* ccoords = NULL; - ccoords = new double[6]; - double* pcoords = ccoords; - - res = efp_get_frag_xyzabc(efp, frag_idx, pcoords); - for (size_t ic = 0; ic < 6; ++ic) xyzabc.append(ccoords[ic]); - - py::tuple rets = py::make_tuple(res, xyzabc); - return rets; -} - -py::tuple _efp_get_wavefunction_dependent_energy(efp* efp) { - enum efp_result res; - double ene; - - res = efp_get_wavefunction_dependent_energy(efp, &ene); - - py::tuple rets = py::make_tuple(res, ene); - return rets; -} - -// stash the python E_field fn here -py::function field_fn_callback; -py::function get_field_fn_callback(void) { return field_fn_callback; } - -efp_result cwrapped_field_fn(size_t n_pt, const double* xyz, double* field, void* user_data) { - // prepare xyz: double* --> py::list - py::list py_xyz; - for (size_t ic = 0; ic < 3 * n_pt; ++ic) py_xyz.append(xyz[ic]); - - py::function fn = get_field_fn_callback(); - py::list py_field = fn(py_xyz); - - // harvest field: py::list --> double* - double* field_p = field; - for (auto itm : py_field) *field_p++ = itm.cast(); - - return EFP_RESULT_SUCCESS; -} - -void _efp_set_electron_density_field_fn(efp* efp, py::function fn) { - field_fn_callback = fn; - efp_set_electron_density_field_fn(efp, cwrapped_field_fn); -} - -py::function dummy; -void _clear_electron_density_field_fn(efp* efp) { field_fn_callback = dummy; } - -void _clean(efp* efp) { - _clear_electron_density_field_fn(efp); - efp_shutdown(efp); -} - -// // py::list coord --> double* ccoords -// double* ccoords = NULL; -// ccoords = new double[12]; // room for xyzabc (6), points (9), or rotmat (12) -// double* pcoords = ccoords; -// for (auto itm : coord) -// *pcoords++ = itm.cast(); -// -// // double* coords --> py::list -// py::list coord; -// -// double* ccoords = NULL; -// ccoords = new double[12]; -// double* pcoords = ccoords; -// -// double* ccoords = new double[12]; // alt -// -// res = efp_get_multipole_coordinates(efp, ccoords); -// for (size_t ic = 0; ic < 12; ++ic) -// coord.append(ccoords[ic]); - -PYBIND11_MODULE(core, m) { - m.doc() = "Python wrapping of parallel implementation of the Effective Fragment Potential (EFP) method"; - - m.attr("__copyright__") = py::str("Copyright (c) 2017-2019 The Psi4 Developers"); - py::exception(m, "libefpException"); - - // clang-format off - py::enum_(m, "efp_result", "Result of a libefp operation") - .value("EFP_RESULT_SUCCESS", EFP_RESULT_SUCCESS, "Operation was successful.") - .value("EFP_RESULT_FATAL", EFP_RESULT_FATAL, "Fatal error has occurred.") - .value("EFP_RESULT_NO_MEMORY", EFP_RESULT_NO_MEMORY, "Insufficient memory.") - .value("EFP_RESULT_FILE_NOT_FOUND", EFP_RESULT_FILE_NOT_FOUND, "File not found.") - .value("EFP_RESULT_SYNTAX_ERROR", EFP_RESULT_SYNTAX_ERROR, "Syntax error.") - .value("EFP_RESULT_UNKNOWN_FRAGMENT", EFP_RESULT_UNKNOWN_FRAGMENT, "Unknown EFP fragment.") - .value("EFP_RESULT_POL_NOT_CONVERGED", EFP_RESULT_POL_NOT_CONVERGED, "Polarization SCF procedure did not converge.") - .export_values(); - - py::enum_(m, "efp_term", py::arithmetic(), "Flags to specify EFP energy terms") - .value("EFP_TERM_ELEC", EFP_TERM_ELEC, "EFP/EFP electrostatics.") - .value("EFP_TERM_POL", EFP_TERM_POL, "EFP/EFP polarization.") - .value("EFP_TERM_DISP", EFP_TERM_DISP, "EFP/EFP dispersion.") - .value("EFP_TERM_XR", EFP_TERM_XR, "EFP/EFP exchange repulsion.") - .value("EFP_TERM_CHTR", EFP_TERM_CHTR, "EFP/EFP charge transfer, reserved for future.") - .value("EFP_TERM_AI_ELEC", EFP_TERM_AI_ELEC, "Ab initio/EFP electrostatics.") - .value("EFP_TERM_AI_POL", EFP_TERM_AI_POL, "Ab initio/EFP polarization.") - .value("EFP_TERM_AI_DISP", EFP_TERM_AI_DISP, "Ab initio/EFP dispersion, reserved for future.") - .value("EFP_TERM_AI_XR", EFP_TERM_AI_XR, "Ab initio/EFP exchange repulsion, reserved for future.") - .value("EFP_TERM_AI_CHTR", EFP_TERM_AI_CHTR, "Ab initio/EFP charge transfer, reserved for future.") - .value("EFP_TERM_QQ", EFP_TERM_QQ, "MM-like charge-charge coulomb interaction") // SKP - .value("EFP_TERM_LJ", EFP_TERM_LJ, "MM-like Lennard-Jones interaction") // SKP - .value("EFP_TERM_AI_QQ", EFP_TERM_AI_QQ, "QM/MM coulomb interaction with MM charges") // SKP - .export_values(); -// ============= SKP addition ========================== // - py::enum_(m, "efp_special_term", py::arithmetic(), "Flags to specify EFP energy terms for a special fragment") - .value("EFP_SPEC_TERM_ELEC", EFP_SPEC_TERM_ELEC, "EFP/EFP electrostatics.") - .value("EFP_SPEC_TERM_POL", EFP_SPEC_TERM_POL, "EFP/EFP polarization.") - .value("EFP_SPEC_TERM_DISP", EFP_SPEC_TERM_DISP, "EFP/EFP dispersion.") - .value("EFP_SPEC_TERM_XR", EFP_SPEC_TERM_XR, "EFP/EFP exchange repulsion.") - .value("EFP_SPEC_TERM_CHTR", EFP_SPEC_TERM_CHTR, "EFP/EFP charge transfer, reserved for future.") - .value("EFP_SPEC_TERM_QQ", EFP_SPEC_TERM_QQ, "MM-like charge-charge coulomb interaction") - .value("EFP_SPEC_TERM_LJ", EFP_SPEC_TERM_LJ, "MM-like Lennard-Jones interaction") - .export_values(); -//====================================================== // - py::enum_(m, "efp_disp_damp", "Fragment-fragment dispersion damping type") - .value("EFP_DISP_DAMP_OVERLAP", EFP_DISP_DAMP_OVERLAP, "Overlap-based damping (default).") - .value("EFP_DISP_DAMP_TT", EFP_DISP_DAMP_TT, "Tang-Toennies damping.") - .value("EFP_DISP_DAMP_OFF", EFP_DISP_DAMP_OFF, "No dispersion damping.") - .export_values(); - - py::enum_(m, "efp_elec_damp", "Fragment-fragment electrostatic damping type") - .value("EFP_ELEC_DAMP_SCREEN", EFP_ELEC_DAMP_SCREEN, "SCREEN-controlled damping (default).") - .value("EFP_ELEC_DAMP_OVERLAP", EFP_ELEC_DAMP_OVERLAP, "Overlap-based damping.") - .value("EFP_ELEC_DAMP_OFF", EFP_ELEC_DAMP_OFF, "No electrostatic damping.") - .export_values(); - - py::enum_(m, "efp_pol_damp", "Fragment-fragment polarization damping type") - .value("EFP_POL_DAMP_TT", EFP_POL_DAMP_TT, "Tang-Toennies like damping (default).") - .value("EFP_POL_DAMP_OFF", EFP_POL_DAMP_OFF, "No polarization damping.") - .export_values(); - - py::enum_(m, "efp_coord_type", "Describes the way fragment coordinates are specified") - .value("EFP_COORD_TYPE_XYZABC", EFP_COORD_TYPE_XYZABC, "Coordinates of center of mass of a fragment and Euler angles.") - .value("EFP_COORD_TYPE_POINTS", EFP_COORD_TYPE_POINTS, "Coordinates of three points belonging to a fragment.") - .value("EFP_COORD_TYPE_ROTMAT", EFP_COORD_TYPE_ROTMAT, "Coordinates of fragment center of mass and its rotation matrix.") - .export_values(); - - - py::enum_(m, "efp_pol_driver", "Driver used for solving polarization equations") - .value("EFP_POL_DRIVER_ITERATIVE", EFP_POL_DRIVER_ITERATIVE, "Iterative solution of polarization equations.") - .value("EFP_POL_DRIVER_DIRECT", EFP_POL_DRIVER_DIRECT, "Direct solution of polarization equations.") - .export_values(); - - py::class_(m, "efp_opts", "Options controlling EFP computation") - .def(py::init()) - .def_readwrite("terms", &efp_opts::terms, "Specifies which energy terms to compute.") - .def_readwrite("disp_damp", &efp_opts::disp_damp, "Dispersion damping type (see #efp_disp_damp).") - .def_readwrite("elec_damp", &efp_opts::elec_damp, "Electrostatic damping type (see #efp_elec_damp).") - .def_readwrite("pol_damp", &efp_opts::pol_damp, "Polarization damping type (see #efp_pol_damp).") - .def_readwrite("pol_driver", &efp_opts::pol_driver, "Driver used to find polarization induced dipoles.") - .def_readwrite("enable_pbc", &efp_opts::enable_pbc, "Enable periodic boundary conditions if nonzero.") - .def_readwrite("enable_cutoff", &efp_opts::enable_cutoff, "Enable frag-fraginteraction cutoff if nonzero.") - .def_readwrite("swf_cutoff", &efp_opts::swf_cutoff, "Cutoff distance for frag-frag interactions.") - .def_readwrite("special_terms", &efp_opts::special_terms, "Terms for a special fragment - typically QM or ML fragment") // SKP - .def_readwrite("enable_pairwise", &efp_opts::enable_pairwise, "Enable ligand-fragment energy decomposition from total system") // SKP - .def_readwrite("ligand", &efp_opts::ligand, "Ligand number") // SKP - .def_readwrite("special_fragment", &efp_opts::special_fragment, "Index of a special (QM or ML) fragment"); // SKP - - py::class_(m, "efp_energy", "EFP energy terms") - .def(py::init()) - .def_readwrite("electrostatic", &efp_energy::electrostatic, "EFP/EFP electrostatic energy.") - .def_readwrite("charge_penetration", &efp_energy::charge_penetration, "Charge penetration energy from" - "overlap-based electrostatic damping." - "Zero if overlap-based damping is turned" - "off.") - .def_readwrite("electrostatic_point_charges", &efp_energy::electrostatic_point_charges, - "Interaction energy of EFP electrostatics" - "with point charges.") - .def_readwrite("polarization", &efp_energy::polarization, "All polarization energy goes here." - "Polarization is computed self-consist-" - "ently so it can't be separated into" - "EFP/EFP and AI/EFP parts.") - .def_readwrite("dispersion", &efp_energy::dispersion, "EFP/EFP dispersion energy.") - .def_readwrite("ai_dispersion", &efp_energy::ai_dispersion, "AI/EFP dispersion energy.") - .def_readwrite("exchange_repulsion", &efp_energy::exchange_repulsion, "EFP/EFP exchange-repulsion energy.") - .def_readwrite("qq", &efp_energy::qq, "EFP/EFP charge-charge energy.") - .def_readwrite("total", &efp_energy::total, "Sum of all the above energy terms."); - - py::class_(m, "efp_atom", "EFP atom info") - .def(py::init()) - //.def_readonly("label", &efp_atom::label, "Atom label.") // char label[32] - .def_readwrite("x", &efp_atom::x, "X coordinate of atom position.") - .def_readwrite("y", &efp_atom::y, "Y coordinate of atom position.") - .def_readwrite("z", &efp_atom::z, "Z coordinate of atom position.") - .def_readwrite("mass", &efp_atom::mass, "Atom mass.") - .def_readwrite("znuc", &efp_atom::znuc, "Nuclear charge."); - // clang-format on - - py::class_>(m, "efp", py::dynamic_attr(), "Main libefp opaque structure") - // dynamic_attr for stashing input_units_to_au - .def(py::init(&efp_create), "Creates a new efp object via `efp_create`") - .def("banner", &_efp_banner, "Gets a human readable banner string with information about the library") - .def("_efp_set_opts", &efp_set_opts, "Wrapped set computation options") - .def("_efp_get_opts", &efp_get_opts, "Gets currently set computation options") - .def("_efp_add_potential", &efp_add_potential, "Wrapped adds EFP potential from full file path") - .def("_efp_add_fragment", &efp_add_fragment, "Wrapped adds a new fragment to the EFP subsystem") - .def("_efp_prepare", &efp_prepare, "Wrapped prepares the calculation") - .def("set_electron_density_field_fn", &_efp_set_electron_density_field_fn, - "Sets the callback function which computes electric field from electrons in ab initio subsystem") - .def("clear_electron_density_field_fn", &_clear_electron_density_field_fn, - "Detaches callback function from EFP instance (necessary for destruction. Called by clean or call " - "alongside shutdown") - .def("_efp_set_point_charges", &_efp_set_point_charges, - "Wrapped setup arbitrary point charges of magnitude at locations interacting with EFP subsystem", - py::arg("n_ptc"), py::arg("ptc"), py::arg("xyz")) - .def("_efp_set_point_charge_coordinates", &_efp_set_point_charge_coordinates, - "Wrapped sets coordinates of arbitrary point charges interacting with EFP subsystem", - py::arg("n_ptc"), py::arg("xyz")) - .def("_efp_set_point_charge_values", &_efp_set_point_charge_values, - "Wrapped sets magnitudes of arbitrary point charges interacting with EFP subsystem") - .def("_efp_get_point_charge_count", &_efp_get_point_charge_count, - "Gets the number of currently set point charges") - .def("_efp_get_point_charge_coordinates", &_efp_get_point_charge_coordinates, - "Wrapped gets coordinates of currently set point charges", - py::arg("n_ptc")) - .def("_efp_get_point_charge_values", &_efp_get_point_charge_values, - "Wrapped gets values of currently set point charges") - .def("get_point_charge_gradient", &efp_get_point_charge_gradient, - "Gets gradient on point charges from EFP subsystem and returns them in *arg1*") - .def("_efp_set_frag_coordinates", &_efp_set_frag_coordinates, - "Wrapped updates position and orientation of the specified effective fragment with type", - py::arg("frag_idx"), py::arg("ctype"), py::arg("coord")) - .def("_efp_get_coordinates", &_efp_get_coordinates, - py::arg("n_frag"), - "Wrapped gets center of mass positions and Euler angles of the effective fragments") - .def("_efp_get_frag_xyzabc", &_efp_get_frag_xyzabc, py::arg("frag_idx"), - "Wrapped gets center of mass position and Euler angles on fragment ``frag_idx``") - .def("_efp_set_periodic_box", &efp_set_periodic_box, "Wrapped sets up periodic box size") - .def("_efp_get_periodic_box", &_efp_get_periodic_box, "Wrapped gets periodic box size") - .def("_efp_get_wavefunction_dependent_energy", &_efp_get_wavefunction_dependent_energy, - "Wrapped updates wavefunction-dependent energy terms") - .def("_efp_compute", &efp_compute, py::arg("do_gradient") = false, - "Perform the EFP computation, optionally doing gradient") - .def("_efp_get_frag_charge", &_efp_get_frag_charge, "Gets total charge on fragment", py::arg("frag_idx")) - .def("_efp_get_frag_multiplicity", &_efp_get_frag_multiplicity, "Gets spin multiplicity on fragment") - // Multipoles & Induced Dipoles - .def("_efp_get_multipole_count", &_efp_get_multipole_count, - "Wrapped gets total number of multipoles from EFP electrostatics") - .def("_efp_get_multipole_coordinates", &_efp_get_multipole_coordinates, - "Wrapped gets coordinates of electrostatics multipoles") - .def("_efp_get_multipole_values", &_efp_get_multipole_values, - "Wrapped gets electrostatics multipoles from EFP fragments") - .def("_efp_get_induced_dipole_count", &_efp_get_induced_dipole_count, - "Wrapped gets the number of polarization induced dipoles") - .def("_efp_get_induced_dipole_coordinates", &_efp_get_induced_dipole_coordinates, - "Wrapped gets coordinates of induced dipoles") - .def("_efp_get_induced_dipole_values", &_efp_get_induced_dipole_values, - "Wrapped gets values of polarization induced dipoles") - .def("_efp_get_induced_dipole_conj_values", &_efp_get_induced_dipole_conj_values, - "Wrapped gets values of polarization conjugated induced dipoles") - .def("_efp_get_energy", &efp_get_energy, "Gets computed energy components") - .def("_efp_get_gradient", &_efp_get_gradient, "Gets computed EFP energy gradient") - .def("_efp_get_frag_count", &_efp_get_frag_count, "Gets the number of fragments in this computation") - .def("_efp_get_frag_name", &_efp_get_frag_name, "Gets the name of the specified effective fragment") - .def("_efp_get_frag_atom_count", &_efp_get_frag_atom_count, "Gets the number of atoms on fragment") - .def("_efp_get_frag_atoms", &_efp_get_frag_atoms, - "Wrapped get atoms comprising the specified 0-indexed fragment, ``frag_idx``", - py::arg("frag_idx"), py::arg("frag_natom")) - .def("get_electric_field", &efp_get_electric_field, - "Gets electric field for a point on 0-indexed fragment *arg0* and returns it in *arg1*") - .def("torque_to_derivative", &efp_torque_to_derivative, - "Convert rigid body torque *arg1* to derivatives *arg2* of energy by Euler angles *arg0*") - .def("clean", &_clean, "Preferred destructor combining libefp::efp_shutdown and field_fn release") - .def("shutdown", &efp_shutdown, "Release all resources used by this EFP"); -} - -// Unwrapped -// * efp_print_banner -// * efp_set_electron_density_field_user_data # what is this? -// * result_to_string - -// clang-format off -// .def("set_error_log", &efp_set_error_log, "Sets the error log callback function") -// .def("skip_fragments", &efp_skip_fragments, "Skip interactions between the fragments *arg0* and *arg1* inclusive if *arg2*") -// .def("set_coordinates", &efp_set_coordinates, "Update positions and orientations of all fragments with types in array *arg0* and returns them in *arg1*") -// .def("get_stress_tensor", &efp_get_stress_tensor, "Gets the stress tensor and returns it in *arg0*") -// .def("get_ai_screen", &efp_get_ai_screen, "Gets the ab initio screening parameters on 0-indexed fragment *arg0* and returns it in *arg1*") -// .def("set_orbital_energies", &efp_set_orbital_energies, "Sets ab initio orbital energies to *efp0* number core orbitals, *efp1* number active orbitals, *efp2* number virtual orbitals, *efp3* array of orbital energies") -// .def("set_dipole_integrals", &efp_set_dipole_integrals, "Sets ab initio dipole integrals to *efp0* number core orbitals, *efp1* number active orbitals, *efp2* number virtual orbitals, *efp3* dipole integral matrices") -// .def("get_frag_multipole_count", &efp_get_frag_multipole_count, "Gets number of electrostatic multipole points on 0-indexed fragment *arg0* and returns it in *arg1*") -// .def("get_lmo_count", &efp_get_lmo_count, "Gets the number of LMOs in a fragment and returns it in *arg0*") -// .def("get_lmo_coordinates", &efp_get_lmo_coordinates, "Gets coordinates of LMO centroids on 0-indexed fragment *arg0* and returns it in *arg1*") -// .def("get_xrfit", &efp_get_xrfit, "Gets parameters of fitted exchange-repulsion on 0-indexed fragment *arg0* and returns it in *arg1*") -// .def("get_atomic_gradient", &efp_get_atomic_gradient, "Gets computed EFP energy gradient on individual atoms and returns it in *arg0*") -// .def("get_frag_mass", &efp_get_frag_mass, "Gets total mass on 0-indexed fragment *arg0* and returns it in *arg1*") -// .def("get_frag_inertia", &efp_get_frag_inertia, "Gets fragment principal moments of inertia on 0-indexed fragment *arg0* and returns it in *arg1*") -// clang-format on diff --git a/python/up_wrapper.py b/python/up_wrapper.py deleted file mode 100644 index 5455d185..00000000 --- a/python/up_wrapper.py +++ /dev/null @@ -1,1761 +0,0 @@ -# -# @BEGIN LICENSE -# -# pylibefp/wrapper/wrapper.py: -# -# Copyright (c) 2017-2019 The Psi4 Developers -# -# All rights reserved. Use of this source code is governed by a -# BSD-style license that can be found in the LICENSE file. -# -# @END LICENSE -# - -import os -import re -import sys -import math -import functools -from pathlib import Path -from typing import Dict - -import qcelemental as qcel - -from . import core -from .exceptions import Fatal, NoMemory, FileNotFound, EFPSyntaxError, UnknownFragment, PolNotConverged, PyEFPSyntaxError - -_lbtl = { - 'libefp': {}, - 'psi': { - 'elec': 'elst', - 'pol': 'ind', - 'xr': 'exch', - 'qq': 'charge_charge', - 'lj': 'lennard-jones', - 'elec_damp': 'elst_damping', - 'pol_damp': 'ind_damping', - 'disp_damp': 'disp_damping', - 'pol_driver': 'ind_driver', - 'ai_elec': 'qm_elst', - 'ai_pol': 'qm_ind', - 'ai_disp': 'qm_disp', - 'ai_xr': 'qm_exch', - 'ai_chtr': 'qm_chtr', - 'ai_qq': 'qm_qq', - }, -} - - -def _rekey(rawdict, label): - newdict = rawdict.copy() - for key in rawdict.keys(): - topic = _lbtl[label].get(key, key) - newdict[topic] = newdict.pop(key) - return newdict - - -def _result_to_error(res, msg=''): - - if res == core.efp_result.EFP_RESULT_SUCCESS: - return - elif res == core.efp_result.EFP_RESULT_FATAL: - raise Fatal(msg) - elif res == core.efp_result.EFP_RESULT_NO_MEMORY: - raise NoMemory(msg) - elif res == core.efp_result.EFP_RESULT_FILE_NOT_FOUND: - raise FileNotFound(msg) - elif res == core.efp_result.EFP_RESULT_SYNTAX_ERROR: - raise EFPSyntaxError(msg) - elif res == core.efp_result.EFP_RESULT_UNKNOWN_FRAGMENT: - raise UnknownFragment(msg) - elif res == core.efp_result.EFP_RESULT_POL_NOT_CONVERGED: - raise PolNotConverged(msg) - - -def prepare(efpobj): - """Prepare the calculation after all fragments added. - - Returns - ------- - None - - """ - res = efpobj._efp_prepare() - _result_to_error(res) - - -def compute(efpobj, do_gradient=False): - """Perform the EFP computation. - - Parameters - ---------- - do_gradient : bool, optional - If True, compute the gradient in addition to energy. - - Returns - ------- - None - - """ - res = efpobj._efp_compute(do_gradient) - _result_to_error(res) - - -def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): - """Searches for EFP fragments and adds to `efpobj`. - - Parameters - ---------- - potential : str or list - Single fragment name or a list of fragments, with or without - ".efp" extension. - fragpath : string, optional - String with ":"-separated paths that may include absolute - paths, relative paths, "$"-marked environment variables, and - the word LIBRARY. Relative paths and environment variables will - be expanded. "LIBRARY" will be expanded to the native libefp - fragment library. - duplicates_ok : bool, optional - Whether to continue or to return pylibefp.Fatal if asked - to load a duplicate potential according to libefp default - behavior. The `potential` list is always filtered to avoid - duplicates. Activating `duplicates_ok` additionally allows - repeated calls to this function to add duplicate potentials. - - Returns - ------- - None - - .. versionchanged:: 1.9 - Now handles `_L` fragments by only looking in LIBRARY paths for these. - Also now handles "deep" library layouts. Unlike C libefp, a fragment - without _L extension is sought in all fraglib paths, including LIBRARY, - if present. - - """ - paths = [] - library_paths = [] - for pth in fragpath.split(os.pathsep): - if pth == 'LIBRARY': - for lst in [paths, library_paths]: - for spth in '@libefp_FRAGLIB_DIRS@'.split(';'): - lst.append(spth) - lst.append('/scratch/gilbreth/paulsk/backup/oglib/uplibefp2/fraglib') - #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib') - #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib/databases') - #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') - #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib/databases') - #lst.append('/scratch/gilbreth/paulsk/backup/libefp/installed/share/libefp/fraglib') - #lst.append('/scratch/gilbreth/paulsk/backup/libefp/installed/share/libefp/fraglib/databases') - #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') - #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib/databases') - for spth in '@FRAGLIB_DATADIRS@'.split(';'): - lst.append(str((Path('@CMAKE_CURRENT_SOURCE_DIR@') / '..' / spth).resolve())) - else: - paths.append(os.path.expandvars(os.path.expanduser(pth))) - - # locate efpfrags full path name - abspath_pots = [] - if isinstance(potential, str): - potential = [potential] - uniq_pots = list(set(potential)) - for pot in uniq_pots: - pathpot = Path(pot).with_suffix('.efp') - search_paths = [] - - if pathpot.stem.upper().endswith('_L'): - # if "frag_L", only search for "LIBRARY/frag.efp" - file_pot_name = pathpot.with_name(str(pathpot.stem)[:-2]).with_suffix('.efp') - for pth in library_paths: - search_paths.append((pth / file_pot_name).resolve()) - else: - # otherwise, search all "/frag.efp", possibly incl. LIBRARY - for pth in paths: - search_paths.append((pth / pathpot).resolve()) - - for pth in search_paths: - if pth.is_file(): - abspath_pots.append(str(pth)) - break - - # load the potentials - for ipot, pot in enumerate(abspath_pots): - res = efpobj._efp_add_potential(pot) - try: - _result_to_error(res, uniq_pots[ipot]) - except Fatal as e: - if duplicates_ok: - pass - else: - raise Fatal('Invalid fragment name (probably already added): {}'.format(uniq_pots[ipot])) - - print(r""" EFP fragment {} read from {}""".format(uniq_pots[ipot], pot)) - - -def add_fragment(efpobj, fragments): - """Registers EFP fragments to `efpobj` in order. - - Parameters - ---------- - fragments : list of str - Names of fragments to define the EFP subsystem. - - .. versionchanged:: 1.9 - Fragments are checking `_L` extensions for library files, too. - - Returns - ------- - None - - """ - if isinstance(fragments, str): - fragments = [fragments] - for frag in fragments: - res = efpobj._efp_add_fragment(frag) - try: - _result_to_error(res, frag) - except UnknownFragment as e: - res = efpobj._efp_add_fragment(frag + "_L") - _result_to_error(res, frag) - - -def get_opts(efpobj, label='libefp'): - """Returns the options state of *efpobj* as a dictionary. - - Parameters - ---------- - label : {'libefp', 'psi'}, optional - Returned dictionary keys are identical to libefp efp_opts struct - names unless custom renaming requested via `label`. - - Returns - ------- - dict - Current options state of `efpobj` translated into bools, strings, - and floats, rather than libefp custom datatypes. - - """ - opts = core.efp_opts() - res = efpobj._efp_get_opts(opts) - _result_to_error(res) - - dopts = {} - - dopts['elec'] = bool(opts.terms & core.efp_term.EFP_TERM_ELEC) - dopts['pol'] = bool(opts.terms & core.efp_term.EFP_TERM_POL) - dopts['disp'] = bool(opts.terms & core.efp_term.EFP_TERM_DISP) - dopts['xr'] = bool(opts.terms & core.efp_term.EFP_TERM_XR) - dopts['chtr'] = bool(opts.terms & core.efp_term.EFP_TERM_CHTR) - dopts['qq'] = bool(opts.terms & core.efp_term.EFP_TERM_QQ) # SKP - dopts['lj'] = bool(opts.terms & core.efp_term.EFP_TERM_LJ) # SKP - - dopts['spec_elec'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_ELEC) # SKP - dopts['spec_pol'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_POL) # SKP - dopts['spec_disp'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_DISP) # SKP - dopts['spec_xr'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_XR) # SKP - dopts['spec_chtr'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_CHTR) # SKP - - dopts['elec_damp'] = { - core.EFP_ELEC_DAMP_SCREEN: 'screen', - core.EFP_ELEC_DAMP_OVERLAP: 'overlap', - core.EFP_ELEC_DAMP_OFF: 'off', - }[opts.elec_damp] - - dopts['pol_damp'] = { - core.EFP_POL_DAMP_TT: 'tt', - core.EFP_POL_DAMP_OFF: 'off', - }[opts.pol_damp] - - dopts['disp_damp'] = { - core.EFP_DISP_DAMP_TT: 'tt', - core.EFP_DISP_DAMP_OVERLAP: 'overlap', - core.EFP_DISP_DAMP_OFF: 'off', - }[opts.disp_damp] - - dopts['enable_pbc'] = bool(opts.enable_pbc) - dopts['enable_cutoff'] = bool(opts.enable_cutoff) - dopts['swf_cutoff'] = opts.swf_cutoff - dopts['special_fragment'] = opts.special_fragment - dopts['enable_pairwise'] = bool(opts.enable_pairwise) # SKP - - dopts['pol_driver'] = { - core.EFP_POL_DRIVER_ITERATIVE: 'iterative', - core.EFP_POL_DRIVER_DIRECT: 'direct', - }[opts.pol_driver] - - dopts['ai_elec'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_ELEC) - dopts['ai_pol'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_POL) - dopts['ai_disp'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_DISP) - dopts['ai_xr'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_XR) - dopts['ai_chtr'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_CHTR) - dopts['ai_qq'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_QQ) # SKP - - return _rekey(dopts, label=label) - - -def set_opts(efpobj, dopts, label='libefp', append='libefp'): - """Sets the options state of `efpobj` from dictionary `dopts`. - - Parameters - ---------- - dopts : dict - Input dict with keys from libefp efp_opts (see `label`) and - values bools, strings, floats, and ints, as appropriate, rather - than libefp custom datatypes. - label : {'libefp', 'psi'}, optional - Input `dopts` keys are read as libefp efp_opts struct names or - by the custom translation set defined for `label`. - append : {'libefp', 'psi', 'append'}, optional - When ``libefp``, input `dopts` keys are applied to the default - (generally OFF) efp_opts state. When ``psi``, input `dopts` - keys are applied to the default (generally ON) Psi efp_opts - state. When ``append``, input `dopts` keys are applied to the - current *efpobj* opt_opts state. - - Returns - ------- - dict - After setting the options state, `efpobj` is queried as to the - current options state, which is then returned. - - """ - # warn on stray dopts keys - allowed = [ - 'elec', 'pol', 'disp', 'xr', 'elec_damp', 'pol_damp', 'disp_damp', 'enable_pbc', 'enable_cutoff', 'swf_cutoff', - 'pol_driver', 'ai_elec', 'ai_pol', - 'spec_elec', 'spec_pol', 'spec_disp', 'spec_xr', 'spec_chtr', 'ai_qq', 'qq', 'lj', 'special_fragment' # SKP - ] - label_allowed = [_lbtl[label].get(itm, itm) for itm in allowed] - for key in dopts.keys(): - if key not in label_allowed: - print('Warning: unrecognized key {}'.format(key)) - trues = [True, 1, 'yes', 'true', 'on'] - falses = [False, 0, 'no', 'false', 'off'] - - # prepare base options state for dopts - opts = core.efp_opts() - if append == 'libefp': - pass - elif append == 'psi': - opts.terms |= core.efp_term.EFP_TERM_ELEC - opts.terms |= core.efp_term.EFP_TERM_POL - opts.terms |= core.efp_term.EFP_TERM_DISP - opts.terms |= core.efp_term.EFP_TERM_XR - opts.terms |= core.efp_term.EFP_TERM_QQ # SKP - opts.terms |= core.efp_term.EFP_TERM_LJ # SKP - opts.elec_damp = core.EFP_ELEC_DAMP_SCREEN - opts.pol_damp = core.EFP_POL_DAMP_TT - opts.disp_damp = core.EFP_DISP_DAMP_OVERLAP - opts.terms |= core.efp_term.EFP_TERM_AI_ELEC - opts.terms |= core.efp_term.EFP_TERM_AI_POL - opts.terms |= core.efp_term.EFP_TERM_AI_QQ # SKP - #elif append == 'qchem': - # # q-chem and psi4 have different defaults for at least this option - # opts.disp_damp = core.EFP_DISP_DAMP_TT - elif append == 'append': - res = efpobj._efp_get_opts(opts) - _result_to_error(res) - else: - raise PyEFPSyntaxError('Unrecognized opts default set: {}'.format(append)) - - # apply dopts to options state - topic = _lbtl[label].get('elec', 'elec') - if topic in dopts: - if dopts[topic] in trues: - opts.terms |= core.efp_term.EFP_TERM_ELEC - elif dopts[topic] in falses: - opts.terms &= ~core.efp_term.EFP_TERM_ELEC - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('pol', 'pol') - if topic in dopts: - if dopts[topic] in trues: - opts.terms |= core.efp_term.EFP_TERM_POL - elif dopts[topic] in falses: - opts.terms &= ~core.efp_term.EFP_TERM_POL - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('disp', 'disp') - if topic in dopts: - if dopts[topic] in trues: - opts.terms |= core.efp_term.EFP_TERM_DISP - elif dopts[topic] in falses: - opts.terms &= ~core.efp_term.EFP_TERM_DISP - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('xr', 'xr') - if topic in dopts: - if dopts[topic] in trues: - opts.terms |= core.efp_term.EFP_TERM_XR - elif dopts[topic] in falses: - opts.terms &= ~core.efp_term.EFP_TERM_XR - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) -#========== SKP changes ======================================================================# - topic = _lbtl[label].get('qq', 'qq') - if topic in dopts: - if dopts[topic] in trues: - opts.terms |= core.efp_term.EFP_TERM_QQ - elif dopts[topic] in falses: - opts.terms &= ~core.efp_term.EFP_TERM_QQ - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('lj', 'lj') - if topic in dopts: - if dopts[topic] in trues: - opts.terms |= core.efp_term.EFP_TERM_LJ - elif dopts[topic] in falses: - opts.terms &= ~core.efp_term.EFP_TERM_LJ - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) -#================================================================================================# - # may be enabled in a future libefp release - # topic = _lbtl[label].get('chtr', 'chtr') - - topic = _lbtl[label].get('elec_damp', 'elec_damp') - if topic in dopts: - try: - opts.elec_damp = { - 'screen': core.EFP_ELEC_DAMP_SCREEN, - 'overlap': core.EFP_ELEC_DAMP_OVERLAP, - 'off': core.EFP_ELEC_DAMP_OFF, - }[dopts[topic].lower()] - except KeyError: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [screen/overlap/off] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('pol_damp', 'pol_damp') - if topic in dopts: - try: - opts.pol_damp = { - 'tt': core.EFP_POL_DAMP_TT, - 'off': core.EFP_POL_DAMP_OFF, - }[dopts[topic].lower()] - except KeyError: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [tt/off] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('disp_damp', 'disp_damp') - if topic in dopts: - try: - opts.disp_damp = { - 'overlap': core.EFP_DISP_DAMP_OVERLAP, - 'tt': core.EFP_DISP_DAMP_TT, - 'off': core.EFP_DISP_DAMP_OFF, - }[dopts[topic].lower()] - except KeyError: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [overlap/tt/off] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('enable_pbc', 'enable_pbc') - if topic in dopts: - if dopts[topic] in trues: - opts.enable_pbc = 1 - elif dopts[topic] in falses: - opts.enable_pbc = 0 - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - topic = _lbtl[label].get('enable_cutoff', 'enable_cutoff') - if topic in dopts: - if dopts[topic] in trues: - opts.enable_cutoff = 1 - elif dopts[topic] in falses: - opts.enable_cutoff = 0 - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('swf_cutoff', 'swf_cutoff') - if topic in dopts: - opts.swf_cutoff = float(dopts[topic]) - - topic = _lbtl[label].get('pol_driver', 'pol_driver') - if topic in dopts: - try: - opts.pol_driver = { - 'iterative': core.EFP_POL_DRIVER_ITERATIVE, - 'direct': core.EFP_POL_DRIVER_DIRECT, - }[dopts[topic].lower()] - except KeyError: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [iterative/direct] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('ai_elec', 'ai_elec') - if topic in dopts: - if dopts[topic] in trues: - opts.terms |= core.efp_term.EFP_TERM_AI_ELEC - elif dopts[topic] in falses: - opts.terms &= ~core.efp_term.EFP_TERM_AI_ELEC - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('ai_pol', 'ai_pol') - if topic in dopts: - if dopts[topic] in trues: - opts.terms |= core.efp_term.EFP_TERM_AI_POL - elif dopts[topic] in falses: - opts.terms &= ~core.efp_term.EFP_TERM_AI_POL - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) -#=================== SKP addition ===================================================# - topic = _lbtl[label].get('ai_qq', 'ai_qq') - if topic in dopts: - if dopts[topic] in trues: - opts.terms |= core.efp_term.EFP_TERM_AI_QQ - elif dopts[topic] in falses: - opts.terms &= ~core.efp_term.EFP_TERM_AI_QQ - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) -#======================================================================================# - # may be enabled in a future libefp release - # topic = _lbtl[label].get('ai_disp', 'ai_disp') - # topic = _lbtl[label].get('ai_xr', 'ai_xr') - # topic = _lbtl[label].get('ai_chtr', 'ai_chtr') - - # set computed options state - res = efpobj._efp_set_opts(opts) - _result_to_error(res) - - return efpobj.get_opts(label=label) - - -def set_periodic_box(efpobj, xyz, alpha=90.0, beta=90.0, gamma=90.0): - """Set periodic box size. - - Parameters - ---------- - xyz : list - (3,) Box sizes in three dimensions [x, y, z] in Bohr. - alpha - Unit cell alpha angle in degrees. - beta - Unit cell beta angle in degrees. - gamma - Unit cell gamma angle in degrees. - - Returns - ------- - None - - .. versionchanged:: 1.9 - Parameters alpha, beta, and gamma added. - - """ - if len(xyz) != 3: - raise PyEFPSyntaxError('Invalid periodic box setting: {}'.format(xyz)) - - res = efpobj._efp_set_periodic_box(xyz[0], xyz[1], xyz[2], alpha, beta, gamma) - _result_to_error(res) - (res, xyzabc) = efpobj._efp_get_periodic_box() - _result_to_error(res) - - -def get_periodic_box(efpobj): - """Get periodic box size. - - Returns - ------- - list - Box sizes in three dimensions [x, y, z] in Bohr. - And box angles [alpha, beta, gamma] in degrees. - - .. versionchanged:: 1.9 - Return size extended from 3 to 6 to include angles. - - """ - (res, xyzabc) = efpobj._efp_get_periodic_box() - _result_to_error(res) - - return xyzabc - - -#def opts_summary(efpobj, labels='libefp'): -# -# opts = efpobj.get_opts() -## py::dict opts = opts_to_dict(efp); -# -# elec = 'Electrostatics' -# xr = 'Exchange' -# disp = 'Dispersion' -# if labels == 'libefp': -# pol = 'Polarization' -# elif labels == 'psi4': -# pol = 'Induction' -# -# text = '' -# text += '\n ==> EFP/EFP Setup <==\n\n' -# text += ' {:<30} {:12}\n'.format(elec + ' enabled?:', 'true' if opts["elec"] else 'false') -# text += ' {:<30} {:12}\n'.format(pol + ' enabled?:', 'true' if opts["pol"] else 'false') -# text += ' {:<30} {:12}\n'.format(disp + ' enabled?:', 'true' if opts["disp"] else 'false') -# text += ' {:<30} {:12}\n'.format(xr + ' enabled?:', 'true' if opts["xr"] else 'false') -# text += ' {:<30} {:12}\n'.format('Charge-Transfer enabled?:', 'undefined') -# -# text += '\n {:<30} {:12}\n'.format(elec + ' damping:', opts["elec_damp"]) -# text += ' {:<30} {:12}\n'.format(pol + 'damping:', opts["pol_damp"]) -# text += ' {:<30} {:12}\n'.format(disp + ' damping:', opts["disp_damp"]) -# text += ' {:<30} {:12}\n'.format(pol + ' driver:', opts["pol_driver"]) -# -# text += '\n ==> QM/EFP Setup <==\n\n' -##// sprintf(buffer, " Number of QM fragments: %12d\n", -1); //, nfrag_); -# text += ' Electrostatics enabled?: {:12}\n'.format('true' if opts["ai_elec"] else 'false') -# text += ' Polarization enabled?: {:12}\n'.format('true' if opts["ai_pol"] else 'false') -# text += ' Dispersion enabled?: {:12}\n'.format('undefined') -# text += ' Exchange enabled?: {:12}\n'.format('undefined') -# text += ' Charge-Transfer enabled?: {:12}\n'.format('undefined') -# -# return text - - -def get_energy(efpobj, label='libefp'): - """Gets the energy components from `efpobj` computation as a dictionary. - - Parameters - ---------- - label : {'libefp', 'psi'}, optional - Returned dictionary keys are identical to libefp efp_energy struct - names plus elec, pol, disp, xr, & total components unless custom renaming - requested via `label`. - - Returns - ------- - dict - Individual terms, summed components, and total energies. - - """ - ene = core.efp_energy() - res = efpobj._efp_get_energy(ene) - _result_to_error(res) - - energies = { - 'electrostatic': ene.electrostatic, - 'charge_penetration': ene.charge_penetration, - 'electrostatic_point_charges': ene.electrostatic_point_charges, - 'polarization': ene.polarization, - 'dispersion': ene.dispersion, - 'exchange_repulsion': ene.exchange_repulsion, - 'total': ene.total, - 'elec': ene.electrostatic + ene.charge_penetration + ene.electrostatic_point_charges, - 'xr': ene.exchange_repulsion, - 'pol': ene.polarization, - 'disp': ene.dispersion, - 'qq': ene.qq, - } - - return _rekey(energies, label=label) - - -def get_frag_count(efpobj): - """Gets the number of fragments in `efpobj` computation. - - Returns - ------- - int - Number of fragments in calculation. - - """ - (res, nfrag) = efpobj._efp_get_frag_count() - _result_to_error(res) - - return nfrag - - -def get_multipole_count(efpobj): - """Gets the number of multipoles in `efpobj` computation. - - Returns - ------- - int - Total number of multipoles from electrostatics calculation. - - """ - (res, nmult) = efpobj._efp_get_multipole_count() - _result_to_error(res) - - return nmult - - -def get_multipole_coordinates(efpobj, verbose=1): - """Gets the coordinates of `efpobj` electrostatics multipoles. - - Parameters - ---------- - verbose : int, optional - Whether to print out the multipole coordinates. 0: no printing. 1: - print charges and dipoles. 2: additionally print quadrupoles - and octupoles. - - Returns - ------- - list - ``3 n_mult`` (flat) array of multipole locations. - - Examples - -------- - - >>> # Use with NumPy - >>> n_mult = efpobj.get_multipole_count() - >>> xyz_mult = np.asarray(efpobj.get_multipole_coordinates()).reshape(n_mult, 3) - - """ - nmult = efpobj.get_multipole_count() - (res, xyz) = efpobj._efp_get_multipole_coordinates(nmult) - _result_to_error(res) - - if verbose >= 1: - xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) - - text = '\n ==> EFP Multipole Coordinates <==\n\n' - for mu in range(nmult): - text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) - print(text) - - return xyz - - -def get_multipole_values(efpobj, verbose=1): - """Gets the computed per-point multipoles of `efpobj`. - - Parameters - ---------- - verbose : int, optional - Whether to print out the multipole arrays. 0: no printing. 1: - print charges and dipoles. ``2``: additionally print quadrupoles - and octupoles. - - Returns - ------- - list - ``20 n_mult`` (flat) array of per-point multipole values including - charges + dipoles + quadrupoles + octupoles. - Dipoles stored as x, y, z. - Quadrupoles stored as xx, yy, zz, xy, xz, yz. - Octupoles stored as xxx, yyy, zzz, xxy, xxz, xyy, yyz, xzz, yzz, xyz. - - Examples - -------- - >>> # Use with NumPy - >>> n_mult = efpobj.get_multipole_count() - >>> val_mult = np.asarray(efpobj.get_multipole_values()).reshape(n_mult, 20) - - """ - nmult = efpobj.get_multipole_count() - (res, mult) = efpobj._efp_get_multipole_values(nmult) - _result_to_error(res) - - if verbose >= 1: - mult20 = list(map(list, zip(*[iter(mult)] * 20))) - - text = '\n ==> EFP Multipoles: Charge & Dipole <==\n\n' - for mu in range(nmult): - text += '{:6d} {:14.8f} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *mult20[mu][:4]) - - if verbose >= 2: - text += '\n ==> EFP Multipoles: Quadrupole <==\n\n' - for mu in range(nmult): - text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format(mu, *mult20[mu][4:10]) - text += '\n ==> EFP Multipoles: Octupole <==\n\n' - for mu in range(nmult): - text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format( - mu, *mult20[mu][10:]) - print(text) - - return mult - - -def get_induced_dipole_count(efpobj): - """Gets the number of polarization induced dipoles in `efpobj` computation. - - Returns - ------- - int - Total number of polarization induced dipoles. - - """ - (res, ndip) = efpobj._efp_get_induced_dipole_count() - _result_to_error(res) - - return ndip - - -def get_induced_dipole_coordinates(efpobj, verbose=1): - """Gets the coordinates of `efpobj` induced dipoles. - - Parameters - ---------- - verbose : int, optional - Whether to print out the multipole arrays. 0: no printing. 1: - print induced dipole coordinates. - - Returns - ------- - list - (3 * n_dip, ) (flat) array of induced dipole locations. - - """ - ndip = efpobj.get_induced_dipole_count() - (res, xyz) = efpobj._efp_get_induced_dipole_coordinates(ndip) - _result_to_error(res) - - if verbose >= 1: - xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) - - text = '\n ==> EFP Induced Dipole Coordinates <==\n\n' - for mu in range(ndip): - text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) - print(text) - - return xyz - - -def get_induced_dipole_values(efpobj, verbose=1): - """Gets the values of polarization induced dipoles of `efpobj`. - - Parameters - ---------- - verbose : int, optional - Whether to print out the induced dipole arrays. 0: no - printing. 1: print induced dipole values. - - Returns - ------- - list - ``3*n_dip`` (flat) array of polarization induced dipole values. - - Examples - -------- - >>> # Use with NumPy - >>> n_dip = efpobj.get_induced_dipole_count() - >>> val_dip = np.asarray(efpobj.get_induced_dipole_values()).reshape(n_dip, 3) - - """ - ndip = efpobj.get_induced_dipole_count() - (res, vals) = efpobj._efp_get_induced_dipole_values(ndip) - _result_to_error(res) - - if verbose >= 1: - vals3 = list(map(list, zip(*[iter(vals)] * 3))) - - text = '\n ==> EFP Induced Dipoles <==\n\n' - for mu in range(ndip): - text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *vals3[mu]) - print(text) - - return vals - - -def get_induced_dipole_conj_values(efpobj, verbose=1): - """Gets the values of polarization conjugated induced dipoles of `efpobj`. - - Parameters - ---------- - verbose : int, optional - Whether to print out the induced dipole conj arrays. - 0: no printing. 1: print induced dipole values. - - Returns - ------- - list - 3 x n_dip (flat) array of conjugate induced dipole values. - - """ - ndip = efpobj.get_induced_dipole_count() - (res, vals) = efpobj._efp_get_induced_dipole_conj_values(ndip) - _result_to_error(res) - - if verbose >= 1: - vals3 = list(map(list, zip(*[iter(vals)] * 3))) - - text = '\n ==> EFP Conj. Induced Dipoles <==\n\n' - for mu in range(ndip): - text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *vals3[mu]) - print(text) - - return vals - - -def get_point_charge_count(efpobj): - """Gets the number of set point charges `efpobj`. - - Returns - ------- - int - Total number of set point charges. - - """ - (res, nptc) = efpobj._efp_get_point_charge_count() - _result_to_error(res) - - return nptc - - -def get_point_charge_coordinates(efpobj, verbose=1): - """Gets the coordinates of set point charges on `efpobj`. - - Parameters - ---------- - verbose : int, optional - Whether to print out the point charge arrays. 0: no printing. - 1: print point charge coordinates. - - Returns - ------- - list - 3 x n_ptc (flat) array of point charge locations. - - """ - nptc = efpobj.get_point_charge_count() - (res, xyz) = efpobj._efp_get_point_charge_coordinates(nptc) - _result_to_error(res) - - if verbose >= 1: - xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) - - text = '\n ==> EFP Point Charge Coordinates <==\n\n' - for mu in range(nptc): - text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) - print(text) - - return xyz - - -def get_point_charge_values(efpobj, verbose=1): - """Gets the values of set point charges on `efpobj`. - - Parameters - ---------- - verbose : int, optional - Whether to print out the point charge arrays. 0: no - printing. 1: print point charge values. - - Returns - ------- - list - ``n_ptc`` array of point charge values. - - Examples - -------- - >>> # Use with NumPy - >>> val_ptc = np.asarray(efpobj.get_point_charge_values()) - - """ - nptc = efpobj.get_point_charge_count() - (res, vals) = efpobj._efp_get_point_charge_values(nptc) - _result_to_error(res) - - if verbose >= 1: - text = '\n ==> EFP Point Charges <==\n\n' - for mu in range(nptc): - text += '{:6d} {:14.8f}\n'.format(mu, vals[mu]) - print(text) - - return vals - - -def get_wavefunction_dependent_energy(efpobj): - """Updates wavefunction-dependent energy terms for SCF. - - Returns - ------- - float - Wavefunction-dependent EFP energy. - - """ - (res, wde) = efpobj._efp_get_wavefunction_dependent_energy() - _result_to_error(res) - - return wde - - -def get_gradient(efpobj): - """Gets the computed per-fragment EFP energy gradient of `efpobj`. - - Returns - ------- - list - ``6 x n_frag`` array of per-fragment negative force and torque. - - """ - nfrag = efpobj.get_frag_count() - (res, grad) = efpobj._efp_get_gradient(nfrag) - _result_to_error(res) - - return grad - - -def gradient_summary(efpobj): - """Gets the computed per-fragment EFP energy gradient of `efpobj`. - - Returns - ------- - str - Formatted text of the `6 x n_frag` gradient and torque. - - """ - grad = efpobj.get_gradient() - grad6 = list(map(list, zip(*[iter(grad)] * 6))) - - text = '\n ==> EFP Gradient & Torque <==\n\n' - for fr in grad6: - text += '{:14.8f} {:14.8f} {:14.8f} {:14.8f} {:14.8f} {:14.8f}\n'.format(*fr) - - text += '\n' - return text - - -def energy_summary(efpobj, label='libefp', scfefp=None): - """Forms summary of EFP and SCFEFP energy components from `efpobj`. - - Parameters - ---------- - label : {'libefp', 'psi'}, optional - Text labels use libefp terms names unless custom renaming - requested via `label`. - scfefp : float, optional - Total SCF energy (Hartrees) including EFP wavefunction dependent - and wavefunction independent terms. Used for add'l printing. - - Returns - ------- - str - Summary suitable for printing indicating energy components - (electrostatics, exchange, induction, dispersion, total), whether - each are enabled in options, and breakdown into pure-EFP and - QM-EFP, where available. If scfefp, includes a section on SCF - iterated and SCF total. - - """ - opt = efpobj.get_opts() - ene = efpobj.get_energy() - - def _enabled(tf, t='*', f='', suffix=''): - if tf: - return t + suffix - else: - return f - - elec = 'Electrostatics' - disp = 'Dispersion' - if label == 'libefp': - xr = 'Exchange-Repulsion' - indc = 'Polarization' - elif label == 'psi': - xr = 'Exchange' - indc = 'Induction' - - # yapf: disable - text = '\n' - text += '\n EFP Results\n' - text += ' ------------------------------------------------------------\n' - text += ' {:<30}{:20.12f} [Eh] {}\n'.format(elec, ene['electrostatic'] + - ene['charge_penetration'] + - ene['electrostatic_point_charges'], - _enabled(opt['elec'] or opt['ai_elec'], - suffix=(' (' + opt['elec_damp'] + ' damping)'))) - text += ' {:<28}{:20.12f} [Eh] {}\n'.format('EFP/EFP', ene['electrostatic'] + - ene['charge_penetration'], - _enabled(opt['elec'])) - text += ' {:<28}{:20.12f} [Eh] {}\n'.format('QM-Nuc/EFP', - ene['electrostatic_point_charges'], - _enabled(opt['ai_elec'])) - text += '\n {:<30}{:20.12f} [Eh] {}\n'.format(xr, ene['exchange_repulsion'], - _enabled(opt['xr'])) - text += ' {:<28}{:20.12f} [Eh] {}\n'.format('EFP/EFP', ene['exchange_repulsion'], - _enabled(opt['xr'])) - text += ' {:<28}{:20.12f} [Eh] {}\n'.format('QM/EFP', 0.0, '') - text += '\n {:<30}{:20.12f} [Eh] {}\n'.format(indc, ene['polarization'], - _enabled(opt['pol'] or opt['ai_pol'], - suffix=(' (' + opt['pol_damp'] + ' damping)'))) - text += ' {:<28}{:20.12f} [Eh] {}\n'.format(_enabled(opt['ai_pol'], t='QM/EFP', f='EFP/EFP'), - ene['polarization'], - _enabled(opt['pol'] or opt['ai_pol'])) - text += '\n {:<30}{:20.12f} [Eh] {}\n'.format(disp, ene['dispersion'], - _enabled(opt['disp'], - suffix=(' (' + opt['disp_damp'] + ' damping)'))) - text += ' {:<28}{:20.12f} [Eh] {}\n'.format('EFP/EFP', ene['dispersion'], - _enabled(opt['disp'])) - text += ' {:<28}{:20.12f} [Eh] {}\n'.format('QM/EFP', 0.0, '') - text += '\n {:<30}{:20.12f} [Eh]\n'.format('Total EFP', ene['total']) - # yapf: enable - if scfefp is not None: - wie = ene['total'] - ene['pol'] - text += ' EFP excluding EFP {:<12}{:20.12f} [Eh]\n'.format(indc, wie) - text += ' SCF including EFP {:<12}{:20.12f} [Eh]\n'.format(indc, scfefp - wie) - text += ' Total SCF including Total EFP {:20.12f} [Eh]\n'.format(scfefp) - - text += '\n' - return text - - -def geometry_summary(efpobj, units_to_bohr=1.0): - """Formatted geometry and fragments for `efpobj`. - - Parameters - ---------- - units_to_bohr : float,optional - Conversion factor for printing; for Angstroms, approx. 0.529177. - - Returns - ------- - str - Summary of EFP geometry & point charges (QM atoms) suitable for printing. - - """ - text = '' - text += '\n ==> EFP Geometry <==\n\n' - text += ' Geometry (in {} * {:12.8f}):\n\n'.format('Bohr', units_to_bohr) - text += ' Center X Y Z QM/EFP\n' - text += ' ------------ ----------------- ----------------- ----------------- ------------\n' - - mol_info = efpobj.get_atoms() - terminal_frag = [fr[0] for fr in mol_info['fragments'][1:]] - frag_names = efpobj.get_frag_name() - - ifr = 0 - for iat, at in enumerate(mol_info['full_atoms']): - if iat in terminal_frag: - text += ' --\n' - ifr += 1 - text += ' {:8}{:4} {:17.12f} {:17.12f} {:17.12f} {}\n'.format(at['symbol'], '', - at['x'] * units_to_bohr, - at['y'] * units_to_bohr, - at['z'] * units_to_bohr, - frag_names[ifr].lower()) - - # TODO move into dict? - ptc_info = { - 'n': efpobj.get_point_charge_count(), - 'xyz': efpobj.get_point_charge_coordinates(verbose=0), - 'val': efpobj.get_point_charge_values(verbose=0) - } - - if ptc_info['n'] > 0: - mult3 = list(map(list, zip(*[iter(ptc_info['xyz'])] * 3))) - text += ' ------------\n' - for ptc in range(ptc_info['n']): - text += ' {:8}{:4} {:17.12f} {:17.12f} {:17.12f} {}\n'.format(ptc_info['val'][ptc], '', - mult3[ptc][0] * units_to_bohr, - mult3[ptc][1] * units_to_bohr, - mult3[ptc][2] * units_to_bohr, - 'point_charge') - - text += '\n' - return text - - -def nuclear_repulsion_energy(efpobj, use_efp_frags=True, use_point_charges=False): - """Computes nuclear repulsion energy for `efpobj`. - - Parameters - ---------- - use_efp_frags : bool, optional - If True (default), compute NRE using the efp fragment subsystem. - use_point_charges : bool, optional - If True (not default), include point charges (generally QM atoms) - in NRE computation. - - Returns - ------- - float - Nuclear repulsion energy [E_h] for specified geometry subsystem - - """ - nre = 0.0 - loc = [] - - if use_efp_frags: - loc.extend(efpobj.get_atoms()['full_atoms']) - if use_point_charges: - ptc_xyz = efpobj.get_point_charge_coordinates(verbose=0) - ptc_val = efpobj.get_point_charge_values(verbose=0) - for ptc in range(efpobj.get_point_charge_count()): - loc.append({ - 'Z': ptc_val[ptc], - 'x': ptc_xyz[ptc * 3], - 'y': ptc_xyz[ptc * 3 + 1], - 'z': ptc_xyz[ptc * 3 + 2] - }) - - for iat1, at1 in enumerate(loc): - for iat2, at2 in enumerate(loc): - if iat2 < iat1: - ZZ = at1['Z'] * at2['Z'] - dx = at1['x'] - at2['x'] - dy = at1['y'] - at2['y'] - dz = at1['z'] - at2['z'] - dist = math.sqrt(dx * dx + dy * dy + dz * dz) - nre += ZZ / dist - - return nre - - -#def _frag_idx_validation(efpobj, ifr): -# nfr = efpobj.get_frag_count() -# if (ifr < 0) or (ifr >= nfr): -# raise PyEFPSyntaxError('Invalid fragment index for 0-indexed {}-fragment EFP: {}'.format(nfr, ifr)) - - -def set_frag_coordinates(efpobj, ifr, ctype, coord): - """Set fragment orientation on `efpobj` from hint. - - Parameters - ---------- - ifr : int - Index of fragment (0-indexed). - ctype : core.efp_coord_type or str {'xyzabc', 'points', 'rotmat'} - Type of coodinates hint among ``xyzabc``, `points`, & `rotmat`. - coord : list of floats - 6-, 9-, or 12-element hint of coordinates. - - Returns - ------- - None - - """ - if isinstance(ctype, str): - try: - ctype = { - 'xyzabc': core.EFP_COORD_TYPE_XYZABC, - 'points': core.EFP_COORD_TYPE_POINTS, - 'rotmat': core.EFP_COORD_TYPE_ROTMAT, - }[ctype.lower()] - except KeyError: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [xyzabc/points/rotmat] {}: {}'.format('ctype', ctype)) - - efpobj.input_units_to_au = 1.0 - res = efpobj._efp_set_frag_coordinates(ifr, ctype, coord) - _result_to_error(res) - - -def set_point_charge_coordinates(efpobj, xyz): - """Reset arbitrary point charge locations (often QM atoms) - interacting with the EFP subsystem. Must have been initially set - with set_point_charges. - - Parameters - ---------- - xyz : list - ``3 * n_ptc`` array of XYZ coordinates of charge positions, - generally QM coordinates. - - Returns - ------- - None - - """ - n_ptc = efpobj.get_point_charge_count() - if n_ptc == 0: - raise PyEFPSyntaxError('Must initialize point charges with set_point_charges') - if len(xyz) != (3 * n_ptc): - raise PyEFPSyntaxError('Invalid point charge length: {}'.format(xyz)) - - res = efpobj._efp_set_point_charge_coordinates(len(xyz), xyz) - _result_to_error(res) - - -def set_point_charge_values(efpobj, ptc): - """Reset arbitrary point charge values (often QM atoms) - interacting with the EFP subsystem. Must have been initially set - with set_point_charges. - - Parameters - ---------- - ptc : list of float - array of charge values, generally QM nuclear charges. - - Returns - ------- - None - - """ - n_ptc = efpobj.get_point_charge_count() - if n_ptc == 0: - raise PyEFPSyntaxError('Must initialize point charges with set_point_charges') - if len(ptc) != n_ptc: - raise PyEFPSyntaxError('Invalid point charge length: {}'.format(ptc)) - - res = efpobj._efp_set_point_charge_values(len(ptc), ptc) - _result_to_error(res) - - -def set_point_charges(efpobj, ptc, coord): - """Sets arbitrary point charges (often QM atoms) interacting with the - EFP subsystem. - - Parameters - ---------- - ptc : list - (n_ptc, ) array of charge values, generally QM Z. - coord : list - (3 * n_ptc, ) or (n_ptc, 3) array (that is, flat or nested) - of XYZ coordinates [a0] of charge positions, generally QM coordinates. - - Returns - ------- - None - - """ - if len(ptc) == len(coord): - coord = sum(coord, []) - - if (len(ptc) * 3) != len(coord): - raise PyEFPSyntaxError('Invalid point charges setting: {}'.format(coord)) - - res = efpobj._efp_set_point_charges(len(ptc), ptc, coord) - _result_to_error(res) - - -def get_frag_name(efpobj, ifr=None): - """Gets system name on fragment(s) of `efpobj`. - - Parameters - ---------- - ifr : int, optional - Index of fragment (0-indexed) if not all. - - Returns - ------- - str, list of str - If `ifr`, name of fragment `ifr`. Otherwise, names of all - fragments in list. - - """ - return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='name') - - -def _get_frag_common(efpobj, ifr, topic): - nfr = efpobj.get_frag_count() - - fn_mapper = { - 'name': efpobj._efp_get_frag_name, - 'charge': efpobj._efp_get_frag_charge, - 'xyzabc': efpobj._efp_get_frag_xyzabc, - 'atom_count': efpobj._efp_get_frag_atom_count, - 'multiplicity': efpobj._efp_get_frag_multiplicity, - } - - if ifr is None: - frags = [] - for fr in range(nfr): - (res, ftopic) = fn_mapper[topic](fr) - _result_to_error(res) - frags.append(ftopic) - - return frags - - else: - if ifr in range(nfr): - (res, ftopic) = fn_mapper[topic](ifr) - _result_to_error(res) - - return ftopic - else: - raise PyEFPSyntaxError('Invalid fragment index for 0-indexed {}-fragment EFP: {}'.format(nfr, ifr)) - - -def get_frag_charge(efpobj, ifr=None, zero=1e-8): - """Gets total charge on fragment(s) of `efpobj`. - - Parameters - ---------- - ifr : int, optional - Index of fragment (0-indexed) if not all. - zero : float, optional - Absolute value under which to zero charge. - - Returns - ------- - str, list of str - If `ifr`, charge of fragment `ifr`. Otherwise, charges of all - fragments in list. - - """ - chg = _get_frag_common(efpobj=efpobj, ifr=ifr, topic='charge') - if ifr is None: - return [(0.0 if math.fabs(c) < zero else c) for c in chg] - else: - if math.fabs(chg) < zero: - return 0.0 - else: - return chg - - -def get_frag_multiplicity(efpobj, ifr=None): - """Gets spin multiplicity on fragment(s) of `efpobj`. - - Parameters - ---------- - ifr : int, optional - Index of fragment (0-indexed) if not all. - - Returns - ------- - str, list of str - If `ifr`, multiplicity of fragment `ifr`. Otherwise, multiplicity - of all fragments in list. - - """ - return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='multiplicity') - - -def get_frag_atom_count(efpobj, ifr=None): - """Gets atom count on fragment(s) of `efpobj`. - - Parameters - ---------- - ifr : int, optional - Index of fragment (0-indexed) if not all. - - Returns - ------- - str, list of str - If `ifr`, atom count of fragment `ifr`. Otherwise, atom counts - of all fragments in list. - - """ - return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='atom_count') - - -def get_frag_atoms(efpobj, ifr): - """Gets geometry information for atoms modeled by fragment in `efpobj`. - - Parameters - ---------- - ifr : int - Index of fragment (0-indexed). - - Returns - ------- - list of dict - Each atom in fragment `ifr` has position, charge, and element - fields below in a dictionary at list index `ifr` - ``Z`` (*float*) nuclear charge. - ``label`` (*str*) atom label from EFP file, e.g., A02H2. - ``x`` (*float*) X coordinate of atom position. - ``y`` (*float*) Y coordinate of atom position. - ``z`` (*float*) Z coordinate of atom position. - ``mass`` (*float*) atom mass [amu] - ``symbol`` (*str*) atomic symbol extracted from label. - - """ - nfr = efpobj.get_frag_count() - nat = efpobj.get_frag_atom_count(ifr) - - if ifr in range(nfr): - (res, atoms) = efpobj._efp_get_frag_atoms(ifr, nat) - _result_to_error(res) - - for at in atoms: - mobj = re.match(r'\AA\d*(?P[A-Z]{1,3})\d*\Z', at['label']) - if mobj: - at['symbol'] = mobj.group('symbol').capitalize() - return atoms - else: - raise PyEFPSyntaxError('Invalid fragment index for 0-indexed {}-fragment EFP: {}'.format(nfr, ifr)) - - -def get_atoms(efpobj): - #enum efp_result res; - #size_t frag_natom, natom=0; - #double frag_chg; - #int frag_mult; - #py::list fr, frt, frcg, frmp, full_atoms; - - natom = 0 - frag_count = efpobj.get_frag_count() - frag_natom = efpobj.get_frag_atom_count() - fr = [] - full_atoms = [] - for ifr in range(frag_count): - frat = frag_natom[ifr] - - fr.append([natom, natom + frat]) - natom += frat - - pyat = efpobj.get_frag_atoms(ifr) - full_atoms.extend(pyat) - - mol_info = {} - # mol_info["units"] = "Bohr" - mol_info["input_units_to_au"] = 1.0 - mol_info["fix_com"] = True - mol_info["fix_orientation"] = True - mol_info["fix_symmetry"] = "c1" - - mol_info['fragments'] = fr - mol_info['fragment_types'] = ['Real'] * frag_count - mol_info['fragment_charges'] = efpobj.get_frag_charge() - mol_info['fragment_multiplicities'] = efpobj.get_frag_multiplicity() - mol_info['full_atoms'] = full_atoms - - return mol_info - - -def to_viz_dict(efpobj): - - pyat = efpobj.get_atoms() - for at in pyat['full_atoms']: - at['ghosted'] = False - at['at_type'] = 'efpxyz' - mobj = re.match(r'\AA\d*(?P[A-Z]{1,3})\d*\Z', at['label']) - if mobj: - at['symbol'] = mobj.group('symbol').capitalize() - at['charge'] = at['Z'] - #pyat['molecule']['fragment_charges'].append(efpobj.get_frag_charges(fr) - #pyat['molecule']['fragment_multiplicities'].append(efpobj.get_frag_multiplicity(fr) - - return pyat - - -def get_frag_xyzabc(efpobj, ifr=None): - """Get the XYZABC coordinates hint on fragment(s) from `efpobj`. - - Parameters - ---------- - ifr : int, optional - Index of fragment (0-indexed) if not all. - - Returns - ------- - list, list of list - If `ifr`, hint for fragment `ifr`. Otherwise, hints of all - fragments in list. Note that fragments inputted through POINTS - will still be returned as XYZABC. Also, fragments inputted - through XYZABC will have the angles standardized to (-pi, pi]. - - """ - return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='xyzabc') - - -def to_dict(efpobj, dtype='psi4'): - molrec = {} - - nfr = efpobj.get_frag_count() - fnat = efpobj.get_frag_atom_count() - frs = functools.reduce(lambda c, x: c + [c[-1] + x], fnat, - [0])[1:] # np.cumsum(fnat) https://stackoverflow.com/a/33034961 - nat = frs[-1] - - molrec['units'] = 'Bohr' - molrec['fix_com'] = True - molrec['fix_orientation'] = True - - atommajor = efpobj.get_atoms()['full_atoms'] - geom = [] - for at in atommajor: - xyz = [at['x'], at['y'], at['z']] - geom.extend(xyz) - molrec['geom'] = geom - molrec['elea'] = [-1] * nat - molrec['elez'] = [int(at['Z']) for at in atommajor] - molrec['elem'] = [at['symbol'] for at in atommajor] - molrec['mass'] = [at['mass'] for at in atommajor] - molrec['real'] = [True] * nat - molrec['elbl'] = ['_' + at['label'].lower() for at in atommajor] - - molrec['fragment_separators'] = frs[:-1] - molrec['fragment_charges'] = efpobj.get_frag_charge() - molrec['fragment_multiplicities'] = efpobj.get_frag_multiplicity() - - def _high_spin_sum(mult_list): - mm = 1 - for m in mult_list: - mm += m - 1 - return mm - - molrec['molecular_charge'] = sum(molrec['fragment_charges']) - molrec['molecular_multiplicity'] = _high_spin_sum(molrec['fragment_multiplicities']) - molrec['provenance'] = provenance_stamp(__name__ + '.' + sys._getframe().f_code.co_name) - - molrec['fragment_files'] = [fl.lower() for fl in efpobj.get_frag_name()] - molrec['hint_types'] = ['xyzabc'] * nfr - molrec['geom_hints'] = efpobj.get_frag_xyzabc() - - return qcel.molparse.to_schema(molrec, dtype=dtype) - - -def old_to_dict(efpobj): - pysys = {} - pysys['full_fragments'] = [] - - for fr in range(efpobj.get_frag_count()): - pysys['full_fragments'].append({ - 'coordinates_hint': efpobj.get_frag_xyzabc(fr), - 'efp_type': 'xyzabc', - 'fragment_file': efpobj.get_frag_name(fr).lower(), - }) - - #pysys['molecule'] = { - # 'fix_com': True, - # 'fix_orientation': True, - # 'fix_symmetry': 'c1', - # 'fragment_charges': [], - # 'fragment_multiplicities': [], - # 'fragment_types': [], - # 'fragments': [], - # 'full_atoms': [], - # #'input_units_to_au': 1.8897261328856432, - # 'name': 'default', - # 'input_units_to_au': 1.0} - # #'units': 'Bohr'} - pysys['molecule'] = {'input_units_to_au': efpobj.input_units_to_au} - - return pysys - - -# only wrapped to throw Py exceptions -core.efp.prepare = prepare -core.efp.compute = compute - -core.efp.add_potential = add_potential -core.efp.add_fragment = add_fragment -core.efp.get_opts = get_opts -core.efp.set_opts = set_opts -core.efp.get_frag_count = get_frag_count -core.efp.get_energy = get_energy -core.efp.get_gradient = get_gradient -core.efp.energy_summary = energy_summary -core.efp.nuclear_repulsion_energy = nuclear_repulsion_energy -core.efp.to_viz_dict = to_viz_dict -core.efp.to_dict = to_dict -core.efp.get_frag_name = get_frag_name -core.efp.get_frag_charge = get_frag_charge -core.efp.get_frag_multiplicity = get_frag_multiplicity -core.efp.set_frag_coordinates = set_frag_coordinates -core.efp.set_point_charges = set_point_charges -core.efp.set_point_charge_coordinates = set_point_charge_coordinates -core.efp.set_point_charge_values = set_point_charge_values -core.efp.get_point_charge_count = get_point_charge_count -core.efp.get_point_charge_coordinates = get_point_charge_coordinates -core.efp.get_point_charge_values = get_point_charge_values -core.efp.get_multipole_count = get_multipole_count -core.efp.get_multipole_coordinates = get_multipole_coordinates -core.efp.get_multipole_values = get_multipole_values -core.efp.get_induced_dipole_count = get_induced_dipole_count -core.efp.get_induced_dipole_coordinates = get_induced_dipole_coordinates -core.efp.get_induced_dipole_values = get_induced_dipole_values -core.efp.get_induced_dipole_conj_values = get_induced_dipole_conj_values -core.efp.get_frag_atom_count = get_frag_atom_count -core.efp.get_wavefunction_dependent_energy = get_wavefunction_dependent_energy -core.efp.set_periodic_box = set_periodic_box -core.efp.get_periodic_box = get_periodic_box -core.efp.get_frag_xyzabc = get_frag_xyzabc - -core.efp.get_frag_atoms = get_frag_atoms -core.efp.get_atoms = get_atoms -core.efp.geometry_summary = geometry_summary -core.efp.gradient_summary = gradient_summary - - -def process_units(molrec): - """From any (not both None) combination of `units` and - `input_units_to_au`, returns both quantities validated. The degree - of checking is unnecessary if coming from a molrec (prevalidated and - guaranteed to have "units"), but function is general-purpose. - - """ - units = molrec.get('units', None) - input_units_to_au = molrec.get('input_units_to_au', None) - - b2a = qcel.constants.bohr2angstroms - a2b = 1. / b2a - - def perturb_check(candidate, reference): - return (abs(candidate, reference) < 0.05) - - if units is None and input_units_to_au is not None: - if perturb_check(input_units_to_au, 1.): - funits = 'Bohr' - fiutau = input_units_to_au - elif perturb_check(input_units_to_au, a2b): - funits = 'Angstrom' - fiutau = input_units_to_au - else: - raise PyEFPSyntaxError("""No big perturbations to physical constants! {} !~= ({} or {})""".format( - input_units_to_au, 1.0, a2b)) - - elif units in ['Angstrom', 'Bohr'] and input_units_to_au is None: - funits = units - - if funits == 'Bohr': - fiutau = 1. - elif funits == 'Angstrom': - fiutau = a2b - - elif units in ['Angstrom', 'Bohr'] and input_units_to_au is not None: - expected_iutau = a2b if units == 'Angstrom' else 1. - - if perturn_check(input_units_to_au, expected_iutau): - funits = units - fiutau = input_units_to_au - else: - raise PyEFPSyntaxError("""No big perturbations to physical constants! {} !~= {}""".format( - input_units_to_au, expected_iutau)) - - else: - raise PyEFPSyntaxError('Insufficient information: {} & {}'.format(units, input_units_to_au)) - - return funits, fiutau - - -def from_dict(efp_init): - """Instantiate an EFP object from `efp_init`. - - Parameters - ---------- - efp_init : nested dict - Dictionary of prescribed format to specify EFP fragments (no QM hints). - - Returns - ------- - :py:class:`pylibefp.core.efp` - New EFP instance with fragments defined and finished off through - :py:func:`pylibefp.core.efp.prepare`. - - """ - efpobj = core.efp() - - units, input_units_to_au = process_units(efp_init) - - def hint_to_au(hint, htype, iutau): - if htype == 'xyzabc': - return [(h * iutau if idx < 3 else h) for idx, h in enumerate(hint)] - elif htype == 'points': - return [h * iutau for h in hint] - - for ifr, (fl, ht, gh) in enumerate(zip(efp_init['fragment_files'], efp_init['hint_types'], - efp_init['geom_hints'])): - efpobj.add_potential(fl, duplicates_ok=True) - efpobj.add_fragment(fl) - hint = hint_to_au(gh, ht, input_units_to_au) - efpobj.set_frag_coordinates(ifr, ht, hint) - - #efpobj.input_units_to_au = efp_init['input_units_to_au'] - efpobj.input_units_to_au = input_units_to_au - efpobj.prepare() - return efpobj - - -def provenance_stamp(routine: str) -> Dict[str, str]: - """Return dictionary satisfying QCSchema, - https://github.com/MolSSI/QCSchema/blob/master/qcschema/dev/definitions.py#L23-L41 - with PylibEFP's credentials for creator and version. The - generating routine's name is passed in through `routine`. - - """ - from pylibefp import __version__ - return {'creator': 'PylibEFP', 'version': __version__, 'routine': routine} diff --git a/python/wrapper.py b/python/wrapper.py index f5cdf815..d413b324 100644 --- a/python/wrapper.py +++ b/python/wrapper.py @@ -99,18 +99,13 @@ def compute(efpobj, do_gradient=False): """ res = efpobj._efp_compute(do_gradient) _result_to_error(res) - # If pairwise is enabled, call the pairwise interaction calculator -# if efpobj.get_opts().get("enable_pairwise", False): -# nfrag = efpobj.get_frag_count() -# res2 = efpobj._efp_compute_pairwise_energy_range(0, nfrag) -# _result_to_error(res2) -# efpobj.print_pairwise_energies() + # If pairwise is enabled if efpobj.get_opts().get("enable_pairwise", False): if efpobj.get_opts().get("symmetry", False): - # Use the symmetry-aware two-body computation + # If symmetry, use two-body crystal res2 = efpobj._efp_compute_two_body_crystal() else: - # Use the regular pairwise energy range + # If not, two-body range nfrag = efpobj.get_frag_count() res2 = efpobj._efp_compute_pairwise_energy_range(0, nfrag) @@ -156,7 +151,7 @@ def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): for lst in [paths, library_paths]: for spth in '@libefp_FRAGLIB_DIRS@'.split(';'): lst.append(spth) - lst.append('/scratch/gilbreth/paulsk/backup/oglib/uplibefp2/fraglib') + lst.append('/scratch/gilbreth/paulsk/backup/branch_pylib/libefp/fraglib') #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib') #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib/databases') #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') @@ -270,6 +265,8 @@ def get_opts(efpobj, label='libefp'): dopts['spec_disp'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_DISP) # SKP dopts['spec_xr'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_XR) # SKP dopts['spec_chtr'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_CHTR) # SKP + dopts['spec_qq'] = bool(opts.terms & core.efp_special_term.EFP_SPEC_TERM_QQ) # SKP + dopts['spec_lj'] = bool(opts.terms & core.efp_special_term.EFP_SPEC_TERM_LJ) # SKP dopts['elec_damp'] = { core.EFP_ELEC_DAMP_SCREEN: 'screen', @@ -341,7 +338,8 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): allowed = [ 'elec', 'pol', 'disp', 'xr', 'elec_damp', 'pol_damp', 'disp_damp', 'enable_pbc', 'enable_cutoff', 'swf_cutoff', 'pol_driver', 'ai_elec', 'ai_pol', 'enable_pairwise', 'ligand', 'symmetry', - 'spec_elec', 'spec_pol', 'spec_disp', 'spec_xr', 'spec_chtr', 'ai_qq', 'qq', 'lj', 'special_fragment' # SKP + 'spec_elec', 'spec_pol', 'spec_disp', 'spec_xr', 'spec_qq', 'ai_qq', 'qq', 'lj', 'special_fragment', + 'spec_qq', 'spec_lj'# SKP ] label_allowed = [_lbtl[label].get(itm, itm) for itm in allowed] for key in dopts.keys(): @@ -436,6 +434,68 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): else: _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('spec_qq', 'spec_qq') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_special_term.EFP_SPEC_TERM_QQ + elif dopts[topic] in falses: + opts.terms &= ~core.efp_special_term.EFP_SPEC_TERM_QQ + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('spec_lj', 'spec_lj') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_special_term.EFP_SPEC_TERM_LJ + elif dopts[topic] in falses: + opts.terms &= ~core.efp_special_term.EFP_SPEC_TERM_LJ + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('spec_elec', 'spec_elec') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_special_term.EFP_SPEC_TERM_ELEC + elif dopts[topic] in falses: + opts.terms &= ~core.efp_special_term.EFP_SPEC_TERM_ELEC + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('spec_pol', 'spec_pol') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_special_term.EFP_SPEC_TERM_POL + elif dopts[topic] in falses: + opts.terms &= ~core.efp_special_term.EFP_SPEC_TERM_POL + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('spec_xr', 'spec_xr') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_special_term.EFP_SPEC_TERM_XR + elif dopts[topic] in falses: + opts.terms &= ~core.efp_special_term.EFP_SPEC_TERM_XR + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + + topic = _lbtl[label].get('spec_disp', 'spec_disp') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_special_term.EFP_SPEC_TERM_DISP + elif dopts[topic] in falses: + opts.terms &= ~core.efp_special_term.EFP_SPEC_TERM_DISP + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + #================================================================================================# # may be enabled in a future libefp release # topic = _lbtl[label].get('chtr', 'chtr') @@ -503,7 +563,7 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): else: _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) -# LIGAND - SKP +# LIGAND NUMBER - SKP topic = _lbtl[label].get('ligand', 'ligand') if topic in dopts: ligand_idx = dopts[topic] @@ -512,7 +572,16 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): if ligand_idx >= efpobj.get_frag_count(): raise ValueError(f"Invalid ligand index: {ligand_idx}, only {efpobj.get_frag_count()} fragments present.") opts.ligand = ligand_idx - + +# SPECIAL-FRAGMENT NUMBER - SKP + topic = _lbtl[label].get('special_fragment', 'special_fragment') + if topic in dopts: + special_frag_idx = dopts[topic] + if not isinstance(special_frag_idx, int): + raise TypeError(f"special_fragment value must be an integer, got: {special_frag_idx}") + if special_frag_idx >= efpobj.get_frag_count(): + raise ValueError(f"Invalid special_fragment index: {special_frag_idx}, only {efpobj.get_frag_count()} fragments present.") + opts.special_fragment = special_frag_idx topic = _lbtl[label].get('enable_cutoff', 'enable_cutoff') if topic in dopts: @@ -701,6 +770,13 @@ def get_energy(efpobj, label='libefp'): 'pol': ene.polarization, 'disp': ene.dispersion, 'qq': ene.qq, + 'lj':ene.lj, + 'spec_elec':ene.electrostatic, + 'spec_pol':ene.polarization, + 'spec_disp':ene.dispersion, + 'spec_xr':ene.exchange_repulsion, + 'spec_qq':ene.qq, + 'spec_lj':ene.lj, } return _rekey(energies, label=label) diff --git a/python/wrapper.py_og b/python/wrapper.py_og deleted file mode 100644 index 57a5ddbf..00000000 --- a/python/wrapper.py_og +++ /dev/null @@ -1,1708 +0,0 @@ -# -# @BEGIN LICENSE -# -# pylibefp/wrapper/wrapper.py: -# -# Copyright (c) 2017-2019 The Psi4 Developers -# -# All rights reserved. Use of this source code is governed by a -# BSD-style license that can be found in the LICENSE file. -# -# @END LICENSE -# - -import os -import re -import sys -import math -import functools -from pathlib import Path -from typing import Dict - -import qcelemental as qcel - -from . import core -from .exceptions import Fatal, NoMemory, FileNotFound, EFPSyntaxError, UnknownFragment, PolNotConverged, PyEFPSyntaxError - -_lbtl = { - 'libefp': {}, - 'psi': { - 'elec': 'elst', - 'pol': 'ind', - 'xr': 'exch', - 'elec_damp': 'elst_damping', - 'pol_damp': 'ind_damping', - 'disp_damp': 'disp_damping', - 'pol_driver': 'ind_driver', - 'ai_elec': 'qm_elst', - 'ai_pol': 'qm_ind', - 'ai_disp': 'qm_disp', - 'ai_xr': 'qm_exch', - 'ai_chtr': 'qm_chtr', - }, -} - - -def _rekey(rawdict, label): - newdict = rawdict.copy() - for key in rawdict.keys(): - topic = _lbtl[label].get(key, key) - newdict[topic] = newdict.pop(key) - return newdict - - -def _result_to_error(res, msg=''): - - if res == core.efp_result.EFP_RESULT_SUCCESS: - return - elif res == core.efp_result.EFP_RESULT_FATAL: - raise Fatal(msg) - elif res == core.efp_result.EFP_RESULT_NO_MEMORY: - raise NoMemory(msg) - elif res == core.efp_result.EFP_RESULT_FILE_NOT_FOUND: - raise FileNotFound(msg) - elif res == core.efp_result.EFP_RESULT_SYNTAX_ERROR: - raise EFPSyntaxError(msg) - elif res == core.efp_result.EFP_RESULT_UNKNOWN_FRAGMENT: - raise UnknownFragment(msg) - elif res == core.efp_result.EFP_RESULT_POL_NOT_CONVERGED: - raise PolNotConverged(msg) - - -def prepare(efpobj): - """Prepare the calculation after all fragments added. - - Returns - ------- - None - - """ - res = efpobj._efp_prepare() - _result_to_error(res) - - -def compute(efpobj, do_gradient=False): - """Perform the EFP computation. - - Parameters - ---------- - do_gradient : bool, optional - If True, compute the gradient in addition to energy. - - Returns - ------- - None - - """ - res = efpobj._efp_compute(do_gradient) - _result_to_error(res) - - -def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): - """Searches for EFP fragments and adds to `efpobj`. - - Parameters - ---------- - potential : str or list - Single fragment name or a list of fragments, with or without - ".efp" extension. - fragpath : string, optional - String with ":"-separated paths that may include absolute - paths, relative paths, "$"-marked environment variables, and - the word LIBRARY. Relative paths and environment variables will - be expanded. "LIBRARY" will be expanded to the native libefp - fragment library. - duplicates_ok : bool, optional - Whether to continue or to return pylibefp.Fatal if asked - to load a duplicate potential according to libefp default - behavior. The `potential` list is always filtered to avoid - duplicates. Activating `duplicates_ok` additionally allows - repeated calls to this function to add duplicate potentials. - - Returns - ------- - None - - .. versionchanged:: 1.9 - Now handles `_L` fragments by only looking in LIBRARY paths for these. - Also now handles "deep" library layouts. Unlike C libefp, a fragment - without _L extension is sought in all fraglib paths, including LIBRARY, - if present. - - """ - paths = [] - library_paths = [] - for pth in fragpath.split(os.pathsep): - if pth == 'LIBRARY': - for lst in [paths, library_paths]: - for spth in '@libefp_FRAGLIB_DIRS@'.split(';'): - lst.append(spth) - lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib') - lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib/databases') - lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') - lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib/databases') - for spth in '@FRAGLIB_DATADIRS@'.split(';'): - lst.append(str((Path('@CMAKE_CURRENT_SOURCE_DIR@') / '..' / spth).resolve())) - else: - paths.append(os.path.expandvars(os.path.expanduser(pth))) - - # locate efpfrags full path name - abspath_pots = [] - if isinstance(potential, str): - potential = [potential] - uniq_pots = list(set(potential)) - for pot in uniq_pots: - pathpot = Path(pot).with_suffix('.efp') - search_paths = [] - - if pathpot.stem.upper().endswith('_L'): - # if "frag_L", only search for "LIBRARY/frag.efp" - file_pot_name = pathpot.with_name(str(pathpot.stem)[:-2]).with_suffix('.efp') - for pth in library_paths: - search_paths.append((pth / file_pot_name).resolve()) - else: - # otherwise, search all "/frag.efp", possibly incl. LIBRARY - for pth in paths: - search_paths.append((pth / pathpot).resolve()) - - for pth in search_paths: - if pth.is_file(): - abspath_pots.append(str(pth)) - break - - # load the potentials - for ipot, pot in enumerate(abspath_pots): - res = efpobj._efp_add_potential(pot) - try: - _result_to_error(res, uniq_pots[ipot]) - except Fatal as e: - if duplicates_ok: - pass - else: - raise Fatal('Invalid fragment name (probably already added): {}'.format(uniq_pots[ipot])) - - print(r""" EFP fragment {} read from {}""".format(uniq_pots[ipot], pot)) - - -def add_fragment(efpobj, fragments): - """Registers EFP fragments to `efpobj` in order. - - Parameters - ---------- - fragments : list of str - Names of fragments to define the EFP subsystem. - - .. versionchanged:: 1.9 - Fragments are checking `_L` extensions for library files, too. - - Returns - ------- - None - - """ - if isinstance(fragments, str): - fragments = [fragments] - for frag in fragments: - res = efpobj._efp_add_fragment(frag) - try: - _result_to_error(res, frag) - except UnknownFragment as e: - res = efpobj._efp_add_fragment(frag + "_L") - _result_to_error(res, frag) - - -def get_opts(efpobj, label='libefp'): - """Returns the options state of *efpobj* as a dictionary. - - Parameters - ---------- - label : {'libefp', 'psi'}, optional - Returned dictionary keys are identical to libefp efp_opts struct - names unless custom renaming requested via `label`. - - Returns - ------- - dict - Current options state of `efpobj` translated into bools, strings, - and floats, rather than libefp custom datatypes. - - """ - opts = core.efp_opts() - res = efpobj._efp_get_opts(opts) - _result_to_error(res) - - dopts = {} - - dopts['elec'] = bool(opts.terms & core.efp_term.EFP_TERM_ELEC) - dopts['pol'] = bool(opts.terms & core.efp_term.EFP_TERM_POL) - dopts['disp'] = bool(opts.terms & core.efp_term.EFP_TERM_DISP) - dopts['xr'] = bool(opts.terms & core.efp_term.EFP_TERM_XR) - dopts['chtr'] = bool(opts.terms & core.efp_term.EFP_TERM_CHTR) - - dopts['elec_damp'] = { - core.EFP_ELEC_DAMP_SCREEN: 'screen', - core.EFP_ELEC_DAMP_OVERLAP: 'overlap', - core.EFP_ELEC_DAMP_OFF: 'off', - }[opts.elec_damp] - - dopts['pol_damp'] = { - core.EFP_POL_DAMP_TT: 'tt', - core.EFP_POL_DAMP_OFF: 'off', - }[opts.pol_damp] - - dopts['disp_damp'] = { - core.EFP_DISP_DAMP_TT: 'tt', - core.EFP_DISP_DAMP_OVERLAP: 'overlap', - core.EFP_DISP_DAMP_OFF: 'off', - }[opts.disp_damp] - - dopts['enable_pbc'] = bool(opts.enable_pbc) - dopts['enable_cutoff'] = bool(opts.enable_cutoff) - dopts['swf_cutoff'] = opts.swf_cutoff - - dopts['pol_driver'] = { - core.EFP_POL_DRIVER_ITERATIVE: 'iterative', - core.EFP_POL_DRIVER_DIRECT: 'direct', - }[opts.pol_driver] - - dopts['ai_elec'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_ELEC) - dopts['ai_pol'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_POL) - dopts['ai_disp'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_DISP) - dopts['ai_xr'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_XR) - dopts['ai_chtr'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_CHTR) - - return _rekey(dopts, label=label) - - -def set_opts(efpobj, dopts, label='libefp', append='libefp'): - """Sets the options state of `efpobj` from dictionary `dopts`. - - Parameters - ---------- - dopts : dict - Input dict with keys from libefp efp_opts (see `label`) and - values bools, strings, floats, and ints, as appropriate, rather - than libefp custom datatypes. - label : {'libefp', 'psi'}, optional - Input `dopts` keys are read as libefp efp_opts struct names or - by the custom translation set defined for `label`. - append : {'libefp', 'psi', 'append'}, optional - When ``libefp``, input `dopts` keys are applied to the default - (generally OFF) efp_opts state. When ``psi``, input `dopts` - keys are applied to the default (generally ON) Psi efp_opts - state. When ``append``, input `dopts` keys are applied to the - current *efpobj* opt_opts state. - - Returns - ------- - dict - After setting the options state, `efpobj` is queried as to the - current options state, which is then returned. - - """ - # warn on stray dopts keys - allowed = [ - 'elec', 'pol', 'disp', 'xr', 'elec_damp', 'pol_damp', 'disp_damp', 'enable_pbc', 'enable_cutoff', 'swf_cutoff', - 'pol_driver', 'ai_elec', 'ai_pol' - ] - label_allowed = [_lbtl[label].get(itm, itm) for itm in allowed] - for key in dopts.keys(): - if key not in label_allowed: - print('Warning: unrecognized key {}'.format(key)) - trues = [True, 1, 'yes', 'true', 'on'] - falses = [False, 0, 'no', 'false', 'off'] - - # prepare base options state for dopts - opts = core.efp_opts() - if append == 'libefp': - pass - elif append == 'psi': - opts.terms |= core.efp_term.EFP_TERM_ELEC - opts.terms |= core.efp_term.EFP_TERM_POL - opts.terms |= core.efp_term.EFP_TERM_DISP - opts.terms |= core.efp_term.EFP_TERM_XR - opts.elec_damp = core.EFP_ELEC_DAMP_SCREEN - opts.pol_damp = core.EFP_POL_DAMP_TT - opts.disp_damp = core.EFP_DISP_DAMP_OVERLAP - opts.terms |= core.efp_term.EFP_TERM_AI_ELEC - opts.terms |= core.efp_term.EFP_TERM_AI_POL - #elif append == 'qchem': - # # q-chem and psi4 have different defaults for at least this option - # opts.disp_damp = core.EFP_DISP_DAMP_TT - elif append == 'append': - res = efpobj._efp_get_opts(opts) - _result_to_error(res) - else: - raise PyEFPSyntaxError('Unrecognized opts default set: {}'.format(append)) - - # apply dopts to options state - topic = _lbtl[label].get('elec', 'elec') - if topic in dopts: - if dopts[topic] in trues: - opts.terms |= core.efp_term.EFP_TERM_ELEC - elif dopts[topic] in falses: - opts.terms &= ~core.efp_term.EFP_TERM_ELEC - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('pol', 'pol') - if topic in dopts: - if dopts[topic] in trues: - opts.terms |= core.efp_term.EFP_TERM_POL - elif dopts[topic] in falses: - opts.terms &= ~core.efp_term.EFP_TERM_POL - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('disp', 'disp') - if topic in dopts: - if dopts[topic] in trues: - opts.terms |= core.efp_term.EFP_TERM_DISP - elif dopts[topic] in falses: - opts.terms &= ~core.efp_term.EFP_TERM_DISP - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('xr', 'xr') - if topic in dopts: - if dopts[topic] in trues: - opts.terms |= core.efp_term.EFP_TERM_XR - elif dopts[topic] in falses: - opts.terms &= ~core.efp_term.EFP_TERM_XR - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - - # may be enabled in a future libefp release - # topic = _lbtl[label].get('chtr', 'chtr') - - topic = _lbtl[label].get('elec_damp', 'elec_damp') - if topic in dopts: - try: - opts.elec_damp = { - 'screen': core.EFP_ELEC_DAMP_SCREEN, - 'overlap': core.EFP_ELEC_DAMP_OVERLAP, - 'off': core.EFP_ELEC_DAMP_OFF, - }[dopts[topic].lower()] - except KeyError: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [screen/overlap/off] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('pol_damp', 'pol_damp') - if topic in dopts: - try: - opts.pol_damp = { - 'tt': core.EFP_POL_DAMP_TT, - 'off': core.EFP_POL_DAMP_OFF, - }[dopts[topic].lower()] - except KeyError: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [tt/off] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('disp_damp', 'disp_damp') - if topic in dopts: - try: - opts.disp_damp = { - 'overlap': core.EFP_DISP_DAMP_OVERLAP, - 'tt': core.EFP_DISP_DAMP_TT, - 'off': core.EFP_DISP_DAMP_OFF, - }[dopts[topic].lower()] - except KeyError: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [overlap/tt/off] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('enable_pbc', 'enable_pbc') - if topic in dopts: - if dopts[topic] in trues: - opts.enable_pbc = 1 - elif dopts[topic] in falses: - opts.enable_pbc = 0 - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('enable_cutoff', 'enable_cutoff') - if topic in dopts: - if dopts[topic] in trues: - opts.enable_cutoff = 1 - elif dopts[topic] in falses: - opts.enable_cutoff = 0 - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('swf_cutoff', 'swf_cutoff') - if topic in dopts: - opts.swf_cutoff = float(dopts[topic]) - - topic = _lbtl[label].get('pol_driver', 'pol_driver') - if topic in dopts: - try: - opts.pol_driver = { - 'iterative': core.EFP_POL_DRIVER_ITERATIVE, - 'direct': core.EFP_POL_DRIVER_DIRECT, - }[dopts[topic].lower()] - except KeyError: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [iterative/direct] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('ai_elec', 'ai_elec') - if topic in dopts: - if dopts[topic] in trues: - opts.terms |= core.efp_term.EFP_TERM_AI_ELEC - elif dopts[topic] in falses: - opts.terms &= ~core.efp_term.EFP_TERM_AI_ELEC - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - - topic = _lbtl[label].get('ai_pol', 'ai_pol') - if topic in dopts: - if dopts[topic] in trues: - opts.terms |= core.efp_term.EFP_TERM_AI_POL - elif dopts[topic] in falses: - opts.terms &= ~core.efp_term.EFP_TERM_AI_POL - else: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) - - # may be enabled in a future libefp release - # topic = _lbtl[label].get('ai_disp', 'ai_disp') - # topic = _lbtl[label].get('ai_xr', 'ai_xr') - # topic = _lbtl[label].get('ai_chtr', 'ai_chtr') - - # set computed options state - res = efpobj._efp_set_opts(opts) - _result_to_error(res) - - return efpobj.get_opts(label=label) - - -def set_periodic_box(efpobj, xyz, alpha=90.0, beta=90.0, gamma=90.0): - """Set periodic box size. - - Parameters - ---------- - xyz : list - (3,) Box sizes in three dimensions [x, y, z] in Bohr. - alpha - Unit cell alpha angle in degrees. - beta - Unit cell beta angle in degrees. - gamma - Unit cell gamma angle in degrees. - - Returns - ------- - None - - .. versionchanged:: 1.9 - Parameters alpha, beta, and gamma added. - - """ - if len(xyz) != 3: - raise PyEFPSyntaxError('Invalid periodic box setting: {}'.format(xyz)) - - res = efpobj._efp_set_periodic_box(xyz[0], xyz[1], xyz[2], alpha, beta, gamma) - _result_to_error(res) - (res, xyzabc) = efpobj._efp_get_periodic_box() - _result_to_error(res) - - -def get_periodic_box(efpobj): - """Get periodic box size. - - Returns - ------- - list - Box sizes in three dimensions [x, y, z] in Bohr. - And box angles [alpha, beta, gamma] in degrees. - - .. versionchanged:: 1.9 - Return size extended from 3 to 6 to include angles. - - """ - (res, xyzabc) = efpobj._efp_get_periodic_box() - _result_to_error(res) - - return xyzabc - - -#def opts_summary(efpobj, labels='libefp'): -# -# opts = efpobj.get_opts() -## py::dict opts = opts_to_dict(efp); -# -# elec = 'Electrostatics' -# xr = 'Exchange' -# disp = 'Dispersion' -# if labels == 'libefp': -# pol = 'Polarization' -# elif labels == 'psi4': -# pol = 'Induction' -# -# text = '' -# text += '\n ==> EFP/EFP Setup <==\n\n' -# text += ' {:<30} {:12}\n'.format(elec + ' enabled?:', 'true' if opts["elec"] else 'false') -# text += ' {:<30} {:12}\n'.format(pol + ' enabled?:', 'true' if opts["pol"] else 'false') -# text += ' {:<30} {:12}\n'.format(disp + ' enabled?:', 'true' if opts["disp"] else 'false') -# text += ' {:<30} {:12}\n'.format(xr + ' enabled?:', 'true' if opts["xr"] else 'false') -# text += ' {:<30} {:12}\n'.format('Charge-Transfer enabled?:', 'undefined') -# -# text += '\n {:<30} {:12}\n'.format(elec + ' damping:', opts["elec_damp"]) -# text += ' {:<30} {:12}\n'.format(pol + 'damping:', opts["pol_damp"]) -# text += ' {:<30} {:12}\n'.format(disp + ' damping:', opts["disp_damp"]) -# text += ' {:<30} {:12}\n'.format(pol + ' driver:', opts["pol_driver"]) -# -# text += '\n ==> QM/EFP Setup <==\n\n' -##// sprintf(buffer, " Number of QM fragments: %12d\n", -1); //, nfrag_); -# text += ' Electrostatics enabled?: {:12}\n'.format('true' if opts["ai_elec"] else 'false') -# text += ' Polarization enabled?: {:12}\n'.format('true' if opts["ai_pol"] else 'false') -# text += ' Dispersion enabled?: {:12}\n'.format('undefined') -# text += ' Exchange enabled?: {:12}\n'.format('undefined') -# text += ' Charge-Transfer enabled?: {:12}\n'.format('undefined') -# -# return text - - -def get_energy(efpobj, label='libefp'): - """Gets the energy components from `efpobj` computation as a dictionary. - - Parameters - ---------- - label : {'libefp', 'psi'}, optional - Returned dictionary keys are identical to libefp efp_energy struct - names plus elec, pol, disp, xr, & total components unless custom renaming - requested via `label`. - - Returns - ------- - dict - Individual terms, summed components, and total energies. - - """ - ene = core.efp_energy() - res = efpobj._efp_get_energy(ene) - _result_to_error(res) - - energies = { - 'electrostatic': ene.electrostatic, - 'charge_penetration': ene.charge_penetration, - 'electrostatic_point_charges': ene.electrostatic_point_charges, - 'polarization': ene.polarization, - 'dispersion': ene.dispersion, - 'exchange_repulsion': ene.exchange_repulsion, - 'total': ene.total, - 'elec': ene.electrostatic + ene.charge_penetration + ene.electrostatic_point_charges, - 'xr': ene.exchange_repulsion, - 'pol': ene.polarization, - 'disp': ene.dispersion, - } - - return _rekey(energies, label=label) - - -def get_frag_count(efpobj): - """Gets the number of fragments in `efpobj` computation. - - Returns - ------- - int - Number of fragments in calculation. - - """ - (res, nfrag) = efpobj._efp_get_frag_count() - _result_to_error(res) - - return nfrag - - -def get_multipole_count(efpobj): - """Gets the number of multipoles in `efpobj` computation. - - Returns - ------- - int - Total number of multipoles from electrostatics calculation. - - """ - (res, nmult) = efpobj._efp_get_multipole_count() - _result_to_error(res) - - return nmult - - -def get_multipole_coordinates(efpobj, verbose=1): - """Gets the coordinates of `efpobj` electrostatics multipoles. - - Parameters - ---------- - verbose : int, optional - Whether to print out the multipole coordinates. 0: no printing. 1: - print charges and dipoles. 2: additionally print quadrupoles - and octupoles. - - Returns - ------- - list - ``3 n_mult`` (flat) array of multipole locations. - - Examples - -------- - - >>> # Use with NumPy - >>> n_mult = efpobj.get_multipole_count() - >>> xyz_mult = np.asarray(efpobj.get_multipole_coordinates()).reshape(n_mult, 3) - - """ - nmult = efpobj.get_multipole_count() - (res, xyz) = efpobj._efp_get_multipole_coordinates(nmult) - _result_to_error(res) - - if verbose >= 1: - xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) - - text = '\n ==> EFP Multipole Coordinates <==\n\n' - for mu in range(nmult): - text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) - print(text) - - return xyz - - -def get_multipole_values(efpobj, verbose=1): - """Gets the computed per-point multipoles of `efpobj`. - - Parameters - ---------- - verbose : int, optional - Whether to print out the multipole arrays. 0: no printing. 1: - print charges and dipoles. ``2``: additionally print quadrupoles - and octupoles. - - Returns - ------- - list - ``20 n_mult`` (flat) array of per-point multipole values including - charges + dipoles + quadrupoles + octupoles. - Dipoles stored as x, y, z. - Quadrupoles stored as xx, yy, zz, xy, xz, yz. - Octupoles stored as xxx, yyy, zzz, xxy, xxz, xyy, yyz, xzz, yzz, xyz. - - Examples - -------- - >>> # Use with NumPy - >>> n_mult = efpobj.get_multipole_count() - >>> val_mult = np.asarray(efpobj.get_multipole_values()).reshape(n_mult, 20) - - """ - nmult = efpobj.get_multipole_count() - (res, mult) = efpobj._efp_get_multipole_values(nmult) - _result_to_error(res) - - if verbose >= 1: - mult20 = list(map(list, zip(*[iter(mult)] * 20))) - - text = '\n ==> EFP Multipoles: Charge & Dipole <==\n\n' - for mu in range(nmult): - text += '{:6d} {:14.8f} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *mult20[mu][:4]) - - if verbose >= 2: - text += '\n ==> EFP Multipoles: Quadrupole <==\n\n' - for mu in range(nmult): - text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format(mu, *mult20[mu][4:10]) - text += '\n ==> EFP Multipoles: Octupole <==\n\n' - for mu in range(nmult): - text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format( - mu, *mult20[mu][10:]) - print(text) - - return mult - - -def get_induced_dipole_count(efpobj): - """Gets the number of polarization induced dipoles in `efpobj` computation. - - Returns - ------- - int - Total number of polarization induced dipoles. - - """ - (res, ndip) = efpobj._efp_get_induced_dipole_count() - _result_to_error(res) - - return ndip - - -def get_induced_dipole_coordinates(efpobj, verbose=1): - """Gets the coordinates of `efpobj` induced dipoles. - - Parameters - ---------- - verbose : int, optional - Whether to print out the multipole arrays. 0: no printing. 1: - print induced dipole coordinates. - - Returns - ------- - list - (3 * n_dip, ) (flat) array of induced dipole locations. - - """ - ndip = efpobj.get_induced_dipole_count() - (res, xyz) = efpobj._efp_get_induced_dipole_coordinates(ndip) - _result_to_error(res) - - if verbose >= 1: - xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) - - text = '\n ==> EFP Induced Dipole Coordinates <==\n\n' - for mu in range(ndip): - text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) - print(text) - - return xyz - - -def get_induced_dipole_values(efpobj, verbose=1): - """Gets the values of polarization induced dipoles of `efpobj`. - - Parameters - ---------- - verbose : int, optional - Whether to print out the induced dipole arrays. 0: no - printing. 1: print induced dipole values. - - Returns - ------- - list - ``3*n_dip`` (flat) array of polarization induced dipole values. - - Examples - -------- - >>> # Use with NumPy - >>> n_dip = efpobj.get_induced_dipole_count() - >>> val_dip = np.asarray(efpobj.get_induced_dipole_values()).reshape(n_dip, 3) - - """ - ndip = efpobj.get_induced_dipole_count() - (res, vals) = efpobj._efp_get_induced_dipole_values(ndip) - _result_to_error(res) - - if verbose >= 1: - vals3 = list(map(list, zip(*[iter(vals)] * 3))) - - text = '\n ==> EFP Induced Dipoles <==\n\n' - for mu in range(ndip): - text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *vals3[mu]) - print(text) - - return vals - - -def get_induced_dipole_conj_values(efpobj, verbose=1): - """Gets the values of polarization conjugated induced dipoles of `efpobj`. - - Parameters - ---------- - verbose : int, optional - Whether to print out the induced dipole conj arrays. - 0: no printing. 1: print induced dipole values. - - Returns - ------- - list - 3 x n_dip (flat) array of conjugate induced dipole values. - - """ - ndip = efpobj.get_induced_dipole_count() - (res, vals) = efpobj._efp_get_induced_dipole_conj_values(ndip) - _result_to_error(res) - - if verbose >= 1: - vals3 = list(map(list, zip(*[iter(vals)] * 3))) - - text = '\n ==> EFP Conj. Induced Dipoles <==\n\n' - for mu in range(ndip): - text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *vals3[mu]) - print(text) - - return vals - - -def get_point_charge_count(efpobj): - """Gets the number of set point charges `efpobj`. - - Returns - ------- - int - Total number of set point charges. - - """ - (res, nptc) = efpobj._efp_get_point_charge_count() - _result_to_error(res) - - return nptc - - -def get_point_charge_coordinates(efpobj, verbose=1): - """Gets the coordinates of set point charges on `efpobj`. - - Parameters - ---------- - verbose : int, optional - Whether to print out the point charge arrays. 0: no printing. - 1: print point charge coordinates. - - Returns - ------- - list - 3 x n_ptc (flat) array of point charge locations. - - """ - nptc = efpobj.get_point_charge_count() - (res, xyz) = efpobj._efp_get_point_charge_coordinates(nptc) - _result_to_error(res) - - if verbose >= 1: - xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) - - text = '\n ==> EFP Point Charge Coordinates <==\n\n' - for mu in range(nptc): - text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) - print(text) - - return xyz - - -def get_point_charge_values(efpobj, verbose=1): - """Gets the values of set point charges on `efpobj`. - - Parameters - ---------- - verbose : int, optional - Whether to print out the point charge arrays. 0: no - printing. 1: print point charge values. - - Returns - ------- - list - ``n_ptc`` array of point charge values. - - Examples - -------- - >>> # Use with NumPy - >>> val_ptc = np.asarray(efpobj.get_point_charge_values()) - - """ - nptc = efpobj.get_point_charge_count() - (res, vals) = efpobj._efp_get_point_charge_values(nptc) - _result_to_error(res) - - if verbose >= 1: - text = '\n ==> EFP Point Charges <==\n\n' - for mu in range(nptc): - text += '{:6d} {:14.8f}\n'.format(mu, vals[mu]) - print(text) - - return vals - - -def get_wavefunction_dependent_energy(efpobj): - """Updates wavefunction-dependent energy terms for SCF. - - Returns - ------- - float - Wavefunction-dependent EFP energy. - - """ - (res, wde) = efpobj._efp_get_wavefunction_dependent_energy() - _result_to_error(res) - - return wde - - -def get_gradient(efpobj): - """Gets the computed per-fragment EFP energy gradient of `efpobj`. - - Returns - ------- - list - ``6 x n_frag`` array of per-fragment negative force and torque. - - """ - nfrag = efpobj.get_frag_count() - (res, grad) = efpobj._efp_get_gradient(nfrag) - _result_to_error(res) - - return grad - - -def gradient_summary(efpobj): - """Gets the computed per-fragment EFP energy gradient of `efpobj`. - - Returns - ------- - str - Formatted text of the `6 x n_frag` gradient and torque. - - """ - grad = efpobj.get_gradient() - grad6 = list(map(list, zip(*[iter(grad)] * 6))) - - text = '\n ==> EFP Gradient & Torque <==\n\n' - for fr in grad6: - text += '{:14.8f} {:14.8f} {:14.8f} {:14.8f} {:14.8f} {:14.8f}\n'.format(*fr) - - text += '\n' - return text - - -def energy_summary(efpobj, label='libefp', scfefp=None): - """Forms summary of EFP and SCFEFP energy components from `efpobj`. - - Parameters - ---------- - label : {'libefp', 'psi'}, optional - Text labels use libefp terms names unless custom renaming - requested via `label`. - scfefp : float, optional - Total SCF energy (Hartrees) including EFP wavefunction dependent - and wavefunction independent terms. Used for add'l printing. - - Returns - ------- - str - Summary suitable for printing indicating energy components - (electrostatics, exchange, induction, dispersion, total), whether - each are enabled in options, and breakdown into pure-EFP and - QM-EFP, where available. If scfefp, includes a section on SCF - iterated and SCF total. - - """ - opt = efpobj.get_opts() - ene = efpobj.get_energy() - - def _enabled(tf, t='*', f='', suffix=''): - if tf: - return t + suffix - else: - return f - - elec = 'Electrostatics' - disp = 'Dispersion' - if label == 'libefp': - xr = 'Exchange-Repulsion' - indc = 'Polarization' - elif label == 'psi': - xr = 'Exchange' - indc = 'Induction' - - # yapf: disable - text = '\n' - text += '\n EFP Results\n' - text += ' ------------------------------------------------------------\n' - text += ' {:<30}{:20.12f} [Eh] {}\n'.format(elec, ene['electrostatic'] + - ene['charge_penetration'] + - ene['electrostatic_point_charges'], - _enabled(opt['elec'] or opt['ai_elec'], - suffix=(' (' + opt['elec_damp'] + ' damping)'))) - text += ' {:<28}{:20.12f} [Eh] {}\n'.format('EFP/EFP', ene['electrostatic'] + - ene['charge_penetration'], - _enabled(opt['elec'])) - text += ' {:<28}{:20.12f} [Eh] {}\n'.format('QM-Nuc/EFP', - ene['electrostatic_point_charges'], - _enabled(opt['ai_elec'])) - text += '\n {:<30}{:20.12f} [Eh] {}\n'.format(xr, ene['exchange_repulsion'], - _enabled(opt['xr'])) - text += ' {:<28}{:20.12f} [Eh] {}\n'.format('EFP/EFP', ene['exchange_repulsion'], - _enabled(opt['xr'])) - text += ' {:<28}{:20.12f} [Eh] {}\n'.format('QM/EFP', 0.0, '') - text += '\n {:<30}{:20.12f} [Eh] {}\n'.format(indc, ene['polarization'], - _enabled(opt['pol'] or opt['ai_pol'], - suffix=(' (' + opt['pol_damp'] + ' damping)'))) - text += ' {:<28}{:20.12f} [Eh] {}\n'.format(_enabled(opt['ai_pol'], t='QM/EFP', f='EFP/EFP'), - ene['polarization'], - _enabled(opt['pol'] or opt['ai_pol'])) - text += '\n {:<30}{:20.12f} [Eh] {}\n'.format(disp, ene['dispersion'], - _enabled(opt['disp'], - suffix=(' (' + opt['disp_damp'] + ' damping)'))) - text += ' {:<28}{:20.12f} [Eh] {}\n'.format('EFP/EFP', ene['dispersion'], - _enabled(opt['disp'])) - text += ' {:<28}{:20.12f} [Eh] {}\n'.format('QM/EFP', 0.0, '') - text += '\n {:<30}{:20.12f} [Eh]\n'.format('Total EFP', ene['total']) - # yapf: enable - if scfefp is not None: - wie = ene['total'] - ene['pol'] - text += ' EFP excluding EFP {:<12}{:20.12f} [Eh]\n'.format(indc, wie) - text += ' SCF including EFP {:<12}{:20.12f} [Eh]\n'.format(indc, scfefp - wie) - text += ' Total SCF including Total EFP {:20.12f} [Eh]\n'.format(scfefp) - - text += '\n' - return text - - -def geometry_summary(efpobj, units_to_bohr=1.0): - """Formatted geometry and fragments for `efpobj`. - - Parameters - ---------- - units_to_bohr : float,optional - Conversion factor for printing; for Angstroms, approx. 0.529177. - - Returns - ------- - str - Summary of EFP geometry & point charges (QM atoms) suitable for printing. - - """ - text = '' - text += '\n ==> EFP Geometry <==\n\n' - text += ' Geometry (in {} * {:12.8f}):\n\n'.format('Bohr', units_to_bohr) - text += ' Center X Y Z QM/EFP\n' - text += ' ------------ ----------------- ----------------- ----------------- ------------\n' - - mol_info = efpobj.get_atoms() - terminal_frag = [fr[0] for fr in mol_info['fragments'][1:]] - frag_names = efpobj.get_frag_name() - - ifr = 0 - for iat, at in enumerate(mol_info['full_atoms']): - if iat in terminal_frag: - text += ' --\n' - ifr += 1 - text += ' {:8}{:4} {:17.12f} {:17.12f} {:17.12f} {}\n'.format(at['symbol'], '', - at['x'] * units_to_bohr, - at['y'] * units_to_bohr, - at['z'] * units_to_bohr, - frag_names[ifr].lower()) - - # TODO move into dict? - ptc_info = { - 'n': efpobj.get_point_charge_count(), - 'xyz': efpobj.get_point_charge_coordinates(verbose=0), - 'val': efpobj.get_point_charge_values(verbose=0) - } - - if ptc_info['n'] > 0: - mult3 = list(map(list, zip(*[iter(ptc_info['xyz'])] * 3))) - text += ' ------------\n' - for ptc in range(ptc_info['n']): - text += ' {:8}{:4} {:17.12f} {:17.12f} {:17.12f} {}\n'.format(ptc_info['val'][ptc], '', - mult3[ptc][0] * units_to_bohr, - mult3[ptc][1] * units_to_bohr, - mult3[ptc][2] * units_to_bohr, - 'point_charge') - - text += '\n' - return text - - -def nuclear_repulsion_energy(efpobj, use_efp_frags=True, use_point_charges=False): - """Computes nuclear repulsion energy for `efpobj`. - - Parameters - ---------- - use_efp_frags : bool, optional - If True (default), compute NRE using the efp fragment subsystem. - use_point_charges : bool, optional - If True (not default), include point charges (generally QM atoms) - in NRE computation. - - Returns - ------- - float - Nuclear repulsion energy [E_h] for specified geometry subsystem - - """ - nre = 0.0 - loc = [] - - if use_efp_frags: - loc.extend(efpobj.get_atoms()['full_atoms']) - if use_point_charges: - ptc_xyz = efpobj.get_point_charge_coordinates(verbose=0) - ptc_val = efpobj.get_point_charge_values(verbose=0) - for ptc in range(efpobj.get_point_charge_count()): - loc.append({ - 'Z': ptc_val[ptc], - 'x': ptc_xyz[ptc * 3], - 'y': ptc_xyz[ptc * 3 + 1], - 'z': ptc_xyz[ptc * 3 + 2] - }) - - for iat1, at1 in enumerate(loc): - for iat2, at2 in enumerate(loc): - if iat2 < iat1: - ZZ = at1['Z'] * at2['Z'] - dx = at1['x'] - at2['x'] - dy = at1['y'] - at2['y'] - dz = at1['z'] - at2['z'] - dist = math.sqrt(dx * dx + dy * dy + dz * dz) - nre += ZZ / dist - - return nre - - -#def _frag_idx_validation(efpobj, ifr): -# nfr = efpobj.get_frag_count() -# if (ifr < 0) or (ifr >= nfr): -# raise PyEFPSyntaxError('Invalid fragment index for 0-indexed {}-fragment EFP: {}'.format(nfr, ifr)) - - -def set_frag_coordinates(efpobj, ifr, ctype, coord): - """Set fragment orientation on `efpobj` from hint. - - Parameters - ---------- - ifr : int - Index of fragment (0-indexed). - ctype : core.efp_coord_type or str {'xyzabc', 'points', 'rotmat'} - Type of coodinates hint among ``xyzabc``, `points`, & `rotmat`. - coord : list of floats - 6-, 9-, or 12-element hint of coordinates. - - Returns - ------- - None - - """ - if isinstance(ctype, str): - try: - ctype = { - 'xyzabc': core.EFP_COORD_TYPE_XYZABC, - 'points': core.EFP_COORD_TYPE_POINTS, - 'rotmat': core.EFP_COORD_TYPE_ROTMAT, - }[ctype.lower()] - except KeyError: - _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [xyzabc/points/rotmat] {}: {}'.format('ctype', ctype)) - - efpobj.input_units_to_au = 1.0 - res = efpobj._efp_set_frag_coordinates(ifr, ctype, coord) - _result_to_error(res) - - -def set_point_charge_coordinates(efpobj, xyz): - """Reset arbitrary point charge locations (often QM atoms) - interacting with the EFP subsystem. Must have been initially set - with set_point_charges. - - Parameters - ---------- - xyz : list - ``3 * n_ptc`` array of XYZ coordinates of charge positions, - generally QM coordinates. - - Returns - ------- - None - - """ - n_ptc = efpobj.get_point_charge_count() - if n_ptc == 0: - raise PyEFPSyntaxError('Must initialize point charges with set_point_charges') - if len(xyz) != (3 * n_ptc): - raise PyEFPSyntaxError('Invalid point charge length: {}'.format(xyz)) - - res = efpobj._efp_set_point_charge_coordinates(len(xyz), xyz) - _result_to_error(res) - - -def set_point_charge_values(efpobj, ptc): - """Reset arbitrary point charge values (often QM atoms) - interacting with the EFP subsystem. Must have been initially set - with set_point_charges. - - Parameters - ---------- - ptc : list of float - array of charge values, generally QM nuclear charges. - - Returns - ------- - None - - """ - n_ptc = efpobj.get_point_charge_count() - if n_ptc == 0: - raise PyEFPSyntaxError('Must initialize point charges with set_point_charges') - if len(ptc) != n_ptc: - raise PyEFPSyntaxError('Invalid point charge length: {}'.format(ptc)) - - res = efpobj._efp_set_point_charge_values(len(ptc), ptc) - _result_to_error(res) - - -def set_point_charges(efpobj, ptc, coord): - """Sets arbitrary point charges (often QM atoms) interacting with the - EFP subsystem. - - Parameters - ---------- - ptc : list - (n_ptc, ) array of charge values, generally QM Z. - coord : list - (3 * n_ptc, ) or (n_ptc, 3) array (that is, flat or nested) - of XYZ coordinates [a0] of charge positions, generally QM coordinates. - - Returns - ------- - None - - """ - if len(ptc) == len(coord): - coord = sum(coord, []) - - if (len(ptc) * 3) != len(coord): - raise PyEFPSyntaxError('Invalid point charges setting: {}'.format(coord)) - - res = efpobj._efp_set_point_charges(len(ptc), ptc, coord) - _result_to_error(res) - - -def get_frag_name(efpobj, ifr=None): - """Gets system name on fragment(s) of `efpobj`. - - Parameters - ---------- - ifr : int, optional - Index of fragment (0-indexed) if not all. - - Returns - ------- - str, list of str - If `ifr`, name of fragment `ifr`. Otherwise, names of all - fragments in list. - - """ - return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='name') - - -def _get_frag_common(efpobj, ifr, topic): - nfr = efpobj.get_frag_count() - - fn_mapper = { - 'name': efpobj._efp_get_frag_name, - 'charge': efpobj._efp_get_frag_charge, - 'xyzabc': efpobj._efp_get_frag_xyzabc, - 'atom_count': efpobj._efp_get_frag_atom_count, - 'multiplicity': efpobj._efp_get_frag_multiplicity, - } - - if ifr is None: - frags = [] - for fr in range(nfr): - (res, ftopic) = fn_mapper[topic](fr) - _result_to_error(res) - frags.append(ftopic) - - return frags - - else: - if ifr in range(nfr): - (res, ftopic) = fn_mapper[topic](ifr) - _result_to_error(res) - - return ftopic - else: - raise PyEFPSyntaxError('Invalid fragment index for 0-indexed {}-fragment EFP: {}'.format(nfr, ifr)) - - -def get_frag_charge(efpobj, ifr=None, zero=1e-8): - """Gets total charge on fragment(s) of `efpobj`. - - Parameters - ---------- - ifr : int, optional - Index of fragment (0-indexed) if not all. - zero : float, optional - Absolute value under which to zero charge. - - Returns - ------- - str, list of str - If `ifr`, charge of fragment `ifr`. Otherwise, charges of all - fragments in list. - - """ - chg = _get_frag_common(efpobj=efpobj, ifr=ifr, topic='charge') - if ifr is None: - return [(0.0 if math.fabs(c) < zero else c) for c in chg] - else: - if math.fabs(chg) < zero: - return 0.0 - else: - return chg - - -def get_frag_multiplicity(efpobj, ifr=None): - """Gets spin multiplicity on fragment(s) of `efpobj`. - - Parameters - ---------- - ifr : int, optional - Index of fragment (0-indexed) if not all. - - Returns - ------- - str, list of str - If `ifr`, multiplicity of fragment `ifr`. Otherwise, multiplicity - of all fragments in list. - - """ - return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='multiplicity') - - -def get_frag_atom_count(efpobj, ifr=None): - """Gets atom count on fragment(s) of `efpobj`. - - Parameters - ---------- - ifr : int, optional - Index of fragment (0-indexed) if not all. - - Returns - ------- - str, list of str - If `ifr`, atom count of fragment `ifr`. Otherwise, atom counts - of all fragments in list. - - """ - return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='atom_count') - - -def get_frag_atoms(efpobj, ifr): - """Gets geometry information for atoms modeled by fragment in `efpobj`. - - Parameters - ---------- - ifr : int - Index of fragment (0-indexed). - - Returns - ------- - list of dict - Each atom in fragment `ifr` has position, charge, and element - fields below in a dictionary at list index `ifr` - ``Z`` (*float*) nuclear charge. - ``label`` (*str*) atom label from EFP file, e.g., A02H2. - ``x`` (*float*) X coordinate of atom position. - ``y`` (*float*) Y coordinate of atom position. - ``z`` (*float*) Z coordinate of atom position. - ``mass`` (*float*) atom mass [amu] - ``symbol`` (*str*) atomic symbol extracted from label. - - """ - nfr = efpobj.get_frag_count() - nat = efpobj.get_frag_atom_count(ifr) - - if ifr in range(nfr): - (res, atoms) = efpobj._efp_get_frag_atoms(ifr, nat) - _result_to_error(res) - - for at in atoms: - mobj = re.match(r'\AA\d*(?P[A-Z]{1,3})\d*\Z', at['label']) - if mobj: - at['symbol'] = mobj.group('symbol').capitalize() - return atoms - else: - raise PyEFPSyntaxError('Invalid fragment index for 0-indexed {}-fragment EFP: {}'.format(nfr, ifr)) - - -def get_atoms(efpobj): - #enum efp_result res; - #size_t frag_natom, natom=0; - #double frag_chg; - #int frag_mult; - #py::list fr, frt, frcg, frmp, full_atoms; - - natom = 0 - frag_count = efpobj.get_frag_count() - frag_natom = efpobj.get_frag_atom_count() - fr = [] - full_atoms = [] - for ifr in range(frag_count): - frat = frag_natom[ifr] - - fr.append([natom, natom + frat]) - natom += frat - - pyat = efpobj.get_frag_atoms(ifr) - full_atoms.extend(pyat) - - mol_info = {} - # mol_info["units"] = "Bohr" - mol_info["input_units_to_au"] = 1.0 - mol_info["fix_com"] = True - mol_info["fix_orientation"] = True - mol_info["fix_symmetry"] = "c1" - - mol_info['fragments'] = fr - mol_info['fragment_types'] = ['Real'] * frag_count - mol_info['fragment_charges'] = efpobj.get_frag_charge() - mol_info['fragment_multiplicities'] = efpobj.get_frag_multiplicity() - mol_info['full_atoms'] = full_atoms - - return mol_info - - -def to_viz_dict(efpobj): - - pyat = efpobj.get_atoms() - for at in pyat['full_atoms']: - at['ghosted'] = False - at['at_type'] = 'efpxyz' - mobj = re.match(r'\AA\d*(?P[A-Z]{1,3})\d*\Z', at['label']) - if mobj: - at['symbol'] = mobj.group('symbol').capitalize() - at['charge'] = at['Z'] - #pyat['molecule']['fragment_charges'].append(efpobj.get_frag_charges(fr) - #pyat['molecule']['fragment_multiplicities'].append(efpobj.get_frag_multiplicity(fr) - - return pyat - - -def get_frag_xyzabc(efpobj, ifr=None): - """Get the XYZABC coordinates hint on fragment(s) from `efpobj`. - - Parameters - ---------- - ifr : int, optional - Index of fragment (0-indexed) if not all. - - Returns - ------- - list, list of list - If `ifr`, hint for fragment `ifr`. Otherwise, hints of all - fragments in list. Note that fragments inputted through POINTS - will still be returned as XYZABC. Also, fragments inputted - through XYZABC will have the angles standardized to (-pi, pi]. - - """ - return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='xyzabc') - - -def to_dict(efpobj, dtype='psi4'): - molrec = {} - - nfr = efpobj.get_frag_count() - fnat = efpobj.get_frag_atom_count() - frs = functools.reduce(lambda c, x: c + [c[-1] + x], fnat, - [0])[1:] # np.cumsum(fnat) https://stackoverflow.com/a/33034961 - nat = frs[-1] - - molrec['units'] = 'Bohr' - molrec['fix_com'] = True - molrec['fix_orientation'] = True - - atommajor = efpobj.get_atoms()['full_atoms'] - geom = [] - for at in atommajor: - xyz = [at['x'], at['y'], at['z']] - geom.extend(xyz) - molrec['geom'] = geom - molrec['elea'] = [-1] * nat - molrec['elez'] = [int(at['Z']) for at in atommajor] - molrec['elem'] = [at['symbol'] for at in atommajor] - molrec['mass'] = [at['mass'] for at in atommajor] - molrec['real'] = [True] * nat - molrec['elbl'] = ['_' + at['label'].lower() for at in atommajor] - - molrec['fragment_separators'] = frs[:-1] - molrec['fragment_charges'] = efpobj.get_frag_charge() - molrec['fragment_multiplicities'] = efpobj.get_frag_multiplicity() - - def _high_spin_sum(mult_list): - mm = 1 - for m in mult_list: - mm += m - 1 - return mm - - molrec['molecular_charge'] = sum(molrec['fragment_charges']) - molrec['molecular_multiplicity'] = _high_spin_sum(molrec['fragment_multiplicities']) - molrec['provenance'] = provenance_stamp(__name__ + '.' + sys._getframe().f_code.co_name) - - molrec['fragment_files'] = [fl.lower() for fl in efpobj.get_frag_name()] - molrec['hint_types'] = ['xyzabc'] * nfr - molrec['geom_hints'] = efpobj.get_frag_xyzabc() - - return qcel.molparse.to_schema(molrec, dtype=dtype) - - -def old_to_dict(efpobj): - pysys = {} - pysys['full_fragments'] = [] - - for fr in range(efpobj.get_frag_count()): - pysys['full_fragments'].append({ - 'coordinates_hint': efpobj.get_frag_xyzabc(fr), - 'efp_type': 'xyzabc', - 'fragment_file': efpobj.get_frag_name(fr).lower(), - }) - - #pysys['molecule'] = { - # 'fix_com': True, - # 'fix_orientation': True, - # 'fix_symmetry': 'c1', - # 'fragment_charges': [], - # 'fragment_multiplicities': [], - # 'fragment_types': [], - # 'fragments': [], - # 'full_atoms': [], - # #'input_units_to_au': 1.8897261328856432, - # 'name': 'default', - # 'input_units_to_au': 1.0} - # #'units': 'Bohr'} - pysys['molecule'] = {'input_units_to_au': efpobj.input_units_to_au} - - return pysys - - -# only wrapped to throw Py exceptions -core.efp.prepare = prepare -core.efp.compute = compute - -core.efp.add_potential = add_potential -core.efp.add_fragment = add_fragment -core.efp.get_opts = get_opts -core.efp.set_opts = set_opts -core.efp.get_frag_count = get_frag_count -core.efp.get_energy = get_energy -core.efp.get_gradient = get_gradient -core.efp.energy_summary = energy_summary -core.efp.nuclear_repulsion_energy = nuclear_repulsion_energy -core.efp.to_viz_dict = to_viz_dict -core.efp.to_dict = to_dict -core.efp.get_frag_name = get_frag_name -core.efp.get_frag_charge = get_frag_charge -core.efp.get_frag_multiplicity = get_frag_multiplicity -core.efp.set_frag_coordinates = set_frag_coordinates -core.efp.set_point_charges = set_point_charges -core.efp.set_point_charge_coordinates = set_point_charge_coordinates -core.efp.set_point_charge_values = set_point_charge_values -core.efp.get_point_charge_count = get_point_charge_count -core.efp.get_point_charge_coordinates = get_point_charge_coordinates -core.efp.get_point_charge_values = get_point_charge_values -core.efp.get_multipole_count = get_multipole_count -core.efp.get_multipole_coordinates = get_multipole_coordinates -core.efp.get_multipole_values = get_multipole_values -core.efp.get_induced_dipole_count = get_induced_dipole_count -core.efp.get_induced_dipole_coordinates = get_induced_dipole_coordinates -core.efp.get_induced_dipole_values = get_induced_dipole_values -core.efp.get_induced_dipole_conj_values = get_induced_dipole_conj_values -core.efp.get_frag_atom_count = get_frag_atom_count -core.efp.get_wavefunction_dependent_energy = get_wavefunction_dependent_energy -core.efp.set_periodic_box = set_periodic_box -core.efp.get_periodic_box = get_periodic_box -core.efp.get_frag_xyzabc = get_frag_xyzabc - -core.efp.get_frag_atoms = get_frag_atoms -core.efp.get_atoms = get_atoms -core.efp.geometry_summary = geometry_summary -core.efp.gradient_summary = gradient_summary - - -def process_units(molrec): - """From any (not both None) combination of `units` and - `input_units_to_au`, returns both quantities validated. The degree - of checking is unnecessary if coming from a molrec (prevalidated and - guaranteed to have "units"), but function is general-purpose. - - """ - units = molrec.get('units', None) - input_units_to_au = molrec.get('input_units_to_au', None) - - b2a = qcel.constants.bohr2angstroms - a2b = 1. / b2a - - def perturb_check(candidate, reference): - return (abs(candidate, reference) < 0.05) - - if units is None and input_units_to_au is not None: - if perturb_check(input_units_to_au, 1.): - funits = 'Bohr' - fiutau = input_units_to_au - elif perturb_check(input_units_to_au, a2b): - funits = 'Angstrom' - fiutau = input_units_to_au - else: - raise PyEFPSyntaxError("""No big perturbations to physical constants! {} !~= ({} or {})""".format( - input_units_to_au, 1.0, a2b)) - - elif units in ['Angstrom', 'Bohr'] and input_units_to_au is None: - funits = units - - if funits == 'Bohr': - fiutau = 1. - elif funits == 'Angstrom': - fiutau = a2b - - elif units in ['Angstrom', 'Bohr'] and input_units_to_au is not None: - expected_iutau = a2b if units == 'Angstrom' else 1. - - if perturn_check(input_units_to_au, expected_iutau): - funits = units - fiutau = input_units_to_au - else: - raise PyEFPSyntaxError("""No big perturbations to physical constants! {} !~= {}""".format( - input_units_to_au, expected_iutau)) - - else: - raise PyEFPSyntaxError('Insufficient information: {} & {}'.format(units, input_units_to_au)) - - return funits, fiutau - - -def from_dict(efp_init): - """Instantiate an EFP object from `efp_init`. - - Parameters - ---------- - efp_init : nested dict - Dictionary of prescribed format to specify EFP fragments (no QM hints). - - Returns - ------- - :py:class:`pylibefp.core.efp` - New EFP instance with fragments defined and finished off through - :py:func:`pylibefp.core.efp.prepare`. - - """ - efpobj = core.efp() - - units, input_units_to_au = process_units(efp_init) - - def hint_to_au(hint, htype, iutau): - if htype == 'xyzabc': - return [(h * iutau if idx < 3 else h) for idx, h in enumerate(hint)] - elif htype == 'points': - return [h * iutau for h in hint] - - for ifr, (fl, ht, gh) in enumerate(zip(efp_init['fragment_files'], efp_init['hint_types'], - efp_init['geom_hints'])): - efpobj.add_potential(fl, duplicates_ok=True) - efpobj.add_fragment(fl) - hint = hint_to_au(gh, ht, input_units_to_au) - efpobj.set_frag_coordinates(ifr, ht, hint) - - #efpobj.input_units_to_au = efp_init['input_units_to_au'] - efpobj.input_units_to_au = input_units_to_au - efpobj.prepare() - return efpobj - - -def provenance_stamp(routine: str) -> Dict[str, str]: - """Return dictionary satisfying QCSchema, - https://github.com/MolSSI/QCSchema/blob/master/qcschema/dev/definitions.py#L23-L41 - with PylibEFP's credentials for creator and version. The - generating routine's name is passed in through `routine`. - - """ - from pylibefp import __version__ - return {'creator': 'PylibEFP', 'version': __version__, 'routine': routine} diff --git a/src/efp.c b/src/efp.c index dff57265..cb673403 100644 --- a/src/efp.c +++ b/src/efp.c @@ -681,7 +681,7 @@ compute_two_body_crystal(struct efp *efp) double e_elec = 0.0, e_disp = 0.0, e_xr = 0.0, e_cp = 0.0, e_elec_tmp = 0.0, e_disp_tmp = 0.0; // no parallelization int nsymm = efp->nsymm_frag; - printf("nsymm = %4d\n",nsymm); + printf("Inside compute_two_body_crystal()\n\n"); size_t *unique_frag = (size_t *)calloc(nsymm, sizeof(size_t)); unique_symm_frag(efp, unique_frag); diff --git a/tests/pytests/__pycache__/addons.cpython-312.pyc b/tests/pytests/__pycache__/addons.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1f18b305f7620e6addfec20431bf28a51ad0e1f8 GIT binary patch literal 1089 zcmb7C&rcLF6mDnBE-)+_LGVY6O^n9zu;b6@ftYxZU`&ui5M4~h?zHR<+npKP4rGZM z4qiNoCrrF})W~1pzu;vzn1G`<55^mjnu%|_o3roU z-d_D70C$0dCQ}s4;PSXIMRAZY^uk~XBPO-Iu29d@FFCfW+M8!YC4zZDs6<2)pV2Hy z8WfCw-*%-hi1KT0HQ*J&RLzY^!e!m95Wk+pZbgt#mn3fTpyKMu=3`eesiYe>J1e0y z3S}v7riTLQ8I4}ZmOK_lNwp?S(~U~$YO?~q6^2&FHwwpFg;QGxhQFc%-|Qo=hc}Np z?W4|yeQv$c8oReqnr+*&Ei}8MQ#x;)c3^62b%_YQN)++&<(bJyVagQqRS;Hjtkse# z!-l?uZ-r73&i8hMc^opINl8Q#laOXpMVN()i$vh52h$UGCZ}#pPiUIFU_?gY^1y}C zMRK7;+2WP+SC=QIG%%(SlQ`7GLFn^@GJJDsVAxS=Ci!ZR@?ieXKm^BIrg z1`8FgF+!cbG~cOQdhoH&I5Q`Nml755PESocv$CbAK}0>x%X$z8^J#w~^-Hq?r$c{z zPj@6^eGi0fQv0+?d&e5O+nik&hjnPar{vmf=OBb%LGcH;_A8IzeYiac28UnHy_nl9 zo@^ISenAIUN8V0VXwOCe(?EDT{IJtK-xk*RvxU#E^)htlj9) zi4FBP@C#UoTB+d{DlwpLK`jdtcXr+Mi?e+9ywCH#kKgzFwOrN!UAwQP&L0kdpDf5% zs?gwMmnt8D102o=EiOIzK(KiZ1Y%3#GDU95Q0~s<#j~@k&v1_R&Ol3Xc!ziSmI{^b zLaxqEsP55kv&8|LQOoef{YpmtqLyLWuiyel{KV}E8IyY5lqsc|@|DcH*FE$8Q>S~^ zb*JDc^kt7qA8ogAX^#8XD=s-c{J-APc>r%gedgEa8pUH)@RDeWhn^ra2uz>IoBg*| z+iu9eax*MZlx}WDO`qpl^9(4>V|L#S85i>0iv{ydEK~lh{6X^tkz*S}7`|#0hzNaX z6P4|zV+Dxto0teF@`>npF%3612=8|rw~5m3d4A%BF)1}s-#m}%Ch8|JPFAcqhB)z} za0SCR*h?T$&nZ&KIgJ*xbko8_L4DtA!!<-iJHn6%3`%R*a${1q9LGda0>i|!d{SZ| zQvynm`4}c?WZF@L9WS(~B`F{bkwtwJCPyftlpO`AM_bWcO2H6fw@*J4LLwpTg~?}d z!fy5NszI;BO6-o|dVU+jq+=kf=f~?t+p^bt$Y^6Lv^#WE+OUx|ZLl$7BO50+sObvo z6Xj_TIXxdf!;h&k`!Deqx=jU+<9-0J1>RSt3Mf=Y!7w)0S@|}V39Y_QFgNB#s1pfd4 C;tFs8 diff --git a/tests/pytests/__pycache__/pair.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/pair.cpython-312-pytest-8.3.5.pyc new file mode 100644 index 0000000000000000000000000000000000000000..af5cc80235469fa036f1eceb03a1f9c0c6eaf429 GIT binary patch literal 1350 zcma)4J8u&~5Z?3o9)8D4f@30t5K3Vo`5?3ir9#k9QMoy-?>6=&_gL+nNlfL4ptR`- z5>+~sKY?hetVGJO4G1EkbU}$IsF*#+c3z;YbUQQO_sz`B+C#C%^h0qTX z3{S#9aQs_B=q<95ExD*6B{t>BR!Tx%x}it|Ms27>T`CTf$9Aba_J`iisngI~$WCob zjSSJ3ribj#HEA~@VN}OqNLb_qew~pO=0t>N zMiAGASQe6n+{BFQwCg%evPgN_3K-$CaFs=dTOluC+cs$s5kGRU%kv@>j0XUp3Q3ei zrWFLtc68Z9sL^EDx7x4(7{eHhVu;~FV=yFG zSY(}cx&Fut?2bzwvwKikeChB2t|M8Jq^}6Aqt~S)6=|gnZ_V3RD}A-Ht5$pRcl~Zp ziIKdI%6(McoZCY)Ni@+%6Pwd}sPav4Gkr9(Ro;5a)AbW5c>g+}A(RiGrxAW zkhGCs%g6bNxO_9t7UNtg&X?oLY+Nk;D(S`43DPC`Xlj%YtCHV%6hGUsV>?L`)0QMchz}K^EcL*OAQOUxi7AWa*w@6VKdxs-G>9P)MG;#! zIxrwM)IWofg{YNkZlMxG)h(!Dz2^fHJBnK7U?f)X&FKOzRaoz|MW)c7@cFXkEt?6Q*>DdF!fXR)3;& z`)b_I+cN#wR+25+>Zgmn+_{={LG|AM<1LK`@CMZ8vl(!W!ZAyDNz}+ekC5SchD)T) z!5gz}HKe0V42u*cM<;bnpJuV<49Lx6HuHvr^BMPi!cr4U)IUqV+k8f((83Vc+ig;i$res9XE3P zkQAF}V4PWX0}Ub=MyqBRLL51Pzlz~&>_m_#XD*V@d@4<5bi>3%Mg!Mr!!<;5R)8T9 z7!=u?At{-*ZJ;2ckJCa(k(pUFWGRGEVi{HtVB7IcDoOGPLu67NnS}!sQI{2Xs835# zJJbbzh&u!Nj1P&3u;WKx!3i7r-xoTaml;`Iz2mrT45O}&%)T40>uu9o?<2j9P2cL$ zR%yX{TC~pE2=%m`P-i1sMFS!~_5!=_!Y8;vmDyhlztLkVa2)pwfGzN@Je5JdJoZN3 zfmEGH)jg>`6b_Z;?YBSVm7y2|;Q(k8plv_c2erhiOh9FOc^_00t2P0(9c|}1$=yGt zsw;;q;Tq?-Fe+@7Xmng072~27YxP(y$At>R>O!oP;>uE7t^HY47x+`4a>BF*xLleR YOUl?E`FqmMq3{!kL+ibYAJRVl0o|Axg#Z8m literal 0 HcmV?d00001 diff --git a/tests/pytests/__pycache__/symm.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/symm.cpython-312-pytest-8.3.5.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eb4a3d8f6e5238265fc48c13c2617da9cc08dd37 GIT binary patch literal 1079 zcmZ`%yKmD#7(d63ow#}Rk)#y^6$qh#hz06Y5XwpiCMGY&k4s|e7kB3tN2-*nMP2Dc zhYG>gszT!bV4*5f!+}H*1L{`PjfuNF+Nx5|_V@k1m%s0Kcc1fl6|lAaJl)Qx0Qk*~ z(aH_MX+r?uEpUJ%ct98WI^~OYN&vp3r-ea8*5!Ug(G{jsUgjf+fA1*Q<=)-TCQ3Zlg3X93%p}mq zbn>Omi1{!erdQ|5ZqPy!qm0-s07zzn&&ZRF`&2Tq(_}UzMi>!HMe~70r9LciX9STO zI<9S4;VW7;SSO=(*)8%||2$$gx60!%fT)#Fk!hNakQt~?M_zk4H_G=Z@*oglDL_jas literal 0 HcmV?d00001 diff --git a/tests/pytests/__pycache__/test_efpefp.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/test_efpefp.cpython-312-pytest-8.3.5.pyc deleted file mode 100644 index ca98df005fcfe717b0cf6bc40eaec7d42c82844a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 49431 zcmeHw3vd)inr64Uy46p;A3Oxe7%*)>=)oHd1_1^eW4vH&Fu2`PHA1ppu5N6^bdT|4 zZ*9+9n0dq+@31#MPi(BTa5G|!&vMM}j6F9u!QI5(bxY!;>GR#~?Kr~W3(uVmb1^%P zjk){&tjetFR;jCHgbiL*bpQ3&Uzu5%S($(R`RAX1{xT5o+HjnE+AsiFW3$j%TB-&*#%fC7Xp^aZoqQc16Uz@0V`!6V3q6# ztd;|Sv*aSc*>W-99JvH=u3QROBbNcrlgk0;%N2kNttXUd`%{s05hpzr?mQ8R2JLD4ovm6z?BoP=;D2o$ zz^k@4RQwzEge`8{ZhOVvTF`E5EjWrW347cw7ksDSn}w1sQGlz0{kUVtKVg5`7If?l zdeddC$HPinB-9(}j>MF3ti7i@Ey?ZC-n5rs1UVu~q%+c*4iJnfJ<%A#wWjB0T!wmk z+Ph;RHMwZIEOHWPH&Rw2y(cD6Cwf=5DB!{)m^Dj~*8-fAi1{kTD7 z@23dxRa*?*Lp^wNpm)_lA+in`?@M-^D>$#kuv0jC+gS%shutsCx`|7EKVgq~_+3FO zkfoDo3$k+)ZZXV77$}8wmfZ;l86UT(!0qe2hKv57Id?Xpky=bfX<+&PMiH=r0pn&dEVmAxszo@7hm(uWIZwI3OPsN4QTzJaq@I&?#GO1Y zKR<_0!by9=k&yaq!Q#CK(k}GnNThq9K%sV)_7Ecp$>FZv4}bi-=U;3pXxhSVD1N%@ zjP=CAogeH=$7XP5UD!d%@TuGGhi+APqRvj^4g{0u2Nj39KTpW+0Gu zNBg3&NLQ!5WBIetserNqgHsBBs*T$M}l&h`W3HLM{XL#*5YJg__3NC|)!1S{w?!>$G3x znDlZQ!pcUFs7XaX1vqVc-&g*P4X3w{OYT3p|JnP`uIfLYDqA}$ts}yoXZO6Ycida_ z%F35kj(F#uZvLRW<~tit?-}18N=l*Ad(Kp)q*=huZt5>i&0RON>2hIe)B==;%80m%#j;7kq;GyW%d!{HMa`jI8{|G5>&EG;OR`Fh5J?FG7O#7Rkla zmIJ}kEps43A_v75OkFT$i*PQ^xaAU!`4{HR{0n(pe%6@3GvNaBF9q{2?0G7pbcTDC zx#&r4rf$XH$9HBD%!j z#1?cbYY8XLM>1Ae%vQuSi3CV;d;vQI{Q)7uv zjU|#y?9`Z|Q)Pz4CQqTfpnIv@I%Dh*5-Z5sVJw5}OSp7q5O+d~c3tobHd+`jWNeg} zRxyv?QNl6(oFPM(b9#q~WEUe@i5;wuCdSa1SiU)`G^B5mBV7&z6U&(s zJtQ$Pxg_s8F{W#l1EUn5I|m{pa!_KCTfrVJ!UgD z?{qWg(;K%Wr7b$2CgF5^{idX}3ADt9dJSu70;(uA6n+A;T8Pu6O}Sq&cNorl=4yEU|M}W8ISMV{)zEM6L}8hRo&KsmO3&j9g3XFkdx`QBhzbX~)HzvXm-CNMeU_>9plQ zeC924AVMMsr55t))aBZ;X_jltHHMsa$?eeN#)6W{-55_MW|#I7?~)a$ca^qzpS_iA zASK6k+|e~1Q)ki>gkHnvz>Kj@6nYJOwMDrP+1WyTbzTNv)kgS>`X3pJCHFs?DmyYN z9lhaP^;Q*wXH>p6+lEt#9~nQl4O_m(8Q9e?mgRe z`n}!1nf+6CL!m)czVaz!eaafdm_%*K9s*(UK?K=L!6s2#%BixZQE8PaKjUi4eMghh zQB5oah7r6!HFx!p|J{dE>+YXnRH$9U!5jR{+!PL?@hi=o{GVey+AhAI*FO?9Q5#}n9^=dc*-qn0 zhDn6+iFDazGHqTcMwoos+%0?Z9!-5QBTSF%%{xa{5{yuzSxPV>B$(q=ObM)VAliUs z4n#;|&lV%hsZX2xr+L~uuvaNXYdi2^(=zw>p1b?w%}Nn2r$JisFwNRYCDfoCM2Zpo zO+}?MtIk%OSw1Q)$SEluY)MKjkd!J?QWdbXHOVC#QnNP>bzWYZ+Pwc36P2jK!G~Y(F^y{55*X$#K}^pHNr zEkd_yPn-uTNS_cE3!!U(W7VFj}QXt75cj#F@pg*$D^ANow`1 zBOw)FR$k=C857e49W_}&ahY%-v`d7>1XBko`m>INJMQkN%_8D5;gRPgym3$5OFGkp zFGk8Ec3=w38Q16k{c%4guFlJI<(k-H9;Ran$MiGL3DX1wIlbdfj_KzZ&FHd&zeP-3 z=`m>jA?uhJ101|2cbvH3;PSk@b6#mk(BCOE8T7(l?PkDac zB{J5mNs06}miN05t&+z;3FlknT<}ASaAE?@BAl2kvj`{ng+(|oFN;MuKMyA_IOk_Z za)B64hq1#DmuAPZj(C8_-;KWqe=q*NgkP>@JcDN1vW|o# z-wJ|th(*bZ zc)i|ooaScdAUgO3@ zedXkyFP_U-jGD5vGjXS>zNIK$WIAf9kn0ka@rrmQ8#Ps7)Z~fL`WkkyC3jVEk73m0 zje8-Z{9Ils*H7E1X#;;=-Ys!L42+uU<%Ya-WYm(FXdm>Ybe8%Q)p<)R)jTi!tVt_eOG9HK z=y(&A_*dcYNqAwRy-KqPRPIMN3%XRpJW|}UX&lwmkE~&o2LMi$ZrZe|mKF|@iS*Lo zhT7Uwj?J4l>vVNNA@1lTEM@FsVX;0uaH6|C77fLELM=VVl{O@ag~QKBk1*KKp-$wU>=p zVW}>@BrI$7C0le!>n+#vKtQxGt2qgXMrsO1>!=#&A)(fu6WuXyVky>XF0WPBa*B1H z4ZyTG$fNdr!Z;BRRx{NAj1#dYR3ie@i0kmk5T1!gc16^u)g8mLWn9#?_OKz#2Zi^13?K9cpQMNiQ%h1b5r$qo#>2(i?V7R57b&ZFs%xvqt@wR?Y*7tt?jYCo4D># z*}=f1^{jMIolaKI$`f?AlWN?#cUMzr&nZ^Tw7@y+`hu#N9(HqA?3|?pt7SD9oTaaBov^OI!MLt}mGNSY@nU`2uloXMXvnx~%D7scakVz%DkBwePnM?Y zMWC_K__%e(XpI?792r_Wi_biSIo#=p2>Se4vt|ukRR@?iBaG{@T|^7OWhs9F^9B z_Tr*3?>wwh8}Tj}m1;G@f|Pf`h1R5Z!HBnURBAF%`*kX}5ZriAQo2VoU)EeMjBma- zDbWHpGSuN#I^*kiT=pj)l2f}Psr8Yh6v2Jts<(AJlF|-69kPKQuUQHLt%4gbuSiOd zoRP<>f~l$?P{5I@Wk4?M|IyI_SWrJQaP&OL8os0hhX zgiKZiRq`<5%O*y9iY&}3!_R5~DHkI$KxlzPs_ z#uhZC7Bm4J+zJ46aO=o|H9-Hy@zcON0U+-Leq4;xQ1RHhy{UD3fhO1O9b0!WweBF{ zhhTsO%0VEhbqsIs2IZTZ&)%LyLLjwwkNSE*8us;!N&4>!1yTtkIy#C>-EIs99C49R z78M~mijc_#aIHZp4paUGis!1hfJotQ9O@NP;3!fU3W!)JAWw@5sN)B9{7{RIw|DD! zX311K;D3>NSSt-vE3Hpe)hDI!U?~95!P1c`)O+~S{V{Z9e_?SFElrUB@srnm39co&e1cfE=AwV}Z+ zV@+2un(Eme^)4kN*K}6 zQ7Lprql&4ZD0_jV>KPuALD78ZBtZ(vqdsEg!@kIvr2nq4Kq_U#fQvB0QiPo6Pz>DXsPQ&A z&(Usk)Oh<6I=FV5qoXJYIyh00Jj%pTDwB?*vui<6EFBM_Q*e4_VN^O`js?z}pum{2 z3FowWVk0L#FsXEssUSR5xQxCjXt{D+x}ckjJLAsi-^yex?n7{Pboe=@pU-P3GqWR2 z4m->|NyLP?C|6@);z5sLvRrs#45&Iix#Q?6T#InR9M2-0uBgnJSKZu6_G*ULu2?0n z55qG|{9wRrlC&;3_*ql%!EsUoCjSX3;e0_5gi?s?moL*r4A!GpFoEe3pAOTkV>E7 z9C&9o+YILbZ@v+ngRLrKoMYMdzVWMn{NImea}MQCQTOh%Y+>?k7vJq1-*&Mmakb^B_>@h!s*|3 zvEakZW0mfX#3DW2&|Uwwiv=5oxTNgKI;Q$Ax#^< z0ev@m3LNmzdog(7xtA`fCuOgh%>Tn{=$I|aUmz(Oenl?=i@i!n}vf!oH9T zTiHWq44YMtuQY5X6ByN{!fl7XUHL}IBU@B66Mfjc-7w#2GF3^#<`ra-AjZuwUoecD zF_p;;0W!wTA$suR1lZg($4%X@ay*%dhTm-inWm+%CO7-lY3-tIcG@F%~98jYEq34WmbC8}GMqWcMBgW&;S7G1GL z`5^-R82`z-V$RXfWoN z-IC&7(c^t_A9D~qF>F1c}d0g1UXIGD5;tXSA49r{^ zd~cgAgVzVfnBx*NM;1A+G~~l1=NXGBbLLnN$>!K{ht;`G?r?(ZKuM8riHtRCQX;*L z<^3*1tK>0ILa(9TOx~Y9n`aSD^fQZaVz^=vPIn}cyJq!e2f4$E#gwv7a}eQ=k&wd< zLtbh%lHn8=&Lw!gnGLZp%$ndNA^~56>>JIT(j>6Q09-)a&XY!e4aAEs=*yprww^HRy&iF8Tc?^G<~ z=V=(;X#nrCC{c`=X6{TnW9bNenp7#7l0)Il_MFKAoSVv$zf$tGG2N0#Y$TI8Xn^zePJ26Io3n70=QGSQX z{%kn~lhe|m{O+RULr0UHy{WP%M1XXCP)Y9OxS}8V;%io0-rD z4@uw~bnvr*bu%NO42>s=PU`+viSMM|ThY)vVY)w4!(lM#Y092aWDGtJKATfN!gg3} z3M=m*W25*-2{B=Vxi;~;B~+C&c7AxV?BEUcOI1?pV-*r$*kP(k5n~k#&5W5XfRI}a zaZN^?Q?LavSnE77bmSNNTPJkitVzSSQL;&9^9`G5Hnk|En|z-FzfNEiKr8;@pkY4A zRoCvFx|)xfzubTsaXt&D&WmFQNt0PPeO_Fhh5PExi%+?s8XBcgWQg}oK0CGV3WkX4 zM!Pp+7LL!2ryV`Vj!l>wPrKRXG_?QjfzA`Z_^Yz7O&BU`UCjchj86#%q4D8%5PKW$F^a9?BRhLTn}L-(l+P{SM=8m?HKiK z!&S<+ZA{XCSLnV<7}3#DN=l^;OWXQu1Uj@spvlaHRC-FsRg_waoq`fGsOvXIr6vKt`i%rb-UQ?97M{FL-9eN0l%gBR<{6<=;Nu@gL9qr*B!!Y3J&Zs?5mDOYjZ- zIdb@0{FMs?CYKp!S~TisrbSaFOh=1mgCJ(5F?{aFAOGQ{Kb@`?-J<*gIs7O5l^+q9 zyhYC#JD`4W@G-*Y8p_WYJG3pn^738f|LtFG`S8=@zkczpfBayxQj1#6GU!(aHGhU1 z6PMfwgNG*NKOlgFF`M$&l*EL#OVTJC!OzE7{&SlUkP(5z`~-R31bS2aAHpci*RE90~mIA zHIL@`8tY8v(VScekYNY;3MD_GY@Y<2OA}?;h8|dwPZ~IbXV6ST4~6tSA9*N9ZflRW zh~KsHjy_F=dzm8C0-XApVU0zDaQ;TvWS$I}a{^j+(I6Zj62^T$UYDP_JlsAS7I-vZ zy$4_65%gwzMhHN*rZE3OE}qEWl!n4x6WK}=6%L+g@h+j_ zhvYA{s#l1_QF0vBrBcap6dZhM@hMw6en7_`wRRkpW90N1W)*IhkyD#ZcD`Xx6zJ;? zu_vN7W4GP*ileol&DL6Q6mkk&`V@Yv;F~T9b1v8kmKZfVa)ftl;hn~vW6k6%KKo)O zRhdduE|_Z`4@n z!6}&yCW>_v(|93v8`Ox#Q?|L9#!VZ_Xcs*0ESmlViN^AxxQE zg5@ACZ8=D}T#6+jckpoN+hy_cxc5St7{95@LdxWFxnkPd6uA#(2QR5*|DF&7ZK}dh zpC&v(@81^T^wC3Q-X%2lZj)Z4+lE;30r5>jiHxb5l}Pk&ixN$_H_27!3fZ`+BJb8J z_JiQ>(9l}T&?;%y%X0j^SkzD)mqhCf@^`PFGg@c$OzYHZ23owC)@i%pt+T)&4;GR< z7KCLE&uE;GIz70+nDvuE0`v4&>aFZLe4vD|eIE&YVQl`{BSnaeE4 z+`80eIx?ul$e@z9TI?R~H60nyh{42447(WDBmyx~#IOSrgFEhz2MjU;w8%{7I}f`n zv0;Dgv zz}E@TlBQs_t~5`(*tTNPbipwt?dqc4zoKbZD?2NHPcfb$aGJog1fC=CJb@Po;Ip(cR zd27eKOHyNqypkF>T&~+aA$Z>8?Mc-^*L>)5A0zC!+?T3@NBKi=!rz!g0(Fm!_zvNE*mr15(tlSdgi09E z(NScf(HIOk;v!otDnfD;A(Pd2s^nq9p`O-LSEF5kPMTKigbm zzrMK!-0f2wgaL8#?KKcg-HHNxUI?7F&6tNx2v7prHUo*MxPbKB{o0-vh$wK1IFNJwrQFcQhyGZU4k(bM7p7_vz%m17rJIQu|s)_Q}be5tW?mI;kOT z9l%p<+9im07wjld@3A`AjyOqnn{L1&*S}M{eU;(AV~?2#|1YB>3FED6W<;ckj3URz zkVu?}J0nKoL|hcYcuRdsvaQ2N)Sl9H(nwUFq7~Zo21;wBPll@rv9+Qt>av{{zHF!E zQuOV_#Y9qSxtMtK8Jq^68C!dQYVG|%lWXrETl-LI?L&kg!6qmz>hhi>C`ZDhKJ>Ph zVITH;(SKJcj7k{M(NPJHRjI>L3oY@{V*p1om!cvPM-gc-AtE7LEE3{Vwsia<9Y2CO zFiM!hWM)gH1E!>w-(M}Z6)paKIa^)i-@zukFJ`?dO~bQ~eN$fygwO5b~u(GfM&SdUVq`i=|3pftN)%p~Su6O93|{ z`>Iz?8eX&=d1c|n*vHQq1Y;)9XL;enCa1rqcv%({*SS31=%!;;i}D*hVGW5_Ng%n6 z6y}dt&d)3l0ky1ZfQHg36B8{T|foh={~nuNAD)4$#O#zm{H zu6#@#eE`73;bumUZB_mcLha12$IcnAoO7%9SRabZKF)vi`9IDMauSG@ze4{v4WH+k zmA`l~#^VNlp1+WlzpT&hMu~#%JPbqCg~0!S;OatPVfLBz5zoJ8%gU!n?I88+5g@t0 z#hSt3c-8z*OFd*W=z+~(g}Ke(&Gk7>yF;O_aC>(s6kL&Zx14ClPTbv5rr1i)4)ylY z_ONxTmax62yH1Hbt+dA?X^$YK3pJYR0qqFtD(zC^DLd%G-P_mM-V!<1n=XH{6@GZS zBHgiYXB{Qn-rc6UQDgcslBCjw*iJqc>58(wh?R{XDO(BLL*PCF4-(i<;2?qT68Lih z-zV?`0)Ii^Jb@n)xJZB;pfUG9%m<0`E?xeNz|RTLiafToiJ6HqEf{rX2 z1VJ&vEmuo2Z>o`+SwIzL1uwF<*sm_EvbWl=HU{hnQmeuu;GZnCN&Xj44LfH4N-F*1 N2R?Dwq&ckM{~xrQn1TQR diff --git a/tests/pytests/__pycache__/test_libefp.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/test_libefp.cpython-312-pytest-8.3.5.pyc deleted file mode 100644 index cae9cc2470a9add3f170bb2cdb8bac61bbcace60..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 40212 zcmeHQ3ve69c|H(__mgiD5+%x(C_)cPq#l%I*xWDgl$zCbNLi7 zF9?z#*;2xO8$DK~?TIRzkQVnlZ0Z%~ekZ-++V6s6Rm%MhxDK2>H%frca((6HnNS}l2i)<|BUwUQ5Lo#Y2vF9m=$NI{^DQV3|16b9NX zRRfKT+M+c-$L#Kn+7#QGs9kX-hSI}vl2ocSCPtEp5t8XYlvIK&=ukX0lFTG9BHKd1 z*kQkX(1Q=1wXqAYX-rO#g#nZ(+9aD)1-nhMXGM1Ds6&9qJ?VH&OC@KM9FmZ-=c?qY z0T+|vN7=?CZFm>RLGdOzi&D2Z@3R-A=qpZ75cKD=!yN;&U#B_3(ka^X_~IXX^cS|VscXGr2nWBYE(EIW#6r#4A!tPew4#3E<64%sG%daoC9_z>@L{duzO(l!tR6J z4|@RiU@jzup%oFOYT9O0TeKN9&}P)I8k%#mZAPu3 z&2Y%ovR|$>v>8D;2yMoIRJ(B748yxKYg?+>J6muyw1(x};t6l|np|7qbLcf$sypeU zHMFkc8d}Hh!H$L+S`D?Z26nR=TAK@w3eoz#`xN`ofdd!SI^Wb2btqyol}soeq%kR; z9#*``!FX>f85{0RC;^R6jAS92;>{dB5L0=AW~-LY=ANJ9*-^*#R)}=*v;XsFr>_3> z**nKkq`|FgX+}Ch8uEmXbO+5WWE&z7Xk!J%9`EW^?3vL_)UViwM>itrLb3_T zRwUg>Zd1hJ(augvH&MEU(r%<(8!7GT``-I!+>Vo7I~7NEC>u}x(zU%+W&Yk+lyHBo zD1p3cnUQolPDV*RChpNc7{#f6 zE7%L7pNje^_Qv9v zN9o#Rym`S%VT#=au{tyOB3jM1Up}-UlOXYI;^2n9{!}kXW)E%{j*p}=Pi^RpC!QJ^ z-q1_pgNcK&;n7ro?*`bD2ZlG`d&z82-%o~~#ndYu!=s9yzBSrDb|%QfaA!B{nJVa< z9ut1%t9^F+vAf^$g`T_P(|1gT>!#`>Qw@=+=9a03=971QzW$&aYkvk{Eom1Z6 zq<4AVyZnN8#j(5I65XHN{qfz;?1kXxHhg-+1@Dq$cd_(toe&#-CVD=#a?;z9_qJT{ zE}sxvry|S7#l-QIuhgDc1I($!=@l;@0Om~Mo9VGMFk|W0hTw2|XtLw(e8=6uj(6NW z*|9s{u^ad|57U6%ZywHfdD7p06p~rsLZIx{o%WAINMCBghv}U6!2|IBpP-ByaDlTEV*2><+YVRKu?_j`~^j9x)4r{+<{7DTRHbKo<2Y-DC%N zRQz(lq;G`&6zsau&8*kOazyaW6-CIqu~sFBf2? zWbqulZxqz}Mj_rSG{jw5`UT0l=Y!o#>l=yCC$jWl(Ed?q?>>UconV82eIuzqGpu-! z(!LS#<3+6P1YagWKW$%7>iB~npKabrZowdQ021`S60EYnJa4qu^-f6_@06guzP`X< z2Sb_lcffYnx;DURR(Ge~fkKW2>Ro|O-W31~Ta68jCI@|~YcSbCy1-~zwB zQX7z<@khFlY(lab3HHIr79?AdbR*e@8YVlCzXQpgNOmIWL9!dk`+yj2 z(r)8Pfh7xlIHRq+so-o2*^8;&hp8E)pnpftH0!r3gN=W&8A~3bv8dHazdW!y`ydEi z-I*@|#Bq&Q=QLQIo(jy&m3i;V3*NTb%*-XL$Hl?pJC3i1!|B@7kB%(`=Jm{Xa_4fu zoXdUtV{kb8vB~Z|`R+Zyj(6{w?0zKQ{Rr}p#c9YRz~s9re-Mn8L9m9_pI$l+AqUeF zzCj2%?;D&H`TtK)Mh&>Y*$K>u8hRcwv(y*^cu3~;j2?-x5b11Aj|3T|w}JSWQO-ZY z`N!g%KL~~tW((yDv#5pxg}jmvz&kRxhW-;;jcc@q5amL&%TABtNxhBF+4=;@@fBOH z3XV=V+GYFQ!gFE*&J$HnfVF}aM2dt@&Q4`CeAfXbm^3`F`1NTJr-E_{|Z0rZv9~YJNDomOYJJ zBiG7xa@bJw>*aciGSx}-bN2P>I2|i1%dfX227J9%bx*JPhBs&SmFpPCf~%i5d%e?p zJ{E64uXh%5_3V3*8npV^P;vciU~$>eP(Kl2s)fA-|AnwR*u%McxyoRTfVT#%5vdVJ z>3|jD0V|{tLW~xRnM@P4RMxZF#*cC%%N4aluuD+1$xQ_kWxO-jZHY9471AU(-ViIK zsjL;!{4TUYj6S3C_LH%FGqC~WX7)u`S|Pe5w3^Keu9aJ~Lgw8H8HGNU4fdRP*p!P# z0A+U#9ZHf^d|0WFtLygx=kcqcF*GbUbyVA!U2 zYD{a7#t1#+X}B=v@B7jT+&n#fKmI%1ezmjj0NtwI=-Wg$*BjcUrZ@U%YJ&KNmP%cZ zCR5#`rSmsCHKw*l69&hYnsQAK4D+-ND)u9zM-@8^<@~t_$x*C7o8X?Vqef)9Q-|7- z(|k`Q$TYyw%+Yn7J}uSF1@0>CR^TnW1~(T-7r40)<_B0G)RmyPhqH-T{~$PQ(CZX6 zpw$G2I1(I*L%m+)G2}jsWIvL}k)X?lJOSil-PC`4c-h+5jZVT3;YI4VdK5Wy1s(Ol z2#Rc?l_UYUR($NPaMVB)v$`Ekh(E_afo0In5cjkvjlY=Uo!T z4gi7S1n?0Y=~6uEZGj~+glDi*UhKW&=c*siOZ|9H!ytt?c^2e5G2&O?wWAlW{@EP` z*m0;95#(UaRQ&(sM%fP81F?7>@)?YiU^TH7uJ+D;rg zzT#8yFW&lW-|<7oc8v$xD6AaGi;?4-PB|yU)uy=dTY>7yKzlyWej%`CDpWfe+L#Y* zyb$W5{MvkI?S;_#OD-|&Ja*r-SMUcQqk-zFQ2kV>27;G4rv;ZIdc`j+Tk+BpC!UxN zz}Y1@Tl->+^3%YtpKRHbZ`q`uZ=P(qJ>POWJKwp>#@J;$zT1~?xko(>3b(dThakNP z-_mITZ{-!1wN16$Gj+@ADb#8rq8eYx!_MuAWoP#w*O+pmNKf6G-2 zxugZRMo*0LP$rC_(;>J~fvkC&(+JoIw;9ND3~uF|qH=131M$Pt9DrLy#S z;VEf8A#}ZI=w{Q<9cH0W@+HBiR?z}1xEB^SEfY#u<{F~;`gSVJuhGYz4hu`$!TY-C zC7#_&3~uP3wzOUdtT^$(AE8|dH9-xYtLnSkSbfv^mIupJ z-{@4!gEvd{jha?pHFRNA-`#UveXn3^^!Ci{LU8rlGwnj~mbaDg>I}N!&xIdfDdxBN zACHRXz5d5L!~%E&oo{y7FMDB{$@Re-lH;V_d7%IY0viZ$xNb&(0{{r8>;zY&3tW*N z>WXw{5gn%6fDZMu5O9K&f)Hr(6>Zc-sk=1!#hf3Uk46x}2OtERq;vx(gqwE%{Y4av%z+ToVIU#+nSZ8+0id}$i@NNG zIDS@hpk4+{hjGEAlL523To159gIq5+P*|Z+^5vQgb=e7^LZjSthS%k0xfx)Ei&EXf zt;+yFR9Z*t4PS&wDD81nhPt}gnhDq0hc4+a zF1BXs*JkEF-~&0zxA+|1f9Gs7BP<+U3KI$X;kn2F5XC9=!>TyhF%QLoNeV9@4ouQW zd`J)oCWAXK@K6v*`Z$u0Ai<%NbgnZ&ZwXGF=%SOwySn>EUrqk1=E$#i?mFsbuddJS ztN%pJ(rnLBj~WE;5~f(>FcBOQs7|r?9pvU@E``!G+k1>I;eai925k?7J<4wj@VwOSobfx0jrN z2w1N(Pr)>yN@3iohGmy(y@=#`DU#bTcS!Ek;?xX_sTlyey%kwKE!Z7xFe7?0(w&cV zPuuZq*8}SDqrLR_(@6Il()dSvCn5=Y{_l~Nm)4(HKkWe7e~GMqaRcSvibN+P8}pHk z+S$g*$hLfBn|gNpeOl@@?3lhN@FH;eiRD9pm@|9Oyc7Geq)rsK@<@Et0)YiG$7cP53IW468w>?7;;GqZfQGlKM!TX7&`3|mb4ehnx_e{^^)aR zu^^0T^3Z}bL3SIJr8$Ot(mOeXdu4+)6h=S(A&&Hcie9)2|hkT-%i23@J-SJr-Ws$wk=6J3KFWLN<)gfUE#=!Y%VA_f#sNmxx55X6!Z8SlwbL;OC&k&uAiyXB8;l~rX_Hkr zssMcG7^7&DZFJ%SthlOAqlAf-X45EP@NeN{Nmo%)a0=5l)jtsyBSp?>n81mXFu`~% z-k7JwdV;0oGK@cP-;nVKrIR2_#~&0=f*hceAS*@wjDB4+PjJa-0!!aXNeu7=2P}LE z`eG3laynu-hp6n_c!#V;SiE<~AB6O&iZ^Kdf$kNuABM#T_KrEU;q^<|IQy0Ah<=iR zwt$kckR}rDAtM+_3DG%hHj2aWsut^(9>QfQhh(4Pgk`ak$wAdC^%MkMto_3DrYB$e zv2jQ`4)~($R+xE|qBVvg=v{<560m-$&V@N~DU8*qj)Nkf!5w&)>vbGtY9N)8-hFFP z_r5DmUIw{8ggx^$@Pp~y`+xN=$AQ;kaOJUGFdi9KR8U7)pKH6&dfU0S(+{7je&vH- zZ9LnSZ@q0o+&;xu1mmN+TX0}^$*At>21w3iVXwt*y+yYkR$O>{rbSq>omvK84d3ta zCg8>Cn{F9Q+~k%4Odr(SWIFBfx@?22KH(9p43mWxB=;HpZVXd}_2Rt-i^8W_6#59o z0jxbmo5_eqUEgxi*(Y5~{(=#W0T|JUx22mtqA^%9q7jxEHfUxOJAqkIbVMUg!J*qg ztHu}(S$&yuRt{iM@E9f|IZ9)IMG-C^$1tL?Y}$t97pmv%3H3Kv@e`KBfG4cBctZVq zvXJ8=8q1diAJJG|j-&SF<@kuk@^XAcV|h6~qOnG|C|0o#%TNYwEQ}v#UHqWJ5sd{F zMeSblA|y>t0@+9Y7}a#FxbXduu2BU_)SJus@rLWrtuT)Psb48D%O& zlcIIxB@~}k>2HLqxVY+2I+-P-1q-JBhD$Y(Q;=kZO1qc53c_bF!uLv)wi0;k*e=7A zsNYOs7y0j}n@n}Kwg4xt*m?TkI4;}SJt1yebkJ9@cGBB3D-4=^)hwF)bF*r4^FBRY zI!RqdscP0A4$)hsoDEVj>&wsE@{*Q4{VG^Kk}h*ZHL}RZHkr;baKN}^2h)G3&rQcA z!_rBn`rHk(8ayx-+C#@BdtuolpJ80GT^4b{eZ#_$uxtul?gST(yt(@LeuMs82F*gz z21{K*Gl83hoW8&$cn#+23FoGdZ{@|%e`>_y2`lw>@P#N5FQuF5hz;ED3r7Yj9-XUO2kfiRM(5gL)NR?tBXfRORKH-+$T4sEF&;3X97lG*I{QUy zNnTXTw4t|1ae)gK`XYPY%`WY7@oGb06_wZR;IWIo= zYuC?nH_LHu^s|)@{=KW8nGgO(>E|$v#iTuB9J57Nb|!y<+!&C)PaYch!9y=qu58KI zG3ps0m1(nH@=cIcP~KXbfqS@ls;+5Ko88c#Fqj{0rZ3xDh#xO%GpGu5gZa0M+Kd$j zJ@TJ3Sa68)qBgsc+Kjq*O|;oXXU+LruKdybX|n|R7JRAGuvehXUbi`wi){~%8p zZT9^2_)hJTNPB0+o>1pW-9t00_taIS11-+yw0GvFy)$)%mig|Tc?)`HKGWVAU)6#2 z&KBMZE!W;VTWBk^ym$2(Tg?4N>9cC%OgR;|^niYWl{UR_n0>C?X}tOz66~)Vev=2g zb>tipGi=kue|oK5I*GgvsXM_pnR&s|L8&XjWre-EMnC!}{nSSpp`(e){S4rukMf#- zn68W-JbpcTu!?HIqEW$;Sb>kSSaVvOwf4ABm&m5KO+DHKU`SRjc`KoXrgl8A_* zJ}v~ler=omr|AGm^vWLDOOZq$^z{4&BvFJPq4UXp1Cj_UD80*(L|voIp)YoBJe5{R z;?0f_>ga$4;;18p7IHcos3VENijhQp4I}0quM|lHq!C8L8PP;K?3X(#e_#&dJ5F9*Hry-ppdEGcP~)L)$c+B3g5fxmjQ)0Q2mY} zSjgS0MLKxHtKp-2ex0pY2a`WXJ@{Q973#NM@_i8A1gh<_wSJ>N5ilQU;i7(f=k(ib zPFCH>y=k4SOuwnF*7??N-U9vRGu3b0)ynkSyVupq_1i*owZ3=t8*{bZK>Zd)cPpPJ z;zs>cq~u=xNZ0@F-gb2Ulw5-R0B(DKWt})WV{$$QcrGfrcTUMI+;N^v$t`x`pbDFf z|1bTGhzeF*s1#4+N^Y?e2hAsL7QW0%XIbdxrA2zz?n8YCI&tKCP%zir_mapDAzBQ| zmHZ{f{{WEa62;v+(x1xq4`%3(+$qhm;ZdBe(4j7n32Rq&kmO;~pG_(rJxFnBVWb;V z!kHQ{?_)I8-wR7JDlYYR{4z@I(+T+5$8>Tq8&7p$qWyz?1h6TA{`85p|~XVkkW1>RkQS=#?+@#CtJ98q=%%DRPs*pw~z#WMwt|l zX}is4`)5ITM)*DNKM0|p3H29+2lB!LGtN5OplzljWE-;0tlVmg&Jf!wTieV-wnhxu aT#s~PEy}DjQZ-gBUWIT*FH@eD?f(O!Dv{9u diff --git a/tests/pytests/__pycache__/test_lori.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/test_lori.cpython-312-pytest-8.3.5.pyc deleted file mode 100644 index 29241cd9c2207acebaaf29c0a04c4eca346defb7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1158 zcmZ`$J#W)M7(U1G#m+|)mzFeC2&f7uOD(~QAQNKh#FWKc>}%rIAE&dUHcW{q%G!+z zbz(#P2mA#VqE@Q8g-S@EZb9wD#MzFUesR*>`@YZfypP{Ie=U{rfUmtbQs+Fo7x9pee*LKvwToPm^LevvU`n5aeKA2|ubY%GR_3lK7q5G!^T$qi zuk)sCDtyakp6|jQymX6u*Y%hD9{itgsu_T1u{!nZ3H9Ph)Ue8=&J$0!ndEk!@&LDb zZ&Ayr!{4bLg*=Oob^?uGq+DZy$c>Zez3XsNFEy?;%{6F_OD2N*jn@qN2F2KYS%)l( zZEP?lI&~8{gk`oU6NzWDtZDg#m9dLjHr5HU=%(f4`Yk56x|SVSuFr}M($mkYnofEF z_JbAV`GDzXZ4O}<({_)4 z#>Gq`)N+H*;52&TzpEO58x$BFt!>#Yii3_uP}lZ1v=%Zpxl4vT|gSgeFqO_!|LLnQf?-526BQpo&`cSQHM|&x&!wB-tLRv Nfz&tN=jk#Z{~wI+4`2WQ diff --git a/tests/pytests/__pycache__/test_opts.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/test_opts.cpython-312-pytest-8.3.5.pyc new file mode 100644 index 0000000000000000000000000000000000000000..df846eb88eb27796056e1a16a1fef9472c72f85d GIT binary patch literal 23323 zcmeHPU2Gdyb{>+$-;qT9T9Pf;GifXpaoVBd2p}`G={U=yzKj?EeZie0ZO7RVH%(T+G4Q}1z3B51@hE$ z?##V2v?z;;Wv#PIiahi2oO6eF?tDDDyywjPTYY^%fXBgqa>uvr7KH!8H|*gw!4m@D zCxR@;_R2?<+C0 zgLKmX(gm+4S6i^Rnu8f1m>@4C;0R>r-#KKLEP`}X?4i;t`#|HTI6$RDWgV6ER5r*# z@M)yDiOOcV1vIU48^~=`(~dIl$O%d8%Ttep@WAX<-l>VqnDj7YZSyXtkaO{#i#ajr zv#bo|-8pxXo`;ZUh0<#YF zU*sKfmlkAx$wr2(E$h+yg4(IUI2(^-D?`>+t7DiQGqJbW#;n$Mb&Iq^?vlH!?or#b zdz5qVp4dGr^u+Rn9(2n)H?0TGs(Zjap$9wVT~+tMKE{>K3TGYfiM>UIv9Nf`T0oC> z*+#lT8(^-<^L6~hD*fD5`gyAK^H%BSuhK8T{N$dGrQ7g*&P!S+W43J!wlkfz%}J~+ z+x`e5>@7#$1uqd^Zg_d%<%O3IUjBT5#<5 z`{Z8ubIN-@=I16~Z*k>?#I#qR5!32&_1~hH)?fAa*&eAXe4lf5j5WmWS?N2;J>mP? zFAr>559+J#0r!L+4Af#88#h~gsC3?HG0iK7HW<@zj>lpe&d}_0vxYTd+Fpoez4AVJ z|HqMYV&Q7E>D7cVpeC#yugX9F&JQtp~xXd%!)R z2g9|f#>TA{)%Z-!_{F(;rnb>voX?u6HLelWUXguto^}YL+F@H%YkI*^ZR8nItufd1 zEsAQRn-)_V*>_{zsKz}Zri{u*HmwIuRri2Rj3`Q)8s&tV)x}s`BYHr+IT?=K&@z*gzh=LE^?D^8iKY}&uZz^* z1AEP8Qo0L;^A1FMK1t^24Ce!f%FbU*IM=#Do7%~Fx9 z9xy*E8;#MvVXtm`kM%@Tk@VEB|Mq`>dGB}s`uQ989l99NGO4fsJ))`#(R%g_WM_t7 z3#oy>V5sLfRUQnf15_1K_fy3o1cqvu`vWrlUuQZ1rs^nD0WejgOa;JH9S*63;cJRE zNg~rqAU_Za;9f%kzt!Brn!B+BG49A8=; z)?Mn1dS8M;o;ipD6xo?WC=R0-MR63x>$(V5Xa({xl}D(2ZCrO*=dyG{cfEb;RLD)d z@IgdE(S`z7HVG~~-u55sQ58)~q_5F_9HRX=#JKR?-{5RpcaD#T#HX8gpv4o(W|g!Y za*(6Ax5i^VhN5hz&_Ou3!?25|x`92=J*h-gnath}9_t|r^rfun2yHrYzd`rG$Y{!R zco>kPg)>=AC9p6q=ze|{bdPZYbgw!7#`xBKH#-xK-bke2C{_5lOe~U8^#Eu!Mb*L) zqIZPVc;-e*h865A313TPqLCCmfv|HmGO3_iZ#YS*m&l~Y2+0t=B|MoS(-AGK+{yx3 zf&H0us2TdJ%9ErAdPaJ&dlG)S!P*h~nDNAV{pz5_yS2GO(X@%6bOh!hbm79YBnNJWXF#fP$y8!2^aC>n`P z-N+6_NhBSMhqE(q-iC~GH-rPJ4jBWg(s%R(4Q6NbMmorNy26Gtxd0!Gi{t7iuylS$ z_)=>5n`3w0Dv8Z?o)ury>}bga=qq2#><>$BKqZghZw9Rwu}|;^XWb<~;(*|9n~jwu z#C3wdW3H`KkGR3`2_kM3{7tiaN==BH1%Jcc8>JS+t%AS)u2O14ybbp=Rcc4vA^00- z+e)2?w;TJ}fw)WXx6Hm(>PEa%@VCysSK5WR2iq#8Uc|eNe)a)|!+BMxYy9Z=hsWod zm!z&cZ+#is|Bv1Gy9?sg``r(A!RFIl%b^nsp%VZLp%crY(+i=~fagP0ae6+q5IT== zA`G%9bKL30|wLWts695kFHmkP0XQA&VnQA#X}*7G5C zGBisz%zYNc1Tq6#fSp0R8JS_48MK>`8K#-RqL@IEpcZzIBrzc+3CBPZhR%_3Kw=As04bH?Z&ctn;i5JdZEQp{1 z&RkpwQ5?Mn8qS%Eh3K`S1T=~-N-*Ts^C5LIG)p$jeHO(y5(Qg;ok6=9iDH@=w40GA zrkTN_7)Q>a7Iu%EF(Ks)$G{ne&t9}}^qPgs55~}gd;&8Sp{$?*C(pE?p$MRILBkr0 zK2YS4;K}a1Lv!Q4@lh!)r}4sqN~HwshwrG6cdqeiP)uR}G$`?aKel}C5N3ovVOUTd zH=+FFJ;4EgGr}#`d%{ge$bC+)OJ~xm0?+W2GNb$A5i*@pRF%%)bssZ^Jmd}NJ~;tG z_Zag(-9sV?RZ-!`A5IZrYOgnpoqFf|Oj?WFqEqLPi=4#cwlblr`ro1BTIqNJ8ypJ4}R4BVfWwP zT5ca)Xdf*4hdw{D($M_T^oP@P7eC!w=o(#WIC9tZJC_hRxa=QV@DF{hVoAgoj@FYq zU0>{UpX~QmKHa|nuga%e!_L!3lIQW6Mi4Y!M^dR)#C9UFIt72DJ@vra7~6?-Zs0_^ z&e7j{x@%@kW#{T5?4DdgaT&!G6nOs3vqG+-A`If$r{oZk!3XPDRQyfBPsx8jWBlK} zcVX`BrH1`a4L=_9FIrDZt}i6_$=34G=hZ_gsA{P^`oI6`A-UtTPWHum;T1&N%T{oA zRIDKCT2(=`k!l%xO=_JC$1 z6-2lnmTj-H5>kFu-UBs6eUNkS|Jc2yac!U$*WmwP*`pTMVD_{sO4Z_;L6T&ps-%rq zM*jZe+GbV}tx@4EV--;!t0IE9Hu%7tv%m29T6rB&ZN3KNt;MxkTr*-=?!{GnZ(Uq7 z>WEg)*EU*5^v&jLJ~~@F2z5lmTN>96)#htuleJo0qr*{~ui-F!+v6Hk5*>z0qU+O8 zNu+A0^g7(o(jBN2A-FP4jabk_Fqdx>hu}IYEh{0oY^Qsmc_JL-N%hVhD zH*03d2pUFF909?KWUMw>G+}AXeJ9-z74Yp=V<+XMGWW%&KNUZa9K!}JMuW2Y7;+qU zTSu4DiH5GYXiNSS#rIJB8H#f#aLt^&gW}Iod>_Sm5Om?&UIJpQzSmnN8!(n+20Z@~ zz5n^CdJT!!Ye-P9v2D%=xp~P}uK}3XYXIi;8i0Ad24G&V0hrfo0Os`?fT3Ok>pt3W z|GZuUFw|>cZAd5TdA$Z;sMpvwt3ka6V5rw;Y0L<$(B+s2UpkV5|?|I-g(bMJ%Y{^JY%#{m}lk1zL+E%c88p0B5hvHALi z{_;%x`Fni@P(4p3{=AXn#!S2k4FyQZq~Gh~W(Mu%pQ+r;AY|h2j&|GaLhF zOgtat5Dvt`<;P;^ABi&L`E2f!2yBWD+ni(vLNu&*GVfRQI z6H?l6476eR%w-G9P#VPaf6b8~J~v6)F;o;+SR$;&-AnB-kA(an>`>-K&HRF+8BH@gWe@yenz>UR*uuybszo+VJQIAwgv>_DS89=s zj`bh$EqJyrvKa{(oLRZ)%!4|}2`~pk;vi0~nSdb)^hu(aLXkp&Sr;;m zf@Uc)h%nJYXsUweSIBkLVa0vONs|`F1-@n?LRKc>now=+G>a`Effwo0G|N+27IFg( z^s?bDBfY`)TAml7ITqdf_Pb->hYQBZO>Ff(h}%2LTdhuxkXzukMvkMoEXNU+CsP{9 zf%{`@@)M}o=LPM2mC0Jrex5{!SPJ5zB29F>0vDzNril&>E=&bX6CGj|iH_%9(4K=t z$LDTLbsVv!I%;c4*80(UYe|p9Bqzt_EJ40B(9(&f#c@Tp( z#G(zc(S{VxC`E2f!2yBWD+ni(vL1Zjg>*gew5gp@WM18o>SqgXg~-NNMuW9UKB#cR0Dgpb|O zg1ia;vGh*39|QhJ8#Hbq0k@(UB+5+!w`I}&T%~(W9T|f*M*Ra`4F*^4Wl18f(F?+K zuW_RdRd2Z-gPXWaD{$RjY7lph1sGUELGR#TT#+Z^TPzTu|2*#tw0lMsf$uxh8Tm#^ zd4v2l*zvxzD&BXZA{zn*o>`@$!gyZo$F1O?8<3`bO W;BiCR;h1tfiMq}^9IAuv{r>@c0`(vO literal 0 HcmV?d00001 diff --git a/tests/pytests/__pycache__/test_psi.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/test_psi.cpython-312-pytest-8.3.5.pyc new file mode 100644 index 0000000000000000000000000000000000000000..84be9bd941f7a9b6185be8b6ea1f60739e83ecc7 GIT binary patch literal 12917 zcmeHN4RjONl^$6m$! zjZ4!_Xz0Ps**0#QZb-^DrjRZd_r7=Eo4NDm-8;Xr+ie6KH7}UD{CNa%0W0c}qks>$0eFz0 z3EB`O+6_{f6Ega83`B@*HyPw#%CWb^>Ms^A0y_gtbN{KAH(|;lcXXas1eQ& z@5n{_q6YQH6AFkC0uexoNe69!zZ}{~lMj)!i8h@ypHQR>s9~BU4prK6GWUeiz9eJ0 zQbz050Bu;W@_P<#WeM8$sKIZD8EGm;3M56uOoD;Vn+<9)b5yz}*g^oV$>bwu$sq)b z)?2QS8^D>Ebi}NJH85im6RI&AZI4lcO`ry_mPhBu?9n1sPA~~(Ay2TMEI2{RyjZ@F zKV;wo^bC4tv_zE)l&VNCRg3l!{Ol+WL^=XDLKUlX%B5?RtH0{yl^Q(;ut)DD zi;h65txq9mR^{lzFKmR`6;#`va)eiCzz7Scu-u}yK82ii?@l3Soo0KsY06R4l(SD$ zE?#N``0I=*d~+uF=1kQSViv)Y)i=>+v-zf#E{@p*t6-CSlcGyvh0%rT7zCp* zL!gAhG~cufcJR#y=~8;u7k1|^Q2SHoY05kI3Jth(XVGQTwx}fS%4K<42u974bjfTU zuStRhWofNulbxZq`d8=mGgZr{7~%i+r$ga1$DutP=-GX4t?5~6S5)a=2 z!VmxLrE20jSDZa~)c4B2Si9Wp>4Ec`US7~0XFqv$j{WC9hZOAm5x_F`N2WADB>&&?ita@{X`Z`~4SANWPysTWhw^0Mz%y!H!6 zD9+y2Za+EZxjD{mI<({T?|$0jW_LgP$8&8f?~Jp9ACu(JqQ7yoPaP<$PC4#!v)>;- zcw5hnfjB!BirO}8SRH4-HRmtyT&M$^JMUPuuh$4#@3p-Chn;u(;_T9Y`0U6;YpxC-jlW#|){B2`aI*`m)}MW8d0U*V zwE9=xe+G18&h24M)AfPfe>FOb^4p-*w@>r#`v3=D0y5 zz0q*+(@`(aGhEcMXmO<9RqNz!2UO%}l9)A4e(^Gi=j1CT&I$yJkyTr#Dj-r6YF!!= zkjjK+Y{yc`kXn#- zRyuGTO_Dh)p>B(D_(m-n`F{R5B^o3BHAq}YRv@WI(kPN(evL$360MVHy+l_cb=3}- zS2@sa-uliTo;v#RuTHHQcr|UdYN0n}NPrakakeB=)X7?|PuBl%UgW-D$Vyi*%D^+x%ZX(kzAM}pq+uf$;XG_G+~EyM4M5|(x06A( zn7>xK(f#3`4ICHd#3D~;m2H+N z-vG7gmF4M`y7WpzdS#_3jYMgnHlwyYqqZWW){s$aOs~0W&Wbxf)g^Z`9XS&H95K924!Tj(Gcme0Oz+*Vo+_sqWysJ-#kaq(A8IsD_j2 zj8x-Q;j87V!%H;}tWZ^vesQLB!9WK7<>iQLhOS{dP4KV4_J5FggDSdz)!;1?WbVDq z-)NqgQG)+vj)__2?^{hp=F54+?23um6_*PLQ{hL1#pJkLNSLhmZvMvR;cbJPQ{;jP zTmF&iL)Bxpxr6H`sDg2-JV}+0Q5A!?Ts9NdnI90gBHLwS9%UX}f4Q6}uS$?yV(zlU zoMiw;_)`tX1pv=&jqiSDH-Kk$KkI?wjAy)QYqDu8z(mv5@upqLrd^2lFcN1MfMk<| zgT25xyaw7E5fZ=(_NFKfSfdm-PU`>XP)KHs=`bbPBC|)q93fo=FtqdBR!vKVpmk=q zrUa%+{eV82s^eWc-oxlP*sJ4A8)ZIF=wM>u(vfY61+D}cIKBSq<|mo~Jkk8*?NFS$ zeY|c{vThT=MBS$Gx-H4NEr?rT{(!RuK(bE4v>!Mrs(g4Wwgf!dpP~Z58>Ir{r2cK!Fbjium6Ur<~k~6QA z%xFoAN9l6V#w_(6K1R}I5HB-9)XXf9^lT|=W{KicQ#!Imr((IVGtX6fk)mT|s=Qvp z?%S3vVilw4Ik7z0edkF#b2~jZmLJ7cSUMnPW)bW{{>gGJYE~c=NKvzSbcMcG2{;sm zv_iE=ikfMA{lN8UA_|OZyI6G|U}vst+%O#t*cVq^T}LpftxqAR?Jnv0U)Tt>E2!Eq zmP7y-@N{^AsMM89OT!3Io|Zv`8q* z>Y>H-^|2D6SSXP^v=ltlp5~z#*Di&)w(g;`gjte@F8V*~p?X~VugydC2-np;MUNm| zT~3PvrQPjWo|i(gdY4ZjS29gGEpjzQd)mrI-=KJC*|a^hOtnQVCwVAFxeDPdg0mRT z5;#lYw8v)AH>Rzki@%gr)Ol?c)t{~e=JAxQ;p+ZuW8Z8uAP7}isK+g&ET?N)s$Z@bmk-gYxQ^xE65G9ALTx81C7yZzTWYX;^) zXY3 ze;eQPSn=M2tGp{O#Mwu8R2H2{{mIRK_SBE))RMQ|EZJMpvUiU4X7;lWUi$XGzXPgw zI@Z4LJ4`+=S~2e|rI*E=Xq3Y^oYTNzxD5)7VzU3(Oq{)y7r z!z3Jjvn6G4q&yFYo9h;~?cB>hY%z_vIsE=eQ-ln6MrzHaWeX8aO07W}P0m9?N=wZ{ zLY7TQ#Q{>}Yqe}9B892t?DUi!WWr=!0E!f3I6p^f4Wu(tYmm)^EToc98fD|cG))%Rcv&NM#%LKSmhZ8$UgM7`}Tk32j6pZ z_|2a>gLuW*vtp&?$WI<{bNIa*he1teshBI}X5fByftUJ}^3*83WVx{t0;mfkor_Y|LWt~&G87Z)aP zYJRal(cY1uLy3}}kBkOW#Bd(lL!Dvo(Xxs8OGdUP=hvKCa)wX3);+%|@wIKqTec;( z?@8?KN(A^sMHIF6p%&)a?rA{)3A&-xN6AFtq7i1WIYriC)=v6WNx~g9-3N)d8z9qW zCd!vU_G);|a5WSo%SZMdUya!;W8D6X9l$g8XA7V>Q!w7xl5A`Nm}qPnZ`_`2+>W?S z%B=xzW0H;OdA8x|k<|&{eBLzMu#$YkEZb@=(Io@u@HwLlAvdQ&%(B^KE+~PaT4oIl z)$w*6w|)LB+nmJ-vUg-b6$5ctdNl zp%w8?TH>?vmL`DH9Z6A;m+T#-Alaw?pFqLoxWs)gacvVz$8_VtV#eU5Kd7rZIMw5tkM6^ zp^VHJ(_sn?k-4K}WMoyk24Kl9O$jFn8w4esB!r-ZlcYdtk~9pHq~e`E9S6cX&NNZx z1BDKxNxJ4|nEk#=HXHpc1b)UIuLPhzg+lUED5O7yLTOK-P@-)w2q*9NSDl|^&|L0IfW{l}DMTXGNP;3;8sZ7@ZEZHUVKnb5hC<#jV6jGG% zDWpI&RLAfXQu%Frb<75JoN1!W2MT?0Ex1PIi@EA2H_}Qj&W4XXa5bxvzh8lmWvV#l zF3t}h_*gZTXi<3bnlHT@?7@Z5B7Y#ni$%RYCdlA>hBsJ+?ZM}a(pNX~O9OrmA}x}~ z3CRw58O^;Z6sG%v%o^@4_#NMD`2|2O8x01-?+M}_;+wYDiGnwXlDCMpADAl)-G&d> M8D<-L3{o5a4Yg>r82|tP literal 0 HcmV?d00001 diff --git a/tests/pytests/__pycache__/test_scf.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/test_scf.cpython-312-pytest-8.3.5.pyc new file mode 100644 index 0000000000000000000000000000000000000000..96c6fecf01f3bf980b4e1300e04214e389eb2f97 GIT binary patch literal 24370 zcmeHv3wRUPv9KO1S(aqk@(bJ8AY%*`_-*{afQ9h`4B=@*Qb=NCtt`vPmRQLUE33q$ zB-nw(avnuAX=2hgH4SMKn4QX==fi!8_-25{utt5jf zw731g|L=DfJm;}<=FFKh=gfJG_GfW%asfQWuSq)S%>u#unBX62C~`4RC=eVLkb><3 zQb>v{!tEk16n7B@kxv6$P8?KX|0gR=IRIy9SlAp_nP%7Mo29y7(2wO7kG^mJ|NmGiGPH7kk> zE99H(<|Pmm!V7D( zNuYvrV*pyTVkXu`84YGTbUYJlF?SpHnn_0oBeVC|;Dz0;6)`aeYnM$=85vb5(z-`) z=`q@!s!hE&aGIdeSgeL>15gYB15`)~ECQFn5gI500V#42 ze3?#uIP)10cE&~}LQz`K$xR8<-&{E;055Jj4yH&kk0}%YhU!X;PW6>}Btc3d!;O@> zgk;QqflJh1(+<rCiAgK2vd^s2_e8Z z4yrg9&%p!^syUd*!6XhQb1;R2sT`ce!88u0b1;L0vpJZ_!7L8W0hq)~z$FC<%!=^B z$H=*1j2K56pF5+hX7g_&AwS)?WY8+j6GB%kE$hsRyys(dEME)sgsgKepC1V?!^n=j z;bWjt*-*>8Cxns77ii6d8OvejTnDCH^W)5FxB;;Gl@t+&X=VN98nR|ReL~nqz zh5WlnNK2yRAn4Ra-taMUA(=;N$wiMw=`Ok0B`5P;3bMeZyow$#;>$&a& zC(^=pQFJ|b39l*7I=*})|S^W>=JS*hQqislS5r)Tjrsc6iZHL+Te*qGlfA_a89-J*68 zT2F(M(I%h&AEI(G5-WGpQwV^QmPJ*XGBg}01?q!!V0T&eUTGM3xUi^y0Q zbwbx-&^-dJ3%&SweOOMjBDx#J#Z2;Tpi_X8kUU)Z*T8O^hFt))0t@mPG_v|<;GOezLSDY+ONXLWy#E_UV7xi0NhBp6=PUqgarf5(hb z#&h<6cg6q-%5lWlMQ-7tCmrEcF)#UPYvFY~k9P?P+=<$G=|;jxIe6a_$>(FR&%1%A z;#xv4A=l$P2jK<`IsGlavzRWwysv@UUYF*xMt&~f=>pG@8En(vKM#_dU1>ar zt_q$JdZc?V-hT7ru{c$3%T{W*C5gB$Qf2a zj@$U!_!eJt{dPqOm>su9tpjFSlZ02E*TAdbxwr;i<#poy^VUM!9*y}2u7xUK9aIT_ zRgpCjc_U~{nnDnzE$QS8ga0UKKUc)6iDXRZ$~-8NCcfy8d5wr2nI>K@~sxt}$~g(l77w;9%_bTL1Uu6arq#)S1~$2CUy^{yZPADS^>*Am`Q@oRS2|AwN|_9xA3vRg!cH0Ck>V)%)%O9W-b9o-@;t0MpAHsc~_$uXR zy089Q$}9ed_0MqQJrnwQ;gj$hvU=wBCVb5kq~9G)R{b+Z+ZchfT3FVzb_1 zN0s2J`h0zn-9YIbhK?eW+0sTC9UVnBeUHVytEf$H*wtezY6C6|9jzSSMM2(+KpGBv zk*zlvB5buA+QAEjQ6e+DyIMJ^I5pg>-Cfw;<={D?x7ce6qcN5MANIQe^a;+(1@Y>B z@uWJbUpkeP=1F=y{Yd&Fv)@e0?XR0u#t*I?SnIYQb`Cj*a~`~NT)A*knK-z9V7({j z@!TW1!{SF4jVp7nEAO;2_k64%dBJ(5AU1wNrt!-(!%4&Kr)32fQArHZgA0|M8;mbO z?!&^va1h=Z9*Bq?eE12$C5HFW>2{u(tA;hJKiYD&1gH3FF2NC`L}ge2;cMPY|8tRkgoAztK$ zv19)_Hc4>!VV+%bM+#3X;)np#&q7c)7wI%!8ir zRB5L{$e4UOg}=Y4jAO@5LG20j_1}0BEpwJ1BEo z59b&N^EBq$tmtNEhDpBNXmNl)ot&SZH?I%Q`}rEO$H-0VMhbl9&`A%8by?BL(4Mbp zw^ACt2EF`jl+|D)d%z|{Ci#$4pBW~P z-ugBD_6ootz^YidbrmDru2nHA6BwIzN^fd4SbMr1Oj021AEE`-`Ki~+yJcD=#Q zh_;n7GOQHV0BGR5Y}6toqOdLDc;T`MY(BgMvJ$R(3O(8w84|@bBk4jsJ4&8c^Qf?o z%0%>(E-Ptn?`>_g8g{jU3uaL1o!XfU{fww}K*c@*TJ{;3{6s-Q>O}l}fBgJF{DOXB zQax)zz1Xi_98eeZOV7)=w_1O^HW0tKpO{i79nKia@H9?jF860H4`kK^)Vc}vYQK8* z7%`>~s5imFA%aus&#XKt^kr5CGFJuEbrb4!e)YPsdf%3ofO>1c^paGNlyW$4DDPu| zC{un>AWBm7$6QhhR0)GO4cz3md+OYsfw=5`5g;a~9^Ou;#U`qHNRTqo4dumW@=XY;oFC9 zAFdkNHk$k9td&5~V;`>d?0G~rl6yjYY|)A4V@3Y7rH`sE#0WAA&r1YpIhPUy>2rd7 zP9{LR9#joijx0I4Vz}@`#c0l`V^r%etM|{V_b1dpsG3Yjba!|hL*4#_`9q=$5@^8r z96|Ej^NR!tiT$w@c)KCxr;TBTDzrK))+yHfkZc>3l_<sP z0n^|g9JR2DiQ;nxY*NJGhnFa@Y*X`nFm2%i_rc&1OVHes!X+Pw>qHH>?4jky!%HZa zB0>pz2u%?@p@o$)imRD4LP0BWnZcI=j{#+PVHM`@N~(w#US>#O2>}Zjq@w`O^r)o; zc)tYcb4!aDT&^A34NHp{SXxM&U*BSMphvt0j0I&RHC=jGOWek-DfH%U{AIy)Ei=N# zJha@?180(hU5$yEHc2~|LSWDDjOO@X#lYB2hSNDg^sscIg^GqEkvy~ zNG)g{sS-e-N&zr)X2b~_ND4P_K?8ajp^$}~xqNqL$g`fR#F{w6sWQS=8N_C2ZO5NA zXjRlQe23PMnuoQ35j4a07wr{>XapgQ35E`872?Rbvb-HMlR-Ne2X-*>f@(yP==^6# z?T)f>8coQ`B}JRAP{W)HuVv#xh0_d-!ycSXZLWa?3qSP9s`Ex6L z^DF!b6_AIwaJKB8rWPp!N}NC_I3sIoH{ zi|e2*{U_4qcDlSYr}J$RgK3g*CSnA3q7ezrWLyX^dLnEsPXi8C37Gn2dLtAJ?J70= z45r~Go8Zs6f_b=M!)dw=pc(dW8u*!!gWDa3etHFqb3J8t27i|Z=VWkb$i<^}i<|V6 zzRT!4%sIr}6AGocODiUnVeMBE$~JYA3X$B&zx6zJ!M}WSsrt zwt=S5a9$bQvEuSc8ymD<_%n&1brQpG=OT87+5#^aVh?F`a25{ipcramq`{ie%Gewf zy4o@lt{Y*?1Q}n!j2O}gzrAzxa>j!*Pj;Mcu!->W^@Xg5ENE-myPcUcnGF8zqfpci zUTe4$x|At^IXrDB&6D$B)`WV2U%gsEuOc|y_AfM%7^5h^5N`Z@@QTlVR66YOnh>`lG`+B zlUUtz?HeV>AMvt9D~L63ztihwCHFo3v)AwV=_~A+Ih#Jrf2q#Px?ib#QXuXuLzk2e8?>!AU2}Py%zW3t|UUuxO zjkkB*d8?PT{;2Y?kNy*K9AA9%*|xr0z1k!Sm5*u%z?NRPzsMVV=@m9%x&5^_#%*49 z>pK&VQf0rbVVhq5=*e$qKkQ|FQ+4l(zV_iO?9I&=|2)>x?q$j9^83H-c&CQVd-5l_ zF-Pw6vIRRHDqr?qxsFx8XbW_HpwY3mdwb+MV$jQ~?%TL;&g;24wrTM6>y4H7ds$0m z{ToxwPA}W={2y1RUE1$ue`g*=~G# z@IIfbO2?L1B#q_2pQmFlE<6*n?2e1CuwM^+vSZhu?gef)y?OX(=~5jV^UR*L=l164 z*z@gACnUU=?PXi;{rR9V*d)|Hc!soBB@3e0# z{L7XLudqiB);|Bi(|dGmTg^MaJ6qqOV~OM0>x2!rdD%BMl}}n0n2|{{GKt$2>R#mZ zGpY7%LF%Jk_T;I%UtM-fo{lZw-aK@q)#jz{hxe@T9piJ~dgPFoUGc+(wV7(IjvB(U z4&|M?T!+MpxPv~Nn()o$^!Z#_J)*U;SNW%vK7 zFt6;zbzb)ImB-T;es?D_)QO~SM{p3q*8!N`s+`)g;hP}8Z`?Mo{@0%0)KG)??i&Eu zvd6@6PdszbOFe*D$OH8-g2xdI17Mrm?)dC?FK6l4_a0pF+?Os&$DYeoyfp8Z1|3`5 zdV_e;K|6@%q54nWzJt^O190XmplAe#5Iln5+W<_aZ6Bw6_7re&m-@7S>uX{!d+5+_ zRfAjlyzKpo3!4Vkep186-96sbIQ)Q@J^CHZs|lH_b?m}3ZEu`qNH=VpJDZbUbe6Gml=mEL5=D@Xj#!^fa1!ZJe#Ru?(wpxpHrtTd*cC= z40;7qE(G@>!2Srz;W)%hOV9PjEc)gVFDtuiaDCFvJ9X?!{(>L>d~*{tuI5{T_bMyA z?9hH+)l^Q0mu>&;)O{xRQZGwCw(XNAi%nweiT)$9HW9$V0rta4- zp56W4H@xg)>L;`AUcE_2y@c;xLEr_z3Jxs&-kF$vUiP(Lu$n);k*#B?np=rQ=U||I zT6tFcogvc8&YEnk`M?jN9=+`k7d}e-ikE%Jt@(Ay9lgjzHg>_RW5&RUv7y$O?!^i%dswmU3hN4r_ALRAv*t7m$|LPXn zrDH$3>Avs&W$RaU?4CnK`|dc=hq?mWYys7Wz>R<#3!EN4gUJ^WaBaot;bFt;4>* ztowI(MSe!6h`t9Z@xa9Hk^8&v_OkVx+9zIg9zY4$u&R9srjJMJM3{%Lys1-|H;&*m z05?5^~CUdb;l(6QAgv_0Z2Ejo7F#O}ABDB1>6`06|9 z={p*|Y22QUxorQSp^h2R|ktZ&GDZX|25j{Wpj z&3$vv!c0E?;QsNK-(BftzZ)l6^Q*ZI9eZ%~u6-u?CKNq|1;2`bn|vO_7&qp>k1?*X zKfxH+w_Ic2#w6Bfdgh}A_v}jnjr>E8+x(;N!mK~{$q!OL_z#hcWpa0#32QIu&eexSbS>C?5b| zFX=zrZhQ%>LEv|<>mSeCsAJcrzOX`}-T>H2Nt{=0XM-7 zW9&N!{tdxN1gOK*&k=CKMY&S%A;9{mj{uk^wm2?W1F@IHcb2>uJf z#{f)i^L|nJUuz!lvR$7){H`ylAI#?hO@;4p$G5FA7B z?+9K)@E-_%iC_}JuMwO@@F9XfAh?L&j{rQ_)}!@HlT-hC9T-*WPe4{gMK zSlM1g>qp>0@J$5YMeqXzKSJ;`1U>|BAvlBJHwb=*;5>p$2tGydCjh47zszWe3BXJ| z_sL~rfBDjl72&}IHGtpN3WU;1%3pbYFOHFZMany75tkTjYWlO3` ztIEsEmvZITlp=CLN#T;xvhvcZs^a3(GA?Tdk_E+uRZA<&mX?()DJ?Cl43;nBD*L<3 z+k3lU3r6*748itvTj9j4iz5wD$_Q6jaPh~b;foXEj#4Y!>2#D)Ux1Xjqbq%zK`S+t zr@s0=rAjzys=bvt`&_?hrRmE!Nv1IH7q97ooNw$Ks*E{l`oZllY`p)qKkH0IZ*SO< zv+7GPl*`%wV$pN=eW^3e{!CK#`p=XrP5Qk93#k7{S!wDxY<1oA%muIMSjv-sD6bc+ zG))cvamOh033n?A zAJH(hw>o;^o-7V;*t+3P5kCK6FrLdp?YQrw=Z8Q2$%z`%UyfZkwZ3hWj*+aYZEk9I zYVboUq3cbn!O&wf!?C87YBM{)QKVXvOFFY62$$V|;_Gt+l7INk1s^C1YipcZd9&GR z3}5PQX#)3?Zadt-?loI1nl_^*cS&JsyJq#OLKBpO=QEwt)L?hO*G?RGXlv}ULeIht zu!Y}<=kX=9+*eqPq#ZA0ZN04_Tuzy00Pq17Gv_|UmoIb{%3G|^EDh8K7smQsM)=$d zum)FdMiUimZedxw#%=`hk@iAo1|Ic>FW5AA-^SljJMYok?M661$j!6$mXvAj^4s~C zW(Aj7thMK1R;d<_hcU90M}kNQr<~7%NGJ4S`Z~Q=hDsV@e4TB8Z#V|!1)Orya&rRbc06r zg0u~m9&qO}!O1%JshlP}OUL{45DU&WfWk)Y4kwi6&iu|@`MWFy zHD-%5#^g=|1^Yf1{s8!)wH zeKV%{Bz8L{OAD*ooeS3MZ!>p+zgff$0IM+c8Z6+$fFA~eulkUM@Ua_-Mc-z$FcJqU z85~)3lkhzoDGW>K7b+2EWoJQ@6jAe#P)JO0IyGI88oB9{=Rf)0J7YebGafktXEq9t zhM*9&7@NA|Z&E={m6m{>6>!=JN~I0!Wj=aRSXOWv9MUTV)S!)_Vu5W+4geKq2^ELQ zcmxRu)BsGj-!FR6lhLnpDmJe#Kt`cM4bF|x%mK~N_<&eQ(Q$kfOdB9D2!b4eo=0&6 z!v(ZnD~<3%DY0@Df-o>9ESY%B3HsA=NRh)oMrJaC z8x9z2M#ei`GGd&j;`Ag54wE6@9!7~t^ddo@9VQtGhI~rG*Ib;d1@~nr8CRbT+$^#% z#-HxChE4`U*G%o*j3R`HzB-KZM*SWm@45p988u$5nJm^exX7~Fa1vq&v<{47 zJvw5nFkw>5U_>Cp!8QwGoYyUS-%3!6psp^M!@(vn(gtp6#7OIdp?EK-iO|6a zo597Gg!K<2ZED3843iL4aS)x=5gZl5ZH%ym5jHWxH59I~83lG%aPBCHPArK|R0VrA zgjPH)RT@kMd#413-x_qkVuZDfXpM~#8W~YtDI=_7h&tp7@`3>1fUhPm#9Z5 z!*Siz(y)bz5BZUWE|Tqxa4jQT#|Rr4DQPy_LEAEsZvyQdlZMVp(EKaAN7M+*2zU#9 z!DR4QV9hS?#;Ep}MK`%TI#C&&sF>E^(&$%9r@bnnNbJzH2$lh`uLLl|BJcXMR<2wb z^q!JO?gOX;AP!s}+Z#a9KJOE}PsC3VvHkgviXM+S67zWck@ykfnYd$dfwYQoq7v?H zC9wxK?%U{IGfrep60!qL`iI%Z?f6C@@Vhad3Ufs8PGA^mFkpqwcZPN~DC*&Hx zTr(kG;Fm8LwvW_5({!w9B7e0%fAv^QAb(RpzPYb%N~Royo8W_rzS>D;!eG-t(}XhH zugo6K`A+`P{BITplqG!)Q!@FWd_e9lpGeB_C*=f^as#pjeYIGTa&Y0mLU;DSqCVam z{@@LL4QGj1pS<9N#4j%&Cn`XHd~)qbonKxwP81`*iSCktc8|m#m(|zEy{#Bc^~-hR z#7cOZHfLBoMEgJ-F>!9?shG^kAdiFb1M%as^eNS>^8#Ud{$!EvWTvlh!v(Q0eWUQA zKp4MC2rptc3E>hyR>3oz>j!R=76xQ_eYICzZN@}cDq)&ykp`f9lrEPKh}?R}y5 z#oNa=zi_8t4qdY8Y(!qbYOK7!c0kfsdqFAyk%1fDNJT(V+E+iBlim%V}Ynb zdGBVo)Scp%_J3tyd0#!!1ub_k_Be)H0qn*fE=g(Oe$XV}` zX(nZHKDE{_)Amc?A~#m$Q?*XU&+?=Ur;H>Y%{)Q)DmM638)3M@K)nP5b+hoSGTtrm z5JSpg`aoiXPuXx@FBGIKI^Ql7NEH0!9G4Wd3&UG|XdD*z zHJ-^{I1+PoE_kEnKD)x7z0!x~Al4VR&`&IcSrg3Wf(iLtzkKd+&xr<~d~QHqJx(kG z;Yj2@dG$-A*ZhL{#a&~yFIfF@nEy9|TxT!z5vCF8$lhb|5E)%?GUbH=%!wZ@@aL_D zn6GI&LVY{HLp7d!ALK%ozI|L_f-JwnG(klEpGKr$Mj#R$CrqCFVD2fT9gdC`grh(- z64$p!;?pY#<^#b=DAf-xfi zj<-3ZbHopUha` zBbuSd_Z(9}WE8>JRsh(!BdSr=*w%4HGo<~B<_RM5|1@F*GXjz5IMIwfi)g2Sswx~E zjYP+`hI4(>X$JG5E{>@dUJa*9Dj#(5Zg#txMfx3mFe}kl;S0-oY`G`8t3Qr*f zCsF{6f}H9=PKDq?o-zt@s)Mv&Q8z(E{+~vSU`8Mk9Y;dZXb^|8Be`KrJ_?v8Qi8ds zu*PuIH@%)hb9!NGxy-`P?% zxC=>#pEEk(SBr(gtr2W23*jr)6l~L&*l-s9_=C%%R&qP8)>eHFe5RYS13g7+s{tH+ z;f@0magcxwEo`4U9Km-MvjI+?@x%hSfuH$eOd6~bw%#NOX9Cn*AWD@XWeK;r3?8H= z*kMD;?fHU70(K^8H+=p(_|bApAuj+$YUj@oa_L zYalDQTW@VW1_iKaCICjZ9DH5j7pgVXBTx$d3+#B4cwQ_N3NMJ_gv6(F1VZ6{LBF+6 z@v%r0FX~gk(n4L`7dNTO>{CoCX7$P57sO2olHV7^zAaF^FG!peB=w0V1WA5Dl1D#M zHky1|Q1fd+<@1r?=e~VDveFM0U5*b_r{txc<>4E?N literal 0 HcmV?d00001 diff --git a/tests/pytests/__pycache__/total_1.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/total_1.cpython-312-pytest-8.3.5.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bfc7a702e363a925f093844de4db231165f808ac GIT binary patch literal 1890 zcmaJBO>Y}TboRqv>)1)0rd3sFqt z+dLy6BLQWgXY)%hZOt%nYs~DrqdbT216c#l1c!A`deOqb;{yOJ;;wWRR(zstq4WiQvmVwqSqyK06F z&n*|>!%Jb2VajMRY;-XTnB|$%Q(=Rr%AQqQHX#7H00G1`p|1mIp+i;68m)IsCik zKD_*l_0 z2+PNp+xq!^J+)(uJ!M}ux0;`S^gPzqXL>C9)jMr{@>ssMwYE22d_LONuLE!6)t`;A zU1My|7;o$O9%Fph7=LE(7~^}!)wX`^1oxXB_b2_@5!8SR!#r88yB>3Eln=ZeHq7JQ zMVLmS{3(l4OvGrNBKRJ0p$(~H7EeSx1B~TqS%hoQL+Fp(lL-jJlX9}bRO2Hb+Hk>q zT!S;65(aLqLd0VvVjvMQDtMxM2dErx^3+LA2wxLGHYPdi2Tt9?bL2Yk#H^uL032wF lqWp%?I{Mi71!d%a@J}?qi{}48qlbE289d76lsBZO{{Rzd)0F@K literal 0 HcmV?d00001 diff --git a/tests/pytests/spec.py b/tests/pytests/spec.py new file mode 100644 index 00000000..c5f3a0a1 --- /dev/null +++ b/tests/pytests/spec.py @@ -0,0 +1,30 @@ +import pylibefp + + + +efp = pylibefp.core.efp() + +frags = ["tip3p_mm_l", "tip3p_mm_l"] +efp.add_potential(frags) +efp.add_fragment(frags) +efp.set_frag_coordinates(0, "xyzabc", + [0.0, 0.0, 0.0, 1.0, 2.0, 3.0]) +efp.set_frag_coordinates(1, "xyzabc", + [3.0, 0.0, 0.0, 5.0, 2.0, 8.0]) +efp.prepare() + +efp.set_opts({ + "elec": False, + "elec_damp": "screen", + "xr": False, + "pol": False, + "disp": False, + "qq": True, + "lj":True, + "spec_elec":True, + 'special_fragment':1 +}) + +efp.compute() +ene = efp.get_energy() +print(ene) diff --git a/tests/pytests/symm.py b/tests/pytests/symm.py index aa0cdccc..92d02e9f 100644 --- a/tests/pytests/symm.py +++ b/tests/pytests/symm.py @@ -4,7 +4,7 @@ from qcelemental.testing import compare, compare_recursive, compare_values -asdf = system_1() +asdf = system_2() opts = asdf.set_opts({ 'elec': True, diff --git a/tests/pytests/test_dict.py b/tests/pytests/test_dict.py index 8f5be082..8a8436f4 100644 --- a/tests/pytests/test_dict.py +++ b/tests/pytests/test_dict.py @@ -28,7 +28,7 @@ def test_dict_1(): print(sys1p.geometry_summary(units_to_bohr=1.0)) assert compare(2, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0001922903, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-3) + assert compare_values(0.0001922903, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-6) def test_dict_2a(): @@ -40,7 +40,7 @@ def test_dict_2a(): ene = sys1p.get_energy() assert compare(5, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0007440865, ene['total'], sys._getframe().f_code.co_name, atol=1.e-3) + assert compare_values(0.0007440865, ene['total'], sys._getframe().f_code.co_name, atol=1.e-6) def test_dict_3a(): @@ -60,7 +60,7 @@ def test_dict_3a(): ene = sys1p.get_energy() assert compare(9, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0061408841, ene['total'], sys._getframe().f_code.co_name, atol=1.e-3) + assert compare_values(0.0061408841, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5) def test_dict_4a(): @@ -80,7 +80,7 @@ def test_dict_4a(): ene = sys1p.get_energy() assert compare(12, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(-0.0095597483, ene['total'], sys._getframe().f_code.co_name, atol=1.e-3) + assert compare_values(-0.0095597483, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5) def test_dict_5(): diff --git a/tests/pytests/test_efpefp.py b/tests/pytests/test_efpefp.py index ced4599a..44fc4c66 100644 --- a/tests/pytests/test_efpefp.py +++ b/tests/pytests/test_efpefp.py @@ -296,7 +296,7 @@ def test_total_4a(): asdf.compute() ene = asdf.get_energy() - nfrags = ['ACETONE_L', 'C2H5OH_L', 'C6H6_L', 'CCL4_L', 'CH3OH_L', 'CH4_L', 'CL2_L', 'DCM_L', 'DMSO_L', 'H2_L', 'H2O_L', 'NH3_L'] + nfrags = ['ACETONE', 'C2H5OH', 'C6H6', 'CCL4', 'CH3OH', 'CH4', 'CL2', 'DCM', 'DMSO', 'H2', 'H2O', 'NH3'] mfrags = [1 for fr in range(12)] cfrags = [0.0 for fr in range(12)] tnm = sys._getframe().f_code.co_name diff --git a/tests/pytests/test_libefp.py b/tests/pytests/test_libefp.py index cb3e9b61..ee41c045 100644 --- a/tests/pytests/test_libefp.py +++ b/tests/pytests/test_libefp.py @@ -132,15 +132,15 @@ def test_qm_1b(): assert compare_values(382.798972923, asdf.nuclear_repulsion_energy(use_efp_frags=True, use_point_charges=True), sys._getframe().f_code.co_name + ': NRE qmefp', - atol=1.e-6) + atol=1.e-4) assert compare_values(1.90431498139, asdf.nuclear_repulsion_energy(use_efp_frags=False, use_point_charges=True), sys._getframe().f_code.co_name + ': NRE qm', - atol=1.e-6) + atol=1.e-4) assert compare_values(321.754522402, asdf.nuclear_repulsion_energy(use_efp_frags=True, use_point_charges=False), sys._getframe().f_code.co_name + ': NRE efp', - atol=1.e-6) + atol=1.e-4) def test_qm_2a(): diff --git a/tests/pytests/test_lori.py b/tests/pytests/test_lori.py index 817f7f78..27f98e97 100644 --- a/tests/pytests/test_lori.py +++ b/tests/pytests/test_lori.py @@ -19,7 +19,6 @@ "xr": True, "pol": True, "disp": False, - "enable_pairwise": True, }) efp.compute() diff --git a/tests/pytests/test_psi.py b/tests/pytests/test_psi.py index d6b00c2d..490aec3d 100644 --- a/tests/pytests/test_psi.py +++ b/tests/pytests/test_psi.py @@ -34,8 +34,8 @@ def test_efpefptorque(): ] } # yapf: disable - assert compare_values(-0.0066095987170644, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-3) - assert compare_recursive(ref, {'torque': torq}, sys._getframe().f_code.co_name + ': torq', atol=1.e-3) + assert compare_values(-0.0066095987170644, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-5) + assert compare_recursive(ref, {'torque': torq}, sys._getframe().f_code.co_name + ': torq', atol=1.e-6) def test_efpefp_bz2(): @@ -45,7 +45,7 @@ def test_efpefp_bz2(): asdf = pylibefp.core.efp() - frags = ['c6h6_l', 'c6h6_l'] + frags = ['c6h6', 'c6h6'] asdf.add_potential(frags) asdf.add_fragment(frags) asdf.set_frag_coordinates( @@ -59,8 +59,8 @@ def test_efpefp_bz2(): ene = asdf.get_energy(label='psi') # values copied from q-chem output file - assert compare_values(-0.006945881265, ene['elst'], sys._getframe().f_code.co_name + ': ene elst', atol=1.e-3) - assert compare_values(0.046915489574, ene['exch'], sys._getframe().f_code.co_name + ': ene exch', atol=1.e-3) - assert compare_values(-0.000675030191, ene['ind'], sys._getframe().f_code.co_name + ': ene ind', atol=1.e-3) - assert compare_values(-0.021092526180, ene['disp'], sys._getframe().f_code.co_name + ': ene disp', atol=1.e-3) - assert compare_values(0.018202051938, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-3) + assert compare_values(-0.006945881265, ene['elst'], sys._getframe().f_code.co_name + ': ene elst', atol=1.e-6) + assert compare_values(0.046915489574, ene['exch'], sys._getframe().f_code.co_name + ': ene exch', atol=1.e-6) + assert compare_values(-0.000675030191, ene['ind'], sys._getframe().f_code.co_name + ': ene ind', atol=1.e-6) + assert compare_values(-0.021092526180, ene['disp'], sys._getframe().f_code.co_name + ': ene disp', atol=1.e-6) + assert compare_values(0.018202051938, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-6) diff --git a/tests/pytests/total_1.py b/tests/pytests/total_1.py index c2dbe868..41ee38ed 100644 --- a/tests/pytests/total_1.py +++ b/tests/pytests/total_1.py @@ -30,7 +30,6 @@ def test_total_1a(): ene = asdf.get_energy() pprint.pprint(ene) print('<<< get_opts(): ', asdf.get_opts(), '>>>') - print('<<< summary(): ', asdf.summary(), '>>>') print('<<< get_energy():', ene, '>>>') print('<<< get_atoms(): ', asdf.get_atoms(), '>>>') print(asdf.energy_summary()) From 7eece2e3cc4ea1f34b7cd04012afce47d4595a8c Mon Sep 17 00:00:00 2001 From: osu1191 Date: Mon, 28 Apr 2025 02:42:47 -0400 Subject: [PATCH 03/12] edited pair energies comp --- python/wrapper.py | 16 +++++++++------- setup.csh | 2 +- .../ene.cpython-312-pytest-8.3.5.pyc | Bin 0 -> 1142 bytes .../pair2.cpython-312-pytest-8.3.5.pyc | Bin 1328 -> 1328 bytes .../test_efpefp.cpython-312-pytest-8.3.5.pyc | Bin 0 -> 49406 bytes tests/pytests/ene.py | 2 +- tests/pytests/pair2.py | 4 ++-- tests/pytests/spec.py | 2 +- tests/pytests/symm.py | 2 +- 9 files changed, 15 insertions(+), 13 deletions(-) create mode 100644 tests/pytests/__pycache__/ene.cpython-312-pytest-8.3.5.pyc create mode 100644 tests/pytests/__pycache__/test_efpefp.cpython-312-pytest-8.3.5.pyc diff --git a/python/wrapper.py b/python/wrapper.py index d413b324..5e9deb5a 100644 --- a/python/wrapper.py +++ b/python/wrapper.py @@ -97,20 +97,22 @@ def compute(efpobj, do_gradient=False): None """ + # efp_compute already does pairwise, enable_pairwise just saves the pairwise info + # res = efpobj._efp_compute(do_gradient) _result_to_error(res) # If pairwise is enabled if efpobj.get_opts().get("enable_pairwise", False): - if efpobj.get_opts().get("symmetry", False): + #if efpobj.get_opts().get("symmetry", False): # If symmetry, use two-body crystal - res2 = efpobj._efp_compute_two_body_crystal() - else: + #res2 = efpobj._efp_compute_two_body_crystal() + #else: # If not, two-body range - nfrag = efpobj.get_frag_count() - res2 = efpobj._efp_compute_pairwise_energy_range(0, nfrag) + # nfrag = efpobj.get_frag_count() + # res2 = efpobj._efp_compute_pairwise_energy_range(0, nfrag) - _result_to_error(res2) - efpobj.print_pairwise_energies() + #_result_to_error(res2) + efpobj.print_pairwise_energies() # do this for enable_pairwise=true def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): """Searches for EFP fragments and adds to `efpobj`. diff --git a/setup.csh b/setup.csh index 4f9a78c4..2dbdfc50 100644 --- a/setup.csh +++ b/setup.csh @@ -1,6 +1,6 @@ #!/bin/csh -setenv TORCH_SWITCH ON +setenv TORCH_SWITCH OFF setenv LIBEFP_DIR "./" setenv INSTALLATION_DIR "$LIBEFP_DIR" diff --git a/tests/pytests/__pycache__/ene.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/ene.cpython-312-pytest-8.3.5.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ebd6c11f75baa8742cd54c16e3b3778ce37a2c27 GIT binary patch literal 1142 zcmZ`$J#W)M7(Uy{#deY=hL$u!h!3?wS?YlmK_=9x6H^w;v9FF(e_YRwXb?jpin4a2 zLnk)W-@q?mA!?)MrKT@4t$7aQ<_W*=1|)?n_j18}lR(Cwmp^L0qA;=uLc!}sf##5h zEUNI`uuUIRaf?t1haSz@Zp6aPO)7fb#$776d#)F|K}1VU+&3cl?#d%GEQa1Jl!w}m2uy5+h`rroD~v8B@XlJ#B?HBHf`I$VT^*m%zOl450jQpX01Z!hhJAn0pbgV4wy!$3E z4e}Ep9RY0&w4LQcu$V;EF{th=9D-UBEsnwBuC}{Mb5G8g>(VhVxP=@QhsEtOQ%9v? zX;RWAT79BcCdDep>fA&r|E|b$;u(+yX*v&tTv{-J$|x8H2k_oN`VR5~>w`*`*#!Rp D>5U38 literal 0 HcmV?d00001 diff --git a/tests/pytests/__pycache__/pair2.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/pair2.cpython-312-pytest-8.3.5.pyc index 3097ed9e8ef2793cdcaf084334971f389d39547c..9771ebc75e1b5ef8a80ca95fca4f18fc7a80a6bd 100644 GIT binary patch delta 38 rcmdnMwSkNGG%qg~0}$-2b7l delta 38 rcmdnMwSkNGG%qg~0}#wfV9nULk@p)Tqu^#1CKYCm=)oHd1_1^eW4vH&Fu2`PHA1ppu5K8_bdT|4 zZ*9+9n0dq+@31#MPi(BTa5G|!&vMM}j6F9u!QI5(bxY!;>GM5y#}N+4&1~2(7qjEI zo4fDNs?4fxmAYC+*x*$~_g{bgm6?^9mHF47fByOBF9HFt4M+V?oyS9W+ibt03w{)6 z$n`~bo9$JbY?JMsw!?OIF6eT!7T9fF(qX4vz2iFUVs{D;7qYYau$!GdhdnqKbb7md zhkafC!~U+o;Q)){=q&m-NJExhupKUzoq#2>3$Ro!1T2%?faS6WutN3%R?0rWD%lTM zEe8N+$wh#({tbJ=7PoD;y<%@IXt%W%97ULfJ#Lo^zFqK*LdljWz*WJ1+_B@Iuz$rCbnFd! z(`Bv4!%ABu)EnuJ#FTKXy{9`Z$?ehJw3lE6IU-7=Gt!z45R553(HO$Drsrl{hI)J2 zyJI0WxoEm9atdfSQdT0pCpuXwj^3Wmv>za>w4YWVRd7oAkQE7F09i`Aj06uHjq z{KRdmSvcZd_}ZGY;TIcTY<+3Xxix2+lir2nzM?bt|Nff8=DRa0A;wGIYANIWxItv^ zrwH&>TMXSpJ$Q4Vchx~5vJM&VOLm+uxS++bQ#g9tSqD#t-7n0#iA#PzVUKzET|q05 zrBi4NvU3w|G0a66D1~&E-3dp`$796{;`X@XqUVB^+k_OC&f25ZvRC%S0z6bl5y$j1 zf8I%3bat$i(>uyIrk`Vs#n3e`w_=P@p@-zy#2DRn*(dw+&QWFV9L2>OP>dl>a-xSs z4*YUp+HznQbzzkQ5fV8F7|LaqTL(|oBAmp-$wlX#r(NJB&RDgmef@1x&&fLCP9B$^ zpTj5Nls(}{NPV_o@!kVz7y5D}(mhb1P&-R|h>?Wka98h#KlU~CbYF@q|Q2ApX}Z(luu1_F%)RuNb;5J7Q)%mCd_{Z2y}f;*mJ{urvG(q0+SS?98t#my zy`VC#6jsu+Leb+rCpu-~mrAIuv!^B88R`yqMbe&7G<+;VG(m0T(JLDj!p*Aj+LoKp#C_t*$2H#cK6JO=E2oubFr)4u#%z+OKj< zdN~bYWg|$`q@teyoUy&{EC2e2Guy`{_n$oY?1Sf4^&d}_tsRxt5n<1>dtTT(?k##{ z#F@MD$p&&NH5dKmi#C<_RyC9seHac#!gR35j8E-^T< z1>MS8!in>d%o>fQ3tD^CkR&QA>j`WCh*H{&)tPd;7G*2$(^I2fh+-z(u02(@Zd6)t z%I*HAuNsWev*66O_cgxPv^FWN)%YHmUSVo({djQMnLWwU#VKjY_@br#jsJQ#?k`A5 zcihr!P$4E^&IXT7$_63Ts&cIZV-QohH!hm-4NJU`ZW9jKsj{_%WWo}04=mBCu|%iF z5=ka@YE03oGDBjMr%_(ey;N?UF?I-v6=dx&mO=I2S1QHsx<0}&EAD6z<`V2>8z1S^zFH8$#w&E_w`5O)rz>F2nczeRr5 z*r+Q}2sT=__kcpN1{^B4q&KG25SRz>;iW$u|9*EDnbwHBneYj7#i7w0F%@wm=uNd5w^4%k((zA<3rRp3k+FNz5BITWT zrkV5Uja!n^7M)L%a5}zzQ&QRlT4hSAKDYe!uchX!8Lz2*z3H|4L99+mv)`AzBm%1s zyOm|w9L#&eq|Do#VKatqmmRWnUdTW<%)0H6VGCqeynrOqoYE{)R0tWC*tsUZ;>=hz z7_Nh{Zb|krxz=wY*9HVb=5p;+WVp{qt|fMuubRcEC@_(<tCXU(9r&6m8inOhiupD zp!S^d3@=T3s2Vb%FrH4n)Io#!tiw13p-)y|GQ`#)bVzy>E~v>a&ZX>zDGs?1#$)Dp z+(=JM66Bj6;!u5N9XtZ#2?xqaYW1um zAr)X&UgXCa6Vn78HCaJ%nQ$SrON7P*QwJ&fvyOy2?(V3~BH}XPk>@15aZlV!I@5$N zM#>|0U<%9`*XRHJaX%)mF35A`n%H6E{^D=(2;qMNC}j zF=+lF>zEh=9K0rXoVeiN^1QrrUTH|vB_q!0SlE**^=Ue1l@I#AmVgk(~oR}=L2q*Z3MK~`ni$yp;4<|1;?`KAG zff!APvBMCTX2-IQc!0;{XKo}1Lpe-EC!F}Z@Gr#QjlTzfFaExSU#?|5gJ#;Yj)WxN zk#G{<(5F-rMfzJcahW$!5-$Nq`iUHzk!hgKxJ6_di~cafk+l95pKh6E${b0) z`+R_Ln)19kO*!W<{5%y-lPHmwF)l+!Ls`cc!ey3EiOZ~*;W9H^hMFyJ`ExczpUYT`nzFPrai^)ir6^uxI%=wr>k^gmig+a(HC18M_LOvIBhu)a{`t* z5Ft?qjkn#nXv#XKeC08Va233*S%j<1Gu)J=AGztgk4Y=lc}pwRJTLsLNh@4SLt`T7 zcoUWQSK;qTcwwTwO0x)59z-__x>UnFQrxm>9M#m1tYMUg08W=~+O(;b77mh$^wQvl z+S=2O&6_vtbag=??&u^eW$a>Mu|7O-qPsm74aIswEj`DTHYADT<1Ne_++bk%2&n4w z+2j#3KO{xI!Ysr05ytZ51=jZN6EDneSQXsD=9oUBwf>(LZm8`(ri9x*{eOnFmyK9q zsV=@GENk^8TXae5E!XluK(sKcISGhHY6?c{s2b=Yq1K)g-7#-sDb{H&uT|G_iglh1 zz_d8XqxO8lI1vw4Gt~f$6R{>#BLdTi>+r}Bo{2|xMbxL&9mBI_T-3GpuqBw@MC~%R zhO_~pgS2jxriE0ib_W)N4)_()hAVdg&?3<$0;>tEC9p0nVI65bgN+QXVsH(E>~3R& zLKeFp(S!z7GjedeO<(pDuEq^xor}6_)GLp#colWNo);I0R$38HkCs{I%o_lzL3?M0 zx<}Eq$^*u0^u}LE{*~W|0tO9BcpH&(dKa`l9?KQP8&IAAK?xCf5`f;odZmRfTM5Vn zA_R^B&?{(Uucony;j2G&Q}uV9=!}JnvT7X<)LJ?)tqP{2*6CsGy`Al??XkXFxb9Ke z!N8>TtaMPFPFBy#Q*^hJYTUVZS5s)uX;#g&z&Y&toT`}~c57GfY3GJou=>+~XXxw1 zb0%~=-s&<}x2sH2@Z$!ZADgg({5f*|?2&q;p@$NerXEVle|^1X(5JQ`nl@xCGpob0 zhQwH71A|R^Zw<~jU6r(hH7m9#DedN;(X@v!_LWQ*so&2~^h8%zSm{fbv_*Ql;P0eQ zP#i6dVRdy=QRW9oIYNnhL><6G3Hv(GihuTTP`?EGkj z<}b{}1T8K54kGm8AH4*xD%s0^$4e^4E9Z?Dm5mpdGko?Zfx>dvZ*7In!jDUAPR~Tg z2YhYVoug9K`;sT=op&zwy~JyY?>;l=9F^95ppv4m?--Tt7WcpQ+Sf)FtQ@QymDYmx z;-WF{Jgib1@h%vZYBj=wly||!)}(jAh_`W6YBEs!bt<Iy)Ztb-%tDKrZh8;n4wDP(Levp@3ApS|6QdJDq%!NN0EgFV=&-|i)^u|2+2`| zOjZR|@-X4cCPursUqs_5qV*pYu}~D2E+v4X==cKyztS$yWM&CeIv`??&zYB$dd|hh z7Br<6Gyxsl3IKF)>&SvNK>x<^lfXLxAnyczRE*P5@z}b(sdamSCfDs9TX!(E?jYfZ zV1Nb6K_IDh3~%oS4XNa1fB>J?JpC{h>-h*&5fPm2nu;|F#8P>YVYck6g& z$y7Svf024vD-BaCtxr|eC#CRUDFD#H(vd3Ed-(GHw~t;zV+~(A`X(A{crY}!`hnDH zG|+Hz^#fz8_or6xC;Z@(jItj{YBk|%b8SklesaVY#`Ul-JSOSCs}w>djOgg76sG2? z2Lq0{)JBPhkQ_zGWL3RN9;R#yG+BjO&raboTCSD?N0GuHS}sv30km8VrE=-G77;;E zG@YJV8kG)+M90hLkSmw%V>NZDnmVBUPXhq$e|n^*0qEtXx9_=h50FduyovR-p}{R< zO}kS~yMZQ~c8@hZoN9WQ@B>dU%ELfXO@yOL*Cvrf(-R{;yo=DV51H0~S1E)_7}3#D zDRfq&iol4A{IRGA$x(z%*3_xwVam2Z@lX+0MUcW}R5LvsDR2}i4Bn$skpRlY0sy6Q z>G;Dse&7im&n%5f2SlRp*EhW#xP;ywxfFO4y*)BmJXXImRlgHxvVP}S{oYhPdVVDN zFqj)Cdx50t86J{B(R}D6K?=#EK4Rs=zQ~xQ|E{t?DrLlgi!j4dgq-J44BY3a@isZn z(Qb3pc>6LsxOSVPqbLYEI8l*2%EVDBla8aaYe7&f9S@;XaC&B8R61ae1c%496=LvVI<_&KJZFK8$;vm;Fo zJIp*u#DuvhS7Tw~L62dwTzFy(s5(8li`l?yH0m9UYbKJ-1w?4kJ0AK!+9!G?|%@N}u5z zcxN`-4CerEz8Rc@ttw-jW7&7V{>y**$H%idhw`VWex?ynUM1`tfj#y)6{ag3Rfsg9Oi zz8gIS4tVIj7`*V@PnXn_ve!)J|KT-s%ogP@kQ5ESqL%^8J7#WYIk#|s+&T6BIL&U$ z*$1`2hk>#fGQ)>0e0Y(40y}8H4Bxc+kQqL_zSKkJDG!A$IDr`UiXn4h-a}?#U&w{6 z>>)FT&8o*&8a9&&jOtS1jziz7e52&CEvlJ`K5X7@nC~>1s-$7_3bIHL<7SvI7{<+* z%H)Os8RO;H&j`SVbTCo}oa`5_lQFIQ!I4KdG-+=3)llXkr6z;(z@e z025Y_%f-z2+`I7QJ-6xH3Y_}O`wtGx1;RhhEBfb7`QyAve1`ky3e@W3oRYTY_&(3@ z1H4$~zHKT!S>)vZd={e-c>@BlE2uGpgd z0D*pl|72Y;=V4&V9izw&rp2~vLb7BcBs;T&WS3lciwVhv7N16aq+5)( z#EuR#VOk&Q<_Cbo+oODQzBd0lmI;b$GuocD>XNy#K9}t5vC>5gBjq9MuB`%g!irE|FPCF6~ zEZlaG>_G?mp;yJA#Wk5JV#~svA~b|$Go4d{97m8baMqDh?%gXV-Cmkb4>I+E^OkntH&^LhA}Y)X08mr zx6PKp>jPuVafz8Di=0;)@?nzmjK!2WbF7DCb8NZ8>RcyxIKg$Gq{z2K#+o%Lk>1Ag zeix!u@)#(g*HCXJ?@yo2vj`{pnMF7;T(JnJJCevh#CfUiOJjb=`164+w^E+FpYNu$38;zbwr<4_!97U7C{sbua%x+L#+Dwgr{ zGz{-FfOlDxD8@`PcP5>&bc8-ls+3Ghb=BGbL%=>_Grot3_Ba9he5rH0WVfmu1!#L@ zZu_gh4DYg1XqTBPv`>5HlJM^oC?&8Z(@J1jPZ zm3NS_QT(HXn6SZIoA})ps>&HVKfG9W@P_(@Dk=4`3JEamFx8}pv5JLe#>^H#$gPIB zCL_)%*a8@=b)FhJ^7H+z6S{BKq~Y5r*(9_1hD|h^S`^YvzE6Q)C$I^i6@PKiFrVbA z>-SGx&Bx4NZo-T>pM_KB#j%5=$t;{cFRsqQeR=1_r`%8tjZ!Ew#QP?no!WN=Lqv6> z-J3BB$LGe=j-F%3Cd`ee-E4Cj+JE;z=ZT;HRoPc33>7jzR|;$IlYDUWS#o@D-bGPA zz(4w90F&KB!whwu&dNXNPT3eu`v%jeqn#fJr-S z@>qAOtY=i}y?y)a%!m&!cxJ>$l`tJ6KHbLU-#*##AJ6}%Z(7Z1=jxHF%*f13@D2SL za`;>Pm5T%>mlQ z7CmF^fcn9~#|WQkC_iKD(6;#M%lDN3w|}+e!%vR?>czMI>4VKmEowE(pkE!-{26Xc zTyi4}9-5T@fB+K4Y|39#5);}kNuz88KObZH&ul_KMg&6RI1S^186yHQHZb%h8X&R5 z%phRKh=8g_U!*f*M8I2)#RTz}(uhDe{4moFWbIW$UQdhEo@Imym>QTG7nQ(7p)|`x zp(I`kBLzu~pD2r$!K~=uKL;~~+peGK8kU^=G(Kem3yXdxj43R_i9Hc4!ioJ4VA$c+ zJeucgtTUNMb8;a-h8^T9l>CIUeG+gkO_XIDdSFRDY2XZ=K{E|K6w>#6s*2-Fdn9_yBhX|is4nX+`2 zz&8ne3n0VUS%zD*hIP>j1ejp{0>VVsW>6!f5ZDjFHTo>H)!CXoa%ZMGHG_9E_&BSa zJzg>ElVUe{H*>?gS(&MKvl(-k8#adt^98x#%dKyBUFw4Or%PRL!pBy4uxD(|p46H> zK$C0sjIBA4T62K#$C^AzECUKr?_Jvre;Xs-wj^KP>|B(N`_X+8q7Cs9NO zr(`ymDAr9(`Y&jn5S!YdEH#^?f4w`-1jFk3rKV zS;xc}Fhlj_j-%TJ$^KZrIj=ONX_9l@7#v>cbLLnNiJbZ^!s_Fa+-VBqW;u{|iHtRC zQX;*L<^3*1tK>0I!hl5y^?mztmr$5xTcjsUur0#rCdRp+t4qMS!wJb&F4D}#OJjHN z#%jpRLQd1qaUt#UdeiLGChQ{!Db$ZYGdm{96#MEF$DQri-wS73$6`HAj`6;SFlBNH zmV>yodqNDfsR~1V zn(zd@e_MppM-P>Gm(bX|O?r)P8)C@^#5V~gGNx))BGJDsN;Ku(Bv+j;WaFlayj!c- z4}!l#Lu)NVtE62o%klSOQA2TD60I}H-@Sg$Xr0wFty8ZVXz^xRr|qV<&H{rxSV;0< z+#$~*xd&37M}m}?aESK1%=mUxJfr>2o@u|v8k%Xp*n9lua@RSu^b`J8%HVHhF0&kS z>r$KP$e|$J#2*gMc!wyIc?zlf5FvtwhA~T)uJnXKN zuVif{hm!V(9sGM^DKkunfiLWQi!Y~`xw8l-B=Xx%($@E9$}P!GS%$Evv7085V+U_l z=UbJx>{7+s5I<+hF0^Ym?Fq$p?Z%l&+lit+d#V>>t$Jyk}L~*}SU>BuDeERRDV$(~j-U52mH<5AJ^` zU9bz6yBZ%#JFx4@M}DNH94A1Uf!vDZv{S}z8GTASLbiRi;s^Kr{plCBsH)`0jjCk$ zpIGV9j5(K_R zfEF(Wt9A8w+Ql{yi>3>XDQQ<1?ei5)yIR><`Fo1-41qHQo+a=cf#(UlKp^+(P|}}g z_-<-a*NT1{^eBBp%#`J(`tns_<$odkJgEAjD_zs2FaL)?=b4@F&sp$#!TI1wV9{&A zv)f({p9`MZnG7s?zvhnD7oOie5?J!u?z1f~x1QTgNKmkXpmjk)j`opdPsF4p1bX|ZN`A~n)Sl#wi-FBeK zy6t0ids1~!DIdDh#|V3_^rht31aVwQQt`rhkYli`l z1yd;_27D9=Qt2qkrI1N5Cw)Vl)+6RFq*FHG5_L0=uM+iTHy-r%xRXj;hj)X^j=xr^-K5Xlv z|E^LPl`x{CqY@sgQir7$TFIlw0FGoXM@1x#BGO<&L_)S$B*dp|>G&f$egsoplrV+K z%$7Vd2LI#+oNUpc)VBX3D-&Qt?-1Kq^tA%;dL$&Sj0gZ zZu+!d--r3w&p6+ux*HPXjcKwJ=1OjpNiHd6yl(_+Eta(bct z0{|v|H8Xl_s{)b1wllvTJ7>Id&h6e~eJC#bIRDXS|2R9y7a$h+3N_y}e4b|(_~OMF zkDK^;{#+LLvOc>TB?`Lpu>Vxo`~C{S)%Cu@x-;t|o`27l6-e^7gVeJ}faLxbYj%O- zRr5b7^^j?x2d04)=B9zS*5^3w4u!hH?cJeJa7EhPa-tm@Zg)qSRx3R_)Z0h9z}BfM z!uFo-IwkTIr9Bo&dju(6sL@nMXGc(1X_p#L*+CcX-oDQEmdLT*botY*aJSPH>5hdv z>nP#&?l#q1nuLH%C6+G4uJN%*SCnlztZXFuRs#1Cc!0pe1ojg+NZ>mJ{+z(~2z;Nw zUl6!J;0FXQ5g)&GXk{mj;&x~)}Tzq#bhzY-dRhaiXtUyD5R8A z;7tUo0n+YGT|M%N&d6rv|Kbu2#ugm|_}F2$+y95n_JZws?|-!g*su6Q+x;oq{U6vW zuen_I;%jAY`=)DEet`K!01Fw$XdYb7V%P%vG5fXccBg%-{aT3%UG{DEYh_M?pcvtn zYbBXC)kw`OpbE2s7uj3v*A`aUTkY2x19k+dRbdhEj~Ch`|BI)G9kYKamHzQVA3JQ) I99HoE4-3zc(EtDd literal 0 HcmV?d00001 diff --git a/tests/pytests/ene.py b/tests/pytests/ene.py index d3654e1b..715020d0 100644 --- a/tests/pytests/ene.py +++ b/tests/pytests/ene.py @@ -1,6 +1,6 @@ import pylibefp - + ## SKP efp = pylibefp.core.efp() diff --git a/tests/pytests/pair2.py b/tests/pytests/pair2.py index c0ff482f..1e16cd41 100644 --- a/tests/pytests/pair2.py +++ b/tests/pytests/pair2.py @@ -23,12 +23,12 @@ "pol": False, "disp": True, "enable_pairwise": True, - "ligand": 1, + "ligand": 0, }) efp.compute() #gra = efp.get_gradient() ene = efp.get_energy() ene2 = efp.energy_summary() -print(ene) +print(ene2) #print(gra) diff --git a/tests/pytests/spec.py b/tests/pytests/spec.py index c5f3a0a1..b1523ef0 100644 --- a/tests/pytests/spec.py +++ b/tests/pytests/spec.py @@ -21,7 +21,7 @@ "disp": False, "qq": True, "lj":True, - "spec_elec":True, + "spec_elec":False, 'special_fragment':1 }) diff --git a/tests/pytests/symm.py b/tests/pytests/symm.py index 92d02e9f..317d8c27 100644 --- a/tests/pytests/symm.py +++ b/tests/pytests/symm.py @@ -4,7 +4,7 @@ from qcelemental.testing import compare, compare_recursive, compare_values -asdf = system_2() +asdf = system_3() opts = asdf.set_opts({ 'elec': True, From 7577b571d382fc58f394d1fe1672afc0f4c808a3 Mon Sep 17 00:00:00 2001 From: "Slipchenko, Lyudmila V" Date: Sun, 11 May 2025 00:00:51 -0400 Subject: [PATCH 04/12] lyuda's update for pylibefp --- .DS_Store | Bin 8196 -> 10244 bytes lib/pylibefp/__init__.py | 26 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 761 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 3934 bytes .../__pycache__/extras.cpython-312.pyc | Bin 0 -> 2090 bytes .../__pycache__/wrapper.cpython-312.pyc | Bin 0 -> 78668 bytes lib/pylibefp/exceptions.py | 68 + lib/pylibefp/extras.py | 64 + lib/pylibefp/tests/addons.py | 19 + lib/pylibefp/tests/conftest.py | 15 + lib/pylibefp/tests/systems.py | 147 ++ lib/pylibefp/tests/test_coverage.py | 62 + lib/pylibefp/tests/test_dict.py | 93 + lib/pylibefp/tests/test_efpefp.py | 361 +++ lib/pylibefp/tests/test_lori.py | 26 + lib/pylibefp/tests/test_psi.py | 66 + lib/pylibefp/tests/test_scf.py | 483 ++++ lib/pylibefp/wrapper.py | 2027 +++++++++++++++++ python/core.cc | 151 +- python/py.sh | 2 +- python/wrapper.py | 176 +- setup.sh | 34 +- src/efp.c | 119 +- src/efp.h | 28 +- src/pol.c | 9 +- src/util.c | 31 + src/util.h | 4 + tests/.DS_Store | Bin 0 -> 8196 bytes tests/atom_coord_2.in | 23 + tests/lj_2.in | 20 + .../__pycache__/libefp2py.cpython-312.pyc | Bin 0 -> 2438 bytes .../__pycache__/systems.cpython-312.pyc | Bin 11328 -> 11315 bytes tests/pytests/atom_coord1.py | 53 + tests/pytests/libefp2py.py | 58 + tests/pytests/lj.py | 44 + tests/pytests/pair2.py | 7 +- tests/pytests/spec.py | 7 +- tests/pytests/symm.py | 5 + tests/pytests/symm_1.py | 53 + tests/pytests/symm_2pw.py | 46 + tests/pytests/test_efpefp.py | 5 +- 41 files changed, 4106 insertions(+), 226 deletions(-) create mode 100644 lib/pylibefp/__init__.py create mode 100644 lib/pylibefp/__pycache__/__init__.cpython-312.pyc create mode 100644 lib/pylibefp/__pycache__/exceptions.cpython-312.pyc create mode 100644 lib/pylibefp/__pycache__/extras.cpython-312.pyc create mode 100644 lib/pylibefp/__pycache__/wrapper.cpython-312.pyc create mode 100644 lib/pylibefp/exceptions.py create mode 100644 lib/pylibefp/extras.py create mode 100644 lib/pylibefp/tests/addons.py create mode 100644 lib/pylibefp/tests/conftest.py create mode 100644 lib/pylibefp/tests/systems.py create mode 100644 lib/pylibefp/tests/test_coverage.py create mode 100644 lib/pylibefp/tests/test_dict.py create mode 100644 lib/pylibefp/tests/test_efpefp.py create mode 100644 lib/pylibefp/tests/test_lori.py create mode 100644 lib/pylibefp/tests/test_psi.py create mode 100644 lib/pylibefp/tests/test_scf.py create mode 100644 lib/pylibefp/wrapper.py create mode 100644 tests/.DS_Store create mode 100644 tests/atom_coord_2.in create mode 100644 tests/lj_2.in create mode 100644 tests/pytests/__pycache__/libefp2py.cpython-312.pyc create mode 100644 tests/pytests/atom_coord1.py create mode 100644 tests/pytests/libefp2py.py create mode 100644 tests/pytests/lj.py create mode 100644 tests/pytests/symm_1.py create mode 100644 tests/pytests/symm_2pw.py diff --git a/.DS_Store b/.DS_Store index 6cbaa83dc110c9ab87ee688cfa8966455ca3fe80..be69a3e8442e197a84f9b31171cecd0730f6d9ed 100644 GIT binary patch delta 2038 zcmeH|TTC2P7{||lxO7Gab{4y^r917ywiPJQ1!{|}rc1df1>`O_Ti9jBGVSaP>KV@y*YOf0FPPu`xYzL+RAn&_FC-C8OSn)v7>Gv9pY zJD2aA^ZVyJ89LeRC4}JMj8sdApZ>D+wXDD|OcyQGl!9CAzTg6v;)N2Br8|VpxeYnQ zBr-AR*N7yHsfema=!o-?DOEAdVDJig=i8GdIVvp1`jCy<^AKsHQ(jC#4VISdyQ%8S@nVxhWOZ zh&MT@WHo0}xtd9ZyDg8;7YB!iy(6Rim{1s3rkG5>63g1n72;05-=Mj( zLfGk8!w32P1 z3kK)(Y!sWsBi6bdVZ-d2k~J%*i!?@4Z!HtWVJp@sNp?mh-c2sCUF>9qFW3=dG8~h; z5}F)aPPg~4taZdzyER*jq?r1RU~<5U3W^q2C`$BR9HQ7j=%rIO4uMd)gGC@ihkcTP zP|)!?3bsh)$`H8HO>*P1`J93Z*4@B%h zIVzH{*cphi)8eYencnk01Lwtk_ z_ym`+j4SvOU*Q_Q#}D`!zu-E4WwM!krhsuVrA#HWlc{13Fd?Rm>19TlaYms#NYai;iWEQM*0+(&w@LRSHCexz2Rcr%P z0P+del9{j}-9504r2-Ig(r$SLb=!qp$Msd$uvBaUW4pYsuAZZk60*{6bsp7&wJOi= z+s{#H3E8%r66Y;*7rs~>J+Kk2NON=|q8Q{;Ow#6zp ti_@!FDVMKjBjXeyThDZQTfnI)-~19hjrhOz*k#GCJ$u)a*FUH|e*!N@`l((*YBBV2P#Yn4t28nE(BE`d|<72m#j@0<6&w{N}{i#Y`LWl^8JGZ6Z&4_ixb zoaJY5=Ey@H4iG^U9Ru@UJKnNyB>uxRZ%{TaO?|}I?)FR4p5g5T8DGnIbA&sQZLzV8j(hZc=<1Z=WB2k5|AJ86` zT|NyxRRZ#>B$V!~BLo+!d=#F9{50$ecg$!gRk_atU_ayGYbwUnQgoN&eSjZ37~^Ff;oMd2&U}0}p7S&QesD29A7Aiu{%LY~|KPIr4*a{@eU7$lVonDEbFuLdQD* literal 0 HcmV?d00001 diff --git a/lib/pylibefp/__pycache__/exceptions.cpython-312.pyc b/lib/pylibefp/__pycache__/exceptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..705512769b8b86f90a921cea248d2e10491d4d6a GIT binary patch literal 3934 zcmd6q&rcgi6vt=nwJ~5Iq$C@+CD|rbREr-*sI8PXs@f1-QHaHl0Rts)wqF-ddSna_YSCt}zP;!lkUl+nMhhX5YMz z-|X!3o}Mm5uiyW?ye@u7jA8BJ3sVIq5PW9;GC_Qh9xSxY+2YE{fncEigNWJ z-mr;mDNZ`r&F6F)S7~DxVU*-(etasI^s7G1OK$E^!5`)8;mP>yr2BwkWReh*G#?|T zX)9OIwXbnHHyTewgY}Rk8FCg&QoT!(vMgNM4olL*ysSH(4oOl?MUn{Qz1}NXc}2mN zC8c#aBRxe8i0C|4{}mgE{u^B7wy=3~F|fO>OhK531+dM4Q|*=f64nqrKn4u|Lr6aNBgO z6R~^WL=x|M3n=PK6vt9VJHrpeW1|)yf15H=#?t`H8_?7Y&87r{6m?d%>pa0ZQt!x8 zUUCLM_0@R`>*=~bYh^5mSriE*np~u&*vpP~WnYSs`nPtdQSfm&#=92)#y{b8aS zdgq0Zs0oW@VX?ZDEUm0nmZXaC)i(cKm_bU=c!Dr1teVhDN2C)BJcM+EVJO*y`=AR3 z@LAww&>KEqK<1j`z{RKN~v0@XoS zwhjU8cbD8^c#RHj9LI2~Cd`(F+3MV4Y3a+#T(Tmp>@y@0c#enG8=!$1q<<}1SAkZ_ zp#|PE&!uf$C)QJNy41ed7OR_((xejhHP=qZGLVLx4_Y55R7L5mn z`N)V9Ig_OuTk(=3h%{U=?WpGp$gsC`j*R#eM6P(&-a_&&Wcj%L?z5UOR~F`~^Gl`W zWMzJ(BBV~JA}C1$W*p{qtLPfgTXm`kyl0^|YwC2nn=p-UFv(!GI7|hZXhj*$h2p|Q zT+9(u!D^mhQPoto87j``a|Lz63-whNavIj2Otn~l2uzM+E!Twgvanv&vL)kTMI#l# zI)OFpyadcGnAc_fKCreO*5Ew@>kG4mgF6Vh0TaRN+r9qh6X(bwhR#>QEAN#N?^;{9 z?$EU!i)*?j%$J4v>cVpAiLeN z1A9RqcYWv99-_CsE}oOQ?U_9U_q|@8OL5zq&`Yu2GPiRZddrS)C$;Ze<#u%FtumkO R^la8!<90Uxr9Nl1{{hks7h(Va literal 0 HcmV?d00001 diff --git a/lib/pylibefp/__pycache__/extras.cpython-312.pyc b/lib/pylibefp/__pycache__/extras.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c9f25de4c358cda088da30d5b39d6ec0a211021f GIT binary patch literal 2090 zcmb7F%Wo4$7@xJ*v6I-2APE$R=n!ZVm&E2FiUg$<6;M$jL(^7)sM2P$Gq%^>hdVPH z$Eni>T8W|_2&d#&q)Mpbgj9)tfLkx70X5oIDpJ)$Z-{WHIQ5&gHx3m7b)?XJ}ktJ77Juge?6)1iG`^1(PoY)%b zZYwP=q(m)7LVh7iVx+4WSx_6OJQ$wn(A#a6#Agv3XsG4woxPAF3DVs`RFHH06<9r$ zQS>sj-sjK;UV)Yj(3Eb}P%dwIafA&e%vV7#wjilSbhFn+q`V`{uR|MZh_euD#6CuQ zk=U4;eTXF$Bx0d8iH5dUlp30gUP3h`lh$Y9z=Y>;tYbmBz}zzh#iGPquUNv>x>RO+ zdN8aDI@4_`DC2=RzOe$4&I#%Wd<=gv!fm%gN5=5T=bmX)BvbG#OH#{qiX#hwy+k}| zS=cDKra{3!qnOZw=}6o@|;bD`H*IZUHo#K1LL7t;Lv*}n6XXlvCvF#ZpY`C+O=|ze`Vd#!TEV=>* z)>eHC>s1J0E{hN54hNu{Bas<*5JidNTFJGbvKvJn!xrVdl?t6RC?yb{RmZYM*!6^E zLZvqaDfKT$Y#Bo%7zBI_TP7D9r8!B6DNNUaYUr%!+0ZMFg^Q~?!~k@<)#~YXuP3PR znDbnt11Qt!K(=h4N`&G9bL|i#YwM;nnwiex1GwO_z{MCo81Mz%wAwD19M$~%sZXFH zkU6$p;z5DJK(NWN1JyPiE_BPHB#U8A@wDN>6olILfKK}{Syw)0&BXC5Zr`tNoU;F|FrZM&t}2Z`NlYVXzj<^0n5?>}qy zA9|o3ev}@#Ub$9T8Cgvaga6*Gi}`<^?m@}zPmls>{hr?0+@-IkXPSwb$5E+y#(N>{ zE9$8fx|bR}H5|=EnEdDFGf|cV>ZdjC8St6nTEWtbT2QVZ(K>7)wo4i$-f7M6y9|RU f|8RT&UI4Es>qAKCd9-EQV*2U8n@T@>9X9?2f_ten!neOZ}Gc7M&OZGWk z^Zoa2vAh5zOIdcGdjl+gB(y#H1k$s!anAorRjG6sf&RFnk8n%w4oJlbfta&(f#CFEU+{WRw zGj`s>TZhv}9A_Nxv+yay86(a!&XLSBnIo<XY)CHE}zHe-^}C-Zko>I@rA!`IFrvG;){OWc&30a##bT# z3}1q;BK|O6ir-?s48A4&5xyK>rF<7(f!{LzD9_=yoL_~|3WTo47sprPYZYIG_iBC( z-j)0@el0?(@LP@FHGB@Rnw}Ib) zcO&0~_jLd`WRR}H#1gAnY zCV^;FA=W2>Sg%5?N&>M;g=k6w(WFAOB!OsAA$BK$*sVgeC4p#DA+{ue*rGygO9HV? zh1i}1V!H~_ngpU%h1i?~VzUadF$u&*6=G8oh)pU)T@r{o6=Gcyh;=GNeG-Uz6{0c; zM5PK*l?0+ng;MJU&KM+eY|^Q+&g+cl8$KVhlBU}#?>!73lhA@IFkC}NFU24 z1rExIJP29}pSmAi_#oA1iX4o?jF^`W8M@(0Qi0Q=_Bc|b@NE&&wTp~7v zNvxi9s%K5sz$QP-kz(EP6;+N%Xg#(Gwx0EX!$kh}{8TOv@42~mTpLf7Sog_b2 z{F?Fq`9H<$O+&yiM12+ayeEH8n-EUWagP$-VR#-Z%Cy;UQ2+u)8X-fV%Hp4ZIbeQI zF3GedU>Zt`hcFlbA(tj#3Rq}*UTd-#0;V3ryT-0sD~+e|$%y5mXVMq3_6?u&4@b=B zJ?QrFv2g^a3hv81hF`=w>^|o~GmUzrZ!=;O(>&GXhfc2LJ_xQL+Xhb!a&GXH)~xi;@&E` zQL@kzDyp4LowI(^`Os=`l|M`|IC5sXK1X_nnBJqlV7s1-lRbwdayQAppJ~#fekQT zeG|j}NHzv~Uw3EEiNn2pJtx}RJ9~N}t|-5KZM|)W1)9T=+$is^qkTs@j~wkjE!Zfi zC@N^*!NZ+>T}ONS_8mRZ)gjOTi4;VI_nhwPZ9CQ1+1-7#TcCjuDTxX_(e+H%(UV<$ z`?}lqAL;Ds719Z!Gz#L_(ZekH_M=_Tc6RUY><}CP0iH9XN)hvj@4SzOKgS7MDXL4Z zX`g?r&qGU!upizO}Rg(>C9Cmd^KtoU4MiRZ)T4Mc4MbY1{8R%jO3{&ecKN>ZrgSqHD+9v>j1_ z56uSqPJzhRfoS}#;s?S>%VKwjdnYs)ozb}LKyWicZ2jWcNf-O38D-A=IEpGI4G+#5<01)qWd#d0el7_^zWm|Fk^V=GNfmP?Pa39EM%{kX}@pDo$LA7QY1A@ zG(sdq$Pnl6!jY_Dv__aVMKz5{L2^b~E@}OUdz9r+Z`tFGyh&O1ge=5Yk*Ai35+6-( zo;255ranC85eCPE5!U#a2He2d$oPbxb%5N=$J~N@#DlJgX=$`KYixe3@4VpVy&#^r zZQQxBvEh1dY@GVfJtI9ni9 zZ!`vMNCq%QFaoWY=sdIetj zMai~X4A-vU|2G2`y;?-Iqz(}KPsWq4wNV( z;22VwQ5w{cx&_tzl-3_wrTHl?UL7SuKT@nz{Iy@L=k;?`N=2;EVuSLvObwg?D@Jb> z>YozG(Cha=O2E0&(S%-FYcY)01}w{_>3Fm>0~tt>wmq1mLu<4)QCv#P`i$3d18I8o zh-$rrQD!t4F$%6(E%dfo4E|~*-9Vbsj>x~mU^okWGMzb{jy0uLfzf`oaWm~oGx*mj zApuvw9>}DDsEkvi!LPFPc*l^+B2;2v4$Co+ri{aslAx9MSqzhDl?K1cT&gk%b<8yi%EeD&OAum1uC((l-WmdNTx6lpc*xq`fWSdkl9@>Ke9uu!C& zk&n)T-Q&mNcwS0)^|sXwKBCaveh<%4OjP%R+s|Rw%6Ufzh9`Ir=RW5f8=mlc)Cw@T zdQR{VF?Y!$#jEF5SFLUsaSIobl4taiR~Q>5whMR3EqG}WM`hfjyqXA6gqOzzp2L>8 zyRG|lBWS+p^axl#9Ta_7qd(4h&P5_ax?|uaP@3I_$mZ;o9Z?!AMs#R!SyMV6N}5HfcGuj&E$@ z`~^RiM%fJ^b!AFPQ;_9}U~PJ2R@Hi%0myj! zmx#Nb2Y>dQ+lRfhaeKrt)v&^}#wUT=MyE`TjZ+rFY7tZ4;jW+m_rL%9zn^M8IC{xF z?B&(gl#pf3xG;7OIE6-_;BoW#rM+YAHtwbAsd6p`k;4lE6SHej7#qPyZBfMP!@TxK zOk=)CD#K--aWF-}kOMQ;42&(9v1)-2=mFllXcN5X#&aNt+n;z9>1tCiP40Mh=IMt)Oxu8B_-X>tnUD zc;RFltccO$Bi0z9iP%Tla%IF;^A&)O;@>v`QUM#UJw`)D=1k{eZvM=X#ms`&U%vYC z&2w)J-5C05X6>wbG2J;=dpEsgv9N4@I#kdwXMSihl=Ykb#$YHLG=0k64-JO%rXkZ` z*4P_N?9k_8|q33sxr~o&8?{oxfPlc*Z2haA4 zRsF$%^J3NcaOJpIIUcGMLKVJ`bN!zpfx1ug426vkiwzmsuOGg8_-6K71vd)9MeD?( zb?@)}!TxvmhwFEV^}Fu)LiO#TqK=OpoewJvuDXX+2Gr^B{nV_v+M7N1QdceJmCrph zn|9xo`$o@v(YId+xvFLk-p?!q?>8H)qHouRv#Z7I>RTzH?Dey$iv>lqjtA-4ukX0J zBb;6)rk91%E5hkDVtUQ3+tR+r~Q`s`v>m1 z8X~T|&r$*Ou*~2p`l7~=Uoju}XBjUOd&qh0W7~0bMt;NJeql2p6N3d& zf0kLg=*s;hza&_CEL?h0EIk=K&CHPZ@OsnWS2yheqqbpGNM1qS&IODh zzd4ZJbT*>H3<{|1qG>Y-Z{nh|2j?FuBM4;kYLLw)kj?70k&(@oWNGroDWvkATtb|< zBuN)!vuWD$vgKO0^czJso85JY-t9RLOow$i2Gz!p%Cw?^Zowgk#IIYL)ua$$K9E_2 zM2QLpCRSFvF5pOC3}sBj1gIeIsKjt0(%m<4&NoSzR?cx5QemIQcm#tIn}7jE7BH$o zC99>4fwJBcb^{sf9~)aSy&@3*2wW@S9Dar8@rq=rcwMQrgx1p$2tdZ6N>hS-5eqpP z5*1zsgm&~KVNM5OP6b-{bwK=Y1oa|bGlnlXgDpE2v;3v2Xx75!*ILoJcEK;tFH2gD zG`*@mc2s|wYRD>P)2HGygDI_MF}pCFT_R;RdJQl3CAIwx~+xuhoKQmU0maYc<}RjNb@0}GYY z+=?qM7uyraWwnyF_8XT=+7rm7N=sdF#pPmu0=cMiMoJzDvoie&Wr~O4<2N~d? zE7g-rPOM%3@F1v)1dIQmZWjYB+@37y)Qlf+IX zPf6gFc|!D5@?*lMsmu@Zt&#&mt|`6&!Q&Z?q>h2}KkSA$>e%3*u!=G;`TYXXnnERg z*%fJ#a|4kK**!4f2Xw^lyFAz@yVI@+iql1z;iOL6Kp&xmY`)16h{Xt#!mm-{1LT)R zehiMpV$b7@K_CugB+Uyx2s>1Yr0`zBGvF79E*0oZS0LI^ptDzj=sSTpP5 zA?6kp*m1DuSR`EyJk=c))_$P3J1Xq>@u-i(hawqD>quFavn9*NpZU5-fTx)=!7aWN3b zk2C3JnYYD8e#FA0wK}Q3R-W8(d@bQ9Rg7MrRp748n@>;b@%+#9#Syp`x=W$2!rHf4{JF zzBgR9UMySxqpEQ8ezAFfxcRh*zp~Sz!ZU!X6D@i7SC&>m$$Uq+v{5W={84VWX`k4% zFWhue#9!&jP{AprRV!L@A0e%`4&6BPer~vSmsqWrYAH^6Xfvdy|JLZMqo1Z(iu2{hp<@I@ zE){L1^E``DCfds8CmveOMJbT$LyVDEM?Ot87v;$f^@W4QU|{}7&dy;dshIb_^~#M` zLdENmV!dc7xL>wvp(?z(Rb1T~D%%Lp^`fPCvAF!L^*0od#iFve%5Rj*gD z8+&yOsg)EU0#)@3y8)w7?$IBVy;~Np-7n&=bbqMe0ASeY$uFL7eQVo|ZSPxtknwIt zxTaIYUrA>uf1gx_``VyLmPB6BeAQcZH|pN;|H1Uz)8XoN5r4()p}Y>Mq&=0H@Yf7hd=l&AjlXAv&I&}yUI#z?JajUihcMo>RolS@m}Zoo zu1vrhuqqVubjG@Tkq4WwK$LXga+@y8(ms_ywvM)?V- zf`H1d8fQ$EB&NulQFa@CE%;6IrzmQRsTi*7;StN42w_plp1*M~!10o-F2tdhQbiNz`WC14wn2L_zBCrvZt+m!8M$ zW!k00J@NH=%#`cnlEr6y%A-3lPHhZxl;JE}SC~}6P!Mxg1y40`Rik0F*x#b$#HZ>KNLjI#maRbyZBPdK##`q?S_JQ2B)ju?n_C z>pOUd65|QC{tEE^6KZ{(oW3TlpTTE5rPg1;+W3T8Uni%pN$Wd#=TmC^70?e)sP%Pn z`kJ(UCZG9~T7Qd*_*6&2n)qb!zD`bGlh$|fuBX)c+tfx^9Z#wCb#nTew0;(!^#odf zhuXlZV@T)B`w6uE3Um6Jw0<_9{ghgNkJ=Hc<0-YiPEKEw*3aQ{o>J@YRU2J(Jf+sx z$?0p-`ni1WQ)+!3Ihd!^`Z_s%O{xt=kxhbsr3)22uF21 zrPkNU>1)#Z1$;q5>mPzPhQ^oH;pat#9#WfDbwq_8Ry|b*Uw9MxArg0Fh|WIa9)+{c z_)O7!LltfbzDY4(oKTzXF}2a*IYyONPdcvTrs)yNt8p(^Qr$HSMlR(0~y~nd{5QA zgFU(ooIhMt!nI!o6JJDcLu-6Q3E}G~1%BPqu>ev3J=Mew%O&b`bVdEzz&9v0P`Th* zot;s2b}m!r#(*=f&d#MvpHS!Zl)@v|*$I56o&m3@&Kvj*33b*R%bS(n&>hQK=vQ$p zH}OpgbnRjuf*sJxr`%?agwGG~P=IH7$)9DALdz9tm> z7Jkc9YJHVXQ$~@_DfW}$*z4r_BZ05fL&R0l1W@3<#Tb7@G0k8 zhfqit#6KuAQBWnw^VRq;DwSRwr5wzV=C38jQfRZJHTd=$~}-GGva^R zdf5Q$3aSmx|Y6;uO6l zG8G3UC$caHMXhmIhk{Wgs6HtgO?Fb5q6fC^me6b>h)2;ClWHb6kftTZtWBXH@zs+Q z#Fzyu*fLRVn~-5L>JnMgO3~XQgK01%B^x<``6^f^Qx(Oiq>{lZ9kn)Sw@G2T3U07g zH_G+*ONHz2uSdgC|0L7`Nep`>Lvd8Pc#Cs2=gFupvjPX@nA&JHI5d1CCuajSyM#Q{ z-ca@G^z-7P^XRJOj`_T5HfkD7Lr~35s&_(;THnOxq^2?;tJA4!hL|6URv%SoX`|FJ z!@Z4Jwnon}^LYt#tzNYyNygux1t?G>W3)g;55Nf}ikYY|2YJCeaDie1b`)xaq%x@* z&8{ui)bfPi#Dc`M@|c2?rX{DVffT2)#&nVXF(oihuN(B5rPoz@eUo0V(d)PAMY{t{ z=TA~*VgcWx0HQ>uN>93lQK%hmgFYlQW+_iCVy#X@CC9h~m^vD@K5J{O zyHOCLteEQKRFzJ8WN`?#1ATtA{OX{YS}W;C!ty7uHa7y@SF*$j%nKatIqwnbx$|S_ zl&SoKa&O4+xD3T}1^%hf%Oy*VQ#q>LKc8ytkPWb@4T>J3V)@4;2uE)X-7*(n!@mCI&`FhZ^r zdi^fF*xX}kfp632@6qe~^m>P0|Abz@Pp?0s7mYsQU(kz&knm%A(ZCS?XL@}=ueaz$ z%A`UDy@-V&?4{Q&dc8|8qMC&t((9ko>wS9tA-#S;uYX3bAJOZN@xs+8W0%R4;WM5| zcG-^bClqvtUjLF_Y*;be@vrFfU(<_W5jIH9;gc@e@ki2np;Ihf*W)CmSL)5a0bJ+f zkJz83(Ich)21T&4)jmpX@_(XK|CC+~ef=2$N&2&x^9*}OGF4Ms(h!qvZ&5g@^V0Zb zI)=F4;t(bD=ky}YT!vO~BMuoj#Z5tGuOAAxj5g?#{RHA8LMs>O$`?st_{k^yuN1YD zURx;CF6G+i<*!6yRE^2UmkAJB$fF*~q?b)8zwqw?a?l9<$9JgvVz$g!r7a}?9F$~q3j(WJ9fe+g$wJ&!g_pUu#gt9sD(n} ziqR_Ow~Dsbgj%(T`7NTY-Z?0u{6MqjwBLoDl9EZZqLJ~;7FXR!O^PY#F5PJdxGW;|z% zFVl&I&XA*SC1q+Ai(5rU>yl;KD3)vt%0++tGJO@>sTW=Ds98xnwTQ(nqN8QWc4`$% zT7zs!TN4mmlM&Z>5DC%}e)PxOlx-ygppKN5r3FPmvf85U*lq?;D)x419m|4sH#eI)HpIs6x@A%-%2Zw{D$3xlOK}Yvudft3~xTsMqY77-^xSPJ=es*cF zV&mdPmhYHM?E$ueybOSS~%qCfs9i0i8uTozlVO`^PIiW!D7 zjJ&hjES78z%0*v!nQ-NR&GB0=zxwig*4@0fq5kg?>CbdLNEt!AuZYsCX`v=dx{oL)gyK6S$BFeChOy9uN%u6?3x@TJl3`xnX z7VWEJ%_XI0y}tYE?uESB-J$gApr!inK6}w_$m=lv?H9e^3>1<9aAtZxcDr~uT-GC& z^#prQ2cPQ?x(CJQ&WFk_{0(-DL&k?@it^vS$d{wPK$iPsqwfiq?H9}Te`Nh=B6#A= zPXeK`vlRCQ7WW0jEtKO9CdNGwE;}lg9St5k5j=S|`20EXWx8u?)8+oD80RA=t-@ zr#+#vL5hEY#lL{N16~E&<|@~Aw9xWj*0!a!9W66_nz60zSe4av z5qlC34AxLe?151laHr^5?p8~7&zN;OML+JOrPk`cj-+~U;)P36ykj_1!ExUe&WDqN z6&ZQFGC3vR9iX0})U?#sa(m@OeBeIg)C86UaTbY-sptwJANSmqdTz3wn|hu?_l{k_ zZ3V=Ra}SSSaI5K@81?$O0S_)KW&Yq~)BRnDzRHKgbc#b%Ip?U0Sfz6T8cIJm;nh`Zj^r_>D)A_l zp6WwSG4`??My%ZEu-a7VRs%CSDPm=f2&;x@n243-C|wbgf>8Il0UwzOq6Wny@k3n+ zdHpAV{5i@aUzYu_nc=pzqJ8ax?^e^>mu~rPH@$o5w(m~U4=>%B_<;YYGi2}9OvEkb z7Kd{;h`Ad=xy`R0ndzBb8++%gJf@L}G;7$*A%1zXnM2HTde|s8#@zd=UT%#Uf-A^t zjqX$=zki8wo~(z7Tdj`C#~Rkuq;2SCnpkWQV*;?=P{si34K^3lq0Mq!W=KgTW^+}# z+zOX5N%t+a(7EO&da1X`(d1Fgh~jAF|3tH~u_Is3DzVT1BYb_-?AjoRA5_ABM)3bd zgP;-)ToP1l$Scw7R@~3}AU$j5NaB6IPDEsVdk`-k!-@laSwd$abEa@uS3_D z${hCq))nW4Pxxl*`sV8TuDE1VQrbGDlSA}#eUx(N>z1%E(U&*g%)sRy>Yb*{w6J$xj9Ze5EB=!ex}s-9eLeZ#~mdil}@iVu$R-b-G7f@~#|;aXT8o`6kVKB^4T zk|UK&xuIEJ>T5G#z!x>~3u7eU;T?!%;FT^{J-@2|LFB!=!K22LHLwjpV3Q8dK*4t?4z0~DLP4{ z`{HnEHg2zuvyd9GN9Fi8fGh(l^L+>hyZ0wO^Y!&t*N5ySGwsY$Dks{xg`ALmjkXM8 zOHhpSuR5`)Zn1n-xV%*?Z(Xde3s>(GtM@GymV^sy#KM}z{GvBUua9aFS-Ec(T`yX6 z<%C_UMAxc?_HflU5r3|2cY4A*&x-hSon3Thg`HKRvkF&$g)=L}%nC$!(|O&AfY%4F z4lZW6UVrxLv!9kYT`4mMzTgaw?75nSHTTkMf|eQyQ)A+)577h+Q_teP+$yYVv@7Zc z^=Tu-O{1w}IU8jaXIBkTj&V=)rChvu+Jb*8{!{Ruihmpa)1oi5c~7nZ3^9g5H{)*R zfOH$T@miD#McxvyLwyFu9HE9|QR0AFFbC{JeMjHp%%||F-?i|zKsujBVZ8mjmhY)% z%pjVYt`wP1S0R~MvLzrhR7mGCX=bXBu4N#zRLJaQAahj6++`s1qT0ryw7?Vu8emk@ zif>j=_HD%-&*?m?4f{@k3Cwh!m6?5~2B-yD$=J6okcMxTKl@I*_A}g>thHr6>l;-q zET)~69G+9i?WmTB@|`TGEu7kN z4CdsqjE=j#!ey@yckvRknxrkoW!P+o3?x}fXL}3fdQ-X-*w-kDxPW>y5UIzWsnzyl zZ3nwg9_;DlI=ec%_n+qWcJ`ixHE(WTcia9Won5`$l!I&Q>cDNN`{@U!%whMtxBF;M zFDzZRPnmbMZipB;fl%*MO4FvsrVWD;2W(ikbsszfh@)K$4M*%`#k#Y*hdc-+Pi1$W zYCq7{wZD_=?mTwlFbg0wJ(UgbZg?L>NWLm!9VICn z;jbwfT3aOh{Hf$3^Zd+Paj(;BSvq8!qL}0q69&vs}I|> z3CG~eULCY7dC=1!(Qzwe@teD^!^(D5IHyL;skv2nyD5~japv%%BRlL^B|27x9F;Sj z4>I$@nT=v*Gf74q)Y&*^lJ}t_;`AKFQ_E!S$FV^6;&*v&O}A$DHGC zdg-Dg_Y+%2(A9Fg?RLxU;SY9v&=__iP6!w0yxFbX6_1EezgzL0r4z&a=Ta9YJU3J=;DCEu9|-x>hf& zTG)4M2W&3i$q!cU2|C;E+4dqdm<36kpsViIs$2VlE&Ij#10UrF*Bz6Ju!8Wpg87`e zjQQj9mln?7c;(imVELw?bMrkLY+Gjpormw)jy$lr=Jw6+7IW8$wso_%MO)_FrujxO zr&hGp;#N==xYQ5}ENT$58%0~=YzhkwmaNDA7qU4No;COE{Qm2GqOIy` z+QVvtv-pcTgVi2%G~No_8V%Za-m~nwZ%Lc&o9_uaRxM;LY(c$Nw*>92_beMJ;D!12 zpo3d5E>z!I8(h^Cv^U?gv{1m=`O2W9eBQlayOkfT*buZg-Lo_!Aegag0U>J_+_zG0 zU0Qf0Xy1I#vL!aab~`^K$D$I+)hKAC3ZW_un2q6E?e0_XJdMXa~i~)hEUG> zR}X_RvW786*bdq?bNH9hxNqw;?g;KW$5q1M8$5y5?PXgbt>>Z=XIcp{n+jarqSxvg z`c-2~Vv7k)4|Gc)vAm2NqTJ(Sy3j}8Na&1aF{e3{)0(t1Xa!XsVk5AT-i)M{8|jS5 zCFr#{yl&l^D!rV>H=o>eDx+yGJgQDJIn3|2NtHQIoE z;trd0V<42aVJQ1`E+B&91Z4YRQ(z1t&j8_Y!#qj*LylUW1lU5W1#9FsY{L!p5-23> z8@Z-!EE~clQha$s%xExPnnjIV^ESFN-OFxK8iuH~1p4BHn-?b7L{k$X@@;IuFZnKm z#9}y<{rxT6C>!Pd{ano;5EpcM1i?K?=u)f9@Yn!DX-eyLUU83%W2VQnorLao?b^jv zawpJuba6TdGUnpzbatY%g;z>khMx_zu*HA$kXtzA=F z+lX7?FSy4&HBx@{TuZG~IHtq!bDB_7HOOY?&Rx)j!lXLqR(&IIKQrfz z_M4WQ1MhU)%K84mh3&Vq-rgN7ZwckLf)t#!JjmQJYq_6YFmL@%{p?;yxCV3Eg1Otm zxou)@+Xt(IxyL^6f3)|*D|d5`iH>7eJ8&I&P6epJS^ir3gLLQ2A!!lQ#hXAVzdXG8 zzyAZ^O|Z6BiZ^*HpHdu)Jvj><38qR|Kaj%PB&?bQM{9YdEr+AQ*0Ag3mBOd5FbBu7 zIoNq?Vh&5J1sU#A4CAP^U<6unU|)iX*uWT#8VZY99b^po)YkxpuzZh;{`>oz`}=!KGaia<|?42sM5 z1oR!W?C6n?e5F%c@;Dxqjs|*#;OK043QTnTUcv9=loso#vMAzCJuUewQZyEiBC?ni z^$MjmIY}-`aZ*Ya>9H#6uX8*Fo8)6nbI!t1XlDOdcwsGx@ zX^-;lk2*;{f2?E1L{xd;y^D_X*Jv(h?I$z@kmF3pXbq{Vf`4*SoEoSv#q zmY>r7N^a-ARBp8HFIO~`5-8H41f&krhyWpvR`q;(70^qU1`rAe0yUkd+V#uVD+zxU;VT4 z-Wa%9^^W-+{#NVvhZfG>-Yc%z6y!FC^0$Ptw$7$J$lM#h{2vbHc7}5gi@AqC>JH|* zgWZrwd`|3!Xi#79g}z{S|J_`-=y1!V0C-T2oH_S5cQDd{B++L(?&p`xcYbGh&a~*t z4HotX3r~j&`$ah11Hr<}!NK9+$e1`d9(+*<`X+*dm+lr`7G0OGTR>YBR6ZaQgfswR z(*a+xsM8cIoW{`%9N;G6y_lQ-&}_tUOHsvw=|=Iw-i7x0iqFXBQ-d+9PEHZBn`uso zUdfz!=9jVQ{wL}}r|pY@W!3XDAY^`G04P*JzF(fn5x)&zDm#tcQKk-kxkPJgHi8QCEaG zzql>05A?45BWORB_QbLGC#b2Im*@15RTRo_3eaQJqUSk(%}qEOzZ zkZbd-^+D#Qr4iln4<?1|hkjSdB54XFAi9CE z(V>a+IIbXLSh3`K6!G*+#d%aDiRmv3$rI8`Jh6CEh_8jaA`wgp)RNjZaZMA8^P-5R z7#@B*s?i7oGE$><$Xq2I1hNFZG&t^oFwcJ}!!odGN_-p_QQs6jXgcyFKAk`Wbb;XnR^H5`Z|MQ#FO3sO%}0Szn`% z=i_&-35m*S;dH)4rJtjPQ3 zZ;I>GUu{)aeCY8=IC-h9YQmU+MJsjx`gBon^!QeAZ#>Rb$ki*#-zT)R&`x8!FG&IRGEdGe4|QJA+jpjMANp2kF!nPjIH>q32tgUydLRq^XbCbGzY1&Qaa8#q+bPq>K4w{hj=Zkp# z(u7Jj@-V)u9gxNde-z^oGbI4YYh9D5DbN8)A;AwtpoASETCbHxOZ3L*Et2Sm#r=JB zj=ExK6xLUABCFF^XZIL0)uehn${g!z}zj$@c)g&jh)3{{lsql#$aEbg#G(q5Fda~eiiPq;zjSBkh9o@h`&K-U>s4fcGs{yoQ4L7K-(y0Z@kTivbV>r<;(xoIUOPmKmeW_MbZJPwJ=Jx$l^qwwxL$u(fJ$M;E3~Eljk^PP7JM#C)0e z#L{A`s6&@dWiJ}`_o-`DvJ9P>wM)#}70TKZhtV}z6y4t7(Lu|iTT*19{)>A8s?sTw z;WJH}qh$D^)EEM0Qb?Wpfr|Ge{Wn?6fdooPSfA6{l{+uEc`x}T?kHEtn%cznXq0vg zj)7Q(n%}4gyIAif4~>lhG91c78cu+%T%}vhk`R2B+P6xv*xstvA{lcep;t+T%0l5j z^b4Dzk`R-FdQ*+J53qks9oGUNMo*L6k}8kBNOQ7I%&xnIlgp;KIjPatx*d4{DSr8m zgt(@pJ?um#YJZUkh1zV2CV(=(&cP7%MSkq^s3KaoR1Z;y#@aE4?gk9EQa_I}yPW+j z95WfGf*$DedEBr>jD5A=?Iqj3O0JrYp(cn}9V0SX4FlDQDtP1@&77>RSEqZmro0Cz z8V=P=387jN#()wr=|l*BkC!rqS>Kb2L+li0g11ULDN~;gtN)z(z8di8`&@Qvt@VAJ zF2Z7Z&dkxoLs?b$_D_+@^8KyZLC~hAUp-3HC?8FvR-4oinl&a7nl*uLG6zf$k%eFe z^rFlVku~e;7h7bZSo1aT69Z=6!ssM3LkZTY-&cp&(?AJOUsXGI-vr-$d&Eez17Qf=Q?3yd zK~df81Q2W*pa`27X%I0D3h`>2E(PiIkw&arm=wAY>p#-~9F_)PHX{hi#q{z}IycjC z-{E>A=Z)T*E$`$m@ZT?9aNK%PK5VXeKzPiDcVk6B~gXUT*y9H(`Gv$Oy04mVXf!|goL%}`}2Q?@+>=w&HBsFdq{vD zXh=5lre8P8T9OuUMvc6cT|)xlLg-7TPN$8g!OzD0EPNXL?9*v{I_XOC4mKjmm7%(v zdU~7C_OtMrMDycU((;qsS>#7r=_Uij!OfD!-xZ_JO4^lt4u$f$aOEj*d_FKS{)Kw^^F@03N9Xw-dYGOSrdN#gSlQ(?SV@znQKDC-S8Pb5l$wfW&c>N`}h?HJAU-W*JQoiN$PuhaI zHG7_)vwsC3L`T8V~ra(HSmH^+N3$K#4>U@<1h=D^u=&pBvh6R?^8y_=9 z0Mtv%4Nk45lt6HslCZw-+)N2Bf$D4#r@ ztp?hR`UVD}(*Ru)wtv#mHj#MQsJcSF)f{jOelluQs|n$hlFD(-jO)T_CD<-vx}n5hl77MPY)_(TLuG5wRHCe)67v*Vg#^TAf0C_3!S z_*r_!VovVdrR&>*j%2hsK-ifwdXycIQZ#_D2Cpd-SHtdZm`dY#=saQA*47$@6I9A_N|B}6 zyhSI?sZ>;8J^rWc7(ZPT1I%55;mcv$-K$bI;sP{Xo^YV{Ok)QY-*0Hm0bcRM5N08 zF9F;{DQmb(i=vhQ{Sn<0cGxX5*0GtuUf3rdrHVl~S5l3Vb>-RR4;bnUZ$`|xNk;gu z1oA931?#%sq)##t1Ldkwen2Ag&6lwy*42ZLI3+E4Wm*Vsr1am3*#8aCme_69!*p4! zrIr%WUJ|mG&9r}Ru~_pSIt-3dqSp)X!ZiT4yQzhX8LL3+XO>;HET%c<)_fBdQVYlf zS2U1#vkQ$?AbR#vLZKx7`(Xb&9S|SoCWTxsHjpW3!ex z|9!y|r*M0P>$GS)EeCdlUC)TFXFl2&a`lL|9_SESYzezymG^?Ft?q)0F-PAt@UZ9? z0B40!mEVr?UAhcgb;k_;3(wS+c^jWrZ0In&ZW%D0$5oWi z<9q@999Wql8vMHHTABrxIN`IjB_k--O{Z$yB&43sXn48&;1hMrRts&@X|Rf8y<`wT z)608rQy^7V@=JvuEW5_n89VMY$<7XMgiG3kGu{-w*iJm4e6jtk`~`bFR0_TGJEbKQ zYok)DUF!vp$}mLz689+Z2vya~H4xtZe)fBEsR5xXlj}q9IXBIW^B`Lyy4V3!|EfPr zf!5Ro{VvrnPjwY2F6?|5M?uLM{JQ)k{JM0sYk^cpKQ#$^5TBJmiH}~|f!=o{?E^bs zNRb1Qr6*$`U3RgtBDcBXXJe33uPA;+njc>r*Ydm2@+Q7S8OQ3?sFury+EO=3E^8dT z^PaI0SZAALWT?WIhK)VCx=_-sUfDg86EL{ygP|GN6}=#+yBFyyJohl8K!^Z^tP`qFT?janeLJ z$B%GsKXR+p-=aiQMVj?BjHz7k4JcPofU(Q_MG-9tKqOCv&gVD<-C0_y&e6leX)U zF8Q+$P7DwCv8J0!rP4Gs*r!^_@zOS;fLmoH`OOk>P3@rLBzhaf+vLbO7&0=+v3+4K@gL@~g{3rUPdrd5AL0h#CD7eQ6sR8-~sj zCejf=Mly&y0Lv7^EWe0d&DDpS$_53z+|b>}zYWLiEMCM)N_{O6Gdz5RD5<*YBb|u3 zlwqyXs*}j9n|5t=SRFyDmKq#RnarsdEu>dLv{Q4~K^Efgto@)N(u2Al7yyu0v?s?<4PXyQOqC3oXGsTTH zV%C~aR`txG2ljMWFU%>OKeaF{mbLser}b*;ta%n!B{=6A#PkZN^vxX-9p$qfi;m2> zrmF{L+ZlDRKkVufU0oju!EV?ZhhE^~Q5f((@srEJ(}UvC!KJ@W2hTkJlUKq=dGRP8 zIy(4ynk9>fGz-l2gRP!s$lds`(BRAsXVi%qb)k&IHQRz!+wZu=s@=hgJ)yj| zkZbR(mDQ&TmYN^{kW)BcxKMec?58=^s3@r+J`>LE7IV9UJJlTNAYx{-gyI5?~DN>lPk!rdFYHiPWZde+Kh(0Jw_j$ z%6w>a?6X-0KtQQa8eH`K`2h?kMpl{66H#LnRtGG)#Kn@tl4PV@StQB4vf$Gvhj{b* zs>PXUD_}@iBkqZTNr^gkTaxTha>o*llVcokSoFvc98fTVhiuY-B*ctj3$FUbrx5EU z&M#H*<83$9(i;ueHbRg|C1f;9Iw-*)|fd-7(rye zR6>v&Fb~MelrH@;wr&P|83_qk_RD;o@MXjYd?hoC!~)LLNGDxW#2JAM$|>LsIO&(_ z8^{b~DsH81r(H0G=?J){K>jf@#C*+TFO|wdx*cH4F zqJl~&l{VV0STaF@SScLvo%CD!xz0ZDzNo#~U8{q1!?CiqXcd>`x&98lF7W6<$(_Fa3PInghBE@x1^CmgLn2 z$PvN9uVbeDKcwa^+R|UQU$xI|3g=XcIhCQDHCQNfTJG6ee+I6RB3O3E9n6Lt%N|$? zB(Du(_J%ujFDS&#W>aZZ!L>u1#G*~1qAfqo*-A@G=Ie*99$L&Ro$tARmi;U=-8hL0 zM^*R2i#MJV^J?S2KTWe1I{&M|nvsd~=iF_$tR}x=-uImsuBOdeW(V#UtzKyP-SVpk zXFKL97c+C__}5-q#HBeo*H0~&7uw&piFq~9$$u;#+^O~EEUZ7yguN^ z1;>as01GjVw3sl_`ab4M_|Y$LFI5AL;NA;K01D~*$R&*VfuO3VRb<^u2_Y{epctj2 zqI2$%F|05B{ZbyZqbg=Cv48t-7O!|-IB4wUSBG#YMa_|G>4!iHG4K~~# zd^6`>YS}|mTH1(oNg`b&rrs!~Ih4zffu-}DVAkWl=!;h`zBck{x;3wCwi9TOtDM<) z&r-?^$k&PXx?3%`tuWnY-zgiB|JYLWw_jw)mnDrPUY67wE_+Ta!)9b4=ot!?UHohC zhey~oNh7!>DH~<}oi^8Ao8f=4?QFN1|4ph9?*R~{>O({T!?^!99Lvfh5yw@su%52T z*YT=Uz&DJVteqxJM>vH@&WoGT3&m0KEPC4nEuKQ2euIQ?X=@Yr=;ftxh#`^-a#nhx z&1z0sfx+nD4abwfVQ%4^7uOwtrN$M3%Z4yNA|P5Q?5r2`xzKN%4s$m~T`h zm;Z`lTUldCxPZtA!q5_RSh{3F-^bv2Kqz4dkw77GOq{h=bkv3%xZ<785RKoMx=$C7 zp9ndh4ceZ)pK70N`L!!^ZS&Ua2k)kqv#>qkiv426{*TO|io+r2ksypt+g)LMvuJPr zQOj-LA8onQ6SB8ycp%ZNqB?gUpde3Y?gmT=v)23%GHdDnGUA0VIcp{TkFVyG#k`Cs z4Ai-+Y68hqQ>sTj_H-}+&u|9NkFxKU6>A@DP71$^wiDjMD`o}>3*^lfR!M6oVc<(e zi4ps!eVFij^y9e)(lFsrhLV-W+O50Xf`F8F%6=<;r)TzmG51+ zV-DGO#LpO7-IPb2F|=Wg*o0@8gsDX2dBV!a#&PWG zC-EMZruVfOp-u!C{e>@CV_MOaIFm?qYe}igAteWjTS>b`Nxa5?!R_a~IJhF)$pkX$ z0mF!wj2P2u0HQp8{d~^7;d!=8kPI(si)id*eXPZkxH40#^j1K~Q+oVFZ76FX&D)3> z^6dgGgwhPoXUw$t`R7ZVyWd4*y}6r}826t7GzS#Fyw(xYl0h*umrUjw-&e;w7?x)DS`?cpSV$~Djt-1Sq)*vL*5LdQ zovUnAS44BE+fzLj#%$fZmUg~G!L^?%|l9o9r#9aWBsI(#QRFz zji~E;Sp2Ah7RRO%U2MsQE8{vaHnxgdYtyumFVOS=pBksYX@js)51|K-5V2A=K6ZG_ zFl!`b&_6cr9q`eK8 z()#&>3m&nw{#JLWbi>snvpsWbaa;6!&ppSgMMu`_hp!%<&;QuLJxn#^ls&W?TzRt& zl5xy@W6iwz+c5A~8kIy(sI)0Ii3d4FvqwJ3ULCA_K3vI*m3+{1AviP=svHevj|ClL zOHBKJftoLc$)RUwoT&?#qhz$mGkCoEGZpYZB<;5xMWE{D_*pOe@;{A59vjxTaYzo zb7~qM5zCv?V0e8=5%ZZRkSK~Dbcp}+eq-Qd~_H92JQk1E^pA%X~(@~E4X6_Gl0 z2q%#`5O9}m=1W-ke++^r8bL2JilRYP!UqEnbdWmu;^`mZM>LAqQ2J-&x{X&faTCc? z2S{}C!k+_fl7>ktE>XhdFK&Vk39foB836Ls6Gp5RFy@p$*d5q2|9HT(Wx3cT<_v*h!>~G@;>sQ zg{(~~WLGKzsd~qpyt+v0(Xz@RDAF`Tves~IuSCyk2bQ>3N{{|D>C&H8_kTj6*mO|E z9GI{kPVks;D#%J2EbhHxEe{wkk>LZt{VlS}e$Y4D&u5FAR@erdql+0}_xBhSDS1myif= zw&bc2`}@z}jG(5Dkq33P5^>7KaTq1u3WfFeGxbRp1-nuu0xQ3yiOKGDBM#7@ci01s zzsB>8^<3MA<^#>qsa(;^^ix*pqs(Pp>rglwR!Uqmd=^9&!782??;0 zQV92)dt~DIsMeJPWLX5Qy$IYpz)4}y*utsP09j>VZO58XCboXD>TFxvS-!4j_pu!k z^seXH8qPfbQd51)bS(nTo?%*4f`_o(ALAwOniwWyo0#}p3n_1j5fm{&z{ZMsGjM_I zD2z>vN9+UcacFxEEQ7B7|xR%EARrVnGv_ zM7~hL_N$KBoLSF(8>Cq7*~JLtSxGt2_HQN!%%vr3c zd~52))UBFOMN7D1msqhYRIz8yG`Hn<9JJdhd}w34oll6jd^%jwFIM0}3O+dK4OI+< zoEL+(ixTQb;nhb){cpgRiCEINF9^l}6KFiIE+0VtyN_F49@M%-UC=iT%@jTDj~J%JK8wL?fb|Fygb^89 zhjdFCZzTlJTq(?z3O^gUz!rhnBlEMv{5U%UhEF;R)72(X+5}Jz8EOd$8$e|+C@Wk} z=1K$iFH@3u7pQ}T8+i3bQlVB0KE+5RlN?dfDiPB_Q^Y}@m}pG1f(gz?EZrXWaKx!# zW+qPJi@4NpdA|}VP<^6^Lue{8c{@xY5zU~@O5rSh(p(S%^rEc>BP4Mfz##67zB#9zJ4YDY#tW%`rhedi@)keyMO^`Z*05 zP8?K{&HlAw*4j{3&CDV8wNA`h7s_hDS6cea-o>n(nM3z8bLYe@AvL#V8^)M`1vMR;084>^=GG9JG zmdJ<=J>waJttX=6WQOWwCUp9OQh!iCRi1QOInH!Eojh;?U7TR2<=D<7&9pN#>9kco zH2wYe?(m>s#gk9HAs2gld%OSJ+xzeTy@r}ilg?a=XsTxHGQ3gOxHJ?kcEO8MwpT9= zg)d4%rR;8?!fHvV!S{>87bL;C;iSvYNy0AK-Lz(loRDgJs8*FERLh>`xaWZ6IS}(4 zq_P@GaLKzLi|-zkb`QpO4^dfzBs9uZ=q-Fn66_n<0}LfU?JpIGk&)P$EU55_p1~&u z_ca(tXrBcf(`Z6ITF~In!yVjiS)=7Z3Fg37JFAM-pOg<~GlochI(qfv)2kN8dVe87 z^7>g&U<{v!(aR_2U?P8fVwTh$u<0C|gV-#QKN8{-UHoUvlC%}(YjjE+H@Ip(oqkLO zKcVEOl>Ce?sUg8OsDPFRQ9`mqH)w>z(aVzy2uAMtn?PDvcfqx)jT<6op4>2fp0@e^WdVrI^w@&{>k2NvR(A(~tyLLwbr%B188; zb-sic$K{=c@QLf+w8n@rhh-O!Q#Ap)WPHMJk%)W_BLhXAi`YmB~zAPupZTn`*?*UZvPh`tf8WA%BivXNT$oabN{PbBlTY zT%ap$jaSi(pZr$&8jt?7P#9YOii5*qKIk07^?abrTC`X|)Bv?j>%ID0OuysgC2Gh@ zj}-omItp;q@BpP5&_7@M{Q_u=JhC%GiHTDK=;ua(>fH-}(#3)_Ws2%OtF;E{a2b~l z7vS#FhwjGv;Lw&4bc$~wY)hY>qkuJ!*gT zU)&$=tD{<>2CdHJCM}oxz1)(@YdP49v$yLtq9N%qTyPco39h4fbgl>*j0SIp%$bl4 zO@M7X5|U_Lhf_YiJ~%fc9p@>i2fg>-e}_XngRc-#Oy0u}cM{1EnHu`0My5yoBZn4t zVa2D_J{7A*yHtu#irc3y=^`w0CL-Q?_V$@u7b7RXZ{p}saaJLYNc=T*;zN?iX%P0AA$cxnPbCL8ZO|&oG`=jHQ>8~od{I})I>$9B#o(oqiU|l;QIW5 zM80oU@fju~1-=|7gqM7QsRX(G;xz{Yi2{sl&^Hm79#P$dMLozuY}GkCB?f#Vmw*Uk z;Lj2{h&U-m36uij)}}`;&x+!IQp23?{e)otEnU`+O?{CkaK8E;MGHD9qL)VVonD%0 zX^@V-}`mTi9f7Jj+*C^{bsX^Wo!j^sUNhNi&ZTa>KZ6TsiuI!M2&JGufajuCSx=o>#nbg>B{B z>d`m8qMY8}(-X7qyLE9*{FZOky?XX$)j_|1uS)+jEHOczc##O_{+j* z_erVd6t(F911vl1R(m5klA}evRd&?I9UT&4lsY=qBGNYYFZaidZpr9g>$z=>8r?DD zzNoP8!B&T^V*i7Lbszq_AAD>bc(CQtxt?M{T1CQ@brX*XBSMx5b#N7aX`;<%w5yNL3xT-Lb0f zc-29v>R_y@AO7}Dg};Hvz7fldX%7PK+xJAq;%$Rc+hEl8{h#mxgE+}2Z z>|1&Q@iz~Fo+aK#&>#>Eh^`Ca4WzMfJRd{caHR$mZz_zak)K&3rJnO==WNJVP|&P) zwQmHzFU(&6MWFq{Z z_Zrf;AwA^0NyvFGY0s7hd11D%3Djuv?iAcZxXohrUdXzj_c!)+AMRI}=TWQSr3%RE1A@4AlOe&HB=*g%VY-v9e zg5L`meeP&NyScTw&Vl{+2gVVWlQ#o36i5Nzi{#!jN#Q|f0=_^nNM1sd$o3=+>cafrX-lPzEgE zoCZ&#gu*E8h5QKGK2o$L4F?nI*v%+o2Rp(Nf|6dTg8p+x_m1FA>>U+rsm(mh2SjGV z@8p#bTpLRQ*X9tAG~gfR=UJ=?(L?&{5L?hpmTwN1lMfF$!Y}MZ_ zyjd9a^xP3*w*IJK{j{*;M%!{*ypRmCxvP6PxZJdKbW32ldqLkBikB9nyLLx+_1rhw zkck{wH@3@GM|e=SHiQQ^dl5~2r6+tSD(w2~fUd+5b+kr&>&1IzYmHW=D^=z54xPml z^^C`aTd=)wMK}*4;+6CF zj1JjaiC!T@(|X;kMR=H%g?q)daAn6O+K^8LXw#9|(va+`kJ#_II&WI;l!Z$^RUXK@ zZagSk?HaV^)cv0qb7)_PdjgUtK+ql{SUU;UE`qh|bA!%Q6Rk7#%g@A5`Wa- ze|WJ=5>OQHGW~86zevh>h}IszHZSH=nY)ueN6J__XQMp z%T$jDqB6@tE7LC~$pMa+DP zgYHl~hMPh-SB~pxQ}0F&A}~S+jtGn}iszF$2Zr~c=~Bv`r9Ajw_8GlA+N|K*+VU~dl%o_R(3 z#-U3};$SVzWpZk1bG}#6ACzG*#1%@uNl6VQcwX!l#G|J)=OzT26p7pk&N}2O>p{*W zf}F64okpyMir8g#c;w1L6)Bi@2;EYbe@aWk8u|e{U^K4`-7`8rdgA!|bw4t#TTZ`g z`rEPFzB?Ujo(TJ1o+fAD-7#ncTM*!r=vxu<>IoHiF?J>_Zwkj(fU?st(II` z-#oq+k}R#!qE@;-ey_OdqhsFpLq8f`w>miD>~dSyt`}H5q+NcI~pe9 z6GVpO90uzp8nZ$rC_xUsQoaBxvEeGH^4D=)e3cUNGEvB=ll&fqF{6)KG44+;%3>#V zzztu@kW1(%Aem+IBm1LW15(SeyVs(pFG){6FSm5wJ|(pr#%j}al>L{E zRSz)e(8D>)m%^hf?v>FELrL7=lnl<*XCk4f!HEzwG8H)_gJbo`x}oMi)b;Mw(WtvK zM!T8uiyq0~Svwjji=6wwuy@l)jlyfd)u99-5DH)OzT#aM%4K8e(o>3jFds+(j%Sdi zDP(kpI6%Nda&dqnH6|u)N;l0G8N-SL5h&K1?@$D(+=c&D%;VAx)Pf-Kf@AYUN}oA; zmW$pLPxOgUXfD{>-abAVnz%9w6gS=e)a=yRv&Y-DdhMfAv!m@0;=&iP{Ux6ww`=zY zUdBJ+G{VKfwz+xFslAy0;+zr+*`tu* z9hB>(D225-%kql#u6$_zg-pM*4Hg{S_tOr-VzWxi>>f?)^Sp;ATVI{DLee z6yXp_kI5Ab5Kuz2KgU2ypcXzSNY9|~TL*u~JlRI>V4o=(~~5p%2s6 z1gk;U1FRBhR|S&2HUQjXVn^6korBG>?LHf;q=FM{yUxUhQ0!q-Z0i(rquCP-J#4#5 z*#O&aYGwNYvYnM~_UXzUOTuf0R}AYqvuv>^^BcPww0wnZtJCt%dRdh zUnN(yX?eTcG@#|{<#ZU_`?d0#FRYUWzg&MvtMAU}D;<7Vd#Ug=X4FqFPj7RNSF67p zUT#``S4KYVc{kF>&04M1FUzQ(*3MSmW0*H%te%x^o@NI2G+Xs;>gadPk4Qf`k^OJY Ke9q7LC;ESx{{9~T literal 0 HcmV?d00001 diff --git a/lib/pylibefp/exceptions.py b/lib/pylibefp/exceptions.py new file mode 100644 index 00000000..7e4a7be7 --- /dev/null +++ b/lib/pylibefp/exceptions.py @@ -0,0 +1,68 @@ +# +# @BEGIN LICENSE +# +# pylibefp/wrapper/exceptions.py: +# +# Copyright (c) 2017-2019 The Psi4 Developers +# +# All rights reserved. Use of this source code is governed by a +# BSD-style license that can be found in the LICENSE file. +# +# @END LICENSE +# +"""Module with non-generic exceptions classes.""" +from . import extras + + +class EFPException(Exception): + """Error class for pylibefp.""" + extras._success_flag_ = False + + +class Fatal(EFPException): + """Fatal error has occurred.""" + def __init__(self, msg): + EFPException.__init__(self, msg) + self.message = r"""\nEFPException: Fatal error has occurred. {}\n\n""".format(repr(msg)) + + +class NoMemory(EFPException): + """Insufficient memory.""" + def __init__(self, msg): + EFPException.__init__(self, msg) + self.message = r"""\nEFPException: Insufficient memory. {}\n\n""".format(repr(msg)) + + +class FileNotFound(EFPException): + """File not found.""" + def __init__(self, msg): + EFPException.__init__(self, msg) + self.message = r"""\nEFPException: File not found. {}\n\n""".format(repr(msg)) + + +class EFPSyntaxError(EFPException): + """Syntax error.""" + def __init__(self, msg): + EFPException.__init__(self, msg) + self.message = r"""\nEFPException: Libefp syntax error. {}\n\n""".format(repr(msg)) + + +class UnknownFragment(EFPException): + """Unknown EFP fragment.""" + def __init__(self, msg): + EFPException.__init__(self, msg) + self.message = r"""\nEFPException: Unknown EFP fragment. {}\n\n""".format(repr(msg)) + + +class PolNotConverged(EFPException): + """Polarization SCF procedure did not converge.""" + def __init__(self, msg): + EFPException.__init__(self, msg) + self.message = r"""\nEFPException: Polarization SCF procedure did not converge. {}\n\n""".format(repr(msg)) + + +class PyEFPSyntaxError(EFPException): + """Syntax error.""" + def __init__(self, msg): + EFPException.__init__(self, msg) + self.message = r"""\nEFPException: Pylibefp syntax error. {}\n\n""".format(repr(msg)) diff --git a/lib/pylibefp/extras.py b/lib/pylibefp/extras.py new file mode 100644 index 00000000..58e21d84 --- /dev/null +++ b/lib/pylibefp/extras.py @@ -0,0 +1,64 @@ +# +# @BEGIN LICENSE +# +# pylibefp/extras.py: +# +# Copyright (c) 2017-2019 The Psi4 Developers +# +# All rights reserved. Use of this source code is governed by a +# BSD-style license that can be found in the LICENSE file. +# +# @END LICENSE +# + +import os + +_success_flag_ = False + +### # Working directory +### _input_dir_ = os.getcwd() +### +### def get_input_directory(): +### return _input_dir_ + + +# Testing +def test(extent='full', extras=None): + """Runs a test suite through pytest. + + Parameters + ---------- + extent : {'smoke', 'quick', 'full', 'long'} + All choices are defined, but choices may be redundant in some projects. + _smoke_ will be minimal "is-working?" test(s). + _quick_ will be as much coverage as can be got quickly, approx. 1/3 tests. + _full_ will be the whole test suite, less some exceedingly long outliers. + _long_ will be the whole test suite. + extras : list + Additional arguments to pass to `pytest`. + + Returns + ------- + int + Return code from `pytest.main()`. 0 for pass, 1 for fail. + + """ + try: + import pytest + except ImportError: + raise RuntimeError('Testing module `pytest` is not installed. Run `conda install pytest`') + abs_test_dir = os.path.sep.join([os.path.abspath(os.path.dirname(__file__)), "tests"]) + + command = ['-rws', '-v'] + if extent.lower() in ['smoke', 'quick']: + command.extend(['-m', 'quick']) + elif extent.lower() == 'full': + command.extend(['-m', 'not long']) + elif extent.lower() == 'long': + pass + if extras is not None: + command.extend(extras) + command.extend(['--capture=sys', abs_test_dir]) + + retcode = pytest.main(command) + return retcode diff --git a/lib/pylibefp/tests/addons.py b/lib/pylibefp/tests/addons.py new file mode 100644 index 00000000..a6cde26f --- /dev/null +++ b/lib/pylibefp/tests/addons.py @@ -0,0 +1,19 @@ +import pytest + +from qcelemental.util import which_import, parse_version + + +def is_psi4_new_enough(version_feature_introduced): + if which_import('psi4') is None: + return False + import psi4 + return parse_version(psi4.__version__) >= parse_version(version_feature_introduced) + + +using_psi4 = pytest.mark.skipif( + which_import('psi4', return_bool=True) is False, + reason='Not detecting package psi4. Install package if necessary and and to envvar PYTHONPATH') + +using_psi4_efpmints = pytest.mark.skipif( + is_psi4_new_enough("1.2a1.dev507") is False, + reason="Psi4 does not include EFP integrals in mints. Update to development head") diff --git a/lib/pylibefp/tests/conftest.py b/lib/pylibefp/tests/conftest.py new file mode 100644 index 00000000..c5875acb --- /dev/null +++ b/lib/pylibefp/tests/conftest.py @@ -0,0 +1,15 @@ +import pytest + + +@pytest.fixture(scope="session", autouse=True) +def set_up_overall(request): + pass + + +@pytest.fixture(scope="function", autouse=True) +def set_up(): + pass + + +def tear_down(): + pass diff --git a/lib/pylibefp/tests/systems.py b/lib/pylibefp/tests/systems.py new file mode 100644 index 00000000..2154f4c7 --- /dev/null +++ b/lib/pylibefp/tests/systems.py @@ -0,0 +1,147 @@ +import pylibefp +#from utils import * + +b2a = 0.529177 +a2b = 1.0 / b2a + + +def system_1(): + sys = pylibefp.core.efp() + + frags = ['h2o_l', 'nh3_l'] # specifying LIBRARY with _l for variety + sys.add_potential(frags) + sys.add_fragment(frags) + sys.set_frag_coordinates(0, 'xyzabc', [0.0 * a2b, 0.0 * a2b, 0.0 * a2b, 1.0, 2.0, 3.0]) # yapf: disable + sys.set_frag_coordinates(1, 'xyzabc', [5.0 * a2b, 0.0 * a2b, 0.0 * a2b, 5.0, 2.0, 8.0]) # yapf: disable + + sys.prepare() + return sys + + +def system_2(): + sys = pylibefp.core.efp() + + frags = ['h2o_l', 'nh3_l', 'h2o_l', 'h2o_l', 'nh3_l'] + sys.add_potential(frags) + sys.add_fragment(frags) + sys.set_frag_coordinates(0, 'xyzabc', [-1.0 * a2b, 3.7 * a2b, 0.4 * a2b, -1.3, 0.0, 7.0]) # yapf: disable + sys.set_frag_coordinates(1, 'xyzabc', [ 0.4 * a2b, -0.9 * a2b, -0.7 * a2b, 4.0, 1.6, -2.3]) # yapf: disable + sys.set_frag_coordinates(2, 'xyzabc', [ 1.7 * a2b, 2.0 * a2b, 3.3 * a2b, -1.2, -2.0, 6.2]) # yapf: disable + sys.set_frag_coordinates(3, 'xyzabc', [ 0.0 * a2b, 3.9 * a2b, -3.4 * a2b, 1.3, 5.2, -3.0]) # yapf: disable + sys.set_frag_coordinates(4, 'xyzabc', [-3.5 * a2b, 0.0 * a2b, -0.7 * a2b, 0.0, -2.7, 2.7]) # yapf: disable + + sys.prepare() + return sys + + +def system_3(): + sys = pylibefp.core.efp() + + frags = ['h2o_l', 'nh3_l', 'nh3_l', 'nh3_l', 'ch3oh_l', 'h2o_l', 'h2o_l', 'ch3oh_l', 'h2o_l'] + sys.add_potential(frags) + sys.add_fragment(frags) + sys.set_frag_coordinates( + 0, 'points', [i * a2b for i in [-3.394, -1.900, -3.700, -3.524, -1.089, -3.147, -2.544, -2.340, -3.445]]) + sys.set_frag_coordinates(1, 'points', + [i * a2b for i in [-5.515, 1.083, 0.968, -5.161, 0.130, 0.813, -4.833, 1.766, 0.609]]) + sys.set_frag_coordinates(2, 'points', + [i * a2b for i in [1.848, 0.114, 0.130, 1.966, 0.674, -0.726, 0.909, 0.273, 0.517]]) + sys.set_frag_coordinates(3, 'points', + [i * a2b for i in [-1.111, -0.084, -4.017, -1.941, 0.488, -3.813, -0.292, 0.525, -4.138]]) + sys.set_frag_coordinates(4, 'points', + [i * a2b for i in [-2.056, 0.767, -0.301, -2.999, -0.274, -0.551, -1.201, 0.360, 0.258]]) + sys.set_frag_coordinates(5, 'points', + [i * a2b for i in [-0.126, -2.228, -0.815, 0.310, -2.476, 0.037, 0.053, -1.277, -1.011]]) + sys.set_frag_coordinates(6, 'points', + [i * a2b for i in [-1.850, 1.697, 3.172, -1.050, 1.592, 2.599, -2.666, 1.643, 2.614]]) + sys.set_frag_coordinates(7, 'points', + [i * a2b for i in [1.275, -2.447, -4.673, 0.709, -3.191, -3.592, 2.213, -1.978, -4.343]]) + sys.set_frag_coordinates( + 8, 'points', [i * a2b for i in [-5.773, -1.738, -0.926, -5.017, -1.960, -1.522, -5.469, -1.766, 0.014]]) + + sys.prepare() + return sys + + +def system_4(): + sys = pylibefp.core.efp() + + frags = ['acetone_l', 'c2h5oh_l', 'c6h6_l', 'ccl4_l', 'ch3oh_l', 'ch4_l', 'cl2_l', 'dcm_l', 'dmso_l', 'h2_l', 'h2o_l', 'nh3_l'] + sys.add_potential(frags) + sys.add_fragment(frags) + sys.set_frag_coordinates(0, 'xyzabc', [ 0.0 * a2b, 0.0 * a2b, 0.0 * a2b, 0.0, 0.2, 0.3]) # yapf: disable + sys.set_frag_coordinates(1, 'xyzabc', [ 7.0 * a2b, 0.0 * a2b, 0.0 * a2b, 0.0, 2.0, 3.7]) # yapf: disable + sys.set_frag_coordinates(2, 'xyzabc', [ 14.0 * a2b, 0.0 * a2b, 0.0 * a2b, 3.1, 0.8, 2.0]) # yapf: disable + sys.set_frag_coordinates(3, 'xyzabc', [ 21.0 * a2b, 0.0 * a2b, 0.0 * a2b, 0.0, 8.0, 0.0]) # yapf: disable + sys.set_frag_coordinates(4, 'xyzabc', [ 0.0 * a2b, 6.0 * a2b, 0.0 * a2b, 0.7, 2.0, 1.0]) # yapf: disable + sys.set_frag_coordinates(5, 'xyzabc', [ 7.0 * a2b, 6.0 * a2b, 0.0 * a2b, 0.6, 0.0, 4.7]) # yapf: disable + sys.set_frag_coordinates(6, 'xyzabc', [ 14.0 * a2b, 6.0 * a2b, 0.0 * a2b, 0.0, 0.0, 0.3]) # yapf: disable + sys.set_frag_coordinates(7, 'xyzabc', [ 21.0 * a2b, 6.0 * a2b, 0.0 * a2b, 0.0, 0.4, 0.3]) # yapf: disable + sys.set_frag_coordinates(8, 'xyzabc', [ 0.0 * a2b, 12.0 * a2b, 0.0 * a2b, 0.8, 0.0, 0.0]) # yapf: disable + sys.set_frag_coordinates(9, 'xyzabc', [ 7.0 * a2b, 12.0 * a2b, 0.0 * a2b, 8.0, 0.7, 0.8]) # yapf: disable + sys.set_frag_coordinates(10, 'xyzabc', [ 14.0 * a2b, 12.0 * a2b, 0.0 * a2b, 0.0, 0.0, 0.0]) # yapf: disable + sys.set_frag_coordinates(11, 'xyzabc', [ 21.0 * a2b, 12.0 * a2b, 0.0 * a2b, 0.0, 2.0, 0.0]) # yapf: disable + + sys.prepare() + return sys + + +def system_5(): + sys = pylibefp.core.efp() + + frags = ['h2o_l', 'nh3_l'] + sys.add_potential(frags) + sys.add_fragment(frags) + sys.set_frag_coordinates(0, 'xyzabc', [ 0.0 * a2b, 0.0 * a2b, 0.0 * a2b, 3.0, 0.0, 7.0]) # yapf: disable + sys.set_frag_coordinates(1, 'xyzabc', [ 18.0 * a2b, 18.0 * a2b, 18.0 * a2b, 5.0, 4.0, 6.0]) # yapf: disable + + sys.prepare() + return sys + + +def system_6(): + sys = pylibefp.core.efp() + + frags = ['h2o_l', 'ch3oh_l', 'h2o_l', 'ch3oh_l', 'nh3_l'] + sys.add_potential(frags) + sys.add_fragment(frags) + sys.set_frag_coordinates(0, 'xyzabc', [ 0.0 * a2b, 0.0 * a2b, 0.0 * a2b, 0.0, 0.0, 0.0]) # yapf: disable + sys.set_frag_coordinates(1, 'xyzabc', [ 19.0 * a2b, 0.0 * a2b, 0.0 * a2b, 0.0, 0.0, 0.0]) # yapf: disable + sys.set_frag_coordinates(2, 'xyzabc', [ 0.0 * a2b, 19.0 * a2b, 0.0 * a2b, 0.0, 0.0, 0.0]) # yapf: disable + sys.set_frag_coordinates(3, 'xyzabc', [ 0.0 * a2b, 0.0 * a2b, 19.0 * a2b, 0.0, 0.0, 0.0]) # yapf: disable + sys.set_frag_coordinates(4, 'xyzabc', [ 18.0 * a2b, 18.0 * a2b, 18.0 * a2b, 0.0, 0.0, 0.0]) # yapf: disable + + sys.prepare() + return sys + + +def system_qm1(): + sys = pylibefp.core.efp() + + frags = ['h2o_l', 'c6h6_l', 'nh3_l'] + sys.add_potential(frags) + sys.add_fragment(frags) + sys.set_frag_coordinates(0, 'xyzabc', [ -1.6 * a2b, 4.7 * a2b, 1.4 * a2b, -1.3, 0.1, 7.0]) # yapf: disable + sys.set_frag_coordinates(1, 'xyzabc', [ 0.4 * a2b, -0.9 * a2b, -0.7 * a2b, 2.3, 1.6, -2.3]) # yapf: disable + sys.set_frag_coordinates(2, 'xyzabc', [ -3.5 * a2b, -2.0 * a2b, -0.7 * a2b, 0.0, 2.2, 2.7]) # yapf: disable + + sys.prepare() + return sys + + +def system_qm2(): + sys = pylibefp.core.efp() + + frags = ['ch3oh_l', 'dmso_l', 'dmso_l', 'acetone_l', 'dcm_l', 'acetone_l', 'acetone_l'] + sys.add_potential(frags) + sys.add_fragment(frags) + sys.set_frag_coordinates(0, 'xyzabc', [ 0.0 * a2b, -1.0 * a2b, 0.0 * a2b, 0.0, 1.1, 2.0]) # yapf: disable + sys.set_frag_coordinates(1, 'xyzabc', [ -5.0 * a2b, 12.0 * a2b, 0.0 * a2b, 3.0, 0.2, 5.0]) # yapf: disable + sys.set_frag_coordinates(2, 'xyzabc', [ 0.0 * a2b, -3.0 * a2b, 5.0 * a2b, 6.0, 2.3, 8.0]) # yapf: disable + sys.set_frag_coordinates(3, 'xyzabc', [ -5.0 * a2b, -4.0 * a2b, -5.0 * a2b, 9.0, 0.4, 1.0]) # yapf: disable + sys.set_frag_coordinates(4, 'xyzabc', [ -9.0 * a2b, -5.0 * a2b, 1.0 * a2b, 2.0, 1.5, 4.0]) # yapf: disable + sys.set_frag_coordinates(5, 'xyzabc', [ 7.0 * a2b, -2.0 * a2b, 11.0 * a2b, 5.0, 0.6, 7.0]) # yapf: disable + sys.set_frag_coordinates(6, 'xyzabc', [ -9.0 * a2b, -7.0 * a2b, -9.0 * a2b, 8.0, 2.7, 0.0]) # yapf: disable + + sys.prepare() + return sys diff --git a/lib/pylibefp/tests/test_coverage.py b/lib/pylibefp/tests/test_coverage.py new file mode 100644 index 00000000..97c80b63 --- /dev/null +++ b/lib/pylibefp/tests/test_coverage.py @@ -0,0 +1,62 @@ +import sys +import pytest +import pylibefp +from systems import * + +from qcelemental.testing import compare + + +def test_grad_fail(): + asdf = system_1() + asdf.compute(do_gradient=False) + + with pytest.raises(pylibefp.Fatal) as e_info: + grad = asdf.get_gradient() + + +#def test_frag_file_fail(): +# asdf = pylibefp.core.efp() +# +# with pytest.raises(pylibefp.FileNotFound) as e_info: +# #print('a', e_info) +# asdf.add_potential('buckyball') +# print('b', e_info) + + +def test_frag_missing_fail(): + asdf = pylibefp.core.efp() + + with pytest.raises(pylibefp.UnknownFragment) as e_info: + asdf.add_fragment('h2o') + + +def test_multifrag_fail(): + asdf = pylibefp.core.efp() + + asdf.add_potential(['nh3', 'nh3']) + with pytest.raises(pylibefp.Fatal) as e_info: + asdf.add_potential('nh3') + + +def test_multifrag_pass(): + asdf = pylibefp.core.efp() + + asdf.add_potential(['nh3', 'nh3']) + asdf.add_potential('nh3', duplicates_ok=True) + asdf.add_fragment(['nh3'] * 5) + asdf.prepare() + assert compare(5, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') + + +def test_frag_fail_1(): + asdf = system_1() + + with pytest.raises(pylibefp.PyEFPSyntaxError) as e_info: + asdf.get_frag_multiplicity(3) + + +def test_frag_fail_2(): + asdf = system_1() + + with pytest.raises(pylibefp.PyEFPSyntaxError) as e_info: + asdf.get_frag_name(-1) diff --git a/lib/pylibefp/tests/test_dict.py b/lib/pylibefp/tests/test_dict.py new file mode 100644 index 00000000..8a8436f4 --- /dev/null +++ b/lib/pylibefp/tests/test_dict.py @@ -0,0 +1,93 @@ +import sys +import pytest +import pprint +import pylibefp +from systems import * + +from qcelemental.testing import compare, compare_values + + +def test_dict_1(): + sys1 = system_1() + + dict1 = sys1.to_dict() + print('DICT1') + pprint.pprint(dict1) + sys1p = pylibefp.from_dict(dict1) + + sys1p.set_opts({'elec': True, 'elec_damp': 'screen', 'xr': True, 'pol': True, 'disp': True, 'disp_damp': 'tt'}) + sys1p.compute() + ene = sys1p.get_energy() + + pprint.pprint(ene) + print('<<< get_opts(): ', sys1p.get_opts(), '>>>') + print('<<< get_energy():', ene, '>>>') + print('<<< get_atoms(): ', sys1p.get_atoms(), '>>>') + print(sys1p.energy_summary()) + print(sys1p.geometry_summary(units_to_bohr=b2a)) + print(sys1p.geometry_summary(units_to_bohr=1.0)) + + assert compare(2, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') + assert compare_values(0.0001922903, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-6) + + +def test_dict_2a(): + sys1 = system_2() + sys1p = pylibefp.from_dict(sys1.to_dict()) + + sys1p.set_opts({'elec': True, 'pol': True, 'disp': True, 'xr': True, 'elec_damp': 'screen', 'disp_damp': 'tt'}) + sys1p.compute() + ene = sys1p.get_energy() + + assert compare(5, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') + assert compare_values(0.0007440865, ene['total'], sys._getframe().f_code.co_name, atol=1.e-6) + + +def test_dict_3a(): + sys1 = system_3() + sys1p = pylibefp.from_dict(sys1.to_dict()) + + sys1p.set_opts({ + 'elec': True, + 'pol': True, + 'disp': True, + 'xr': True, + 'elec_damp': 'screen', + 'disp_damp': 'tt', + 'pol_damp': 'tt' + }) + sys1p.compute() + ene = sys1p.get_energy() + + assert compare(9, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') + assert compare_values(0.0061408841, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5) + + +def test_dict_4a(): + sys1 = system_4() + sys1p = pylibefp.from_dict(sys1.to_dict()) + + sys1p.set_opts({ + 'elec': True, + 'pol': True, + 'disp': True, + 'xr': True, + 'elec_damp': 'screen', + 'disp_damp': 'tt', + 'pol_damp': 'tt' + }) + sys1p.compute() + ene = sys1p.get_energy() + + assert compare(12, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') + assert compare_values(-0.0095597483, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5) + + +def test_dict_5(): + dsys = {'units': 'Angstrom', 'fragment_files': [], 'hint_types': [], 'geom_hints': []} + + sys = pylibefp.from_dict(dsys) + + with pytest.raises(pylibefp.PolNotConverged) as e_info: + sys.compute() + assert sys.get_frag_count() == 0 diff --git a/lib/pylibefp/tests/test_efpefp.py b/lib/pylibefp/tests/test_efpefp.py new file mode 100644 index 00000000..7b6168a7 --- /dev/null +++ b/lib/pylibefp/tests/test_efpefp.py @@ -0,0 +1,361 @@ +import sys +import pytest +import pprint +import pylibefp + +from qcelemental.testing import compare, compare_recursive, compare_values + +from systems import * + + +def blank_ene(): + fields = [ + 'charge_penetration', 'disp', 'dispersion', 'elec', 'electrostatic', 'electrostatic_point_charges', + 'exchange_repulsion', 'pol', 'polarization', 'xr' + ] + ene = {f: 0.0 for f in fields} + return ene + + +def test_elec_1a(): + asdf = system_1() + asdf.set_opts({'elec': True, 'elec_damp': 'screen'}) + asdf.compute() + ene = asdf.get_energy() + + expected_ene = blank_ene() + expected_ene['elec'] = expected_ene['electrostatic'] = expected_ene['total'] = 0.0002900482 + assert compare_recursive(expected_ene, ene, atol=1.e-6) + + +def test_elec_1b(): + asdf = system_1() + asdf.set_opts({'elec': True, 'elec_damp': 'overlap'}) + asdf.compute() + ene = asdf.get_energy() + + elst = 0.0002910961 + cp = -8.066354689359154e-07 + expected_ene = blank_ene() + expected_ene['elec'] = expected_ene['total'] = elst + expected_ene['charge_penetration'] = cp + expected_ene['electrostatic'] = elst - cp + assert compare_recursive(expected_ene, ene, atol=1.e-6) + + +def test_pol_1a(): + asdf = system_1() + opts = {'elec': True, 'pol': True, 'elec_damp': 'screen'} + asdf.set_opts(opts) + asdf.compute() + ene = asdf.get_energy() + + elec = 0.0002900482 + pol = 0.0002777238 - elec + expected_ene = blank_ene() + expected_ene['elec'] = expected_ene['electrostatic'] = elec + expected_ene['pol'] = expected_ene['polarization'] = pol + expected_ene['total'] = elec + pol + pprint.pprint(opts) + assert compare_recursive(expected_ene, ene, atol=1.e-6) + + +def test_pol_1b(): + asdf = system_1() + asdf.set_opts({'pol': True, 'elec_damp': 'screen', 'elec': True, 'pol_driver': 'direct'}) + asdf.compute() + ene = asdf.get_energy() + + elec = 0.0002900478 + pol = 0.0002777238 - elec + expected_ene = blank_ene() + expected_ene['elec'] = expected_ene['electrostatic'] = elec + expected_ene['pol'] = expected_ene['polarization'] = pol + expected_ene['total'] = elec + pol + assert compare_recursive(expected_ene, ene, atol=1.e-6) + + +def test_disp_1a(): + asdf = system_1() + asdf.set_opts({'disp': True, 'disp_damp': 'tt'}) + asdf.compute() + ene = asdf.get_energy() + + expected_ene = blank_ene() + expected_ene['disp'] = expected_ene['dispersion'] = expected_ene['total'] = -0.0000989033 + assert compare_recursive(expected_ene, ene, atol=1.e-6) + + +def test_disp_1b(): + + asdf = system_1() + asdf.set_opts({'disp': True, 'disp_damp': 'overlap'}) + asdf.compute() + ene = asdf.get_energy() + + expected_ene = blank_ene() + expected_ene['disp'] = expected_ene['dispersion'] = expected_ene['total'] = -0.0001007275 + assert compare_recursive(expected_ene, ene, atol=1.e-6) + + +def test_xr_1(): + asdf = system_1() + asdf.set_opts({'xr': True}) + asdf.compute() + ene = asdf.get_energy() + + expected_ene = blank_ene() + expected_ene['xr'] = expected_ene['exchange_repulsion'] = expected_ene['total'] = 0.0000134716 + assert compare_recursive(expected_ene, ene, atol=1.e-6) + + +def test_total_1a(): + asdf = system_1() + asdf.set_opts({ + 'elec': True, + 'elec_damp': 'screen', + 'xr': True, + 'pol': True, # 'pol_damp': 'tt', + 'disp': True, + 'disp_damp': 'tt', + 'print': 2 + }) + asdf.compute() + ene = asdf.get_energy() + pprint.pprint(ene) + print('<<< get_opts(): ', asdf.get_opts(), '>>>') + #print('<<< summary(): ', asdf.summary(), '>>>') + print('<<< get_energy():', ene, '>>>') + print('<<< get_atoms(): ', asdf.get_atoms(), '>>>') + print(asdf.energy_summary()) + print(asdf.geometry_summary(units_to_bohr=b2a)) + print(asdf.geometry_summary(units_to_bohr=1.0)) + + expected_ene = blank_ene() + expected_ene['elec'] = expected_ene['electrostatic'] = 0.0002900482 + expected_ene['xr'] = expected_ene['exchange_repulsion'] = 0.0000134716 + expected_ene['pol'] = expected_ene['polarization'] = 0.0002777238 - expected_ene['electrostatic'] + expected_ene['disp'] = expected_ene['dispersion'] = -0.0000989033 + expected_ene['total'] = 0.0001922903 + assert compare(2, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') + assert compare_values(0.0, asdf.get_frag_charge(1), sys._getframe().f_code.co_name + ': f_chg', atol=1.e-6) + assert compare(1, asdf.get_frag_multiplicity(1), sys._getframe().f_code.co_name + ': f_mult') + assert compare('NH3_L', asdf.get_frag_name(1), sys._getframe().f_code.co_name + ': f_name') + assert compare_recursive(expected_ene, ene, sys._getframe().f_code.co_name + ': ene', atol=1.e-6) + + +def test_elec_2a(): + asdf = system_2() + asdf.set_opts({'elec': True, 'elec_damp': 'screen'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(0.0015865516, ene['elec'], atol=1.e-6) + + +def test_elec_2b(): + asdf = system_2() + asdf.set_opts({'elec': True, 'elec_damp': 'overlap'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(0.0017049246, ene['elec'], atol=1.e-6) + + +def test_pol_2a(): + asdf = system_2() + asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen'}) + asdf.compute() + ene = asdf.get_energy() + pprint.pprint(ene) + assert compare_values(0.0013685212, ene['total'], atol=1.e-6) + + +def test_pol_2b(): + asdf = system_2() + asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen', 'pol_driver': 'direct'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(0.0013685212, ene['total'], atol=1.e-6) + + +def test_disp_2a(): + asdf = system_2() + asdf.set_opts({'disp': True, 'disp_damp': 'tt'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(-0.0014688094, ene['disp'], atol=1.e-6) + + +def test_disp_2b(): + asdf = system_2() + asdf.set_opts({'disp': True, 'disp_damp': 'overlap'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(-0.0015801770, ene['disp'], atol=1.e-6) + + +def test_xr_2(): + asdf = system_2() + asdf.set_opts({'xr': True}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(0.0008443933, ene['xr'], atol=1.e-6) + + +def test_total_2a(): + asdf = system_2() + asdf.set_opts({'elec': True, 'pol': True, 'disp': True, 'xr': True, 'elec_damp': 'screen', 'disp_damp': 'tt'}) + asdf.compute() + ene = asdf.get_energy() + assert compare(5, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') + assert compare_values(0.0007440865, ene['total'], atol=1.e-6) + + +def test_elec_3a(): + asdf = system_3() + asdf.set_opts({'elec': True, 'elec_damp': 'screen'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(-0.0039531505, ene['elec'], atol=1.e-6) + + +def test_elec_3b(): + asdf = system_3() + asdf.set_opts({'elec': True, 'elec_damp': 'overlap'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(0.0023592829, ene['elec'], atol=1.e-6) + + +def test_pol_3a(): + asdf = system_3() + asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen', 'pol_damp': 'off'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(-0.0066095992, ene['total'], atol=1.e-6) + + +def test_pol_3b(): + asdf = system_3() + asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen', 'pol_damp': 'off', 'pol_driver': 'direct'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(-0.0066095992, ene['total'], atol=1.e-6) + + +def test_disp_3a(): + asdf = system_3() + asdf.set_opts({'disp': True, 'disp_damp': 'tt'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(-0.0173897265, ene['disp'], atol=1.e-6) + + +def test_disp_3b(): + asdf = system_3() + asdf.set_opts({'disp': True, 'disp_damp': 'overlap'}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(-0.0220107872, ene['disp'], atol=1.e-6) + + +def test_xr_3(): + asdf = system_3() + asdf.set_opts({'xr': True}) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(0.0301402098, ene['xr'], atol=1.e-5) + + +def test_total_3a(): + asdf = system_3() + asdf.set_opts({ + 'elec': True, + 'pol': True, + 'disp': True, + 'xr': True, + 'elec_damp': 'screen', + 'disp_damp': 'tt', + 'pol_damp': 'tt' + }) + asdf.compute() + ene = asdf.get_energy() + assert compare(9, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') + assert compare_values(0.0061408841, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5) + + +def test_total_4a(): + asdf = system_4() + asdf.set_opts({ + 'elec': True, + 'pol': True, + 'disp': True, + 'xr': True, + 'elec_damp': 'screen', + 'disp_damp': 'tt', + 'pol_damp': 'tt' + }) + asdf.compute() + ene = asdf.get_energy() + + nfrags = ['ACETONE', 'C2H5OH', 'C6H6', 'CCL4', 'CH3OH', 'CH4', 'CL2', 'DCM', 'DMSO', 'H2', 'H2O', 'NH3'] + mfrags = [1 for fr in range(12)] + cfrags = [0.0 for fr in range(12)] + tnm = sys._getframe().f_code.co_name + assert compare(12, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') + assert compare_recursive({'dummy': cfrags}, {'dummy': asdf.get_frag_charge()}, tnm + ': f_chg', atol=1.e-2) + assert compare_recursive({'dummy': mfrags}, {'dummy': asdf.get_frag_multiplicity()}, tnm + ': f_mult', atol=1.e-2) + assert compare_recursive({'dummy': [fr + '_L' for fr in nfrags]}, {'dummy': asdf.get_frag_name()}, tnm + ': f_names', atol=1.e-2) + assert compare_values(-0.0095597483, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5) + + +def test_total_4b(): + asdf = system_4() + asdf.set_opts({ + 'elec': True, + 'pol': True, + 'disp': True, + 'xr': True, + 'elec_damp': 'overlap', + 'disp_damp': 'overlap', + 'pol_damp': 'tt' + }) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(-0.0092400662, ene['total'], atol=1.e-5) + + +def test_total_4c(): + asdf = system_4() + asdf.set_opts({ + 'elec': True, + 'pol': True, + 'disp': True, + 'xr': True, + 'elec_damp': 'off', + 'disp_damp': 'off', + 'pol_damp': 'tt' + }) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(-0.0091278725, ene['total'], atol=1.e-5) + + +def test_total_4d(): + asdf = system_4() + asdf.set_opts({ + 'elec': True, + 'pol': True, + 'disp': True, + 'xr': True, + 'elec_damp': 'screen', + 'disp_damp': 'tt', + 'pol_damp': 'tt', + 'pol_driver': 'direct' + }) + asdf.compute() + ene = asdf.get_energy() + assert compare_values(-0.0095597483, ene['total'], atol=1.e-5) + + +if __name__ == '__main__': + test_total_4a() diff --git a/lib/pylibefp/tests/test_lori.py b/lib/pylibefp/tests/test_lori.py new file mode 100644 index 00000000..27f98e97 --- /dev/null +++ b/lib/pylibefp/tests/test_lori.py @@ -0,0 +1,26 @@ +import pylibefp + + + +efp = pylibefp.core.efp() + +frags = ["h2o_l", "nh3_l"] +efp.add_potential(frags) +efp.add_fragment(frags) +efp.set_frag_coordinates(0, "xyzabc", + [0.0, 0.0, 0.0, 1.0, 2.0, 3.0]) +efp.set_frag_coordinates(1, "xyzabc", + [9.0, 0.0, 0.0, 5.0, 2.0, 8.0]) +efp.prepare() + +efp.set_opts({ + "elec": True, + "elec_damp": "screen", + "xr": True, + "pol": True, + "disp": False, +}) + +efp.compute() +ene = efp.get_energy() +print(ene) diff --git a/lib/pylibefp/tests/test_psi.py b/lib/pylibefp/tests/test_psi.py new file mode 100644 index 00000000..490aec3d --- /dev/null +++ b/lib/pylibefp/tests/test_psi.py @@ -0,0 +1,66 @@ +import sys +import pylibefp +from systems import * + +from qcelemental.testing import compare_recursive, compare_values + + +def test_efpefptorque(): + asdf = system_3() + asdf.set_opts({ + 'disp': False, + 'exch': False, + 'elst_damping': 'screen', + 'ind_damping': 'off' + }, + label='psi', + append='psi') # V equiv + #asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen', 'pol_damp': 'off', 'dertype': 'first'}) # ^ equiv + asdf.compute(do_gradient=True) + ene = asdf.get_energy() + torq = asdf.get_gradient() + + ref = { + 'torque': [ + -0.0014557485, -0.0024650113, -0.0007420245, 0.0018487317, -0.0065430367, -0.0003612802, + -0.0024798509, -0.0002766252, 0.0029343456, -0.0033124877, -0.0048014449, -0.0046442270, + 0.0021341431, 0.0023700691, 0.0015655930, -0.0005188401, -0.0004406075, -0.0016388193, + -0.0020017801, 0.0045394287, 0.0001140076, -0.0011159049, 0.0021766586, -0.0035556589, + -0.0004997047, 0.0037416773, -0.0017226579, 0.0108138324, 0.0056465424, -0.0031926302, + -0.0004161161, -0.0046891120, -0.0017098053, -0.0023800599, 0.0042322597, 0.0105675357, + 0.0007828963, 0.0001744122, -0.0006861146, 0.0003752826, -0.0032331154, -0.0011471607, + 0.0038830634, -0.0039883720, -0.0001194227, 0.0012427711, -0.0026362462, -0.0005023332, + 0.0000530976, 0.0005935332, 0.0003660789, -0.0015382262, -0.0048146666, 0.0026841256 + ] + } # yapf: disable + + assert compare_values(-0.0066095987170644, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-5) + assert compare_recursive(ref, {'torque': torq}, sys._getframe().f_code.co_name + ': torq', atol=1.e-6) + + +def test_efpefp_bz2(): + """psi4/test/libefp/qchem-efp-sp""" + b2a = 0.529177 + a2b = 1.0 / b2a + + asdf = pylibefp.core.efp() + + frags = ['c6h6', 'c6h6'] + asdf.add_potential(frags) + asdf.add_fragment(frags) + asdf.set_frag_coordinates( + 0, 'xyzabc', [-0.30448173 * a2b, -2.24210052 * a2b, -0.29383131 * a2b, -0.642499, 1.534222, -0.568147]) + asdf.set_frag_coordinates(1, 'xyzabc', + [-0.60075437 * a2b, 1.36443336 * a2b, 0.78647823 * a2b, 3.137879, 1.557344, -2.568550]) + asdf.prepare() + + asdf.set_opts({'disp_damp': 'tt'}, append='psi') + asdf.compute() + ene = asdf.get_energy(label='psi') + + # values copied from q-chem output file + assert compare_values(-0.006945881265, ene['elst'], sys._getframe().f_code.co_name + ': ene elst', atol=1.e-6) + assert compare_values(0.046915489574, ene['exch'], sys._getframe().f_code.co_name + ': ene exch', atol=1.e-6) + assert compare_values(-0.000675030191, ene['ind'], sys._getframe().f_code.co_name + ': ene ind', atol=1.e-6) + assert compare_values(-0.021092526180, ene['disp'], sys._getframe().f_code.co_name + ': ene disp', atol=1.e-6) + assert compare_values(0.018202051938, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-6) diff --git a/lib/pylibefp/tests/test_scf.py b/lib/pylibefp/tests/test_scf.py new file mode 100644 index 00000000..4d1ca339 --- /dev/null +++ b/lib/pylibefp/tests/test_scf.py @@ -0,0 +1,483 @@ +""" +Reference implementation of RHF/EFP using libefp through PylibEFP. + +Requirements: +NumPy +PylibEFP >=0.6 +Psi4 >=1.2a1.dev507 (c. late Aug 2017) + +References: +SCF in Python from @dgasmith's most excellent Self-Consistent-Field/RHF.py . +SCF/EFP in Psi4 by @andysim, @edeprince3, @ilyak, @loriab +libefp from [Kaliman:2013:2284] + +""" + +__authors__ = "Lori A. Burns" +__credits__ = [ + "Andrew C. Simmonett", "A. Eugene DePrince III", "Ilya A. Kaliman", "Lori A. Burns", "Daniel G. A. Smith" +] + +__copyright__ = "(c) 2014-2017, The Psi4NumPy Developers" +__license__ = "BSD-3-Clause" +__date__ = "2017-08-28" + +import pytest +from addons import * + +import os +import time + +import numpy as np +np.set_printoptions(precision=5, linewidth=200, suppress=True) +from qcelemental.testing import compare, compare_values + +import pylibefp + +print('PyLibEFP loc:', os.path.abspath(pylibefp.__file__)) + + +@using_psi4 +def test_qmefp(): + import psi4 + print('Psi4 loc:', os.path.abspath(psi4.__file__)) + + # Memory for Psi4 in GB + psi4.set_memory('500 MB') + psi4.core.set_output_file("output.dat", False) + + # Memory for numpy in GB + numpy_memory = 2 + + def set_qm_atoms(mol, efpobj): + """Provides list of coordinates of quantum mechanical atoms from + psi4.core.Molecule `mol` to pylibefp.core.efp() `efpobj`. + + """ + ptc = [] + coords = [] + for iat in range(mol.natom()): + ptc.append(mol.charge(iat)) + coords.append(mol.x(iat)) + coords.append(mol.y(iat)) + coords.append(mol.z(iat)) + + efpobj.set_point_charges(ptc, coords) + + def modify_Fock_permanent(mol, nbf, efpobj): + """Computes array of the EFP contribution to the potential felt by + QM atoms, due to permanent EFP moments, for a SCF procedure. + + Requires psi4.core.Molecule `mol`, number of basis functions `nbf`, + and pylibefp.core.efp() `efpobj`. + + """ + # get composition counts from libefp + n_fr = efpobj.get_frag_count() + natoms = efpobj.get_frag_atom_count() + + # get multipoles count, pos'n, values from libefp + # charge + dipoles + quadrupoles + octupoles = 20 + n_mp = efpobj.get_multipole_count() + xyz_mp = np.asarray(efpobj.get_multipole_coordinates()).reshape(n_mp, 3) + val_mp = np.asarray(efpobj.get_multipole_values(verbose=2)).reshape(n_mp, 20) + + # 0 X Y Z XX YY ZZ XY XZ YZ + prefacs = np.array([ 1, 1, 1, 1, 1/3, 1/3, 1/3, 2/3, 2/3, 2/3, + 1/15, 1/15, 1/15, 3/15, 3/15, 3/15, 3/15, 3/15, 3/15, 6/15 + ]) # yapf: disable + # XXX YYY ZZZ XXY XXZ XYY YYZ XZZ YZZ XYZ + + # EFP permanent moment contribution to the Fock Matrix + V2 = np.zeros((nbf, nbf)) + + # Cartesian basis one-electron EFP perturbation + efp_ints = np.zeros((20, nbf, nbf)) + + for imp in range(n_mp): + origin = xyz_mp[imp] + + # get EFP multipole integrals from Psi4 + p4_efp_ints = mints.ao_efp_multipole_potential(origin=origin) + for pole in range(20): + efp_ints[pole] = np.asarray(p4_efp_ints[pole]) + + # add frag atom Z into multipole charge (when pos'n of atom matches mp) + for ifr in range(n_fr): + atoms = efpobj.get_frag_atoms(ifr) + for iat in range(natoms[ifr]): + xyz_atom = [atoms[iat]['x'], atoms[iat]['y'], atoms[iat]['z']] + if np.allclose(xyz_atom, origin, atol=1e-10): + val_mp[imp, 0] += atoms[iat]['Z'] + + # scale multipole integrals by multipole magnitudes. result goes into V + for pole in range(20): + efp_ints[pole] *= -prefacs[pole] * val_mp[imp, pole] + V2 += efp_ints[pole] + + return V2 + + def modify_Fock_induced(nbf, efpobj, verbose=1): + """Returns shared matrix containing the EFP contribution to the potential + felt by QM atoms, due to EFP induced dipoles, in a SCF procedure. + + """ + # get induced dipoles count, pos'n, values from libefp + # dipoles = 3 + n_id = efpobj.get_induced_dipole_count() + xyz_id = np.asarray(efpobj.get_induced_dipole_coordinates(verbose=verbose)).reshape(n_id, 3) + val_id = np.asarray(efpobj.get_induced_dipole_values(verbose=verbose)).reshape(n_id, 3) + val_idt = np.asarray(efpobj.get_induced_dipole_conj_values(verbose=verbose)).reshape(n_id, 3) + + # take average of induced dipole and conjugate + val_id = (val_id + val_idt) * 0.5 + + # EFP induced dipole contribution to the Fock Matrix + V2 = np.zeros((nbf, nbf)) + + # Cartesian basis one-electron EFP perturbation + field_ints = np.zeros((3, nbf, nbf)) + + for iid in range(n_id): + origin = xyz_id[iid] + + # get electric field integrals from Psi4 + p4_field_ints = mints.electric_field(origin=origin) + for pole in range(3): + field_ints[pole] = np.asarray(p4_field_ints[pole]) + + # scale field integrals by induced dipole magnitudes. result goes into V + for pole in range(3): + field_ints[pole] *= -val_id[iid, pole] + V2 += field_ints[pole] + + return V2 + + def field_fn(xyz): + """Compute electric field from electrons in ab initio part for libefp polarization calculation. + + Parameters + ---------- + xyz : list + 3 * n_pt (flat) array of points at which to compute electric field + + Returns + ------- + list + 3 * n_pt (flat) array of electric field at points in `xyz1. + + """ + points = np.array(xyz).reshape(-1, 3) + n_pt = len(points) + + # Cartesian basis one-electron EFP perturbation + field_ints = np.zeros((3, nbf, nbf)) + + # Electric field at points + field = np.zeros((n_pt, 3)) + + for ipt in range(n_pt): + # get electric field integrals from Psi4 + p4_field_ints = mints.electric_field(origin=points[ipt]) + + field[ipt] = [ + np.vdot(density, np.asarray(p4_field_ints[0])) * 2.0, # Ex + np.vdot(density, np.asarray(p4_field_ints[1])) * 2.0, # Ey + np.vdot(density, np.asarray(p4_field_ints[2])) * 2.0, # Ez + ] + + field = np.reshape(field, 3 * n_pt) + + return field + + ref_V2 = np.array( + [[ + -0.02702339455725, -0.00631509453548, -0.00000280084677, -0.00060226624612, 0.00000155158400, + -0.00452046694500, -0.00000038595163, -0.00008299120179, 0.00000021380548, -0.00090142990526, + 0.00000473984815, 0.00000183105977, -0.00091126369988, 0.00000235760871, -0.00090571433548, + -0.00093899785533, -0.00186143580968, -0.00093995668834, -0.00186166418149 + ], + [ + -0.00631509453548, -0.02702339455725, -0.00001910979606, -0.00410918056805, 0.00001058624630, + -0.02063616591789, -0.00001267718384, -0.00272597555850, 0.00000702277450, -0.01445203384431, + 0.00033391900577, 0.00012899688747, -0.01514481783551, 0.00016609189393, -0.01475386897318, + -0.00642763371094, -0.01023119897476, -0.00663585147245, -0.01026009701560 + ], + [ + -0.00000280084677, -0.00001910979606, -0.02665234730712, 0.00037371007562, 0.00014436865150, + -0.00001859005760, -0.01317104219809, 0.00038448758263, 0.00014853213109, -0.00013643690212, + -0.00190980298320, -0.00014163627448, 0.00010970691227, -0.00002569550824, -0.00001652160690, + 0.00553694631171, 0.00296253882599, -0.00592518334643, -0.00307008036331 + ], + [ + -0.00060226624612, -0.00410918056805, 0.00037371007562, -0.02742768609665, 0.00018588404124, + -0.00399742114424, 0.00038448758263, -0.01396874115447, 0.00019124479202, -0.00190980298320, + 0.00010970691227, -0.00002569550824, -0.00553609000895, 0.00005214006927, -0.00185450039426, + -0.00111418876009, -0.00223702838075, -0.00084629056834, -0.00203426014685 + ], + [ + 0.00000155158400, 0.00001058624630, 0.00014436865150, 0.00018588404124, -0.02699015026797, + 0.00001029832686, 0.00014853213109, 0.00019124479202, -0.01351858713356, -0.00014163627448, + -0.00002569550824, -0.00001652160690, 0.00005214006927, -0.00185450039426, 0.00011345627547, + 0.00451469309687, 0.00241810592738, 0.00477138911517, 0.00250189743578 + ], + [ + -0.00452046694500, -0.02063616591789, -0.00001859005760, -0.00399742114424, 0.00001029832686, + -0.02702319749786, -0.00003768753434, -0.00796996845458, 0.00002030483034, -0.01818952603674, + 0.00070524995886, 0.00027244649517, -0.01965271296696, 0.00035079256242, -0.01882701369086, + -0.00987165499275, -0.01795740782584, -0.01115822875565, -0.01834575971991 + ], + [ + -0.00000038595163, -0.00001267718384, -0.01317104219809, 0.00038448758263, 0.00014853213109, + -0.00003768753434, -0.02503648443824, 0.00199702997314, 0.00077269122299, -0.00033902442705, + -0.00294678699585, -0.00039007690599, 0.00030807567722, -0.00006972255302, -0.00003443473716, + 0.00878465177892, 0.00777812963854, -0.01154437574140, -0.00936638912773 + ], + [ + -0.00008299120179, -0.00272597555850, 0.00038448758263, -0.01396874115447, 0.00019124479202, + -0.00796996845458, 0.00199702997314, -0.02918413124002, 0.00099361419288, -0.00294678699585, + 0.00030807567722, -0.00006972255302, -0.00831580669109, 0.00013571897621, -0.00279672819574, + -0.00251085900448, -0.00821286621429, -0.00153039204428, -0.00622386437502 + ], + [ + 0.00000021380548, 0.00000702277450, 0.00014853213109, 0.00019124479202, -0.01351858713356, + 0.00002030483034, 0.00077269122299, 0.00099361419288, -0.02684469027539, -0.00039007690599, + -0.00006972255302, -0.00003443473716, 0.00013571897621, -0.00279672819574, 0.00029057799444, + 0.00789015760008, 0.00719868343548, 0.00944135089382, 0.00814913589233 + ], + [ + -0.00090142990526, -0.01445203384431, -0.00013643690212, -0.00190980298320, -0.00014163627448, + -0.01818952603674, -0.00033902442705, -0.00294678699585, -0.00039007690599, -0.02563070634460, + 0.00066403177471, 0.00035090564283, -0.00910270453424, 0.00007502850470, -0.00874245358696, + -0.00913676610260, -0.01107408168593, -0.01046477748444, -0.01146456481073 + ], + [ + 0.00000473984815, 0.00033391900577, -0.00190980298320, 0.00010970691227, -0.00002569550824, + 0.00070524995886, -0.00294678699585, 0.00030807567722, -0.00006972255302, 0.00066403177471, + -0.00910270453424, 0.00007502850470, 0.00068756471942, 0.00005040470506, 0.00022274776644, + 0.00124025666869, 0.00135413078331, -0.00068224645268, -0.00032923928756 + ], + [ + 0.00000183105977, 0.00012899688747, -0.00014163627448, -0.00002569550824, -0.00001652160690, + 0.00027244649517, -0.00039007690599, -0.00006972255302, -0.00003443473716, 0.00035090564283, + 0.00007502850470, -0.00874245358696, 0.00005040470506, 0.00022274776644, 0.00020687758368, + -0.00412380528180, -0.00051519173670, 0.00491320446628, 0.00097904308284 + ], + [ + -0.00091126369988, -0.01514481783551, 0.00010970691227, -0.00553609000895, 0.00005214006927, + -0.01965271296696, 0.00030807567722, -0.00831580669109, 0.00013571897621, -0.00910270453424, + 0.00068756471942, 0.00005040470506, -0.02840235120105, 0.00033061285791, -0.00923711128151, + -0.00458459601546, -0.01138951947581, -0.00454371602298, -0.01120759511573 + ], + [ + 0.00000235760871, 0.00016609189393, -0.00002569550824, 0.00005214006927, -0.00185450039426, + 0.00035079256242, -0.00006972255302, 0.00013571897621, -0.00279672819574, 0.00007502850470, + 0.00005040470506, 0.00022274776644, 0.00033061285791, -0.00923711128151, 0.00037744020930, + 0.00095088751145, 0.00091755913622, 0.00066686324895, 0.00079498664458 + ], + [ + -0.00090571433548, -0.01475386897318, -0.00001652160690, -0.00185450039426, 0.00011345627547, + -0.01882701369086, -0.00003443473716, -0.00279672819574, 0.00029057799444, -0.00874245358696, + 0.00022274776644, 0.00020687758368, -0.00923711128151, 0.00037744020930, -0.02691937643507, + -0.00793049330280, -0.01147295613562, -0.00845374029895, -0.01156033431781 + ], + [ + -0.00093899785533, -0.00642763371094, 0.00553694631171, -0.00111418876009, 0.00451469309687, + -0.00987165499275, 0.00878465177892, -0.00251085900448, 0.00789015760008, -0.00913676610260, + 0.00124025666869, -0.00412380528180, -0.00458459601546, 0.00095088751145, -0.00793049330280, + -0.01785633292778, -0.01175654591020, -0.00144863365096, -0.00543904115350 + ], + [ + -0.00186143580968, -0.01023119897476, 0.00296253882599, -0.00223702838075, 0.00241810592738, + -0.01795740782584, 0.00777812963854, -0.00821286621429, 0.00719868343548, -0.01107408168593, + 0.00135413078331, -0.00051519173670, -0.01138951947581, 0.00091755913622, -0.01147295613562, + -0.01175654591020, -0.01842598268335, -0.00600898660138, -0.01416862694275 + ], + [ + -0.00093995668834, -0.00663585147245, -0.00592518334643, -0.00084629056834, 0.00477138911517, + -0.01115822875565, -0.01154437574140, -0.00153039204428, 0.00944135089382, -0.01046477748444, + -0.00068224645268, 0.00491320446628, -0.00454371602298, 0.00066686324895, -0.00845374029895, + -0.00144863365096, -0.00600898660138, -0.02521907195360, -0.01660151455045 + ], + [ + -0.00186166418149, -0.01026009701560, -0.00307008036331, -0.00203426014685, 0.00250189743578, + -0.01834575971991, -0.00936638912773, -0.00622386437502, 0.00814913589233, -0.01146456481073, + -0.00032923928756, 0.00097904308284, -0.01120759511573, 0.00079498664458, -0.01156033431781, + -0.00543904115350, -0.01416862694275, -0.01660151455045, -0.02521511777687 + ]]) + + mol = psi4.geometry(""" + units bohr + 0 1 + O1 0.000000000000 0.000000000000 0.224348285559 + H2 -1.423528800232 0.000000000000 -0.897393142237 + H3 1.423528800232 0.000000000000 -0.897393142237 + symmetry c1 + no_com + no_reorient + """) + + # <-- efp + # [Kaliman:2013:2284] Fig. 4 -- Initialize EFP + efpmol = pylibefp.core.efp() + # [Kaliman:2013:2284] Fig. 4 -- Set fragment coordinates + frags = ['h2o', 'nh3', 'nh3'] + efpmol.add_potential(frags) + efpmol.add_fragment(frags) + efpmol.set_frag_coordinates(0, 'xyzabc', + [-4.014110144291, 2.316749370493, -1.801514729931, -2.902133, 1.734999, -1.953647]) + efpmol.set_frag_coordinates(1, 'xyzabc', + [1.972094713645, 3.599497221584, 5.447701074734, -1.105309, 2.033306, -1.488582]) + efpmol.set_frag_coordinates(2, 'xyzabc', + [-7.876296399270, -1.854372164887, -2.414804197762, 2.526442, 1.658262, -2.742084]) + efpmol.prepare() + efpmol.set_opts({}, append='psi') + efpmol.set_electron_density_field_fn(field_fn) + # --> efp + + psi4.set_options({'basis': '6-31g*', 'scf_type': 'pk', 'e_convergence': 1e-8}) + + # Set defaults + maxiter = 40 + E_conv = 1.0E-6 + D_conv = 1.0E-3 + + # Integral generation from Psi4's MintsHelper + wfn = psi4.core.Wavefunction.build(mol, psi4.core.get_global_option('BASIS')) + t = time.time() + mints = psi4.core.MintsHelper(wfn.basisset()) + S = np.asarray(mints.ao_overlap()) + + # Get nbf and ndocc for closed shell molecules + nbf = S.shape[0] + ndocc = wfn.nalpha() + + print('\nNumber of occupied orbitals: %d' % ndocc) + print('Number of basis functions: %d' % nbf) + + # Run a quick check to make sure everything will fit into memory + I_Size = (nbf**4) * 8.e-9 + print("\nSize of the ERI tensor will be %4.2f GB." % I_Size) + + # Estimate memory usage + memory_footprint = I_Size * 1.5 + if I_Size > numpy_memory: + psi4.core.clean() + raise Exception("Estimated memory utilization (%4.2f GB) exceeds numpy_memory \ + limit of %4.2f GB." % (memory_footprint, numpy_memory)) + + # Compute required quantities for SCF + V = np.asarray(mints.ao_potential()) + T = np.asarray(mints.ao_kinetic()) + I = np.asarray(mints.ao_eri()) + + print('\nTotal time taken for integrals: %.3f seconds.' % (time.time() - t)) + + t = time.time() + + # Build H_core + H = T + V + + # <-- efp: add in permanent moment contribution and cache + Vefp = modify_Fock_permanent(mol, nbf, efpmol) + assert compare(1, np.allclose(Vefp, ref_V2), 'EFP permanent Fock contrib') + H = H + Vefp + Horig = H.copy() + set_qm_atoms(mol, efpmol) + # --> efp + + # Orthogonalizer A = S^(-1/2) using Psi4's matrix power. + A = mints.ao_overlap() + A.power(-0.5, 1.e-16) + A = np.asarray(A) + + # Calculate initial core guess + Hp = A.dot(H).dot(A) + e, C2 = np.linalg.eigh(Hp) + C = A.dot(C2) + Cocc = C[:, :ndocc] + D = np.einsum('pi,qi->pq', Cocc, Cocc) + + print('\nTotal time taken for setup: %.3f seconds' % (time.time() - t)) + + print('QM/EFP: iterating Total Energy including QM/EFP Induction') + t = time.time() + E = 0.0 + Enuc = mol.nuclear_repulsion_energy() + Eold = 0.0 + Dold = np.zeros_like(D) + + for SCF_ITER in range(1, maxiter + 1): + + # <-- efp: add contribution to Fock matrix + H = Horig + verbose_dipoles = 1 if (SCF_ITER == 1) else 0 + # [Kaliman:2013:2284] Fig. 4 -- Compute electric field from wavefunction + # [Kaliman:2013:2284] Fig. 4 -- Compute electric field from induced dipoles + Vefp = modify_Fock_induced(nbf, efpmol, verbose=verbose_dipoles) + H = H + Vefp + # --> efp + + # Build fock matrix + J = np.einsum('pqrs,rs->pq', I, D) + K = np.einsum('prqs,rs->pq', I, D) + F = H + J * 2 - K + + diis_e = np.einsum('ij,jk,kl->il', F, D, S) - np.einsum('ij,jk,kl->il', S, D, F) + diis_e = A.dot(diis_e).dot(A) + + # SCF energy and update + # [Kaliman:2013:2284] Fig. 4 -- Compute QM wavefunction + SCF_E = np.einsum('pq,pq->', F + H, D) + Enuc + dRMS = np.mean(diis_e**2)**0.5 + + # <-- efp: add contribution to energy + density = D + # [Kaliman:2013:2284] Fig. 4 -- Compute EFP induced dipoles + efp_wfn_dependent_energy = efpmol.get_wavefunction_dependent_energy() + SCF_E += efp_wfn_dependent_energy + # --> efp + + print('SCF Iteration %3d: Energy = %4.16f dE = % 1.5E dRMS = %1.5E dEFP = %12.8f' % + (SCF_ITER, SCF_E, (SCF_E - Eold), dRMS, efp_wfn_dependent_energy)) + if (abs(SCF_E - Eold) < E_conv) and (dRMS < D_conv): + break + + Eold = SCF_E + Dold = D + + # Diagonalize Fock matrix + Fp = A.dot(F).dot(A) + e, C2 = np.linalg.eigh(Fp) + C = A.dot(C2) + Cocc = C[:, :ndocc] + D = np.einsum('pi,qi->pq', Cocc, Cocc) + + if SCF_ITER == maxiter: + clean() + raise Exception("Maximum number of SCF cycles exceeded.") + + # <-- efp + efpmol.compute() + efpene = efpmol.get_energy(label='psi') + # [Kaliman:2013:2284] Fig. 4 -- Compute one electron EFP contributions to Hamiltonian + efp_wfn_independent_energy = efpene['total'] - efpene['ind'] + SCF_E += efp_wfn_independent_energy + print(efpmol.energy_summary(scfefp=SCF_E, label='psi')) + # --> efp + + print('Total time for SCF iterations: %.3f seconds \n' % (time.time() - t)) + + # references confirmed against Q-Chem & Psi4 + assert compare_values(0.2622598847, efpene['total'] - efpene['ind'], 'EFP corr to SCF', atol=1.e-6) + assert compare_values(-0.0117694790, efpene['ind'], 'QM-EFP Indc', atol=1.e-6) + assert compare_values(-0.0021985285, efpene['disp'], 'EFP-EFP Disp', atol=1.e-6) + assert compare_values(0.0056859871, efpene['exch'], 'EFP-EFP Exch', atol=1.e-6) + assert compare_values(0.2504904057, efpene['total'], 'EFP-EFP Totl', atol=1.e-6) + assert compare_values(-76.0139362744, SCF_E, 'SCF', atol=1.e-6) + efpmol.clean() + print("All passed!") + + +if __name__ == '__main__': + test_qmefp() diff --git a/lib/pylibefp/wrapper.py b/lib/pylibefp/wrapper.py new file mode 100644 index 00000000..f181cae5 --- /dev/null +++ b/lib/pylibefp/wrapper.py @@ -0,0 +1,2027 @@ +# +# @BEGIN LICENSE +# +# pylibefp/wrapper/wrapper.py: +# +# Copyright (c) 2017-2019 The Psi4 Developers +# +# All rights reserved. Use of this source code is governed by a +# BSD-style license that can be found in the LICENSE file. +# +# @END LICENSE +# + +import os +import re +import sys +import math +import functools +from pathlib import Path +from typing import Dict + +import qcelemental as qcel + +from . import core +from .exceptions import Fatal, NoMemory, FileNotFound, EFPSyntaxError, UnknownFragment, PolNotConverged, PyEFPSyntaxError + +_lbtl = { + 'libefp': {}, + 'psi': { + 'elec': 'elst', + 'pol': 'ind', + 'xr': 'exch', + 'qq': 'charge_charge', + 'lj': 'lennard-jones', + 'elec_damp': 'elst_damping', + 'pol_damp': 'ind_damping', + 'disp_damp': 'disp_damping', + 'pol_driver': 'ind_driver', + 'ai_elec': 'qm_elst', + 'ai_pol': 'qm_ind', + 'ai_disp': 'qm_disp', + 'ai_xr': 'qm_exch', + 'ai_chtr': 'qm_chtr', + 'ai_qq': 'qm_qq', + }, +} + + +def _rekey(rawdict, label): + newdict = rawdict.copy() + for key in rawdict.keys(): + topic = _lbtl[label].get(key, key) + newdict[topic] = newdict.pop(key) + return newdict + + +def _result_to_error(res, msg=''): + + if res == core.efp_result.EFP_RESULT_SUCCESS: + return + elif res == core.efp_result.EFP_RESULT_FATAL: + raise Fatal(msg) + elif res == core.efp_result.EFP_RESULT_NO_MEMORY: + raise NoMemory(msg) + elif res == core.efp_result.EFP_RESULT_FILE_NOT_FOUND: + raise FileNotFound(msg) + elif res == core.efp_result.EFP_RESULT_SYNTAX_ERROR: + raise EFPSyntaxError(msg) + elif res == core.efp_result.EFP_RESULT_UNKNOWN_FRAGMENT: + raise UnknownFragment(msg) + elif res == core.efp_result.EFP_RESULT_POL_NOT_CONVERGED: + raise PolNotConverged(msg) + + +def prepare(efpobj): + """Prepare the calculation after all fragments added. + + Returns + ------- + None + + """ + res = efpobj._efp_prepare() + _result_to_error(res) + + +def compute(efpobj, do_gradient=False): + """Perform the EFP computation. + + Parameters + ---------- + do_gradient : bool, optional + If True, compute the gradient in addition to energy. + + Returns + ------- + None + + """ + # efp_compute already does pairwise, enable_pairwise just saves the pairwise info + # + res = efpobj._efp_compute(do_gradient) + _result_to_error(res) + + # If pairwise is enabled + if efpobj.get_opts().get("enable_pairwise", False): + #_result_to_error(res2) + efpobj.print_pairwise_energies() # do this for enable_pairwise=true + +def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): + """Searches for EFP fragments and adds to `efpobj`. + + Parameters + ---------- + potential : str or list + Single fragment name or a list of fragments, with or without + ".efp" extension. + fragpath : string, optional + String with ":"-separated paths that may include absolute + paths, relative paths, "$"-marked environment variables, and + the word LIBRARY. Relative paths and environment variables will + be expanded. "LIBRARY" will be expanded to the native libefp + fragment library. + duplicates_ok : bool, optional + Whether to continue or to return pylibefp.Fatal if asked + to load a duplicate potential according to libefp default + behavior. The `potential` list is always filtered to avoid + duplicates. Activating `duplicates_ok` additionally allows + repeated calls to this function to add duplicate potentials. + + Returns + ------- + None + + .. versionchanged:: 1.9 + Now handles `_L` fragments by only looking in LIBRARY paths for these. + Also now handles "deep" library layouts. Unlike C libefp, a fragment + without _L extension is sought in all fraglib paths, including LIBRARY, + if present. + + """ + paths = [] + library_paths = [] + for pth in fragpath.split(os.pathsep): + if pth == 'LIBRARY': + for lst in [paths, library_paths]: + for spth in '/Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib;/Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases'.split(';'): + lst.append(spth) + #lst.append('/scratch/gilbreth/paulsk/backup/branch_pylib/libefp/fraglib') + #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib') + #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib/databases') + #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') + #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib/databases') + #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') + #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib/databases') + for spth in ''.split(';'): + lst.append(str((Path('/Users/lyuda/LIBEFP/libefp_skp_may2025/python') / '..' / spth).resolve())) + else: + paths.append(os.path.expandvars(os.path.expanduser(pth))) + + # locate efpfrags full path name + abspath_pots = [] + if isinstance(potential, str): + potential = [potential] + uniq_pots = list(set(potential)) + for pot in uniq_pots: + pathpot = Path(pot).with_suffix('.efp') + search_paths = [] + + if pathpot.stem.upper().endswith('_L'): + # if "frag_L", only search for "LIBRARY/frag.efp" + file_pot_name = pathpot.with_name(str(pathpot.stem)[:-2]).with_suffix('.efp') + for pth in library_paths: + search_paths.append((pth / file_pot_name).resolve()) + else: + # otherwise, search all "/frag.efp", possibly incl. LIBRARY + for pth in paths: + search_paths.append((pth / pathpot).resolve()) + + for pth in search_paths: + if pth.is_file(): + abspath_pots.append(str(pth)) + break + + # load the potentials + for ipot, pot in enumerate(abspath_pots): + res = efpobj._efp_add_potential(pot) + try: + _result_to_error(res, uniq_pots[ipot]) + except Fatal as e: + if duplicates_ok: + pass + else: + raise Fatal('Invalid fragment name (probably already added): {}'.format(uniq_pots[ipot])) + + print(r""" EFP fragment {} read from {}""".format(uniq_pots[ipot], pot)) + + +def add_fragment(efpobj, fragments): + """Registers EFP fragments to `efpobj` in order. + + Parameters + ---------- + fragments : list of str + Names of fragments to define the EFP subsystem. + + .. versionchanged:: 1.9 + Fragments are checking `_L` extensions for library files, too. + + Returns + ------- + None + + """ + if isinstance(fragments, str): + fragments = [fragments] + for frag in fragments: + res = efpobj._efp_add_fragment(frag) + try: + _result_to_error(res, frag) + except UnknownFragment as e: + res = efpobj._efp_add_fragment(frag + "_L") + _result_to_error(res, frag) + + +#def add_ligand(efpobj, ligand_index): +# """Adds ligand to `efpobj` +# +# Parameters +# ---------- +# ligand_index : index of the ligand +# +# Returns +# ------- +# None +# +# """ +# res = efpobj._efp_add_ligand(ligand_index) +# _result_to_error(res) + + + +def get_opts(efpobj, label='libefp'): + """Returns the options state of *efpobj* as a dictionary. + + Parameters + ---------- + label : {'libefp', 'psi'}, optional + Returned dictionary keys are identical to libefp efp_opts struct + names unless custom renaming requested via `label`. + + Returns + ------- + dict + Current options state of `efpobj` translated into bools, strings, + and floats, rather than libefp custom datatypes. + + """ + opts = core.efp_opts() + res = efpobj._efp_get_opts(opts) + _result_to_error(res) + + dopts = {} + + dopts['elec'] = bool(opts.terms & core.efp_term.EFP_TERM_ELEC) + dopts['pol'] = bool(opts.terms & core.efp_term.EFP_TERM_POL) + dopts['disp'] = bool(opts.terms & core.efp_term.EFP_TERM_DISP) + dopts['xr'] = bool(opts.terms & core.efp_term.EFP_TERM_XR) + dopts['chtr'] = bool(opts.terms & core.efp_term.EFP_TERM_CHTR) + dopts['qq'] = bool(opts.terms & core.efp_term.EFP_TERM_QQ) # SKP + dopts['lj'] = bool(opts.terms & core.efp_term.EFP_TERM_LJ) # SKP + + dopts['spec_elec'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_ELEC) # SKP + dopts['spec_pol'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_POL) # SKP + dopts['spec_disp'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_DISP) # SKP + dopts['spec_xr'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_XR) # SKP + dopts['spec_chtr'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_CHTR) # SKP + dopts['spec_qq'] = bool(opts.terms & core.efp_special_term.EFP_SPEC_TERM_QQ) # SKP + dopts['spec_lj'] = bool(opts.terms & core.efp_special_term.EFP_SPEC_TERM_LJ) # SKP + + dopts['elec_damp'] = { + core.EFP_ELEC_DAMP_SCREEN: 'screen', + core.EFP_ELEC_DAMP_OVERLAP: 'overlap', + core.EFP_ELEC_DAMP_OFF: 'off', + }[opts.elec_damp] + + dopts['pol_damp'] = { + core.EFP_POL_DAMP_TT: 'tt', + core.EFP_POL_DAMP_OFF: 'off', + }[opts.pol_damp] + + dopts['disp_damp'] = { + core.EFP_DISP_DAMP_TT: 'tt', + core.EFP_DISP_DAMP_OVERLAP: 'overlap', + core.EFP_DISP_DAMP_OFF: 'off', + }[opts.disp_damp] + + dopts['enable_pbc'] = bool(opts.enable_pbc) + dopts['enable_cutoff'] = bool(opts.enable_cutoff) + dopts['swf_cutoff'] = opts.swf_cutoff + dopts['xr_cutoff'] = opts.xr_cutoff + dopts['special_fragment'] = opts.special_fragment + dopts['enable_pairwise'] = bool(opts.enable_pairwise) # SKP + dopts['symmetry'] = bool(opts.symmetry) # SKP + + dopts['symm_frag'] = { + core.EFP_SYMM_FRAG_FRAG: 'frag', + core.EFP_SYMM_FRAG_LIST: 'list', + }[opts.symm_frag] + + dopts['ligand'] = opts.ligand # SKP + dopts['print'] = opts.print + + dopts['pol_driver'] = { + core.EFP_POL_DRIVER_ITERATIVE: 'iterative', + core.EFP_POL_DRIVER_DIRECT: 'direct', + }[opts.pol_driver] + + dopts['ai_elec'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_ELEC) + dopts['ai_pol'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_POL) + dopts['ai_disp'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_DISP) + dopts['ai_xr'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_XR) + dopts['ai_chtr'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_CHTR) + dopts['ai_qq'] = bool(opts.terms & core.efp_term.EFP_TERM_AI_QQ) # SKP + + return _rekey(dopts, label=label) + + +def set_opts(efpobj, dopts, label='libefp', append='libefp'): + """Sets the options state of `efpobj` from dictionary `dopts`. + + Parameters + ---------- + dopts : dict + Input dict with keys from libefp efp_opts (see `label`) and + values bools, strings, floats, and ints, as appropriate, rather + than libefp custom datatypes. + label : {'libefp', 'psi'}, optional + Input `dopts` keys are read as libefp efp_opts struct names or + by the custom translation set defined for `label`. + append : {'libefp', 'psi', 'append'}, optional + When ``libefp``, input `dopts` keys are applied to the default + (generally OFF) efp_opts state. When ``psi``, input `dopts` + keys are applied to the default (generally ON) Psi efp_opts + state. When ``append``, input `dopts` keys are applied to the + current *efpobj* opt_opts state. + + Returns + ------- + dict + After setting the options state, `efpobj` is queried as to the + current options state, which is then returned. + + """ + # warn on stray dopts keys + allowed = [ + 'elec', 'pol', 'disp', 'xr', 'elec_damp', 'pol_damp', 'disp_damp', 'enable_pbc', 'enable_cutoff', 'swf_cutoff', + 'xr_cutoff', + 'pol_driver', 'ai_elec', 'ai_pol', 'enable_pairwise', 'ligand', 'symmetry', 'symm_frag', + 'spec_elec', 'spec_pol', 'spec_disp', 'spec_xr', 'spec_qq', 'ai_qq', 'qq', 'lj', 'special_fragment', + 'spec_qq', 'spec_lj', 'print' + ] + label_allowed = [_lbtl[label].get(itm, itm) for itm in allowed] + for key in dopts.keys(): + if key not in label_allowed: + print('Warning: unrecognized key {}'.format(key)) + trues = [True, 1, 'yes', 'true', 'on'] + falses = [False, 0, 'no', 'false', 'off'] + + # prepare base options state for dopts + opts = core.efp_opts() + # default values of parameters + if append == 'libefp': + opts.ligand = -100 + opts.special_fragment = -100 + opts.terms |= core.efp_term.EFP_TERM_ELEC + opts.terms |= core.efp_term.EFP_TERM_POL + opts.terms |= core.efp_term.EFP_TERM_DISP + opts.terms |= core.efp_term.EFP_TERM_XR + elif append == 'psi': + opts.terms |= core.efp_term.EFP_TERM_ELEC + opts.terms |= core.efp_term.EFP_TERM_POL + opts.terms |= core.efp_term.EFP_TERM_DISP + opts.terms |= core.efp_term.EFP_TERM_XR + opts.elec_damp = core.EFP_ELEC_DAMP_SCREEN + opts.pol_damp = core.EFP_POL_DAMP_TT + opts.disp_damp = core.EFP_DISP_DAMP_OVERLAP + opts.terms |= core.efp_term.EFP_TERM_AI_ELEC + opts.terms |= core.efp_term.EFP_TERM_AI_POL + #elif append == 'qchem': + # # q-chem and psi4 have different defaults for at least this option + # opts.disp_damp = core.EFP_DISP_DAMP_TT + elif append == 'append': + res = efpobj._efp_get_opts(opts) + _result_to_error(res) + else: + raise PyEFPSyntaxError('Unrecognized opts default set: {}'.format(append)) + + # apply dopts to options state + topic = _lbtl[label].get('elec', 'elec') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_ELEC + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_ELEC + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('pol', 'pol') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_POL + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_POL + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('disp', 'disp') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_DISP + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_DISP + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('xr', 'xr') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_XR + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_XR + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) +#========== SKP changes ======================================================================# + topic = _lbtl[label].get('qq', 'qq') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_QQ + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_QQ + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('lj', 'lj') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_LJ + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_LJ + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('spec_qq', 'spec_qq') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_special_term.EFP_SPEC_TERM_QQ + elif dopts[topic] in falses: + opts.terms &= ~core.efp_special_term.EFP_SPEC_TERM_QQ + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('spec_lj', 'spec_lj') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_special_term.EFP_SPEC_TERM_LJ + elif dopts[topic] in falses: + opts.terms &= ~core.efp_special_term.EFP_SPEC_TERM_LJ + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('spec_elec', 'spec_elec') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_special_term.EFP_SPEC_TERM_ELEC + elif dopts[topic] in falses: + opts.terms &= ~core.efp_special_term.EFP_SPEC_TERM_ELEC + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('spec_pol', 'spec_pol') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_special_term.EFP_SPEC_TERM_POL + elif dopts[topic] in falses: + opts.terms &= ~core.efp_special_term.EFP_SPEC_TERM_POL + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('spec_xr', 'spec_xr') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_special_term.EFP_SPEC_TERM_XR + elif dopts[topic] in falses: + opts.terms &= ~core.efp_special_term.EFP_SPEC_TERM_XR + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + + topic = _lbtl[label].get('spec_disp', 'spec_disp') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_special_term.EFP_SPEC_TERM_DISP + elif dopts[topic] in falses: + opts.terms &= ~core.efp_special_term.EFP_SPEC_TERM_DISP + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + +#================================================================================================# + # may be enabled in a future libefp release + # topic = _lbtl[label].get('chtr', 'chtr') + + topic = _lbtl[label].get('elec_damp', 'elec_damp') + if topic in dopts: + try: + opts.elec_damp = { + 'screen': core.EFP_ELEC_DAMP_SCREEN, + 'overlap': core.EFP_ELEC_DAMP_OVERLAP, + 'off': core.EFP_ELEC_DAMP_OFF, + }[dopts[topic].lower()] + except KeyError: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [screen/overlap/off] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('pol_damp', 'pol_damp') + if topic in dopts: + try: + opts.pol_damp = { + 'tt': core.EFP_POL_DAMP_TT, + 'off': core.EFP_POL_DAMP_OFF, + }[dopts[topic].lower()] + except KeyError: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [tt/off] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('disp_damp', 'disp_damp') + if topic in dopts: + try: + opts.disp_damp = { + 'overlap': core.EFP_DISP_DAMP_OVERLAP, + 'tt': core.EFP_DISP_DAMP_TT, + 'off': core.EFP_DISP_DAMP_OFF, + }[dopts[topic].lower()] + except KeyError: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [overlap/tt/off] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('enable_pbc', 'enable_pbc') + if topic in dopts: + if dopts[topic] in trues: + opts.enable_pbc = 1 + elif dopts[topic] in falses: + opts.enable_pbc = 0 + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('symmetry', 'symmetry') + if topic in dopts: + if dopts[topic] in trues: + opts.symmetry = 1 + elif dopts[topic] in falses: + opts.symmetry = 0 + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('symm_frag', 'symm_frag') + if topic in dopts: + try: + opts.symm_frag = { + 'frag': core.EFP_SYMM_FRAG_FRAG, + 'list': core.EFP_SYMM_FRAG_LIST, + }[dopts[topic].lower()] + except KeyError: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [frag/list] {}: {}'.format(topic, dopts[topic])) + + # PAIRWISE - SKP + topic = _lbtl[label].get('enable_pairwise', 'enable_pairwise') + if topic in dopts: + if dopts[topic] in trues: + opts.enable_pairwise = 1 + elif dopts[topic] in falses: + opts.enable_pairwise = 0 + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) +# LIGAND NUMBER - SKP + topic = _lbtl[label].get('ligand', 'ligand') + if topic in dopts: + ligand_idx = dopts[topic] + if not isinstance(ligand_idx, int): + raise TypeError(f"ligand value must be an integer, got: {ligand_idx}") + if ligand_idx >= efpobj.get_frag_count(): + raise ValueError(f"Invalid ligand index: {ligand_idx}, only {efpobj.get_frag_count()} fragments present.") + opts.ligand = ligand_idx + +# SPECIAL-FRAGMENT NUMBER - SKP + topic = _lbtl[label].get('special_fragment', 'special_fragment') + if topic in dopts: + special_frag_idx = dopts[topic] + if not isinstance(special_frag_idx, int): + raise TypeError(f"special_fragment value must be an integer, got: {special_frag_idx}") + if special_frag_idx >= efpobj.get_frag_count(): + raise ValueError(f"Invalid special_fragment index: {special_frag_idx}, only {efpobj.get_frag_count()} fragments present.") + opts.special_fragment = special_frag_idx + + topic = _lbtl[label].get('enable_cutoff', 'enable_cutoff') + if topic in dopts: + if dopts[topic] in trues: + opts.enable_cutoff = 1 + elif dopts[topic] in falses: + opts.enable_cutoff = 0 + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('swf_cutoff', 'swf_cutoff') + if topic in dopts: + opts.swf_cutoff = float(dopts[topic]) + + topic = _lbtl[label].get('xr_cutoff', 'xr_cutoff') + if topic in dopts: + opts.xr_cutoff = float(dopts[topic]) + + topic = _lbtl[label].get('print', 'print') + if topic in dopts: + opts.print = int(dopts[topic]) + + topic = _lbtl[label].get('pol_driver', 'pol_driver') + if topic in dopts: + try: + opts.pol_driver = { + 'iterative': core.EFP_POL_DRIVER_ITERATIVE, + 'direct': core.EFP_POL_DRIVER_DIRECT, + }[dopts[topic].lower()] + except KeyError: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [iterative/direct] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('ai_elec', 'ai_elec') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_AI_ELEC + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_AI_ELEC + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('ai_pol', 'ai_pol') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_AI_POL + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_AI_POL + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) +#=================== SKP addition ===================================================# + topic = _lbtl[label].get('ai_qq', 'ai_qq') + if topic in dopts: + if dopts[topic] in trues: + opts.terms |= core.efp_term.EFP_TERM_AI_QQ + elif dopts[topic] in falses: + opts.terms &= ~core.efp_term.EFP_TERM_AI_QQ + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) +#======================================================================================# + # may be enabled in a future libefp release + # topic = _lbtl[label].get('ai_disp', 'ai_disp') + # topic = _lbtl[label].get('ai_xr', 'ai_xr') + # topic = _lbtl[label].get('ai_chtr', 'ai_chtr') + +# set some defaults + if opts.xr_cutoff == 0 and opts.enable_cutoff == 1: + opts.xr_cutoff = opts.swf_cutoff + + + # set computed options state + res = efpobj._efp_set_opts(opts) + _result_to_error(res) + + # we need to initialize the ligand structure if pairwise calcs are requested + # do it here - there is no other time before compute starts... + if opts.enable_pairwise == 1 and opts.ligand >= 0: + efpobj._efp_add_ligand(opts.ligand) + + # prepares symmetry info for symmetric crystal calculations + res = efpobj._efp_set_symmlist() + _result_to_error(res) + + return efpobj.get_opts(label=label) + + +def set_periodic_box(efpobj, xyz, alpha=90.0, beta=90.0, gamma=90.0): + """Set periodic box size. + + Parameters + ---------- + xyz : list + (3,) Box sizes in three dimensions [x, y, z] in Bohr. + alpha + Unit cell alpha angle in degrees. + beta + Unit cell beta angle in degrees. + gamma + Unit cell gamma angle in degrees. + + Returns + ------- + None + + .. versionchanged:: 1.9 + Parameters alpha, beta, and gamma added. + + """ + #if len(xyz) != 3: + # raise PyEFPSyntaxError('Invalid periodic box setting: {}'.format(xyz)) + + res = efpobj._efp_set_periodic_box(xyz[0], xyz[1], xyz[2], alpha, beta, gamma) + _result_to_error(res) + (res, xyzabc) = efpobj._efp_get_periodic_box() + _result_to_error(res) + + +def get_periodic_box(efpobj): + """Get periodic box size. + + Returns + ------- + list + Box sizes in three dimensions [x, y, z] in Bohr. + And box angles [alpha, beta, gamma] in degrees. + + .. versionchanged:: 1.9 + Return size extended from 3 to 6 to include angles. + + """ + (res, xyzabc) = efpobj._efp_get_periodic_box() + _result_to_error(res) + + return xyzabc + + +#def opts_summary(efpobj, labels='libefp'): +# +# opts = efpobj.get_opts() +## py::dict opts = opts_to_dict(efp); +# +# elec = 'Electrostatics' +# xr = 'Exchange' +# disp = 'Dispersion' +# if labels == 'libefp': +# pol = 'Polarization' +# elif labels == 'psi4': +# pol = 'Induction' +# +# text = '' +# text += '\n ==> EFP/EFP Setup <==\n\n' +# text += ' {:<30} {:12}\n'.format(elec + ' enabled?:', 'true' if opts["elec"] else 'false') +# text += ' {:<30} {:12}\n'.format(pol + ' enabled?:', 'true' if opts["pol"] else 'false') +# text += ' {:<30} {:12}\n'.format(disp + ' enabled?:', 'true' if opts["disp"] else 'false') +# text += ' {:<30} {:12}\n'.format(xr + ' enabled?:', 'true' if opts["xr"] else 'false') +# text += ' {:<30} {:12}\n'.format('Charge-Transfer enabled?:', 'undefined') +# +# text += '\n {:<30} {:12}\n'.format(elec + ' damping:', opts["elec_damp"]) +# text += ' {:<30} {:12}\n'.format(pol + 'damping:', opts["pol_damp"]) +# text += ' {:<30} {:12}\n'.format(disp + ' damping:', opts["disp_damp"]) +# text += ' {:<30} {:12}\n'.format(pol + ' driver:', opts["pol_driver"]) +# +# text += '\n ==> QM/EFP Setup <==\n\n' +##// sprintf(buffer, " Number of QM fragments: %12d\n", -1); //, nfrag_); +# text += ' Electrostatics enabled?: {:12}\n'.format('true' if opts["ai_elec"] else 'false') +# text += ' Polarization enabled?: {:12}\n'.format('true' if opts["ai_pol"] else 'false') +# text += ' Dispersion enabled?: {:12}\n'.format('undefined') +# text += ' Exchange enabled?: {:12}\n'.format('undefined') +# text += ' Charge-Transfer enabled?: {:12}\n'.format('undefined') +# +# return text + + +def get_energy(efpobj, label='libefp'): + """Gets the energy components from `efpobj` computation as a dictionary. + + Parameters + ---------- + label : {'libefp', 'psi'}, optional + Returned dictionary keys are identical to libefp efp_energy struct + names plus elec, pol, disp, xr, & total components unless custom renaming + requested via `label`. + + Returns + ------- + dict + Individual terms, summed components, and total energies. + + """ + ene = core.efp_energy() + res = efpobj._efp_get_energy(ene) + _result_to_error(res) + + energies = { + 'electrostatic': ene.electrostatic, + 'charge_penetration': ene.charge_penetration, + 'electrostatic_point_charges': ene.electrostatic_point_charges, + 'polarization': ene.polarization, + 'dispersion': ene.dispersion, + 'exchange_repulsion': ene.exchange_repulsion, + 'total': ene.total, + 'elec': ene.electrostatic + ene.charge_penetration + ene.electrostatic_point_charges, + 'xr': ene.exchange_repulsion, + 'pol': ene.polarization, + 'disp': ene.dispersion, + 'qq': ene.qq, + 'lj':ene.lj, + } + + return _rekey(energies, label=label) + + +def print_pairwise_energies(efpobj): + """Prints pairwise energy between ligand and all fragments.""" + + ligand_index = efpobj.get_opts().get("ligand", 0) + nfrag = efpobj.get_frag_count() + + energies = efpobj._efp_get_pairwise_energy(nfrag) + + ene_elec = 0.0 + ene_pol = 0.0 + ene_disp = 0.0 + ene_xr = 0.0 + ene_chpn = 0.0 + ene_total = 0.0 + for i in range(nfrag): + if i == ligand_index: + continue + + print(f"\nPAIRWISE ENERGY BETWEEN FRAGMENT {i} AND LIGAND {ligand_index}") + energy = energies[i] + print(f"{'ELECTROSTATIC':>40} {energy['electrostatic']:16.10f}") + print(f"{'POLARIZATION':>40} {energy['polarization']:16.10f}") + print(f"{'DISPERSION':>40} {energy['dispersion']:16.10f}") + print(f"{'EXCHANGE REPULSION':>40} {energy['exchange_repulsion']:16.10f}") + print(f"{'CHARGE PENETRATION':>40} {energy['charge_penetration']:16.10f}") + print(f"{'TOTAL':>40} {energy['total']:16.10f}") + print("------------------------------------------------------------") + + ene_elec += energy['electrostatic'] + ene_pol += energy['polarization'] + ene_disp += energy['dispersion'] + ene_xr += energy['exchange_repulsion'] + ene_chpn += energy['charge_penetration'] + ene_total += energy['total'] + + print(f"\nTOTAL PAIRWISE ENERGY OF LIGAND {ligand_index}") + print(f"{'ELECTROSTATIC':>40} {ene_elec:16.10f}") + print(f"{'POLARIZATION':>40} {ene_pol:16.10f}") + print(f"{'DISPERSION':>40} {ene_disp:16.10f}") + print(f"{'EXCHANGE REPULSION':>40} {ene_xr:16.10f}") + print(f"{'CHARGE PENETRATION':>40} {ene_chpn:16.10f}") + print(f"{'TOTAL':>40} {ene_total:16.10f}") + print("------------------------------------------------------------") + print("------------------------------------------------------------") + + + +def get_frag_count(efpobj): + """Gets the number of fragments in `efpobj` computation. + + Returns + ------- + int + Number of fragments in calculation. + + """ + (res, nfrag) = efpobj._efp_get_frag_count() + _result_to_error(res) + + return nfrag + + +def get_multipole_count(efpobj): + """Gets the number of multipoles in `efpobj` computation. + + Returns + ------- + int + Total number of multipoles from electrostatics calculation. + + """ + (res, nmult) = efpobj._efp_get_multipole_count() + _result_to_error(res) + + return nmult + + +def get_multipole_coordinates(efpobj, verbose=1): + """Gets the coordinates of `efpobj` electrostatics multipoles. + + Parameters + ---------- + verbose : int, optional + Whether to print out the multipole coordinates. 0: no printing. 1: + print charges and dipoles. 2: additionally print quadrupoles + and octupoles. + + Returns + ------- + list + ``3 n_mult`` (flat) array of multipole locations. + + Examples + -------- + + >>> # Use with NumPy + >>> n_mult = efpobj.get_multipole_count() + >>> xyz_mult = np.asarray(efpobj.get_multipole_coordinates()).reshape(n_mult, 3) + + """ + nmult = efpobj.get_multipole_count() + (res, xyz) = efpobj._efp_get_multipole_coordinates(nmult) + _result_to_error(res) + + if verbose >= 1: + xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) + + text = '\n ==> EFP Multipole Coordinates <==\n\n' + for mu in range(nmult): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) + print(text) + + return xyz + + +def get_multipole_values(efpobj, verbose=1): + """Gets the computed per-point multipoles of `efpobj`. + + Parameters + ---------- + verbose : int, optional + Whether to print out the multipole arrays. 0: no printing. 1: + print charges and dipoles. ``2``: additionally print quadrupoles + and octupoles. + + Returns + ------- + list + ``20 n_mult`` (flat) array of per-point multipole values including + charges + dipoles + quadrupoles + octupoles. + Dipoles stored as x, y, z. + Quadrupoles stored as xx, yy, zz, xy, xz, yz. + Octupoles stored as xxx, yyy, zzz, xxy, xxz, xyy, yyz, xzz, yzz, xyz. + + Examples + -------- + >>> # Use with NumPy + >>> n_mult = efpobj.get_multipole_count() + >>> val_mult = np.asarray(efpobj.get_multipole_values()).reshape(n_mult, 20) + + """ + nmult = efpobj.get_multipole_count() + (res, mult) = efpobj._efp_get_multipole_values(nmult) + _result_to_error(res) + + if verbose >= 1: + mult20 = list(map(list, zip(*[iter(mult)] * 20))) + + text = '\n ==> EFP Multipoles: Charge & Dipole <==\n\n' + for mu in range(nmult): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *mult20[mu][:4]) + + if verbose >= 2: + text += '\n ==> EFP Multipoles: Quadrupole <==\n\n' + for mu in range(nmult): + text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format(mu, *mult20[mu][4:10]) + text += '\n ==> EFP Multipoles: Octupole <==\n\n' + for mu in range(nmult): + text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format( + mu, *mult20[mu][10:]) + print(text) + + return mult + + +def get_induced_dipole_count(efpobj): + """Gets the number of polarization induced dipoles in `efpobj` computation. + + Returns + ------- + int + Total number of polarization induced dipoles. + + """ + (res, ndip) = efpobj._efp_get_induced_dipole_count() + _result_to_error(res) + + return ndip + + +def get_induced_dipole_coordinates(efpobj, verbose=1): + """Gets the coordinates of `efpobj` induced dipoles. + + Parameters + ---------- + verbose : int, optional + Whether to print out the multipole arrays. 0: no printing. 1: + print induced dipole coordinates. + + Returns + ------- + list + (3 * n_dip, ) (flat) array of induced dipole locations. + + """ + ndip = efpobj.get_induced_dipole_count() + (res, xyz) = efpobj._efp_get_induced_dipole_coordinates(ndip) + _result_to_error(res) + + if verbose >= 1: + xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) + + text = '\n ==> EFP Induced Dipole Coordinates <==\n\n' + for mu in range(ndip): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) + print(text) + + return xyz + + +def get_induced_dipole_values(efpobj, verbose=1): + """Gets the values of polarization induced dipoles of `efpobj`. + + Parameters + ---------- + verbose : int, optional + Whether to print out the induced dipole arrays. 0: no + printing. 1: print induced dipole values. + + Returns + ------- + list + ``3*n_dip`` (flat) array of polarization induced dipole values. + + Examples + -------- + >>> # Use with NumPy + >>> n_dip = efpobj.get_induced_dipole_count() + >>> val_dip = np.asarray(efpobj.get_induced_dipole_values()).reshape(n_dip, 3) + + """ + ndip = efpobj.get_induced_dipole_count() + (res, vals) = efpobj._efp_get_induced_dipole_values(ndip) + _result_to_error(res) + + if verbose >= 1: + vals3 = list(map(list, zip(*[iter(vals)] * 3))) + + text = '\n ==> EFP Induced Dipoles <==\n\n' + for mu in range(ndip): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *vals3[mu]) + print(text) + + return vals + + +def get_induced_dipole_conj_values(efpobj, verbose=1): + """Gets the values of polarization conjugated induced dipoles of `efpobj`. + + Parameters + ---------- + verbose : int, optional + Whether to print out the induced dipole conj arrays. + 0: no printing. 1: print induced dipole values. + + Returns + ------- + list + 3 x n_dip (flat) array of conjugate induced dipole values. + + """ + ndip = efpobj.get_induced_dipole_count() + (res, vals) = efpobj._efp_get_induced_dipole_conj_values(ndip) + _result_to_error(res) + + if verbose >= 1: + vals3 = list(map(list, zip(*[iter(vals)] * 3))) + + text = '\n ==> EFP Conj. Induced Dipoles <==\n\n' + for mu in range(ndip): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *vals3[mu]) + print(text) + + return vals + + +def get_point_charge_count(efpobj): + """Gets the number of set point charges `efpobj`. + + Returns + ------- + int + Total number of set point charges. + + """ + (res, nptc) = efpobj._efp_get_point_charge_count() + _result_to_error(res) + + return nptc + + +def get_point_charge_coordinates(efpobj, verbose=1): + """Gets the coordinates of set point charges on `efpobj`. + + Parameters + ---------- + verbose : int, optional + Whether to print out the point charge arrays. 0: no printing. + 1: print point charge coordinates. + + Returns + ------- + list + 3 x n_ptc (flat) array of point charge locations. + + """ + nptc = efpobj.get_point_charge_count() + (res, xyz) = efpobj._efp_get_point_charge_coordinates(nptc) + _result_to_error(res) + + if verbose >= 1: + xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) + + text = '\n ==> EFP Point Charge Coordinates <==\n\n' + for mu in range(nptc): + text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) + print(text) + + return xyz + + +def get_point_charge_values(efpobj, verbose=1): + """Gets the values of set point charges on `efpobj`. + + Parameters + ---------- + verbose : int, optional + Whether to print out the point charge arrays. 0: no + printing. 1: print point charge values. + + Returns + ------- + list + ``n_ptc`` array of point charge values. + + Examples + -------- + >>> # Use with NumPy + >>> val_ptc = np.asarray(efpobj.get_point_charge_values()) + + """ + nptc = efpobj.get_point_charge_count() + (res, vals) = efpobj._efp_get_point_charge_values(nptc) + _result_to_error(res) + + if verbose >= 1: + text = '\n ==> EFP Point Charges <==\n\n' + for mu in range(nptc): + text += '{:6d} {:14.8f}\n'.format(mu, vals[mu]) + print(text) + + return vals + + +def get_wavefunction_dependent_energy(efpobj): + """Updates wavefunction-dependent energy terms for SCF. + + Returns + ------- + float + Wavefunction-dependent EFP energy. + + """ + (res, wde) = efpobj._efp_get_wavefunction_dependent_energy() + _result_to_error(res) + + return wde + + +def get_gradient(efpobj): + """Gets the computed per-fragment EFP energy gradient of `efpobj`. + + Returns + ------- + list + ``6 x n_frag`` array of per-fragment negative force and torque. + + """ + nfrag = efpobj.get_frag_count() + (res, grad) = efpobj._efp_get_gradient(nfrag) + _result_to_error(res) + + return grad + +# SKP + +def get_pairwise_energy(efpobj): + """Gets the per-fragment pairwise energy breakdowns. + + Returns + ------- + list of dict + A list of `n_frag` dictionaries, each containing energy components: + 'electrostatic', 'exchange_repulsion', 'polarization', + 'dispersion', and 'total'. + """ + nfrag = efpobj.get_frag_count() + energies = efpobj._efp_get_pairwise_energy(nfrag) + return energies + +#SKP + +#def set_pairwise_energy(efpobj, pair_energies): +# """Sets pairwise energy values per fragment. +# +# Parameters +# ---------- +# pair_energies : list of dict +# A list of dicts with energy components for each fragment, where each dict includes: +# 'electrostatic', 'exchange_repulsion', 'polarization', 'dispersion', and 'total'. +# +# Returns +# ------- +# None +# """ +# nfrag = efpobj.get_frag_count() +# if len(pair_energies) != nfrag: +# raise PyEFPSyntaxError(f"Expected {nfrag} energy entries, got {len(pair_energies)}") +# +# res = efpobj._efp_set_pairwise_energy(nfrag, pair_energies) +# _result_to_error(res) + +def gradient_summary(efpobj): + """Gets the computed per-fragment EFP energy gradient of `efpobj`. + + Returns + ------- + str + Formatted text of the `6 x n_frag` gradient and torque. + + """ + grad = efpobj.get_gradient() + grad6 = list(map(list, zip(*[iter(grad)] * 6))) + + text = '\n ==> EFP Gradient & Torque <==\n\n' + for fr in grad6: + text += '{:14.8f} {:14.8f} {:14.8f} {:14.8f} {:14.8f} {:14.8f}\n'.format(*fr) + + text += '\n' + return text + + +def energy_summary(efpobj, label='libefp', scfefp=None): + """Forms summary of EFP and SCFEFP energy components from `efpobj`. + + Parameters + ---------- + label : {'libefp', 'psi'}, optional + Text labels use libefp terms names unless custom renaming + requested via `label`. + scfefp : float, optional + Total SCF energy (Hartrees) including EFP wavefunction dependent + and wavefunction independent terms. Used for add'l printing. + + Returns + ------- + str + Summary suitable for printing indicating energy components + (electrostatics, exchange, induction, dispersion, total), whether + each are enabled in options, and breakdown into pure-EFP and + QM-EFP, where available. If scfefp, includes a section on SCF + iterated and SCF total. + + """ + opt = efpobj.get_opts() + ene = efpobj.get_energy() + + def _enabled(tf, t='*', f='', suffix=''): + if tf: + return t + suffix + else: + return f + + elec = 'Electrostatics' + disp = 'Dispersion' + if label == 'libefp': + xr = 'Exchange-Repulsion' + indc = 'Polarization' + elif label == 'psi': + xr = 'Exchange' + indc = 'Induction' + + # yapf: disable + text = '\n' + text += '\n EFP Results\n' + text += ' ------------------------------------------------------------\n' + text += ' {:<30}{:20.12f} [Eh] {}\n'.format(elec, ene['electrostatic'] + + ene['charge_penetration'] + + ene['electrostatic_point_charges'], + _enabled(opt['elec'] or opt['ai_elec'], + suffix=(' (' + opt['elec_damp'] + ' damping)'))) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('EFP/EFP', ene['electrostatic'] + + ene['charge_penetration'], + _enabled(opt['elec'])) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('QM-Nuc/EFP', + ene['electrostatic_point_charges'], + _enabled(opt['ai_elec'])) + text += '\n {:<30}{:20.12f} [Eh] {}\n'.format(xr, ene['exchange_repulsion'], + _enabled(opt['xr'])) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('EFP/EFP', ene['exchange_repulsion'], + _enabled(opt['xr'])) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('QM/EFP', 0.0, '') + text += '\n {:<30}{:20.12f} [Eh] {}\n'.format(indc, ene['polarization'], + _enabled(opt['pol'] or opt['ai_pol'], + suffix=(' (' + opt['pol_damp'] + ' damping)'))) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format(_enabled(opt['ai_pol'], t='QM/EFP', f='EFP/EFP'), + ene['polarization'], + _enabled(opt['pol'] or opt['ai_pol'])) + text += '\n {:<30}{:20.12f} [Eh] {}\n'.format(disp, ene['dispersion'], + _enabled(opt['disp'], + suffix=(' (' + opt['disp_damp'] + ' damping)'))) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('EFP/EFP', ene['dispersion'], + _enabled(opt['disp'])) + text += ' {:<28}{:20.12f} [Eh] {}\n'.format('QM/EFP', 0.0, '') + text += '\n {:<30}{:20.12f} [Eh]\n'.format('Total EFP', ene['total']) + # yapf: enable + if scfefp is not None: + wie = ene['total'] - ene['pol'] + text += ' EFP excluding EFP {:<12}{:20.12f} [Eh]\n'.format(indc, wie) + text += ' SCF including EFP {:<12}{:20.12f} [Eh]\n'.format(indc, scfefp - wie) + text += ' Total SCF including Total EFP {:20.12f} [Eh]\n'.format(scfefp) + + text += '\n' + return text + + +def geometry_summary(efpobj, units_to_bohr=1.0): + """Formatted geometry and fragments for `efpobj`. + + Parameters + ---------- + units_to_bohr : float,optional + Conversion factor for printing; for Angstroms, approx. 0.529177. + + Returns + ------- + str + Summary of EFP geometry & point charges (QM atoms) suitable for printing. + + """ + text = '' + text += '\n ==> EFP Geometry <==\n\n' + text += ' Geometry (in {} * {:12.8f}):\n\n'.format('Bohr', units_to_bohr) + text += ' Center X Y Z QM/EFP\n' + text += ' ------------ ----------------- ----------------- ----------------- ------------\n' + + mol_info = efpobj.get_atoms() + terminal_frag = [fr[0] for fr in mol_info['fragments'][1:]] + frag_names = efpobj.get_frag_name() + + ifr = 0 + for iat, at in enumerate(mol_info['full_atoms']): + if iat in terminal_frag: + text += ' --\n' + ifr += 1 + text += ' {:8}{:4} {:17.12f} {:17.12f} {:17.12f} {}\n'.format(at['symbol'], '', + at['x'] * units_to_bohr, + at['y'] * units_to_bohr, + at['z'] * units_to_bohr, + frag_names[ifr].lower()) + + # TODO move into dict? + ptc_info = { + 'n': efpobj.get_point_charge_count(), + 'xyz': efpobj.get_point_charge_coordinates(verbose=0), + 'val': efpobj.get_point_charge_values(verbose=0) + } + + if ptc_info['n'] > 0: + mult3 = list(map(list, zip(*[iter(ptc_info['xyz'])] * 3))) + text += ' ------------\n' + for ptc in range(ptc_info['n']): + text += ' {:8}{:4} {:17.12f} {:17.12f} {:17.12f} {}\n'.format(ptc_info['val'][ptc], '', + mult3[ptc][0] * units_to_bohr, + mult3[ptc][1] * units_to_bohr, + mult3[ptc][2] * units_to_bohr, + 'point_charge') + + text += '\n' + return text + + +def nuclear_repulsion_energy(efpobj, use_efp_frags=True, use_point_charges=False): + """Computes nuclear repulsion energy for `efpobj`. + + Parameters + ---------- + use_efp_frags : bool, optional + If True (default), compute NRE using the efp fragment subsystem. + use_point_charges : bool, optional + If True (not default), include point charges (generally QM atoms) + in NRE computation. + + Returns + ------- + float + Nuclear repulsion energy [E_h] for specified geometry subsystem + + """ + nre = 0.0 + loc = [] + + if use_efp_frags: + loc.extend(efpobj.get_atoms()['full_atoms']) + if use_point_charges: + ptc_xyz = efpobj.get_point_charge_coordinates(verbose=0) + ptc_val = efpobj.get_point_charge_values(verbose=0) + for ptc in range(efpobj.get_point_charge_count()): + loc.append({ + 'Z': ptc_val[ptc], + 'x': ptc_xyz[ptc * 3], + 'y': ptc_xyz[ptc * 3 + 1], + 'z': ptc_xyz[ptc * 3 + 2] + }) + + for iat1, at1 in enumerate(loc): + for iat2, at2 in enumerate(loc): + if iat2 < iat1: + ZZ = at1['Z'] * at2['Z'] + dx = at1['x'] - at2['x'] + dy = at1['y'] - at2['y'] + dz = at1['z'] - at2['z'] + dist = math.sqrt(dx * dx + dy * dy + dz * dz) + nre += ZZ / dist + + return nre + + +#def _frag_idx_validation(efpobj, ifr): +# nfr = efpobj.get_frag_count() +# if (ifr < 0) or (ifr >= nfr): +# raise PyEFPSyntaxError('Invalid fragment index for 0-indexed {}-fragment EFP: {}'.format(nfr, ifr)) + + +def set_frag_coordinates(efpobj, ifr, ctype, coord): + """Set fragment orientation on `efpobj` from hint. + + Parameters + ---------- + ifr : int + Index of fragment (0-indexed). + ctype : core.efp_coord_type or str {'xyzabc', 'points', 'rotmat'} + Type of coodinates hint among ``xyzabc``, `points`, & `rotmat`. + coord : list of floats + 6-, 9-, or 12-element hint of coordinates. + + Returns + ------- + None + + """ + if isinstance(ctype, str): + try: + ctype = { + 'xyzabc': core.EFP_COORD_TYPE_XYZABC, + 'points': core.EFP_COORD_TYPE_POINTS, + 'rotmat': core.EFP_COORD_TYPE_ROTMAT, + 'atoms': core.EFP_COORD_TYPE_ATOMS, + }[ctype.lower()] + except KeyError: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [xyzabc/points/rotmat/atoms] {}: {}'.format('ctype', ctype)) + + efpobj.input_units_to_au = 1.0 + res = efpobj._efp_set_frag_coordinates(ifr, ctype, coord) + _result_to_error(res) + + +def set_point_charge_coordinates(efpobj, xyz): + """Reset arbitrary point charge locations (often QM atoms) + interacting with the EFP subsystem. Must have been initially set + with set_point_charges. + + Parameters + ---------- + xyz : list + ``3 * n_ptc`` array of XYZ coordinates of charge positions, + generally QM coordinates. + + Returns + ------- + None + + """ + n_ptc = efpobj.get_point_charge_count() + if n_ptc == 0: + raise PyEFPSyntaxError('Must initialize point charges with set_point_charges') + if len(xyz) != (3 * n_ptc): + raise PyEFPSyntaxError('Invalid point charge length: {}'.format(xyz)) + + res = efpobj._efp_set_point_charge_coordinates(len(xyz), xyz) + _result_to_error(res) + + +def set_point_charge_values(efpobj, ptc): + """Reset arbitrary point charge values (often QM atoms) + interacting with the EFP subsystem. Must have been initially set + with set_point_charges. + + Parameters + ---------- + ptc : list of float + array of charge values, generally QM nuclear charges. + + Returns + ------- + None + + """ + n_ptc = efpobj.get_point_charge_count() + if n_ptc == 0: + raise PyEFPSyntaxError('Must initialize point charges with set_point_charges') + if len(ptc) != n_ptc: + raise PyEFPSyntaxError('Invalid point charge length: {}'.format(ptc)) + + res = efpobj._efp_set_point_charge_values(len(ptc), ptc) + _result_to_error(res) + + +def set_point_charges(efpobj, ptc, coord): + """Sets arbitrary point charges (often QM atoms) interacting with the + EFP subsystem. + + Parameters + ---------- + ptc : list + (n_ptc, ) array of charge values, generally QM Z. + coord : list + (3 * n_ptc, ) or (n_ptc, 3) array (that is, flat or nested) + of XYZ coordinates [a0] of charge positions, generally QM coordinates. + + Returns + ------- + None + + """ + if len(ptc) == len(coord): + coord = sum(coord, []) + + if (len(ptc) * 3) != len(coord): + raise PyEFPSyntaxError('Invalid point charges setting: {}'.format(coord)) + + res = efpobj._efp_set_point_charges(len(ptc), ptc, coord) + _result_to_error(res) + + +def get_frag_name(efpobj, ifr=None): + """Gets system name on fragment(s) of `efpobj`. + + Parameters + ---------- + ifr : int, optional + Index of fragment (0-indexed) if not all. + + Returns + ------- + str, list of str + If `ifr`, name of fragment `ifr`. Otherwise, names of all + fragments in list. + + """ + return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='name') + + +def _get_frag_common(efpobj, ifr, topic): + nfr = efpobj.get_frag_count() + + fn_mapper = { + 'name': efpobj._efp_get_frag_name, + 'charge': efpobj._efp_get_frag_charge, + 'xyzabc': efpobj._efp_get_frag_xyzabc, + 'atom_count': efpobj._efp_get_frag_atom_count, + 'multiplicity': efpobj._efp_get_frag_multiplicity, + } + + if ifr is None: + frags = [] + for fr in range(nfr): + (res, ftopic) = fn_mapper[topic](fr) + _result_to_error(res) + frags.append(ftopic) + + return frags + + else: + if ifr in range(nfr): + (res, ftopic) = fn_mapper[topic](ifr) + _result_to_error(res) + + return ftopic + else: + raise PyEFPSyntaxError('Invalid fragment index for 0-indexed {}-fragment EFP: {}'.format(nfr, ifr)) + + +def get_frag_charge(efpobj, ifr=None, zero=1e-8): + """Gets total charge on fragment(s) of `efpobj`. + + Parameters + ---------- + ifr : int, optional + Index of fragment (0-indexed) if not all. + zero : float, optional + Absolute value under which to zero charge. + + Returns + ------- + str, list of str + If `ifr`, charge of fragment `ifr`. Otherwise, charges of all + fragments in list. + + """ + chg = _get_frag_common(efpobj=efpobj, ifr=ifr, topic='charge') + if ifr is None: + return [(0.0 if math.fabs(c) < zero else c) for c in chg] + else: + if math.fabs(chg) < zero: + return 0.0 + else: + return chg + + +def get_frag_multiplicity(efpobj, ifr=None): + """Gets spin multiplicity on fragment(s) of `efpobj`. + + Parameters + ---------- + ifr : int, optional + Index of fragment (0-indexed) if not all. + + Returns + ------- + str, list of str + If `ifr`, multiplicity of fragment `ifr`. Otherwise, multiplicity + of all fragments in list. + + """ + return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='multiplicity') + + +def get_frag_atom_count(efpobj, ifr=None): + """Gets atom count on fragment(s) of `efpobj`. + + Parameters + ---------- + ifr : int, optional + Index of fragment (0-indexed) if not all. + + Returns + ------- + str, list of str + If `ifr`, atom count of fragment `ifr`. Otherwise, atom counts + of all fragments in list. + + """ + return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='atom_count') + + +def get_frag_atoms(efpobj, ifr): + """Gets geometry information for atoms modeled by fragment in `efpobj`. + + Parameters + ---------- + ifr : int + Index of fragment (0-indexed). + + Returns + ------- + list of dict + Each atom in fragment `ifr` has position, charge, and element + fields below in a dictionary at list index `ifr` + ``Z`` (*float*) nuclear charge. + ``label`` (*str*) atom label from EFP file, e.g., A02H2. + ``x`` (*float*) X coordinate of atom position. + ``y`` (*float*) Y coordinate of atom position. + ``z`` (*float*) Z coordinate of atom position. + ``mass`` (*float*) atom mass [amu] + ``symbol`` (*str*) atomic symbol extracted from label. + + """ + nfr = efpobj.get_frag_count() + nat = efpobj.get_frag_atom_count(ifr) + + if ifr in range(nfr): + (res, atoms) = efpobj._efp_get_frag_atoms(ifr, nat) + _result_to_error(res) + + for at in atoms: + mobj = re.match(r'\AA\d*(?P[A-Z]{1,3})\d*\Z', at['label']) + if mobj: + at['symbol'] = mobj.group('symbol').capitalize() + return atoms + else: + raise PyEFPSyntaxError('Invalid fragment index for 0-indexed {}-fragment EFP: {}'.format(nfr, ifr)) + + +def get_atoms(efpobj): + #enum efp_result res; + #size_t frag_natom, natom=0; + #double frag_chg; + #int frag_mult; + #py::list fr, frt, frcg, frmp, full_atoms; + + natom = 0 + frag_count = efpobj.get_frag_count() + frag_natom = efpobj.get_frag_atom_count() + fr = [] + full_atoms = [] + for ifr in range(frag_count): + frat = frag_natom[ifr] + + fr.append([natom, natom + frat]) + natom += frat + + pyat = efpobj.get_frag_atoms(ifr) + full_atoms.extend(pyat) + + mol_info = {} + # mol_info["units"] = "Bohr" + mol_info["input_units_to_au"] = 1.0 + mol_info["fix_com"] = True + mol_info["fix_orientation"] = True + mol_info["fix_symmetry"] = "c1" + + mol_info['fragments'] = fr + mol_info['fragment_types'] = ['Real'] * frag_count + mol_info['fragment_charges'] = efpobj.get_frag_charge() + mol_info['fragment_multiplicities'] = efpobj.get_frag_multiplicity() + mol_info['full_atoms'] = full_atoms + + return mol_info + + +def to_viz_dict(efpobj): + + pyat = efpobj.get_atoms() + for at in pyat['full_atoms']: + at['ghosted'] = False + at['at_type'] = 'efpxyz' + mobj = re.match(r'\AA\d*(?P[A-Z]{1,3})\d*\Z', at['label']) + if mobj: + at['symbol'] = mobj.group('symbol').capitalize() + at['charge'] = at['Z'] + #pyat['molecule']['fragment_charges'].append(efpobj.get_frag_charges(fr) + #pyat['molecule']['fragment_multiplicities'].append(efpobj.get_frag_multiplicity(fr) + + return pyat + + +def get_frag_xyzabc(efpobj, ifr=None): + """Get the XYZABC coordinates hint on fragment(s) from `efpobj`. + + Parameters + ---------- + ifr : int, optional + Index of fragment (0-indexed) if not all. + + Returns + ------- + list, list of list + If `ifr`, hint for fragment `ifr`. Otherwise, hints of all + fragments in list. Note that fragments inputted through POINTS + will still be returned as XYZABC. Also, fragments inputted + through XYZABC will have the angles standardized to (-pi, pi]. + + """ + return _get_frag_common(efpobj=efpobj, ifr=ifr, topic='xyzabc') + + +def to_dict(efpobj, dtype='psi4'): + molrec = {} + + nfr = efpobj.get_frag_count() + fnat = efpobj.get_frag_atom_count() + frs = functools.reduce(lambda c, x: c + [c[-1] + x], fnat, + [0])[1:] # np.cumsum(fnat) https://stackoverflow.com/a/33034961 + nat = frs[-1] + + molrec['units'] = 'Bohr' + molrec['fix_com'] = True + molrec['fix_orientation'] = True + + atommajor = efpobj.get_atoms()['full_atoms'] + geom = [] + for at in atommajor: + xyz = [at['x'], at['y'], at['z']] + geom.extend(xyz) + molrec['geom'] = geom + molrec['elea'] = [-1] * nat + molrec['elez'] = [int(at['Z']) for at in atommajor] + molrec['elem'] = [at['symbol'] for at in atommajor] + molrec['mass'] = [at['mass'] for at in atommajor] + molrec['real'] = [True] * nat + molrec['elbl'] = ['_' + at['label'].lower() for at in atommajor] + + molrec['fragment_separators'] = frs[:-1] + molrec['fragment_charges'] = efpobj.get_frag_charge() + molrec['fragment_multiplicities'] = efpobj.get_frag_multiplicity() + + def _high_spin_sum(mult_list): + mm = 1 + for m in mult_list: + mm += m - 1 + return mm + + molrec['molecular_charge'] = sum(molrec['fragment_charges']) + molrec['molecular_multiplicity'] = _high_spin_sum(molrec['fragment_multiplicities']) + molrec['provenance'] = provenance_stamp(__name__ + '.' + sys._getframe().f_code.co_name) + + molrec['fragment_files'] = [fl.lower() for fl in efpobj.get_frag_name()] + molrec['hint_types'] = ['xyzabc'] * nfr + molrec['geom_hints'] = efpobj.get_frag_xyzabc() + + return qcel.molparse.to_schema(molrec, dtype=dtype) + + +def old_to_dict(efpobj): + pysys = {} + pysys['full_fragments'] = [] + + for fr in range(efpobj.get_frag_count()): + pysys['full_fragments'].append({ + 'coordinates_hint': efpobj.get_frag_xyzabc(fr), + 'efp_type': 'xyzabc', + 'fragment_file': efpobj.get_frag_name(fr).lower(), + }) + + #pysys['molecule'] = { + # 'fix_com': True, + # 'fix_orientation': True, + # 'fix_symmetry': 'c1', + # 'fragment_charges': [], + # 'fragment_multiplicities': [], + # 'fragment_types': [], + # 'fragments': [], + # 'full_atoms': [], + # #'input_units_to_au': 1.8897261328856432, + # 'name': 'default', + # 'input_units_to_au': 1.0} + # #'units': 'Bohr'} + pysys['molecule'] = {'input_units_to_au': efpobj.input_units_to_au} + + return pysys + + +# only wrapped to throw Py exceptions +core.efp.prepare = prepare +core.efp.compute = compute + +core.efp.add_potential = add_potential +core.efp.add_fragment = add_fragment +#core.efp.add_ligand = add_ligand +core.efp.get_opts = get_opts +core.efp.set_opts = set_opts +core.efp.get_frag_count = get_frag_count +core.efp.get_energy = get_energy +core.efp.get_gradient = get_gradient +core.efp.get_pairwise_energy = get_pairwise_energy +#core.efp.set_pairwise_energy = set_pairwise_energy +core.efp.print_pairwise_energies = print_pairwise_energies +core.efp.energy_summary = energy_summary +core.efp.nuclear_repulsion_energy = nuclear_repulsion_energy +core.efp.to_viz_dict = to_viz_dict +core.efp.to_dict = to_dict +core.efp.get_frag_name = get_frag_name +core.efp.get_frag_charge = get_frag_charge +core.efp.get_frag_multiplicity = get_frag_multiplicity +core.efp.set_frag_coordinates = set_frag_coordinates +core.efp.set_point_charges = set_point_charges +core.efp.set_point_charge_coordinates = set_point_charge_coordinates +core.efp.set_point_charge_values = set_point_charge_values +core.efp.get_point_charge_count = get_point_charge_count +core.efp.get_point_charge_coordinates = get_point_charge_coordinates +core.efp.get_point_charge_values = get_point_charge_values +core.efp.get_multipole_count = get_multipole_count +core.efp.get_multipole_coordinates = get_multipole_coordinates +core.efp.get_multipole_values = get_multipole_values +core.efp.get_induced_dipole_count = get_induced_dipole_count +core.efp.get_induced_dipole_coordinates = get_induced_dipole_coordinates +core.efp.get_induced_dipole_values = get_induced_dipole_values +core.efp.get_induced_dipole_conj_values = get_induced_dipole_conj_values +core.efp.get_frag_atom_count = get_frag_atom_count +core.efp.get_wavefunction_dependent_energy = get_wavefunction_dependent_energy +core.efp.set_periodic_box = set_periodic_box +core.efp.get_periodic_box = get_periodic_box +core.efp.get_frag_xyzabc = get_frag_xyzabc + +core.efp.get_frag_atoms = get_frag_atoms +core.efp.get_atoms = get_atoms +core.efp.geometry_summary = geometry_summary +core.efp.gradient_summary = gradient_summary + + +def process_units(molrec): + """From any (not both None) combination of `units` and + `input_units_to_au`, returns both quantities validated. The degree + of checking is unnecessary if coming from a molrec (prevalidated and + guaranteed to have "units"), but function is general-purpose. + + """ + units = molrec.get('units', None) + input_units_to_au = molrec.get('input_units_to_au', None) + + b2a = qcel.constants.bohr2angstroms + a2b = 1. / b2a + + def perturb_check(candidate, reference): + return (abs(candidate, reference) < 0.05) + + if units is None and input_units_to_au is not None: + if perturb_check(input_units_to_au, 1.): + funits = 'Bohr' + fiutau = input_units_to_au + elif perturb_check(input_units_to_au, a2b): + funits = 'Angstrom' + fiutau = input_units_to_au + else: + raise PyEFPSyntaxError("""No big perturbations to physical constants! {} !~= ({} or {})""".format( + input_units_to_au, 1.0, a2b)) + + elif units in ['Angstrom', 'Bohr'] and input_units_to_au is None: + funits = units + + if funits == 'Bohr': + fiutau = 1. + elif funits == 'Angstrom': + fiutau = a2b + + elif units in ['Angstrom', 'Bohr'] and input_units_to_au is not None: + expected_iutau = a2b if units == 'Angstrom' else 1. + + if perturn_check(input_units_to_au, expected_iutau): + funits = units + fiutau = input_units_to_au + else: + raise PyEFPSyntaxError("""No big perturbations to physical constants! {} !~= {}""".format( + input_units_to_au, expected_iutau)) + + else: + raise PyEFPSyntaxError('Insufficient information: {} & {}'.format(units, input_units_to_au)) + + return funits, fiutau + + +def from_dict(efp_init): + """Instantiate an EFP object from `efp_init`. + + Parameters + ---------- + efp_init : nested dict + Dictionary of prescribed format to specify EFP fragments (no QM hints). + + Returns + ------- + :py:class:`pylibefp.core.efp` + New EFP instance with fragments defined and finished off through + :py:func:`pylibefp.core.efp.prepare`. + + """ + efpobj = core.efp() + + units, input_units_to_au = process_units(efp_init) + + def hint_to_au(hint, htype, iutau): + if htype == 'xyzabc': + return [(h * iutau if idx < 3 else h) for idx, h in enumerate(hint)] + elif htype == 'points': + return [h * iutau for h in hint] + elif htype == 'atoms': + return [(h * iutau if idx % 4 != 0 else h) for idx, h in enumerate(hint)] + + for ifr, (fl, ht, gh) in enumerate(zip(efp_init['fragment_files'], efp_init['hint_types'], + efp_init['geom_hints'])): + efpobj.add_potential(fl, duplicates_ok=True) + efpobj.add_fragment(fl) + hint = hint_to_au(gh, ht, input_units_to_au) + efpobj.set_frag_coordinates(ifr, ht, hint) + + #efpobj.input_units_to_au = efp_init['input_units_to_au'] + efpobj.input_units_to_au = input_units_to_au + efpobj.prepare() + return efpobj + + +def provenance_stamp(routine: str) -> Dict[str, str]: + """Return dictionary satisfying QCSchema, + https://github.com/MolSSI/QCSchema/blob/master/qcschema/dev/definitions.py#L23-L41 + with PylibEFP's credentials for creator and version. The + generating routine's name is passed in through `routine`. + + """ + from pylibefp import __version__ + return {'creator': 'PylibEFP', 'version': __version__, 'routine': routine} diff --git a/python/core.cc b/python/core.cc index d2b5c5b7..572d62cc 100644 --- a/python/core.cc +++ b/python/core.cc @@ -36,6 +36,24 @@ std::string _efp_banner(efp* efp) { return str; } +efp_result _efp_prepare(efp* efp) { + enum efp_result res; + res = efp_prepare(efp); + return res; +} + +efp_result _efp_compute(efp* efp, int do_gradient) { + enum efp_result res; + res = efp_compute(efp, do_gradient); + return res; +} + +efp_result _efp_add_ligand(efp* efp, int ligand_index) { + enum efp_result res; + res = efp_add_ligand(efp, ligand_index); + return res; +} + py::tuple _efp_get_frag_name(efp* efp, size_t frag_idx) { enum efp_result res; char buffer[80]; @@ -51,7 +69,18 @@ efp_result _efp_set_frag_coordinates(efp* efp, size_t frag_idx, efp_coord_type c enum efp_result res; double* ccoords = NULL; - ccoords = new double[12]; // room for xyzabc (6), points (9), or rotmat (12) + // need to know how many atoms are in fragment for 'atoms' ctype + size_t n_atom = 0; + res = efp_get_frag_atom_count(efp, frag_idx, &n_atom); + + switch (ctype) { + case EFP_COORD_TYPE_ATOMS: + ccoords = new double[3*n_atom]; + break; + default: + ccoords = new double[12]; + break; + } double* pcoords = ccoords; for (auto itm : coord) *pcoords++ = itm.cast(); @@ -59,35 +88,6 @@ efp_result _efp_set_frag_coordinates(efp* efp, size_t frag_idx, efp_coord_type c return res; } -//SKP - -efp_result _efp_set_pairwise_energy(efp* efp, size_t n_frag, py::list pair_energy_list) { - std::vector pair_energies(n_frag); - - for (size_t i = 0; i < n_frag; ++i) { - py::dict py_energy = pair_energy_list[i]; - - pair_energies[i].electrostatic = py_energy["electrostatic"].cast(); - pair_energies[i].exchange_repulsion = py_energy["exchange_repulsion"].cast(); - pair_energies[i].polarization = py_energy["polarization"].cast(); - pair_energies[i].dispersion = py_energy["dispersion"].cast(); - pair_energies[i].total = py_energy["total"].cast(); - } - - return efp_set_pairwise_energy(efp, pair_energies.data()); -} - -efp_result _efp_compute_pairwise_energy_range(efp* efp, size_t frag_from, size_t frag_to) { - - return efp_compute_pairwise_energy_range_range(efp, frag_from, frag_to); - -} - -efp_result _efp_compute_two_body_crystal(efp *efp) { - - return efp_compute_two_body_crystal(efp); -} - efp_result _efp_set_point_charge_values(efp* efp, size_t n_ptc, py::list ptc) { enum efp_result res; @@ -180,7 +180,11 @@ py::list _efp_get_pairwise_energy(efp* efp, size_t n_frag) { energy["exchange_repulsion"] = pair_energies[i].exchange_repulsion; energy["polarization"] = pair_energies[i].polarization; energy["dispersion"] = pair_energies[i].dispersion; - energy["total"] = pair_energies[i].total; + energy["charge_penetration"] = pair_energies[i].charge_penetration; + + double total = pair_energies[i].electrostatic + pair_energies[i].exchange_repulsion + + pair_energies[i].polarization + pair_energies[i].dispersion + pair_energies[i].charge_penetration; + energy["total"] = total; py_energies.append(energy); } @@ -542,7 +546,7 @@ void _clean(efp* efp) { PYBIND11_MODULE(core, m) { m.doc() = "Python wrapping of parallel implementation of the Effective Fragment Potential (EFP) method"; - m.attr("__copyright__") = py::str("Copyright (c) 2017-2019 The Psi4 Developers"); + m.attr("__copyright__") = py::str("Copyright (c) 2017-2024 The Psi4 Developers, 2024-2025 The LibEFP Developers"); py::exception(m, "libefpException"); // clang-format off @@ -567,13 +571,13 @@ PYBIND11_MODULE(core, m) { .value("EFP_TERM_AI_DISP", EFP_TERM_AI_DISP, "Ab initio/EFP dispersion, reserved for future.") .value("EFP_TERM_AI_XR", EFP_TERM_AI_XR, "Ab initio/EFP exchange repulsion, reserved for future.") .value("EFP_TERM_AI_CHTR", EFP_TERM_AI_CHTR, "Ab initio/EFP charge transfer, reserved for future.") - .value("EFP_TERM_QQ", EFP_TERM_QQ, "MM-like charge-charge coulomb interaction") // SKP + .value("EFP_TERM_QQ", EFP_TERM_QQ, "MM-like charge-charge coulomb interaction") // SKP .value("EFP_TERM_LJ", EFP_TERM_LJ, "MM-like Lennard-Jones interaction") // SKP - .value("EFP_TERM_AI_QQ", EFP_TERM_AI_QQ, "QM/MM coulomb interaction with MM charges") // SKP + .value("EFP_TERM_AI_QQ", EFP_TERM_AI_QQ, "QM/MM coulomb interaction with MM charges") // SKP .export_values(); // ============= SKP addition ========================== // py::enum_(m, "efp_special_term", py::arithmetic(), "Flags to specify EFP energy terms for a special fragment") - .value("EFP_SPEC_TERM_ELEC", EFP_SPEC_TERM_ELEC, "EFP/EFP electrostatics.") + .value("EFP_SPEC_TERM_ELEC", EFP_SPEC_TERM_ELEC, "EFP/EFP electrostatics.") .value("EFP_SPEC_TERM_POL", EFP_SPEC_TERM_POL, "EFP/EFP polarization.") .value("EFP_SPEC_TERM_DISP", EFP_SPEC_TERM_DISP, "EFP/EFP dispersion.") .value("EFP_SPEC_TERM_XR", EFP_SPEC_TERM_XR, "EFP/EFP exchange repulsion.") @@ -603,6 +607,7 @@ PYBIND11_MODULE(core, m) { .value("EFP_COORD_TYPE_XYZABC", EFP_COORD_TYPE_XYZABC, "Coordinates of center of mass of a fragment and Euler angles.") .value("EFP_COORD_TYPE_POINTS", EFP_COORD_TYPE_POINTS, "Coordinates of three points belonging to a fragment.") .value("EFP_COORD_TYPE_ROTMAT", EFP_COORD_TYPE_ROTMAT, "Coordinates of fragment center of mass and its rotation matrix.") + .value("EFP_COORD_TYPE_ATOMS", EFP_COORD_TYPE_ATOMS, "Coordinates of all fragment atoms.") .export_values(); @@ -611,25 +616,37 @@ PYBIND11_MODULE(core, m) { .value("EFP_POL_DRIVER_DIRECT", EFP_POL_DRIVER_DIRECT, "Direct solution of polarization equations.") .export_values(); + py::enum_(m, "efp_symm_frag", "Specifies which fragments are considered identical by symmetry") + .value("EFP_SYMM_FRAG_FRAG", EFP_SYMM_FRAG_FRAG, "All same fragments are symmetry-identical (default.") + .value("EFP_SYMM_FRAG_LIST", EFP_SYMM_FRAG_LIST, "Symmetric fragments are given in a list (not implemented).") + .export_values(); + py::class_(m, "efp_opts", "Options controlling EFP computation") .def(py::init()) .def_readwrite("terms", &efp_opts::terms, "Specifies which energy terms to compute.") + .def_readwrite("special_terms", &efp_opts::special_terms, "Terms for a special fragment - typically QM or ML fragment") // SKP .def_readwrite("disp_damp", &efp_opts::disp_damp, "Dispersion damping type (see #efp_disp_damp).") .def_readwrite("elec_damp", &efp_opts::elec_damp, "Electrostatic damping type (see #efp_elec_damp).") .def_readwrite("pol_damp", &efp_opts::pol_damp, "Polarization damping type (see #efp_pol_damp).") .def_readwrite("pol_driver", &efp_opts::pol_driver, "Driver used to find polarization induced dipoles.") .def_readwrite("enable_pbc", &efp_opts::enable_pbc, "Enable periodic boundary conditions if nonzero.") + .def_readwrite("enable_elpot", &efp_opts::enable_elpot, "Enable switching off elpot contribution for custom torch gradient.") .def_readwrite("enable_cutoff", &efp_opts::enable_cutoff, "Enable frag-fraginteraction cutoff if nonzero.") .def_readwrite("swf_cutoff", &efp_opts::swf_cutoff, "Cutoff distance for frag-frag interactions.") - .def_readwrite("special_terms", &efp_opts::special_terms, "Terms for a special fragment - typically QM or ML fragment") // SKP + .def_readwrite("xr_cutoff", &efp_opts::xr_cutoff, "Cutoff distance for exchange-repulsion calculations.") .def_readwrite("enable_pairwise", &efp_opts::enable_pairwise, "Enable ligand-fragment energy decomposition from total system") // SKP + .def_readwrite("ligand", &efp_opts::ligand, "Ligand number") // SKP + .def_readwrite("special_fragment", &efp_opts::special_fragment, "Index of a special (QM or ML) fragment") // SKP .def_readwrite("symmetry", &efp_opts::symmetry, "Sets system symmetry option") // SKP - .def_readwrite("ligand", &efp_opts::ligand, "Ligand number") // SKP - .def_readwrite("special_fragment", &efp_opts::special_fragment, "Index of a special (QM or ML) fragment"); // SKP - + .def_readwrite("symm_frag", &efp_opts::symm_frag, "Specifies symmetric elements of the crystal lattice. Default each unique fragment") + .def_readwrite("update_params", &efp_opts::update_params, "Enables updating (shifting) library fragment parameters to match fragment geometry. Default 0 (no update). Not implemented.") + .def_readwrite("update_params_cutoff", &efp_opts::update_params_cutoff, "Cutoff when updating parameters is \"safe\". Default 0.0 (never safe).") + .def_readwrite("print", &efp_opts::print, "Level of print out."); + py::class_(m, "efp_energy", "EFP energy terms") .def(py::init()) .def_readwrite("electrostatic", &efp_energy::electrostatic, "EFP/EFP electrostatic energy.") + .def_readwrite("ai_electrostatic", &efp_energy::ai_electrostatic, "AI/EFP electrostatic energy.") .def_readwrite("charge_penetration", &efp_energy::charge_penetration, "Charge penetration energy from" "overlap-based electrostatic damping." "Zero if overlap-based damping is turned" @@ -641,22 +658,59 @@ PYBIND11_MODULE(core, m) { "Polarization is computed self-consist-" "ently so it can't be separated into" "EFP/EFP and AI/EFP parts.") + .def_readwrite("exs_polarization", &efp_energy::exs_polarization, "Separate storage for polarization corresponding to the excited/correlated state." + "Relevant for excited state QM/EFP calculations.") + .def_readwrite("ai_polarization", &efp_energy::ai_polarization, "Polarization energy storage for pairwise AI/EFP analysis.") .def_readwrite("dispersion", &efp_energy::dispersion, "EFP/EFP dispersion energy.") .def_readwrite("ai_dispersion", &efp_energy::ai_dispersion, "AI/EFP dispersion energy.") .def_readwrite("exchange_repulsion", &efp_energy::exchange_repulsion, "EFP/EFP exchange-repulsion energy.") - .def_readwrite("qq", &efp_energy::qq, "EFP/EFP charge-charge energy.") - .def_readwrite("lj", &efp_energy::lj, "EFP/EFP lennard-jones energy.") - .def_readwrite("total", &efp_energy::total, "Sum of all the above energy terms."); + .def_readwrite("qq", &efp_energy::qq, "EFP/EFP charge-charge energy.") + .def_readwrite("lj", &efp_energy::lj, "EFP/EFP lennard-jones energy.") + .def_readwrite("total", &efp_energy::total, "Sum of all the above energy terms."); py::class_(m, "efp_atom", "EFP atom info") .def(py::init()) - //.def_readonly("label", &efp_atom::label, "Atom label.") // char label[32] +// .def_readwrite("label", &efp_atom::label, "Atom label.") // char label[32] .def_readwrite("x", &efp_atom::x, "X coordinate of atom position.") .def_readwrite("y", &efp_atom::y, "Y coordinate of atom position.") .def_readwrite("z", &efp_atom::z, "Z coordinate of atom position.") + .def_readwrite("gx", &efp_atom::gx, "X component of gradient.") + .def_readwrite("gy", &efp_atom::gy, "Y component of gradient.") + .def_readwrite("gz", &efp_atom::gz, "Z component of gradient.") .def_readwrite("mass", &efp_atom::mass, "Atom mass.") - .def_readwrite("znuc", &efp_atom::znuc, "Nuclear charge."); - // clang-format on + .def_readwrite("znuc", &efp_atom::znuc, "Nuclear charge.") + .def_readwrite("mm_charge", &efp_atom::mm_charge, "Classical charge.") + .def_readwrite("sigma", &efp_atom::sigma, "vdW parameter.") + .def_readwrite("epsilon", &efp_atom::epsilon, "vdW parameter."); +// .def_readwrite("ff_label", &efp_atom::ff_label, "Force field atom type."); + +/** + py::class_(m, "efp_mult_pt", "EFP Multipole point for working with external programs") + .def(py::init()) + .def_readwrite("x", &efp_mult_pt::x, "X coordinate.") + .def_readwrite("y", &efp_mult_pt::y, "Y coordinate.") + .def_readwrite("z", &efp_mult_pt::z, "Z coordinate.") + .def_readwrite("znuc", &efp_mult_pt::znuc, "Nuclear charge.") + .def_readwrite("monopole", &efp_mult_pt::monopole, "Monopole.") + .def_readwrite("dipole", &efp_mult_pt::dipole, "Dipole.") // array! + .def_readwrite("quadrupole", &efp_mult_pt::quadrupole, "Quadrupole.") + .def_readwrite("octupole", &efp_mult_pt::octupole, "Octupole.") + .def_readwrite("rank", &efp_mult_pt::rank, "Highest non-zero multipole: 0 - monopole, 1 - dipole, 2 - quad, 3 - oct.") + .def_readwrite("screen0", &efp_mult_pt::screen0, "AI-EFP screening parameter.") + .def_readwrite("if_screen", &efp_mult_pt::if_screen, "If screen0 parameter exists and meaningful."); + + py::class_(m, "efp_pol_pt", "EFP polarizability point for working with external programs") + .def(py::init()) + .def_readwrite("x", &efp_pol_pt::x, "X coordinate.") + .def_readwrite("y", &efp_pol_pt::y, "Y coordinate.") + .def_readwrite("z", &efp_pol_pt::z, "Z coordinate.") + .def_readwrite("indip", &efp_pol_pt::indip, "Induced dipole.") // array! + .def_readwrite("indipconj", &efp_pol_pt::indipconj, "Conjugated induced dipole.") // array! + .def_readwrite("indip_gs", &efp_pol_pt::indip_gs, "Induced dipole of the ground electronic state.") // array! + .def_readwrite("indipconj_gs", &efp_pol_pt::indipconj_gs, "Conjugated induced dipole of the ground electronic state.") // array! + .def_readwrite("ai_field", &efp_pol_pt::ai_field, "Field due to QM wavefunction."); // array! +// clang-format on +**/ py::class_>(m, "efp", py::dynamic_attr(), "Main libefp opaque structure") // dynamic_attr for stashing input_units_to_au @@ -666,6 +720,7 @@ PYBIND11_MODULE(core, m) { .def("_efp_get_opts", &efp_get_opts, "Gets currently set computation options") .def("_efp_add_potential", &efp_add_potential, "Wrapped adds EFP potential from full file path") .def("_efp_add_fragment", &efp_add_fragment, "Wrapped adds a new fragment to the EFP subsystem") + .def("_efp_add_ligand", &efp_add_ligand, "Wrapped adds a a ligand fragment to the system") .def("_efp_prepare", &efp_prepare, "Wrapped prepares the calculation") .def("set_electron_density_field_fn", &_efp_set_electron_density_field_fn, "Sets the callback function which computes electric field from electrons in ab initio subsystem") @@ -723,10 +778,8 @@ PYBIND11_MODULE(core, m) { .def("_efp_get_energy", &efp_get_energy, "Gets computed energy components") .def("_efp_get_gradient", &_efp_get_gradient, "Gets computed EFP energy gradient") .def("_efp_get_pairwise_energy", &_efp_get_pairwise_energy, "Gets pairwise energies") - .def("_efp_set_pairwise_energy", &_efp_set_pairwise_energy, "Sets pairwise energies") - .def("_efp_compute_pairwise_energy_range", &_efp_compute_pairwise_energy_range, "Computes pairwise_energy_range") - .def("_efp_compute_two_body_crystal", &_efp_compute_two_body_crystal, "Computes two body crystal for symmetric systems") - .def("_efp_get_frag_count", &_efp_get_frag_count, "Gets the number of fragments in this computation") + .def("_efp_set_symmlist", &efp_set_symmlist, "Prepares information for computing symmetric crystals") + .def("_efp_get_frag_count", &_efp_get_frag_count, "Gets the number of fragments in this computation") .def("_efp_get_frag_name", &_efp_get_frag_name, "Gets the name of the specified effective fragment") .def("_efp_get_frag_atom_count", &_efp_get_frag_atom_count, "Gets the number of atoms on fragment") .def("_efp_get_frag_atoms", &_efp_get_frag_atoms, diff --git a/python/py.sh b/python/py.sh index a1f4ce40..e515b664 100755 --- a/python/py.sh +++ b/python/py.sh @@ -2,7 +2,7 @@ rm -rf build mkdir build cd build -cmake -DCMAKE_INSTALL_PREFIX=$LIBEFP_DIR/installed -DCMAKE_PREFIX_PATH="$CONDA_PREFIX;$LIBEFP_DIR/installed" .. +cmake -DCMAKE_INSTALL_PREFIX=$LIBEFP_DIR -DCMAKE_PREFIX_PATH="$CONDA_PREFIX;$LIBEFP_DIR" .. make VERBOSE=1 make install diff --git a/python/wrapper.py b/python/wrapper.py index 5e9deb5a..80d44f46 100644 --- a/python/wrapper.py +++ b/python/wrapper.py @@ -101,16 +101,9 @@ def compute(efpobj, do_gradient=False): # res = efpobj._efp_compute(do_gradient) _result_to_error(res) + # If pairwise is enabled if efpobj.get_opts().get("enable_pairwise", False): - #if efpobj.get_opts().get("symmetry", False): - # If symmetry, use two-body crystal - #res2 = efpobj._efp_compute_two_body_crystal() - #else: - # If not, two-body range - # nfrag = efpobj.get_frag_count() - # res2 = efpobj._efp_compute_pairwise_energy_range(0, nfrag) - #_result_to_error(res2) efpobj.print_pairwise_energies() # do this for enable_pairwise=true @@ -153,13 +146,11 @@ def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): for lst in [paths, library_paths]: for spth in '@libefp_FRAGLIB_DIRS@'.split(';'): lst.append(spth) - lst.append('/scratch/gilbreth/paulsk/backup/branch_pylib/libefp/fraglib') + #lst.append('/scratch/gilbreth/paulsk/backup/branch_pylib/libefp/fraglib') #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib') #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib/databases') #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib/databases') - #lst.append('/scratch/gilbreth/paulsk/backup/libefp/installed/share/libefp/fraglib') - #lst.append('/scratch/gilbreth/paulsk/backup/libefp/installed/share/libefp/fraglib/databases') #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib/databases') for spth in '@FRAGLIB_DATADIRS@'.split(';'): @@ -232,6 +223,23 @@ def add_fragment(efpobj, fragments): _result_to_error(res, frag) +#def add_ligand(efpobj, ligand_index): +# """Adds ligand to `efpobj` +# +# Parameters +# ---------- +# ligand_index : index of the ligand +# +# Returns +# ------- +# None +# +# """ +# res = efpobj._efp_add_ligand(ligand_index) +# _result_to_error(res) + + + def get_opts(efpobj, label='libefp'): """Returns the options state of *efpobj* as a dictionary. @@ -290,10 +298,18 @@ def get_opts(efpobj, label='libefp'): dopts['enable_pbc'] = bool(opts.enable_pbc) dopts['enable_cutoff'] = bool(opts.enable_cutoff) dopts['swf_cutoff'] = opts.swf_cutoff + dopts['xr_cutoff'] = opts.xr_cutoff dopts['special_fragment'] = opts.special_fragment dopts['enable_pairwise'] = bool(opts.enable_pairwise) # SKP dopts['symmetry'] = bool(opts.symmetry) # SKP + + dopts['symm_frag'] = { + core.EFP_SYMM_FRAG_FRAG: 'frag', + core.EFP_SYMM_FRAG_LIST: 'list', + }[opts.symm_frag] + dopts['ligand'] = opts.ligand # SKP + dopts['print'] = opts.print dopts['pol_driver'] = { core.EFP_POL_DRIVER_ITERATIVE: 'iterative', @@ -339,9 +355,10 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): # warn on stray dopts keys allowed = [ 'elec', 'pol', 'disp', 'xr', 'elec_damp', 'pol_damp', 'disp_damp', 'enable_pbc', 'enable_cutoff', 'swf_cutoff', - 'pol_driver', 'ai_elec', 'ai_pol', 'enable_pairwise', 'ligand', 'symmetry', + 'xr_cutoff', + 'pol_driver', 'ai_elec', 'ai_pol', 'enable_pairwise', 'ligand', 'symmetry', 'symm_frag', 'spec_elec', 'spec_pol', 'spec_disp', 'spec_xr', 'spec_qq', 'ai_qq', 'qq', 'lj', 'special_fragment', - 'spec_qq', 'spec_lj'# SKP + 'spec_qq', 'spec_lj', 'print' ] label_allowed = [_lbtl[label].get(itm, itm) for itm in allowed] for key in dopts.keys(): @@ -352,21 +369,24 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): # prepare base options state for dopts opts = core.efp_opts() + # default values of parameters if append == 'libefp': - pass + opts.ligand = -100 + opts.special_fragment = -100 + opts.terms |= core.efp_term.EFP_TERM_ELEC + opts.terms |= core.efp_term.EFP_TERM_POL + opts.terms |= core.efp_term.EFP_TERM_DISP + opts.terms |= core.efp_term.EFP_TERM_XR elif append == 'psi': opts.terms |= core.efp_term.EFP_TERM_ELEC opts.terms |= core.efp_term.EFP_TERM_POL opts.terms |= core.efp_term.EFP_TERM_DISP opts.terms |= core.efp_term.EFP_TERM_XR - opts.terms |= core.efp_term.EFP_TERM_QQ # SKP - opts.terms |= core.efp_term.EFP_TERM_LJ # SKP opts.elec_damp = core.EFP_ELEC_DAMP_SCREEN opts.pol_damp = core.EFP_POL_DAMP_TT opts.disp_damp = core.EFP_DISP_DAMP_OVERLAP opts.terms |= core.efp_term.EFP_TERM_AI_ELEC opts.terms |= core.efp_term.EFP_TERM_AI_POL - opts.terms |= core.efp_term.EFP_TERM_AI_QQ # SKP #elif append == 'qchem': # # q-chem and psi4 have different defaults for at least this option # opts.disp_damp = core.EFP_DISP_DAMP_TT @@ -546,6 +566,7 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): else: _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + topic = _lbtl[label].get('symmetry', 'symmetry') if topic in dopts: if dopts[topic] in trues: @@ -554,8 +575,20 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): opts.symmetry = 0 else: _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) -# PAIRWISE - SKP + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + + topic = _lbtl[label].get('symm_frag', 'symm_frag') + if topic in dopts: + try: + opts.symm_frag = { + 'frag': core.EFP_SYMM_FRAG_FRAG, + 'list': core.EFP_SYMM_FRAG_LIST, + }[dopts[topic].lower()] + except KeyError: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [frag/list] {}: {}'.format(topic, dopts[topic])) + + # PAIRWISE - SKP topic = _lbtl[label].get('enable_pairwise', 'enable_pairwise') if topic in dopts: if dopts[topic] in trues: @@ -599,6 +632,14 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): if topic in dopts: opts.swf_cutoff = float(dopts[topic]) + topic = _lbtl[label].get('xr_cutoff', 'xr_cutoff') + if topic in dopts: + opts.xr_cutoff = float(dopts[topic]) + + topic = _lbtl[label].get('print', 'print') + if topic in dopts: + opts.print = int(dopts[topic]) + topic = _lbtl[label].get('pol_driver', 'pol_driver') if topic in dopts: try: @@ -644,11 +685,25 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): # topic = _lbtl[label].get('ai_disp', 'ai_disp') # topic = _lbtl[label].get('ai_xr', 'ai_xr') # topic = _lbtl[label].get('ai_chtr', 'ai_chtr') - + +# set some defaults + if opts.xr_cutoff == 0 and opts.enable_cutoff == 1: + opts.xr_cutoff = opts.swf_cutoff + + # set computed options state res = efpobj._efp_set_opts(opts) _result_to_error(res) + # we need to initialize the ligand structure if pairwise calcs are requested + # do it here - there is no other time before compute starts... + if opts.enable_pairwise == 1 and opts.ligand >= 0: + efpobj._efp_add_ligand(opts.ligand) + + # prepares symmetry info for symmetric crystal calculations + res = efpobj._efp_set_symmlist() + _result_to_error(res) + return efpobj.get_opts(label=label) @@ -674,8 +729,8 @@ def set_periodic_box(efpobj, xyz, alpha=90.0, beta=90.0, gamma=90.0): Parameters alpha, beta, and gamma added. """ - if len(xyz) != 3: - raise PyEFPSyntaxError('Invalid periodic box setting: {}'.format(xyz)) + #if len(xyz) != 3: + # raise PyEFPSyntaxError('Invalid periodic box setting: {}'.format(xyz)) res = efpobj._efp_set_periodic_box(xyz[0], xyz[1], xyz[2], alpha, beta, gamma) _result_to_error(res) @@ -773,12 +828,6 @@ def get_energy(efpobj, label='libefp'): 'disp': ene.dispersion, 'qq': ene.qq, 'lj':ene.lj, - 'spec_elec':ene.electrostatic, - 'spec_pol':ene.polarization, - 'spec_disp':ene.dispersion, - 'spec_xr':ene.exchange_repulsion, - 'spec_qq':ene.qq, - 'spec_lj':ene.lj, } return _rekey(energies, label=label) @@ -792,6 +841,12 @@ def print_pairwise_energies(efpobj): energies = efpobj._efp_get_pairwise_energy(nfrag) + ene_elec = 0.0 + ene_pol = 0.0 + ene_disp = 0.0 + ene_xr = 0.0 + ene_chpn = 0.0 + ene_total = 0.0 for i in range(nfrag): if i == ligand_index: continue @@ -802,9 +857,28 @@ def print_pairwise_energies(efpobj): print(f"{'POLARIZATION':>40} {energy['polarization']:16.10f}") print(f"{'DISPERSION':>40} {energy['dispersion']:16.10f}") print(f"{'EXCHANGE REPULSION':>40} {energy['exchange_repulsion']:16.10f}") + print(f"{'CHARGE PENETRATION':>40} {energy['charge_penetration']:16.10f}") print(f"{'TOTAL':>40} {energy['total']:16.10f}") print("------------------------------------------------------------") + ene_elec += energy['electrostatic'] + ene_pol += energy['polarization'] + ene_disp += energy['dispersion'] + ene_xr += energy['exchange_repulsion'] + ene_chpn += energy['charge_penetration'] + ene_total += energy['total'] + + print(f"\nTOTAL PAIRWISE ENERGY OF LIGAND {ligand_index}") + print(f"{'ELECTROSTATIC':>40} {ene_elec:16.10f}") + print(f"{'POLARIZATION':>40} {ene_pol:16.10f}") + print(f"{'DISPERSION':>40} {ene_disp:16.10f}") + print(f"{'EXCHANGE REPULSION':>40} {ene_xr:16.10f}") + print(f"{'CHARGE PENETRATION':>40} {ene_chpn:16.10f}") + print(f"{'TOTAL':>40} {ene_total:16.10f}") + print("------------------------------------------------------------") + print("------------------------------------------------------------") + + def get_frag_count(efpobj): """Gets the number of fragments in `efpobj` computation. @@ -1161,25 +1235,25 @@ def get_pairwise_energy(efpobj): #SKP -def set_pairwise_energy(efpobj, pair_energies): - """Sets pairwise energy values per fragment. - - Parameters - ---------- - pair_energies : list of dict - A list of dicts with energy components for each fragment, where each dict includes: - 'electrostatic', 'exchange_repulsion', 'polarization', 'dispersion', and 'total'. - - Returns - ------- - None - """ - nfrag = efpobj.get_frag_count() - if len(pair_energies) != nfrag: - raise PyEFPSyntaxError(f"Expected {nfrag} energy entries, got {len(pair_energies)}") - - res = efpobj._efp_set_pairwise_energy(nfrag, pair_energies) - _result_to_error(res) +#def set_pairwise_energy(efpobj, pair_energies): +# """Sets pairwise energy values per fragment. +# +# Parameters +# ---------- +# pair_energies : list of dict +# A list of dicts with energy components for each fragment, where each dict includes: +# 'electrostatic', 'exchange_repulsion', 'polarization', 'dispersion', and 'total'. +# +# Returns +# ------- +# None +# """ +# nfrag = efpobj.get_frag_count() +# if len(pair_energies) != nfrag: +# raise PyEFPSyntaxError(f"Expected {nfrag} energy entries, got {len(pair_energies)}") +# +# res = efpobj._efp_set_pairwise_energy(nfrag, pair_energies) +# _result_to_error(res) def gradient_summary(efpobj): """Gets the computed per-fragment EFP energy gradient of `efpobj`. @@ -1416,10 +1490,11 @@ def set_frag_coordinates(efpobj, ifr, ctype, coord): 'xyzabc': core.EFP_COORD_TYPE_XYZABC, 'points': core.EFP_COORD_TYPE_POINTS, 'rotmat': core.EFP_COORD_TYPE_ROTMAT, + 'atoms': core.EFP_COORD_TYPE_ATOMS, }[ctype.lower()] except KeyError: _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, - 'invalid value for [xyzabc/points/rotmat] {}: {}'.format('ctype', ctype)) + 'invalid value for [xyzabc/points/rotmat/atoms] {}: {}'.format('ctype', ctype)) efpobj.input_units_to_au = 1.0 res = efpobj._efp_set_frag_coordinates(ifr, ctype, coord) @@ -1808,13 +1883,14 @@ def old_to_dict(efpobj): core.efp.add_potential = add_potential core.efp.add_fragment = add_fragment +#core.efp.add_ligand = add_ligand core.efp.get_opts = get_opts core.efp.set_opts = set_opts core.efp.get_frag_count = get_frag_count core.efp.get_energy = get_energy core.efp.get_gradient = get_gradient core.efp.get_pairwise_energy = get_pairwise_energy -core.efp.set_pairwise_energy = set_pairwise_energy +#core.efp.set_pairwise_energy = set_pairwise_energy core.efp.print_pairwise_energies = print_pairwise_energies core.efp.energy_summary = energy_summary core.efp.nuclear_repulsion_energy = nuclear_repulsion_energy @@ -1924,6 +2000,8 @@ def hint_to_au(hint, htype, iutau): return [(h * iutau if idx < 3 else h) for idx, h in enumerate(hint)] elif htype == 'points': return [h * iutau for h in hint] + elif htype == 'atoms': + return [(h * iutau if idx % 4 != 0 else h) for idx, h in enumerate(hint)] for ifr, (fl, ht, gh) in enumerate(zip(efp_init['fragment_files'], efp_init['hint_types'], efp_init['geom_hints'])): diff --git a/setup.sh b/setup.sh index 68482308..19cb31c0 100644 --- a/setup.sh +++ b/setup.sh @@ -1,33 +1,33 @@ -#!/bin/csh +#!/bin/zsh -setenv TORCH_SWITCH OFF +export TORCH_SWITCH=OFF -#setenv LIBEFP_DIR "/depot/lslipche/data/skp/torch_skp_branch/libefp" -setenv LIBEFP_DIR "/scratch/gilbreth/paulsk/backup/branch_pylib/libefp" -setenv PYTHONPATH "$LIBEFP_DIR/installed/lib64/" +export LIBEFP_DIR="/Users/lyuda/LIBEFP/libefp_skp_may2025" +export INSTALLATION_DIR="$LIBEFP_DIR" -if ("$TORCH_SWITCH" == "ON") then +#export PYTHONPATH "$LIBEFP_DIR/installed/lib64/" + +if [[ "$TORCH_SWITCH" == "ON" ]] then # Set the installation directory for LibTorch - setenv CONDA_PREFIX "/apps/spack/gilbreth/apps/anaconda/2020.11-py38-gcc-4.8.5-djkvkvk/etc/profile.d/conda.csh" - setenv TORCH_INSTALLED_DIR "/depot/lslipche/data/skp/libtorch" - setenv LIBTORCH_INCLUDE_DIRS "$TORCH_INSTALLED_DIR/include/;$TORCH_INSTALLED_DIR/include/torch/csrc/api/include" - #setenv PYTHON_REQS "/apps/spack/gilbreth/apps/anaconda/2020.11-py38-gcc-4.8.5-djkvkvk/etc/profile.d/conda.csh;$LIBEFP_DIR/python/../installed;$TORCH_INSTALLED_DIR" - setenv TORCHANI_DIR "$LIBEFP_DIR/efpmd/torch" - + export TORCH_INSTALLED_DIR="" + export LIBTORCH_INCLUDE_DIRS="$TORCH_INSTALLED_DIR/include/;$TORCH_INSTALLED_DIR/include/torch/csrc/api/include" + export TORCHANI_DIR="$LIBEFP_DIR/efpmd/torch" + echo "Environment variables set for Torch integration:" echo "LIBEFP_DIR=$LIBEFP_DIR" + echo "INSTALLATION_DIR=$INSTALLATION_DIR" echo "TORCH_INSTALLED_DIR=$TORCH_INSTALLED_DIR" echo "LIBTORCH_INCLUDE_DIRS=$LIBTORCH_INCLUDE_DIRS" echo "TORCHANI_DIR=$TORCHANI_DIR" - echo "PYTHON_REQS=$PYTHON_REQS" else - unsetenv LIBTORCH_INCLUDE_DIRS - unsetenv TORCH_INSTALLED_DIR - unsetenv TORCHANI_DIR + unset LIBTORCH_INCLUDE_DIRS + unset TORCH_INSTALLED_DIR + unset TORCHANI_DIR echo "Torch integration is disabled. Only basic environment variables are set:" echo "LIBEFP_DIR=$LIBEFP_DIR" -endif + echo "INSTALLATION_DIR=$INSTALLATION_DIR" +fi echo "TORCH_SWITCH=$TORCH_SWITCH" diff --git a/src/efp.c b/src/efp.c index cb673403..600e772c 100644 --- a/src/efp.c +++ b/src/efp.c @@ -108,7 +108,7 @@ set_coord_points(struct frag *frag, const double *coord) static enum efp_result set_coord_atoms(struct frag *frag, const double *coord) { - int natoms = frag->n_atoms; + size_t natoms = frag->n_atoms; //double BOHR_RADIUS = 0.52917721092; //printf("\nCOORDINATES IN set_coord_atoms\n"); //for (size_t i=0; in_frag; i++) { - if (efp->opts.print > 1) + if (efp->opts.print > 2) print_frag_info(efp, i); if ((res = check_frag_params(&efp->opts, efp->frags + i))) { efp_log("check_params() failure"); @@ -668,20 +668,12 @@ compute_two_body_range(struct efp *efp, size_t frag_from, size_t frag_to, } } -EFP_EXPORT enum efp_result -efp_compute_pairwise_energy_range_range(struct efp *efp, size_t frag_from, size_t frag_to) -{ - compute_two_body_range(efp, frag_from, frag_to, NULL); - return EFP_RESULT_SUCCESS; -} - -EFP_EXPORT enum efp_result +static void compute_two_body_crystal(struct efp *efp) { double e_elec = 0.0, e_disp = 0.0, e_xr = 0.0, e_cp = 0.0, e_elec_tmp = 0.0, e_disp_tmp = 0.0; // no parallelization int nsymm = efp->nsymm_frag; - printf("Inside compute_two_body_crystal()\n\n"); size_t *unique_frag = (size_t *)calloc(nsymm, sizeof(size_t)); unique_symm_frag(efp, unique_frag); @@ -690,12 +682,12 @@ compute_two_body_crystal(struct efp *efp) for (size_t k = 0; k < nsymm; k++) { size_t i = unique_frag[k]; - printf("unique_frag %16.10lf\n",unique_frag[k]); - struct frag *frag = efp->frags + i; + // printf("unique_frag %zu\n",unique_frag[k]); + struct frag *frag = efp->frags + i; // scaling factor that tells how many fragments like this are in the system size_t factor = nsymm_frag[k]; - printf("nsymm_frag = %16.10lf\n",factor); + // printf("nsymm_frag = %zu\n",factor); for (size_t fr_j=0; fr_jn_frag; fr_j++){ if ( fr_j != i && !efp_skip_frag_pair(efp, i, fr_j)) { @@ -773,15 +765,6 @@ compute_two_body_crystal(struct efp *efp) efp->energy.dispersion += e_disp/2; efp->energy.exchange_repulsion += e_xr/2; efp->energy.charge_penetration += e_cp/2; - - return EFP_RESULT_SUCCESS; -} - -EFP_EXPORT enum efp_result -efp_compute_two_body_crystal(struct efp *efp) -{ - compute_two_body_crystal(efp); - return EFP_RESULT_SUCCESS; } EFP_EXPORT enum efp_result @@ -1724,11 +1707,14 @@ efp_compute(struct efp *efp, int do_gradient) //efp->do_gradient = do_gradient; efp->do_gradient = 1; - if (efp_counter == 0) - if ((res = check_params(efp))) { + if (efp_counter == 0) { + if ((res = check_params(efp))) { efp_log("check_params() failure"); return res; - } + } + if (efp->opts.print > 2) + print_opts(&efp->opts); + } memset(&efp->energy, 0, sizeof(efp->energy)); memset(&efp->stress, 0, sizeof(efp->stress)); @@ -1745,11 +1731,8 @@ efp_compute(struct efp *efp, int do_gradient) efp_balance_work(efp, compute_two_body_range, NULL); } else { // high-symmetry crystals - if ((res = compute_two_body_crystal(efp))) { - efp_log("compute_two_body_crystal() failure"); - return res; - } - } + compute_two_body_crystal(efp); + } if ((res = efp_compute_pol(efp))) { efp_log("efp_compute_pol() failure"); @@ -2778,16 +2761,6 @@ efp_get_pairwise_energy(struct efp *efp, struct efp_energy *pair_energies){ return EFP_RESULT_SUCCESS; } -EFP_EXPORT enum efp_result -efp_set_pairwise_energy(struct efp *efp, struct efp_energy *pair_energies) -{ - assert(efp); - assert(pair_energies); - - memcpy(efp->pair_energies, pair_energies, efp->n_frag * sizeof(struct efp_energy)); - return EFP_RESULT_SUCCESS; -} - EFP_EXPORT enum efp_result efp_set_symmlist(struct efp *efp) { @@ -2888,35 +2861,6 @@ efp_get_nsymm_frag(struct efp *efp, size_t *nsymm_frag){ return EFP_RESULT_SUCCESS; } -void -unique_symm_frag(struct efp *efp, size_t *unique_frag){ - //printf("\n Symmetry-unique fragments \n"); - int n = 0; - int i = 0; - do { - if (efp->symmlist[i] > n) { - unique_frag[n] = i; - //printf(" %d ", unique_frag[n]); - n++; - } - i++; - } while (n < efp->nsymm_frag); -} - -void -n_symm_frag(struct efp *efp, size_t *symm_frag) { - - for (size_t i = 0; i < efp->nsymm_frag; i++) { - size_t counter = 0; - for (size_t j = 0; j < efp->n_frag; j++) { - if (efp->symmlist[i] == efp->symmlist[j]) - counter++; - } - symm_frag[i] = counter; - // printf("\n symm_frag %d = %d", i, symm_frag[i]); - } -} - void print_mult_pt(struct efp *efp, size_t frag_index, size_t pt_index) { struct multipole_pt *pt = efp->frags[frag_index].multipole_pts + pt_index; @@ -2981,13 +2925,13 @@ print_frag_info(struct efp *efp, size_t frag_index) { print_atoms(efp, frag_index, i); } - //for (int i=0; i < fr->n_multipole_pts; i++) { - // print_mult_pt(efp, frag_index, i); - //} + for (int i=0; i < fr->n_multipole_pts; i++) { + print_mult_pt(efp, frag_index, i); + } - //for (int i=0; i < fr->n_polarizable_pts; i++) { - // print_pol_pt(efp, frag_index, i); - //} + for (int i=0; i < fr->n_polarizable_pts; i++) { + print_pol_pt(efp, frag_index, i); + } print_ligand(efp, frag_index); printf("\n"); @@ -3048,10 +2992,31 @@ void print_ene(struct efp_energy *energy) { } void print_energies(struct efp *efp) { + size_t n_frag = efp->n_frag; printf(" --- PAIRWISE ENERGIES --- \n"); for (size_t i=0; in_frag; i++) { printf(" PAIR ENERGY on FRAGMENT %zu %s \n", i, efp->frags[i].name); print_ene(&efp->pair_energies[i]); } - printf("\n"); + printf("---\n"); +} + +void print_opts(struct efp_opts *opts) +{ + assert(opts); + + printf("\n--- some EFP opts parameters ---\n"); + + printf("enable_pbc %d\n", opts->enable_pbc); + printf("enable_elpot %d\n", opts->enable_elpot); + printf("enable_cutoff %d\n", opts->enable_cutoff); + printf("swf_cutoff %lf\n", opts->swf_cutoff); + printf("xr_cutoff %lf\n", opts->xr_cutoff); + printf("enable_pairwise %d\n", opts->enable_pairwise); + printf("ligand %d\n", opts->ligand); + printf("special_fragment %d\n", opts->special_fragment); + printf("symmetry %d\n", opts->symmetry); + printf("print %d\n", opts->print); + + printf(" ---\n"); } diff --git a/src/efp.h b/src/efp.h index 7a3f9ba5..89ee9177 100644 --- a/src/efp.h +++ b/src/efp.h @@ -384,10 +384,6 @@ void efp_set_error_log(void (*cb)(const char *)); */ enum efp_result efp_set_opts(struct efp *efp, const struct efp_opts *opts); -enum efp_result efp_compute_pairwise_energy_range_range(struct efp *efp, size_t frag_from, size_t frag_to); - -enum efp_result efp_compute_two_body_crystal(struct efp *efp); - /** * Get currently set computation options. * @@ -422,7 +418,7 @@ enum efp_result efp_add_potential(struct efp *efp, const char *path); enum efp_result efp_add_fragment(struct efp *efp, const char *name); /** - * Add a ligand fragment to teh system + * Add a ligand fragment to the system * @param[in] efp * @param[in] ligand_index Index of the ligand in the fragment list * @return ::EFP_RESULT_SUCCESS on success or error code otherwise. @@ -1491,7 +1487,7 @@ enum efp_result efp_get_pairwise_energy(struct efp *efp, * \param[in] total energy and energy components of each ligand-fragment pair * */ -enum efp_result efp_set_pairwise_energy(struct efp *efp, struct efp_energy *pair_energies); +//enum efp_result efp_set_pairwise_energy(struct efp *efp, struct efp_energy *pair_energies); /** * Prepares information for computing symmetric crystals. Sets the symmetry list, nsymm_frag AND skiplist @@ -1521,20 +1517,6 @@ enum efp_result efp_get_symmlist(struct efp *efp, size_t frag_idx, size_t *symm) */ enum efp_result efp_get_nsymm_frag(struct efp *efp, size_t *nsymm_frag); -/** - * Computes the list of indexes of symmetry-unique fragments - * @param[in] efp The efp structure. - * @param[out] unique_frag Array with unique-symmetry fragment' indexes - */ -void unique_symm_frag(struct efp *efp, size_t *unique_frag); - -/** - * Computes number of symmetric fragments of each type - * @param[in] efp The efp structure - * @param[out] symm_frag Array of length nsymm_frag specifying # of identical fragments - */ -void n_symm_frag(struct efp *efp, size_t *symm_frag); - /** updates (shifts) parameters of fragment based on coordinates of fragment atoms * * @param[in] atoms Atoms with target coordinates, to which the parameters will be shifted @@ -1616,6 +1598,12 @@ void print_ene(struct efp_energy *energy); */ void print_energies(struct efp *efp); +/** + * Print simple efp options + * @param opts + */ +void print_opts(struct efp_opts *opts); + #ifdef __cplusplus } /* extern "C" */ #endif diff --git a/src/pol.c b/src/pol.c index d1661195..f487bcb4 100644 --- a/src/pol.c +++ b/src/pol.c @@ -408,7 +408,7 @@ compute_elec_field(struct efp *efp) { efp_balance_work(efp, compute_elec_field_range, NULL); - if (efp->opts.enable_pairwise) { + if (efp->opts.enable_pairwise) { // this is field due to ligand on a fragment point // for QM ligand this is a field due to QM nuclei efp_balance_work(efp, compute_ligand_field_range, NULL); @@ -433,7 +433,7 @@ compute_elec_field_crystal(struct efp *efp) int do_pairwise = (efp->opts.enable_pairwise && efp->opts.ligand > -1) ? 1 : 0; enum efp_result res; - int nsymm = efp->nsymm_frag; + size_t nsymm = efp->nsymm_frag; size_t *unique_frag = (size_t *)calloc(nsymm, sizeof(size_t)); unique_symm_frag(efp, unique_frag); @@ -957,12 +957,11 @@ efp_compute_pol_energy(struct efp *efp, double *energy) { enum efp_result res; - assert(energy); + assert(energy); // counter to know when to zero out induced dipoles and static field // need to be explored further static int counter = 0; - // think how to skip recomputing static field in qm scf iterations // check on efp->do_gradient breaks gtests... if ((res = compute_elec_field(efp))) @@ -1290,7 +1289,7 @@ efp_compute_pol(struct efp *efp) !(efp->opts.terms & EFP_TERM_AI_POL)) return EFP_RESULT_SUCCESS; - // this is standard non-symmetric case + // this is standard non-symmetric case if (! efp->opts.symmetry) { if ((res = efp_compute_pol_energy(efp, &efp->energy.polarization))) return res; diff --git a/src/util.c b/src/util.c index 5fa5799f..c38e0ab8 100644 --- a/src/util.c +++ b/src/util.c @@ -359,3 +359,34 @@ calc_rmsd(const struct frag *frag1, const struct frag *frag2){ double rmsd = 0.0; return rmsd; } + + +void +unique_symm_frag(struct efp *efp, size_t *unique_frag){ + //printf("\n Symmetry-unique fragments \n"); + size_t n = 0; + size_t i = 0; + do { + if (efp->symmlist[i] > n) { + unique_frag[n] = i; + //printf(" %d ", unique_frag[n]); + n++; + } + i++; + } while (n < efp->nsymm_frag); +} + +void +n_symm_frag(struct efp *efp, size_t *symm_frag) { + + for (size_t i = 0; i < efp->nsymm_frag; i++) { + size_t counter = 0; + for (size_t j = 0; j < efp->n_frag; j++) { + if (efp->symmlist[i] == efp->symmlist[j]) + counter++; + } + symm_frag[i] = counter; + // printf("\n symm_frag %d = %d", i, symm_frag[i]); + } +} + diff --git a/src/util.h b/src/util.h index 80fb1837..0a297515 100644 --- a/src/util.h +++ b/src/util.h @@ -55,5 +55,9 @@ void find_plane(const vec_t, const vec_t, const vec_t, vec_t *, double); double max_cutoff(const six_t); // computes rmsd between two fragment structures double calc_rmsd(const struct frag *frag1, const struct frag *frag2); +// Computes the list of indexes of symmetry-unique fragments +void unique_symm_frag(struct efp *efp, size_t *unique_frag); +// Computes number of symmetric fragments of each type +void n_symm_frag(struct efp *efp, size_t *symm_frag); #endif /* LIBEFP_UTIL_H */ diff --git a/tests/.DS_Store b/tests/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..6a0239190bd497764707c751b1cf991221915750 GIT binary patch literal 8196 zcmeHMU2GIp6u#fI(3vTfDSs_HNLH%+qy@LF)(WCafA|p)Wcx=!mff8JMy4}$XLbwL zYGZs*qY!`J)PxrwFc?UTG5TbJ5?@4V{7E#%_@X8zzW88bjOX4v%TEgrCPYb?o6J4; z+;h&o_ni68+?-v;7`jSUD`Sm}F_j)pjauri(zu*IGnx|3R1*c+GZwIr1^KaHH1E#P zjwj*>#1V)i5Jw=6KpcS^Ap&$~^QKFqQfWN>%l&*)^)F)~b(W z4*6r5Fc+4Bu3T{s=lXo#%~!^`{D5PRWsL>hz8B^k&n^lB$FfOf@1WyZ{#ch^@~lAE zW~4yXG%ag1jE|>UlI^XX6D`T{*3@0ZbhLF$Ola!DraRZ|${uz{JpVcA2cmBQtDEN6 z^D~`tgK~G?ngfGFde)d%rjzd&4ISSL2JB)$G;7Qa$ipoK-`iQV zxqPtTyQL8?$Qt#9oLeZlxzOI=x*6wjI~WS>BOxCR2YxZ^7K%d-+48xpVUz-UmrVvv z+3q2;z<_pY&ca)lEpJZUz4n2g&D$TIs=H;bQLoR}hbb;z=p1nD;_h5fuszH14)%{Z zR(NQz>;z8Uwfnr>h^^IQK%1&t)X=y%VVY9ml0ijvsFZgeD>>m&qe)f89!t%nzSp8d zZ1*j`i=`Ux(K@tylbJO4a7lO3rrwGSR+y{wzJUBtjhs|$(bwpGhv|iCMj&Te^>(x0 z&E;)ZGc37Jhu&!pmSr$CW2>B8r>{4M3jW9lxfqZKEpj?-cA5M5&f9W9xMS4z_^Hm3 zjJ)ejn&xgU+hAGZOpS{g>dXhtZL0C5IvgCz7402k1h%PYey6I6cSrMlwO-2!{fojr zE;Jmk>=2IWElW77P3e^qOCqvO>6GL&x}6rYHFOtkW_u}5c)q;Aj^!@`rr7uFC-xirgZ&K#KtU}Uu^1+n;10B+4ehuO8_8n3#afdPU8$d#94fTPjMb!-~y)b1AfLY_!WOCvy|CN zjgnAI<#uJ2(k73tRFY&^@|9j`r_r>`rzD|Y?s$?Y`>vKGiQbKy{--4Qc8*AkdGi-6 zT-vm9bsHtiMfga(RUmdba0Obgz_>uGc)8PHHYM^$Uvg_DVJ@YROsRf?xqU?CST$-Q z?c0{A1ao6n#4cY!>{es8WE0ITDy5X62v$#|S~W@>qbg#XHBFU6z4Km;63D2I*!A~o zJf{sN_(YE;`V)KD-LalJxAShc~V_DXB1_j;ru_QH~S6_=h2llaVYP(Md^3LhV2QA%L#& O`2LUYe*wOmxcdiex)gZ; literal 0 HcmV?d00001 diff --git a/tests/atom_coord_2.in b/tests/atom_coord_2.in new file mode 100644 index 00000000..9d45be73 --- /dev/null +++ b/tests/atom_coord_2.in @@ -0,0 +1,23 @@ +run_type grad +coord atoms +elec_damp screen +fraglib_path ../fraglib +print 3 + +fragment h2o_l +A01O1 -3.394000 -1.900000 -3.700000 +A02H2 -3.517419 -1.130057 -3.174996 +A03H3 -2.580284 -2.281411 -3.424198 +fragment nh3_l +A01N1 -5.515000 1.083000 0.968000 +A02H2 -5.171084 0.157148 0.817415 +A03H3 -4.838165 1.726200 0.612549 +A04H4 -6.354118 1.191679 0.436750 +fragment ch3oh_l +A01C1 -2.056000 0.767000 -0.301000 +A02O2 -2.979940 -0.252959 -0.545947 +A03H3 -1.192965 0.406624 0.250842 +A04H4 -2.554557 1.516350 0.296433 +A05H5 -1.714730 1.232706 -1.220716 +A06H6 -2.587630 -0.929369 -1.064807 + diff --git a/tests/lj_2.in b/tests/lj_2.in new file mode 100644 index 00000000..4edff089 --- /dev/null +++ b/tests/lj_2.in @@ -0,0 +1,20 @@ +run_type grad +coord atoms +terms qq lj +special_terms qq lj +fraglib_path ../fraglib +print 0 + +fragment tip3p_mm_l +A01O -1.815220 2.663988 0.000000 +A02H -1.616905 1.722730 0.001942 +A03H -2.465495 2.770431 -0.695494 + +fragment tip3p_mm_l +A01O -1.815220 5.663988 0.000000 +A02H -1.616905 4.722730 0.001942 +A03H -2.465495 5.770431 -0.695494 + + + + diff --git a/tests/pytests/__pycache__/libefp2py.cpython-312.pyc b/tests/pytests/__pycache__/libefp2py.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f987bfb65e03679bc48cc6c3b64be07ca77d9ac5 GIT binary patch literal 2438 zcmc&$+fUn87(XYrgYA&!)=PjuZqSi#C54KYt}E(|a_OpRTeWu5#0)kxU=qtVrO6x( zO?#jc51u-yNu!obdl(gcC~y1=(=;itbajt-Kw9^})2NtKse9RR8Uw0YsMy0!WS{T& z{C?lqAXtQ`};;ETZ5#_wbW z1+$R1X)xmeAZz1^EHMJIB)%whlcfQkoVS@|06Ia|uA2PH;3*9h0B^rb%vaG68_?{d zl!e%u=c{72MypY5I!yk14oF%qdW;CJz?%KBO@~o*% zhw`s)t&hQRvKqlV###YTAhWyg4$U!YX7H7<=_}q>VDeAwi{m;_NZx7AGEA;u-p(;r zy^z1u*in2IuMX8|J+ZQ3MXuR0INR0=g16xBGqY(i_P}@T$S3$(GoNo239+N5|2Y#n zoS|`bxGT|2?OxS8pRnq(PLOw5xjzTKh~T=e-Tln8+MO~r(@cW@s-Jgdu!GyJSYAS4 z>etBE)uqO4p)~5X2zCph+h$x0?o8&->L?Iwd#gRF$I6mMT0GogyxTjBMrzcs?Gq3M z?f9*ov_WtcK>V9&xj|e7lQ8DHG=h};9rCZ$u927O*1OhB0YN$A`Ya)ep~;jy7Me_` z*FqU8G@K9xL=B}AYI@D= zi)&^>MD`o$3^zEGv3I8?l6)w`hAg%cV-T5=ge0OQ8S@b>3mh*dk^-{JiXI4Ds#yZ0TH5*j5!f2CI*FJX&{l55HZ-nA%g1|L~O;^0W~cNh&3$^ zB)M@xL5_-C*;Ei5Mr6evrBo(n6IkU`a0rSBCKR*Pgtm_tr{k9uK~~~odV=TT7kkf~ z@BS!W^+p+!2FAH`$FYvixGE^B5|`31=a+yEDcvTek;e>qU@L+NRc^s{@J9$J12~CO zV3qYwoi$jePTY)5on7^Kr}_+!58u4|r~02V&go1pT4tJx;T77cyNYa1o9is?YcJCs z#y+p%@!qcguKreF`rH%Wq5J{Ebuia_^J~K&n04eG1*c9Kjgew|{)*17xDVv)xlB$h z9elU!es9%Pm-}?t72XaFgp1*PkIop4L7g>xjm1ODzSg-OqrS-qG|u+r`wACx&=fD^ zFBE!n@JTRKY%v;I<~;eXxzWYb_fv}#MkxFf{R90Yo1@H~L(2`vjKJZ?ful=-qYs3K z=NH2ZJ@cu>p{2Id<-nOeZehj#<%ae>vfu2^vj)%*Tn~W#O-28*FJ{!$&(`Pb3jzI{ z5eUup=lcsE>gQL?jNZF~GvSXs_Q#g|u?H;=sfXMGJs)3;E*<&ck^j^>0h$g!eFJb2 zE(|TOza4r1k^f``xK0C4!((@N$sI1n@Yxt{yoxNjBgGSCciXdm2wc9^x~At0V1s{u z3<1SXcYl9e&)n)Nd85S>CAO_h#tp{-{i~8AQX(VIFGGwhF-Qu{nbKG%qg~0}xz#Cbp6L7?ZlaerR!OQL%nbWob&HzK^Gqt6PA6PG(YST0wkq Tc0qh@Vx^IRk?CeuW@}9V#UK?T delta 78 zcmdlSaUg>GG%qg~0}#wfVBN@ljLF1Dzc{%lu_QS|KRq)isVKE1L%$%gG^aRQKPfRe fyR<+*sVFfoIU~NHGAA=hABa=a3O4^>vepCu3?>`w diff --git a/tests/pytests/atom_coord1.py b/tests/pytests/atom_coord1.py new file mode 100644 index 00000000..1c19c531 --- /dev/null +++ b/tests/pytests/atom_coord1.py @@ -0,0 +1,53 @@ +# This job matches atom_coord_2.in + +import numpy as np +import pylibefp + +efp = pylibefp.core.efp() + +b2a = 0.529177 +a2b = 1.0 / b2a + +# coords in angstroms +h2o_coord = np.array([-3.394000, -1.900000, -3.700000, + -3.517419, -1.130057, -3.174996, + -2.580284, -2.281411, -3.424198]) +nh3_coord = np.array([ -5.515000, 1.083000, 0.968000, + -5.171084, 0.157148, 0.817415, + -4.838165, 1.726200, 0.612549, + -6.354118, 1.191679, 0.436750]) +ch3oh_coord = np.array([ -2.056000, 0.767000, -0.301000, +-2.979940, -0.252959, -0.545947, +-1.192965, 0.406624, 0.250842, +-2.554557, 1.516350, 0.296433, +-1.714730, 1.232706, -1.220716, +-2.587630, -0.929369, -1.064807]) + +# converting to bohrs +h2o_coord *= a2b +nh3_coord *= a2b +ch3oh_coord *= a2b + +frags = ["h2o_l", "nh3_l", "ch3oh_l"] +efp.add_potential(frags) +efp.add_fragment(frags) +efp.set_frag_coordinates(0, "atoms", h2o_coord.tolist()) +efp.set_frag_coordinates(1, "atoms", nh3_coord.tolist()) +efp.set_frag_coordinates(2, "atoms", ch3oh_coord.tolist()) + +efp.prepare() + +efp.set_opts({ + "elec": True, + "elec_damp": "screen", + "xr": True, + "pol": True, + "disp": True, + "print": 0, +}) + +efp.compute(do_gradient=True) +ene = efp.get_energy() +print(ene) +grad = efp.get_gradient() +print(grad) diff --git a/tests/pytests/libefp2py.py b/tests/pytests/libefp2py.py new file mode 100644 index 00000000..7b2067f4 --- /dev/null +++ b/tests/pytests/libefp2py.py @@ -0,0 +1,58 @@ +# read libefp input and extract geometry suitable for pylibefp input +# coordinates will be in Bohr units + +def read_libefp_input(libefp_inp) : + + b2a = 0.529177 + a2b = 1.0 / b2a + + coord_type = 0 + frag_names = [] + frag_coords = [] + + with open (libefp_inp,'r') as f: + print(f"Will work with {libefp_inp} file") + while True: + line=f.readline() + if not line: break + if "coord" in line: # read type of coordinate input + sline = line.rsplit() + coord_type = sline[1] + print(f"coord {coord_type}") + + if "fragment" in line: # read fragment name + sline = line.rsplit() + frag_name = sline[1] + frag_coord = [] + if coord_type == 'atoms' or 'points': + while True: + l = f.readline() + l = l.strip() # Remove leading/trailing whitespace; stop reading when empty line is found + if not l: break + if "fragment" in l or "velocity" in l: break + sline = l.rsplit() + if coord_type == 'atoms': + frag_coord.append(float(sline[1])*a2b) + frag_coord.append(float(sline[2])*a2b) + frag_coord.append(float(sline[3])*a2b) + if coord_type == 'points': + frag_coord.append(float(sline[0])*a2b) + frag_coord.append(float(sline[1])*a2b) + frag_coord.append(float(sline[2])*a2b) + if coord_type == 'xyzabc': + line=f.readline() + sline = line.rsplit() + for i in range(3): + frag_coord.append(float(sline[i])*a2b) + for i in range(3): + frag_coord.append(float(sline[i+3])) + + # store frag info + frag_names.append(frag_name) + frag_coords.append(frag_coord) + + print(f"Found {len(frag_names)} fragments") + return frag_names, frag_coords + + + diff --git a/tests/pytests/lj.py b/tests/pytests/lj.py new file mode 100644 index 00000000..4ac37320 --- /dev/null +++ b/tests/pytests/lj.py @@ -0,0 +1,44 @@ +# matches lj_2.in + +import numpy as np + +import pylibefp + +efp = pylibefp.core.efp() + +b2a = 0.529177 +a2b = 1.0 / b2a + +frags = ["tip3p_mm_l", "tip3p_mm_l"] +efp.add_potential(frags) +efp.add_fragment(frags) + +frag1_geom = np.array([ -1.815220, 2.663988, 0.000000, + -1.616905, 1.722730, 0.001942, + -2.465495, 2.770431, -0.695494]) +frag1_geom *= a2b + +frag2_geom = np.array([ -1.815220, 5.663988, 0.000000, + -1.616905 , 4.722730 , 0.001942, + -2.465495 , 5.770431 , -0.695494]) +frag2_geom *= a2b + +efp.set_frag_coordinates(0, "atoms", frag1_geom.tolist()) +efp.set_frag_coordinates(1, "atoms", frag2_geom.tolist()) +efp.prepare() + +efp.set_opts({ + "elec": False, + "elec_damp": "screen", + "xr": False, + "pol": False, + "disp": False, + "qq": True, + "lj":True, +}) + +efp.compute(True) +ene = efp.get_energy() +print(ene) +grad = efp.get_gradient() +print(grad) diff --git a/tests/pytests/pair2.py b/tests/pytests/pair2.py index 1e16cd41..b5a3c0e2 100644 --- a/tests/pytests/pair2.py +++ b/tests/pytests/pair2.py @@ -20,15 +20,16 @@ "elec": True, "disp_damp": "overlap", "xr": True, - "pol": False, + "pol": True, "disp": True, "enable_pairwise": True, - "ligand": 0, + "ligand": 1, + "print": 0, }) efp.compute() #gra = efp.get_gradient() ene = efp.get_energy() ene2 = efp.energy_summary() -print(ene2) +print(ene) #print(gra) diff --git a/tests/pytests/spec.py b/tests/pytests/spec.py index b1523ef0..03df075e 100644 --- a/tests/pytests/spec.py +++ b/tests/pytests/spec.py @@ -1,16 +1,17 @@ import pylibefp - - efp = pylibefp.core.efp() +b2a = 0.529177 +a2b = 1.0 / b2a + frags = ["tip3p_mm_l", "tip3p_mm_l"] efp.add_potential(frags) efp.add_fragment(frags) efp.set_frag_coordinates(0, "xyzabc", [0.0, 0.0, 0.0, 1.0, 2.0, 3.0]) efp.set_frag_coordinates(1, "xyzabc", - [3.0, 0.0, 0.0, 5.0, 2.0, 8.0]) + [3.0*a2b, 0.0, 0.0, 5.0, 2.0, 8.0]) efp.prepare() efp.set_opts({ diff --git a/tests/pytests/symm.py b/tests/pytests/symm.py index 317d8c27..13217115 100644 --- a/tests/pytests/symm.py +++ b/tests/pytests/symm.py @@ -1,4 +1,9 @@ import sys +import numpy as np + +# Get the absolute path to the directory containing the module +sys.path.insert(0, '/Users/lyuda/LIBEFP/libefp_skp_may2025/lib') + import pylibefp from systems import * diff --git a/tests/pytests/symm_1.py b/tests/pytests/symm_1.py new file mode 100644 index 00000000..ebf4f64a --- /dev/null +++ b/tests/pytests/symm_1.py @@ -0,0 +1,53 @@ +import sys +import numpy as np +import libefp2py + +# Get the absolute path to the directory containing the module +sys.path.insert(0, '/Users/lyuda/LIBEFP/libefp_skp_may2025/lib') + +import pylibefp + +b2a = 0.529177 +a2b = 1.0 / b2a + +# coordinates in Bohr +frags, frag_coords = libefp2py.read_libefp_input("../symm_1.in") +#print(frag_coords) + +efp = pylibefp.core.efp() + +efp.add_potential(frags) +efp.add_fragment(frags) + +for i in range(len(frags)): + efp.set_frag_coordinates(i, "points", frag_coords[i]) + +efp.prepare() + +efp.set_opts({ + 'elec': True, + 'pol': True, + 'disp': True, + 'xr': True, + 'elec_damp': 'screen', + 'pol_damp': 'tt', + 'disp_damp': 'tt', + 'enable_pbc': True, + 'enable_cutoff': True, + 'swf_cutoff': 4.79 * a2b, + 'xr_cutoff': 4.79 * a2b, + 'print': 0, + 'symmetry': True, + 'symm_frag': 'frag', +}) +# 'enable_pairwise': True, +# 'ligand': 1, +#}) + +efp.set_periodic_box([10.66 * a2b, 12.03 * a2b, 10.872 * a2b], 90.0, 115.83, 90.0) +#box = efp._efp_get_periodic_box() +#print(box) + +efp.compute() +ene = efp.get_energy() +print(ene) diff --git a/tests/pytests/symm_2pw.py b/tests/pytests/symm_2pw.py new file mode 100644 index 00000000..413e1e16 --- /dev/null +++ b/tests/pytests/symm_2pw.py @@ -0,0 +1,46 @@ +import libefp2py + +import pylibefp + +b2a = 0.529177 +a2b = 1.0 / b2a + +# coordinates in Bohr +frags, frag_coords = libefp2py.read_libefp_input("../symm_2pw.in") +#print(frag_coords) + +efp = pylibefp.core.efp() + +efp.add_potential(frags) +efp.add_fragment(frags) + +for i in range(len(frags)): + efp.set_frag_coordinates(i, "points", frag_coords[i]) + +efp.prepare() + +efp.set_opts({ + 'elec': True, + 'pol': True, + 'disp': True, + 'xr': True, + 'elec_damp': 'screen', + 'pol_damp': 'tt', + 'disp_damp': 'tt', + 'enable_pbc': True, + 'enable_cutoff': True, + 'swf_cutoff': 11.0 * a2b, + 'print': 0, + 'symmetry': True, + 'symm_frag': 'frag', + 'enable_pairwise': True, + 'ligand': 0, +}) + +efp.set_periodic_box([24.0048* a2b, 27.0356* a2b, 25.7166* a2b,], 90.0, 109.424, 90.0) +#box = efp._efp_get_periodic_box() +#print(box) + +efp.compute() +ene = efp.get_energy() +print(ene) diff --git a/tests/pytests/test_efpefp.py b/tests/pytests/test_efpefp.py index 44fc4c66..7b6168a7 100644 --- a/tests/pytests/test_efpefp.py +++ b/tests/pytests/test_efpefp.py @@ -117,7 +117,8 @@ def test_total_1a(): 'xr': True, 'pol': True, # 'pol_damp': 'tt', 'disp': True, - 'disp_damp': 'tt' + 'disp_damp': 'tt', + 'print': 2 }) asdf.compute() ene = asdf.get_energy() @@ -357,4 +358,4 @@ def test_total_4d(): if __name__ == '__main__': - test_total_4d() + test_total_4a() From b0bdda606ebf3fd1f6aad3355607d0f53cb908bf Mon Sep 17 00:00:00 2001 From: osu1191 Date: Tue, 13 May 2025 03:22:32 -0400 Subject: [PATCH 05/12] cleaned up pytests --- cpp.sh | 2 +- og_CMakeLists.txt | 286 - python/py.sh | 2 +- python/wrapper.py | 2 +- setup.sh | 34 +- tests/out_symm_2pw | 4873 +++++++++++++++++ .../__pycache__/addons.cpython-312.pyc | Bin 1089 -> 0 bytes .../conftest.cpython-312-pytest-8.3.5.pyc | Bin 823 -> 0 bytes .../ene.cpython-312-pytest-8.3.5.pyc | Bin 1142 -> 0 bytes .../__pycache__/libefp2py.cpython-312.pyc | Bin 2438 -> 0 bytes .../pair.cpython-312-pytest-8.3.5.pyc | Bin 1350 -> 0 bytes .../pair2.cpython-312-pytest-8.3.5.pyc | Bin 1328 -> 0 bytes .../spec.cpython-312-pytest-8.3.5.pyc | Bin 1182 -> 0 bytes .../symm.cpython-312-pytest-8.3.5.pyc | Bin 1079 -> 0 bytes .../__pycache__/systems.cpython-312.pyc | Bin 11315 -> 0 bytes .../test_efpefp.cpython-312-pytest-8.3.5.pyc | Bin 49406 -> 0 bytes .../test_opts.cpython-312-pytest-8.3.5.pyc | Bin 23323 -> 0 bytes .../test_psi.cpython-312-pytest-8.3.5.pyc | Bin 12917 -> 0 bytes .../test_scf.cpython-312-pytest-8.3.5.pyc | Bin 24370 -> 0 bytes .../total_1.cpython-312-pytest-8.3.5.pyc | Bin 1890 -> 0 bytes .../{atom_coord1.py => atom_coord_2.py} | 0 tests/pytests/check_total.py | 28 - tests/pytests/efp_1.py | 105 - tests/pytests/efp_2.py | 84 - tests/pytests/efp_3.py | 88 - tests/pytests/ene.py | 28 - tests/pytests/mehh.py | 29 - tests/pytests/pair.py | 33 - tests/pytests/pair2.py | 35 - tests/pytests/pairwise_1.py | 38 + tests/pytests/pbc.py | 40 - tests/pytests/sp_2.py | 33 + tests/pytests/spec.py | 31 - tests/pytests/symm_1.py | 5 +- tests/pytests/symm_2pw.py | 3 + tests/pytests/total_1.py | 49 - tests/sp_2.in | 10 + 37 files changed, 4980 insertions(+), 858 deletions(-) delete mode 100644 og_CMakeLists.txt create mode 100644 tests/out_symm_2pw delete mode 100644 tests/pytests/__pycache__/addons.cpython-312.pyc delete mode 100644 tests/pytests/__pycache__/conftest.cpython-312-pytest-8.3.5.pyc delete mode 100644 tests/pytests/__pycache__/ene.cpython-312-pytest-8.3.5.pyc delete mode 100644 tests/pytests/__pycache__/libefp2py.cpython-312.pyc delete mode 100644 tests/pytests/__pycache__/pair.cpython-312-pytest-8.3.5.pyc delete mode 100644 tests/pytests/__pycache__/pair2.cpython-312-pytest-8.3.5.pyc delete mode 100644 tests/pytests/__pycache__/spec.cpython-312-pytest-8.3.5.pyc delete mode 100644 tests/pytests/__pycache__/symm.cpython-312-pytest-8.3.5.pyc delete mode 100644 tests/pytests/__pycache__/systems.cpython-312.pyc delete mode 100644 tests/pytests/__pycache__/test_efpefp.cpython-312-pytest-8.3.5.pyc delete mode 100644 tests/pytests/__pycache__/test_opts.cpython-312-pytest-8.3.5.pyc delete mode 100644 tests/pytests/__pycache__/test_psi.cpython-312-pytest-8.3.5.pyc delete mode 100644 tests/pytests/__pycache__/test_scf.cpython-312-pytest-8.3.5.pyc delete mode 100644 tests/pytests/__pycache__/total_1.cpython-312-pytest-8.3.5.pyc rename tests/pytests/{atom_coord1.py => atom_coord_2.py} (100%) delete mode 100644 tests/pytests/check_total.py delete mode 100644 tests/pytests/efp_1.py delete mode 100644 tests/pytests/efp_2.py delete mode 100644 tests/pytests/efp_3.py delete mode 100644 tests/pytests/ene.py delete mode 100644 tests/pytests/mehh.py delete mode 100644 tests/pytests/pair.py delete mode 100644 tests/pytests/pair2.py create mode 100644 tests/pytests/pairwise_1.py delete mode 100644 tests/pytests/pbc.py create mode 100644 tests/pytests/sp_2.py delete mode 100644 tests/pytests/spec.py delete mode 100644 tests/pytests/total_1.py create mode 100644 tests/sp_2.in diff --git a/cpp.sh b/cpp.sh index 4797f976..de7d6030 100755 --- a/cpp.sh +++ b/cpp.sh @@ -2,7 +2,7 @@ rm -rf build rm -rf installed cmake -S . -B build \ - -D CMAKE_INSTALL_PREFIX=/scratch/gilbreth/paulsk/backup/branch_pylib/libefp/installed \ + -D CMAKE_INSTALL_PREFIX=$LIBEFP_DIR/installed \ -D BUILD_SHARED_LIBS=ON \ -D LIBEFP_ENABLE_OPENMP=ON diff --git a/og_CMakeLists.txt b/og_CMakeLists.txt deleted file mode 100644 index 5d2431d0..00000000 --- a/og_CMakeLists.txt +++ /dev/null @@ -1,286 +0,0 @@ -cmake_minimum_required(VERSION 3.16) -if (POLICY CMP0135) - cmake_policy(SET CMP0135 NEW) -endif () - -# extract project version from source - -if(NOT DEFINED torch_switch) - if(DEFINED ENV{TORCH_SWITCH}) - set(torch_switch $ENV{TORCH_SWITCH}) - else() - set(torch_switch OFF) - endif() -endif() - -option(torch_switch "Enable Torch library integration" ${TORCH_SWITCH}) - -if(torch_switch) - add_definitions(-DTORCH_SWITCH) -endif() - -file(STRINGS "src/efp.h" _src_efp_h REGEX "LIBEFP_VERSION_STRING") - -if (${_src_efp_h} MATCHES "^#define LIBEFP_VERSION_STRING \"(.*)\"$") - set(_libefp_VERSION ${CMAKE_MATCH_1}) -endif() - -project( - libefp - # someday when Makefile dropped, configure efp.h.in from cmake - VERSION ${_libefp_VERSION} - LANGUAGES C CXX - ) - -#set(CMAKE_INSTALL_PREFIX "${PROJECT_SOURCE_DIR}/installed" CACHE PATH "Installation directory" FORCE) -#set(CMAKE_INSTALL_PREFIX "${LIBEFP_DIR}" CACHE PATH "Installation directory") -set(CMAKE_INSTALL_LIBDIR "lib") - -### LVS needs this on MacOS silicon -set(CMAKE_CXX_STANDARD 17) - -set(libefp_AUTHORS "Ilya A. Kaliman, Lori A. Burns, Suranjan Paul, Dmitry Morozov, Carlos H. Borca, Yen (Terri) Bui, Yongbin Kim, Lyudmila V. Slipchenko") -set(libefp_DESCRIPTION "Parallel implementation of the Effective Fragment Potential method") -set(libefp_URL "https://github.com/libefp2/libefp") -set(libefp_LICENSE "BSD 2-clause") - -list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) - -set(efp libefp) # Namespace - - -# TODO: Remove when requiring cmake >= 3.21 # from LecrisUT/CMake-Template -if (NOT DEFINED ${efp}_IS_TOP_LEVEL) - if (CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME) - set(PROJECT_IS_TOP_LEVEL ON) - else () - set(PROJECT_IS_TOP_LEVEL OFF) - endif () - set(${efp}_IS_TOP_LEVEL ${PROJECT_IS_TOP_LEVEL}) -endif () - -################################### Options #################################### -include(psi4OptionsTools) -if (${efp}_IS_TOP_LEVEL) - if (DEFINED ENABLE_OPENMP) - message(FATAL_ERROR "Use LIBEFP_ENABLE_OPENMP instead of ENABLE_OPENMP.") - endif() - if (DEFINED FRAGLIB_UNDERSCORE_L) - message(WARNING "Using FRAGLIB_UNDERSCORE_L=OFF is deprecated and may be removed as soon as v1.10. Please adapt your fragment search to handle name and name_L.") - endif() - if (DEFINED FRAGLIB_DEEP) - message(WARNING "Using FRAGLIB_DEEP=OFF is deprecated and may be removed as soon as v1.10. Please adapt your fraglib library usage to handle a list of paths.") - endif() -endif() - -option_with_default(CMAKE_BUILD_TYPE "Build type" Release) -option_with_print(BUILD_SHARED_LIBS "Build final library as shared, not static" OFF) -option_with_default(BUILD_FPIC "Libraries will be compiled with position independent code" ON) -if((${BUILD_SHARED_LIBS}) AND NOT ${BUILD_FPIC}) - message(FATAL_ERROR "BUILD_SHARED_LIBS ON and BUILD_FPIC OFF are incompatible, as shared library requires position independent code") -endif() - -### This option turns OPENMP ON and OFF! -option_with_print(LIBEFP_ENABLE_OPENMP "Enable OpenMP parallelization. Psi4 wants OFF" ON) - -option_with_print(ENABLE_GENERIC "Enable mostly static linking in shared library" OFF) -include(xhost) # defines: option(ENABLE_XHOST "Enable processor-specific optimization" ON) -option_with_print(FRAGLIB_UNDERSCORE_L "DEPRECATED: Installed fragment library has names ending in _L. Psi4 wants OFF" ON) -option_with_print(FRAGLIB_DEEP "DEPRECATED: Installed fragment libary has hierarchical, not flat, filestructure. Psi4 wants OFF" ON) -option_with_print(INSTALL_DEVEL_HEADERS "Install additional namespaced devel headers beyond convenience efp.h" OFF) -option_with_default(LIBEFP_CMAKECONFIG_INSTALL_DIR "Directory within CMAKE_INSTALL_PREFIX to which CMake configuration files installed" "share/cmake/libefp") -option_with_print(LIBEFP_ENABLE_EFPMD "Build standalone efpmd executable (requires Fortran). This also enables testing" ON) - -option_with_default(PYMOD_INSTALL_LIBDIR "If LIBEFP_ENABLE_PYTHON, location within CMAKE_INSTALL_LIBDIR to which python modules are installed" /) -option_with_print(LIBEFP_ENABLE_PYTHON "Build Python bindings (requires CXX, Python, and Pybind11)" OFF) - -######################### Process & Validate Options ########################### -include(autocmake_safeguards) -include(custom_static_library) - -if (LIBEFP_ENABLE_OPENMP) - if (CMAKE_C_COMPILER_ID STREQUAL "IntelLLVM") - message(WARNING "CMake v3.28 doesn't find OpenMP C language for IntelLLVM (icx), so configure will likely fail. Rerun with `-D LIBEFP_ENABLE_OPENMP=OFF` or pass flags in CMAKE_C_FLAGS.") - endif() - - find_package(OpenMP REQUIRED COMPONENTS C) -endif() - -# for MKL serial, this is recommended: -# set(BLA_VENDOR Intel10_64lp_seq) -find_package(TargetLAPACK REQUIRED) - -################################# Main Project ################################# -include(GNUInstallDirs) -include(CMakePackageConfigHelpers) - -# <<< Build >>> - -# fragment library -set(FRAGLIB_DATADIRS "") -file(GLOB_RECURSE _dotefps RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "fraglib/*.efp") -foreach(_dotefp ${_dotefps}) - get_filename_component(_efpdir ${_dotefp} DIRECTORY) - get_filename_component(_efpfile ${_dotefp} NAME) - file(READ ${_dotefp} _strefpL) - string(REPLACE "_L" "" _strefp ${_strefpL}) - - if(FRAGLIB_DEEP) - set(_destdir ${_efpdir}) - else() - set(_destdir fraglib) - endif() - if(FRAGLIB_UNDERSCORE_L) - set(_destcontents ${_strefpL}) - else() - set(_destcontents ${_strefp}) - endif() - - list(APPEND FRAGLIB_DATADIRS "${_destdir}") - file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/${_destdir}/${_efpfile} ${_destcontents}) -endforeach() -list(REMOVE_DUPLICATES FRAGLIB_DATADIRS) - -# libefp C library -set(raw_sources_list - aidisp.c - balance.c - clapack.c - disp.c - efp.c - elec.c - electerms.c - int.c - log.c - parse.c - pol.c - poldirect.c - stream.c - swf.c - util.c - xr.c - ) - -set(src_prefix "src/") -string(REGEX REPLACE "([^;]+)" "${src_prefix}\\1" sources_list "${raw_sources_list}") - -if (CMAKE_C_COMPILER_ID STREQUAL "IntelLLVM") - # Linux+icx: without this, many efpmd tests produce wrong answers - set_source_files_properties( - src/elec.c - src/util.c - PROPERTIES - COMPILE_OPTIONS "-O0" - ) -endif() - -set(export_properties - "${efp}_VERSION" - "${efp}_FRAGLIB_DIRS" - ) - -# STATIC/SHARED on below governed by BUILD_SHARED_LIBS -add_library(efp ${sources_list}) -add_library(${efp}::efp ALIAS efp) -set_target_properties(efp - PROPERTIES - POSITION_INDEPENDENT_CODE ${BUILD_FPIC} - C_STANDARD 99 - C_STANDARD_REQUIRED ON - C_EXTENSIONS OFF - SOVERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} - OUTPUT_NAME "efp" - EXPORT_NAME "efp" - ${efp}_VERSION ${${efp}_VERSION} - ${efp}_FRAGLIB_DIRS "${FRAGLIB_DATADIRS}" - ) -set_property(TARGET efp APPEND PROPERTY EXPORT_PROPERTIES "${export_properties}") - -if(${BUILD_SHARED_LIBS}) - target_link_libraries(efp PRIVATE ${LIBC_INTERJECT}) - if(APPLE) - set_target_properties(efp PROPERTIES LINK_FLAGS "-undefined dynamic_lookup") - endif() -endif() -target_link_libraries( - efp - PUBLIC - tgt::lapack - $<$:OpenMP::OpenMP_C> - ) - -# pylibefp bindings -if (LIBEFP_ENABLE_PYTHON) - enable_language(CXX) - add_subdirectory(python) -endif() - -# efpmd executable -if (LIBEFP_ENABLE_EFPMD) - # needed to link the Fortran routines in libff into the efpmd executable - enable_language(Fortran) - add_subdirectory(efpmd) - - enable_testing() - add_subdirectory(tests) -endif() - -# <<< Install >>> - -install(FILES fraglib/makefp.inp - DESTINATION ${CMAKE_INSTALL_DATADIR}/${efp}) -install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/fraglib - DESTINATION ${CMAKE_INSTALL_DATADIR}/${efp}) - -install(DIRECTORY ${PROJECT_SOURCE_DIR}/nnlib - DESTINATION ${CMAKE_INSTALL_DATADIR}/${efp}) - -# headers NOT namespace protected -install(FILES ${src_prefix}/efp.h - DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) -if (INSTALL_DEVEL_HEADERS) - install(DIRECTORY ${src_prefix} - DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${efp} - FILES_MATCHING PATTERN "*.h") -endif() -install(TARGETS efp - EXPORT "${efp}Targets-C" - PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} - RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} - ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} - LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}) - -# <<< Export Interface >>> - -target_compile_definitions(efp INTERFACE USING_${efp}) -target_include_directories(efp INTERFACE - $) - -# <<< Export Config >>> - -configure_package_config_file( - cmake/${efp}Config.cmake.in - "${CMAKE_CURRENT_BINARY_DIR}/${efp}Config.cmake" - INSTALL_DESTINATION ${LIBEFP_CMAKECONFIG_INSTALL_DIR} - ) -write_basic_package_version_file( - ${CMAKE_CURRENT_BINARY_DIR}/${efp}ConfigVersion.cmake - VERSION ${${efp}_VERSION} - COMPATIBILITY SameMinorVersion - ) -install( - FILES - ${CMAKE_CURRENT_BINARY_DIR}/${efp}Config.cmake - ${CMAKE_CURRENT_BINARY_DIR}/${efp}ConfigVersion.cmake - cmake/FindTargetLAPACK.cmake - DESTINATION - ${LIBEFP_CMAKECONFIG_INSTALL_DIR} - ) -install( - EXPORT - "${efp}Targets-C" - NAMESPACE - "${efp}::" - DESTINATION - ${LIBEFP_CMAKECONFIG_INSTALL_DIR} - ) diff --git a/python/py.sh b/python/py.sh index e515b664..a1f4ce40 100755 --- a/python/py.sh +++ b/python/py.sh @@ -2,7 +2,7 @@ rm -rf build mkdir build cd build -cmake -DCMAKE_INSTALL_PREFIX=$LIBEFP_DIR -DCMAKE_PREFIX_PATH="$CONDA_PREFIX;$LIBEFP_DIR" .. +cmake -DCMAKE_INSTALL_PREFIX=$LIBEFP_DIR/installed -DCMAKE_PREFIX_PATH="$CONDA_PREFIX;$LIBEFP_DIR/installed" .. make VERBOSE=1 make install diff --git a/python/wrapper.py b/python/wrapper.py index 80d44f46..58805756 100644 --- a/python/wrapper.py +++ b/python/wrapper.py @@ -146,7 +146,7 @@ def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): for lst in [paths, library_paths]: for spth in '@libefp_FRAGLIB_DIRS@'.split(';'): lst.append(spth) - #lst.append('/scratch/gilbreth/paulsk/backup/branch_pylib/libefp/fraglib') + lst.append('/scratch/gilbreth/paulsk/ls_pylib/libefp/fraglib') #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib') #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib/databases') #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') diff --git a/setup.sh b/setup.sh index 19cb31c0..77c66535 100644 --- a/setup.sh +++ b/setup.sh @@ -1,33 +1,33 @@ -#!/bin/zsh +#!/bin/csh -export TORCH_SWITCH=OFF +setenv TORCH_SWITCH OFF -export LIBEFP_DIR="/Users/lyuda/LIBEFP/libefp_skp_may2025" -export INSTALLATION_DIR="$LIBEFP_DIR" +#setenv LIBEFP_DIR "/depot/lslipche/data/skp/torch_skp_branch/libefp" +setenv LIBEFP_DIR "/scratch/gilbreth/paulsk/ls_pylib/libefp" +setenv PYTHONPATH "$LIBEFP_DIR/installed/lib64/" -#export PYTHONPATH "$LIBEFP_DIR/installed/lib64/" - -if [[ "$TORCH_SWITCH" == "ON" ]] then +if ("$TORCH_SWITCH" == "ON") then # Set the installation directory for LibTorch - export TORCH_INSTALLED_DIR="" - export LIBTORCH_INCLUDE_DIRS="$TORCH_INSTALLED_DIR/include/;$TORCH_INSTALLED_DIR/include/torch/csrc/api/include" - export TORCHANI_DIR="$LIBEFP_DIR/efpmd/torch" - + setenv CONDA_PREFIX "/apps/spack/gilbreth/apps/anaconda/2020.11-py38-gcc-4.8.5-djkvkvk/etc/profile.d/conda.csh" + setenv TORCH_INSTALLED_DIR "/depot/lslipche/data/skp/libtorch" + setenv LIBTORCH_INCLUDE_DIRS "$TORCH_INSTALLED_DIR/include/;$TORCH_INSTALLED_DIR/include/torch/csrc/api/include" + #setenv PYTHON_REQS "/apps/spack/gilbreth/apps/anaconda/2020.11-py38-gcc-4.8.5-djkvkvk/etc/profile.d/conda.csh;$LIBEFP_DIR/python/../installed;$TORCH_INSTALLED_DIR" + setenv TORCHANI_DIR "$LIBEFP_DIR/efpmd/torch" + echo "Environment variables set for Torch integration:" echo "LIBEFP_DIR=$LIBEFP_DIR" - echo "INSTALLATION_DIR=$INSTALLATION_DIR" echo "TORCH_INSTALLED_DIR=$TORCH_INSTALLED_DIR" echo "LIBTORCH_INCLUDE_DIRS=$LIBTORCH_INCLUDE_DIRS" echo "TORCHANI_DIR=$TORCHANI_DIR" + echo "PYTHON_REQS=$PYTHON_REQS" else - unset LIBTORCH_INCLUDE_DIRS - unset TORCH_INSTALLED_DIR - unset TORCHANI_DIR + unsetenv LIBTORCH_INCLUDE_DIRS + unsetenv TORCH_INSTALLED_DIR + unsetenv TORCHANI_DIR echo "Torch integration is disabled. Only basic environment variables are set:" echo "LIBEFP_DIR=$LIBEFP_DIR" - echo "INSTALLATION_DIR=$INSTALLATION_DIR" -fi +endif echo "TORCH_SWITCH=$TORCH_SWITCH" diff --git a/tests/out_symm_2pw b/tests/out_symm_2pw new file mode 100644 index 00000000..4a72b605 --- /dev/null +++ b/tests/out_symm_2pw @@ -0,0 +1,4873 @@ +EFPMD ver. 2.0.0 +Copyright (c) 2012-2017 Ilya Kaliman, 2017-2024 Lyudmila Slipchenko + +LIBEFP ver. 2.0.0 +Copyright (c) 2012-2017 Ilya Kaliman + 2018-2022 Lyudmila Slipchenko + +Journal References: + - Kaliman and Slipchenko, JCC 2013. + DOI: http://dx.doi.org/10.1002/jcc.23375 + - Kaliman and Slipchenko, JCC 2015. + DOI: http://dx.doi.org/10.1002/jcc.23772 + +Project web site: https://github.com/libefp2/libefp/ + +RUNNING 1 MPI PROCESSES WITH 1 OPENMP THREADS EACH +WALL CLOCK TIME IS Tue May 13 02:44:10 2025 + +SIMULATION SETTINGS + +run_type sp +coord points +terms elec pol disp xr +special_terms elec pol disp xr +elec_damp screen +disp_damp tt +pol_damp tt +pol_driver iterative +enable_ff false +enable_multistep false +ff_geometry ff.xyz +ff_parameters /../fraglib/params/amber99.prm +single_params_file false +efp_params_file params.efp +enable_cutoff true +swf_cutoff 11 +xr_cutoff 11 +max_steps 100 +multistep_steps 1 +fraglib_path ../fraglib +userlib_path ./ +enable_pbc true +periodic_box 24.0048 27.0356 25.7166 90.0 109.424 90.0 +opt_tol 0.0003 +opt_energy_tol 1e-06 +gtest_tol 1e-06 +ref_energy -2.46943 +hess_central false +num_step_dist 0.001 +num_step_angle 0.01 +ensemble nve +time_step 1 +print_step 1 +velocitize false +temperature 300 +pressure 1 +thermostat_tau 1000 +barostat_tau 10000 +ligand 0 +enable_pairwise true +print_pbc false +symmetry true +special_fragment -100 +enable_torch false +enable_elpot false +opt_special_frag -1 +torch_nn none +ml_path none +userml_path none +custom_nn none +aev_nn none +atom_gradient frag +symm_frag frag +update_params 0 +update_params_cutoff 0 +print 1 + + +SINGLE POINT ENERGY JOB + + + GEOMETRY (ANGSTROMS) + +A01S -6.509027 -0.703872 4.315925 +A02C -5.527225 0.739221 4.530684 +A03C -6.037509 2.064371 4.568640 +A04S -7.763887 2.454224 4.374495 +A05C -8.204440 1.209911 3.186103 +A06C -7.690404 -0.057721 3.155545 +A07C -8.088167 -0.983352 2.158266 +A08N -8.415068 -1.769277 1.354524 +A09C -9.181118 1.610511 2.243393 +A10N -10.030494 1.933586 1.507075 +A11N -5.177090 3.041573 4.778064 +A12S -3.653588 2.410224 5.000220 +A13C -4.154616 0.757673 4.736227 +A14C -3.264318 -0.329564 4.729194 +A15N -2.519451 -1.230593 4.697544 +A01S -1.630227 -4.083322 1.747300 +A02C -2.612029 -2.640229 1.532541 +A03C -2.101745 -1.315079 1.494585 +A04S -0.375367 -0.925226 1.688730 +A05C 0.065186 -2.169539 2.877122 +A06C -0.448850 -3.437171 2.907680 +A07C -0.051087 -4.362802 3.904959 +A08N 0.275814 -5.148727 4.708701 +A09C 1.041864 -1.768939 3.819832 +A10N 1.891240 -1.445864 4.556150 +A11N -2.962164 -0.337877 1.285161 +A12S -4.485666 -0.969226 1.063005 +A13C -3.984638 -2.621777 1.326998 +A14C -4.874936 -3.709014 1.334031 +A15N -5.619803 -4.610043 1.365681 +A01S 6.509027 0.703872 -4.315925 +A02C 5.527225 -0.739221 -4.530684 +A03C 6.037509 -2.064371 -4.568640 +A04S 7.763887 -2.454224 -4.374495 +A05C 8.204440 -1.209911 -3.186103 +A06C 7.690404 0.057721 -3.155545 +A07C 8.088167 0.983352 -2.158266 +A08N 8.415068 1.769277 -1.354524 +A09C 9.181118 -1.610511 -2.243393 +A10N 10.030494 -1.933586 -1.507075 +A11N 5.177090 -3.041573 -4.778064 +A12S 3.653588 -2.410224 -5.000220 +A13C 4.154616 -0.757673 -4.736227 +A14C 3.264318 0.329564 -4.729194 +A15N 2.519451 1.230593 -4.697544 +A01S 1.630227 4.083322 -1.747300 +A02C 2.612029 2.640229 -1.532541 +A03C 2.101745 1.315079 -1.494585 +A04S 0.375367 0.925226 -1.688730 +A05C -0.065186 2.169539 -2.877122 +A06C 0.448850 3.437171 -2.907680 +A07C 0.051087 4.362802 -3.904959 +A08N -0.275814 5.148727 -4.708701 +A09C -1.041864 1.768939 -3.819832 +A10N -1.891240 1.445864 -4.556150 +A11N 2.962164 0.337877 -1.285161 +A12S 4.485666 0.969226 -1.063005 +A13C 3.984638 2.621777 -1.326998 +A14C 4.874936 3.709014 -1.334031 +A15N 5.619803 4.610043 -1.365681 +A01S -10.785134 -0.703872 16.442375 +A02C -9.803332 0.739221 16.657134 +A03C -10.313616 2.064371 16.695090 +A04S -12.039994 2.454224 16.500945 +A05C -12.480547 1.209911 15.312553 +A06C -11.966511 -0.057721 15.281995 +A07C -12.364274 -0.983352 14.284716 +A08N -12.691175 -1.769277 13.480974 +A09C -13.457225 1.610511 14.369843 +A10N -14.306601 1.933586 13.633525 +A11N -9.453197 3.041573 16.904514 +A12S -7.929695 2.410224 17.126670 +A13C -8.430723 0.757673 16.862677 +A14C -7.540425 -0.329564 16.855644 +A15N -6.795558 -1.230593 16.823994 +A01S -5.906334 -4.083322 13.873750 +A02C -6.888136 -2.640229 13.658991 +A03C -6.377852 -1.315079 13.621035 +A04S -4.651474 -0.925226 13.815180 +A05C -4.210921 -2.169539 15.003572 +A06C -4.724957 -3.437171 15.034130 +A07C -4.327194 -4.362802 16.031409 +A08N -4.000293 -5.148727 16.835151 +A09C -3.234243 -1.768939 15.946282 +A10N -2.384867 -1.445864 16.682600 +A11N -7.238271 -0.337877 13.411611 +A12S -8.761773 -0.969226 13.189455 +A13C -8.260745 -2.621777 13.453448 +A14C -9.151043 -3.709014 13.460481 +A15N -9.895910 -4.610043 13.492131 +A01S 2.232919 0.703872 7.810525 +A02C 1.251118 -0.739221 7.595766 +A03C 1.761402 -2.064371 7.557810 +A04S 3.487780 -2.454223 7.751955 +A05C 3.928333 -1.209910 8.940347 +A06C 3.414296 0.057722 8.970905 +A07C 3.812058 0.983353 9.968184 +A08N 4.138959 1.769278 10.771926 +A09C 4.905010 -1.610509 9.883058 +A10N 5.754386 -1.933584 10.619376 +A11N 0.900984 -3.041573 7.348386 +A12S -0.622518 -2.410225 7.126230 +A13C -0.121491 -0.757674 7.390223 +A14C -1.011790 0.329563 7.397255 +A15N -1.756657 1.230591 7.428905 +A01S -2.645880 4.083322 10.379150 +A02C -1.664079 2.640229 10.593909 +A03C -2.174363 1.315079 10.631865 +A04S -3.900741 0.925227 10.437720 +A05C -4.341294 2.169540 9.249328 +A06C -3.827257 3.437172 9.218770 +A07C -4.225019 4.362803 8.221491 +A08N -4.551920 5.148728 7.417749 +A09C -5.317971 1.768941 8.306617 +A10N -6.167347 1.445866 7.570299 +A11N -1.313945 0.337877 10.841289 +A12S 0.209557 0.969225 11.063445 +A13C -0.291470 2.621776 10.799452 +A14C 0.598829 3.709013 10.792420 +A15N 1.343696 4.610041 10.760770 +A01S -6.509027 6.055028 4.315925 +A02C -5.527225 7.498121 4.530684 +A03C -6.037509 8.823271 4.568640 +A04S -7.763887 9.213124 4.374495 +A05C -8.204440 7.968811 3.186103 +A06C -7.690404 6.701179 3.155545 +A07C -8.088167 5.775548 2.158266 +A08N -8.415068 4.989623 1.354524 +A09C -9.181118 8.369411 2.243393 +A10N -10.030494 8.692486 1.507075 +A11N -5.177090 9.800473 4.778064 +A12S -3.653588 9.169124 5.000220 +A13C -4.154616 7.516573 4.736227 +A14C -3.264318 6.429336 4.729194 +A15N -2.519451 5.528307 4.697544 +A01S -1.630227 2.675578 1.747300 +A02C -2.612029 4.118671 1.532541 +A03C -2.101745 5.443821 1.494585 +A04S -0.375367 5.833674 1.688730 +A05C 0.065186 4.589361 2.877122 +A06C -0.448850 3.321729 2.907680 +A07C -0.051087 2.396098 3.904959 +A08N 0.275814 1.610173 4.708701 +A09C 1.041864 4.989961 3.819832 +A10N 1.891240 5.313036 4.556150 +A11N -2.962164 6.421023 1.285161 +A12S -4.485666 5.789674 1.063005 +A13C -3.984638 4.137123 1.326998 +A14C -4.874936 3.049886 1.334031 +A15N -5.619803 2.148857 1.365681 +A01S 6.509027 7.462772 -4.315925 +A02C 5.527225 6.019679 -4.530684 +A03C 6.037509 4.694529 -4.568640 +A04S 7.763887 4.304676 -4.374495 +A05C 8.204440 5.548989 -3.186103 +A06C 7.690404 6.816621 -3.155545 +A07C 8.088167 7.742252 -2.158266 +A08N 8.415068 8.528177 -1.354524 +A09C 9.181118 5.148389 -2.243393 +A10N 10.030494 4.825314 -1.507075 +A11N 5.177090 3.717327 -4.778064 +A12S 3.653588 4.348676 -5.000220 +A13C 4.154616 6.001227 -4.736227 +A14C 3.264318 7.088464 -4.729194 +A15N 2.519451 7.989493 -4.697544 +A01S 1.630227 10.842222 -1.747300 +A02C 2.612029 9.399129 -1.532541 +A03C 2.101745 8.073979 -1.494585 +A04S 0.375367 7.684126 -1.688730 +A05C -0.065186 8.928439 -2.877122 +A06C 0.448850 10.196071 -2.907680 +A07C 0.051087 11.121702 -3.904959 +A08N -0.275814 11.907627 -4.708701 +A09C -1.041864 8.527839 -3.819832 +A10N -1.891240 8.204764 -4.556150 +A11N 2.962164 7.096777 -1.285161 +A12S 4.485666 7.728126 -1.063005 +A13C 3.984638 9.380677 -1.326998 +A14C 4.874936 10.467914 -1.334031 +A15N 5.619803 11.368943 -1.365681 +A01S -10.785134 6.055028 16.442375 +A02C -9.803332 7.498121 16.657134 +A03C -10.313616 8.823271 16.695090 +A04S -12.039994 9.213124 16.500945 +A05C -12.480547 7.968811 15.312553 +A06C -11.966511 6.701179 15.281995 +A07C -12.364274 5.775548 14.284716 +A08N -12.691175 4.989623 13.480974 +A09C -13.457225 8.369411 14.369843 +A10N -14.306601 8.692486 13.633525 +A11N -9.453197 9.800473 16.904514 +A12S -7.929695 9.169124 17.126670 +A13C -8.430723 7.516573 16.862677 +A14C -7.540425 6.429336 16.855644 +A15N -6.795558 5.528307 16.823994 +A01S -5.906334 2.675578 13.873750 +A02C -6.888136 4.118671 13.658991 +A03C -6.377852 5.443821 13.621035 +A04S -4.651474 5.833674 13.815180 +A05C -4.210921 4.589361 15.003572 +A06C -4.724957 3.321729 15.034130 +A07C -4.327194 2.396098 16.031409 +A08N -4.000293 1.610173 16.835151 +A09C -3.234243 4.989961 15.946282 +A10N -2.384867 5.313036 16.682600 +A11N -7.238271 6.421023 13.411611 +A12S -8.761773 5.789674 13.189455 +A13C -8.260745 4.137123 13.453448 +A14C -9.151043 3.049886 13.460481 +A15N -9.895910 2.148857 13.492131 +A01S 2.232919 7.462772 7.810525 +A02C 1.251118 6.019679 7.595766 +A03C 1.761402 4.694529 7.557810 +A04S 3.487780 4.304677 7.751955 +A05C 3.928333 5.548990 8.940347 +A06C 3.414296 6.816622 8.970905 +A07C 3.812058 7.742253 9.968184 +A08N 4.138959 8.528178 10.771926 +A09C 4.905010 5.148391 9.883058 +A10N 5.754386 4.825316 10.619376 +A11N 0.900984 3.717327 7.348386 +A12S -0.622518 4.348675 7.126230 +A13C -0.121491 6.001226 7.390223 +A14C -1.011790 7.088463 7.397255 +A15N -1.756657 7.989491 7.428905 +A01S -2.645880 10.842222 10.379150 +A02C -1.664079 9.399129 10.593909 +A03C -2.174363 8.073979 10.631865 +A04S -3.900741 7.684127 10.437720 +A05C -4.341294 8.928440 9.249328 +A06C -3.827257 10.196072 9.218770 +A07C -4.225019 11.121703 8.221491 +A08N -4.551920 11.907628 7.417749 +A09C -5.317971 8.527841 8.306617 +A10N -6.167347 8.204766 7.570299 +A11N -1.313945 7.096777 10.841289 +A12S 0.209557 7.728125 11.063445 +A13C -0.291470 9.380676 10.799452 +A14C 0.598829 10.467913 10.792420 +A15N 1.343696 11.368941 10.760770 +A01S -6.509027 12.813928 4.315925 +A02C -5.527225 14.257021 4.530684 +A03C -6.037509 15.582171 4.568640 +A04S -7.763887 15.972024 4.374495 +A05C -8.204440 14.727711 3.186103 +A06C -7.690404 13.460079 3.155545 +A07C -8.088167 12.534448 2.158266 +A08N -8.415068 11.748523 1.354524 +A09C -9.181118 15.128311 2.243393 +A10N -10.030494 15.451386 1.507075 +A11N -5.177090 16.559373 4.778064 +A12S -3.653588 15.928024 5.000220 +A13C -4.154616 14.275473 4.736227 +A14C -3.264318 13.188236 4.729194 +A15N -2.519451 12.287207 4.697544 +A01S -1.630227 9.434478 1.747300 +A02C -2.612029 10.877571 1.532541 +A03C -2.101745 12.202721 1.494585 +A04S -0.375367 12.592574 1.688730 +A05C 0.065186 11.348261 2.877122 +A06C -0.448850 10.080629 2.907680 +A07C -0.051087 9.154998 3.904959 +A08N 0.275814 8.369073 4.708701 +A09C 1.041864 11.748861 3.819832 +A10N 1.891240 12.071936 4.556150 +A11N -2.962164 13.179923 1.285161 +A12S -4.485666 12.548574 1.063005 +A13C -3.984638 10.896023 1.326998 +A14C -4.874936 9.808786 1.334031 +A15N -5.619803 8.907757 1.365681 +A01S 6.509027 14.221672 -4.315925 +A02C 5.527225 12.778579 -4.530684 +A03C 6.037509 11.453429 -4.568640 +A04S 7.763887 11.063576 -4.374495 +A05C 8.204440 12.307889 -3.186103 +A06C 7.690404 13.575521 -3.155545 +A07C 8.088167 14.501152 -2.158266 +A08N 8.415068 15.287077 -1.354524 +A09C 9.181118 11.907289 -2.243393 +A10N 10.030494 11.584214 -1.507075 +A11N 5.177090 10.476227 -4.778064 +A12S 3.653588 11.107576 -5.000220 +A13C 4.154616 12.760127 -4.736227 +A14C 3.264318 13.847364 -4.729194 +A15N 2.519451 14.748393 -4.697544 +A01S 1.630227 17.601122 -1.747300 +A02C 2.612029 16.158029 -1.532541 +A03C 2.101745 14.832879 -1.494585 +A04S 0.375367 14.443026 -1.688730 +A05C -0.065186 15.687339 -2.877122 +A06C 0.448850 16.954971 -2.907680 +A07C 0.051087 17.880602 -3.904959 +A08N -0.275814 18.666527 -4.708701 +A09C -1.041864 15.286739 -3.819832 +A10N -1.891240 14.963664 -4.556150 +A11N 2.962164 13.855677 -1.285161 +A12S 4.485666 14.487026 -1.063005 +A13C 3.984638 16.139577 -1.326998 +A14C 4.874936 17.226814 -1.334031 +A15N 5.619803 18.127843 -1.365681 +A01S -10.785134 12.813928 16.442375 +A02C -9.803332 14.257021 16.657134 +A03C -10.313616 15.582171 16.695090 +A04S -12.039994 15.972024 16.500945 +A05C -12.480547 14.727711 15.312553 +A06C -11.966511 13.460079 15.281995 +A07C -12.364274 12.534448 14.284716 +A08N -12.691175 11.748523 13.480974 +A09C -13.457225 15.128311 14.369843 +A10N -14.306601 15.451386 13.633525 +A11N -9.453197 16.559373 16.904514 +A12S -7.929695 15.928024 17.126670 +A13C -8.430723 14.275473 16.862677 +A14C -7.540425 13.188236 16.855644 +A15N -6.795558 12.287207 16.823994 +A01S -5.906334 9.434478 13.873750 +A02C -6.888136 10.877571 13.658991 +A03C -6.377852 12.202721 13.621035 +A04S -4.651474 12.592574 13.815180 +A05C -4.210921 11.348261 15.003572 +A06C -4.724957 10.080629 15.034130 +A07C -4.327194 9.154998 16.031409 +A08N -4.000293 8.369073 16.835151 +A09C -3.234243 11.748861 15.946282 +A10N -2.384867 12.071936 16.682600 +A11N -7.238271 13.179923 13.411611 +A12S -8.761773 12.548574 13.189455 +A13C -8.260745 10.896023 13.453448 +A14C -9.151043 9.808786 13.460481 +A15N -9.895910 8.907757 13.492131 +A01S 2.232919 14.221672 7.810525 +A02C 1.251118 12.778579 7.595766 +A03C 1.761402 11.453429 7.557810 +A04S 3.487780 11.063577 7.751955 +A05C 3.928333 12.307890 8.940347 +A06C 3.414296 13.575522 8.970905 +A07C 3.812058 14.501153 9.968184 +A08N 4.138959 15.287078 10.771926 +A09C 4.905010 11.907291 9.883058 +A10N 5.754386 11.584216 10.619376 +A11N 0.900984 10.476227 7.348386 +A12S -0.622518 11.107575 7.126230 +A13C -0.121491 12.760126 7.390223 +A14C -1.011790 13.847363 7.397255 +A15N -1.756657 14.748391 7.428905 +A01S -2.645880 17.601122 10.379150 +A02C -1.664079 16.158029 10.593909 +A03C -2.174363 14.832879 10.631865 +A04S -3.900741 14.443027 10.437720 +A05C -4.341294 15.687340 9.249328 +A06C -3.827257 16.954972 9.218770 +A07C -4.225019 17.880603 8.221491 +A08N -4.551920 18.666528 7.417749 +A09C -5.317971 15.286741 8.306617 +A10N -6.167347 14.963666 7.570299 +A11N -1.313945 13.855677 10.841289 +A12S 0.209557 14.487025 11.063445 +A13C -0.291470 16.139576 10.799452 +A14C 0.598829 17.226813 10.792420 +A15N 1.343696 18.127841 10.760770 +A01S -6.509027 19.572828 4.315925 +A02C -5.527225 21.015921 4.530684 +A03C -6.037509 22.341071 4.568640 +A04S -7.763887 22.730924 4.374495 +A05C -8.204440 21.486611 3.186103 +A06C -7.690404 20.218979 3.155545 +A07C -8.088167 19.293348 2.158266 +A08N -8.415068 18.507423 1.354524 +A09C -9.181118 21.887211 2.243393 +A10N -10.030494 22.210286 1.507075 +A11N -5.177090 23.318273 4.778064 +A12S -3.653588 22.686924 5.000220 +A13C -4.154616 21.034373 4.736227 +A14C -3.264318 19.947136 4.729194 +A15N -2.519451 19.046107 4.697544 +A01S -1.630227 16.193378 1.747300 +A02C -2.612029 17.636471 1.532541 +A03C -2.101745 18.961621 1.494585 +A04S -0.375367 19.351474 1.688730 +A05C 0.065186 18.107161 2.877122 +A06C -0.448850 16.839529 2.907680 +A07C -0.051087 15.913898 3.904959 +A08N 0.275814 15.127973 4.708701 +A09C 1.041864 18.507761 3.819832 +A10N 1.891240 18.830836 4.556150 +A11N -2.962164 19.938823 1.285161 +A12S -4.485666 19.307474 1.063005 +A13C -3.984638 17.654923 1.326998 +A14C -4.874936 16.567686 1.334031 +A15N -5.619803 15.666657 1.365681 +A01S 6.509027 20.980572 -4.315925 +A02C 5.527225 19.537479 -4.530684 +A03C 6.037509 18.212329 -4.568640 +A04S 7.763887 17.822476 -4.374495 +A05C 8.204440 19.066789 -3.186103 +A06C 7.690404 20.334421 -3.155545 +A07C 8.088167 21.260052 -2.158266 +A08N 8.415068 22.045977 -1.354524 +A09C 9.181118 18.666189 -2.243393 +A10N 10.030494 18.343114 -1.507075 +A11N 5.177090 17.235127 -4.778064 +A12S 3.653588 17.866476 -5.000220 +A13C 4.154616 19.519027 -4.736227 +A14C 3.264318 20.606264 -4.729194 +A15N 2.519451 21.507293 -4.697544 +A01S 1.630227 24.360022 -1.747300 +A02C 2.612029 22.916929 -1.532541 +A03C 2.101745 21.591779 -1.494585 +A04S 0.375367 21.201926 -1.688730 +A05C -0.065186 22.446239 -2.877122 +A06C 0.448850 23.713871 -2.907680 +A07C 0.051087 24.639502 -3.904959 +A08N -0.275814 25.425427 -4.708701 +A09C -1.041864 22.045639 -3.819832 +A10N -1.891240 21.722564 -4.556150 +A11N 2.962164 20.614577 -1.285161 +A12S 4.485666 21.245926 -1.063005 +A13C 3.984638 22.898477 -1.326998 +A14C 4.874936 23.985714 -1.334031 +A15N 5.619803 24.886743 -1.365681 +A01S -10.785134 19.572828 16.442375 +A02C -9.803332 21.015921 16.657134 +A03C -10.313616 22.341071 16.695090 +A04S -12.039994 22.730924 16.500945 +A05C -12.480547 21.486611 15.312553 +A06C -11.966511 20.218979 15.281995 +A07C -12.364274 19.293348 14.284716 +A08N -12.691175 18.507423 13.480974 +A09C -13.457225 21.887211 14.369843 +A10N -14.306601 22.210286 13.633525 +A11N -9.453197 23.318273 16.904514 +A12S -7.929695 22.686924 17.126670 +A13C -8.430723 21.034373 16.862677 +A14C -7.540425 19.947136 16.855644 +A15N -6.795558 19.046107 16.823994 +A01S -5.906334 16.193378 13.873750 +A02C -6.888136 17.636471 13.658991 +A03C -6.377852 18.961621 13.621035 +A04S -4.651474 19.351474 13.815180 +A05C -4.210921 18.107161 15.003572 +A06C -4.724957 16.839529 15.034130 +A07C -4.327194 15.913898 16.031409 +A08N -4.000293 15.127973 16.835151 +A09C -3.234243 18.507761 15.946282 +A10N -2.384867 18.830836 16.682600 +A11N -7.238271 19.938823 13.411611 +A12S -8.761773 19.307474 13.189455 +A13C -8.260745 17.654923 13.453448 +A14C -9.151043 16.567686 13.460481 +A15N -9.895910 15.666657 13.492131 +A01S 2.232919 20.980572 7.810525 +A02C 1.251118 19.537479 7.595766 +A03C 1.761402 18.212329 7.557810 +A04S 3.487780 17.822477 7.751955 +A05C 3.928333 19.066790 8.940347 +A06C 3.414296 20.334422 8.970905 +A07C 3.812058 21.260053 9.968184 +A08N 4.138959 22.045978 10.771926 +A09C 4.905010 18.666191 9.883058 +A10N 5.754386 18.343116 10.619376 +A11N 0.900984 17.235127 7.348386 +A12S -0.622518 17.866475 7.126230 +A13C -0.121491 19.519026 7.390223 +A14C -1.011790 20.606263 7.397255 +A15N -1.756657 21.507291 7.428905 +A01S -2.645880 24.360022 10.379150 +A02C -1.664079 22.916929 10.593909 +A03C -2.174363 21.591779 10.631865 +A04S -3.900741 21.201927 10.437720 +A05C -4.341294 22.446240 9.249328 +A06C -3.827257 23.713872 9.218770 +A07C -4.225019 24.639503 8.221491 +A08N -4.551920 25.425428 7.417749 +A09C -5.317971 22.045641 8.306617 +A10N -6.167347 21.722566 7.570299 +A11N -1.313945 20.614577 10.841289 +A12S 0.209557 21.245925 11.063445 +A13C -0.291470 22.898476 10.799452 +A14C 0.598829 23.985713 10.792420 +A15N 1.343696 24.886741 10.760770 +A01S 5.493373 -0.703872 4.315925 +A02C 6.475175 0.739221 4.530684 +A03C 5.964891 2.064371 4.568640 +A04S 4.238513 2.454224 4.374495 +A05C 3.797960 1.209911 3.186103 +A06C 4.311996 -0.057721 3.155545 +A07C 3.914233 -0.983352 2.158266 +A08N 3.587332 -1.769277 1.354524 +A09C 2.821282 1.610511 2.243393 +A10N 1.971906 1.933586 1.507075 +A11N 6.825310 3.041573 4.778064 +A12S 8.348812 2.410224 5.000220 +A13C 7.847784 0.757673 4.736227 +A14C 8.738082 -0.329564 4.729194 +A15N 9.482949 -1.230593 4.697544 +A01S 10.372173 -4.083322 1.747300 +A02C 9.390371 -2.640229 1.532541 +A03C 9.900655 -1.315079 1.494585 +A04S 11.627033 -0.925226 1.688730 +A05C 12.067586 -2.169539 2.877122 +A06C 11.553550 -3.437171 2.907680 +A07C 11.951313 -4.362802 3.904959 +A08N 12.278214 -5.148727 4.708701 +A09C 13.044264 -1.768939 3.819832 +A10N 13.893640 -1.445864 4.556150 +A11N 9.040236 -0.337877 1.285161 +A12S 7.516734 -0.969226 1.063005 +A13C 8.017762 -2.621777 1.326998 +A14C 7.127464 -3.709014 1.334031 +A15N 6.382597 -4.610043 1.365681 +A01S 18.511427 0.703872 -4.315925 +A02C 17.529625 -0.739221 -4.530684 +A03C 18.039909 -2.064371 -4.568640 +A04S 19.766287 -2.454224 -4.374495 +A05C 20.206840 -1.209911 -3.186103 +A06C 19.692804 0.057721 -3.155545 +A07C 20.090567 0.983352 -2.158266 +A08N 20.417468 1.769277 -1.354524 +A09C 21.183518 -1.610511 -2.243393 +A10N 22.032894 -1.933586 -1.507075 +A11N 17.179490 -3.041573 -4.778064 +A12S 15.655988 -2.410224 -5.000220 +A13C 16.157016 -0.757673 -4.736227 +A14C 15.266718 0.329564 -4.729194 +A15N 14.521851 1.230593 -4.697544 +A01S 13.632627 4.083322 -1.747300 +A02C 14.614429 2.640229 -1.532541 +A03C 14.104145 1.315079 -1.494585 +A04S 12.377767 0.925226 -1.688730 +A05C 11.937214 2.169539 -2.877122 +A06C 12.451250 3.437171 -2.907680 +A07C 12.053487 4.362802 -3.904959 +A08N 11.726586 5.148727 -4.708701 +A09C 10.960536 1.768939 -3.819832 +A10N 10.111160 1.445864 -4.556150 +A11N 14.964564 0.337877 -1.285161 +A12S 16.488066 0.969226 -1.063005 +A13C 15.987038 2.621777 -1.326998 +A14C 16.877336 3.709014 -1.334031 +A15N 17.622203 4.610043 -1.365681 +A01S 1.217266 -0.703872 16.442375 +A02C 2.199068 0.739221 16.657134 +A03C 1.688784 2.064371 16.695090 +A04S -0.037594 2.454224 16.500945 +A05C -0.478147 1.209911 15.312553 +A06C 0.035889 -0.057721 15.281995 +A07C -0.361874 -0.983352 14.284716 +A08N -0.688775 -1.769277 13.480974 +A09C -1.454825 1.610511 14.369843 +A10N -2.304201 1.933586 13.633525 +A11N 2.549203 3.041573 16.904514 +A12S 4.072705 2.410224 17.126670 +A13C 3.571677 0.757673 16.862677 +A14C 4.461975 -0.329564 16.855644 +A15N 5.206842 -1.230593 16.823994 +A01S 6.096066 -4.083322 13.873750 +A02C 5.114264 -2.640229 13.658991 +A03C 5.624548 -1.315079 13.621035 +A04S 7.350926 -0.925226 13.815180 +A05C 7.791479 -2.169539 15.003572 +A06C 7.277443 -3.437171 15.034130 +A07C 7.675206 -4.362802 16.031409 +A08N 8.002107 -5.148727 16.835151 +A09C 8.768157 -1.768939 15.946282 +A10N 9.617533 -1.445864 16.682600 +A11N 4.764129 -0.337877 13.411611 +A12S 3.240627 -0.969226 13.189455 +A13C 3.741655 -2.621777 13.453448 +A14C 2.851357 -3.709014 13.460481 +A15N 2.106490 -4.610043 13.492131 +A01S 14.235319 0.703872 7.810525 +A02C 13.253518 -0.739221 7.595766 +A03C 13.763802 -2.064371 7.557810 +A04S 15.490180 -2.454223 7.751955 +A05C 15.930733 -1.209910 8.940347 +A06C 15.416696 0.057722 8.970905 +A07C 15.814458 0.983353 9.968184 +A08N 16.141359 1.769278 10.771926 +A09C 16.907410 -1.610509 9.883058 +A10N 17.756786 -1.933584 10.619376 +A11N 12.903384 -3.041573 7.348386 +A12S 11.379882 -2.410225 7.126230 +A13C 11.880909 -0.757674 7.390223 +A14C 10.990610 0.329563 7.397255 +A15N 10.245743 1.230591 7.428905 +A01S 9.356520 4.083322 10.379150 +A02C 10.338321 2.640229 10.593909 +A03C 9.828037 1.315079 10.631865 +A04S 8.101659 0.925227 10.437720 +A05C 7.661106 2.169540 9.249328 +A06C 8.175143 3.437172 9.218770 +A07C 7.777381 4.362803 8.221491 +A08N 7.450480 5.148728 7.417749 +A09C 6.684429 1.768941 8.306617 +A10N 5.835053 1.445866 7.570299 +A11N 10.688455 0.337877 10.841289 +A12S 12.211957 0.969225 11.063445 +A13C 11.710930 2.621776 10.799452 +A14C 12.601229 3.709013 10.792420 +A15N 13.346096 4.610041 10.760770 +A01S 5.493373 6.055028 4.315925 +A02C 6.475175 7.498121 4.530684 +A03C 5.964891 8.823271 4.568640 +A04S 4.238513 9.213124 4.374495 +A05C 3.797960 7.968811 3.186103 +A06C 4.311996 6.701179 3.155545 +A07C 3.914233 5.775548 2.158266 +A08N 3.587332 4.989623 1.354524 +A09C 2.821282 8.369411 2.243393 +A10N 1.971906 8.692486 1.507075 +A11N 6.825310 9.800473 4.778064 +A12S 8.348812 9.169124 5.000220 +A13C 7.847784 7.516573 4.736227 +A14C 8.738082 6.429336 4.729194 +A15N 9.482949 5.528307 4.697544 +A01S 10.372173 2.675578 1.747300 +A02C 9.390371 4.118671 1.532541 +A03C 9.900655 5.443821 1.494585 +A04S 11.627033 5.833674 1.688730 +A05C 12.067586 4.589361 2.877122 +A06C 11.553550 3.321729 2.907680 +A07C 11.951313 2.396098 3.904959 +A08N 12.278214 1.610173 4.708701 +A09C 13.044264 4.989961 3.819832 +A10N 13.893640 5.313036 4.556150 +A11N 9.040236 6.421023 1.285161 +A12S 7.516734 5.789674 1.063005 +A13C 8.017762 4.137123 1.326998 +A14C 7.127464 3.049886 1.334031 +A15N 6.382597 2.148857 1.365681 +A01S 18.511427 7.462772 -4.315925 +A02C 17.529625 6.019679 -4.530684 +A03C 18.039909 4.694529 -4.568640 +A04S 19.766287 4.304676 -4.374495 +A05C 20.206840 5.548989 -3.186103 +A06C 19.692804 6.816621 -3.155545 +A07C 20.090567 7.742252 -2.158266 +A08N 20.417468 8.528177 -1.354524 +A09C 21.183518 5.148389 -2.243393 +A10N 22.032894 4.825314 -1.507075 +A11N 17.179490 3.717327 -4.778064 +A12S 15.655988 4.348676 -5.000220 +A13C 16.157016 6.001227 -4.736227 +A14C 15.266718 7.088464 -4.729194 +A15N 14.521851 7.989493 -4.697544 +A01S 13.632627 10.842222 -1.747300 +A02C 14.614429 9.399129 -1.532541 +A03C 14.104145 8.073979 -1.494585 +A04S 12.377767 7.684126 -1.688730 +A05C 11.937214 8.928439 -2.877122 +A06C 12.451250 10.196071 -2.907680 +A07C 12.053487 11.121702 -3.904959 +A08N 11.726586 11.907627 -4.708701 +A09C 10.960536 8.527839 -3.819832 +A10N 10.111160 8.204764 -4.556150 +A11N 14.964564 7.096777 -1.285161 +A12S 16.488066 7.728126 -1.063005 +A13C 15.987038 9.380677 -1.326998 +A14C 16.877336 10.467914 -1.334031 +A15N 17.622203 11.368943 -1.365681 +A01S 1.217266 6.055028 16.442375 +A02C 2.199068 7.498121 16.657134 +A03C 1.688784 8.823271 16.695090 +A04S -0.037594 9.213124 16.500945 +A05C -0.478147 7.968811 15.312553 +A06C 0.035889 6.701179 15.281995 +A07C -0.361874 5.775548 14.284716 +A08N -0.688775 4.989623 13.480974 +A09C -1.454825 8.369411 14.369843 +A10N -2.304201 8.692486 13.633525 +A11N 2.549203 9.800473 16.904514 +A12S 4.072705 9.169124 17.126670 +A13C 3.571677 7.516573 16.862677 +A14C 4.461975 6.429336 16.855644 +A15N 5.206842 5.528307 16.823994 +A01S 6.096066 2.675578 13.873750 +A02C 5.114264 4.118671 13.658991 +A03C 5.624548 5.443821 13.621035 +A04S 7.350926 5.833674 13.815180 +A05C 7.791479 4.589361 15.003572 +A06C 7.277443 3.321729 15.034130 +A07C 7.675206 2.396098 16.031409 +A08N 8.002107 1.610173 16.835151 +A09C 8.768157 4.989961 15.946282 +A10N 9.617533 5.313036 16.682600 +A11N 4.764129 6.421023 13.411611 +A12S 3.240627 5.789674 13.189455 +A13C 3.741655 4.137123 13.453448 +A14C 2.851357 3.049886 13.460481 +A15N 2.106490 2.148857 13.492131 +A01S 14.235319 7.462772 7.810525 +A02C 13.253518 6.019679 7.595766 +A03C 13.763802 4.694529 7.557810 +A04S 15.490180 4.304677 7.751955 +A05C 15.930733 5.548990 8.940347 +A06C 15.416696 6.816622 8.970905 +A07C 15.814458 7.742253 9.968184 +A08N 16.141359 8.528178 10.771926 +A09C 16.907410 5.148391 9.883058 +A10N 17.756786 4.825316 10.619376 +A11N 12.903384 3.717327 7.348386 +A12S 11.379882 4.348675 7.126230 +A13C 11.880909 6.001226 7.390223 +A14C 10.990610 7.088463 7.397255 +A15N 10.245743 7.989491 7.428905 +A01S 9.356520 10.842222 10.379150 +A02C 10.338321 9.399129 10.593909 +A03C 9.828037 8.073979 10.631865 +A04S 8.101659 7.684127 10.437720 +A05C 7.661106 8.928440 9.249328 +A06C 8.175143 10.196072 9.218770 +A07C 7.777381 11.121703 8.221491 +A08N 7.450480 11.907628 7.417749 +A09C 6.684429 8.527841 8.306617 +A10N 5.835053 8.204766 7.570299 +A11N 10.688455 7.096777 10.841289 +A12S 12.211957 7.728125 11.063445 +A13C 11.710930 9.380676 10.799452 +A14C 12.601229 10.467913 10.792420 +A15N 13.346096 11.368941 10.760770 +A01S 5.493373 12.813928 4.315925 +A02C 6.475175 14.257021 4.530684 +A03C 5.964891 15.582171 4.568640 +A04S 4.238513 15.972024 4.374495 +A05C 3.797960 14.727711 3.186103 +A06C 4.311996 13.460079 3.155545 +A07C 3.914233 12.534448 2.158266 +A08N 3.587332 11.748523 1.354524 +A09C 2.821282 15.128311 2.243393 +A10N 1.971906 15.451386 1.507075 +A11N 6.825310 16.559373 4.778064 +A12S 8.348812 15.928024 5.000220 +A13C 7.847784 14.275473 4.736227 +A14C 8.738082 13.188236 4.729194 +A15N 9.482949 12.287207 4.697544 +A01S 10.372173 9.434478 1.747300 +A02C 9.390371 10.877571 1.532541 +A03C 9.900655 12.202721 1.494585 +A04S 11.627033 12.592574 1.688730 +A05C 12.067586 11.348261 2.877122 +A06C 11.553550 10.080629 2.907680 +A07C 11.951313 9.154998 3.904959 +A08N 12.278214 8.369073 4.708701 +A09C 13.044264 11.748861 3.819832 +A10N 13.893640 12.071936 4.556150 +A11N 9.040236 13.179923 1.285161 +A12S 7.516734 12.548574 1.063005 +A13C 8.017762 10.896023 1.326998 +A14C 7.127464 9.808786 1.334031 +A15N 6.382597 8.907757 1.365681 +A01S 18.511427 14.221672 -4.315925 +A02C 17.529625 12.778579 -4.530684 +A03C 18.039909 11.453429 -4.568640 +A04S 19.766287 11.063576 -4.374495 +A05C 20.206840 12.307889 -3.186103 +A06C 19.692804 13.575521 -3.155545 +A07C 20.090567 14.501152 -2.158266 +A08N 20.417468 15.287077 -1.354524 +A09C 21.183518 11.907289 -2.243393 +A10N 22.032894 11.584214 -1.507075 +A11N 17.179490 10.476227 -4.778064 +A12S 15.655988 11.107576 -5.000220 +A13C 16.157016 12.760127 -4.736227 +A14C 15.266718 13.847364 -4.729194 +A15N 14.521851 14.748393 -4.697544 +A01S 13.632627 17.601122 -1.747300 +A02C 14.614429 16.158029 -1.532541 +A03C 14.104145 14.832879 -1.494585 +A04S 12.377767 14.443026 -1.688730 +A05C 11.937214 15.687339 -2.877122 +A06C 12.451250 16.954971 -2.907680 +A07C 12.053487 17.880602 -3.904959 +A08N 11.726586 18.666527 -4.708701 +A09C 10.960536 15.286739 -3.819832 +A10N 10.111160 14.963664 -4.556150 +A11N 14.964564 13.855677 -1.285161 +A12S 16.488066 14.487026 -1.063005 +A13C 15.987038 16.139577 -1.326998 +A14C 16.877336 17.226814 -1.334031 +A15N 17.622203 18.127843 -1.365681 +A01S 1.217266 12.813928 16.442375 +A02C 2.199068 14.257021 16.657134 +A03C 1.688784 15.582171 16.695090 +A04S -0.037594 15.972024 16.500945 +A05C -0.478147 14.727711 15.312553 +A06C 0.035889 13.460079 15.281995 +A07C -0.361874 12.534448 14.284716 +A08N -0.688775 11.748523 13.480974 +A09C -1.454825 15.128311 14.369843 +A10N -2.304201 15.451386 13.633525 +A11N 2.549203 16.559373 16.904514 +A12S 4.072705 15.928024 17.126670 +A13C 3.571677 14.275473 16.862677 +A14C 4.461975 13.188236 16.855644 +A15N 5.206842 12.287207 16.823994 +A01S 6.096066 9.434478 13.873750 +A02C 5.114264 10.877571 13.658991 +A03C 5.624548 12.202721 13.621035 +A04S 7.350926 12.592574 13.815180 +A05C 7.791479 11.348261 15.003572 +A06C 7.277443 10.080629 15.034130 +A07C 7.675206 9.154998 16.031409 +A08N 8.002107 8.369073 16.835151 +A09C 8.768157 11.748861 15.946282 +A10N 9.617533 12.071936 16.682600 +A11N 4.764129 13.179923 13.411611 +A12S 3.240627 12.548574 13.189455 +A13C 3.741655 10.896023 13.453448 +A14C 2.851357 9.808786 13.460481 +A15N 2.106490 8.907757 13.492131 +A01S 14.235319 14.221672 7.810525 +A02C 13.253518 12.778579 7.595766 +A03C 13.763802 11.453429 7.557810 +A04S 15.490180 11.063577 7.751955 +A05C 15.930733 12.307890 8.940347 +A06C 15.416696 13.575522 8.970905 +A07C 15.814458 14.501153 9.968184 +A08N 16.141359 15.287078 10.771926 +A09C 16.907410 11.907291 9.883058 +A10N 17.756786 11.584216 10.619376 +A11N 12.903384 10.476227 7.348386 +A12S 11.379882 11.107575 7.126230 +A13C 11.880909 12.760126 7.390223 +A14C 10.990610 13.847363 7.397255 +A15N 10.245743 14.748391 7.428905 +A01S 9.356520 17.601122 10.379150 +A02C 10.338321 16.158029 10.593909 +A03C 9.828037 14.832879 10.631865 +A04S 8.101659 14.443027 10.437720 +A05C 7.661106 15.687340 9.249328 +A06C 8.175143 16.954972 9.218770 +A07C 7.777381 17.880603 8.221491 +A08N 7.450480 18.666528 7.417749 +A09C 6.684429 15.286741 8.306617 +A10N 5.835053 14.963666 7.570299 +A11N 10.688455 13.855677 10.841289 +A12S 12.211957 14.487025 11.063445 +A13C 11.710930 16.139576 10.799452 +A14C 12.601229 17.226813 10.792420 +A15N 13.346096 18.127841 10.760770 +A01S 5.493373 19.572828 4.315925 +A02C 6.475175 21.015921 4.530684 +A03C 5.964891 22.341071 4.568640 +A04S 4.238513 22.730924 4.374495 +A05C 3.797960 21.486611 3.186103 +A06C 4.311996 20.218979 3.155545 +A07C 3.914233 19.293348 2.158266 +A08N 3.587332 18.507423 1.354524 +A09C 2.821282 21.887211 2.243393 +A10N 1.971906 22.210286 1.507075 +A11N 6.825310 23.318273 4.778064 +A12S 8.348812 22.686924 5.000220 +A13C 7.847784 21.034373 4.736227 +A14C 8.738082 19.947136 4.729194 +A15N 9.482949 19.046107 4.697544 +A01S 10.372173 16.193378 1.747300 +A02C 9.390371 17.636471 1.532541 +A03C 9.900655 18.961621 1.494585 +A04S 11.627033 19.351474 1.688730 +A05C 12.067586 18.107161 2.877122 +A06C 11.553550 16.839529 2.907680 +A07C 11.951313 15.913898 3.904959 +A08N 12.278214 15.127973 4.708701 +A09C 13.044264 18.507761 3.819832 +A10N 13.893640 18.830836 4.556150 +A11N 9.040236 19.938823 1.285161 +A12S 7.516734 19.307474 1.063005 +A13C 8.017762 17.654923 1.326998 +A14C 7.127464 16.567686 1.334031 +A15N 6.382597 15.666657 1.365681 +A01S 18.511427 20.980572 -4.315925 +A02C 17.529625 19.537479 -4.530684 +A03C 18.039909 18.212329 -4.568640 +A04S 19.766287 17.822476 -4.374495 +A05C 20.206840 19.066789 -3.186103 +A06C 19.692804 20.334421 -3.155545 +A07C 20.090567 21.260052 -2.158266 +A08N 20.417468 22.045977 -1.354524 +A09C 21.183518 18.666189 -2.243393 +A10N 22.032894 18.343114 -1.507075 +A11N 17.179490 17.235127 -4.778064 +A12S 15.655988 17.866476 -5.000220 +A13C 16.157016 19.519027 -4.736227 +A14C 15.266718 20.606264 -4.729194 +A15N 14.521851 21.507293 -4.697544 +A01S 13.632627 24.360022 -1.747300 +A02C 14.614429 22.916929 -1.532541 +A03C 14.104145 21.591779 -1.494585 +A04S 12.377767 21.201926 -1.688730 +A05C 11.937214 22.446239 -2.877122 +A06C 12.451250 23.713871 -2.907680 +A07C 12.053487 24.639502 -3.904959 +A08N 11.726586 25.425427 -4.708701 +A09C 10.960536 22.045639 -3.819832 +A10N 10.111160 21.722564 -4.556150 +A11N 14.964564 20.614577 -1.285161 +A12S 16.488066 21.245926 -1.063005 +A13C 15.987038 22.898477 -1.326998 +A14C 16.877336 23.985714 -1.334031 +A15N 17.622203 24.886743 -1.365681 +A01S 1.217266 19.572828 16.442375 +A02C 2.199068 21.015921 16.657134 +A03C 1.688784 22.341071 16.695090 +A04S -0.037594 22.730924 16.500945 +A05C -0.478147 21.486611 15.312553 +A06C 0.035889 20.218979 15.281995 +A07C -0.361874 19.293348 14.284716 +A08N -0.688775 18.507423 13.480974 +A09C -1.454825 21.887211 14.369843 +A10N -2.304201 22.210286 13.633525 +A11N 2.549203 23.318273 16.904514 +A12S 4.072705 22.686924 17.126670 +A13C 3.571677 21.034373 16.862677 +A14C 4.461975 19.947136 16.855644 +A15N 5.206842 19.046107 16.823994 +A01S 6.096066 16.193378 13.873750 +A02C 5.114264 17.636471 13.658991 +A03C 5.624548 18.961621 13.621035 +A04S 7.350926 19.351474 13.815180 +A05C 7.791479 18.107161 15.003572 +A06C 7.277443 16.839529 15.034130 +A07C 7.675206 15.913898 16.031409 +A08N 8.002107 15.127973 16.835151 +A09C 8.768157 18.507761 15.946282 +A10N 9.617533 18.830836 16.682600 +A11N 4.764129 19.938823 13.411611 +A12S 3.240627 19.307474 13.189455 +A13C 3.741655 17.654923 13.453448 +A14C 2.851357 16.567686 13.460481 +A15N 2.106490 15.666657 13.492131 +A01S 14.235319 20.980572 7.810525 +A02C 13.253518 19.537479 7.595766 +A03C 13.763802 18.212329 7.557810 +A04S 15.490180 17.822477 7.751955 +A05C 15.930733 19.066790 8.940347 +A06C 15.416696 20.334422 8.970905 +A07C 15.814458 21.260053 9.968184 +A08N 16.141359 22.045978 10.771926 +A09C 16.907410 18.666191 9.883058 +A10N 17.756786 18.343116 10.619376 +A11N 12.903384 17.235127 7.348386 +A12S 11.379882 17.866475 7.126230 +A13C 11.880909 19.519026 7.390223 +A14C 10.990610 20.606263 7.397255 +A15N 10.245743 21.507291 7.428905 +A01S 9.356520 24.360022 10.379150 +A02C 10.338321 22.916929 10.593909 +A03C 9.828037 21.591779 10.631865 +A04S 8.101659 21.201927 10.437720 +A05C 7.661106 22.446240 9.249328 +A06C 8.175143 23.713872 9.218770 +A07C 7.777381 24.639503 8.221491 +A08N 7.450480 25.425428 7.417749 +A09C 6.684429 22.045641 8.306617 +A10N 5.835053 21.722566 7.570299 +A11N 10.688455 20.614577 10.841289 +A12S 12.211957 21.245925 11.063445 +A13C 11.710930 22.898476 10.799452 +A14C 12.601229 23.985713 10.792420 +A15N 13.346096 24.886741 10.760770 + + + GEOMETRY (ANGSTROMS) + +A01S -6.509027 -0.703872 4.315925 +A02C -5.527225 0.739221 4.530684 +A03C -6.037509 2.064371 4.568640 +A04S -7.763887 2.454224 4.374495 +A05C -8.204440 1.209911 3.186103 +A06C -7.690404 -0.057721 3.155545 +A07C -8.088167 -0.983352 2.158266 +A08N -8.415068 -1.769277 1.354524 +A09C -9.181118 1.610511 2.243393 +A10N -10.030494 1.933586 1.507075 +A11N -5.177090 3.041573 4.778064 +A12S -3.653588 2.410224 5.000220 +A13C -4.154616 0.757673 4.736227 +A14C -3.264318 -0.329564 4.729194 +A15N -2.519451 -1.230593 4.697544 +A01S -1.630227 -4.083322 1.747300 +A02C -2.612029 -2.640229 1.532541 +A03C -2.101745 -1.315079 1.494585 +A04S -0.375367 -0.925226 1.688730 +A05C 0.065186 -2.169539 2.877122 +A06C -0.448850 -3.437171 2.907680 +A07C -0.051087 -4.362802 3.904959 +A08N 0.275814 -5.148727 4.708701 +A09C 1.041864 -1.768939 3.819832 +A10N 1.891240 -1.445864 4.556150 +A11N -2.962164 -0.337877 1.285161 +A12S -4.485666 -0.969226 1.063005 +A13C -3.984638 -2.621777 1.326998 +A14C -4.874936 -3.709014 1.334031 +A15N -5.619803 -4.610043 1.365681 +A01S 6.509027 0.703872 -4.315925 +A02C 5.527225 -0.739221 -4.530684 +A03C 6.037509 -2.064371 -4.568640 +A04S 7.763887 -2.454224 -4.374495 +A05C 8.204440 -1.209911 -3.186103 +A06C 7.690404 0.057721 -3.155545 +A07C 8.088167 0.983352 -2.158266 +A08N 8.415068 1.769277 -1.354524 +A09C 9.181118 -1.610511 -2.243393 +A10N 10.030494 -1.933586 -1.507075 +A11N 5.177090 -3.041573 -4.778064 +A12S 3.653588 -2.410224 -5.000220 +A13C 4.154616 -0.757673 -4.736227 +A14C 3.264318 0.329564 -4.729194 +A15N 2.519451 1.230593 -4.697544 +A01S 1.630227 4.083322 -1.747300 +A02C 2.612029 2.640229 -1.532541 +A03C 2.101745 1.315079 -1.494585 +A04S 0.375367 0.925226 -1.688730 +A05C -0.065186 2.169539 -2.877122 +A06C 0.448850 3.437171 -2.907680 +A07C 0.051087 4.362802 -3.904959 +A08N -0.275814 5.148727 -4.708701 +A09C -1.041864 1.768939 -3.819832 +A10N -1.891240 1.445864 -4.556150 +A11N 2.962164 0.337877 -1.285161 +A12S 4.485666 0.969226 -1.063005 +A13C 3.984638 2.621777 -1.326998 +A14C 4.874936 3.709014 -1.334031 +A15N 5.619803 4.610043 -1.365681 +A01S -10.785134 -0.703872 16.442375 +A02C -9.803332 0.739221 16.657134 +A03C -10.313616 2.064371 16.695090 +A04S -12.039994 2.454224 16.500945 +A05C -12.480547 1.209911 15.312553 +A06C -11.966511 -0.057721 15.281995 +A07C -12.364274 -0.983352 14.284716 +A08N -12.691175 -1.769277 13.480974 +A09C -13.457225 1.610511 14.369843 +A10N -14.306601 1.933586 13.633525 +A11N -9.453197 3.041573 16.904514 +A12S -7.929695 2.410224 17.126670 +A13C -8.430723 0.757673 16.862677 +A14C -7.540425 -0.329564 16.855644 +A15N -6.795558 -1.230593 16.823994 +A01S -5.906334 -4.083322 13.873750 +A02C -6.888136 -2.640229 13.658991 +A03C -6.377852 -1.315079 13.621035 +A04S -4.651474 -0.925226 13.815180 +A05C -4.210921 -2.169539 15.003572 +A06C -4.724957 -3.437171 15.034130 +A07C -4.327194 -4.362802 16.031409 +A08N -4.000293 -5.148727 16.835151 +A09C -3.234243 -1.768939 15.946282 +A10N -2.384867 -1.445864 16.682600 +A11N -7.238271 -0.337877 13.411611 +A12S -8.761773 -0.969226 13.189455 +A13C -8.260745 -2.621777 13.453448 +A14C -9.151043 -3.709014 13.460481 +A15N -9.895910 -4.610043 13.492131 +A01S 2.232919 0.703872 7.810525 +A02C 1.251118 -0.739221 7.595766 +A03C 1.761402 -2.064371 7.557810 +A04S 3.487780 -2.454223 7.751955 +A05C 3.928333 -1.209910 8.940347 +A06C 3.414296 0.057722 8.970905 +A07C 3.812058 0.983353 9.968184 +A08N 4.138959 1.769278 10.771926 +A09C 4.905010 -1.610509 9.883058 +A10N 5.754386 -1.933584 10.619376 +A11N 0.900984 -3.041573 7.348386 +A12S -0.622518 -2.410225 7.126230 +A13C -0.121491 -0.757674 7.390223 +A14C -1.011790 0.329563 7.397255 +A15N -1.756657 1.230591 7.428905 +A01S -2.645880 4.083322 10.379150 +A02C -1.664079 2.640229 10.593909 +A03C -2.174363 1.315079 10.631865 +A04S -3.900741 0.925227 10.437720 +A05C -4.341294 2.169540 9.249328 +A06C -3.827257 3.437172 9.218770 +A07C -4.225019 4.362803 8.221491 +A08N -4.551920 5.148728 7.417749 +A09C -5.317971 1.768941 8.306617 +A10N -6.167347 1.445866 7.570299 +A11N -1.313945 0.337877 10.841289 +A12S 0.209557 0.969225 11.063445 +A13C -0.291470 2.621776 10.799452 +A14C 0.598829 3.709013 10.792420 +A15N 1.343696 4.610041 10.760770 +A01S -6.509027 6.055028 4.315925 +A02C -5.527225 7.498121 4.530684 +A03C -6.037509 8.823271 4.568640 +A04S -7.763887 9.213124 4.374495 +A05C -8.204440 7.968811 3.186103 +A06C -7.690404 6.701179 3.155545 +A07C -8.088167 5.775548 2.158266 +A08N -8.415068 4.989623 1.354524 +A09C -9.181118 8.369411 2.243393 +A10N -10.030494 8.692486 1.507075 +A11N -5.177090 9.800473 4.778064 +A12S -3.653588 9.169124 5.000220 +A13C -4.154616 7.516573 4.736227 +A14C -3.264318 6.429336 4.729194 +A15N -2.519451 5.528307 4.697544 +A01S -1.630227 2.675578 1.747300 +A02C -2.612029 4.118671 1.532541 +A03C -2.101745 5.443821 1.494585 +A04S -0.375367 5.833674 1.688730 +A05C 0.065186 4.589361 2.877122 +A06C -0.448850 3.321729 2.907680 +A07C -0.051087 2.396098 3.904959 +A08N 0.275814 1.610173 4.708701 +A09C 1.041864 4.989961 3.819832 +A10N 1.891240 5.313036 4.556150 +A11N -2.962164 6.421023 1.285161 +A12S -4.485666 5.789674 1.063005 +A13C -3.984638 4.137123 1.326998 +A14C -4.874936 3.049886 1.334031 +A15N -5.619803 2.148857 1.365681 +A01S 6.509027 7.462772 -4.315925 +A02C 5.527225 6.019679 -4.530684 +A03C 6.037509 4.694529 -4.568640 +A04S 7.763887 4.304676 -4.374495 +A05C 8.204440 5.548989 -3.186103 +A06C 7.690404 6.816621 -3.155545 +A07C 8.088167 7.742252 -2.158266 +A08N 8.415068 8.528177 -1.354524 +A09C 9.181118 5.148389 -2.243393 +A10N 10.030494 4.825314 -1.507075 +A11N 5.177090 3.717327 -4.778064 +A12S 3.653588 4.348676 -5.000220 +A13C 4.154616 6.001227 -4.736227 +A14C 3.264318 7.088464 -4.729194 +A15N 2.519451 7.989493 -4.697544 +A01S 1.630227 10.842222 -1.747300 +A02C 2.612029 9.399129 -1.532541 +A03C 2.101745 8.073979 -1.494585 +A04S 0.375367 7.684126 -1.688730 +A05C -0.065186 8.928439 -2.877122 +A06C 0.448850 10.196071 -2.907680 +A07C 0.051087 11.121702 -3.904959 +A08N -0.275814 11.907627 -4.708701 +A09C -1.041864 8.527839 -3.819832 +A10N -1.891240 8.204764 -4.556150 +A11N 2.962164 7.096777 -1.285161 +A12S 4.485666 7.728126 -1.063005 +A13C 3.984638 9.380677 -1.326998 +A14C 4.874936 10.467914 -1.334031 +A15N 5.619803 11.368943 -1.365681 +A01S -10.785134 6.055028 16.442375 +A02C -9.803332 7.498121 16.657134 +A03C -10.313616 8.823271 16.695090 +A04S -12.039994 9.213124 16.500945 +A05C -12.480547 7.968811 15.312553 +A06C -11.966511 6.701179 15.281995 +A07C -12.364274 5.775548 14.284716 +A08N -12.691175 4.989623 13.480974 +A09C -13.457225 8.369411 14.369843 +A10N -14.306601 8.692486 13.633525 +A11N -9.453197 9.800473 16.904514 +A12S -7.929695 9.169124 17.126670 +A13C -8.430723 7.516573 16.862677 +A14C -7.540425 6.429336 16.855644 +A15N -6.795558 5.528307 16.823994 +A01S -5.906334 2.675578 13.873750 +A02C -6.888136 4.118671 13.658991 +A03C -6.377852 5.443821 13.621035 +A04S -4.651474 5.833674 13.815180 +A05C -4.210921 4.589361 15.003572 +A06C -4.724957 3.321729 15.034130 +A07C -4.327194 2.396098 16.031409 +A08N -4.000293 1.610173 16.835151 +A09C -3.234243 4.989961 15.946282 +A10N -2.384867 5.313036 16.682600 +A11N -7.238271 6.421023 13.411611 +A12S -8.761773 5.789674 13.189455 +A13C -8.260745 4.137123 13.453448 +A14C -9.151043 3.049886 13.460481 +A15N -9.895910 2.148857 13.492131 +A01S 2.232919 7.462772 7.810525 +A02C 1.251118 6.019679 7.595766 +A03C 1.761402 4.694529 7.557810 +A04S 3.487780 4.304677 7.751955 +A05C 3.928333 5.548990 8.940347 +A06C 3.414296 6.816622 8.970905 +A07C 3.812058 7.742253 9.968184 +A08N 4.138959 8.528178 10.771926 +A09C 4.905010 5.148391 9.883058 +A10N 5.754386 4.825316 10.619376 +A11N 0.900984 3.717327 7.348386 +A12S -0.622518 4.348675 7.126230 +A13C -0.121491 6.001226 7.390223 +A14C -1.011790 7.088463 7.397255 +A15N -1.756657 7.989491 7.428905 +A01S -2.645880 10.842222 10.379150 +A02C -1.664079 9.399129 10.593909 +A03C -2.174363 8.073979 10.631865 +A04S -3.900741 7.684127 10.437720 +A05C -4.341294 8.928440 9.249328 +A06C -3.827257 10.196072 9.218770 +A07C -4.225019 11.121703 8.221491 +A08N -4.551920 11.907628 7.417749 +A09C -5.317971 8.527841 8.306617 +A10N -6.167347 8.204766 7.570299 +A11N -1.313945 7.096777 10.841289 +A12S 0.209557 7.728125 11.063445 +A13C -0.291470 9.380676 10.799452 +A14C 0.598829 10.467913 10.792420 +A15N 1.343696 11.368941 10.760770 +A01S -6.509027 12.813928 4.315925 +A02C -5.527225 14.257021 4.530684 +A03C -6.037509 15.582171 4.568640 +A04S -7.763887 15.972024 4.374495 +A05C -8.204440 14.727711 3.186103 +A06C -7.690404 13.460079 3.155545 +A07C -8.088167 12.534448 2.158266 +A08N -8.415068 11.748523 1.354524 +A09C -9.181118 15.128311 2.243393 +A10N -10.030494 15.451386 1.507075 +A11N -5.177090 16.559373 4.778064 +A12S -3.653588 15.928024 5.000220 +A13C -4.154616 14.275473 4.736227 +A14C -3.264318 13.188236 4.729194 +A15N -2.519451 12.287207 4.697544 +A01S -1.630227 9.434478 1.747300 +A02C -2.612029 10.877571 1.532541 +A03C -2.101745 12.202721 1.494585 +A04S -0.375367 12.592574 1.688730 +A05C 0.065186 11.348261 2.877122 +A06C -0.448850 10.080629 2.907680 +A07C -0.051087 9.154998 3.904959 +A08N 0.275814 8.369073 4.708701 +A09C 1.041864 11.748861 3.819832 +A10N 1.891240 12.071936 4.556150 +A11N -2.962164 13.179923 1.285161 +A12S -4.485666 12.548574 1.063005 +A13C -3.984638 10.896023 1.326998 +A14C -4.874936 9.808786 1.334031 +A15N -5.619803 8.907757 1.365681 +A01S 6.509027 14.221672 -4.315925 +A02C 5.527225 12.778579 -4.530684 +A03C 6.037509 11.453429 -4.568640 +A04S 7.763887 11.063576 -4.374495 +A05C 8.204440 12.307889 -3.186103 +A06C 7.690404 13.575521 -3.155545 +A07C 8.088167 14.501152 -2.158266 +A08N 8.415068 15.287077 -1.354524 +A09C 9.181118 11.907289 -2.243393 +A10N 10.030494 11.584214 -1.507075 +A11N 5.177090 10.476227 -4.778064 +A12S 3.653588 11.107576 -5.000220 +A13C 4.154616 12.760127 -4.736227 +A14C 3.264318 13.847364 -4.729194 +A15N 2.519451 14.748393 -4.697544 +A01S 1.630227 17.601122 -1.747300 +A02C 2.612029 16.158029 -1.532541 +A03C 2.101745 14.832879 -1.494585 +A04S 0.375367 14.443026 -1.688730 +A05C -0.065186 15.687339 -2.877122 +A06C 0.448850 16.954971 -2.907680 +A07C 0.051087 17.880602 -3.904959 +A08N -0.275814 18.666527 -4.708701 +A09C -1.041864 15.286739 -3.819832 +A10N -1.891240 14.963664 -4.556150 +A11N 2.962164 13.855677 -1.285161 +A12S 4.485666 14.487026 -1.063005 +A13C 3.984638 16.139577 -1.326998 +A14C 4.874936 17.226814 -1.334031 +A15N 5.619803 18.127843 -1.365681 +A01S -10.785134 12.813928 16.442375 +A02C -9.803332 14.257021 16.657134 +A03C -10.313616 15.582171 16.695090 +A04S -12.039994 15.972024 16.500945 +A05C -12.480547 14.727711 15.312553 +A06C -11.966511 13.460079 15.281995 +A07C -12.364274 12.534448 14.284716 +A08N -12.691175 11.748523 13.480974 +A09C -13.457225 15.128311 14.369843 +A10N -14.306601 15.451386 13.633525 +A11N -9.453197 16.559373 16.904514 +A12S -7.929695 15.928024 17.126670 +A13C -8.430723 14.275473 16.862677 +A14C -7.540425 13.188236 16.855644 +A15N -6.795558 12.287207 16.823994 +A01S -5.906334 9.434478 13.873750 +A02C -6.888136 10.877571 13.658991 +A03C -6.377852 12.202721 13.621035 +A04S -4.651474 12.592574 13.815180 +A05C -4.210921 11.348261 15.003572 +A06C -4.724957 10.080629 15.034130 +A07C -4.327194 9.154998 16.031409 +A08N -4.000293 8.369073 16.835151 +A09C -3.234243 11.748861 15.946282 +A10N -2.384867 12.071936 16.682600 +A11N -7.238271 13.179923 13.411611 +A12S -8.761773 12.548574 13.189455 +A13C -8.260745 10.896023 13.453448 +A14C -9.151043 9.808786 13.460481 +A15N -9.895910 8.907757 13.492131 +A01S 2.232919 14.221672 7.810525 +A02C 1.251118 12.778579 7.595766 +A03C 1.761402 11.453429 7.557810 +A04S 3.487780 11.063577 7.751955 +A05C 3.928333 12.307890 8.940347 +A06C 3.414296 13.575522 8.970905 +A07C 3.812058 14.501153 9.968184 +A08N 4.138959 15.287078 10.771926 +A09C 4.905010 11.907291 9.883058 +A10N 5.754386 11.584216 10.619376 +A11N 0.900984 10.476227 7.348386 +A12S -0.622518 11.107575 7.126230 +A13C -0.121491 12.760126 7.390223 +A14C -1.011790 13.847363 7.397255 +A15N -1.756657 14.748391 7.428905 +A01S -2.645880 17.601122 10.379150 +A02C -1.664079 16.158029 10.593909 +A03C -2.174363 14.832879 10.631865 +A04S -3.900741 14.443027 10.437720 +A05C -4.341294 15.687340 9.249328 +A06C -3.827257 16.954972 9.218770 +A07C -4.225019 17.880603 8.221491 +A08N -4.551920 18.666528 7.417749 +A09C -5.317971 15.286741 8.306617 +A10N -6.167347 14.963666 7.570299 +A11N -1.313945 13.855677 10.841289 +A12S 0.209557 14.487025 11.063445 +A13C -0.291470 16.139576 10.799452 +A14C 0.598829 17.226813 10.792420 +A15N 1.343696 18.127841 10.760770 +A01S -6.509027 19.572828 4.315925 +A02C -5.527225 21.015921 4.530684 +A03C -6.037509 22.341071 4.568640 +A04S -7.763887 22.730924 4.374495 +A05C -8.204440 21.486611 3.186103 +A06C -7.690404 20.218979 3.155545 +A07C -8.088167 19.293348 2.158266 +A08N -8.415068 18.507423 1.354524 +A09C -9.181118 21.887211 2.243393 +A10N -10.030494 22.210286 1.507075 +A11N -5.177090 23.318273 4.778064 +A12S -3.653588 22.686924 5.000220 +A13C -4.154616 21.034373 4.736227 +A14C -3.264318 19.947136 4.729194 +A15N -2.519451 19.046107 4.697544 +A01S -1.630227 16.193378 1.747300 +A02C -2.612029 17.636471 1.532541 +A03C -2.101745 18.961621 1.494585 +A04S -0.375367 19.351474 1.688730 +A05C 0.065186 18.107161 2.877122 +A06C -0.448850 16.839529 2.907680 +A07C -0.051087 15.913898 3.904959 +A08N 0.275814 15.127973 4.708701 +A09C 1.041864 18.507761 3.819832 +A10N 1.891240 18.830836 4.556150 +A11N -2.962164 19.938823 1.285161 +A12S -4.485666 19.307474 1.063005 +A13C -3.984638 17.654923 1.326998 +A14C -4.874936 16.567686 1.334031 +A15N -5.619803 15.666657 1.365681 +A01S 6.509027 20.980572 -4.315925 +A02C 5.527225 19.537479 -4.530684 +A03C 6.037509 18.212329 -4.568640 +A04S 7.763887 17.822476 -4.374495 +A05C 8.204440 19.066789 -3.186103 +A06C 7.690404 20.334421 -3.155545 +A07C 8.088167 21.260052 -2.158266 +A08N 8.415068 22.045977 -1.354524 +A09C 9.181118 18.666189 -2.243393 +A10N 10.030494 18.343114 -1.507075 +A11N 5.177090 17.235127 -4.778064 +A12S 3.653588 17.866476 -5.000220 +A13C 4.154616 19.519027 -4.736227 +A14C 3.264318 20.606264 -4.729194 +A15N 2.519451 21.507293 -4.697544 +A01S 1.630227 24.360022 -1.747300 +A02C 2.612029 22.916929 -1.532541 +A03C 2.101745 21.591779 -1.494585 +A04S 0.375367 21.201926 -1.688730 +A05C -0.065186 22.446239 -2.877122 +A06C 0.448850 23.713871 -2.907680 +A07C 0.051087 24.639502 -3.904959 +A08N -0.275814 25.425427 -4.708701 +A09C -1.041864 22.045639 -3.819832 +A10N -1.891240 21.722564 -4.556150 +A11N 2.962164 20.614577 -1.285161 +A12S 4.485666 21.245926 -1.063005 +A13C 3.984638 22.898477 -1.326998 +A14C 4.874936 23.985714 -1.334031 +A15N 5.619803 24.886743 -1.365681 +A01S -10.785134 19.572828 16.442375 +A02C -9.803332 21.015921 16.657134 +A03C -10.313616 22.341071 16.695090 +A04S -12.039994 22.730924 16.500945 +A05C -12.480547 21.486611 15.312553 +A06C -11.966511 20.218979 15.281995 +A07C -12.364274 19.293348 14.284716 +A08N -12.691175 18.507423 13.480974 +A09C -13.457225 21.887211 14.369843 +A10N -14.306601 22.210286 13.633525 +A11N -9.453197 23.318273 16.904514 +A12S -7.929695 22.686924 17.126670 +A13C -8.430723 21.034373 16.862677 +A14C -7.540425 19.947136 16.855644 +A15N -6.795558 19.046107 16.823994 +A01S -5.906334 16.193378 13.873750 +A02C -6.888136 17.636471 13.658991 +A03C -6.377852 18.961621 13.621035 +A04S -4.651474 19.351474 13.815180 +A05C -4.210921 18.107161 15.003572 +A06C -4.724957 16.839529 15.034130 +A07C -4.327194 15.913898 16.031409 +A08N -4.000293 15.127973 16.835151 +A09C -3.234243 18.507761 15.946282 +A10N -2.384867 18.830836 16.682600 +A11N -7.238271 19.938823 13.411611 +A12S -8.761773 19.307474 13.189455 +A13C -8.260745 17.654923 13.453448 +A14C -9.151043 16.567686 13.460481 +A15N -9.895910 15.666657 13.492131 +A01S 2.232919 20.980572 7.810525 +A02C 1.251118 19.537479 7.595766 +A03C 1.761402 18.212329 7.557810 +A04S 3.487780 17.822477 7.751955 +A05C 3.928333 19.066790 8.940347 +A06C 3.414296 20.334422 8.970905 +A07C 3.812058 21.260053 9.968184 +A08N 4.138959 22.045978 10.771926 +A09C 4.905010 18.666191 9.883058 +A10N 5.754386 18.343116 10.619376 +A11N 0.900984 17.235127 7.348386 +A12S -0.622518 17.866475 7.126230 +A13C -0.121491 19.519026 7.390223 +A14C -1.011790 20.606263 7.397255 +A15N -1.756657 21.507291 7.428905 +A01S -2.645880 24.360022 10.379150 +A02C -1.664079 22.916929 10.593909 +A03C -2.174363 21.591779 10.631865 +A04S -3.900741 21.201927 10.437720 +A05C -4.341294 22.446240 9.249328 +A06C -3.827257 23.713872 9.218770 +A07C -4.225019 24.639503 8.221491 +A08N -4.551920 25.425428 7.417749 +A09C -5.317971 22.045641 8.306617 +A10N -6.167347 21.722566 7.570299 +A11N -1.313945 20.614577 10.841289 +A12S 0.209557 21.245925 11.063445 +A13C -0.291470 22.898476 10.799452 +A14C 0.598829 23.985713 10.792420 +A15N 1.343696 24.886741 10.760770 +A01S 5.493373 -0.703872 4.315925 +A02C 6.475175 0.739221 4.530684 +A03C 5.964891 2.064371 4.568640 +A04S 4.238513 2.454224 4.374495 +A05C 3.797960 1.209911 3.186103 +A06C 4.311996 -0.057721 3.155545 +A07C 3.914233 -0.983352 2.158266 +A08N 3.587332 -1.769277 1.354524 +A09C 2.821282 1.610511 2.243393 +A10N 1.971906 1.933586 1.507075 +A11N 6.825310 3.041573 4.778064 +A12S 8.348812 2.410224 5.000220 +A13C 7.847784 0.757673 4.736227 +A14C 8.738082 -0.329564 4.729194 +A15N 9.482949 -1.230593 4.697544 +A01S 10.372173 -4.083322 1.747300 +A02C 9.390371 -2.640229 1.532541 +A03C 9.900655 -1.315079 1.494585 +A04S 11.627033 -0.925226 1.688730 +A05C 12.067586 -2.169539 2.877122 +A06C 11.553550 -3.437171 2.907680 +A07C 11.951313 -4.362802 3.904959 +A08N 12.278214 -5.148727 4.708701 +A09C 13.044264 -1.768939 3.819832 +A10N 13.893640 -1.445864 4.556150 +A11N 9.040236 -0.337877 1.285161 +A12S 7.516734 -0.969226 1.063005 +A13C 8.017762 -2.621777 1.326998 +A14C 7.127464 -3.709014 1.334031 +A15N 6.382597 -4.610043 1.365681 +A01S 18.511427 0.703872 -4.315925 +A02C 17.529625 -0.739221 -4.530684 +A03C 18.039909 -2.064371 -4.568640 +A04S 19.766287 -2.454224 -4.374495 +A05C 20.206840 -1.209911 -3.186103 +A06C 19.692804 0.057721 -3.155545 +A07C 20.090567 0.983352 -2.158266 +A08N 20.417468 1.769277 -1.354524 +A09C 21.183518 -1.610511 -2.243393 +A10N 22.032894 -1.933586 -1.507075 +A11N 17.179490 -3.041573 -4.778064 +A12S 15.655988 -2.410224 -5.000220 +A13C 16.157016 -0.757673 -4.736227 +A14C 15.266718 0.329564 -4.729194 +A15N 14.521851 1.230593 -4.697544 +A01S 13.632627 4.083322 -1.747300 +A02C 14.614429 2.640229 -1.532541 +A03C 14.104145 1.315079 -1.494585 +A04S 12.377767 0.925226 -1.688730 +A05C 11.937214 2.169539 -2.877122 +A06C 12.451250 3.437171 -2.907680 +A07C 12.053487 4.362802 -3.904959 +A08N 11.726586 5.148727 -4.708701 +A09C 10.960536 1.768939 -3.819832 +A10N 10.111160 1.445864 -4.556150 +A11N 14.964564 0.337877 -1.285161 +A12S 16.488066 0.969226 -1.063005 +A13C 15.987038 2.621777 -1.326998 +A14C 16.877336 3.709014 -1.334031 +A15N 17.622203 4.610043 -1.365681 +A01S 1.217266 -0.703872 16.442375 +A02C 2.199068 0.739221 16.657134 +A03C 1.688784 2.064371 16.695090 +A04S -0.037594 2.454224 16.500945 +A05C -0.478147 1.209911 15.312553 +A06C 0.035889 -0.057721 15.281995 +A07C -0.361874 -0.983352 14.284716 +A08N -0.688775 -1.769277 13.480974 +A09C -1.454825 1.610511 14.369843 +A10N -2.304201 1.933586 13.633525 +A11N 2.549203 3.041573 16.904514 +A12S 4.072705 2.410224 17.126670 +A13C 3.571677 0.757673 16.862677 +A14C 4.461975 -0.329564 16.855644 +A15N 5.206842 -1.230593 16.823994 +A01S 6.096066 -4.083322 13.873750 +A02C 5.114264 -2.640229 13.658991 +A03C 5.624548 -1.315079 13.621035 +A04S 7.350926 -0.925226 13.815180 +A05C 7.791479 -2.169539 15.003572 +A06C 7.277443 -3.437171 15.034130 +A07C 7.675206 -4.362802 16.031409 +A08N 8.002107 -5.148727 16.835151 +A09C 8.768157 -1.768939 15.946282 +A10N 9.617533 -1.445864 16.682600 +A11N 4.764129 -0.337877 13.411611 +A12S 3.240627 -0.969226 13.189455 +A13C 3.741655 -2.621777 13.453448 +A14C 2.851357 -3.709014 13.460481 +A15N 2.106490 -4.610043 13.492131 +A01S 14.235319 0.703872 7.810525 +A02C 13.253518 -0.739221 7.595766 +A03C 13.763802 -2.064371 7.557810 +A04S 15.490180 -2.454223 7.751955 +A05C 15.930733 -1.209910 8.940347 +A06C 15.416696 0.057722 8.970905 +A07C 15.814458 0.983353 9.968184 +A08N 16.141359 1.769278 10.771926 +A09C 16.907410 -1.610509 9.883058 +A10N 17.756786 -1.933584 10.619376 +A11N 12.903384 -3.041573 7.348386 +A12S 11.379882 -2.410225 7.126230 +A13C 11.880909 -0.757674 7.390223 +A14C 10.990610 0.329563 7.397255 +A15N 10.245743 1.230591 7.428905 +A01S 9.356520 4.083322 10.379150 +A02C 10.338321 2.640229 10.593909 +A03C 9.828037 1.315079 10.631865 +A04S 8.101659 0.925227 10.437720 +A05C 7.661106 2.169540 9.249328 +A06C 8.175143 3.437172 9.218770 +A07C 7.777381 4.362803 8.221491 +A08N 7.450480 5.148728 7.417749 +A09C 6.684429 1.768941 8.306617 +A10N 5.835053 1.445866 7.570299 +A11N 10.688455 0.337877 10.841289 +A12S 12.211957 0.969225 11.063445 +A13C 11.710930 2.621776 10.799452 +A14C 12.601229 3.709013 10.792420 +A15N 13.346096 4.610041 10.760770 +A01S 5.493373 6.055028 4.315925 +A02C 6.475175 7.498121 4.530684 +A03C 5.964891 8.823271 4.568640 +A04S 4.238513 9.213124 4.374495 +A05C 3.797960 7.968811 3.186103 +A06C 4.311996 6.701179 3.155545 +A07C 3.914233 5.775548 2.158266 +A08N 3.587332 4.989623 1.354524 +A09C 2.821282 8.369411 2.243393 +A10N 1.971906 8.692486 1.507075 +A11N 6.825310 9.800473 4.778064 +A12S 8.348812 9.169124 5.000220 +A13C 7.847784 7.516573 4.736227 +A14C 8.738082 6.429336 4.729194 +A15N 9.482949 5.528307 4.697544 +A01S 10.372173 2.675578 1.747300 +A02C 9.390371 4.118671 1.532541 +A03C 9.900655 5.443821 1.494585 +A04S 11.627033 5.833674 1.688730 +A05C 12.067586 4.589361 2.877122 +A06C 11.553550 3.321729 2.907680 +A07C 11.951313 2.396098 3.904959 +A08N 12.278214 1.610173 4.708701 +A09C 13.044264 4.989961 3.819832 +A10N 13.893640 5.313036 4.556150 +A11N 9.040236 6.421023 1.285161 +A12S 7.516734 5.789674 1.063005 +A13C 8.017762 4.137123 1.326998 +A14C 7.127464 3.049886 1.334031 +A15N 6.382597 2.148857 1.365681 +A01S 18.511427 7.462772 -4.315925 +A02C 17.529625 6.019679 -4.530684 +A03C 18.039909 4.694529 -4.568640 +A04S 19.766287 4.304676 -4.374495 +A05C 20.206840 5.548989 -3.186103 +A06C 19.692804 6.816621 -3.155545 +A07C 20.090567 7.742252 -2.158266 +A08N 20.417468 8.528177 -1.354524 +A09C 21.183518 5.148389 -2.243393 +A10N 22.032894 4.825314 -1.507075 +A11N 17.179490 3.717327 -4.778064 +A12S 15.655988 4.348676 -5.000220 +A13C 16.157016 6.001227 -4.736227 +A14C 15.266718 7.088464 -4.729194 +A15N 14.521851 7.989493 -4.697544 +A01S 13.632627 10.842222 -1.747300 +A02C 14.614429 9.399129 -1.532541 +A03C 14.104145 8.073979 -1.494585 +A04S 12.377767 7.684126 -1.688730 +A05C 11.937214 8.928439 -2.877122 +A06C 12.451250 10.196071 -2.907680 +A07C 12.053487 11.121702 -3.904959 +A08N 11.726586 11.907627 -4.708701 +A09C 10.960536 8.527839 -3.819832 +A10N 10.111160 8.204764 -4.556150 +A11N 14.964564 7.096777 -1.285161 +A12S 16.488066 7.728126 -1.063005 +A13C 15.987038 9.380677 -1.326998 +A14C 16.877336 10.467914 -1.334031 +A15N 17.622203 11.368943 -1.365681 +A01S 1.217266 6.055028 16.442375 +A02C 2.199068 7.498121 16.657134 +A03C 1.688784 8.823271 16.695090 +A04S -0.037594 9.213124 16.500945 +A05C -0.478147 7.968811 15.312553 +A06C 0.035889 6.701179 15.281995 +A07C -0.361874 5.775548 14.284716 +A08N -0.688775 4.989623 13.480974 +A09C -1.454825 8.369411 14.369843 +A10N -2.304201 8.692486 13.633525 +A11N 2.549203 9.800473 16.904514 +A12S 4.072705 9.169124 17.126670 +A13C 3.571677 7.516573 16.862677 +A14C 4.461975 6.429336 16.855644 +A15N 5.206842 5.528307 16.823994 +A01S 6.096066 2.675578 13.873750 +A02C 5.114264 4.118671 13.658991 +A03C 5.624548 5.443821 13.621035 +A04S 7.350926 5.833674 13.815180 +A05C 7.791479 4.589361 15.003572 +A06C 7.277443 3.321729 15.034130 +A07C 7.675206 2.396098 16.031409 +A08N 8.002107 1.610173 16.835151 +A09C 8.768157 4.989961 15.946282 +A10N 9.617533 5.313036 16.682600 +A11N 4.764129 6.421023 13.411611 +A12S 3.240627 5.789674 13.189455 +A13C 3.741655 4.137123 13.453448 +A14C 2.851357 3.049886 13.460481 +A15N 2.106490 2.148857 13.492131 +A01S 14.235319 7.462772 7.810525 +A02C 13.253518 6.019679 7.595766 +A03C 13.763802 4.694529 7.557810 +A04S 15.490180 4.304677 7.751955 +A05C 15.930733 5.548990 8.940347 +A06C 15.416696 6.816622 8.970905 +A07C 15.814458 7.742253 9.968184 +A08N 16.141359 8.528178 10.771926 +A09C 16.907410 5.148391 9.883058 +A10N 17.756786 4.825316 10.619376 +A11N 12.903384 3.717327 7.348386 +A12S 11.379882 4.348675 7.126230 +A13C 11.880909 6.001226 7.390223 +A14C 10.990610 7.088463 7.397255 +A15N 10.245743 7.989491 7.428905 +A01S 9.356520 10.842222 10.379150 +A02C 10.338321 9.399129 10.593909 +A03C 9.828037 8.073979 10.631865 +A04S 8.101659 7.684127 10.437720 +A05C 7.661106 8.928440 9.249328 +A06C 8.175143 10.196072 9.218770 +A07C 7.777381 11.121703 8.221491 +A08N 7.450480 11.907628 7.417749 +A09C 6.684429 8.527841 8.306617 +A10N 5.835053 8.204766 7.570299 +A11N 10.688455 7.096777 10.841289 +A12S 12.211957 7.728125 11.063445 +A13C 11.710930 9.380676 10.799452 +A14C 12.601229 10.467913 10.792420 +A15N 13.346096 11.368941 10.760770 +A01S 5.493373 12.813928 4.315925 +A02C 6.475175 14.257021 4.530684 +A03C 5.964891 15.582171 4.568640 +A04S 4.238513 15.972024 4.374495 +A05C 3.797960 14.727711 3.186103 +A06C 4.311996 13.460079 3.155545 +A07C 3.914233 12.534448 2.158266 +A08N 3.587332 11.748523 1.354524 +A09C 2.821282 15.128311 2.243393 +A10N 1.971906 15.451386 1.507075 +A11N 6.825310 16.559373 4.778064 +A12S 8.348812 15.928024 5.000220 +A13C 7.847784 14.275473 4.736227 +A14C 8.738082 13.188236 4.729194 +A15N 9.482949 12.287207 4.697544 +A01S 10.372173 9.434478 1.747300 +A02C 9.390371 10.877571 1.532541 +A03C 9.900655 12.202721 1.494585 +A04S 11.627033 12.592574 1.688730 +A05C 12.067586 11.348261 2.877122 +A06C 11.553550 10.080629 2.907680 +A07C 11.951313 9.154998 3.904959 +A08N 12.278214 8.369073 4.708701 +A09C 13.044264 11.748861 3.819832 +A10N 13.893640 12.071936 4.556150 +A11N 9.040236 13.179923 1.285161 +A12S 7.516734 12.548574 1.063005 +A13C 8.017762 10.896023 1.326998 +A14C 7.127464 9.808786 1.334031 +A15N 6.382597 8.907757 1.365681 +A01S 18.511427 14.221672 -4.315925 +A02C 17.529625 12.778579 -4.530684 +A03C 18.039909 11.453429 -4.568640 +A04S 19.766287 11.063576 -4.374495 +A05C 20.206840 12.307889 -3.186103 +A06C 19.692804 13.575521 -3.155545 +A07C 20.090567 14.501152 -2.158266 +A08N 20.417468 15.287077 -1.354524 +A09C 21.183518 11.907289 -2.243393 +A10N 22.032894 11.584214 -1.507075 +A11N 17.179490 10.476227 -4.778064 +A12S 15.655988 11.107576 -5.000220 +A13C 16.157016 12.760127 -4.736227 +A14C 15.266718 13.847364 -4.729194 +A15N 14.521851 14.748393 -4.697544 +A01S 13.632627 17.601122 -1.747300 +A02C 14.614429 16.158029 -1.532541 +A03C 14.104145 14.832879 -1.494585 +A04S 12.377767 14.443026 -1.688730 +A05C 11.937214 15.687339 -2.877122 +A06C 12.451250 16.954971 -2.907680 +A07C 12.053487 17.880602 -3.904959 +A08N 11.726586 18.666527 -4.708701 +A09C 10.960536 15.286739 -3.819832 +A10N 10.111160 14.963664 -4.556150 +A11N 14.964564 13.855677 -1.285161 +A12S 16.488066 14.487026 -1.063005 +A13C 15.987038 16.139577 -1.326998 +A14C 16.877336 17.226814 -1.334031 +A15N 17.622203 18.127843 -1.365681 +A01S 1.217266 12.813928 16.442375 +A02C 2.199068 14.257021 16.657134 +A03C 1.688784 15.582171 16.695090 +A04S -0.037594 15.972024 16.500945 +A05C -0.478147 14.727711 15.312553 +A06C 0.035889 13.460079 15.281995 +A07C -0.361874 12.534448 14.284716 +A08N -0.688775 11.748523 13.480974 +A09C -1.454825 15.128311 14.369843 +A10N -2.304201 15.451386 13.633525 +A11N 2.549203 16.559373 16.904514 +A12S 4.072705 15.928024 17.126670 +A13C 3.571677 14.275473 16.862677 +A14C 4.461975 13.188236 16.855644 +A15N 5.206842 12.287207 16.823994 +A01S 6.096066 9.434478 13.873750 +A02C 5.114264 10.877571 13.658991 +A03C 5.624548 12.202721 13.621035 +A04S 7.350926 12.592574 13.815180 +A05C 7.791479 11.348261 15.003572 +A06C 7.277443 10.080629 15.034130 +A07C 7.675206 9.154998 16.031409 +A08N 8.002107 8.369073 16.835151 +A09C 8.768157 11.748861 15.946282 +A10N 9.617533 12.071936 16.682600 +A11N 4.764129 13.179923 13.411611 +A12S 3.240627 12.548574 13.189455 +A13C 3.741655 10.896023 13.453448 +A14C 2.851357 9.808786 13.460481 +A15N 2.106490 8.907757 13.492131 +A01S 14.235319 14.221672 7.810525 +A02C 13.253518 12.778579 7.595766 +A03C 13.763802 11.453429 7.557810 +A04S 15.490180 11.063577 7.751955 +A05C 15.930733 12.307890 8.940347 +A06C 15.416696 13.575522 8.970905 +A07C 15.814458 14.501153 9.968184 +A08N 16.141359 15.287078 10.771926 +A09C 16.907410 11.907291 9.883058 +A10N 17.756786 11.584216 10.619376 +A11N 12.903384 10.476227 7.348386 +A12S 11.379882 11.107575 7.126230 +A13C 11.880909 12.760126 7.390223 +A14C 10.990610 13.847363 7.397255 +A15N 10.245743 14.748391 7.428905 +A01S 9.356520 17.601122 10.379150 +A02C 10.338321 16.158029 10.593909 +A03C 9.828037 14.832879 10.631865 +A04S 8.101659 14.443027 10.437720 +A05C 7.661106 15.687340 9.249328 +A06C 8.175143 16.954972 9.218770 +A07C 7.777381 17.880603 8.221491 +A08N 7.450480 18.666528 7.417749 +A09C 6.684429 15.286741 8.306617 +A10N 5.835053 14.963666 7.570299 +A11N 10.688455 13.855677 10.841289 +A12S 12.211957 14.487025 11.063445 +A13C 11.710930 16.139576 10.799452 +A14C 12.601229 17.226813 10.792420 +A15N 13.346096 18.127841 10.760770 +A01S 5.493373 19.572828 4.315925 +A02C 6.475175 21.015921 4.530684 +A03C 5.964891 22.341071 4.568640 +A04S 4.238513 22.730924 4.374495 +A05C 3.797960 21.486611 3.186103 +A06C 4.311996 20.218979 3.155545 +A07C 3.914233 19.293348 2.158266 +A08N 3.587332 18.507423 1.354524 +A09C 2.821282 21.887211 2.243393 +A10N 1.971906 22.210286 1.507075 +A11N 6.825310 23.318273 4.778064 +A12S 8.348812 22.686924 5.000220 +A13C 7.847784 21.034373 4.736227 +A14C 8.738082 19.947136 4.729194 +A15N 9.482949 19.046107 4.697544 +A01S 10.372173 16.193378 1.747300 +A02C 9.390371 17.636471 1.532541 +A03C 9.900655 18.961621 1.494585 +A04S 11.627033 19.351474 1.688730 +A05C 12.067586 18.107161 2.877122 +A06C 11.553550 16.839529 2.907680 +A07C 11.951313 15.913898 3.904959 +A08N 12.278214 15.127973 4.708701 +A09C 13.044264 18.507761 3.819832 +A10N 13.893640 18.830836 4.556150 +A11N 9.040236 19.938823 1.285161 +A12S 7.516734 19.307474 1.063005 +A13C 8.017762 17.654923 1.326998 +A14C 7.127464 16.567686 1.334031 +A15N 6.382597 15.666657 1.365681 +A01S 18.511427 20.980572 -4.315925 +A02C 17.529625 19.537479 -4.530684 +A03C 18.039909 18.212329 -4.568640 +A04S 19.766287 17.822476 -4.374495 +A05C 20.206840 19.066789 -3.186103 +A06C 19.692804 20.334421 -3.155545 +A07C 20.090567 21.260052 -2.158266 +A08N 20.417468 22.045977 -1.354524 +A09C 21.183518 18.666189 -2.243393 +A10N 22.032894 18.343114 -1.507075 +A11N 17.179490 17.235127 -4.778064 +A12S 15.655988 17.866476 -5.000220 +A13C 16.157016 19.519027 -4.736227 +A14C 15.266718 20.606264 -4.729194 +A15N 14.521851 21.507293 -4.697544 +A01S 13.632627 24.360022 -1.747300 +A02C 14.614429 22.916929 -1.532541 +A03C 14.104145 21.591779 -1.494585 +A04S 12.377767 21.201926 -1.688730 +A05C 11.937214 22.446239 -2.877122 +A06C 12.451250 23.713871 -2.907680 +A07C 12.053487 24.639502 -3.904959 +A08N 11.726586 25.425427 -4.708701 +A09C 10.960536 22.045639 -3.819832 +A10N 10.111160 21.722564 -4.556150 +A11N 14.964564 20.614577 -1.285161 +A12S 16.488066 21.245926 -1.063005 +A13C 15.987038 22.898477 -1.326998 +A14C 16.877336 23.985714 -1.334031 +A15N 17.622203 24.886743 -1.365681 +A01S 1.217266 19.572828 16.442375 +A02C 2.199068 21.015921 16.657134 +A03C 1.688784 22.341071 16.695090 +A04S -0.037594 22.730924 16.500945 +A05C -0.478147 21.486611 15.312553 +A06C 0.035889 20.218979 15.281995 +A07C -0.361874 19.293348 14.284716 +A08N -0.688775 18.507423 13.480974 +A09C -1.454825 21.887211 14.369843 +A10N -2.304201 22.210286 13.633525 +A11N 2.549203 23.318273 16.904514 +A12S 4.072705 22.686924 17.126670 +A13C 3.571677 21.034373 16.862677 +A14C 4.461975 19.947136 16.855644 +A15N 5.206842 19.046107 16.823994 +A01S 6.096066 16.193378 13.873750 +A02C 5.114264 17.636471 13.658991 +A03C 5.624548 18.961621 13.621035 +A04S 7.350926 19.351474 13.815180 +A05C 7.791479 18.107161 15.003572 +A06C 7.277443 16.839529 15.034130 +A07C 7.675206 15.913898 16.031409 +A08N 8.002107 15.127973 16.835151 +A09C 8.768157 18.507761 15.946282 +A10N 9.617533 18.830836 16.682600 +A11N 4.764129 19.938823 13.411611 +A12S 3.240627 19.307474 13.189455 +A13C 3.741655 17.654923 13.453448 +A14C 2.851357 16.567686 13.460481 +A15N 2.106490 15.666657 13.492131 +A01S 14.235319 20.980572 7.810525 +A02C 13.253518 19.537479 7.595766 +A03C 13.763802 18.212329 7.557810 +A04S 15.490180 17.822477 7.751955 +A05C 15.930733 19.066790 8.940347 +A06C 15.416696 20.334422 8.970905 +A07C 15.814458 21.260053 9.968184 +A08N 16.141359 22.045978 10.771926 +A09C 16.907410 18.666191 9.883058 +A10N 17.756786 18.343116 10.619376 +A11N 12.903384 17.235127 7.348386 +A12S 11.379882 17.866475 7.126230 +A13C 11.880909 19.519026 7.390223 +A14C 10.990610 20.606263 7.397255 +A15N 10.245743 21.507291 7.428905 +A01S 9.356520 24.360022 10.379150 +A02C 10.338321 22.916929 10.593909 +A03C 9.828037 21.591779 10.631865 +A04S 8.101659 21.201927 10.437720 +A05C 7.661106 22.446240 9.249328 +A06C 8.175143 23.713872 9.218770 +A07C 7.777381 24.639503 8.221491 +A08N 7.450480 25.425428 7.417749 +A09C 6.684429 22.045641 8.306617 +A10N 5.835053 21.722566 7.570299 +A11N 10.688455 20.614577 10.841289 +A12S 12.211957 21.245925 11.063445 +A13C 11.710930 22.898476 10.799452 +A14C 12.601229 23.985713 10.792420 +A15N 13.346096 24.886741 10.760770 + + + IND DIPOLES NORM: 0.022844 + IND DIPOLES NORM: 0.004631 + IND DIPOLES NORM: 0.001148 + IND DIPOLES NORM: 0.000319 + IND DIPOLES NORM: 0.000090 + IND DIPOLES NORM: 0.000033 + IND DIPOLES NORM: 0.000010 + IND DIPOLES NORM: 0.000004 + IND DIPOLES NORM: 0.000001 + IND DIPOLES NORM: 0.000000 + IND DIPOLES NORM: 0.000000 + IND DIPOLES NORM: 0.000000 + IND DIPOLES NORM: 0.000000 + IND DIPOLES NORM: 0.000000 + IND DIPOLES NORM: 0.000000 + IND DIPOLES NORM: 0.000000 + IND DIPOLES NORM: 0.000000 + IND DIPOLES NORM: 0.000000 + ------ PAIRWISE ENERGY ANALYSIS FOLLOWS ------------------ + + PAIRWISE ENERGY BETWEEN FRAGMENT 0 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 1 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S -1.630227 -4.083322 1.747300 + A02C -2.612029 -2.640229 1.532541 + A03C -2.101745 -1.315079 1.494585 + A04S -0.375367 -0.925226 1.688730 + A05C 0.065186 -2.169539 2.877122 + A06C -0.448850 -3.437171 2.907680 + A07C -0.051087 -4.362802 3.904959 + A08N 0.275814 -5.148727 4.708701 + A09C 1.041864 -1.768939 3.819832 + A10N 1.891240 -1.445864 4.556150 + A11N -2.962164 -0.337877 1.285161 + A12S -4.485666 -0.969226 1.063005 + A13C -3.984638 -2.621777 1.326998 + A14C -4.874936 -3.709014 1.334031 + A15N -5.619803 -4.610043 1.365681 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY -0.0001876888 + PAIRWISE POLARIZATION ENERGY -0.0000071418 + PAIRWISE DISPERSION ENERGY -0.0003825748 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000707698 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY -0.0005066355 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 2 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 6.509027 0.703872 -4.315925 + A02C 5.527225 -0.739221 -4.530684 + A03C 6.037509 -2.064371 -4.568640 + A04S 7.763887 -2.454224 -4.374495 + A05C 8.204440 -1.209911 -3.186103 + A06C 7.690404 0.057721 -3.155545 + A07C 8.088167 0.983352 -2.158266 + A08N 8.415068 1.769277 -1.354524 + A09C 9.181118 -1.610511 -2.243393 + A10N 10.030494 -1.933586 -1.507075 + A11N 5.177090 -3.041573 -4.778064 + A12S 3.653588 -2.410224 -5.000220 + A13C 4.154616 -0.757673 -4.736227 + A14C 3.264318 0.329564 -4.729194 + A15N 2.519451 1.230593 -4.697544 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY -0.0001519675 + PAIRWISE POLARIZATION ENERGY -0.0000179945 + PAIRWISE DISPERSION ENERGY -0.0000258013 + PAIRWISE EXCHANGE REPULSION ENERGY -0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY -0.0001957633 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 3 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 1.630227 4.083322 -1.747300 + A02C 2.612029 2.640229 -1.532541 + A03C 2.101745 1.315079 -1.494585 + A04S 0.375367 0.925226 -1.688730 + A05C -0.065186 2.169539 -2.877122 + A06C 0.448850 3.437171 -2.907680 + A07C 0.051087 4.362802 -3.904959 + A08N -0.275814 5.148727 -4.708701 + A09C -1.041864 1.768939 -3.819832 + A10N -1.891240 1.445864 -4.556150 + A11N 2.962164 0.337877 -1.285161 + A12S 4.485666 0.969226 -1.063005 + A13C 3.984638 2.621777 -1.326998 + A14C 4.874936 3.709014 -1.334031 + A15N 5.619803 4.610043 -1.365681 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000107808 + PAIRWISE POLARIZATION ENERGY 0.0000024710 + PAIRWISE DISPERSION ENERGY -0.0000064007 + PAIRWISE EXCHANGE REPULSION ENERGY -0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000068511 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 4 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S -10.785134 -0.703872 16.442375 + A02C -9.803332 0.739221 16.657134 + A03C -10.313616 2.064371 16.695090 + A04S -12.039994 2.454224 16.500945 + A05C -12.480547 1.209911 15.312553 + A06C -11.966511 -0.057721 15.281995 + A07C -12.364274 -0.983352 14.284716 + A08N -12.691175 -1.769277 13.480974 + A09C -13.457225 1.610511 14.369843 + A10N -14.306601 1.933586 13.633525 + A11N -9.453197 3.041573 16.904514 + A12S -7.929695 2.410224 17.126670 + A13C -8.430723 0.757673 16.862677 + A14C -7.540425 -0.329564 16.855644 + A15N -6.795558 -1.230593 16.823994 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 5 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S -5.906334 -4.083322 13.873750 + A02C -6.888136 -2.640229 13.658991 + A03C -6.377852 -1.315079 13.621035 + A04S -4.651474 -0.925226 13.815180 + A05C -4.210921 -2.169539 15.003572 + A06C -4.724957 -3.437171 15.034130 + A07C -4.327194 -4.362802 16.031409 + A08N -4.000293 -5.148727 16.835151 + A09C -3.234243 -1.768939 15.946282 + A10N -2.384867 -1.445864 16.682600 + A11N -7.238271 -0.337877 13.411611 + A12S -8.761773 -0.969226 13.189455 + A13C -8.260745 -2.621777 13.453448 + A14C -9.151043 -3.709014 13.460481 + A15N -9.895910 -4.610043 13.492131 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY -0.0000059620 + PAIRWISE POLARIZATION ENERGY -0.0000019679 + PAIRWISE DISPERSION ENERGY -0.0000102120 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY -0.0000181419 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 6 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 2.232919 0.703872 7.810525 + A02C 1.251118 -0.739221 7.595766 + A03C 1.761402 -2.064371 7.557810 + A04S 3.487780 -2.454223 7.751955 + A05C 3.928333 -1.209910 8.940347 + A06C 3.414296 0.057722 8.970905 + A07C 3.812058 0.983353 9.968184 + A08N 4.138959 1.769278 10.771926 + A09C 4.905010 -1.610509 9.883058 + A10N 5.754386 -1.933584 10.619376 + A11N 0.900984 -3.041573 7.348386 + A12S -0.622518 -2.410225 7.126230 + A13C -0.121491 -0.757674 7.390223 + A14C -1.011790 0.329563 7.397255 + A15N -1.756657 1.230591 7.428905 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 7 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S -2.645880 4.083322 10.379150 + A02C -1.664079 2.640229 10.593909 + A03C -2.174363 1.315079 10.631865 + A04S -3.900741 0.925227 10.437720 + A05C -4.341294 2.169540 9.249328 + A06C -3.827257 3.437172 9.218770 + A07C -4.225019 4.362803 8.221491 + A08N -4.551920 5.148728 7.417749 + A09C -5.317971 1.768941 8.306617 + A10N -6.167347 1.445866 7.570299 + A11N -1.313945 0.337877 10.841289 + A12S 0.209557 0.969225 11.063445 + A13C -0.291470 2.621776 10.799452 + A14C 0.598829 3.709013 10.792420 + A15N 1.343696 4.610041 10.760770 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY -0.0053861477 + PAIRWISE POLARIZATION ENERGY -0.0006619368 + PAIRWISE DISPERSION ENERGY -0.0102862849 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0012961487 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY -0.0150382206 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 8 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S -6.509027 6.055028 4.315925 + A02C -5.527225 7.498121 4.530684 + A03C -6.037509 8.823271 4.568640 + A04S -7.763887 9.213124 4.374495 + A05C -8.204440 7.968811 3.186103 + A06C -7.690404 6.701179 3.155545 + A07C -8.088167 5.775548 2.158266 + A08N -8.415068 4.989623 1.354524 + A09C -9.181118 8.369411 2.243393 + A10N -10.030494 8.692486 1.507075 + A11N -5.177090 9.800473 4.778064 + A12S -3.653588 9.169124 5.000220 + A13C -4.154616 7.516573 4.736227 + A14C -3.264318 6.429336 4.729194 + A15N -2.519451 5.528307 4.697544 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY -0.0052997977 + PAIRWISE POLARIZATION ENERGY -0.0004115679 + PAIRWISE DISPERSION ENERGY -0.0090620393 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0018995793 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY -0.0128738257 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 9 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S -1.630227 2.675578 1.747300 + A02C -2.612029 4.118671 1.532541 + A03C -2.101745 5.443821 1.494585 + A04S -0.375367 5.833674 1.688730 + A05C 0.065186 4.589361 2.877122 + A06C -0.448850 3.321729 2.907680 + A07C -0.051087 2.396098 3.904959 + A08N 0.275814 1.610173 4.708701 + A09C 1.041864 4.989961 3.819832 + A10N 1.891240 5.313036 4.556150 + A11N -2.962164 6.421023 1.285161 + A12S -4.485666 5.789674 1.063005 + A13C -3.984638 4.137123 1.326998 + A14C -4.874936 3.049886 1.334031 + A15N -5.619803 2.148857 1.365681 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY -0.0001876888 + PAIRWISE POLARIZATION ENERGY -0.0000071418 + PAIRWISE DISPERSION ENERGY -0.0003825748 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000707698 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY -0.0005066355 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 10 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 6.509027 7.462772 -4.315925 + A02C 5.527225 6.019679 -4.530684 + A03C 6.037509 4.694529 -4.568640 + A04S 7.763887 4.304676 -4.374495 + A05C 8.204440 5.548989 -3.186103 + A06C 7.690404 6.816621 -3.155545 + A07C 8.088167 7.742252 -2.158266 + A08N 8.415068 8.528177 -1.354524 + A09C 9.181118 5.148389 -2.243393 + A10N 10.030494 4.825314 -1.507075 + A11N 5.177090 3.717327 -4.778064 + A12S 3.653588 4.348676 -5.000220 + A13C 4.154616 6.001227 -4.736227 + A14C 3.264318 7.088464 -4.729194 + A15N 2.519451 7.989493 -4.697544 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY -0.0000244590 + PAIRWISE POLARIZATION ENERGY -0.0000012778 + PAIRWISE DISPERSION ENERGY -0.0000182021 + PAIRWISE EXCHANGE REPULSION ENERGY -0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY -0.0000439388 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 11 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 1.630227 10.842222 -1.747300 + A02C 2.612029 9.399129 -1.532541 + A03C 2.101745 8.073979 -1.494585 + A04S 0.375367 7.684126 -1.688730 + A05C -0.065186 8.928439 -2.877122 + A06C 0.448850 10.196071 -2.907680 + A07C 0.051087 11.121702 -3.904959 + A08N -0.275814 11.907627 -4.708701 + A09C -1.041864 8.527839 -3.819832 + A10N -1.891240 8.204764 -4.556150 + A11N 2.962164 7.096777 -1.285161 + A12S 4.485666 7.728126 -1.063005 + A13C 3.984638 9.380677 -1.326998 + A14C 4.874936 10.467914 -1.334031 + A15N 5.619803 11.368943 -1.365681 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 12 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S -10.785134 6.055028 16.442375 + A02C -9.803332 7.498121 16.657134 + A03C -10.313616 8.823271 16.695090 + A04S -12.039994 9.213124 16.500945 + A05C -12.480547 7.968811 15.312553 + A06C -11.966511 6.701179 15.281995 + A07C -12.364274 5.775548 14.284716 + A08N -12.691175 4.989623 13.480974 + A09C -13.457225 8.369411 14.369843 + A10N -14.306601 8.692486 13.633525 + A11N -9.453197 9.800473 16.904514 + A12S -7.929695 9.169124 17.126670 + A13C -8.430723 7.516573 16.862677 + A14C -7.540425 6.429336 16.855644 + A15N -6.795558 5.528307 16.823994 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 13 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S -5.906334 2.675578 13.873750 + A02C -6.888136 4.118671 13.658991 + A03C -6.377852 5.443821 13.621035 + A04S -4.651474 5.833674 13.815180 + A05C -4.210921 4.589361 15.003572 + A06C -4.724957 3.321729 15.034130 + A07C -4.327194 2.396098 16.031409 + A08N -4.000293 1.610173 16.835151 + A09C -3.234243 4.989961 15.946282 + A10N -2.384867 5.313036 16.682600 + A11N -7.238271 6.421023 13.411611 + A12S -8.761773 5.789674 13.189455 + A13C -8.260745 4.137123 13.453448 + A14C -9.151043 3.049886 13.460481 + A15N -9.895910 2.148857 13.492131 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY -0.0000059620 + PAIRWISE POLARIZATION ENERGY -0.0000019679 + PAIRWISE DISPERSION ENERGY -0.0000102120 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY -0.0000181419 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 14 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 2.232919 7.462772 7.810525 + A02C 1.251118 6.019679 7.595766 + A03C 1.761402 4.694529 7.557810 + A04S 3.487780 4.304677 7.751955 + A05C 3.928333 5.548990 8.940347 + A06C 3.414296 6.816622 8.970905 + A07C 3.812058 7.742253 9.968184 + A08N 4.138959 8.528178 10.771926 + A09C 4.905010 5.148391 9.883058 + A10N 5.754386 4.825316 10.619376 + A11N 0.900984 3.717327 7.348386 + A12S -0.622518 4.348675 7.126230 + A13C -0.121491 6.001226 7.390223 + A14C -1.011790 7.088463 7.397255 + A15N -1.756657 7.989491 7.428905 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 15 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S -2.645880 10.842222 10.379150 + A02C -1.664079 9.399129 10.593909 + A03C -2.174363 8.073979 10.631865 + A04S -3.900741 7.684127 10.437720 + A05C -4.341294 8.928440 9.249328 + A06C -3.827257 10.196072 9.218770 + A07C -4.225019 11.121703 8.221491 + A08N -4.551920 11.907628 7.417749 + A09C -5.317971 8.527841 8.306617 + A10N -6.167347 8.204766 7.570299 + A11N -1.313945 7.096777 10.841289 + A12S 0.209557 7.728125 11.063445 + A13C -0.291470 9.380676 10.799452 + A14C 0.598829 10.467913 10.792420 + A15N 1.343696 11.368941 10.760770 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 16 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S -6.509027 12.813928 4.315925 + A02C -5.527225 14.257021 4.530684 + A03C -6.037509 15.582171 4.568640 + A04S -7.763887 15.972024 4.374495 + A05C -8.204440 14.727711 3.186103 + A06C -7.690404 13.460079 3.155545 + A07C -8.088167 12.534448 2.158266 + A08N -8.415068 11.748523 1.354524 + A09C -9.181118 15.128311 2.243393 + A10N -10.030494 15.451386 1.507075 + A11N -5.177090 16.559373 4.778064 + A12S -3.653588 15.928024 5.000220 + A13C -4.154616 14.275473 4.736227 + A14C -3.264318 13.188236 4.729194 + A15N -2.519451 12.287207 4.697544 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 17 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S -1.630227 9.434478 1.747300 + A02C -2.612029 10.877571 1.532541 + A03C -2.101745 12.202721 1.494585 + A04S -0.375367 12.592574 1.688730 + A05C 0.065186 11.348261 2.877122 + A06C -0.448850 10.080629 2.907680 + A07C -0.051087 9.154998 3.904959 + A08N 0.275814 8.369073 4.708701 + A09C 1.041864 11.748861 3.819832 + A10N 1.891240 12.071936 4.556150 + A11N -2.962164 13.179923 1.285161 + A12S -4.485666 12.548574 1.063005 + A13C -3.984638 10.896023 1.326998 + A14C -4.874936 9.808786 1.334031 + A15N -5.619803 8.907757 1.365681 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 18 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 6.509027 14.221672 -4.315925 + A02C 5.527225 12.778579 -4.530684 + A03C 6.037509 11.453429 -4.568640 + A04S 7.763887 11.063576 -4.374495 + A05C 8.204440 12.307889 -3.186103 + A06C 7.690404 13.575521 -3.155545 + A07C 8.088167 14.501152 -2.158266 + A08N 8.415068 15.287077 -1.354524 + A09C 9.181118 11.907289 -2.243393 + A10N 10.030494 11.584214 -1.507075 + A11N 5.177090 10.476227 -4.778064 + A12S 3.653588 11.107576 -5.000220 + A13C 4.154616 12.760127 -4.736227 + A14C 3.264318 13.847364 -4.729194 + A15N 2.519451 14.748393 -4.697544 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 19 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 1.630227 17.601122 -1.747300 + A02C 2.612029 16.158029 -1.532541 + A03C 2.101745 14.832879 -1.494585 + A04S 0.375367 14.443026 -1.688730 + A05C -0.065186 15.687339 -2.877122 + A06C 0.448850 16.954971 -2.907680 + A07C 0.051087 17.880602 -3.904959 + A08N -0.275814 18.666527 -4.708701 + A09C -1.041864 15.286739 -3.819832 + A10N -1.891240 14.963664 -4.556150 + A11N 2.962164 13.855677 -1.285161 + A12S 4.485666 14.487026 -1.063005 + A13C 3.984638 16.139577 -1.326998 + A14C 4.874936 17.226814 -1.334031 + A15N 5.619803 18.127843 -1.365681 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 20 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S -10.785134 12.813928 16.442375 + A02C -9.803332 14.257021 16.657134 + A03C -10.313616 15.582171 16.695090 + A04S -12.039994 15.972024 16.500945 + A05C -12.480547 14.727711 15.312553 + A06C -11.966511 13.460079 15.281995 + A07C -12.364274 12.534448 14.284716 + A08N -12.691175 11.748523 13.480974 + A09C -13.457225 15.128311 14.369843 + A10N -14.306601 15.451386 13.633525 + A11N -9.453197 16.559373 16.904514 + A12S -7.929695 15.928024 17.126670 + A13C -8.430723 14.275473 16.862677 + A14C -7.540425 13.188236 16.855644 + A15N -6.795558 12.287207 16.823994 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 21 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S -5.906334 9.434478 13.873750 + A02C -6.888136 10.877571 13.658991 + A03C -6.377852 12.202721 13.621035 + A04S -4.651474 12.592574 13.815180 + A05C -4.210921 11.348261 15.003572 + A06C -4.724957 10.080629 15.034130 + A07C -4.327194 9.154998 16.031409 + A08N -4.000293 8.369073 16.835151 + A09C -3.234243 11.748861 15.946282 + A10N -2.384867 12.071936 16.682600 + A11N -7.238271 13.179923 13.411611 + A12S -8.761773 12.548574 13.189455 + A13C -8.260745 10.896023 13.453448 + A14C -9.151043 9.808786 13.460481 + A15N -9.895910 8.907757 13.492131 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 22 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 2.232919 14.221672 7.810525 + A02C 1.251118 12.778579 7.595766 + A03C 1.761402 11.453429 7.557810 + A04S 3.487780 11.063577 7.751955 + A05C 3.928333 12.307890 8.940347 + A06C 3.414296 13.575522 8.970905 + A07C 3.812058 14.501153 9.968184 + A08N 4.138959 15.287078 10.771926 + A09C 4.905010 11.907291 9.883058 + A10N 5.754386 11.584216 10.619376 + A11N 0.900984 10.476227 7.348386 + A12S -0.622518 11.107575 7.126230 + A13C -0.121491 12.760126 7.390223 + A14C -1.011790 13.847363 7.397255 + A15N -1.756657 14.748391 7.428905 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 23 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S -2.645880 17.601122 10.379150 + A02C -1.664079 16.158029 10.593909 + A03C -2.174363 14.832879 10.631865 + A04S -3.900741 14.443027 10.437720 + A05C -4.341294 15.687340 9.249328 + A06C -3.827257 16.954972 9.218770 + A07C -4.225019 17.880603 8.221491 + A08N -4.551920 18.666528 7.417749 + A09C -5.317971 15.286741 8.306617 + A10N -6.167347 14.963666 7.570299 + A11N -1.313945 13.855677 10.841289 + A12S 0.209557 14.487025 11.063445 + A13C -0.291470 16.139576 10.799452 + A14C 0.598829 17.226813 10.792420 + A15N 1.343696 18.127841 10.760770 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 24 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S -6.509027 19.572828 4.315925 + A02C -5.527225 21.015921 4.530684 + A03C -6.037509 22.341071 4.568640 + A04S -7.763887 22.730924 4.374495 + A05C -8.204440 21.486611 3.186103 + A06C -7.690404 20.218979 3.155545 + A07C -8.088167 19.293348 2.158266 + A08N -8.415068 18.507423 1.354524 + A09C -9.181118 21.887211 2.243393 + A10N -10.030494 22.210286 1.507075 + A11N -5.177090 23.318273 4.778064 + A12S -3.653588 22.686924 5.000220 + A13C -4.154616 21.034373 4.736227 + A14C -3.264318 19.947136 4.729194 + A15N -2.519451 19.046107 4.697544 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY -0.0052997977 + PAIRWISE POLARIZATION ENERGY -0.0004115679 + PAIRWISE DISPERSION ENERGY -0.0090620393 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0018995793 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY -0.0128738257 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 25 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S -1.630227 16.193378 1.747300 + A02C -2.612029 17.636471 1.532541 + A03C -2.101745 18.961621 1.494585 + A04S -0.375367 19.351474 1.688730 + A05C 0.065186 18.107161 2.877122 + A06C -0.448850 16.839529 2.907680 + A07C -0.051087 15.913898 3.904959 + A08N 0.275814 15.127973 4.708701 + A09C 1.041864 18.507761 3.819832 + A10N 1.891240 18.830836 4.556150 + A11N -2.962164 19.938823 1.285161 + A12S -4.485666 19.307474 1.063005 + A13C -3.984638 17.654923 1.326998 + A14C -4.874936 16.567686 1.334031 + A15N -5.619803 15.666657 1.365681 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 26 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 6.509027 20.980572 -4.315925 + A02C 5.527225 19.537479 -4.530684 + A03C 6.037509 18.212329 -4.568640 + A04S 7.763887 17.822476 -4.374495 + A05C 8.204440 19.066789 -3.186103 + A06C 7.690404 20.334421 -3.155545 + A07C 8.088167 21.260052 -2.158266 + A08N 8.415068 22.045977 -1.354524 + A09C 9.181118 18.666189 -2.243393 + A10N 10.030494 18.343114 -1.507075 + A11N 5.177090 17.235127 -4.778064 + A12S 3.653588 17.866476 -5.000220 + A13C 4.154616 19.519027 -4.736227 + A14C 3.264318 20.606264 -4.729194 + A15N 2.519451 21.507293 -4.697544 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY -0.0000558284 + PAIRWISE POLARIZATION ENERGY -0.0000052238 + PAIRWISE DISPERSION ENERGY -0.0000119700 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY -0.0000730222 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 27 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 1.630227 24.360022 -1.747300 + A02C 2.612029 22.916929 -1.532541 + A03C 2.101745 21.591779 -1.494585 + A04S 0.375367 21.201926 -1.688730 + A05C -0.065186 22.446239 -2.877122 + A06C 0.448850 23.713871 -2.907680 + A07C 0.051087 24.639502 -3.904959 + A08N -0.275814 25.425427 -4.708701 + A09C -1.041864 22.045639 -3.819832 + A10N -1.891240 21.722564 -4.556150 + A11N 2.962164 20.614577 -1.285161 + A12S 4.485666 21.245926 -1.063005 + A13C 3.984638 22.898477 -1.326998 + A14C 4.874936 23.985714 -1.334031 + A15N 5.619803 24.886743 -1.365681 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY -0.0000011294 + PAIRWISE POLARIZATION ENERGY -0.0000001393 + PAIRWISE DISPERSION ENERGY -0.0000036522 + PAIRWISE EXCHANGE REPULSION ENERGY -0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY -0.0000049209 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 28 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S -10.785134 19.572828 16.442375 + A02C -9.803332 21.015921 16.657134 + A03C -10.313616 22.341071 16.695090 + A04S -12.039994 22.730924 16.500945 + A05C -12.480547 21.486611 15.312553 + A06C -11.966511 20.218979 15.281995 + A07C -12.364274 19.293348 14.284716 + A08N -12.691175 18.507423 13.480974 + A09C -13.457225 21.887211 14.369843 + A10N -14.306601 22.210286 13.633525 + A11N -9.453197 23.318273 16.904514 + A12S -7.929695 22.686924 17.126670 + A13C -8.430723 21.034373 16.862677 + A14C -7.540425 19.947136 16.855644 + A15N -6.795558 19.046107 16.823994 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 29 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S -5.906334 16.193378 13.873750 + A02C -6.888136 17.636471 13.658991 + A03C -6.377852 18.961621 13.621035 + A04S -4.651474 19.351474 13.815180 + A05C -4.210921 18.107161 15.003572 + A06C -4.724957 16.839529 15.034130 + A07C -4.327194 15.913898 16.031409 + A08N -4.000293 15.127973 16.835151 + A09C -3.234243 18.507761 15.946282 + A10N -2.384867 18.830836 16.682600 + A11N -7.238271 19.938823 13.411611 + A12S -8.761773 19.307474 13.189455 + A13C -8.260745 17.654923 13.453448 + A14C -9.151043 16.567686 13.460481 + A15N -9.895910 15.666657 13.492131 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 30 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 2.232919 20.980572 7.810525 + A02C 1.251118 19.537479 7.595766 + A03C 1.761402 18.212329 7.557810 + A04S 3.487780 17.822477 7.751955 + A05C 3.928333 19.066790 8.940347 + A06C 3.414296 20.334422 8.970905 + A07C 3.812058 21.260053 9.968184 + A08N 4.138959 22.045978 10.771926 + A09C 4.905010 18.666191 9.883058 + A10N 5.754386 18.343116 10.619376 + A11N 0.900984 17.235127 7.348386 + A12S -0.622518 17.866475 7.126230 + A13C -0.121491 19.519026 7.390223 + A14C -1.011790 20.606263 7.397255 + A15N -1.756657 21.507291 7.428905 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 31 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S -2.645880 24.360022 10.379150 + A02C -1.664079 22.916929 10.593909 + A03C -2.174363 21.591779 10.631865 + A04S -3.900741 21.201927 10.437720 + A05C -4.341294 22.446240 9.249328 + A06C -3.827257 23.713872 9.218770 + A07C -4.225019 24.639503 8.221491 + A08N -4.551920 25.425428 7.417749 + A09C -5.317971 22.045641 8.306617 + A10N -6.167347 21.722566 7.570299 + A11N -1.313945 20.614577 10.841289 + A12S 0.209557 21.245925 11.063445 + A13C -0.291470 22.898476 10.799452 + A14C 0.598829 23.985713 10.792420 + A15N 1.343696 24.886741 10.760770 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY -0.0048287014 + PAIRWISE POLARIZATION ENERGY -0.0010313923 + PAIRWISE DISPERSION ENERGY -0.0036105593 + PAIRWISE EXCHANGE REPULSION ENERGY -0.0005780584 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY -0.0100487114 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 32 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S 5.493373 -0.703872 4.315925 + A02C 6.475175 0.739221 4.530684 + A03C 5.964891 2.064371 4.568640 + A04S 4.238513 2.454224 4.374495 + A05C 3.797960 1.209911 3.186103 + A06C 4.311996 -0.057721 3.155545 + A07C 3.914233 -0.983352 2.158266 + A08N 3.587332 -1.769277 1.354524 + A09C 2.821282 1.610511 2.243393 + A10N 1.971906 1.933586 1.507075 + A11N 6.825310 3.041573 4.778064 + A12S 8.348812 2.410224 5.000220 + A13C 7.847784 0.757673 4.736227 + A14C 8.738082 -0.329564 4.729194 + A15N 9.482949 -1.230593 4.697544 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 33 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S 10.372173 -4.083322 1.747300 + A02C 9.390371 -2.640229 1.532541 + A03C 9.900655 -1.315079 1.494585 + A04S 11.627033 -0.925226 1.688730 + A05C 12.067586 -2.169539 2.877122 + A06C 11.553550 -3.437171 2.907680 + A07C 11.951313 -4.362802 3.904959 + A08N 12.278214 -5.148727 4.708701 + A09C 13.044264 -1.768939 3.819832 + A10N 13.893640 -1.445864 4.556150 + A11N 9.040236 -0.337877 1.285161 + A12S 7.516734 -0.969226 1.063005 + A13C 8.017762 -2.621777 1.326998 + A14C 7.127464 -3.709014 1.334031 + A15N 6.382597 -4.610043 1.365681 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000682193 + PAIRWISE POLARIZATION ENERGY 0.0000049121 + PAIRWISE DISPERSION ENERGY -0.0000178991 + PAIRWISE EXCHANGE REPULSION ENERGY -0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000552323 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 34 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 18.511427 0.703872 -4.315925 + A02C 17.529625 -0.739221 -4.530684 + A03C 18.039909 -2.064371 -4.568640 + A04S 19.766287 -2.454224 -4.374495 + A05C 20.206840 -1.209911 -3.186103 + A06C 19.692804 0.057721 -3.155545 + A07C 20.090567 0.983352 -2.158266 + A08N 20.417468 1.769277 -1.354524 + A09C 21.183518 -1.610511 -2.243393 + A10N 22.032894 -1.933586 -1.507075 + A11N 17.179490 -3.041573 -4.778064 + A12S 15.655988 -2.410224 -5.000220 + A13C 16.157016 -0.757673 -4.736227 + A14C 15.266718 0.329564 -4.729194 + A15N 14.521851 1.230593 -4.697544 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 35 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 13.632627 4.083322 -1.747300 + A02C 14.614429 2.640229 -1.532541 + A03C 14.104145 1.315079 -1.494585 + A04S 12.377767 0.925226 -1.688730 + A05C 11.937214 2.169539 -2.877122 + A06C 12.451250 3.437171 -2.907680 + A07C 12.053487 4.362802 -3.904959 + A08N 11.726586 5.148727 -4.708701 + A09C 10.960536 1.768939 -3.819832 + A10N 10.111160 1.445864 -4.556150 + A11N 14.964564 0.337877 -1.285161 + A12S 16.488066 0.969226 -1.063005 + A13C 15.987038 2.621777 -1.326998 + A14C 16.877336 3.709014 -1.334031 + A15N 17.622203 4.610043 -1.365681 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY -0.0053861361 + PAIRWISE POLARIZATION ENERGY -0.0006619356 + PAIRWISE DISPERSION ENERGY -0.0102862817 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0012961354 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY -0.0150382180 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 36 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S 1.217266 -0.703872 16.442375 + A02C 2.199068 0.739221 16.657134 + A03C 1.688784 2.064371 16.695090 + A04S -0.037594 2.454224 16.500945 + A05C -0.478147 1.209911 15.312553 + A06C 0.035889 -0.057721 15.281995 + A07C -0.361874 -0.983352 14.284716 + A08N -0.688775 -1.769277 13.480974 + A09C -1.454825 1.610511 14.369843 + A10N -2.304201 1.933586 13.633525 + A11N 2.549203 3.041573 16.904514 + A12S 4.072705 2.410224 17.126670 + A13C 3.571677 0.757673 16.862677 + A14C 4.461975 -0.329564 16.855644 + A15N 5.206842 -1.230593 16.823994 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 37 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S 6.096066 -4.083322 13.873750 + A02C 5.114264 -2.640229 13.658991 + A03C 5.624548 -1.315079 13.621035 + A04S 7.350926 -0.925226 13.815180 + A05C 7.791479 -2.169539 15.003572 + A06C 7.277443 -3.437171 15.034130 + A07C 7.675206 -4.362802 16.031409 + A08N 8.002107 -5.148727 16.835151 + A09C 8.768157 -1.768939 15.946282 + A10N 9.617533 -1.445864 16.682600 + A11N 4.764129 -0.337877 13.411611 + A12S 3.240627 -0.969226 13.189455 + A13C 3.741655 -2.621777 13.453448 + A14C 2.851357 -3.709014 13.460481 + A15N 2.106490 -4.610043 13.492131 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000066 + PAIRWISE POLARIZATION ENERGY -0.0000000235 + PAIRWISE DISPERSION ENERGY -0.0000000269 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY -0.0000000438 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 38 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 14.235319 0.703872 7.810525 + A02C 13.253518 -0.739221 7.595766 + A03C 13.763802 -2.064371 7.557810 + A04S 15.490180 -2.454223 7.751955 + A05C 15.930733 -1.209910 8.940347 + A06C 15.416696 0.057722 8.970905 + A07C 15.814458 0.983353 9.968184 + A08N 16.141359 1.769278 10.771926 + A09C 16.907410 -1.610509 9.883058 + A10N 17.756786 -1.933584 10.619376 + A11N 12.903384 -3.041573 7.348386 + A12S 11.379882 -2.410225 7.126230 + A13C 11.880909 -0.757674 7.390223 + A14C 10.990610 0.329563 7.397255 + A15N 10.245743 1.230591 7.428905 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 39 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 9.356520 4.083322 10.379150 + A02C 10.338321 2.640229 10.593909 + A03C 9.828037 1.315079 10.631865 + A04S 8.101659 0.925227 10.437720 + A05C 7.661106 2.169540 9.249328 + A06C 8.175143 3.437172 9.218770 + A07C 7.777381 4.362803 8.221491 + A08N 7.450480 5.148728 7.417749 + A09C 6.684429 1.768941 8.306617 + A10N 5.835053 1.445866 7.570299 + A11N 10.688455 0.337877 10.841289 + A12S 12.211957 0.969225 11.063445 + A13C 11.710930 2.621776 10.799452 + A14C 12.601229 3.709013 10.792420 + A15N 13.346096 4.610041 10.760770 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000107809 + PAIRWISE POLARIZATION ENERGY 0.0000024710 + PAIRWISE DISPERSION ENERGY -0.0000064008 + PAIRWISE EXCHANGE REPULSION ENERGY -0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000068512 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 40 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S 5.493373 6.055028 4.315925 + A02C 6.475175 7.498121 4.530684 + A03C 5.964891 8.823271 4.568640 + A04S 4.238513 9.213124 4.374495 + A05C 3.797960 7.968811 3.186103 + A06C 4.311996 6.701179 3.155545 + A07C 3.914233 5.775548 2.158266 + A08N 3.587332 4.989623 1.354524 + A09C 2.821282 8.369411 2.243393 + A10N 1.971906 8.692486 1.507075 + A11N 6.825310 9.800473 4.778064 + A12S 8.348812 9.169124 5.000220 + A13C 7.847784 7.516573 4.736227 + A14C 8.738082 6.429336 4.729194 + A15N 9.482949 5.528307 4.697544 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 41 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S 10.372173 2.675578 1.747300 + A02C 9.390371 4.118671 1.532541 + A03C 9.900655 5.443821 1.494585 + A04S 11.627033 5.833674 1.688730 + A05C 12.067586 4.589361 2.877122 + A06C 11.553550 3.321729 2.907680 + A07C 11.951313 2.396098 3.904959 + A08N 12.278214 1.610173 4.708701 + A09C 13.044264 4.989961 3.819832 + A10N 13.893640 5.313036 4.556150 + A11N 9.040236 6.421023 1.285161 + A12S 7.516734 5.789674 1.063005 + A13C 8.017762 4.137123 1.326998 + A14C 7.127464 3.049886 1.334031 + A15N 6.382597 2.148857 1.365681 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000682193 + PAIRWISE POLARIZATION ENERGY 0.0000049121 + PAIRWISE DISPERSION ENERGY -0.0000178991 + PAIRWISE EXCHANGE REPULSION ENERGY -0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000552323 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 42 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 18.511427 7.462772 -4.315925 + A02C 17.529625 6.019679 -4.530684 + A03C 18.039909 4.694529 -4.568640 + A04S 19.766287 4.304676 -4.374495 + A05C 20.206840 5.548989 -3.186103 + A06C 19.692804 6.816621 -3.155545 + A07C 20.090567 7.742252 -2.158266 + A08N 20.417468 8.528177 -1.354524 + A09C 21.183518 5.148389 -2.243393 + A10N 22.032894 4.825314 -1.507075 + A11N 17.179490 3.717327 -4.778064 + A12S 15.655988 4.348676 -5.000220 + A13C 16.157016 6.001227 -4.736227 + A14C 15.266718 7.088464 -4.729194 + A15N 14.521851 7.989493 -4.697544 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 43 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 13.632627 10.842222 -1.747300 + A02C 14.614429 9.399129 -1.532541 + A03C 14.104145 8.073979 -1.494585 + A04S 12.377767 7.684126 -1.688730 + A05C 11.937214 8.928439 -2.877122 + A06C 12.451250 10.196071 -2.907680 + A07C 12.053487 11.121702 -3.904959 + A08N 11.726586 11.907627 -4.708701 + A09C 10.960536 8.527839 -3.819832 + A10N 10.111160 8.204764 -4.556150 + A11N 14.964564 7.096777 -1.285161 + A12S 16.488066 7.728126 -1.063005 + A13C 15.987038 9.380677 -1.326998 + A14C 16.877336 10.467914 -1.334031 + A15N 17.622203 11.368943 -1.365681 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 44 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S 1.217266 6.055028 16.442375 + A02C 2.199068 7.498121 16.657134 + A03C 1.688784 8.823271 16.695090 + A04S -0.037594 9.213124 16.500945 + A05C -0.478147 7.968811 15.312553 + A06C 0.035889 6.701179 15.281995 + A07C -0.361874 5.775548 14.284716 + A08N -0.688775 4.989623 13.480974 + A09C -1.454825 8.369411 14.369843 + A10N -2.304201 8.692486 13.633525 + A11N 2.549203 9.800473 16.904514 + A12S 4.072705 9.169124 17.126670 + A13C 3.571677 7.516573 16.862677 + A14C 4.461975 6.429336 16.855644 + A15N 5.206842 5.528307 16.823994 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 45 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S 6.096066 2.675578 13.873750 + A02C 5.114264 4.118671 13.658991 + A03C 5.624548 5.443821 13.621035 + A04S 7.350926 5.833674 13.815180 + A05C 7.791479 4.589361 15.003572 + A06C 7.277443 3.321729 15.034130 + A07C 7.675206 2.396098 16.031409 + A08N 8.002107 1.610173 16.835151 + A09C 8.768157 4.989961 15.946282 + A10N 9.617533 5.313036 16.682600 + A11N 4.764129 6.421023 13.411611 + A12S 3.240627 5.789674 13.189455 + A13C 3.741655 4.137123 13.453448 + A14C 2.851357 3.049886 13.460481 + A15N 2.106490 2.148857 13.492131 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000066 + PAIRWISE POLARIZATION ENERGY -0.0000000235 + PAIRWISE DISPERSION ENERGY -0.0000000269 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY -0.0000000438 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 46 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 14.235319 7.462772 7.810525 + A02C 13.253518 6.019679 7.595766 + A03C 13.763802 4.694529 7.557810 + A04S 15.490180 4.304677 7.751955 + A05C 15.930733 5.548990 8.940347 + A06C 15.416696 6.816622 8.970905 + A07C 15.814458 7.742253 9.968184 + A08N 16.141359 8.528178 10.771926 + A09C 16.907410 5.148391 9.883058 + A10N 17.756786 4.825316 10.619376 + A11N 12.903384 3.717327 7.348386 + A12S 11.379882 4.348675 7.126230 + A13C 11.880909 6.001226 7.390223 + A14C 10.990610 7.088463 7.397255 + A15N 10.245743 7.989491 7.428905 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 47 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 9.356520 10.842222 10.379150 + A02C 10.338321 9.399129 10.593909 + A03C 9.828037 8.073979 10.631865 + A04S 8.101659 7.684127 10.437720 + A05C 7.661106 8.928440 9.249328 + A06C 8.175143 10.196072 9.218770 + A07C 7.777381 11.121703 8.221491 + A08N 7.450480 11.907628 7.417749 + A09C 6.684429 8.527841 8.306617 + A10N 5.835053 8.204766 7.570299 + A11N 10.688455 7.096777 10.841289 + A12S 12.211957 7.728125 11.063445 + A13C 11.710930 9.380676 10.799452 + A14C 12.601229 10.467913 10.792420 + A15N 13.346096 11.368941 10.760770 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 48 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S 5.493373 12.813928 4.315925 + A02C 6.475175 14.257021 4.530684 + A03C 5.964891 15.582171 4.568640 + A04S 4.238513 15.972024 4.374495 + A05C 3.797960 14.727711 3.186103 + A06C 4.311996 13.460079 3.155545 + A07C 3.914233 12.534448 2.158266 + A08N 3.587332 11.748523 1.354524 + A09C 2.821282 15.128311 2.243393 + A10N 1.971906 15.451386 1.507075 + A11N 6.825310 16.559373 4.778064 + A12S 8.348812 15.928024 5.000220 + A13C 7.847784 14.275473 4.736227 + A14C 8.738082 13.188236 4.729194 + A15N 9.482949 12.287207 4.697544 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 49 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S 10.372173 9.434478 1.747300 + A02C 9.390371 10.877571 1.532541 + A03C 9.900655 12.202721 1.494585 + A04S 11.627033 12.592574 1.688730 + A05C 12.067586 11.348261 2.877122 + A06C 11.553550 10.080629 2.907680 + A07C 11.951313 9.154998 3.904959 + A08N 12.278214 8.369073 4.708701 + A09C 13.044264 11.748861 3.819832 + A10N 13.893640 12.071936 4.556150 + A11N 9.040236 13.179923 1.285161 + A12S 7.516734 12.548574 1.063005 + A13C 8.017762 10.896023 1.326998 + A14C 7.127464 9.808786 1.334031 + A15N 6.382597 8.907757 1.365681 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 50 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 18.511427 14.221672 -4.315925 + A02C 17.529625 12.778579 -4.530684 + A03C 18.039909 11.453429 -4.568640 + A04S 19.766287 11.063576 -4.374495 + A05C 20.206840 12.307889 -3.186103 + A06C 19.692804 13.575521 -3.155545 + A07C 20.090567 14.501152 -2.158266 + A08N 20.417468 15.287077 -1.354524 + A09C 21.183518 11.907289 -2.243393 + A10N 22.032894 11.584214 -1.507075 + A11N 17.179490 10.476227 -4.778064 + A12S 15.655988 11.107576 -5.000220 + A13C 16.157016 12.760127 -4.736227 + A14C 15.266718 13.847364 -4.729194 + A15N 14.521851 14.748393 -4.697544 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 51 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 13.632627 17.601122 -1.747300 + A02C 14.614429 16.158029 -1.532541 + A03C 14.104145 14.832879 -1.494585 + A04S 12.377767 14.443026 -1.688730 + A05C 11.937214 15.687339 -2.877122 + A06C 12.451250 16.954971 -2.907680 + A07C 12.053487 17.880602 -3.904959 + A08N 11.726586 18.666527 -4.708701 + A09C 10.960536 15.286739 -3.819832 + A10N 10.111160 14.963664 -4.556150 + A11N 14.964564 13.855677 -1.285161 + A12S 16.488066 14.487026 -1.063005 + A13C 15.987038 16.139577 -1.326998 + A14C 16.877336 17.226814 -1.334031 + A15N 17.622203 18.127843 -1.365681 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 52 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S 1.217266 12.813928 16.442375 + A02C 2.199068 14.257021 16.657134 + A03C 1.688784 15.582171 16.695090 + A04S -0.037594 15.972024 16.500945 + A05C -0.478147 14.727711 15.312553 + A06C 0.035889 13.460079 15.281995 + A07C -0.361874 12.534448 14.284716 + A08N -0.688775 11.748523 13.480974 + A09C -1.454825 15.128311 14.369843 + A10N -2.304201 15.451386 13.633525 + A11N 2.549203 16.559373 16.904514 + A12S 4.072705 15.928024 17.126670 + A13C 3.571677 14.275473 16.862677 + A14C 4.461975 13.188236 16.855644 + A15N 5.206842 12.287207 16.823994 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 53 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S 6.096066 9.434478 13.873750 + A02C 5.114264 10.877571 13.658991 + A03C 5.624548 12.202721 13.621035 + A04S 7.350926 12.592574 13.815180 + A05C 7.791479 11.348261 15.003572 + A06C 7.277443 10.080629 15.034130 + A07C 7.675206 9.154998 16.031409 + A08N 8.002107 8.369073 16.835151 + A09C 8.768157 11.748861 15.946282 + A10N 9.617533 12.071936 16.682600 + A11N 4.764129 13.179923 13.411611 + A12S 3.240627 12.548574 13.189455 + A13C 3.741655 10.896023 13.453448 + A14C 2.851357 9.808786 13.460481 + A15N 2.106490 8.907757 13.492131 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 54 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 14.235319 14.221672 7.810525 + A02C 13.253518 12.778579 7.595766 + A03C 13.763802 11.453429 7.557810 + A04S 15.490180 11.063577 7.751955 + A05C 15.930733 12.307890 8.940347 + A06C 15.416696 13.575522 8.970905 + A07C 15.814458 14.501153 9.968184 + A08N 16.141359 15.287078 10.771926 + A09C 16.907410 11.907291 9.883058 + A10N 17.756786 11.584216 10.619376 + A11N 12.903384 10.476227 7.348386 + A12S 11.379882 11.107575 7.126230 + A13C 11.880909 12.760126 7.390223 + A14C 10.990610 13.847363 7.397255 + A15N 10.245743 14.748391 7.428905 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 55 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 9.356520 17.601122 10.379150 + A02C 10.338321 16.158029 10.593909 + A03C 9.828037 14.832879 10.631865 + A04S 8.101659 14.443027 10.437720 + A05C 7.661106 15.687340 9.249328 + A06C 8.175143 16.954972 9.218770 + A07C 7.777381 17.880603 8.221491 + A08N 7.450480 18.666528 7.417749 + A09C 6.684429 15.286741 8.306617 + A10N 5.835053 14.963666 7.570299 + A11N 10.688455 13.855677 10.841289 + A12S 12.211957 14.487025 11.063445 + A13C 11.710930 16.139576 10.799452 + A14C 12.601229 17.226813 10.792420 + A15N 13.346096 18.127841 10.760770 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 56 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S 5.493373 19.572828 4.315925 + A02C 6.475175 21.015921 4.530684 + A03C 5.964891 22.341071 4.568640 + A04S 4.238513 22.730924 4.374495 + A05C 3.797960 21.486611 3.186103 + A06C 4.311996 20.218979 3.155545 + A07C 3.914233 19.293348 2.158266 + A08N 3.587332 18.507423 1.354524 + A09C 2.821282 21.887211 2.243393 + A10N 1.971906 22.210286 1.507075 + A11N 6.825310 23.318273 4.778064 + A12S 8.348812 22.686924 5.000220 + A13C 7.847784 21.034373 4.736227 + A14C 8.738082 19.947136 4.729194 + A15N 9.482949 19.046107 4.697544 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 57 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S 10.372173 16.193378 1.747300 + A02C 9.390371 17.636471 1.532541 + A03C 9.900655 18.961621 1.494585 + A04S 11.627033 19.351474 1.688730 + A05C 12.067586 18.107161 2.877122 + A06C 11.553550 16.839529 2.907680 + A07C 11.951313 15.913898 3.904959 + A08N 12.278214 15.127973 4.708701 + A09C 13.044264 18.507761 3.819832 + A10N 13.893640 18.830836 4.556150 + A11N 9.040236 19.938823 1.285161 + A12S 7.516734 19.307474 1.063005 + A13C 8.017762 17.654923 1.326998 + A14C 7.127464 16.567686 1.334031 + A15N 6.382597 15.666657 1.365681 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 58 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 18.511427 20.980572 -4.315925 + A02C 17.529625 19.537479 -4.530684 + A03C 18.039909 18.212329 -4.568640 + A04S 19.766287 17.822476 -4.374495 + A05C 20.206840 19.066789 -3.186103 + A06C 19.692804 20.334421 -3.155545 + A07C 20.090567 21.260052 -2.158266 + A08N 20.417468 22.045977 -1.354524 + A09C 21.183518 18.666189 -2.243393 + A10N 22.032894 18.343114 -1.507075 + A11N 17.179490 17.235127 -4.778064 + A12S 15.655988 17.866476 -5.000220 + A13C 16.157016 19.519027 -4.736227 + A14C 15.266718 20.606264 -4.729194 + A15N 14.521851 21.507293 -4.697544 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 59 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 13.632627 24.360022 -1.747300 + A02C 14.614429 22.916929 -1.532541 + A03C 14.104145 21.591779 -1.494585 + A04S 12.377767 21.201926 -1.688730 + A05C 11.937214 22.446239 -2.877122 + A06C 12.451250 23.713871 -2.907680 + A07C 12.053487 24.639502 -3.904959 + A08N 11.726586 25.425427 -4.708701 + A09C 10.960536 22.045639 -3.819832 + A10N 10.111160 21.722564 -4.556150 + A11N 14.964564 20.614577 -1.285161 + A12S 16.488066 21.245926 -1.063005 + A13C 15.987038 22.898477 -1.326998 + A14C 16.877336 23.985714 -1.334031 + A15N 17.622203 24.886743 -1.365681 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY -0.0048286961 + PAIRWISE POLARIZATION ENERGY -0.0010314033 + PAIRWISE DISPERSION ENERGY -0.0036105715 + PAIRWISE EXCHANGE REPULSION ENERGY -0.0005780855 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY -0.0100487565 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 60 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S 1.217266 19.572828 16.442375 + A02C 2.199068 21.015921 16.657134 + A03C 1.688784 22.341071 16.695090 + A04S -0.037594 22.730924 16.500945 + A05C -0.478147 21.486611 15.312553 + A06C 0.035889 20.218979 15.281995 + A07C -0.361874 19.293348 14.284716 + A08N -0.688775 18.507423 13.480974 + A09C -1.454825 21.887211 14.369843 + A10N -2.304201 22.210286 13.633525 + A11N 2.549203 23.318273 16.904514 + A12S 4.072705 22.686924 17.126670 + A13C 3.571677 21.034373 16.862677 + A14C 4.461975 19.947136 16.855644 + A15N 5.206842 19.046107 16.823994 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 61 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_1_L + A01S 6.096066 16.193378 13.873750 + A02C 5.114264 17.636471 13.658991 + A03C 5.624548 18.961621 13.621035 + A04S 7.350926 19.351474 13.815180 + A05C 7.791479 18.107161 15.003572 + A06C 7.277443 16.839529 15.034130 + A07C 7.675206 15.913898 16.031409 + A08N 8.002107 15.127973 16.835151 + A09C 8.768157 18.507761 15.946282 + A10N 9.617533 18.830836 16.682600 + A11N 4.764129 19.938823 13.411611 + A12S 3.240627 19.307474 13.189455 + A13C 3.741655 17.654923 13.453448 + A14C 2.851357 16.567686 13.460481 + A15N 2.106490 15.666657 13.492131 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 62 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 14.235319 20.980572 7.810525 + A02C 13.253518 19.537479 7.595766 + A03C 13.763802 18.212329 7.557810 + A04S 15.490180 17.822477 7.751955 + A05C 15.930733 19.066790 8.940347 + A06C 15.416696 20.334422 8.970905 + A07C 15.814458 21.260053 9.968184 + A08N 16.141359 22.045978 10.771926 + A09C 16.907410 18.666191 9.883058 + A10N 17.756786 18.343116 10.619376 + A11N 12.903384 17.235127 7.348386 + A12S 11.379882 17.866475 7.126230 + A13C 11.880909 19.519026 7.390223 + A14C 10.990610 20.606263 7.397255 + A15N 10.245743 21.507291 7.428905 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 + PAIRWISE POLARIZATION ENERGY 0.0000000000 + PAIRWISE DISPERSION ENERGY 0.0000000000 + PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY 0.0000000000 + + --------------------------------------------------------- + PAIRWISE ENERGY BETWEEN FRAGMENT 63 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) +fragment XXII_exp_N2_2_L + A01S 9.356520 24.360022 10.379150 + A02C 10.338321 22.916929 10.593909 + A03C 9.828037 21.591779 10.631865 + A04S 8.101659 21.201927 10.437720 + A05C 7.661106 22.446240 9.249328 + A06C 8.175143 23.713872 9.218770 + A07C 7.777381 24.639503 8.221491 + A08N 7.450480 25.425428 7.417749 + A09C 6.684429 22.045641 8.306617 + A10N 5.835053 21.722566 7.570299 + A11N 10.688455 20.614577 10.841289 + A12S 12.211957 21.245925 11.063445 + A13C 11.710930 22.898476 10.799452 + A14C 12.601229 23.985713 10.792420 + A15N 13.346096 24.886741 10.760770 + +fragment XXII_exp_N2_1_L + A01S -6.509027 -0.703872 4.315925 + A02C -5.527225 0.739221 4.530684 + A03C -6.037509 2.064371 4.568640 + A04S -7.763887 2.454224 4.374495 + A05C -8.204440 1.209911 3.186103 + A06C -7.690404 -0.057721 3.155545 + A07C -8.088167 -0.983352 2.158266 + A08N -8.415068 -1.769277 1.354524 + A09C -9.181118 1.610511 2.243393 + A10N -10.030494 1.933586 1.507075 + A11N -5.177090 3.041573 4.778064 + A12S -3.653588 2.410224 5.000220 + A13C -4.154616 0.757673 4.736227 + A14C -3.264318 -0.329564 4.729194 + A15N -2.519451 -1.230593 4.697544 + + PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) + PAIRWISE ELECTROSTATIC ENERGY -0.0000011294 + PAIRWISE POLARIZATION ENERGY -0.0000001393 + PAIRWISE DISPERSION ENERGY -0.0000036522 + PAIRWISE EXCHANGE REPULSION ENERGY -0.0000000000 + PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 + PAIRWISE TOTAL ENERGY -0.0000049209 + + --------------------------------------------------------- + LATTICE ENERGY COMPONENTS (ATOMIC UNITS) + LATTICE ELECTROSTATIC ENERGY -0.0314930783 + LATTICE POLARIZATION ENERGY -0.0042380789 + LATTICE DISPERSION ENERGY -0.0468152806 + LATTICE EXCHANGE REPULSION ENERGY 0.0053768383 + LATTICE CHARGE PENETRATION ENERGY 0.0000000000 + LATTICE TOTAL ENERGY -0.0771695994 + + + ------ PAIRWISE ENERGY ANALYSIS COMPLETED -------------- + + ENERGY COMPONENTS (ATOMIC UNITS) + + ELECTROSTATIC ENERGY -1.0077783658 + POLARIZATION ENERGY -0.1356187024 + DISPERSION ENERGY -1.4980889525 + EXCHANGE REPULSION ENERGY 0.1720592008 + POINT CHARGES ENERGY 0.0000000000 + CHARGE PENETRATION ENERGY 0.0000000000 + QQ ENERGY 0.0000000000 + LJ ENERGY 0.0000000000 + + TOTAL ENERGY -2.4694268199 + + +SINGLE POINT ENERGY JOB COMPLETED SUCCESSFULLY +WALL CLOCK TIME IS Tue May 13 02:44:11 2025 +TOTAL RUN TIME IS 1 SECONDS diff --git a/tests/pytests/__pycache__/addons.cpython-312.pyc b/tests/pytests/__pycache__/addons.cpython-312.pyc deleted file mode 100644 index 1f18b305f7620e6addfec20431bf28a51ad0e1f8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1089 zcmb7C&rcLF6mDnBE-)+_LGVY6O^n9zu;b6@ftYxZU`&ui5M4~h?zHR<+npKP4rGZM z4qiNoCrrF})W~1pzu;vzn1G`<55^mjnu%|_o3roU z-d_D70C$0dCQ}s4;PSXIMRAZY^uk~XBPO-Iu29d@FFCfW+M8!YC4zZDs6<2)pV2Hy z8WfCw-*%-hi1KT0HQ*J&RLzY^!e!m95Wk+pZbgt#mn3fTpyKMu=3`eesiYe>J1e0y z3S}v7riTLQ8I4}ZmOK_lNwp?S(~U~$YO?~q6^2&FHwwpFg;QGxhQFc%-|Qo=hc}Np z?W4|yeQv$c8oReqnr+*&Ei}8MQ#x;)c3^62b%_YQN)++&<(bJyVagQqRS;Hjtkse# z!-l?uZ-r73&i8hMc^opINl8Q#laOXpMVN()i$vh52h$UGCZ}#pPiUIFU_?gY^1y}C zMRK7;+2WP+SC=QIG%%(SlQ`7GLFn^@GJJDsVAxS=Ci!ZR@?ieXKm^BIrg z1`8FgF+!cbG~cOQdhoH&I5Q`Nml755PESocv$CbAK}0>x%X$z8^J#w~^-Hq?r$c{z zPj@6^eGi0fQv0+?d&e5O+nik&hjnPar{vmf=OBb%LGcH;_A8IzeYiac28UnHy_nl9 zo@^ISenAIUN8V08S%5Z<+Y_WF{GB7~3-Qba*>%`Fdr5HCO)sN5KPy~jE6*=BzT?t(apmI5ga z50EH43A8EDHXu>a9dbv-j(tB#LBmQr^Ud$hH~V!o8X|i>y%@~CSp5@>_3>7q{b<1% z%20+26yZ)gbC)?7&An)V`-mU;4&wgN-nx9NGbeLDdzVh{$p#B_xe7+)pEdrCn&4VZ zn2`mFh7BHvzo5^d2_%;?ugd3R#|$K^YHor=t4d4G@an0xaxG|q+8Jul1wOn$V{8J! zUuiCtgzWo&o>Iv~qS%bS%!^cTHKTQ+3wcb_gdOXerXnfXEUud(PpQ3pT2lq}v~GIM zs&WcwQa5H#auw@3u3mGI6ouHakH7@&z=~7!!y~N)$dIWnnX)_>nAgvZp+#Urf^5VH z5PYNY`-jB7HA3+2f`It{b_^9yM4VM8rMP9=z~{<->Te$DI*)e@Np)VRyp(45N!`R7 z>#ki;w}V7VE`ZoX@Dq_MZo-WVcHjGkwiwdmL>Rw^CYa`Lloq_(S;woJqi4S*P9Dvx zOc(sIxMwGXPn6HBSh^VF?+7i>yV24|&i?70_XlqeKIG@OukhrzgK^lp$e~L>OR`Nk TI)8A5=_cV}m(UWM)p7m{{9(Ga diff --git a/tests/pytests/__pycache__/ene.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/ene.cpython-312-pytest-8.3.5.pyc deleted file mode 100644 index ebd6c11f75baa8742cd54c16e3b3778ce37a2c27..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1142 zcmZ`$J#W)M7(Uy{#deY=hL$u!h!3?wS?YlmK_=9x6H^w;v9FF(e_YRwXb?jpin4a2 zLnk)W-@q?mA!?)MrKT@4t$7aQ<_W*=1|)?n_j18}lR(Cwmp^L0qA;=uLc!}sf##5h zEUNI`uuUIRaf?t1haSz@Zp6aPO)7fb#$776d#)F|K}1VU+&3cl?#d%GEQa1Jl!w}m2uy5+h`rroD~v8B@XlJ#B?HBHf`I$VT^*m%zOl450jQpX01Z!hhJAn0pbgV4wy!$3E z4e}Ep9RY0&w4LQcu$V;EF{th=9D-UBEsnwBuC}{Mb5G8g>(VhVxP=@QhsEtOQ%9v? zX;RWAT79BcCdDep>fA&r|E|b$;u(+yX*v&tTv{-J$|x8H2k_oN`VR5~>w`*`*#!Rp D>5U38 diff --git a/tests/pytests/__pycache__/libefp2py.cpython-312.pyc b/tests/pytests/__pycache__/libefp2py.cpython-312.pyc deleted file mode 100644 index f987bfb65e03679bc48cc6c3b64be07ca77d9ac5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2438 zcmc&$+fUn87(XYrgYA&!)=PjuZqSi#C54KYt}E(|a_OpRTeWu5#0)kxU=qtVrO6x( zO?#jc51u-yNu!obdl(gcC~y1=(=;itbajt-Kw9^})2NtKse9RR8Uw0YsMy0!WS{T& z{C?lqAXtQ`};;ETZ5#_wbW z1+$R1X)xmeAZz1^EHMJIB)%whlcfQkoVS@|06Ia|uA2PH;3*9h0B^rb%vaG68_?{d zl!e%u=c{72MypY5I!yk14oF%qdW;CJz?%KBO@~o*% zhw`s)t&hQRvKqlV###YTAhWyg4$U!YX7H7<=_}q>VDeAwi{m;_NZx7AGEA;u-p(;r zy^z1u*in2IuMX8|J+ZQ3MXuR0INR0=g16xBGqY(i_P}@T$S3$(GoNo239+N5|2Y#n zoS|`bxGT|2?OxS8pRnq(PLOw5xjzTKh~T=e-Tln8+MO~r(@cW@s-Jgdu!GyJSYAS4 z>etBE)uqO4p)~5X2zCph+h$x0?o8&->L?Iwd#gRF$I6mMT0GogyxTjBMrzcs?Gq3M z?f9*ov_WtcK>V9&xj|e7lQ8DHG=h};9rCZ$u927O*1OhB0YN$A`Ya)ep~;jy7Me_` z*FqU8G@K9xL=B}AYI@D= zi)&^>MD`o$3^zEGv3I8?l6)w`hAg%cV-T5=ge0OQ8S@b>3mh*dk^-{JiXI4Ds#yZ0TH5*j5!f2CI*FJX&{l55HZ-nA%g1|L~O;^0W~cNh&3$^ zB)M@xL5_-C*;Ei5Mr6evrBo(n6IkU`a0rSBCKR*Pgtm_tr{k9uK~~~odV=TT7kkf~ z@BS!W^+p+!2FAH`$FYvixGE^B5|`31=a+yEDcvTek;e>qU@L+NRc^s{@J9$J12~CO zV3qYwoi$jePTY)5on7^Kr}_+!58u4|r~02V&go1pT4tJx;T77cyNYa1o9is?YcJCs z#y+p%@!qcguKreF`rH%Wq5J{Ebuia_^J~K&n04eG1*c9Kjgew|{)*17xDVv)xlB$h z9elU!es9%Pm-}?t72XaFgp1*PkIop4L7g>xjm1ODzSg-OqrS-qG|u+r`wACx&=fD^ zFBE!n@JTRKY%v;I<~;eXxzWYb_fv}#MkxFf{R90Yo1@H~L(2`vjKJZ?ful=-qYs3K z=NH2ZJ@cu>p{2Id<-nOeZehj#<%ae>vfu2^vj)%*Tn~W#O-28*FJ{!$&(`Pb3jzI{ z5eUup=lcsE>gQL?jNZF~GvSXs_Q#g|u?H;=sfXMGJs)3;E*<&ck^j^>0h$g!eFJb2 zE(|TOza4r1k^f``xK0C4!((@N$sI1n@Yxt{yoxNjBgGSCciXdm2wc9^x~At0V1s{u z3<1SXcYl9e&)n)Nd85S>CAO_h#tp{-{i~8AQX(VIFGGwhF-6=&_gL+nNlfL4ptR`- z5>+~sKY?hetVGJO4G1EkbU}$IsF*#+c3z;YbUQQO_sz`B+C#C%^h0qTX z3{S#9aQs_B=q<95ExD*6B{t>BR!Tx%x}it|Ms27>T`CTf$9Aba_J`iisngI~$WCob zjSSJ3ribj#HEA~@VN}OqNLb_qew~pO=0t>N zMiAGASQe6n+{BFQwCg%evPgN_3K-$CaFs=dTOluC+cs$s5kGRU%kv@>j0XUp3Q3ei zrWFLtc68Z9sL^EDx7x4(7{eHhVu;~FV=yFG zSY(}cx&Fut?2bzwvwKikeChB2t|M8Jq^}6Aqt~S)6=|gnZ_V3RD}A-Ht5$pRcl~Zp ziIKdI%6(McoZCY)Ni@+%6Pwd}sPav4Gkr9(Ro;5a)AbW5c>g+}A(RiGrxAW zkhGCs%g6bNxO_9t7UNtg&X?oLY+Nk;D(S`43DPC`Xlj%YtCH>V>>@kR@&W}_ukCh%-*L=CW&Buc$sXzk0JC! zIO8>Bz&ZLUA@l~>$d+7GlZJQ9ldYJ9ym(EKMvPihiMo;<2T$*n!qgsHJ10g>Zy-Ci zE!7f4Uzr`V)0-rApte{N0!3+LpFYni%BQ)J4c{w6mH4)_Bae__uFI6lP^n%)sSTC- zIpzGt>f=s_HE&$x?S!3#or0aP6+8V_JJa#aixFos-ugFRE5O7S{=?725Gj(GX}z{o z$sCA)rxlqi&BefUnHU*Y{N{br*MjGSxtKnxXgp3_V)2CSgw(XLM|o_WahV1#j|+_Fh>zSUSnxD_zMWnn7I3^zia!M1JEAR>O`V3((bD;N&|UJOYz^h_%V znC`_3qB>;0Eqa6HQG?dCp!E_ulAKx*;S;TJd#Wl560BD8^ClF4G`CgQdd%b1V@P=SDxe{h_n@W}@1?q_jSK|! z(%tkRogWmg50cqIDlhEP{2-hAozt_iW28&+VR0IuCVGC?-&L=5l-e%vqf diff --git a/tests/pytests/__pycache__/spec.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/spec.cpython-312-pytest-8.3.5.pyc deleted file mode 100644 index 64777c81a4520bfc726d6a333342aae4bd853af3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1182 zcmZ`$y>HV%6hGUsV>?L`)0QMchz}K^EcL*OAQOUxi7AWa*w@6VKdxs-G>9P)MG;#! zIxrwM)IWofg{YNkZlMxG)h(!Dz2^fHJBnK7U?f)X&FKOzRaoz|MW)c7@cFXkEt?6Q*>DdF!fXR)3;& z`)b_I+cN#wR+25+>Zgmn+_{={LG|AM<1LK`@CMZ8vl(!W!ZAyDNz}+ekC5SchD)T) z!5gz}HKe0V42u*cM<;bnpJuV<49Lx6HuHvr^BMPi!cr4U)IUqV+k8f((83Vc+ig;i$res9XE3P zkQAF}V4PWX0}Ub=MyqBRLL51Pzlz~&>_m_#XD*V@d@4<5bi>3%Mg!Mr!!<;5R)8T9 z7!=u?At{-*ZJ;2ckJCa(k(pUFWGRGEVi{HtVB7IcDoOGPLu67NnS}!sQI{2Xs835# zJJbbzh&u!Nj1P&3u;WKx!3i7r-xoTaml;`Iz2mrT45O}&%)T40>uu9o?<2j9P2cL$ zR%yX{TC~pE2=%m`P-i1sMFS!~_5!=_!Y8;vmDyhlztLkVa2)pwfGzN@Je5JdJoZN3 zfmEGH)jg>`6b_Z;?YBSVm7y2|;Q(k8plv_c2erhiOh9FOc^_00t2P0(9c|}1$=yGt zsw;;q;Tq?-Fe+@7Xmng072~27YxP(y$At>R>O!oP;>uE7t^HY47x+`4a>BF*xLleR YOUl?E`FqmMq3{!kL+ibYAJRVl0o|Axg#Z8m diff --git a/tests/pytests/__pycache__/symm.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/symm.cpython-312-pytest-8.3.5.pyc deleted file mode 100644 index eb4a3d8f6e5238265fc48c13c2617da9cc08dd37..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1079 zcmZ`%yKmD#7(d63ow#}Rk)#y^6$qh#hz06Y5XwpiCMGY&k4s|e7kB3tN2-*nMP2Dc zhYG>gszT!bV4*5f!+}H*1L{`PjfuNF+Nx5|_V@k1m%s0Kcc1fl6|lAaJl)Qx0Qk*~ z(aH_MX+r?uEpUJ%ct98WI^~OYN&vp3r-ea8*5!Ug(G{jsUgjf+fA1*Q<=)-TCQ3Zlg3X93%p}mq zbn>Omi1{!erdQ|5ZqPy!qm0-s07zzn&&ZRF`&2Tq(_}UzMi>!HMe~70r9LciX9STO zI<9S4;VW7;SSO=(*)8%||2$$gx60!%fT)#Fk!hNakQt~?M_zk4H_G=Z@*oglDL_jas diff --git a/tests/pytests/__pycache__/systems.cpython-312.pyc b/tests/pytests/__pycache__/systems.cpython-312.pyc deleted file mode 100644 index efc26d6dae687afc17b79708db6beceb003d8ff9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11315 zcmds7dvH|M8Q;gbv!EhWS*~g>?2Cs#{V+P3}89NNk2FcWH zl+0n{rUHYZ*(3>f8=B3M1*jldfm$RRP^)AIYLgs5?UECyLn;93>@n83G6>vA(y=F= z6uvwr_AB)ah#@7QP;8eO-oaKQ)*c_uTbFIuaEigO&N3>Z2KT7nEzoYsL`++Zn+@x1 zzHYY9anRBG=E#>26+Ias?kZHv-yG)Tj}rnEWM6H8mLP%MTmt*ZK3^xqT< z)0n@br&|j8uUm2TvgJ4UmC9RUKZ~|>2779MP`lU5y5s?C`}2aJHm&A zN*42`1n-WU4hd6PtTH83KECQ{`|i5ECA~{u2)$DOV!K>&Ahv(<2n=f0yVY#@tTPl=_bYOb`dlFZ+n2VQiaj#S=mFd7P2W&f6wt|aK=HgSN zsZym5Y#(4xM*mAgbsXNc2DX1U~M7 z8aOKUzk3j$(+P?jQe~_RP@HQu@9&BJR`#4osQI33`5{rwGRYaNjnuK{j7U+|6Q!6l zpe7Gy%Nt~(R9g|qpu|)2i?WOb+5FR@$~Y|b>~coHroju3OD0N>EV9}oOMn(a1}z7o zN-jDD!o$+1mii%DirF z5YGX4&I!aT06f%U7 ztZ|G|F-*@ON!vngb&)o(WJk2lLP%Gls0`B9Xr#R>9;#TVL;n!TpMO2Y|KTpL+`lV&h4b)lWRa|UB@WP^ zi)81rKMtO4Dv`m`LX-nDc-C%P*gM1Nt}B z|KV)wwm&2klt~_$bh9phn^56C5>=i;nH+!isRLCnyq{3@;4zUveIH%_kVmGMD7e2x z1_~-wsqizAApE2CeF^f;GuTs`Oa`9Ao~9BcQhb;E_A?(R$giL+D=!^P5EvUAAd%eg z&|_W2cO}IP&L@mP6RTQIkk0-yy(ix{%EbG-hL1OSKTi;)NS{cs&qv=g%jAI$WZEf` z`>(B}p=76}{Yj1b7!6kKI#fyMAOPSPXLD7Lg-EY1$%36Z?K0;dU<)+{!a zu<9DudTw62*BBtUevUs2bHHY_Ws;mhg9zHohP%96Ry%tpJBVLoC(tXC+t@;c!pf5U zDxvi0Sn2Q@OOPH|=Jw|w6q$WeW2O}VPbULO8{1>3N2{u;#+oX1bSWfX1aIuKbDAna zour+08oN=Br(&vk&{E-pPNXn;;+1=;ckn(qraCWDB8xV6Nj~Vatb*KFC z5zctZ*NvQaoyXN9 ztGuxtl2ZpZvy1Y?#sjdP!!@&M^28RTNs^$W-Nj&!@Z-rJrulrYQO=fV~MThBU~0@xmIymMnu)rDQDG2T9|E`GcVq1}4sa+=0?=fa*O zd8I-f<2_wtymMjWcSZ4ib}M=gG&P$zOooiTLa3T==$$|N3kvnVbU#lCq>z6$oF2&)cS;44i^I+>L*0$%6nYfrLlJS5%zH=dM0=5nC#@+>@rG!6m&CO>kkKde4Ij#Kh`gg77nP9@U zTkQpNhsiBVe!KCS3OpY=?MU-DJ93;R;_3z~QgZ9qZiN~ewTQ#wx0?t2Sj9T9@m`I$ zcfA}opAWx?NaZ@PD*&7S353Tg=jyUa@SBJZZ1e~5z7GDUk?9<^TdIn;>49{uqn1L&Y^1 zV#f$3+b+f^J4>v_5Oa*ogOF;yz-1al;F%dvq$OUgFf%5bo@Mw-RL&*nIZ;F`N=%h& zPJk}Qbo8I7NtLob`B_WXK%u+gjokw(Tw8wLnveX<@6=)oHd1_1^eW4vH&Fu2`PHA1ppu5K8_bdT|4 zZ*9+9n0dq+@31#MPi(BTa5G|!&vMM}j6F9u!QI5(bxY!;>GM5y#}N+4&1~2(7qjEI zo4fDNs?4fxmAYC+*x*$~_g{bgm6?^9mHF47fByOBF9HFt4M+V?oyS9W+ibt03w{)6 z$n`~bo9$JbY?JMsw!?OIF6eT!7T9fF(qX4vz2iFUVs{D;7qYYau$!GdhdnqKbb7md zhkafC!~U+o;Q)){=q&m-NJExhupKUzoq#2>3$Ro!1T2%?faS6WutN3%R?0rWD%lTM zEe8N+$wh#({tbJ=7PoD;y<%@IXt%W%97ULfJ#Lo^zFqK*LdljWz*WJ1+_B@Iuz$rCbnFd! z(`Bv4!%ABu)EnuJ#FTKXy{9`Z$?ehJw3lE6IU-7=Gt!z45R553(HO$Drsrl{hI)J2 zyJI0WxoEm9atdfSQdT0pCpuXwj^3Wmv>za>w4YWVRd7oAkQE7F09i`Aj06uHjq z{KRdmSvcZd_}ZGY;TIcTY<+3Xxix2+lir2nzM?bt|Nff8=DRa0A;wGIYANIWxItv^ zrwH&>TMXSpJ$Q4Vchx~5vJM&VOLm+uxS++bQ#g9tSqD#t-7n0#iA#PzVUKzET|q05 zrBi4NvU3w|G0a66D1~&E-3dp`$796{;`X@XqUVB^+k_OC&f25ZvRC%S0z6bl5y$j1 zf8I%3bat$i(>uyIrk`Vs#n3e`w_=P@p@-zy#2DRn*(dw+&QWFV9L2>OP>dl>a-xSs z4*YUp+HznQbzzkQ5fV8F7|LaqTL(|oBAmp-$wlX#r(NJB&RDgmef@1x&&fLCP9B$^ zpTj5Nls(}{NPV_o@!kVz7y5D}(mhb1P&-R|h>?Wka98h#KlU~CbYF@q|Q2ApX}Z(luu1_F%)RuNb;5J7Q)%mCd_{Z2y}f;*mJ{urvG(q0+SS?98t#my zy`VC#6jsu+Leb+rCpu-~mrAIuv!^B88R`yqMbe&7G<+;VG(m0T(JLDj!p*Aj+LoKp#C_t*$2H#cK6JO=E2oubFr)4u#%z+OKj< zdN~bYWg|$`q@teyoUy&{EC2e2Guy`{_n$oY?1Sf4^&d}_tsRxt5n<1>dtTT(?k##{ z#F@MD$p&&NH5dKmi#C<_RyC9seHac#!gR35j8E-^T< z1>MS8!in>d%o>fQ3tD^CkR&QA>j`WCh*H{&)tPd;7G*2$(^I2fh+-z(u02(@Zd6)t z%I*HAuNsWev*66O_cgxPv^FWN)%YHmUSVo({djQMnLWwU#VKjY_@br#jsJQ#?k`A5 zcihr!P$4E^&IXT7$_63Ts&cIZV-QohH!hm-4NJU`ZW9jKsj{_%WWo}04=mBCu|%iF z5=ka@YE03oGDBjMr%_(ey;N?UF?I-v6=dx&mO=I2S1QHsx<0}&EAD6z<`V2>8z1S^zFH8$#w&E_w`5O)rz>F2nczeRr5 z*r+Q}2sT=__kcpN1{^B4q&KG25SRz>;iW$u|9*EDnbwHBneYj7#i7w0F%@wm=uNd5w^4%k((zA<3rRp3k+FNz5BITWT zrkV5Uja!n^7M)L%a5}zzQ&QRlT4hSAKDYe!uchX!8Lz2*z3H|4L99+mv)`AzBm%1s zyOm|w9L#&eq|Do#VKatqmmRWnUdTW<%)0H6VGCqeynrOqoYE{)R0tWC*tsUZ;>=hz z7_Nh{Zb|krxz=wY*9HVb=5p;+WVp{qt|fMuubRcEC@_(<tCXU(9r&6m8inOhiupD zp!S^d3@=T3s2Vb%FrH4n)Io#!tiw13p-)y|GQ`#)bVzy>E~v>a&ZX>zDGs?1#$)Dp z+(=JM66Bj6;!u5N9XtZ#2?xqaYW1um zAr)X&UgXCa6Vn78HCaJ%nQ$SrON7P*QwJ&fvyOy2?(V3~BH}XPk>@15aZlV!I@5$N zM#>|0U<%9`*XRHJaX%)mF35A`n%H6E{^D=(2;qMNC}j zF=+lF>zEh=9K0rXoVeiN^1QrrUTH|vB_q!0SlE**^=Ue1l@I#AmVgk(~oR}=L2q*Z3MK~`ni$yp;4<|1;?`KAG zff!APvBMCTX2-IQc!0;{XKo}1Lpe-EC!F}Z@Gr#QjlTzfFaExSU#?|5gJ#;Yj)WxN zk#G{<(5F-rMfzJcahW$!5-$Nq`iUHzk!hgKxJ6_di~cafk+l95pKh6E${b0) z`+R_Ln)19kO*!W<{5%y-lPHmwF)l+!Ls`cc!ey3EiOZ~*;W9H^hMFyJ`ExczpUYT`nzFPrai^)ir6^uxI%=wr>k^gmig+a(HC18M_LOvIBhu)a{`t* z5Ft?qjkn#nXv#XKeC08Va233*S%j<1Gu)J=AGztgk4Y=lc}pwRJTLsLNh@4SLt`T7 zcoUWQSK;qTcwwTwO0x)59z-__x>UnFQrxm>9M#m1tYMUg08W=~+O(;b77mh$^wQvl z+S=2O&6_vtbag=??&u^eW$a>Mu|7O-qPsm74aIswEj`DTHYADT<1Ne_++bk%2&n4w z+2j#3KO{xI!Ysr05ytZ51=jZN6EDneSQXsD=9oUBwf>(LZm8`(ri9x*{eOnFmyK9q zsV=@GENk^8TXae5E!XluK(sKcISGhHY6?c{s2b=Yq1K)g-7#-sDb{H&uT|G_iglh1 zz_d8XqxO8lI1vw4Gt~f$6R{>#BLdTi>+r}Bo{2|xMbxL&9mBI_T-3GpuqBw@MC~%R zhO_~pgS2jxriE0ib_W)N4)_()hAVdg&?3<$0;>tEC9p0nVI65bgN+QXVsH(E>~3R& zLKeFp(S!z7GjedeO<(pDuEq^xor}6_)GLp#colWNo);I0R$38HkCs{I%o_lzL3?M0 zx<}Eq$^*u0^u}LE{*~W|0tO9BcpH&(dKa`l9?KQP8&IAAK?xCf5`f;odZmRfTM5Vn zA_R^B&?{(Uucony;j2G&Q}uV9=!}JnvT7X<)LJ?)tqP{2*6CsGy`Al??XkXFxb9Ke z!N8>TtaMPFPFBy#Q*^hJYTUVZS5s)uX;#g&z&Y&toT`}~c57GfY3GJou=>+~XXxw1 zb0%~=-s&<}x2sH2@Z$!ZADgg({5f*|?2&q;p@$NerXEVle|^1X(5JQ`nl@xCGpob0 zhQwH71A|R^Zw<~jU6r(hH7m9#DedN;(X@v!_LWQ*so&2~^h8%zSm{fbv_*Ql;P0eQ zP#i6dVRdy=QRW9oIYNnhL><6G3Hv(GihuTTP`?EGkj z<}b{}1T8K54kGm8AH4*xD%s0^$4e^4E9Z?Dm5mpdGko?Zfx>dvZ*7In!jDUAPR~Tg z2YhYVoug9K`;sT=op&zwy~JyY?>;l=9F^95ppv4m?--Tt7WcpQ+Sf)FtQ@QymDYmx z;-WF{Jgib1@h%vZYBj=wly||!)}(jAh_`W6YBEs!bt<Iy)Ztb-%tDKrZh8;n4wDP(Levp@3ApS|6QdJDq%!NN0EgFV=&-|i)^u|2+2`| zOjZR|@-X4cCPursUqs_5qV*pYu}~D2E+v4X==cKyztS$yWM&CeIv`??&zYB$dd|hh z7Br<6Gyxsl3IKF)>&SvNK>x<^lfXLxAnyczRE*P5@z}b(sdamSCfDs9TX!(E?jYfZ zV1Nb6K_IDh3~%oS4XNa1fB>J?JpC{h>-h*&5fPm2nu;|F#8P>YVYck6g& z$y7Svf024vD-BaCtxr|eC#CRUDFD#H(vd3Ed-(GHw~t;zV+~(A`X(A{crY}!`hnDH zG|+Hz^#fz8_or6xC;Z@(jItj{YBk|%b8SklesaVY#`Ul-JSOSCs}w>djOgg76sG2? z2Lq0{)JBPhkQ_zGWL3RN9;R#yG+BjO&raboTCSD?N0GuHS}sv30km8VrE=-G77;;E zG@YJV8kG)+M90hLkSmw%V>NZDnmVBUPXhq$e|n^*0qEtXx9_=h50FduyovR-p}{R< zO}kS~yMZQ~c8@hZoN9WQ@B>dU%ELfXO@yOL*Cvrf(-R{;yo=DV51H0~S1E)_7}3#D zDRfq&iol4A{IRGA$x(z%*3_xwVam2Z@lX+0MUcW}R5LvsDR2}i4Bn$skpRlY0sy6Q z>G;Dse&7im&n%5f2SlRp*EhW#xP;ywxfFO4y*)BmJXXImRlgHxvVP}S{oYhPdVVDN zFqj)Cdx50t86J{B(R}D6K?=#EK4Rs=zQ~xQ|E{t?DrLlgi!j4dgq-J44BY3a@isZn z(Qb3pc>6LsxOSVPqbLYEI8l*2%EVDBla8aaYe7&f9S@;XaC&B8R61ae1c%496=LvVI<_&KJZFK8$;vm;Fo zJIp*u#DuvhS7Tw~L62dwTzFy(s5(8li`l?yH0m9UYbKJ-1w?4kJ0AK!+9!G?|%@N}u5z zcxN`-4CerEz8Rc@ttw-jW7&7V{>y**$H%idhw`VWex?ynUM1`tfj#y)6{ag3Rfsg9Oi zz8gIS4tVIj7`*V@PnXn_ve!)J|KT-s%ogP@kQ5ESqL%^8J7#WYIk#|s+&T6BIL&U$ z*$1`2hk>#fGQ)>0e0Y(40y}8H4Bxc+kQqL_zSKkJDG!A$IDr`UiXn4h-a}?#U&w{6 z>>)FT&8o*&8a9&&jOtS1jziz7e52&CEvlJ`K5X7@nC~>1s-$7_3bIHL<7SvI7{<+* z%H)Os8RO;H&j`SVbTCo}oa`5_lQFIQ!I4KdG-+=3)llXkr6z;(z@e z025Y_%f-z2+`I7QJ-6xH3Y_}O`wtGx1;RhhEBfb7`QyAve1`ky3e@W3oRYTY_&(3@ z1H4$~zHKT!S>)vZd={e-c>@BlE2uGpgd z0D*pl|72Y;=V4&V9izw&rp2~vLb7BcBs;T&WS3lciwVhv7N16aq+5)( z#EuR#VOk&Q<_Cbo+oODQzBd0lmI;b$GuocD>XNy#K9}t5vC>5gBjq9MuB`%g!irE|FPCF6~ zEZlaG>_G?mp;yJA#Wk5JV#~svA~b|$Go4d{97m8baMqDh?%gXV-Cmkb4>I+E^OkntH&^LhA}Y)X08mr zx6PKp>jPuVafz8Di=0;)@?nzmjK!2WbF7DCb8NZ8>RcyxIKg$Gq{z2K#+o%Lk>1Ag zeix!u@)#(g*HCXJ?@yo2vj`{pnMF7;T(JnJJCevh#CfUiOJjb=`164+w^E+FpYNu$38;zbwr<4_!97U7C{sbua%x+L#+Dwgr{ zGz{-FfOlDxD8@`PcP5>&bc8-ls+3Ghb=BGbL%=>_Grot3_Ba9he5rH0WVfmu1!#L@ zZu_gh4DYg1XqTBPv`>5HlJM^oC?&8Z(@J1jPZ zm3NS_QT(HXn6SZIoA})ps>&HVKfG9W@P_(@Dk=4`3JEamFx8}pv5JLe#>^H#$gPIB zCL_)%*a8@=b)FhJ^7H+z6S{BKq~Y5r*(9_1hD|h^S`^YvzE6Q)C$I^i6@PKiFrVbA z>-SGx&Bx4NZo-T>pM_KB#j%5=$t;{cFRsqQeR=1_r`%8tjZ!Ew#QP?no!WN=Lqv6> z-J3BB$LGe=j-F%3Cd`ee-E4Cj+JE;z=ZT;HRoPc33>7jzR|;$IlYDUWS#o@D-bGPA zz(4w90F&KB!whwu&dNXNPT3eu`v%jeqn#fJr-S z@>qAOtY=i}y?y)a%!m&!cxJ>$l`tJ6KHbLU-#*##AJ6}%Z(7Z1=jxHF%*f13@D2SL za`;>Pm5T%>mlQ z7CmF^fcn9~#|WQkC_iKD(6;#M%lDN3w|}+e!%vR?>czMI>4VKmEowE(pkE!-{26Xc zTyi4}9-5T@fB+K4Y|39#5);}kNuz88KObZH&ul_KMg&6RI1S^186yHQHZb%h8X&R5 z%phRKh=8g_U!*f*M8I2)#RTz}(uhDe{4moFWbIW$UQdhEo@Imym>QTG7nQ(7p)|`x zp(I`kBLzu~pD2r$!K~=uKL;~~+peGK8kU^=G(Kem3yXdxj43R_i9Hc4!ioJ4VA$c+ zJeucgtTUNMb8;a-h8^T9l>CIUeG+gkO_XIDdSFRDY2XZ=K{E|K6w>#6s*2-Fdn9_yBhX|is4nX+`2 zz&8ne3n0VUS%zD*hIP>j1ejp{0>VVsW>6!f5ZDjFHTo>H)!CXoa%ZMGHG_9E_&BSa zJzg>ElVUe{H*>?gS(&MKvl(-k8#adt^98x#%dKyBUFw4Or%PRL!pBy4uxD(|p46H> zK$C0sjIBA4T62K#$C^AzECUKr?_Jvre;Xs-wj^KP>|B(N`_X+8q7Cs9NO zr(`ymDAr9(`Y&jn5S!YdEH#^?f4w`-1jFk3rKV zS;xc}Fhlj_j-%TJ$^KZrIj=ONX_9l@7#v>cbLLnNiJbZ^!s_Fa+-VBqW;u{|iHtRC zQX;*L<^3*1tK>0I!hl5y^?mztmr$5xTcjsUur0#rCdRp+t4qMS!wJb&F4D}#OJjHN z#%jpRLQd1qaUt#UdeiLGChQ{!Db$ZYGdm{96#MEF$DQri-wS73$6`HAj`6;SFlBNH zmV>yodqNDfsR~1V zn(zd@e_MppM-P>Gm(bX|O?r)P8)C@^#5V~gGNx))BGJDsN;Ku(Bv+j;WaFlayj!c- z4}!l#Lu)NVtE62o%klSOQA2TD60I}H-@Sg$Xr0wFty8ZVXz^xRr|qV<&H{rxSV;0< z+#$~*xd&37M}m}?aESK1%=mUxJfr>2o@u|v8k%Xp*n9lua@RSu^b`J8%HVHhF0&kS z>r$KP$e|$J#2*gMc!wyIc?zlf5FvtwhA~T)uJnXKN zuVif{hm!V(9sGM^DKkunfiLWQi!Y~`xw8l-B=Xx%($@E9$}P!GS%$Evv7085V+U_l z=UbJx>{7+s5I<+hF0^Ym?Fq$p?Z%l&+lit+d#V>>t$Jyk}L~*}SU>BuDeERRDV$(~j-U52mH<5AJ^` zU9bz6yBZ%#JFx4@M}DNH94A1Uf!vDZv{S}z8GTASLbiRi;s^Kr{plCBsH)`0jjCk$ zpIGV9j5(K_R zfEF(Wt9A8w+Ql{yi>3>XDQQ<1?ei5)yIR><`Fo1-41qHQo+a=cf#(UlKp^+(P|}}g z_-<-a*NT1{^eBBp%#`J(`tns_<$odkJgEAjD_zs2FaL)?=b4@F&sp$#!TI1wV9{&A zv)f({p9`MZnG7s?zvhnD7oOie5?J!u?z1f~x1QTgNKmkXpmjk)j`opdPsF4p1bX|ZN`A~n)Sl#wi-FBeK zy6t0ids1~!DIdDh#|V3_^rht31aVwQQt`rhkYli`l z1yd;_27D9=Qt2qkrI1N5Cw)Vl)+6RFq*FHG5_L0=uM+iTHy-r%xRXj;hj)X^j=xr^-K5Xlv z|E^LPl`x{CqY@sgQir7$TFIlw0FGoXM@1x#BGO<&L_)S$B*dp|>G&f$egsoplrV+K z%$7Vd2LI#+oNUpc)VBX3D-&Qt?-1Kq^tA%;dL$&Sj0gZ zZu+!d--r3w&p6+ux*HPXjcKwJ=1OjpNiHd6yl(_+Eta(bct z0{|v|H8Xl_s{)b1wllvTJ7>Id&h6e~eJC#bIRDXS|2R9y7a$h+3N_y}e4b|(_~OMF zkDK^;{#+LLvOc>TB?`Lpu>Vxo`~C{S)%Cu@x-;t|o`27l6-e^7gVeJ}faLxbYj%O- zRr5b7^^j?x2d04)=B9zS*5^3w4u!hH?cJeJa7EhPa-tm@Zg)qSRx3R_)Z0h9z}BfM z!uFo-IwkTIr9Bo&dju(6sL@nMXGc(1X_p#L*+CcX-oDQEmdLT*botY*aJSPH>5hdv z>nP#&?l#q1nuLH%C6+G4uJN%*SCnlztZXFuRs#1Cc!0pe1ojg+NZ>mJ{+z(~2z;Nw zUl6!J;0FXQ5g)&GXk{mj;&x~)}Tzq#bhzY-dRhaiXtUyD5R8A z;7tUo0n+YGT|M%N&d6rv|Kbu2#ugm|_}F2$+y95n_JZws?|-!g*su6Q+x;oq{U6vW zuen_I;%jAY`=)DEet`K!01Fw$XdYb7V%P%vG5fXccBg%-{aT3%UG{DEYh_M?pcvtn zYbBXC)kw`OpbE2s7uj3v*A`aUTkY2x19k+dRbdhEj~Ch`|BI)G9kYKamHzQVA3JQ) I99HoE4-3zc(EtDd diff --git a/tests/pytests/__pycache__/test_opts.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/test_opts.cpython-312-pytest-8.3.5.pyc deleted file mode 100644 index df846eb88eb27796056e1a16a1fef9472c72f85d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 23323 zcmeHPU2Gdyb{>+$-;qT9T9Pf;GifXpaoVBd2p}`G={U=yzKj?EeZie0ZO7RVH%(T+G4Q}1z3B51@hE$ z?##V2v?z;;Wv#PIiahi2oO6eF?tDDDyywjPTYY^%fXBgqa>uvr7KH!8H|*gw!4m@D zCxR@;_R2?<+C0 zgLKmX(gm+4S6i^Rnu8f1m>@4C;0R>r-#KKLEP`}X?4i;t`#|HTI6$RDWgV6ER5r*# z@M)yDiOOcV1vIU48^~=`(~dIl$O%d8%Ttep@WAX<-l>VqnDj7YZSyXtkaO{#i#ajr zv#bo|-8pxXo`;ZUh0<#YF zU*sKfmlkAx$wr2(E$h+yg4(IUI2(^-D?`>+t7DiQGqJbW#;n$Mb&Iq^?vlH!?or#b zdz5qVp4dGr^u+Rn9(2n)H?0TGs(Zjap$9wVT~+tMKE{>K3TGYfiM>UIv9Nf`T0oC> z*+#lT8(^-<^L6~hD*fD5`gyAK^H%BSuhK8T{N$dGrQ7g*&P!S+W43J!wlkfz%}J~+ z+x`e5>@7#$1uqd^Zg_d%<%O3IUjBT5#<5 z`{Z8ubIN-@=I16~Z*k>?#I#qR5!32&_1~hH)?fAa*&eAXe4lf5j5WmWS?N2;J>mP? zFAr>559+J#0r!L+4Af#88#h~gsC3?HG0iK7HW<@zj>lpe&d}_0vxYTd+Fpoez4AVJ z|HqMYV&Q7E>D7cVpeC#yugX9F&JQtp~xXd%!)R z2g9|f#>TA{)%Z-!_{F(;rnb>voX?u6HLelWUXguto^}YL+F@H%YkI*^ZR8nItufd1 zEsAQRn-)_V*>_{zsKz}Zri{u*HmwIuRri2Rj3`Q)8s&tV)x}s`BYHr+IT?=K&@z*gzh=LE^?D^8iKY}&uZz^* z1AEP8Qo0L;^A1FMK1t^24Ce!f%FbU*IM=#Do7%~Fx9 z9xy*E8;#MvVXtm`kM%@Tk@VEB|Mq`>dGB}s`uQ989l99NGO4fsJ))`#(R%g_WM_t7 z3#oy>V5sLfRUQnf15_1K_fy3o1cqvu`vWrlUuQZ1rs^nD0WejgOa;JH9S*63;cJRE zNg~rqAU_Za;9f%kzt!Brn!B+BG49A8=; z)?Mn1dS8M;o;ipD6xo?WC=R0-MR63x>$(V5Xa({xl}D(2ZCrO*=dyG{cfEb;RLD)d z@IgdE(S`z7HVG~~-u55sQ58)~q_5F_9HRX=#JKR?-{5RpcaD#T#HX8gpv4o(W|g!Y za*(6Ax5i^VhN5hz&_Ou3!?25|x`92=J*h-gnath}9_t|r^rfun2yHrYzd`rG$Y{!R zco>kPg)>=AC9p6q=ze|{bdPZYbgw!7#`xBKH#-xK-bke2C{_5lOe~U8^#Eu!Mb*L) zqIZPVc;-e*h865A313TPqLCCmfv|HmGO3_iZ#YS*m&l~Y2+0t=B|MoS(-AGK+{yx3 zf&H0us2TdJ%9ErAdPaJ&dlG)S!P*h~nDNAV{pz5_yS2GO(X@%6bOh!hbm79YBnNJWXF#fP$y8!2^aC>n`P z-N+6_NhBSMhqE(q-iC~GH-rPJ4jBWg(s%R(4Q6NbMmorNy26Gtxd0!Gi{t7iuylS$ z_)=>5n`3w0Dv8Z?o)ury>}bga=qq2#><>$BKqZghZw9Rwu}|;^XWb<~;(*|9n~jwu z#C3wdW3H`KkGR3`2_kM3{7tiaN==BH1%Jcc8>JS+t%AS)u2O14ybbp=Rcc4vA^00- z+e)2?w;TJ}fw)WXx6Hm(>PEa%@VCysSK5WR2iq#8Uc|eNe)a)|!+BMxYy9Z=hsWod zm!z&cZ+#is|Bv1Gy9?sg``r(A!RFIl%b^nsp%VZLp%crY(+i=~fagP0ae6+q5IT== zA`G%9bKL30|wLWts695kFHmkP0XQA&VnQA#X}*7G5C zGBisz%zYNc1Tq6#fSp0R8JS_48MK>`8K#-RqL@IEpcZzIBrzc+3CBPZhR%_3Kw=As04bH?Z&ctn;i5JdZEQp{1 z&RkpwQ5?Mn8qS%Eh3K`S1T=~-N-*Ts^C5LIG)p$jeHO(y5(Qg;ok6=9iDH@=w40GA zrkTN_7)Q>a7Iu%EF(Ks)$G{ne&t9}}^qPgs55~}gd;&8Sp{$?*C(pE?p$MRILBkr0 zK2YS4;K}a1Lv!Q4@lh!)r}4sqN~HwshwrG6cdqeiP)uR}G$`?aKel}C5N3ovVOUTd zH=+FFJ;4EgGr}#`d%{ge$bC+)OJ~xm0?+W2GNb$A5i*@pRF%%)bssZ^Jmd}NJ~;tG z_Zag(-9sV?RZ-!`A5IZrYOgnpoqFf|Oj?WFqEqLPi=4#cwlblr`ro1BTIqNJ8ypJ4}R4BVfWwP zT5ca)Xdf*4hdw{D($M_T^oP@P7eC!w=o(#WIC9tZJC_hRxa=QV@DF{hVoAgoj@FYq zU0>{UpX~QmKHa|nuga%e!_L!3lIQW6Mi4Y!M^dR)#C9UFIt72DJ@vra7~6?-Zs0_^ z&e7j{x@%@kW#{T5?4DdgaT&!G6nOs3vqG+-A`If$r{oZk!3XPDRQyfBPsx8jWBlK} zcVX`BrH1`a4L=_9FIrDZt}i6_$=34G=hZ_gsA{P^`oI6`A-UtTPWHum;T1&N%T{oA zRIDKCT2(=`k!l%xO=_JC$1 z6-2lnmTj-H5>kFu-UBs6eUNkS|Jc2yac!U$*WmwP*`pTMVD_{sO4Z_;L6T&ps-%rq zM*jZe+GbV}tx@4EV--;!t0IE9Hu%7tv%m29T6rB&ZN3KNt;MxkTr*-=?!{GnZ(Uq7 z>WEg)*EU*5^v&jLJ~~@F2z5lmTN>96)#htuleJo0qr*{~ui-F!+v6Hk5*>z0qU+O8 zNu+A0^g7(o(jBN2A-FP4jabk_Fqdx>hu}IYEh{0oY^Qsmc_JL-N%hVhD zH*03d2pUFF909?KWUMw>G+}AXeJ9-z74Yp=V<+XMGWW%&KNUZa9K!}JMuW2Y7;+qU zTSu4DiH5GYXiNSS#rIJB8H#f#aLt^&gW}Iod>_Sm5Om?&UIJpQzSmnN8!(n+20Z@~ zz5n^CdJT!!Ye-P9v2D%=xp~P}uK}3XYXIi;8i0Ad24G&V0hrfo0Os`?fT3Ok>pt3W z|GZuUFw|>cZAd5TdA$Z;sMpvwt3ka6V5rw;Y0L<$(B+s2UpkV5|?|I-g(bMJ%Y{^JY%#{m}lk1zL+E%c88p0B5hvHALi z{_;%x`Fni@P(4p3{=AXn#!S2k4FyQZq~Gh~W(Mu%pQ+r;AY|h2j&|GaLhF zOgtat5Dvt`<;P;^ABi&L`E2f!2yBWD+ni(vLNu&*GVfRQI z6H?l6476eR%w-G9P#VPaf6b8~J~v6)F;o;+SR$;&-AnB-kA(an>`>-K&HRF+8BH@gWe@yenz>UR*uuybszo+VJQIAwgv>_DS89=s zj`bh$EqJyrvKa{(oLRZ)%!4|}2`~pk;vi0~nSdb)^hu(aLXkp&Sr;;m zf@Uc)h%nJYXsUweSIBkLVa0vONs|`F1-@n?LRKc>now=+G>a`Effwo0G|N+27IFg( z^s?bDBfY`)TAml7ITqdf_Pb->hYQBZO>Ff(h}%2LTdhuxkXzukMvkMoEXNU+CsP{9 zf%{`@@)M}o=LPM2mC0Jrex5{!SPJ5zB29F>0vDzNril&>E=&bX6CGj|iH_%9(4K=t z$LDTLbsVv!I%;c4*80(UYe|p9Bqzt_EJ40B(9(&f#c@Tp( z#G(zc(S{VxC`E2f!2yBWD+ni(vL1Zjg>*gew5gp@WM18o>SqgXg~-NNMuW9UKB#cR0Dgpb|O zg1ia;vGh*39|QhJ8#Hbq0k@(UB+5+!w`I}&T%~(W9T|f*M*Ra`4F*^4Wl18f(F?+K zuW_RdRd2Z-gPXWaD{$RjY7lph1sGUELGR#TT#+Z^TPzTu|2*#tw0lMsf$uxh8Tm#^ zd4v2l*zvxzD&BXZA{zn*o>`@$!gyZo$F1O?8<3`bO W;BiCR;h1tfiMq}^9IAuv{r>@c0`(vO diff --git a/tests/pytests/__pycache__/test_psi.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/test_psi.cpython-312-pytest-8.3.5.pyc deleted file mode 100644 index 84be9bd941f7a9b6185be8b6ea1f60739e83ecc7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12917 zcmeHN4RjONl^$6m$! zjZ4!_Xz0Ps**0#QZb-^DrjRZd_r7=Eo4NDm-8;Xr+ie6KH7}UD{CNa%0W0c}qks>$0eFz0 z3EB`O+6_{f6Ega83`B@*HyPw#%CWb^>Ms^A0y_gtbN{KAH(|;lcXXas1eQ& z@5n{_q6YQH6AFkC0uexoNe69!zZ}{~lMj)!i8h@ypHQR>s9~BU4prK6GWUeiz9eJ0 zQbz050Bu;W@_P<#WeM8$sKIZD8EGm;3M56uOoD;Vn+<9)b5yz}*g^oV$>bwu$sq)b z)?2QS8^D>Ebi}NJH85im6RI&AZI4lcO`ry_mPhBu?9n1sPA~~(Ay2TMEI2{RyjZ@F zKV;wo^bC4tv_zE)l&VNCRg3l!{Ol+WL^=XDLKUlX%B5?RtH0{yl^Q(;ut)DD zi;h65txq9mR^{lzFKmR`6;#`va)eiCzz7Scu-u}yK82ii?@l3Soo0KsY06R4l(SD$ zE?#N``0I=*d~+uF=1kQSViv)Y)i=>+v-zf#E{@p*t6-CSlcGyvh0%rT7zCp* zL!gAhG~cufcJR#y=~8;u7k1|^Q2SHoY05kI3Jth(XVGQTwx}fS%4K<42u974bjfTU zuStRhWofNulbxZq`d8=mGgZr{7~%i+r$ga1$DutP=-GX4t?5~6S5)a=2 z!VmxLrE20jSDZa~)c4B2Si9Wp>4Ec`US7~0XFqv$j{WC9hZOAm5x_F`N2WADB>&&?ita@{X`Z`~4SANWPysTWhw^0Mz%y!H!6 zD9+y2Za+EZxjD{mI<({T?|$0jW_LgP$8&8f?~Jp9ACu(JqQ7yoPaP<$PC4#!v)>;- zcw5hnfjB!BirO}8SRH4-HRmtyT&M$^JMUPuuh$4#@3p-Chn;u(;_T9Y`0U6;YpxC-jlW#|){B2`aI*`m)}MW8d0U*V zwE9=xe+G18&h24M)AfPfe>FOb^4p-*w@>r#`v3=D0y5 zz0q*+(@`(aGhEcMXmO<9RqNz!2UO%}l9)A4e(^Gi=j1CT&I$yJkyTr#Dj-r6YF!!= zkjjK+Y{yc`kXn#- zRyuGTO_Dh)p>B(D_(m-n`F{R5B^o3BHAq}YRv@WI(kPN(evL$360MVHy+l_cb=3}- zS2@sa-uliTo;v#RuTHHQcr|UdYN0n}NPrakakeB=)X7?|PuBl%UgW-D$Vyi*%D^+x%ZX(kzAM}pq+uf$;XG_G+~EyM4M5|(x06A( zn7>xK(f#3`4ICHd#3D~;m2H+N z-vG7gmF4M`y7WpzdS#_3jYMgnHlwyYqqZWW){s$aOs~0W&Wbxf)g^Z`9XS&H95K924!Tj(Gcme0Oz+*Vo+_sqWysJ-#kaq(A8IsD_j2 zj8x-Q;j87V!%H;}tWZ^vesQLB!9WK7<>iQLhOS{dP4KV4_J5FggDSdz)!;1?WbVDq z-)NqgQG)+vj)__2?^{hp=F54+?23um6_*PLQ{hL1#pJkLNSLhmZvMvR;cbJPQ{;jP zTmF&iL)Bxpxr6H`sDg2-JV}+0Q5A!?Ts9NdnI90gBHLwS9%UX}f4Q6}uS$?yV(zlU zoMiw;_)`tX1pv=&jqiSDH-Kk$KkI?wjAy)QYqDu8z(mv5@upqLrd^2lFcN1MfMk<| zgT25xyaw7E5fZ=(_NFKfSfdm-PU`>XP)KHs=`bbPBC|)q93fo=FtqdBR!vKVpmk=q zrUa%+{eV82s^eWc-oxlP*sJ4A8)ZIF=wM>u(vfY61+D}cIKBSq<|mo~Jkk8*?NFS$ zeY|c{vThT=MBS$Gx-H4NEr?rT{(!RuK(bE4v>!Mrs(g4Wwgf!dpP~Z58>Ir{r2cK!Fbjium6Ur<~k~6QA z%xFoAN9l6V#w_(6K1R}I5HB-9)XXf9^lT|=W{KicQ#!Imr((IVGtX6fk)mT|s=Qvp z?%S3vVilw4Ik7z0edkF#b2~jZmLJ7cSUMnPW)bW{{>gGJYE~c=NKvzSbcMcG2{;sm zv_iE=ikfMA{lN8UA_|OZyI6G|U}vst+%O#t*cVq^T}LpftxqAR?Jnv0U)Tt>E2!Eq zmP7y-@N{^AsMM89OT!3Io|Zv`8q* z>Y>H-^|2D6SSXP^v=ltlp5~z#*Di&)w(g;`gjte@F8V*~p?X~VugydC2-np;MUNm| zT~3PvrQPjWo|i(gdY4ZjS29gGEpjzQd)mrI-=KJC*|a^hOtnQVCwVAFxeDPdg0mRT z5;#lYw8v)AH>Rzki@%gr)Ol?c)t{~e=JAxQ;p+ZuW8Z8uAP7}isK+g&ET?N)s$Z@bmk-gYxQ^xE65G9ALTx81C7yZzTWYX;^) zXY3 ze;eQPSn=M2tGp{O#Mwu8R2H2{{mIRK_SBE))RMQ|EZJMpvUiU4X7;lWUi$XGzXPgw zI@Z4LJ4`+=S~2e|rI*E=Xq3Y^oYTNzxD5)7VzU3(Oq{)y7r z!z3Jjvn6G4q&yFYo9h;~?cB>hY%z_vIsE=eQ-ln6MrzHaWeX8aO07W}P0m9?N=wZ{ zLY7TQ#Q{>}Yqe}9B892t?DUi!WWr=!0E!f3I6p^f4Wu(tYmm)^EToc98fD|cG))%Rcv&NM#%LKSmhZ8$UgM7`}Tk32j6pZ z_|2a>gLuW*vtp&?$WI<{bNIa*he1teshBI}X5fByftUJ}^3*83WVx{t0;mfkor_Y|LWt~&G87Z)aP zYJRal(cY1uLy3}}kBkOW#Bd(lL!Dvo(Xxs8OGdUP=hvKCa)wX3);+%|@wIKqTec;( z?@8?KN(A^sMHIF6p%&)a?rA{)3A&-xN6AFtq7i1WIYriC)=v6WNx~g9-3N)d8z9qW zCd!vU_G);|a5WSo%SZMdUya!;W8D6X9l$g8XA7V>Q!w7xl5A`Nm}qPnZ`_`2+>W?S z%B=xzW0H;OdA8x|k<|&{eBLzMu#$YkEZb@=(Io@u@HwLlAvdQ&%(B^KE+~PaT4oIl z)$w*6w|)LB+nmJ-vUg-b6$5ctdNl zp%w8?TH>?vmL`DH9Z6A;m+T#-Alaw?pFqLoxWs)gacvVz$8_VtV#eU5Kd7rZIMw5tkM6^ zp^VHJ(_sn?k-4K}WMoyk24Kl9O$jFn8w4esB!r-ZlcYdtk~9pHq~e`E9S6cX&NNZx z1BDKxNxJ4|nEk#=HXHpc1b)UIuLPhzg+lUED5O7yLTOK-P@-)w2q*9NSDl|^&|L0IfW{l}DMTXGNP;3;8sZ7@ZEZHUVKnb5hC<#jV6jGG% zDWpI&RLAfXQu%Frb<75JoN1!W2MT?0Ex1PIi@EA2H_}Qj&W4XXa5bxvzh8lmWvV#l zF3t}h_*gZTXi<3bnlHT@?7@Z5B7Y#ni$%RYCdlA>hBsJ+?ZM}a(pNX~O9OrmA}x}~ z3CRw58O^;Z6sG%v%o^@4_#NMD`2|2O8x01-?+M}_;+wYDiGnwXlDCMpADAl)-G&d> M8D<-L3{o5a4Yg>r82|tP diff --git a/tests/pytests/__pycache__/test_scf.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/test_scf.cpython-312-pytest-8.3.5.pyc deleted file mode 100644 index 96c6fecf01f3bf980b4e1300e04214e389eb2f97..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 24370 zcmeHv3wRUPv9KO1S(aqk@(bJ8AY%*`_-*{afQ9h`4B=@*Qb=NCtt`vPmRQLUE33q$ zB-nw(avnuAX=2hgH4SMKn4QX==fi!8_-25{utt5jf zw731g|L=DfJm;}<=FFKh=gfJG_GfW%asfQWuSq)S%>u#unBX62C~`4RC=eVLkb><3 zQb>v{!tEk16n7B@kxv6$P8?KX|0gR=IRIy9SlAp_nP%7Mo29y7(2wO7kG^mJ|NmGiGPH7kk> zE99H(<|Pmm!V7D( zNuYvrV*pyTVkXu`84YGTbUYJlF?SpHnn_0oBeVC|;Dz0;6)`aeYnM$=85vb5(z-`) z=`q@!s!hE&aGIdeSgeL>15gYB15`)~ECQFn5gI500V#42 ze3?#uIP)10cE&~}LQz`K$xR8<-&{E;055Jj4yH&kk0}%YhU!X;PW6>}Btc3d!;O@> zgk;QqflJh1(+<rCiAgK2vd^s2_e8Z z4yrg9&%p!^syUd*!6XhQb1;R2sT`ce!88u0b1;L0vpJZ_!7L8W0hq)~z$FC<%!=^B z$H=*1j2K56pF5+hX7g_&AwS)?WY8+j6GB%kE$hsRyys(dEME)sgsgKepC1V?!^n=j z;bWjt*-*>8Cxns77ii6d8OvejTnDCH^W)5FxB;;Gl@t+&X=VN98nR|ReL~nqz zh5WlnNK2yRAn4Ra-taMUA(=;N$wiMw=`Ok0B`5P;3bMeZyow$#;>$&a& zC(^=pQFJ|b39l*7I=*})|S^W>=JS*hQqislS5r)Tjrsc6iZHL+Te*qGlfA_a89-J*68 zT2F(M(I%h&AEI(G5-WGpQwV^QmPJ*XGBg}01?q!!V0T&eUTGM3xUi^y0Q zbwbx-&^-dJ3%&SweOOMjBDx#J#Z2;Tpi_X8kUU)Z*T8O^hFt))0t@mPG_v|<;GOezLSDY+ONXLWy#E_UV7xi0NhBp6=PUqgarf5(hb z#&h<6cg6q-%5lWlMQ-7tCmrEcF)#UPYvFY~k9P?P+=<$G=|;jxIe6a_$>(FR&%1%A z;#xv4A=l$P2jK<`IsGlavzRWwysv@UUYF*xMt&~f=>pG@8En(vKM#_dU1>ar zt_q$JdZc?V-hT7ru{c$3%T{W*C5gB$Qf2a zj@$U!_!eJt{dPqOm>su9tpjFSlZ02E*TAdbxwr;i<#poy^VUM!9*y}2u7xUK9aIT_ zRgpCjc_U~{nnDnzE$QS8ga0UKKUc)6iDXRZ$~-8NCcfy8d5wr2nI>K@~sxt}$~g(l77w;9%_bTL1Uu6arq#)S1~$2CUy^{yZPADS^>*Am`Q@oRS2|AwN|_9xA3vRg!cH0Ck>V)%)%O9W-b9o-@;t0MpAHsc~_$uXR zy089Q$}9ed_0MqQJrnwQ;gj$hvU=wBCVb5kq~9G)R{b+Z+ZchfT3FVzb_1 zN0s2J`h0zn-9YIbhK?eW+0sTC9UVnBeUHVytEf$H*wtezY6C6|9jzSSMM2(+KpGBv zk*zlvB5buA+QAEjQ6e+DyIMJ^I5pg>-Cfw;<={D?x7ce6qcN5MANIQe^a;+(1@Y>B z@uWJbUpkeP=1F=y{Yd&Fv)@e0?XR0u#t*I?SnIYQb`Cj*a~`~NT)A*knK-z9V7({j z@!TW1!{SF4jVp7nEAO;2_k64%dBJ(5AU1wNrt!-(!%4&Kr)32fQArHZgA0|M8;mbO z?!&^va1h=Z9*Bq?eE12$C5HFW>2{u(tA;hJKiYD&1gH3FF2NC`L}ge2;cMPY|8tRkgoAztK$ zv19)_Hc4>!VV+%bM+#3X;)np#&q7c)7wI%!8ir zRB5L{$e4UOg}=Y4jAO@5LG20j_1}0BEpwJ1BEo z59b&N^EBq$tmtNEhDpBNXmNl)ot&SZH?I%Q`}rEO$H-0VMhbl9&`A%8by?BL(4Mbp zw^ACt2EF`jl+|D)d%z|{Ci#$4pBW~P z-ugBD_6ootz^YidbrmDru2nHA6BwIzN^fd4SbMr1Oj021AEE`-`Ki~+yJcD=#Q zh_;n7GOQHV0BGR5Y}6toqOdLDc;T`MY(BgMvJ$R(3O(8w84|@bBk4jsJ4&8c^Qf?o z%0%>(E-Ptn?`>_g8g{jU3uaL1o!XfU{fww}K*c@*TJ{;3{6s-Q>O}l}fBgJF{DOXB zQax)zz1Xi_98eeZOV7)=w_1O^HW0tKpO{i79nKia@H9?jF860H4`kK^)Vc}vYQK8* z7%`>~s5imFA%aus&#XKt^kr5CGFJuEbrb4!e)YPsdf%3ofO>1c^paGNlyW$4DDPu| zC{un>AWBm7$6QhhR0)GO4cz3md+OYsfw=5`5g;a~9^Ou;#U`qHNRTqo4dumW@=XY;oFC9 zAFdkNHk$k9td&5~V;`>d?0G~rl6yjYY|)A4V@3Y7rH`sE#0WAA&r1YpIhPUy>2rd7 zP9{LR9#joijx0I4Vz}@`#c0l`V^r%etM|{V_b1dpsG3Yjba!|hL*4#_`9q=$5@^8r z96|Ej^NR!tiT$w@c)KCxr;TBTDzrK))+yHfkZc>3l_<sP z0n^|g9JR2DiQ;nxY*NJGhnFa@Y*X`nFm2%i_rc&1OVHes!X+Pw>qHH>?4jky!%HZa zB0>pz2u%?@p@o$)imRD4LP0BWnZcI=j{#+PVHM`@N~(w#US>#O2>}Zjq@w`O^r)o; zc)tYcb4!aDT&^A34NHp{SXxM&U*BSMphvt0j0I&RHC=jGOWek-DfH%U{AIy)Ei=N# zJha@?180(hU5$yEHc2~|LSWDDjOO@X#lYB2hSNDg^sscIg^GqEkvy~ zNG)g{sS-e-N&zr)X2b~_ND4P_K?8ajp^$}~xqNqL$g`fR#F{w6sWQS=8N_C2ZO5NA zXjRlQe23PMnuoQ35j4a07wr{>XapgQ35E`872?Rbvb-HMlR-Ne2X-*>f@(yP==^6# z?T)f>8coQ`B}JRAP{W)HuVv#xh0_d-!ycSXZLWa?3qSP9s`Ex6L z^DF!b6_AIwaJKB8rWPp!N}NC_I3sIoH{ zi|e2*{U_4qcDlSYr}J$RgK3g*CSnA3q7ezrWLyX^dLnEsPXi8C37Gn2dLtAJ?J70= z45r~Go8Zs6f_b=M!)dw=pc(dW8u*!!gWDa3etHFqb3J8t27i|Z=VWkb$i<^}i<|V6 zzRT!4%sIr}6AGocODiUnVeMBE$~JYA3X$B&zx6zJ!M}WSsrt zwt=S5a9$bQvEuSc8ymD<_%n&1brQpG=OT87+5#^aVh?F`a25{ipcramq`{ie%Gewf zy4o@lt{Y*?1Q}n!j2O}gzrAzxa>j!*Pj;Mcu!->W^@Xg5ENE-myPcUcnGF8zqfpci zUTe4$x|At^IXrDB&6D$B)`WV2U%gsEuOc|y_AfM%7^5h^5N`Z@@QTlVR66YOnh>`lG`+B zlUUtz?HeV>AMvt9D~L63ztihwCHFo3v)AwV=_~A+Ih#Jrf2q#Px?ib#QXuXuLzk2e8?>!AU2}Py%zW3t|UUuxO zjkkB*d8?PT{;2Y?kNy*K9AA9%*|xr0z1k!Sm5*u%z?NRPzsMVV=@m9%x&5^_#%*49 z>pK&VQf0rbVVhq5=*e$qKkQ|FQ+4l(zV_iO?9I&=|2)>x?q$j9^83H-c&CQVd-5l_ zF-Pw6vIRRHDqr?qxsFx8XbW_HpwY3mdwb+MV$jQ~?%TL;&g;24wrTM6>y4H7ds$0m z{ToxwPA}W={2y1RUE1$ue`g*=~G# z@IIfbO2?L1B#q_2pQmFlE<6*n?2e1CuwM^+vSZhu?gef)y?OX(=~5jV^UR*L=l164 z*z@gACnUU=?PXi;{rR9V*d)|Hc!soBB@3e0# z{L7XLudqiB);|Bi(|dGmTg^MaJ6qqOV~OM0>x2!rdD%BMl}}n0n2|{{GKt$2>R#mZ zGpY7%LF%Jk_T;I%UtM-fo{lZw-aK@q)#jz{hxe@T9piJ~dgPFoUGc+(wV7(IjvB(U z4&|M?T!+MpxPv~Nn()o$^!Z#_J)*U;SNW%vK7 zFt6;zbzb)ImB-T;es?D_)QO~SM{p3q*8!N`s+`)g;hP}8Z`?Mo{@0%0)KG)??i&Eu zvd6@6PdszbOFe*D$OH8-g2xdI17Mrm?)dC?FK6l4_a0pF+?Os&$DYeoyfp8Z1|3`5 zdV_e;K|6@%q54nWzJt^O190XmplAe#5Iln5+W<_aZ6Bw6_7re&m-@7S>uX{!d+5+_ zRfAjlyzKpo3!4Vkep186-96sbIQ)Q@J^CHZs|lH_b?m}3ZEu`qNH=VpJDZbUbe6Gml=mEL5=D@Xj#!^fa1!ZJe#Ru?(wpxpHrtTd*cC= z40;7qE(G@>!2Srz;W)%hOV9PjEc)gVFDtuiaDCFvJ9X?!{(>L>d~*{tuI5{T_bMyA z?9hH+)l^Q0mu>&;)O{xRQZGwCw(XNAi%nweiT)$9HW9$V0rta4- zp56W4H@xg)>L;`AUcE_2y@c;xLEr_z3Jxs&-kF$vUiP(Lu$n);k*#B?np=rQ=U||I zT6tFcogvc8&YEnk`M?jN9=+`k7d}e-ikE%Jt@(Ay9lgjzHg>_RW5&RUv7y$O?!^i%dswmU3hN4r_ALRAv*t7m$|LPXn zrDH$3>Avs&W$RaU?4CnK`|dc=hq?mWYys7Wz>R<#3!EN4gUJ^WaBaot;bFt;4>* ztowI(MSe!6h`t9Z@xa9Hk^8&v_OkVx+9zIg9zY4$u&R9srjJMJM3{%Lys1-|H;&*m z05?5^~CUdb;l(6QAgv_0Z2Ejo7F#O}ABDB1>6`06|9 z={p*|Y22QUxorQSp^h2R|ktZ&GDZX|25j{Wpj z&3$vv!c0E?;QsNK-(BftzZ)l6^Q*ZI9eZ%~u6-u?CKNq|1;2`bn|vO_7&qp>k1?*X zKfxH+w_Ic2#w6Bfdgh}A_v}jnjr>E8+x(;N!mK~{$q!OL_z#hcWpa0#32QIu&eexSbS>C?5b| zFX=zrZhQ%>LEv|<>mSeCsAJcrzOX`}-T>H2Nt{=0XM-7 zW9&N!{tdxN1gOK*&k=CKMY&S%A;9{mj{uk^wm2?W1F@IHcb2>uJf z#{f)i^L|nJUuz!lvR$7){H`ylAI#?hO@;4p$G5FA7B z?+9K)@E-_%iC_}JuMwO@@F9XfAh?L&j{rQ_)}!@HlT-hC9T-*WPe4{gMK zSlM1g>qp>0@J$5YMeqXzKSJ;`1U>|BAvlBJHwb=*;5>p$2tGydCjh47zszWe3BXJ| z_sL~rfBDjl72&}IHGtpN3WU;1%3pbYFOHFZMany75tkTjYWlO3` ztIEsEmvZITlp=CLN#T;xvhvcZs^a3(GA?Tdk_E+uRZA<&mX?()DJ?Cl43;nBD*L<3 z+k3lU3r6*748itvTj9j4iz5wD$_Q6jaPh~b;foXEj#4Y!>2#D)Ux1Xjqbq%zK`S+t zr@s0=rAjzys=bvt`&_?hrRmE!Nv1IH7q97ooNw$Ks*E{l`oZllY`p)qKkH0IZ*SO< zv+7GPl*`%wV$pN=eW^3e{!CK#`p=XrP5Qk93#k7{S!wDxY<1oA%muIMSjv-sD6bc+ zG))cvamOh033n?A zAJH(hw>o;^o-7V;*t+3P5kCK6FrLdp?YQrw=Z8Q2$%z`%UyfZkwZ3hWj*+aYZEk9I zYVboUq3cbn!O&wf!?C87YBM{)QKVXvOFFY62$$V|;_Gt+l7INk1s^C1YipcZd9&GR z3}5PQX#)3?Zadt-?loI1nl_^*cS&JsyJq#OLKBpO=QEwt)L?hO*G?RGXlv}ULeIht zu!Y}<=kX=9+*eqPq#ZA0ZN04_Tuzy00Pq17Gv_|UmoIb{%3G|^EDh8K7smQsM)=$d zum)FdMiUimZedxw#%=`hk@iAo1|Ic>FW5AA-^SljJMYok?M661$j!6$mXvAj^4s~C zW(Aj7thMK1R;d<_hcU90M}kNQr<~7%NGJ4S`Z~Q=hDsV@e4TB8Z#V|!1)Orya&rRbc06r zg0u~m9&qO}!O1%JshlP}OUL{45DU&WfWk)Y4kwi6&iu|@`MWFy zHD-%5#^g=|1^Yf1{s8!)wH zeKV%{Bz8L{OAD*ooeS3MZ!>p+zgff$0IM+c8Z6+$fFA~eulkUM@Ua_-Mc-z$FcJqU z85~)3lkhzoDGW>K7b+2EWoJQ@6jAe#P)JO0IyGI88oB9{=Rf)0J7YebGafktXEq9t zhM*9&7@NA|Z&E={m6m{>6>!=JN~I0!Wj=aRSXOWv9MUTV)S!)_Vu5W+4geKq2^ELQ zcmxRu)BsGj-!FR6lhLnpDmJe#Kt`cM4bF|x%mK~N_<&eQ(Q$kfOdB9D2!b4eo=0&6 z!v(ZnD~<3%DY0@Df-o>9ESY%B3HsA=NRh)oMrJaC z8x9z2M#ei`GGd&j;`Ag54wE6@9!7~t^ddo@9VQtGhI~rG*Ib;d1@~nr8CRbT+$^#% z#-HxChE4`U*G%o*j3R`HzB-KZM*SWm@45p988u$5nJm^exX7~Fa1vq&v<{47 zJvw5nFkw>5U_>Cp!8QwGoYyUS-%3!6psp^M!@(vn(gtp6#7OIdp?EK-iO|6a zo597Gg!K<2ZED3843iL4aS)x=5gZl5ZH%ym5jHWxH59I~83lG%aPBCHPArK|R0VrA zgjPH)RT@kMd#413-x_qkVuZDfXpM~#8W~YtDI=_7h&tp7@`3>1fUhPm#9Z5 z!*Siz(y)bz5BZUWE|Tqxa4jQT#|Rr4DQPy_LEAEsZvyQdlZMVp(EKaAN7M+*2zU#9 z!DR4QV9hS?#;Ep}MK`%TI#C&&sF>E^(&$%9r@bnnNbJzH2$lh`uLLl|BJcXMR<2wb z^q!JO?gOX;AP!s}+Z#a9KJOE}PsC3VvHkgviXM+S67zWck@ykfnYd$dfwYQoq7v?H zC9wxK?%U{IGfrep60!qL`iI%Z?f6C@@Vhad3Ufs8PGA^mFkpqwcZPN~DC*&Hx zTr(kG;Fm8LwvW_5({!w9B7e0%fAv^QAb(RpzPYb%N~Royo8W_rzS>D;!eG-t(}XhH zugo6K`A+`P{BITplqG!)Q!@FWd_e9lpGeB_C*=f^as#pjeYIGTa&Y0mLU;DSqCVam z{@@LL4QGj1pS<9N#4j%&Cn`XHd~)qbonKxwP81`*iSCktc8|m#m(|zEy{#Bc^~-hR z#7cOZHfLBoMEgJ-F>!9?shG^kAdiFb1M%as^eNS>^8#Ud{$!EvWTvlh!v(Q0eWUQA zKp4MC2rptc3E>hyR>3oz>j!R=76xQ_eYICzZN@}cDq)&ykp`f9lrEPKh}?R}y5 z#oNa=zi_8t4qdY8Y(!qbYOK7!c0kfsdqFAyk%1fDNJT(V+E+iBlim%V}Ynb zdGBVo)Scp%_J3tyd0#!!1ub_k_Be)H0qn*fE=g(Oe$XV}` zX(nZHKDE{_)Amc?A~#m$Q?*XU&+?=Ur;H>Y%{)Q)DmM638)3M@K)nP5b+hoSGTtrm z5JSpg`aoiXPuXx@FBGIKI^Ql7NEH0!9G4Wd3&UG|XdD*z zHJ-^{I1+PoE_kEnKD)x7z0!x~Al4VR&`&IcSrg3Wf(iLtzkKd+&xr<~d~QHqJx(kG z;Yj2@dG$-A*ZhL{#a&~yFIfF@nEy9|TxT!z5vCF8$lhb|5E)%?GUbH=%!wZ@@aL_D zn6GI&LVY{HLp7d!ALK%ozI|L_f-JwnG(klEpGKr$Mj#R$CrqCFVD2fT9gdC`grh(- z64$p!;?pY#<^#b=DAf-xfi zj<-3ZbHopUha` zBbuSd_Z(9}WE8>JRsh(!BdSr=*w%4HGo<~B<_RM5|1@F*GXjz5IMIwfi)g2Sswx~E zjYP+`hI4(>X$JG5E{>@dUJa*9Dj#(5Zg#txMfx3mFe}kl;S0-oY`G`8t3Qr*f zCsF{6f}H9=PKDq?o-zt@s)Mv&Q8z(E{+~vSU`8Mk9Y;dZXb^|8Be`KrJ_?v8Qi8ds zu*PuIH@%)hb9!NGxy-`P?% zxC=>#pEEk(SBr(gtr2W23*jr)6l~L&*l-s9_=C%%R&qP8)>eHFe5RYS13g7+s{tH+ z;f@0magcxwEo`4U9Km-MvjI+?@x%hSfuH$eOd6~bw%#NOX9Cn*AWD@XWeK;r3?8H= z*kMD;?fHU70(K^8H+=p(_|bApAuj+$YUj@oa_L zYalDQTW@VW1_iKaCICjZ9DH5j7pgVXBTx$d3+#B4cwQ_N3NMJ_gv6(F1VZ6{LBF+6 z@v%r0FX~gk(n4L`7dNTO>{CoCX7$P57sO2olHV7^zAaF^FG!peB=w0V1WA5Dl1D#M zHky1|Q1fd+<@1r?=e~VDveFM0U5*b_r{txc<>4E?N diff --git a/tests/pytests/__pycache__/total_1.cpython-312-pytest-8.3.5.pyc b/tests/pytests/__pycache__/total_1.cpython-312-pytest-8.3.5.pyc deleted file mode 100644 index bfc7a702e363a925f093844de4db231165f808ac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1890 zcmaJBO>Y}TboRqv>)1)0rd3sFqt z+dLy6BLQWgXY)%hZOt%nYs~DrqdbT216c#l1c!A`deOqb;{yOJ;;wWRR(zstq4WiQvmVwqSqyK06F z&n*|>!%Jb2VajMRY;-XTnB|$%Q(=Rr%AQqQHX#7H00G1`p|1mIp+i;68m)IsCik zKD_*l_0 z2+PNp+xq!^J+)(uJ!M}ux0;`S^gPzqXL>C9)jMr{@>ssMwYE22d_LONuLE!6)t`;A zU1My|7;o$O9%Fph7=LE(7~^}!)wX`^1oxXB_b2_@5!8SR!#r88yB>3Eln=ZeHq7JQ zMVLmS{3(l4OvGrNBKRJ0p$(~H7EeSx1B~TqS%hoQL+Fp(lL-jJlX9}bRO2Hb+Hk>q zT!S;65(aLqLd0VvVjvMQDtMxM2dErx^3+LA2wxLGHYPdi2Tt9?bL2Yk#H^uL032wF lqWp%?I{Mi71!d%a@J}?qi{}48qlbE289d76lsBZO{{Rzd)0F@K diff --git a/tests/pytests/atom_coord1.py b/tests/pytests/atom_coord_2.py similarity index 100% rename from tests/pytests/atom_coord1.py rename to tests/pytests/atom_coord_2.py diff --git a/tests/pytests/check_total.py b/tests/pytests/check_total.py deleted file mode 100644 index 609fe016..00000000 --- a/tests/pytests/check_total.py +++ /dev/null @@ -1,28 +0,0 @@ -import sys -import pytest -import pprint -import pylibefp - -from qcelemental.testing import compare, compare_recursive, compare_values - -from systems import * - -asdf = system_1() -asdf.set_opts({ - 'elec': True, - 'elec_damp': 'screen', - 'xr': True, - 'pol': True, # 'pol_damp': 'tt', - 'disp': True, - 'disp_damp': 'tt' -}) -asdf.compute() -ene = asdf.get_energy() -pprint.pprint(ene) -print('<<< get_opts(): ', asdf.get_opts(), '>>>') -#print('<<< summary(): ', asdf.summary(), '>>>') -print('<<< get_energy():', ene, '>>>') -print('<<< get_atoms(): ', asdf.get_atoms(), '>>>') -print(asdf.energy_summary()) -print(asdf.geometry_summary(units_to_bohr=b2a)) -print(asdf.geometry_summary(units_to_bohr=1.0)) diff --git a/tests/pytests/efp_1.py b/tests/pytests/efp_1.py deleted file mode 100644 index f77bc38a..00000000 --- a/tests/pytests/efp_1.py +++ /dev/null @@ -1,105 +0,0 @@ -import sys -import pytest -import pprint -import pylibefp - -from qcelemental.testing import compare, compare_recursive, compare_values - -from systems import * - - -def blank_ene(): - fields = [ - 'charge_penetration', 'disp', 'dispersion', 'elec', 'electrostatic', 'electrostatic_point_charges', - 'exchange_repulsion', 'pol', 'polarization', 'xr', 'qq' - ] - ene = {f: 0.0 for f in fields} - return ene - - -def test_elec_1a(): - asdf = system_1() - asdf.set_opts({'elec': True, 'elec_damp': 'screen'}) - asdf.compute() - ene = asdf.get_energy() - expected_ene = blank_ene() - expected_ene['elec'] = expected_ene['electrostatic'] = expected_ene['total'] = 0.0002900477909609442 - assert compare_recursive(expected_ene, ene, atol=1.e-6) - -def test_elec_1b(): - asdf = system_1() - asdf.set_opts({'elec': True, 'elec_damp': 'overlap'}) - asdf.compute() - ene = asdf.get_energy() - - elst = 0.0002910961 - cp = -8.066354689359154e-07 - expected_ene = blank_ene() - expected_ene['elec'] = expected_ene['total'] = elst - expected_ene['charge_penetration'] = cp - expected_ene['electrostatic'] = elst - cp - assert compare_recursive(expected_ene, ene, atol=1.e-6) - -def test_pol_1a(): - asdf = system_1() - opts = {'elec': True, 'pol': True, 'elec_damp': 'screen'} - asdf.set_opts(opts) - asdf.compute() - ene = asdf.get_energy() - print(ene) - - elec = 0.0002900477909609442 - pol = 0.0002777238 - elec - expected_ene = blank_ene() - expected_ene['elec'] = expected_ene['electrostatic'] = elec - expected_ene['pol'] = expected_ene['polarization'] = pol - expected_ene['total'] = elec + pol - pprint.pprint(opts) - assert compare_recursive(expected_ene, ene, atol=1.e-4) - - -def test_pol_1b(): - asdf = system_1() - asdf.set_opts({'pol': True, 'elec_damp': 'screen', 'elec': True, 'pol_driver': 'direct'}) - asdf.compute() - ene = asdf.get_energy() - - elec = 0.0002900478 - pol = 0.0002777238 - elec - expected_ene = blank_ene() - expected_ene['elec'] = expected_ene['electrostatic'] = elec - expected_ene['pol'] = expected_ene['polarization'] = pol - expected_ene['total'] = elec + pol - assert compare_recursive(expected_ene, ene, atol=1.e-4) - -def test_disp_1a(): - asdf = system_1() - asdf.set_opts({'disp': True, 'disp_damp': 'tt'}) - asdf.compute() - ene = asdf.get_energy() - - expected_ene = blank_ene() - expected_ene['disp'] = expected_ene['dispersion'] = expected_ene['total'] = -0.0000989033 - assert compare_recursive(expected_ene, ene, atol=1.e-4) - - -def test_disp_1b(): - - asdf = system_1() - asdf.set_opts({'disp': True, 'disp_damp': 'overlap'}) - asdf.compute() - ene = asdf.get_energy() - - expected_ene = blank_ene() - expected_ene['disp'] = expected_ene['dispersion'] = expected_ene['total'] = -0.0001007275 - assert compare_recursive(expected_ene, ene, atol=1.e-4) - -def test_xr_1(): - asdf = system_1() - asdf.set_opts({'xr': True}) - asdf.compute() - ene = asdf.get_energy() - - expected_ene = blank_ene() - expected_ene['xr'] = expected_ene['exchange_repulsion'] = expected_ene['total'] = 0.0000134716 - assert compare_recursive(expected_ene, ene, atol=1.e-4) diff --git a/tests/pytests/efp_2.py b/tests/pytests/efp_2.py deleted file mode 100644 index c223f9a0..00000000 --- a/tests/pytests/efp_2.py +++ /dev/null @@ -1,84 +0,0 @@ -import sys -import pytest -import pprint -import pylibefp - -from qcelemental.testing import compare, compare_recursive, compare_values - -from systems import * - - -def blank_ene(): - fields = [ - 'charge_penetration', 'disp', 'dispersion', 'elec', 'electrostatic', 'electrostatic_point_charges', - 'exchange_repulsion', 'pol', 'polarization', 'xr', 'qq' - ] - ene = {f: 0.0 for f in fields} - return ene - -def test_elec_2a(): - asdf = system_2() - asdf.set_opts({'elec': True, 'elec_damp': 'screen'}) - asdf.compute() - ene = asdf.get_energy() - assert compare_values(0.0015865516, ene['elec'], atol=1.e-3) - - -def test_elec_2b(): - asdf = system_2() - asdf.set_opts({'elec': True, 'elec_damp': 'overlap'}) - asdf.compute() - ene = asdf.get_energy() - assert compare_values(0.0017049246, ene['elec'], atol=1.e-3) - - -def test_pol_2a(): - asdf = system_2() - asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen'}) - asdf.compute() - ene = asdf.get_energy() - pprint.pprint(ene) - assert compare_values(0.0013685212, ene['total'], atol=1.e-3) - - -def test_pol_2b(): - asdf = system_2() - asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen', 'pol_driver': 'direct'}) - asdf.compute() - ene = asdf.get_energy() - assert compare_values(0.0013685212, ene['total'], atol=1.e-3) - - -def test_disp_2a(): - asdf = system_2() - asdf.set_opts({'disp': True, 'disp_damp': 'tt'}) - asdf.compute() - ene = asdf.get_energy() - assert compare_values(-0.0014688094, ene['disp'], atol=1.e-3) - - -def test_disp_2b(): - asdf = system_2() - asdf.set_opts({'disp': True, 'disp_damp': 'overlap'}) - asdf.compute() - ene = asdf.get_energy() - assert compare_values(-0.0015801770, ene['disp'], atol=1.e-3) - - -def test_xr_2(): - asdf = system_2() - asdf.set_opts({'xr': True}) - asdf.compute() - ene = asdf.get_energy() - assert compare_values(0.0008443933, ene['xr'], atol=1.e-3) - -def test_total_2a(): - asdf = system_2() - asdf.set_opts({'elec': True, 'pol': True, 'disp': True, 'xr': True, 'elec_damp': 'screen', 'disp_damp': 'tt'}) - asdf.compute() - ene = asdf.get_energy() - assert compare(5, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0007440865, ene['total'], atol=1.e-3) - - - diff --git a/tests/pytests/efp_3.py b/tests/pytests/efp_3.py deleted file mode 100644 index 5b4384bc..00000000 --- a/tests/pytests/efp_3.py +++ /dev/null @@ -1,88 +0,0 @@ -import sys -import pytest -import pprint -import pylibefp - -from qcelemental.testing import compare, compare_recursive, compare_values - -from systems import * - - -def blank_ene(): - fields = [ - 'charge_penetration', 'disp', 'dispersion', 'elec', 'electrostatic', 'electrostatic_point_charges', - 'exchange_repulsion', 'pol', 'polarization', 'xr', 'qq' - ] - ene = {f: 0.0 for f in fields} - return ene - -def test_elec_3a(): - asdf = system_3() - asdf.set_opts({'elec': True, 'elec_damp': 'screen'}) - asdf.compute() - ene = asdf.get_energy() - assert compare_values(-0.0039531505, ene['elec'], atol=1.e-3) - - -def test_elec_3b(): - asdf = system_3() - asdf.set_opts({'elec': True, 'elec_damp': 'overlap'}) - asdf.compute() - ene = asdf.get_energy() - assert compare_values(0.0023592829, ene['elec'], atol=1.e-3) - - -def test_pol_3a(): - asdf = system_3() - asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen', 'pol_damp': 'off'}) - asdf.compute() - ene = asdf.get_energy() - assert compare_values(-0.0066095992, ene['total'], atol=1.e-3) - - -def test_pol_3b(): - asdf = system_3() - asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen', 'pol_damp': 'off', 'pol_driver': 'direct'}) - asdf.compute() - ene = asdf.get_energy() - assert compare_values(-0.0066095992, ene['total'], atol=1.e-3) - - -def test_disp_3a(): - asdf = system_3() - asdf.set_opts({'disp': True, 'disp_damp': 'tt'}) - asdf.compute() - ene = asdf.get_energy() - assert compare_values(-0.0173897265, ene['disp'], atol=1.e-3) - - -def test_disp_3b(): - asdf = system_3() - asdf.set_opts({'disp': True, 'disp_damp': 'overlap'}) - asdf.compute() - ene = asdf.get_energy() - assert compare_values(-0.0220107872, ene['disp'], atol=1.e-3) - - -def test_xr_3(): - asdf = system_3() - asdf.set_opts({'xr': True}) - asdf.compute() - ene = asdf.get_energy() - assert compare_values(0.0301402098, ene['xr'], atol=1.e-3) - -def test_total_3a(): - asdf = system_3() - asdf.set_opts({ - 'elec': True, - 'pol': True, - 'disp': True, - 'xr': True, - 'elec_damp': 'screen', - 'disp_damp': 'tt', - 'pol_damp': 'tt' - }) - asdf.compute() - ene = asdf.get_energy() - assert compare(9, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0061408841, ene['total'], sys._getframe().f_code.co_name, atol=1.e-3) diff --git a/tests/pytests/ene.py b/tests/pytests/ene.py deleted file mode 100644 index 715020d0..00000000 --- a/tests/pytests/ene.py +++ /dev/null @@ -1,28 +0,0 @@ -import pylibefp - - ## SKP - -efp = pylibefp.core.efp() - -frags = ["tip3p_mm_l", "tip3p_mm_l"] -efp.add_potential(frags) -efp.add_fragment(frags) -efp.set_frag_coordinates(0, "xyzabc", - [0.0, 0.0, 0.0, 1.0, 2.0, 3.0]) -efp.set_frag_coordinates(1, "xyzabc", - [3.0, 0.0, 0.0, 5.0, 2.0, 8.0]) -efp.prepare() - -efp.set_opts({ - "elec": False, - "elec_damp": "screen", - "xr": False, - "pol": False, - "disp": False, - "qq": True, - "lj":True, -}) - -efp.compute() -ene = efp.get_energy() -print(ene) diff --git a/tests/pytests/mehh.py b/tests/pytests/mehh.py deleted file mode 100644 index dabdd876..00000000 --- a/tests/pytests/mehh.py +++ /dev/null @@ -1,29 +0,0 @@ -import pylibefp - - -efp = pylibefp.core.efp() - -frags = ["h2o_l", "nh3_l"] -efp.add_potential(frags) -efp.add_fragment(frags) -efp.set_frag_coordinates(0, "xyzabc", - [0.0, 0.0, 0.0, 1.0, 2.0, 3.0]) -efp.set_frag_coordinates(1, "xyzabc", - [9.0, 0.0, 0.0, 5.0, 2.0, 8.0]) -efp.prepare() - -efp.set_opts({ - "elec": True, - "qq": True, - "elec_damp": "off", - "lj": True, - "pol": True, - "disp": False, - "enable_pairwise": True, -}) - -efp.compute() -ene = efp.get_energy() -mul = efp.get_multipole_count() -print(ene) -print(mul) diff --git a/tests/pytests/pair.py b/tests/pytests/pair.py deleted file mode 100644 index 122a9fa6..00000000 --- a/tests/pytests/pair.py +++ /dev/null @@ -1,33 +0,0 @@ -import pylibefp - - -efp = pylibefp.core.efp() - -frags = ["h2o_l", "h2o_l", "nh3_l"] -efp.add_potential(frags) -efp.add_fragment(frags) - -efp.set_frag_coordinates(0, "xyzabc", - [0.000, 0.000, 0.000, 0.000, 0.000, 0.000]) -efp.set_frag_coordinates(1, "xyzabc", - [5.000, 0.000, 0.000, 2.000, 0.000, 2.000]) -efp.set_frag_coordinates(2, "xyzabc", - [0.000, 5.000, 0.000, 5.000, 0.000, -3.000]) - -efp.prepare() - -efp.set_opts({ - "elec": True, - "disp_damp": "overlap", - "xr": True, - "pol": True, - "disp": False, - "enable_pairwise": True, - "ligand": 1, -}) - -efp.compute() -ene = efp.get_energy() -ene2 = efp.energy_summary() -print(ene) -print(ene2) diff --git a/tests/pytests/pair2.py b/tests/pytests/pair2.py deleted file mode 100644 index b5a3c0e2..00000000 --- a/tests/pytests/pair2.py +++ /dev/null @@ -1,35 +0,0 @@ -import pylibefp - - -efp = pylibefp.core.efp() - -frags = ["h2o_l", "h2o_l", "nh3_l"] -efp.add_potential(frags) -efp.add_fragment(frags) - -efp.set_frag_coordinates(0, "xyzabc", - [0.000, 0.000, 0.000, 0.000, 0.000, 0.000]) -efp.set_frag_coordinates(1, "xyzabc", - [5.000, 0.000, 0.000, 2.000, 0.000, 2.000]) -efp.set_frag_coordinates(2, "xyzabc", - [0.000, 5.000, 0.000, 5.000, 0.000, -3.000]) - -efp.prepare() - -efp.set_opts({ - "elec": True, - "disp_damp": "overlap", - "xr": True, - "pol": True, - "disp": True, - "enable_pairwise": True, - "ligand": 1, - "print": 0, -}) - -efp.compute() -#gra = efp.get_gradient() -ene = efp.get_energy() -ene2 = efp.energy_summary() -print(ene) -#print(gra) diff --git a/tests/pytests/pairwise_1.py b/tests/pytests/pairwise_1.py new file mode 100644 index 00000000..daf77af6 --- /dev/null +++ b/tests/pytests/pairwise_1.py @@ -0,0 +1,38 @@ +import pylibefp + +b2a = 0.529177 +a2b = 1/b2a +efp = pylibefp.core.efp() + +frags = ["h2o_l", "h2o_l", "nh3_l"] +efp.add_potential(frags) +efp.add_fragment(frags) + +efp.set_frag_coordinates(0, 'points', + [i * a2b for i in [0.000000, 0.063030, 0.000000, -0.752652, -0.500166, 0.000000, 0.752652, -0.500166, 0.000000]]) +efp.set_frag_coordinates(1, 'points', + [i * a2b for i in [5.047701, -0.041199, 0.000000, 5.113439, 0.896539, 0.000000, 4.129507, -0.242679, 0.000000]]) +efp.set_frag_coordinates(2, 'points', + [i * a2b for i in [0.000000, 5.000000, -0.063177, 0.929426, 4.912005, 0.292603, -0.540919, 4.239091, 0.292603, -0.388507, 5.848904, 0.292603]]) + +efp.prepare() + +efp.set_opts({ + "elec": True, + "disp_damp": "overlap", + "xr": True, + "pol": True, + "disp": True, + "enable_pairwise": True, + "ligand": 1, + "print": 0, +}) + +efp.compute() +#gra = efp.get_gradient() +ene = efp.get_energy() +ene2 = efp.energy_summary() +geo = efp.geometry_summary(units_to_bohr=b2a) +print(ene) +print(geo) +#print(gra) diff --git a/tests/pytests/pbc.py b/tests/pytests/pbc.py deleted file mode 100644 index e99b0124..00000000 --- a/tests/pytests/pbc.py +++ /dev/null @@ -1,40 +0,0 @@ -import pylibefp - - -b2a = 0.529177 -a2b = 1.0 / b2a -efp = pylibefp.core.efp() - -frags = ["h2o_l", "h2o_l", "nh3_l"] -efp.add_potential(frags) -efp.add_fragment(frags) - -efp.set_frag_coordinates(0, "xyzabc", - [0.000, 0.000, 0.000, 0.000, 0.000, 0.000]) -efp.set_frag_coordinates(1, "xyzabc", - [5.000, 0.000, 0.000, 2.000, 0.000, 2.000]) -efp.set_frag_coordinates(2, "xyzabc", - [0.000, 5.000, 0.000, 5.000, 0.000, -3.000]) - -efp.prepare() - -efp.set_opts({ - 'elec': True, - 'pol': True, - 'disp': True, - 'xr': True, - 'elec_damp': 'overlap', - 'disp_damp': 'overlap', - 'pol_damp': 'tt', - 'enable_pbc': True, - 'enable_cutoff': True, - 'swf_cutoff': 6.0 * a2b, -}) - -efp.set_periodic_box([15.0 * a2b, 15.0 * a2b, 15.0 * a2b]) - -efp.compute() -ene = efp.get_energy() -ene2 = efp.energy_summary() -print(ene) -print(ene2) diff --git a/tests/pytests/sp_2.py b/tests/pytests/sp_2.py new file mode 100644 index 00000000..586c0045 --- /dev/null +++ b/tests/pytests/sp_2.py @@ -0,0 +1,33 @@ +import pylibefp + + ## SKP +b2a = 0.529177 +a2b = 1.0 / b2a + +efp = pylibefp.core.efp() + +frags = ["tip3p_mm_l", "tip3p_mm_l"] +efp.add_potential(frags) +efp.add_fragment(frags) + +efp.set_frag_coordinates(0, 'points', + [i * a2b for i in [-0.028105, 0.006327, -0.059145, 0.589971, 0.606511, 0.368712, -0.143923, -0.706920, 0.569954]]) +efp.set_frag_coordinates(1, 'points', + [i * a2b for i in [2.985103, 0.063555, -0.008178, 3.448387, -0.518118, -0.618363, 2.788040, -0.490539, 0.748159]]) + +efp.prepare() + +efp.set_opts({ + "elec": False, + "xr": False, + "pol": False, + "disp": False, + "qq": True, + "lj":True, +}) + +efp.compute() +ene = efp.get_energy() +geo = efp.geometry_summary(units_to_bohr=b2a) +print(ene) +print(geo) diff --git a/tests/pytests/spec.py b/tests/pytests/spec.py deleted file mode 100644 index 03df075e..00000000 --- a/tests/pytests/spec.py +++ /dev/null @@ -1,31 +0,0 @@ -import pylibefp - -efp = pylibefp.core.efp() - -b2a = 0.529177 -a2b = 1.0 / b2a - -frags = ["tip3p_mm_l", "tip3p_mm_l"] -efp.add_potential(frags) -efp.add_fragment(frags) -efp.set_frag_coordinates(0, "xyzabc", - [0.0, 0.0, 0.0, 1.0, 2.0, 3.0]) -efp.set_frag_coordinates(1, "xyzabc", - [3.0*a2b, 0.0, 0.0, 5.0, 2.0, 8.0]) -efp.prepare() - -efp.set_opts({ - "elec": False, - "elec_damp": "screen", - "xr": False, - "pol": False, - "disp": False, - "qq": True, - "lj":True, - "spec_elec":False, - 'special_fragment':1 -}) - -efp.compute() -ene = efp.get_energy() -print(ene) diff --git a/tests/pytests/symm_1.py b/tests/pytests/symm_1.py index ebf4f64a..65d93074 100644 --- a/tests/pytests/symm_1.py +++ b/tests/pytests/symm_1.py @@ -3,7 +3,7 @@ import libefp2py # Get the absolute path to the directory containing the module -sys.path.insert(0, '/Users/lyuda/LIBEFP/libefp_skp_may2025/lib') +sys.path.insert(0, '/scratch/gilbreth/paulsk/ls_pylib/libefp') import pylibefp @@ -50,4 +50,5 @@ efp.compute() ene = efp.get_energy() -print(ene) +ene2 = efp.energy_summary() +print(ene2) diff --git a/tests/pytests/symm_2pw.py b/tests/pytests/symm_2pw.py index 413e1e16..3cb41420 100644 --- a/tests/pytests/symm_2pw.py +++ b/tests/pytests/symm_2pw.py @@ -1,5 +1,8 @@ +import sys import libefp2py +sys.path.insert(0, '/scratch/gilbreth/paulsk/ls_pylib/libefp') + import pylibefp b2a = 0.529177 diff --git a/tests/pytests/total_1.py b/tests/pytests/total_1.py deleted file mode 100644 index 41ee38ed..00000000 --- a/tests/pytests/total_1.py +++ /dev/null @@ -1,49 +0,0 @@ -import sys -import pytest -import pprint -import pylibefp - -from qcelemental.testing import compare, compare_recursive, compare_values - -from systems import * - -def blank_ene(): - fields = [ - 'charge_penetration', 'disp', 'dispersion', 'elec', 'electrostatic', 'electrostatic_point_charges', - 'exchange_repulsion', 'pol', 'polarization', 'xr' - ] - ene = {f: 0.0 for f in fields} - return ene - - -def test_total_1a(): - asdf = system_1() - asdf.set_opts({ - 'elec': True, - 'elec_damp': 'screen', - 'xr': True, - 'pol': True, # 'pol_damp': 'tt', - 'disp': True, - 'disp_damp': 'tt' - }) - asdf.compute() - ene = asdf.get_energy() - pprint.pprint(ene) - print('<<< get_opts(): ', asdf.get_opts(), '>>>') - print('<<< get_energy():', ene, '>>>') - print('<<< get_atoms(): ', asdf.get_atoms(), '>>>') - print(asdf.energy_summary()) - print(asdf.geometry_summary(units_to_bohr=b2a)) - print(asdf.geometry_summary(units_to_bohr=1.0)) - - #expected_ene = blank_ene() - #expected_ene['elec'] = expected_ene['electrostatic'] = 0.0002900482 - #expected_ene['xr'] = expected_ene['exchange_repulsion'] = 0.0000134716 - #expected_ene['pol'] = expected_ene['polarization'] = 0.0002777238 - expected_ene['electrostatic'] - #expected_ene['disp'] = expected_ene['dispersion'] = -0.0000989033 - #expected_ene['total'] = 0.0001922903 - #assert compare(2, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - #assert compare_values(0.0, asdf.get_frag_charge(1), sys._getframe().f_code.co_name + ': f_chg', atol=1.e-4) - #assert compare(1, asdf.get_frag_multiplicity(1), sys._getframe().f_code.co_name + ': f_mult') - #assert compare('NH3_L', asdf.get_frag_name(1), sys._getframe().f_code.co_name + ': f_name') - #assert compare_recursive(expected_ene, ene, sys._getframe().f_code.co_name + ': ene', atol=1.e-4) diff --git a/tests/sp_2.in b/tests/sp_2.in new file mode 100644 index 00000000..532e1b53 --- /dev/null +++ b/tests/sp_2.in @@ -0,0 +1,10 @@ +run_type sp +coord xyzabc +terms qq lj +fraglib_path ../fraglib + +fragment tip3p_mm_l + 0.0 0.0 0.0 1.0 2.0 3.0 + +fragment tip3p_mm_l + 3.0 0.0 0.0 5.0 2.0 8.0 From c32a37fad6c37bc4e3b691ccdacd76a25dfc6649 Mon Sep 17 00:00:00 2001 From: "Slipchenko, Lyudmila V" Date: Sat, 20 Sep 2025 22:20:52 -0400 Subject: [PATCH 06/12] pylibefp tests fixed --- CMakeLists.txt | 32 +- comp.log.May28 | 407 ++++++++++++++++++ gil_module.sh | 3 - .../__pycache__/__init__.cpython-312.pyc | Bin 761 -> 761 bytes .../__pycache__/wrapper.cpython-312.pyc | Bin 78668 -> 78536 bytes lib/pylibefp/tests/test_dict.py | 22 +- lib/pylibefp/tests/test_efpefp.py | 86 ++-- lib/pylibefp/tests/test_psi.py | 20 +- lib/pylibefp/wrapper.py | 36 +- python/wrapper.py | 36 +- setup.sh | 24 +- tests/pytests/atom_coord_2.py | 53 --- tests/pytests/atoms.py | 26 -- tests/pytests/libefp2py.py | 167 +++++-- tests/pytests/lj.py | 44 -- tests/pytests/symm.py | 30 -- tests/pytests/symm_1.py | 54 --- tests/pytests/symm_2pw.py | 49 --- tests/pytests/test_dict.py | 22 +- tests/pytests/test_efpefp.py | 86 ++-- tests/pytests/test_efpefp_new.py | 58 +++ tests/pytests/test_lori.py | 26 -- tests/pytests/test_opts.py | 219 +++++++++- tests/pytests/test_psi.py | 20 +- 24 files changed, 1022 insertions(+), 498 deletions(-) create mode 100644 comp.log.May28 delete mode 100644 gil_module.sh delete mode 100644 tests/pytests/atom_coord_2.py delete mode 100644 tests/pytests/atoms.py delete mode 100644 tests/pytests/lj.py delete mode 100644 tests/pytests/symm.py delete mode 100644 tests/pytests/symm_1.py delete mode 100644 tests/pytests/symm_2pw.py create mode 100644 tests/pytests/test_efpefp_new.py delete mode 100644 tests/pytests/test_lori.py diff --git a/CMakeLists.txt b/CMakeLists.txt index e26ee451..1ec3f30b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,23 @@ if (POLICY CMP0135) endif () # extract project version from source + +if(NOT DEFINED torch_switch) + if(DEFINED ENV{TORCH_SWITCH}) + set(torch_switch $ENV{TORCH_SWITCH}) + else() + set(torch_switch OFF) + endif() +endif() + +option(torch_switch "Enable Torch library integration" ${TORCH_SWITCH}) + +if(torch_switch) + add_definitions(-DTORCH_SWITCH) +endif() + file(STRINGS "src/efp.h" _src_efp_h REGEX "LIBEFP_VERSION_STRING") + if (${_src_efp_h} MATCHES "^#define LIBEFP_VERSION_STRING \"(.*)\"$") set(_libefp_VERSION ${CMAKE_MATCH_1}) endif() @@ -13,9 +29,16 @@ project( libefp # someday when Makefile dropped, configure efp.h.in from cmake VERSION ${_libefp_VERSION} - LANGUAGES C + LANGUAGES C CXX ) -set(libefp_AUTHORS "Ilya A. Kaliman, Lori A. Burns, Dmitry Morozov, Carlos H. Borca, Yen (Terri) Bui, Yongbin Kim, Lyudmila V. Slipchenko") + +set(CMAKE_INSTALL_PREFIX "$ENV{LIBEFP_DIR}" CACHE PATH "Installation directory" FORCE) +#set(CMAKE_INSTALL_PREFIX "${LIBEFP_DIR}" CACHE PATH "Installation directory") + +### LVS needs this on MacOS silicon +set(CMAKE_CXX_STANDARD 17) + +set(libefp_AUTHORS "Ilya A. Kaliman, Lori A. Burns, Suranjan Paul, Dmitry Morozov, Carlos H. Borca, Yen (Terri) Bui, Yongbin Kim, Lyudmila V. Slipchenko") set(libefp_DESCRIPTION "Parallel implementation of the Effective Fragment Potential method") set(libefp_URL "https://github.com/libefp2/libefp") set(libefp_LICENSE "BSD 2-clause") @@ -24,6 +47,7 @@ list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) set(efp libefp) # Namespace + # TODO: Remove when requiring cmake >= 3.21 # from LecrisUT/CMake-Template if (NOT DEFINED ${efp}_IS_TOP_LEVEL) if (CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME) @@ -54,7 +78,10 @@ option_with_default(BUILD_FPIC "Libraries will be compiled with position indepen if((${BUILD_SHARED_LIBS}) AND NOT ${BUILD_FPIC}) message(FATAL_ERROR "BUILD_SHARED_LIBS ON and BUILD_FPIC OFF are incompatible, as shared library requires position independent code") endif() + +### This option turns OPENMP ON and OFF! option_with_print(LIBEFP_ENABLE_OPENMP "Enable OpenMP parallelization. Psi4 wants OFF" OFF) + option_with_print(ENABLE_GENERIC "Enable mostly static linking in shared library" OFF) include(xhost) # defines: option(ENABLE_XHOST "Enable processor-specific optimization" ON) option_with_print(FRAGLIB_UNDERSCORE_L "DEPRECATED: Installed fragment library has names ending in _L. Psi4 wants OFF" ON) @@ -132,6 +159,7 @@ set(raw_sources_list util.c xr.c ) + set(src_prefix "src/") string(REGEX REPLACE "([^;]+)" "${src_prefix}\\1" sources_list "${raw_sources_list}") diff --git a/comp.log.May28 b/comp.log.May28 new file mode 100644 index 00000000..72c57bfe --- /dev/null +++ b/comp.log.May28 @@ -0,0 +1,407 @@ +Building with Torch integration... +TORCH_DIR = /Users/lyuda/LIBEFP/LIBTORCH/libtorch +-- The C compiler identification is AppleClang 14.0.3.14030022 +-- The CXX compiler identification is AppleClang 14.0.3.14030022 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: /Library/Developer/CommandLineTools/usr/bin/cc - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: /Library/Developer/CommandLineTools/usr/bin/c++ - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Setting (unspecified) option CMAKE_BUILD_TYPE: Release +-- Setting (unspecified) option BUILD_SHARED_LIBS: OFF +-- Setting (unspecified) option BUILD_FPIC: ON +-- Setting (unspecified) option LIBEFP_ENABLE_OPENMP: OFF +-- Setting (unspecified) option ENABLE_GENERIC: OFF +-- Setting (unspecified) option ENABLE_XHOST: ON +-- Performing Test CMAKE_C_FLAGS [-march=native] - Success, Appending +-- Performing Test CMAKE_CXX_FLAGS [-march=native] - Success, Appending +-- Setting (unspecified) option FRAGLIB_UNDERSCORE_L: ON +-- Setting (unspecified) option FRAGLIB_DEEP: ON +-- Setting (unspecified) option INSTALL_DEVEL_HEADERS: OFF +-- Setting (unspecified) option LIBEFP_CMAKECONFIG_INSTALL_DIR: share/cmake/libefp +-- Setting (unspecified) option LIBEFP_ENABLE_EFPMD: ON +-- Setting (unspecified) option PYMOD_INSTALL_LIBDIR: / +-- Setting (unspecified) option LIBEFP_ENABLE_PYTHON: OFF +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +-- Found Threads: TRUE +-- LAPACK detected. +-- Found TargetLAPACK: Found LAPACK: /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Accelerate.framework;-lm;-ldl +-- The Fortran compiler identification is GNU 14.2.0 +-- Checking whether Fortran compiler has -isysroot +-- Checking whether Fortran compiler has -isysroot - yes +-- Checking whether Fortran compiler supports OSX deployment target flag +-- Checking whether Fortran compiler supports OSX deployment target flag - yes +-- Detecting Fortran compiler ABI info +-- Detecting Fortran compiler ABI info - done +-- Check for working Fortran compiler: /opt/homebrew/bin/gfortran - skipped +-- Found Torch: /Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib/libtorch.dylib +-- Torch integration enabled. +TORCH_INSTALL_PREFIX = /Users/lyuda/LIBEFP/LIBTORCH/libtorch +TORCH_LIBRARIES = torch;torch_library;/Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib/libc10.dylib;/Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib/libkineto.a +TORCH_INCLUDE_DIRS = /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include;/Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include +-- Configuring done (1.4s) +-- Generating done (0.0s) +-- Build files have been written to: /Users/lyuda/LIBEFP/libefp_skp_may2025/build +/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -S/Users/lyuda/LIBEFP/libefp_skp_may2025 -B/Users/lyuda/LIBEFP/libefp_skp_may2025/build --check-build-system CMakeFiles/Makefile.cmake 0 +/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_progress_start /Users/lyuda/LIBEFP/libefp_skp_may2025/build/CMakeFiles /Users/lyuda/LIBEFP/libefp_skp_may2025/build//CMakeFiles/progress.marks +/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/Makefile2 all +/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/efp.dir/build.make CMakeFiles/efp.dir/depend +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/CMakeFiles/efp.dir/DependInfo.cmake "--color=" +/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/efp.dir/build.make CMakeFiles/efp.dir/build +[ 2%] Building C object CMakeFiles/efp.dir/src/aidisp.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/aidisp.c.o -MF CMakeFiles/efp.dir/src/aidisp.c.o.d -o CMakeFiles/efp.dir/src/aidisp.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/aidisp.c +[ 5%] Building C object CMakeFiles/efp.dir/src/balance.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/balance.c.o -MF CMakeFiles/efp.dir/src/balance.c.o.d -o CMakeFiles/efp.dir/src/balance.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/balance.c +[ 7%] Building C object CMakeFiles/efp.dir/src/clapack.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/clapack.c.o -MF CMakeFiles/efp.dir/src/clapack.c.o.d -o CMakeFiles/efp.dir/src/clapack.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/clapack.c +[ 10%] Building C object CMakeFiles/efp.dir/src/disp.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/disp.c.o -MF CMakeFiles/efp.dir/src/disp.c.o.d -o CMakeFiles/efp.dir/src/disp.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/disp.c +[ 12%] Building C object CMakeFiles/efp.dir/src/efp.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/efp.c.o -MF CMakeFiles/efp.dir/src/efp.c.o.d -o CMakeFiles/efp.dir/src/efp.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/efp.c +[ 15%] Building C object CMakeFiles/efp.dir/src/elec.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/elec.c.o -MF CMakeFiles/efp.dir/src/elec.c.o.d -o CMakeFiles/efp.dir/src/elec.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/elec.c +[ 17%] Building C object CMakeFiles/efp.dir/src/electerms.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/electerms.c.o -MF CMakeFiles/efp.dir/src/electerms.c.o.d -o CMakeFiles/efp.dir/src/electerms.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/electerms.c +[ 20%] Building C object CMakeFiles/efp.dir/src/int.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/int.c.o -MF CMakeFiles/efp.dir/src/int.c.o.d -o CMakeFiles/efp.dir/src/int.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/int.c +[ 22%] Building C object CMakeFiles/efp.dir/src/log.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/log.c.o -MF CMakeFiles/efp.dir/src/log.c.o.d -o CMakeFiles/efp.dir/src/log.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/log.c +[ 25%] Building C object CMakeFiles/efp.dir/src/parse.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/parse.c.o -MF CMakeFiles/efp.dir/src/parse.c.o.d -o CMakeFiles/efp.dir/src/parse.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/parse.c +[ 27%] Building C object CMakeFiles/efp.dir/src/pol.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/pol.c.o -MF CMakeFiles/efp.dir/src/pol.c.o.d -o CMakeFiles/efp.dir/src/pol.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/pol.c +[ 30%] Building C object CMakeFiles/efp.dir/src/poldirect.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/poldirect.c.o -MF CMakeFiles/efp.dir/src/poldirect.c.o.d -o CMakeFiles/efp.dir/src/poldirect.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/poldirect.c +[ 32%] Building C object CMakeFiles/efp.dir/src/stream.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/stream.c.o -MF CMakeFiles/efp.dir/src/stream.c.o.d -o CMakeFiles/efp.dir/src/stream.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/stream.c +[ 35%] Building C object CMakeFiles/efp.dir/src/swf.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/swf.c.o -MF CMakeFiles/efp.dir/src/swf.c.o.d -o CMakeFiles/efp.dir/src/swf.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/swf.c +[ 37%] Building C object CMakeFiles/efp.dir/src/util.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/util.c.o -MF CMakeFiles/efp.dir/src/util.c.o.d -o CMakeFiles/efp.dir/src/util.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/util.c +[ 40%] Building C object CMakeFiles/efp.dir/src/xr.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/xr.c.o -MF CMakeFiles/efp.dir/src/xr.c.o.d -o CMakeFiles/efp.dir/src/xr.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/xr.c +[ 42%] Linking C static library libefp.a +/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -P CMakeFiles/efp.dir/cmake_clean_target.cmake +/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_link_script CMakeFiles/efp.dir/link.txt --verbose=1 +/Library/Developer/CommandLineTools/usr/bin/ar qc libefp.a CMakeFiles/efp.dir/src/aidisp.c.o CMakeFiles/efp.dir/src/balance.c.o CMakeFiles/efp.dir/src/clapack.c.o CMakeFiles/efp.dir/src/disp.c.o CMakeFiles/efp.dir/src/efp.c.o CMakeFiles/efp.dir/src/elec.c.o CMakeFiles/efp.dir/src/electerms.c.o CMakeFiles/efp.dir/src/int.c.o CMakeFiles/efp.dir/src/log.c.o CMakeFiles/efp.dir/src/parse.c.o CMakeFiles/efp.dir/src/pol.c.o CMakeFiles/efp.dir/src/poldirect.c.o CMakeFiles/efp.dir/src/stream.c.o CMakeFiles/efp.dir/src/swf.c.o CMakeFiles/efp.dir/src/util.c.o CMakeFiles/efp.dir/src/xr.c.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libefp.a +[ 42%] Built target efp +/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/libff.dir/build.make efpmd/CMakeFiles/libff.dir/depend +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/libff.dir/DependInfo.cmake "--color=" +/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/libff.dir/build.make efpmd/CMakeFiles/libff.dir/build +[ 45%] Building C object efpmd/CMakeFiles/libff.dir/libff/ff.c.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT efpmd/CMakeFiles/libff.dir/libff/ff.c.o -MF CMakeFiles/libff.dir/libff/ff.c.o.d -o CMakeFiles/libff.dir/libff/ff.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff/ff.c +[ 45%] Built target libff +/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/libopt.dir/build.make efpmd/CMakeFiles/libopt.dir/depend +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/libopt.dir/DependInfo.cmake "--color=" +Dependee "/Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/libopt.dir/DependInfo.cmake" is newer than depender "/Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/libopt.dir/depend.internal". +Dependee "/Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/libopt.dir/depend.internal". +Scanning dependencies of target libopt +/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/libopt.dir/build.make efpmd/CMakeFiles/libopt.dir/build +[ 47%] Building C object efpmd/CMakeFiles/libopt.dir/libopt/opt.c.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT efpmd/CMakeFiles/libopt.dir/libopt/opt.c.o -MF CMakeFiles/libopt.dir/libopt/opt.c.o.d -o CMakeFiles/libopt.dir/libopt/opt.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt/opt.c +[ 50%] Building Fortran object efpmd/CMakeFiles/libopt.dir/libopt/blas.f.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /opt/homebrew/bin/gfortran -DTORCH_SWITCH -O3 -DNDEBUG -O3 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt/blas.f -o CMakeFiles/libopt.dir/libopt/blas.f.o +[ 52%] Building Fortran object efpmd/CMakeFiles/libopt.dir/libopt/lbfgsb.f.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /opt/homebrew/bin/gfortran -DTORCH_SWITCH -O3 -DNDEBUG -O3 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt/lbfgsb.f -o CMakeFiles/libopt.dir/libopt/lbfgsb.f.o +[ 55%] Building Fortran object efpmd/CMakeFiles/libopt.dir/libopt/linpack.f.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /opt/homebrew/bin/gfortran -DTORCH_SWITCH -O3 -DNDEBUG -O3 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt/linpack.f -o CMakeFiles/libopt.dir/libopt/linpack.f.o +[ 57%] Building Fortran object efpmd/CMakeFiles/libopt.dir/libopt/timer.f.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /opt/homebrew/bin/gfortran -DTORCH_SWITCH -O3 -DNDEBUG -O3 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt/timer.f -o CMakeFiles/libopt.dir/libopt/timer.f.o +[ 57%] Built target libopt +/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/ctorch.dir/build.make efpmd/CMakeFiles/ctorch.dir/depend +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/ctorch.dir/DependInfo.cmake "--color=" +/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/ctorch.dir/build.make efpmd/CMakeFiles/ctorch.dir/build +[ 60%] Building CXX object efpmd/CMakeFiles/ctorch.dir/torch/c_libtorch.cc.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/c++ -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -MD -MT efpmd/CMakeFiles/ctorch.dir/torch/c_libtorch.cc.o -MF CMakeFiles/ctorch.dir/torch/c_libtorch.cc.o.d -o CMakeFiles/ctorch.dir/torch/c_libtorch.cc.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/torch/c_libtorch.cc +[ 60%] Built target ctorch +/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/efpmd.dir/build.make efpmd/CMakeFiles/efpmd.dir/depend +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/efpmd.dir/DependInfo.cmake "--color=" +Dependee "/Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/efpmd.dir/DependInfo.cmake" is newer than depender "/Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/efpmd.dir/depend.internal". +Dependee "/Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/efpmd.dir/depend.internal". +Scanning dependencies of target efpmd +/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/efpmd.dir/build.make efpmd/CMakeFiles/efpmd.dir/build +[ 62%] Building C object efpmd/CMakeFiles/efpmd.dir/src/cfg.c.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/cfg.c.o -MF CMakeFiles/efpmd.dir/src/cfg.c.o.d -o CMakeFiles/efpmd.dir/src/cfg.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/cfg.c +[ 65%] Building C object efpmd/CMakeFiles/efpmd.dir/src/common.c.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/common.c.o -MF CMakeFiles/efpmd.dir/src/common.c.o.d -o CMakeFiles/efpmd.dir/src/common.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/common.c +[ 67%] Building C object efpmd/CMakeFiles/efpmd.dir/src/efield.c.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/efield.c.o -MF CMakeFiles/efpmd.dir/src/efield.c.o.d -o CMakeFiles/efpmd.dir/src/efield.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/efield.c +[ 70%] Building C object efpmd/CMakeFiles/efpmd.dir/src/energy.c.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/energy.c.o -MF CMakeFiles/efpmd.dir/src/energy.c.o.d -o CMakeFiles/efpmd.dir/src/energy.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/energy.c +[ 72%] Building C object efpmd/CMakeFiles/efpmd.dir/src/grad.c.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/grad.c.o -MF CMakeFiles/efpmd.dir/src/grad.c.o.d -o CMakeFiles/efpmd.dir/src/grad.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/grad.c +[ 75%] Building C object efpmd/CMakeFiles/efpmd.dir/src/gtest.c.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/gtest.c.o -MF CMakeFiles/efpmd.dir/src/gtest.c.o.d -o CMakeFiles/efpmd.dir/src/gtest.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/gtest.c +[ 77%] Building C object efpmd/CMakeFiles/efpmd.dir/src/hess.c.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/hess.c.o -MF CMakeFiles/efpmd.dir/src/hess.c.o.d -o CMakeFiles/efpmd.dir/src/hess.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/hess.c +[ 80%] Building C object efpmd/CMakeFiles/efpmd.dir/src/main.c.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/main.c.o -MF CMakeFiles/efpmd.dir/src/main.c.o.d -o CMakeFiles/efpmd.dir/src/main.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/main.c +[ 82%] Building C object efpmd/CMakeFiles/efpmd.dir/src/md.c.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/md.c.o -MF CMakeFiles/efpmd.dir/src/md.c.o.d -o CMakeFiles/efpmd.dir/src/md.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/md.c +[ 85%] Building C object efpmd/CMakeFiles/efpmd.dir/src/msg.c.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/msg.c.o -MF CMakeFiles/efpmd.dir/src/msg.c.o.d -o CMakeFiles/efpmd.dir/src/msg.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/msg.c +[ 87%] Building C object efpmd/CMakeFiles/efpmd.dir/src/opt.c.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/opt.c.o -MF CMakeFiles/efpmd.dir/src/opt.c.o.d -o CMakeFiles/efpmd.dir/src/opt.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/opt.c +[ 90%] Building C object efpmd/CMakeFiles/efpmd.dir/src/parse.c.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/parse.c.o -MF CMakeFiles/efpmd.dir/src/parse.c.o.d -o CMakeFiles/efpmd.dir/src/parse.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/parse.c +[ 92%] Building C object efpmd/CMakeFiles/efpmd.dir/src/rand.c.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/rand.c.o -MF CMakeFiles/efpmd.dir/src/rand.c.o.d -o CMakeFiles/efpmd.dir/src/rand.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/rand.c +[ 95%] Building C object efpmd/CMakeFiles/efpmd.dir/src/sp.c.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/sp.c.o -MF CMakeFiles/efpmd.dir/src/sp.c.o.d -o CMakeFiles/efpmd.dir/src/sp.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/sp.c +[ 97%] Building C object efpmd/CMakeFiles/efpmd.dir/src/torch.c.o +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/torch.c.o -MF CMakeFiles/efpmd.dir/src/torch.c.o.d -o CMakeFiles/efpmd.dir/src/torch.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/torch.c +[100%] Linking CXX executable efpmd +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_link_script CMakeFiles/efpmd.dir/link.txt --verbose=1 +/Library/Developer/CommandLineTools/usr/bin/c++ -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/efpmd.dir/src/cfg.c.o CMakeFiles/efpmd.dir/src/common.c.o CMakeFiles/efpmd.dir/src/efield.c.o CMakeFiles/efpmd.dir/src/energy.c.o CMakeFiles/efpmd.dir/src/grad.c.o CMakeFiles/efpmd.dir/src/gtest.c.o CMakeFiles/efpmd.dir/src/hess.c.o CMakeFiles/efpmd.dir/src/main.c.o CMakeFiles/efpmd.dir/src/md.c.o CMakeFiles/efpmd.dir/src/msg.c.o CMakeFiles/efpmd.dir/src/opt.c.o CMakeFiles/efpmd.dir/src/parse.c.o CMakeFiles/efpmd.dir/src/rand.c.o CMakeFiles/efpmd.dir/src/sp.c.o CMakeFiles/efpmd.dir/src/torch.c.o CMakeFiles/ctorch.dir/torch/c_libtorch.cc.o CMakeFiles/libff.dir/libff/ff.c.o CMakeFiles/libopt.dir/libopt/opt.c.o CMakeFiles/libopt.dir/libopt/blas.f.o CMakeFiles/libopt.dir/libopt/lbfgsb.f.o CMakeFiles/libopt.dir/libopt/linpack.f.o CMakeFiles/libopt.dir/libopt/timer.f.o -o efpmd -L/opt/homebrew/Cellar/gcc/14.2.0_1/lib/gcc/current/gcc/aarch64-apple-darwin22/14 -L/opt/homebrew/Cellar/gcc/14.2.0_1/lib/gcc/current/gcc -L/opt/homebrew/Cellar/gcc/14.2.0_1/lib/gcc/current -Wl,-rpath,/Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib ../libefp.a /Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib/libc10.dylib /Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib/libkineto.a -framework Accelerate -lm -ldl /Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib/libtorch.dylib /Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib/libtorch_cpu.dylib /Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib/libc10.dylib -lemutls_w -lheapt_w -lgfortran -lgcc -lquadmath +ld: warning: could not create compact unwind for _dcopy_: does not use standard frame +ld: warning: ld: warning: could not create compact unwind for _prn1lb_.part.0: does not use standard frame +ld: warning: could not create compact unwind for _prn3lb_: does not use standard frame +ld: warning: could not create compact unwind for _matupd_: does not use standard frame +ld: warning: could not create compact unwind for _prn2lb_: does not use standard frame +ld: warning: could not create compact unwind for _dcsrch_: does not use standard frame +could not create compact unwind for _dtrsl_: does not use standard frame +ld: warning: could not create compact unwind for _lnsrlb_: does not use standard frame +ld: warning: could not create compact unwind for _subsm_: does not use standard frame +ld: warning: could not create compact unwind for _bmv_: does not use standard frame +ld: warning: could not create compact unwind for _formk_: does not use standard frame +ld: warning: could not create compact unwind for _freev_: does not use standard frame +ld: warning: could not create compact unwind for _cauchy_: does not use standard frame +ld: warning: could not create compact unwind for _lbacti_: does not use standard frame +ld: warning: could not create compact unwind for _mainlb_: does not use standard frame +ld: warning: could not create compact unwind for _setulb_: does not use standard frame +ld: warning: could not create compact unwind for _allocate_tramp_ctrl: does not use standard frame +ld: warning: could not create compact unwind for ___gcc_nested_func_ptr_created: does not use standard frame +ld: warning: could not create compact unwind for ___gcc_nested_func_ptr_deleted: does not use standard frame +ld: warning: could not create compact unwind for ___emutls_get_address: does not use standard frame +ld: warning: could not create compact unwind for ___powitf2: does not use standard frame +ld: warning: could not create compact unwind for ___multc3: does not use standard frame +ld: warning: could not create compact unwind for ___divtc3: does not use standard frame +ld: warning: could not create compact unwind for ___mulbitint3: registers 27 and 28 not saved contiguously in frame +ld: warning: could not create compact unwind for ___eprintf: does not use standard frame +ld: warning: could not create compact unwind for ___floattisf: does not use standard frame +ld: warning: could not create compact unwind for ___floattidf: does not use standard frame +ld: warning: could not create compact unwind for ___divmodbitint4: does not use standard frame +ld: warning: could not create compact unwind for ___bid32_to_binary32: register 20 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid64_to_binary32: register 26 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_to_binary32: register 26 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid64_to_binary64: register 20 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_to_binary64: register 26 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid64_to_binary80: registers 23 and 24 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid128_to_binary80: registers 23 and 24 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid128_to_binary128: register 26 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___binary64_to_bid32: registers 25 and 26 not saved contiguously in frame +ld: warning: could not create compact unwind for ___binary80_to_bid32: registers 25 and 26 not saved contiguously in frame +ld: warning: could not create compact unwind for ___binary80_to_bid64: registers 23 and 24 not saved contiguously in frame +ld: warning: could not create compact unwind for ___binary128_to_bid64: registers 23 and 24 not saved contiguously in frame +ld: warning: could not create compact unwind for ___binary32_to_bid128: registers 21 and 22 not saved contiguously in frame +ld: warning: could not create compact unwind for ___binary64_to_bid128: registers 27 and 28 not saved contiguously in frame +ld: warning: could not create compact unwind for ___binary80_to_bid128: registers 27 and 28 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid128_totalOrder: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for _add_and_round.constprop.0: does not use standard frame +ld: warning: could not create compact unwind for _bid128_ext_fma: does not use standard frame +ld: warning: could not create compact unwind for ___bid64qqq_fma: does not use standard frame +ld: warning: could not create compact unwind for ___bid_round128_19_38: registers 23 and 24 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid_round192_39_57: registers 27 and 28 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid_round256_58_76: registers 27 and 28 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid64_from_int64: does not use standard frame +ld: warning: could not create compact unwind for ___bid64_from_uint64: does not use standard frame +ld: warning: could not create compact unwind for ___bid128_add: registers 27 and 28 not saved contiguously in frame +ld: warning: could not create compact unwind for ___div_256_by_128: register 20 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid64dq_div: does not use standard frame +ld: warning: could not create compact unwind for ___bid64qd_div: does not use standard frame +ld: warning: could not create compact unwind for ___bid64qq_div: does not use standard frame +ld: warning: could not create compact unwind for ___div_256_by_128: register 20 saved somewhere other than in frame +ld: warning: could not create compact unwind for _handle_UF_128_rem.constprop.0.isra.0: register 26 saved somewhere other than in frame +ld: warning: could not create compact unwind for _handle_UF_128.constprop.0.isra.0: registers 25 and 26 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid128_div: does not use standard frame +ld: warning: could not create compact unwind for ___bid128dd_div: does not use standard frame +ld: warning: could not create compact unwind for ___bid128dq_div: does not use standard frame +ld: warning: could not create compact unwind for ___bid128qd_div: does not use standard frame +ld: warning: could not create compact unwind for ___bid128_quiet_greater: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_quiet_greater_equal: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_quiet_greater_unordered: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_quiet_less: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_quiet_less_equal: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_quiet_less_unordered: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_quiet_not_greater: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_quiet_not_less: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_signaling_greater: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_signaling_greater_equal: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_signaling_greater_unordered: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_signaling_less: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_signaling_less_equal: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_signaling_less_unordered: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_signaling_not_greater: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_signaling_not_less: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_to_bid32: registers 25 and 26 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid128_to_bid64: registers 25 and 26 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid128_to_int32_rnint: registers 21 and 22 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid128_to_int32_xrnint: registers 21 and 22 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid128_to_int32_floor: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_to_int32_xfloor: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_to_int32_ceil: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_to_int32_xceil: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_to_int32_int: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_to_int32_xint: registers 21 and 22 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid128_to_int32_xrninta: registers 21 and 22 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid128_to_int64_xrnint: registers 21 and 22 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid128_to_int64_xrninta: registers 21 and 22 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid128_to_uint32_rnint: registers 19 and 20 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid128_to_uint32_xrnint: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_to_uint32_floor: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_to_uint32_xfloor: registers 19 and 20 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid128_to_uint32_ceil: registers 19 and 20 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid128_to_uint32_xceil: registers 19 and 20 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid128_to_uint32_int: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_to_uint32_xint: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_to_uint32_xrninta: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_to_uint64_rnint: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_to_uint64_xrnint: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___bid128_to_uint64_xfloor: registers 19 and 20 not saved contiguously in frame +ld: warning: could not create compact unwind for ___bid128_to_uint64_xrninta: register 22 saved somewhere other than in frame +ld: warning: could not create compact unwind for ___divtf3: does not use standard frame +ld: warning: could not create compact unwind for ___multf3: does not use standard frame +ld: warning: could not create compact unwind for ___fixtfsi: does not use standard frame +ld: warning: could not create compact unwind for ___fixunstfsi: does not use standard frame +ld: warning: could not create compact unwind for ___fixtfdi: does not use standard frame +ld: warning: could not create compact unwind for ___fixunstfdi: does not use standard frame +ld: warning: could not create compact unwind for ___fixtfti: does not use standard frame +ld: warning: could not create compact unwind for ___fixunstfti: does not use standard frame +ld: warning: could not create compact unwind for ___floattitf: does not use standard frame +ld: warning: could not create compact unwind for ___floatuntitf: does not use standard frame +ld: warning: could not create compact unwind for ___fixsfbitint: does not use standard frame +ld: warning: could not create compact unwind for ___fixdfbitint: does not use standard frame +ld: warning: could not create compact unwind for ___trunctfsf2: does not use standard frame +ld: warning: could not create compact unwind for ___trunctfhf2: does not use standard frame +ld: warning: could not create compact unwind for ___trunctfbf2: does not use standard frame +ld: warning: could not create compact unwind for ___truncdfbf2: does not use standard frame +ld: warning: could not create compact unwind for ___truncsfbf2: does not use standard frame +ld: warning: could not create compact unwind for ___trunchfbf2: does not use standard frame +ld: warning: could not create compact unwind for ___fixhfti: does not use standard frame +ld: warning: could not create compact unwind for ___fixunshfti: does not use standard frame +ld: warning: could not create compact unwind for ___floatdibf: does not use standard frame +ld: warning: could not create compact unwind for ___floatundibf: does not use standard frame +ld: warning: could not create compact unwind for ___floattibf: does not use standard frame +ld: warning: could not create compact unwind for ___fixtfbitint: does not use standard frame +ld: warning: could not create compact unwind for ___enable_execute_stack: does not use standard frame +ld: warning: could not create compact unwind for ___bid_fixsdbitint: does not use standard frame +ld: warning: could not create compact unwind for ___bid_floatbitintsd: does not use standard frame +ld: warning: could not create compact unwind for ___bid_fixddbitint: does not use standard frame +ld: warning: could not create compact unwind for ___bid_floatbitintdd: does not use standard frame +ld: warning: could not create compact unwind for ___bid_fixtdbitint: does not use standard frame +ld: warning: could not create compact unwind for ___bid_floatbitinttd: does not use standard frame +[100%] Built target efpmd +/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_progress_start /Users/lyuda/LIBEFP/libefp_skp_may2025/build/CMakeFiles 0 +/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -S/Users/lyuda/LIBEFP/libefp_skp_may2025 -B/Users/lyuda/LIBEFP/libefp_skp_may2025/build --check-build-system CMakeFiles/Makefile.cmake 0 +/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_progress_start /Users/lyuda/LIBEFP/libefp_skp_may2025/build/CMakeFiles /Users/lyuda/LIBEFP/libefp_skp_may2025/build//CMakeFiles/progress.marks +/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/Makefile2 all +/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/efp.dir/build.make CMakeFiles/efp.dir/depend +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/CMakeFiles/efp.dir/DependInfo.cmake "--color=" +/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/efp.dir/build.make CMakeFiles/efp.dir/build +make[2]: Nothing to be done for `CMakeFiles/efp.dir/build'. +[ 42%] Built target efp +/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/libff.dir/build.make efpmd/CMakeFiles/libff.dir/depend +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/libff.dir/DependInfo.cmake "--color=" +/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/libff.dir/build.make efpmd/CMakeFiles/libff.dir/build +make[2]: Nothing to be done for `efpmd/CMakeFiles/libff.dir/build'. +[ 45%] Built target libff +/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/libopt.dir/build.make efpmd/CMakeFiles/libopt.dir/depend +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/libopt.dir/DependInfo.cmake "--color=" +/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/libopt.dir/build.make efpmd/CMakeFiles/libopt.dir/build +make[2]: Nothing to be done for `efpmd/CMakeFiles/libopt.dir/build'. +[ 57%] Built target libopt +/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/ctorch.dir/build.make efpmd/CMakeFiles/ctorch.dir/depend +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/ctorch.dir/DependInfo.cmake "--color=" +/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/ctorch.dir/build.make efpmd/CMakeFiles/ctorch.dir/build +make[2]: Nothing to be done for `efpmd/CMakeFiles/ctorch.dir/build'. +[ 60%] Built target ctorch +/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/efpmd.dir/build.make efpmd/CMakeFiles/efpmd.dir/depend +cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/efpmd.dir/DependInfo.cmake "--color=" +/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/efpmd.dir/build.make efpmd/CMakeFiles/efpmd.dir/build +make[2]: Nothing to be done for `efpmd/CMakeFiles/efpmd.dir/build'. +[100%] Built target efpmd +/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_progress_start /Users/lyuda/LIBEFP/libefp_skp_may2025/build/CMakeFiles 0 +/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/Makefile2 preinstall +make[1]: Nothing to be done for `preinstall'. +Install the project... +/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -P cmake_install.cmake +-- Install configuration: "Release" +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/bin/efpmd +[cctools-port]: generating fake signature for '/Users/lyuda/LIBEFP/libefp_skp_may2025/bin/efpmd' +-- Old export file "/Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpTargets-exe.cmake" will be replaced. Removing files [/Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpTargets-exe-release.cmake]. +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpTargets-exe.cmake +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpTargets-exe-release.cmake +-- Up-to-date: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/makefp.inp +-- Up-to-date: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/ch2o_lj.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/c6h6.efp +-- Up-to-date: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/pyrazine.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/methanol.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/phenol.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/indole.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/benzene.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/cyclopentane.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/aceticacid-gp.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/thymine-stack.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/pentane.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/pyridone.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/ammonia.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/methane.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/pyridine.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/acetamide-hb.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/adenine-wc.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/neopentane.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/ethyne.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/2aminopyridine.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/methylamine.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/uracil-gp.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/water.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/nmethylacetamide.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/thymine-wc.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/acetamide-gp.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/formicacid.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/uracil.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/hydrogencyanide.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/formamide.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/aceticacid-hb.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/ethene.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/adenine-stack.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/acetone.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/ch4.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/xxii_exp_n2_1.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/ccl4.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/xxii_exp_n2_2.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/h2o.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/tip3p_mm.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/h2o_reduced.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/tetracene.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/cl2.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/ch3oh.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/nh3.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/h2.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/c2h5oh.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/dcm.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/ethane.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/oxalicb.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/dmso.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/nh3-mm.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/tba_mm.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/h2o-mm.efp +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/pentacene.efp +-- Up-to-date: /Users/lyuda/LIBEFP/libefp_skp_may2025/include/efp.h +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/lib/libefp.a +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpConfig.cmake +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpConfigVersion.cmake +-- Up-to-date: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/FindTargetLAPACK.cmake +-- Old export file "/Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpTargets-C.cmake" will be replaced. Removing files [/Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpTargets-C-release.cmake]. +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpTargets-C.cmake +-- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpTargets-C-release.cmake +Compilation complete. You can now run test jobs as '/Users/lyuda/LIBEFP/libefp_skp_may2025/bin/efpmd input.in' from the tests directory. diff --git a/gil_module.sh b/gil_module.sh deleted file mode 100644 index 8fb5ed94..00000000 --- a/gil_module.sh +++ /dev/null @@ -1,3 +0,0 @@ -module load gcc/13.3.0 -module load netlib-lapack/3.11.0 -module load openblas/0.3.27 diff --git a/lib/pylibefp/__pycache__/__init__.cpython-312.pyc b/lib/pylibefp/__pycache__/__init__.cpython-312.pyc index 1f6ba4355883b448073304b53286c1f227bd6fc6..2c667ac3e0a4603e41c1bb013590ad6c22dea38c 100644 GIT binary patch delta 20 acmey#`jeIWG%qg~0}!0{KfjUt9TNaVUj~c- delta 20 acmey#`jeIWG%qg~0}z~iDYKFL9TNaVZU%7x diff --git a/lib/pylibefp/__pycache__/wrapper.cpython-312.pyc b/lib/pylibefp/__pycache__/wrapper.cpython-312.pyc index e5e007c3c022f8a1b771de16af30f1fc0567729d..b47c816cec938de5670e32ea0e7ed11c0160c698 100644 GIT binary patch delta 6263 zcmb7I4O~-4w$CKFAs-O1Bm|LfP>d)dDi-`IR$R0QC`zf?#Yh4~0)a_T!BA{{tFB91 zb*fiaZR_jqwo1F=yDHW0s@S^PPf=U9dskm|pVj(BTdjSrZtFW|LO}cc?R%TwkN=!G zbIzHWGv}O{%SRX0$G%h>KMV=cE8zEG;qfY6zg@=1!t^TW;@{12%%&T_4jv9>EnyMr zMq*X6yJ7D#IaD89?yjk8@H*(vK#mz7N!J$w@g)3tqFLS}(NjKC_ori_TdoEO{BR;} zc$uJ3hzc(W4A_Z}v?={PqNr3ftKm=ZDVgo4iEX`TV5={Nv#%csw zC?_kPUZhYo2ia99XR@o?dJMuqI1FfgLF}B)ES}SmV8N_b*oFTsm(?q0V(RUtNV_Ir z#2(aSP$+y_#D$@(J|dBQ8*X9eb>X-o62_h~4MNHs7T85!yU@&RVc~3Zy4!1Eab^Dm5HPII)jIT&0K;tLk*O~lNq%;9YQZEf3m=C!hvjUc(?%;@BjHNn81tLFuUGvh*AWk{Sz6RjXnV!mkbWk_(ITe zI*rfRyZgZ`HzE{vZvt*`FLyLa0nbEfJfzj+(}9vn={2yk5vjz=be1G>fti@tV-_PB z#tJPlA$6Cp95OtxT6=KM_(e-}e|>YmXZp1k+IhQ}ELJR0 zJ*8MotVU@- zzMDi8f_~M|jk-_OiJu1>rH|q~%KlNI)AY&@^tx%|g%85xr#&is@TdTExss*dHc76; z2&Hir*eI|HbUw6nE?bj4fh=XmlM{qzf$^SnEBPydeK9zLg{F?;?Njqj?BHOdB&KfC zX3L?DTH6AbqpZ&6q>G&%hphE9*3>w>w2>}DgEjzJhrF^1YO9nrE@!2!)=o>LpN|@; zG^|0HwFv82Xtjk&nO1{{-Hiw(>{8}Qv#hOjc+1>%UJpG2+;8B|vrT$`%wGsA$x381 zvj$3EX1$_RjD$})nS(*KpZLPK!iaE>k;^3Hz38={tKj5Agn}Kh44#+Aqa5@ z@dz&=tXAj%e}!ZTd#*a)`~s4x0M0GODD*tS3v7uiTl1oyeA|^~;M|`6x31v{e9HokW7(p;o3bi<&XeWT4AJ;^&FX6w zkeAq}HKhsuBSa1Eq!OgiQ=qm9>0h(ywU1?QM$Y4O1adME(h<0DHBuUcEePDB+&`~i z_f_`C+Q^n&Nb)1vjTAqp4y5>D{Sm1H2wM@bfKx0#bUeZ&gx?{&j<6kJCqg^I4um#@ zw-DY$_zwgLKo(r?#SSVzs(r%Im`kaf(mgn~7vXIL?z9a^?L*j)z$1bCX+GQFP9KCG zl7$MF+vcU~P=Gt?9i;w%z~kyLyXGEaIRbraD4mAv_Yg)S%wgGeqshChuC7pj78p|q z_5mBqut%lFzlUJ!f)5b`P=s}~dL9Z}RCbz#U zl_oqpk+kGzsIMz>bUFEB6x}J=InyU7zMcr(LP2p$pPf?_tmu3U+8N=B&ipYsik#_V zRh`qbiNBoyj6$WVvyc#fD*&TNr|K-y5`P;Ej2U67&KaS^--ZKYrbX2`GlF1SP6Spr z&Lk{^J&0`CO|#Zc_zjrK>ff=16T1>G6CbgwdRjHhS#GvqT=Jh!2o!musGY~2y=l_g z1#Vyz8hH9426_yUo>tS-24UNVfd{{4!TazjqP#(V35CM0#VdpzI;>-JuZ4*J9!&dIiGEFfA2qW8r;rc{p<7SKAj^cVA5 zt^xB1OzgqLfm%=6 zd1&;p#c98$wsz$?c6D-)T9}anKmN5LJlq}%+HxQbxzK#sf7jHfUKW9wYVsEW-&6* zSkoi9rH|+36#OhVer9gb?0i0Oi;Y_s8G=*G!mPqsIr%V~ZC#b&2ypxru#0`VZXhXP zch<#|J8S^^d7NzF_k8b-TIQ&A&`PJnLqj23@}z%b%T>`DOnwZf`1p95h1R+PuvkhG zR}sMs5-X(kjR#dq`UR`sG85w%OxWixy~KuZ%@N|E zzg}wCIzywRf0K^ArX`?$;y20DZ8%MTl#W6efN-BN7`1Bs2NaD%y>?}FO@qrTYY;Qi zX)F%Lu~*t7Sm|#ggcRt$BYA$iUn!&ld0onQ<71`r3k4%>86g(nSoIVK1?$Bi0|G9NKg8TPa zTLfFZTQ7_O!xN<2yU!6}ERgf0vwQtMesf=XU=AFR6WFr7k?hrO<23$y`xj0-8`S@a zf8G0Ig$W>1Ev?({Q<1SO^gv4bPl6}tzToLImw|?RPO9QSnvetiUrL(}oF+mpkUJ#r zAv+;m>@S^3M8kgQOckaAd!IDy@P1<9nW2JypmbpJ&^zqMcLxbi0QrGreQz&O((~;6 z5oZP}K6KxhE$~d{#U~GhWTBGU?3px{`Tk@Tih$EC?fBDNEh%Q2<164+c>Z_`na)DG z78&jVwbDCe4iL!*iz;(I44b}{vAb1(OfiAylmo9 zWVN%_UJiRIKRH}e4&zEe+IaF_5Gj6bqfAH(+w|9(F__s_l}u{sB~(#C3{w}{!Y=&+ zps63!rTAg@{q(ekjXz`2PDkAkTFvI2i7my?7y1zb1|G%Opm?+o^*;s*Xrlk+kcL{P z*Hh+o!d1T1i8n>&=SzFZ^=B4`8MXDQQR8TJe#*lRoWqTBN#K+j@m1R6qlMt$z>q?fU0q0xK+OCWi zUIy~8^yL)?uMzp(DFgV#{Iz?5YXHaz{s#i9-yh9(bO)15tfPCJ@Eg#*Al>e6SEjs* z7PkSwo5FtrKd}(aEwFw!BF(rYtJ)tVQEJG9=^e zGsO57kg}${%0??4aR1-_`y9yo;yX(@SN58SKYw6@5GZr7J4^X-;PER zCQIY*W~rBm)^Tp%7`FG&nQ(f!e&Xx~>uCroiy%`5{4?^Pm3_!gB)Q zXvYo%(JM)XxF>|fP5BUQVHKi$yF9Vb=ipba@-dEof^Zz63x|4w?L0CTBb*eYj3iFD z2=uj%2}ZI<8Fm#-@^jmX61zlIKawDP1@u2Uto_I*>X2ffp?toF!&Ra>f{Y?&F)M-$ z$-9ay2Y@W_YBGy{hMdy~eA^FZzO1fvxNBs!!{xB?%D~AcS}C?gkSxt#QSFR)C4v-? zVlm4?W|K7WMGI*nS4Dj!Ng3Dccv)A`P+RVGyW#rRP=~#t+~IcuKY>qhN4ygF&jQVE z7i%I(j;0Rjuf*MvWYBmOqzF8w+%D=Ur#vXs6%ZA&s)Bmx2@sTZHm|#;#*8(a=+kpE@JSIz?k9m{jkzd{u6 zxl?7KuF=!zp@rfzF(g)q2HO)mw#AT6Rq%C?DxfG!H;AtsU!=$jd?k4-8)7*P#N>lfR*BK}KOE)G5xglDXuh*lr~UCMnP|K~Ms~2(3ji zJ^zP zY5>w4-yZ6&c!`&hZc+5 zhLcEr9&kZT;dxGccQ|QI2_sQAlS>JiNp37sMv}odOGz;ygKoN%J^^~q7!pX-jXcs( Jkxniu{|9PeEnxrv delta 6107 zcmb7I33yaRw!U?{Z>PJHPC8`ikOi`l(Ag7qfsg=U6S5JIhhV0Y?rfyHV|52eUWXv# zf`Cd=XoCX6$Ya#(ml25KW8Re+GQ%i@QDo6Uc;5%_oa!_YKj)io?w9`W zsdG-9sycPfsk-^_EA=0~RtJA#Fz5w%KI)6Dd&_trxWK4aLsJF6TU(h$7sG;A=~m)(&3bjI;8h(;TWCyl{i*Au!|G!vPFeuDKmJElvukffnQjIuOSiDpa+5)UxE!?Ww zOJHz#KoAB3ttSAM9qwJIBL*o#Em+lP?qR)g1A44)V_-s{&w?OWCBHSRrWLpzEnmF?fPls5xA07|ISDixwLaxKgIpuS9?4 z32I34k1+6d>-@CO0611_wCb$-Xu;pLe?Zf~fWaOKyqXN&(s&H$RlP^!3I2&o)<;C3 zOOPG(5L?5pLgWp@Ici*FUARYw-9@*KWksfwRJJfOiI|zi7#8wiy=_LF;7(`TBI69X z{<&I%8nRJ~{V6g&RhJ~VGyIZdfu^;EdQ_A+;@p{jt~Kz1egMliMGV%pg{}x)S7PPw zWn`JKT=gHqGGaE!jixhdd3tOHVXbkWXcVc5);rkLA!j4n!I%Snu4c%ZmBRG`A{avC z5kp;KWN^sLeDR}v-K<>crEZPa?Igu&ZKbmerhn=m^R4IlP{#br_G{sKv~hcTI_b4o3_wj zqp@n_>5x}hLoKz6rm?=(;;>SO+%sZ?$iha41yL_5VrROMC5_Gq+=S$-2oAPz^k+s| zf;7S{__?;og=7AgOn80Prdj*K&ztjm%=zcdB|Y#LTk^T7bY;)PJTU zFC4d16j!Fn;sip-2khfXu`F`Z7}I*?2UsNa15{(Xw!MHjKKhO(&xlNvBF(0gD|J{}(#CvR5K zm(a#~gbuc=;So)zkG#^5709{$?Sv)S2@FM0`~->xnm$;QS?u3+_T-W@jc?Ix`;sc+ zW$MNS2^&!PWrSA{Fj%>xpxbLmZ)R_d1H;Vp#UAsj?F1fWQb&Sf^LXdkt;6jAD=v2{AG%5Eiip$0%}=ZF7|9{|t}oeYe! z;i~SkRN{N51EV}!)m@%NeD6G9%pI-jo;!;8-s6B#F;UfBF@fN_Iue7;|7d|w!SB`v zyf@@~h?NY6CcMS|w~D_-kIJLoi{S!Ko8-nm{P8?EEs4Od8wIO$Lw`})qBcvG4)E99 z&SzuT;pd0Q+gCkC(tTl%bLztcC^oB<2!82s!8N1FM(dr{`s&Im=W;ro)jhqW;0h?6 z0!`O!AfPno34x*K^(j62lx?nEx!afSa_!IEy>!3paPEPnhnwHGepvLmzI^4B3+nLo zbKzd{M|s6FYl-Qv(3xLnAX)hq7a`*^i+?Ujx(ei1@{H#etBubhcOdt-utRGzhkk?1 zZxOB`e1~uy;ReD@M%EQew}Fh4E7rZKCa*HF<8ks0d!i$H9_lLksWa!67M0JPSyIgV zwGJv;Fl9zz@${nj@}kmtv$+6mwGIMyIj~EMii;}B3oEb(4y;HOB^8CU=}lCczV%Yjpy@!qO97Y_>(iuh%i;Y-}!4*tccNzn-w1)PsgFK z#}6)f>np2?WCV>>a{9*ODzQ(+zIkn)206+QR<Mys4I8x27*clsr^XLF$x3+)d1`sOlCP@fum^#Zh- z*^SpCSk)VS#K>mvNY25LXashRL@*)z;y^SCMImh44wEJt$ryHYM~0LPWS4wx$Gf65 z9LPTT&EI}1ih~IA?8!5P0mrPTC{U8v?B7PSFZP7Y{5OY8h2H(^!nqE{X8!~-_l}m* zq5Y#=w>Lr?rKVjlTy`KJb3PX4nu-yI8qj(wp*Av<8bFy#ksqEfc zk^Z$u@6VNTVZ2DWbbqA^7kog@{DlQe2Sbwo^*A((W$w)gaWqsewKO){Ty!LuenfU1 z>?P7zAQ#9B-toCL^+=Ake@$aq<&lhk*PCO&+CTB;xg#T`@gT014exqXWGq{AG&SdE zu@K$w2OuzdLRvq=!{>ClQe??@pJd0sD}= ztNUGI;t6sew$@)bFo)u4IyZl5$u#lX2L4?Fd^mds~Qoqm>>nD$INd6ca_vo!E0<%j9cCX;zA>+FIV zy!PPzsZ~=pC%b4`DZPX7$BR=OQYi?D0B}Q?i_@w=;B|{vxg-#^M(f#M&O`<4TXhvq zx1}*2?c8MFpMAwNAG;&Kx_OPk3Pxy z+28i5$z^u$icM36%8OZjpEa60;xx8-^%%H++1cg3aqvL~62?-lj*>P5c})J*RU0o1 zzyCJX$Oksyn5ssb1KfM>+Y#gv%eyu~dIOYuW!JU+V%%0V@j5`US>tm#cA?vlZD$2H zvNX$){0+QCCs9n(e+zqMeC94EObV4SJeaU zvFLkw(g(nQLN2@acVayFpyTh5+W+!wk}917vgOcn(m{;!&*a|0A{i!q2;8+@Q$%u5 zZL*=pApmor?{G#T6}-U#q%eigzrX174Sf%Uipl}ETYj{5qHeRdIe=tHp8>t4Yi9s) zikc0`-{g(alU%aOJ4a87(lMUlkmlvhHw5Z%S7A@;LBN&KQ{JO`l9oRQX`Tf*GWda7 z+={xX1;%ayhD*;k2`(1=@!c+XkRzPv8Wu?OBC&dN3}ooEkI@#tU-RYiOhKQ6UwM~5 zp!`#W(+Fo!r1ouFFEW}Ddb}@#E$J(uuXG(TkVB&JGR(oZZ$9^XR~SixbQv^$?Al=@ zr`3isprIh1Km#@2_6RbPgnAD~khB?BkyQ<#NW45$&~wQ70)a34;Z#=CwKk_+QQI1A z7M|*yY^64DN+cPlQLx*WURxw7CS~4(kz^i8^Xg5cm0b2dV&9yngn)igV*-A-qt zOVLo9wYl2na{}LiGq|Ep5qx`rW_Nk7m`I@plYn0KW=D~fsUoC^qJa`dZPklS*J8~EDl6x1$Vof7^=|WU+02D>If4gZISPbeq9z{;7 zaLTbHcgiMI#5!rKZf>-h1AI3zz7QTa=x3gqz6qmx|Dg&0X=!n_xab`3ometNiUHf> zyJF)=w<_ox&?=^=OE-A?;>m9EvX>>0L{ja2CxMh`5lgG(vZ@QTrn|vQ70-7fP6(D~S)%5&pT2aA2Oeq@YMca2zZO09J z8Ubr9WL|n2iB5blIXVK>c>)gtN)hYaidb7mv%IxwBuN?zy!X0ZN+U($*l|FcMMc}x z(pX=GBTe88ihNE#R2(JbB3$wYWs>ATetwf_5bzb=@tGtkwh$E%U=jEU29k7m6+?4_ zw-q!Z7UHaV{so{e);y~6zMV-jG=a#N@BLdQncZHFY6HvUHw64Xruex=@r#P`3j_ZG z;UR+G5i}Md8DTgA-i|5WQ~8bZ=f^l+&ge9R83@G)7K9c8Bhwd=%fG);0aED^epyRQLpG=B&g5BxO$|f59 zbkGBt;CjlNpH13QB8d4`)_g+B$xSLok>R%%khz4U+-ekCC1|w<#**lp`CWg_CSQyH E53siH%K!iX diff --git a/lib/pylibefp/tests/test_dict.py b/lib/pylibefp/tests/test_dict.py index 8a8436f4..e74cfd95 100644 --- a/lib/pylibefp/tests/test_dict.py +++ b/lib/pylibefp/tests/test_dict.py @@ -27,8 +27,8 @@ def test_dict_1(): print(sys1p.geometry_summary(units_to_bohr=b2a)) print(sys1p.geometry_summary(units_to_bohr=1.0)) - assert compare(2, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0001922903, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-6) + assert compare(2, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag', return_message=True), 'FAILED' + assert compare_values(0.0001922903, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-6, return_message=True), 'FAILED' def test_dict_2a(): @@ -39,8 +39,8 @@ def test_dict_2a(): sys1p.compute() ene = sys1p.get_energy() - assert compare(5, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0007440865, ene['total'], sys._getframe().f_code.co_name, atol=1.e-6) + assert compare(5, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag', return_message=True), 'FAILED' + assert compare_values(0.0007440865, ene['total'], sys._getframe().f_code.co_name, atol=1.e-6, return_message=True), 'FAILED' def test_dict_3a(): @@ -59,8 +59,8 @@ def test_dict_3a(): sys1p.compute() ene = sys1p.get_energy() - assert compare(9, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0061408841, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5) + assert compare(9, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag', return_message=True), 'FAILED' + assert compare_values(0.0061408841, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5, return_message=True), 'FAILED' def test_dict_4a(): @@ -79,8 +79,8 @@ def test_dict_4a(): sys1p.compute() ene = sys1p.get_energy() - assert compare(12, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(-0.0095597483, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5) + assert compare(12, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag', return_message=True), 'FAILED' + assert compare_values(-0.0095597483, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5, return_message=True), 'FAILED' def test_dict_5(): @@ -91,3 +91,9 @@ def test_dict_5(): with pytest.raises(pylibefp.PolNotConverged) as e_info: sys.compute() assert sys.get_frag_count() == 0 + +if __name__ == '__main__': + function_list = [test_dict_1, test_dict_2a, test_dict_3a, test_dict_4a, test_dict_5] + for f in function_list: + print(f'\nComputing {f.__name__}') + f() \ No newline at end of file diff --git a/lib/pylibefp/tests/test_efpefp.py b/lib/pylibefp/tests/test_efpefp.py index 7b6168a7..b06654ba 100644 --- a/lib/pylibefp/tests/test_efpefp.py +++ b/lib/pylibefp/tests/test_efpefp.py @@ -11,7 +11,7 @@ def blank_ene(): fields = [ 'charge_penetration', 'disp', 'dispersion', 'elec', 'electrostatic', 'electrostatic_point_charges', - 'exchange_repulsion', 'pol', 'polarization', 'xr' + 'exchange_repulsion', 'pol', 'polarization', 'xr', 'qq', 'lj' ] ene = {f: 0.0 for f in fields} return ene @@ -25,7 +25,7 @@ def test_elec_1a(): expected_ene = blank_ene() expected_ene['elec'] = expected_ene['electrostatic'] = expected_ene['total'] = 0.0002900482 - assert compare_recursive(expected_ene, ene, atol=1.e-6) + assert compare_recursive(expected_ene, ene, atol=1.e-6, return_message=True), 'FAILED' def test_elec_1b(): @@ -40,7 +40,7 @@ def test_elec_1b(): expected_ene['elec'] = expected_ene['total'] = elst expected_ene['charge_penetration'] = cp expected_ene['electrostatic'] = elst - cp - assert compare_recursive(expected_ene, ene, atol=1.e-6) + assert compare_recursive(expected_ene, ene, atol=1.e-6, return_message=True), 'FAILED' def test_pol_1a(): @@ -57,7 +57,7 @@ def test_pol_1a(): expected_ene['pol'] = expected_ene['polarization'] = pol expected_ene['total'] = elec + pol pprint.pprint(opts) - assert compare_recursive(expected_ene, ene, atol=1.e-6) + assert compare_recursive(expected_ene, ene, atol=1.e-6, return_message=True), 'FAILED' def test_pol_1b(): @@ -72,7 +72,7 @@ def test_pol_1b(): expected_ene['elec'] = expected_ene['electrostatic'] = elec expected_ene['pol'] = expected_ene['polarization'] = pol expected_ene['total'] = elec + pol - assert compare_recursive(expected_ene, ene, atol=1.e-6) + assert compare_recursive(expected_ene, ene, atol=1.e-6, return_message=True), 'FAILED' def test_disp_1a(): @@ -83,7 +83,7 @@ def test_disp_1a(): expected_ene = blank_ene() expected_ene['disp'] = expected_ene['dispersion'] = expected_ene['total'] = -0.0000989033 - assert compare_recursive(expected_ene, ene, atol=1.e-6) + assert compare_recursive(expected_ene, ene, atol=1.e-6, return_message=True), 'FAILED' def test_disp_1b(): @@ -95,7 +95,7 @@ def test_disp_1b(): expected_ene = blank_ene() expected_ene['disp'] = expected_ene['dispersion'] = expected_ene['total'] = -0.0001007275 - assert compare_recursive(expected_ene, ene, atol=1.e-6) + assert compare_recursive(expected_ene, ene, atol=1.e-6, return_message=True), 'FAILED' def test_xr_1(): @@ -106,7 +106,7 @@ def test_xr_1(): expected_ene = blank_ene() expected_ene['xr'] = expected_ene['exchange_repulsion'] = expected_ene['total'] = 0.0000134716 - assert compare_recursive(expected_ene, ene, atol=1.e-6) + assert compare_recursive(expected_ene, ene, atol=1.e-6, return_message=True), 'FAILED' def test_total_1a(): @@ -137,11 +137,11 @@ def test_total_1a(): expected_ene['pol'] = expected_ene['polarization'] = 0.0002777238 - expected_ene['electrostatic'] expected_ene['disp'] = expected_ene['dispersion'] = -0.0000989033 expected_ene['total'] = 0.0001922903 - assert compare(2, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0, asdf.get_frag_charge(1), sys._getframe().f_code.co_name + ': f_chg', atol=1.e-6) - assert compare(1, asdf.get_frag_multiplicity(1), sys._getframe().f_code.co_name + ': f_mult') - assert compare('NH3_L', asdf.get_frag_name(1), sys._getframe().f_code.co_name + ': f_name') - assert compare_recursive(expected_ene, ene, sys._getframe().f_code.co_name + ': ene', atol=1.e-6) + assert compare(2, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag', return_message=True), 'FAILED' + assert compare_values(0.0, asdf.get_frag_charge(1), sys._getframe().f_code.co_name + ': f_chg', atol=1.e-6, return_message=True), 'FAILED' + assert compare(1, asdf.get_frag_multiplicity(1), sys._getframe().f_code.co_name + ': f_mult', return_message=True), 'FAILED' + assert compare('NH3_L', asdf.get_frag_name(1), sys._getframe().f_code.co_name + ': f_name', return_message=True), 'FAILED' + assert compare_recursive(expected_ene, ene, sys._getframe().f_code.co_name + ': ene', atol=1.e-6, return_message=True), 'FAILED' def test_elec_2a(): @@ -149,7 +149,7 @@ def test_elec_2a(): asdf.set_opts({'elec': True, 'elec_damp': 'screen'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(0.0015865516, ene['elec'], atol=1.e-6) + assert compare_values(0.0015865516, ene['elec'], atol=1.e-6, return_message=True), 'FAILED' def test_elec_2b(): @@ -157,7 +157,7 @@ def test_elec_2b(): asdf.set_opts({'elec': True, 'elec_damp': 'overlap'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(0.0017049246, ene['elec'], atol=1.e-6) + assert compare_values(0.0017049246, ene['elec'], atol=1.e-6, return_message=True), 'FAILED' def test_pol_2a(): @@ -166,7 +166,7 @@ def test_pol_2a(): asdf.compute() ene = asdf.get_energy() pprint.pprint(ene) - assert compare_values(0.0013685212, ene['total'], atol=1.e-6) + assert compare_values(0.0013685212, ene['total'], atol=1.e-6, return_message=True), 'FAILED' def test_pol_2b(): @@ -174,7 +174,7 @@ def test_pol_2b(): asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen', 'pol_driver': 'direct'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(0.0013685212, ene['total'], atol=1.e-6) + assert compare_values(0.0013685212, ene['total'], atol=1.e-6, return_message=True), 'FAILED' def test_disp_2a(): @@ -182,7 +182,7 @@ def test_disp_2a(): asdf.set_opts({'disp': True, 'disp_damp': 'tt'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0014688094, ene['disp'], atol=1.e-6) + assert compare_values(-0.0014688094, ene['disp'], atol=1.e-6, return_message=True), 'FAILED' def test_disp_2b(): @@ -190,7 +190,7 @@ def test_disp_2b(): asdf.set_opts({'disp': True, 'disp_damp': 'overlap'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0015801770, ene['disp'], atol=1.e-6) + assert compare_values(-0.0015801770, ene['disp'], atol=1.e-6, return_message=True), 'FAILED' def test_xr_2(): @@ -198,7 +198,7 @@ def test_xr_2(): asdf.set_opts({'xr': True}) asdf.compute() ene = asdf.get_energy() - assert compare_values(0.0008443933, ene['xr'], atol=1.e-6) + assert compare_values(0.0008443933, ene['xr'], atol=1.e-6, return_message=True), 'FAILED' def test_total_2a(): @@ -207,7 +207,7 @@ def test_total_2a(): asdf.compute() ene = asdf.get_energy() assert compare(5, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0007440865, ene['total'], atol=1.e-6) + assert compare_values(0.0007440865, ene['total'], atol=1.e-6, return_message=True), 'FAILED' def test_elec_3a(): @@ -215,7 +215,7 @@ def test_elec_3a(): asdf.set_opts({'elec': True, 'elec_damp': 'screen'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0039531505, ene['elec'], atol=1.e-6) + assert compare_values(-0.0039531505, ene['elec'], atol=1.e-6, return_message=True), 'FAILED' def test_elec_3b(): @@ -223,7 +223,7 @@ def test_elec_3b(): asdf.set_opts({'elec': True, 'elec_damp': 'overlap'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(0.0023592829, ene['elec'], atol=1.e-6) + assert compare_values(0.0023592829, ene['elec'], atol=1.e-6, return_message=True), 'FAILED' def test_pol_3a(): @@ -231,7 +231,7 @@ def test_pol_3a(): asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen', 'pol_damp': 'off'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0066095992, ene['total'], atol=1.e-6) + assert compare_values(-0.0066095992, ene['total'], atol=1.e-6, return_message=True), 'FAILED' def test_pol_3b(): @@ -239,7 +239,7 @@ def test_pol_3b(): asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen', 'pol_damp': 'off', 'pol_driver': 'direct'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0066095992, ene['total'], atol=1.e-6) + assert compare_values(-0.0066095992, ene['total'], atol=1.e-6, return_message=True), 'FAILED' def test_disp_3a(): @@ -247,7 +247,7 @@ def test_disp_3a(): asdf.set_opts({'disp': True, 'disp_damp': 'tt'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0173897265, ene['disp'], atol=1.e-6) + assert compare_values(-0.0173897265, ene['disp'], atol=1.e-6, return_message=True), 'FAILED' def test_disp_3b(): @@ -255,7 +255,7 @@ def test_disp_3b(): asdf.set_opts({'disp': True, 'disp_damp': 'overlap'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0220107872, ene['disp'], atol=1.e-6) + assert compare_values(-0.0220107872, ene['disp'], atol=1.e-6, return_message=True), 'FAILED' def test_xr_3(): @@ -263,7 +263,7 @@ def test_xr_3(): asdf.set_opts({'xr': True}) asdf.compute() ene = asdf.get_energy() - assert compare_values(0.0301402098, ene['xr'], atol=1.e-5) + assert compare_values(0.0301402098, ene['xr'], atol=1.e-5, return_message=True), 'FAILED' def test_total_3a(): @@ -279,8 +279,8 @@ def test_total_3a(): }) asdf.compute() ene = asdf.get_energy() - assert compare(9, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0061408841, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5) + assert compare(9, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag', return_message=True), 'FAILED' + assert compare_values(0.0061408841, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5, return_message=True), 'FAILED' def test_total_4a(): @@ -301,11 +301,11 @@ def test_total_4a(): mfrags = [1 for fr in range(12)] cfrags = [0.0 for fr in range(12)] tnm = sys._getframe().f_code.co_name - assert compare(12, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_recursive({'dummy': cfrags}, {'dummy': asdf.get_frag_charge()}, tnm + ': f_chg', atol=1.e-2) - assert compare_recursive({'dummy': mfrags}, {'dummy': asdf.get_frag_multiplicity()}, tnm + ': f_mult', atol=1.e-2) - assert compare_recursive({'dummy': [fr + '_L' for fr in nfrags]}, {'dummy': asdf.get_frag_name()}, tnm + ': f_names', atol=1.e-2) - assert compare_values(-0.0095597483, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5) + assert compare(12, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag', return_message=True), 'FAILED' + assert compare_recursive({'dummy': cfrags}, {'dummy': asdf.get_frag_charge()}, tnm + ': f_chg', atol=1.e-2, return_message=True), 'FAILED' + assert compare_recursive({'dummy': mfrags}, {'dummy': asdf.get_frag_multiplicity()}, tnm + ': f_mult', atol=1.e-2, return_message=True), 'FAILED' + assert compare_recursive({'dummy': [fr + '_L' for fr in nfrags]}, {'dummy': asdf.get_frag_name()}, tnm + ': f_names', atol=1.e-2, return_message=True), 'FAILED' + assert compare_values(-0.0095597483, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5, return_message=True), 'FAILED' def test_total_4b(): @@ -321,7 +321,7 @@ def test_total_4b(): }) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0092400662, ene['total'], atol=1.e-5) + assert compare_values(-0.0092400662, ene['total'], atol=1.e-5, return_message=True), 'FAILED' def test_total_4c(): @@ -337,7 +337,7 @@ def test_total_4c(): }) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0091278725, ene['total'], atol=1.e-5) + assert compare_values(-0.0091278725, ene['total'], atol=1.e-5, return_message=True), 'FAILED' def test_total_4d(): @@ -354,8 +354,16 @@ def test_total_4d(): }) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0095597483, ene['total'], atol=1.e-5) + assert compare_values(-0.0095597483, ene['total'], atol=1.e-5, return_message=True), 'FAILED' if __name__ == '__main__': - test_total_4a() + function_list = [ test_elec_1a, test_elec_1b, test_elec_2a, test_elec_2b, test_elec_3a, test_elec_3b, + test_pol_1a, test_pol_1b, test_pol_2a, test_pol_2b, test_pol_3a, test_pol_3b, + test_disp_1a, test_disp_1b, test_disp_2a, test_disp_2b, test_disp_3a, test_disp_3b, + test_xr_1, test_xr_2, test_xr_3, + test_total_1a, test_total_2a, test_total_3a, test_total_4a, test_total_4b, test_total_4c, test_total_4d] + for f in function_list: + print(f'\nComputing {f.__name__}') + f() + diff --git a/lib/pylibefp/tests/test_psi.py b/lib/pylibefp/tests/test_psi.py index 490aec3d..48d50314 100644 --- a/lib/pylibefp/tests/test_psi.py +++ b/lib/pylibefp/tests/test_psi.py @@ -34,8 +34,8 @@ def test_efpefptorque(): ] } # yapf: disable - assert compare_values(-0.0066095987170644, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-5) - assert compare_recursive(ref, {'torque': torq}, sys._getframe().f_code.co_name + ': torq', atol=1.e-6) + assert compare_values(-0.0066095987170644, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-5, return_message=True), 'FAILED' + assert compare_recursive(ref, {'torque': torq}, sys._getframe().f_code.co_name + ': torq', atol=1.e-6, return_message=True), 'FAILED' def test_efpefp_bz2(): @@ -45,7 +45,7 @@ def test_efpefp_bz2(): asdf = pylibefp.core.efp() - frags = ['c6h6', 'c6h6'] + frags = ['c6h6_l', 'c6h6_l'] asdf.add_potential(frags) asdf.add_fragment(frags) asdf.set_frag_coordinates( @@ -59,8 +59,12 @@ def test_efpefp_bz2(): ene = asdf.get_energy(label='psi') # values copied from q-chem output file - assert compare_values(-0.006945881265, ene['elst'], sys._getframe().f_code.co_name + ': ene elst', atol=1.e-6) - assert compare_values(0.046915489574, ene['exch'], sys._getframe().f_code.co_name + ': ene exch', atol=1.e-6) - assert compare_values(-0.000675030191, ene['ind'], sys._getframe().f_code.co_name + ': ene ind', atol=1.e-6) - assert compare_values(-0.021092526180, ene['disp'], sys._getframe().f_code.co_name + ': ene disp', atol=1.e-6) - assert compare_values(0.018202051938, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-6) + assert compare_values(-0.006945881265, ene['elst'], sys._getframe().f_code.co_name + ': ene elst', atol=1.e-6, return_message=True), 'FAILED' + assert compare_values(0.046915489574, ene['exch'], sys._getframe().f_code.co_name + ': ene exch', atol=1.e-6, return_message=True), 'FAILED' + assert compare_values(-0.000675030191, ene['ind'], sys._getframe().f_code.co_name + ': ene ind', atol=1.e-6, return_message=True), 'FAILED' + assert compare_values(-0.021092526180, ene['disp'], sys._getframe().f_code.co_name + ': ene disp', atol=1.e-6, return_message=True), 'FAILED' + assert compare_values(0.018202051938, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-6, return_message=True), 'FAILED' + +if __name__ == '__main__': + test_efpefptorque() + test_efpefp_bz2() \ No newline at end of file diff --git a/lib/pylibefp/wrapper.py b/lib/pylibefp/wrapper.py index f181cae5..26401f0c 100644 --- a/lib/pylibefp/wrapper.py +++ b/lib/pylibefp/wrapper.py @@ -102,11 +102,6 @@ def compute(efpobj, do_gradient=False): res = efpobj._efp_compute(do_gradient) _result_to_error(res) - # If pairwise is enabled - if efpobj.get_opts().get("enable_pairwise", False): - #_result_to_error(res2) - efpobj.print_pairwise_energies() # do this for enable_pairwise=true - def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): """Searches for EFP fragments and adds to `efpobj`. @@ -139,6 +134,8 @@ def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): if present. """ + + print('POTENTIAL ', potential) paths = [] library_paths = [] for pth in fragpath.split(os.pathsep): @@ -275,8 +272,8 @@ def get_opts(efpobj, label='libefp'): dopts['spec_disp'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_DISP) # SKP dopts['spec_xr'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_XR) # SKP dopts['spec_chtr'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_CHTR) # SKP - dopts['spec_qq'] = bool(opts.terms & core.efp_special_term.EFP_SPEC_TERM_QQ) # SKP - dopts['spec_lj'] = bool(opts.terms & core.efp_special_term.EFP_SPEC_TERM_LJ) # SKP + dopts['spec_qq'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_QQ) # SKP + dopts['spec_lj'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_LJ) # SKP dopts['elec_damp'] = { core.EFP_ELEC_DAMP_SCREEN: 'screen', @@ -357,7 +354,7 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): 'elec', 'pol', 'disp', 'xr', 'elec_damp', 'pol_damp', 'disp_damp', 'enable_pbc', 'enable_cutoff', 'swf_cutoff', 'xr_cutoff', 'pol_driver', 'ai_elec', 'ai_pol', 'enable_pairwise', 'ligand', 'symmetry', 'symm_frag', - 'spec_elec', 'spec_pol', 'spec_disp', 'spec_xr', 'spec_qq', 'ai_qq', 'qq', 'lj', 'special_fragment', + 'spec_elec', 'spec_pol', 'spec_disp', 'spec_xr', 'spec_chtr', 'ai_qq', 'qq', 'lj', 'special_fragment', 'spec_qq', 'spec_lj', 'print' ] label_allowed = [_lbtl[label].get(itm, itm) for itm in allowed] @@ -373,10 +370,10 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): if append == 'libefp': opts.ligand = -100 opts.special_fragment = -100 - opts.terms |= core.efp_term.EFP_TERM_ELEC - opts.terms |= core.efp_term.EFP_TERM_POL - opts.terms |= core.efp_term.EFP_TERM_DISP - opts.terms |= core.efp_term.EFP_TERM_XR + #opts.terms |= core.efp_term.EFP_TERM_ELEC + #opts.terms |= core.efp_term.EFP_TERM_POL + #opts.terms |= core.efp_term.EFP_TERM_DISP + #opts.terms |= core.efp_term.EFP_TERM_XR elif append == 'psi': opts.terms |= core.efp_term.EFP_TERM_ELEC opts.terms |= core.efp_term.EFP_TERM_POL @@ -387,6 +384,8 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): opts.disp_damp = core.EFP_DISP_DAMP_OVERLAP opts.terms |= core.efp_term.EFP_TERM_AI_ELEC opts.terms |= core.efp_term.EFP_TERM_AI_POL + opts.ligand = -100 + opts.special_fragment = -100 #elif append == 'qchem': # # q-chem and psi4 have different defaults for at least this option # opts.disp_damp = core.EFP_DISP_DAMP_TT @@ -729,11 +728,16 @@ def set_periodic_box(efpobj, xyz, alpha=90.0, beta=90.0, gamma=90.0): Parameters alpha, beta, and gamma added. """ - #if len(xyz) != 3: - # raise PyEFPSyntaxError('Invalid periodic box setting: {}'.format(xyz)) - res = efpobj._efp_set_periodic_box(xyz[0], xyz[1], xyz[2], alpha, beta, gamma) - _result_to_error(res) + if len(xyz) == 3: + res = efpobj._efp_set_periodic_box(xyz[0], xyz[1], xyz[2], alpha, beta, gamma) + _result_to_error(res) + elif len(xyz) == 6: + res = efpobj._efp_set_periodic_box(xyz[0], xyz[1], xyz[2], xyz[3], xyz[4], xyz[5]) + _result_to_error(res) + else : + raise PyEFPSyntaxError('Invalid periodic box setting: {}'.format(xyz)) + (res, xyzabc) = efpobj._efp_get_periodic_box() _result_to_error(res) diff --git a/python/wrapper.py b/python/wrapper.py index 58805756..9489ac26 100644 --- a/python/wrapper.py +++ b/python/wrapper.py @@ -102,11 +102,6 @@ def compute(efpobj, do_gradient=False): res = efpobj._efp_compute(do_gradient) _result_to_error(res) - # If pairwise is enabled - if efpobj.get_opts().get("enable_pairwise", False): - #_result_to_error(res2) - efpobj.print_pairwise_energies() # do this for enable_pairwise=true - def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): """Searches for EFP fragments and adds to `efpobj`. @@ -139,6 +134,8 @@ def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): if present. """ + + print('POTENTIAL ', potential) paths = [] library_paths = [] for pth in fragpath.split(os.pathsep): @@ -275,8 +272,8 @@ def get_opts(efpobj, label='libefp'): dopts['spec_disp'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_DISP) # SKP dopts['spec_xr'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_XR) # SKP dopts['spec_chtr'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_CHTR) # SKP - dopts['spec_qq'] = bool(opts.terms & core.efp_special_term.EFP_SPEC_TERM_QQ) # SKP - dopts['spec_lj'] = bool(opts.terms & core.efp_special_term.EFP_SPEC_TERM_LJ) # SKP + dopts['spec_qq'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_QQ) # SKP + dopts['spec_lj'] = bool(opts.special_terms & core.efp_special_term.EFP_SPEC_TERM_LJ) # SKP dopts['elec_damp'] = { core.EFP_ELEC_DAMP_SCREEN: 'screen', @@ -357,7 +354,7 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): 'elec', 'pol', 'disp', 'xr', 'elec_damp', 'pol_damp', 'disp_damp', 'enable_pbc', 'enable_cutoff', 'swf_cutoff', 'xr_cutoff', 'pol_driver', 'ai_elec', 'ai_pol', 'enable_pairwise', 'ligand', 'symmetry', 'symm_frag', - 'spec_elec', 'spec_pol', 'spec_disp', 'spec_xr', 'spec_qq', 'ai_qq', 'qq', 'lj', 'special_fragment', + 'spec_elec', 'spec_pol', 'spec_disp', 'spec_xr', 'spec_chtr', 'ai_qq', 'qq', 'lj', 'special_fragment', 'spec_qq', 'spec_lj', 'print' ] label_allowed = [_lbtl[label].get(itm, itm) for itm in allowed] @@ -373,10 +370,10 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): if append == 'libefp': opts.ligand = -100 opts.special_fragment = -100 - opts.terms |= core.efp_term.EFP_TERM_ELEC - opts.terms |= core.efp_term.EFP_TERM_POL - opts.terms |= core.efp_term.EFP_TERM_DISP - opts.terms |= core.efp_term.EFP_TERM_XR + #opts.terms |= core.efp_term.EFP_TERM_ELEC + #opts.terms |= core.efp_term.EFP_TERM_POL + #opts.terms |= core.efp_term.EFP_TERM_DISP + #opts.terms |= core.efp_term.EFP_TERM_XR elif append == 'psi': opts.terms |= core.efp_term.EFP_TERM_ELEC opts.terms |= core.efp_term.EFP_TERM_POL @@ -387,6 +384,8 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): opts.disp_damp = core.EFP_DISP_DAMP_OVERLAP opts.terms |= core.efp_term.EFP_TERM_AI_ELEC opts.terms |= core.efp_term.EFP_TERM_AI_POL + opts.ligand = -100 + opts.special_fragment = -100 #elif append == 'qchem': # # q-chem and psi4 have different defaults for at least this option # opts.disp_damp = core.EFP_DISP_DAMP_TT @@ -729,11 +728,16 @@ def set_periodic_box(efpobj, xyz, alpha=90.0, beta=90.0, gamma=90.0): Parameters alpha, beta, and gamma added. """ - #if len(xyz) != 3: - # raise PyEFPSyntaxError('Invalid periodic box setting: {}'.format(xyz)) - res = efpobj._efp_set_periodic_box(xyz[0], xyz[1], xyz[2], alpha, beta, gamma) - _result_to_error(res) + if len(xyz) == 3: + res = efpobj._efp_set_periodic_box(xyz[0], xyz[1], xyz[2], alpha, beta, gamma) + _result_to_error(res) + elif len(xyz) == 6: + res = efpobj._efp_set_periodic_box(xyz[0], xyz[1], xyz[2], xyz[3], xyz[4], xyz[5]) + _result_to_error(res) + else : + raise PyEFPSyntaxError('Invalid periodic box setting: {}'.format(xyz)) + (res, xyzabc) = efpobj._efp_get_periodic_box() _result_to_error(res) diff --git a/setup.sh b/setup.sh index 77c66535..68a6d496 100644 --- a/setup.sh +++ b/setup.sh @@ -1,19 +1,17 @@ -#!/bin/csh +#!/bin/zsh -setenv TORCH_SWITCH OFF +export TORCH_SWITCH=ON -#setenv LIBEFP_DIR "/depot/lslipche/data/skp/torch_skp_branch/libefp" -setenv LIBEFP_DIR "/scratch/gilbreth/paulsk/ls_pylib/libefp" -setenv PYTHONPATH "$LIBEFP_DIR/installed/lib64/" +export LIBEFP_DIR="/Users/lyuda/LIBEFP/libefp_skp_may2025" +export INSTALLATION_DIR="$LIBEFP_DIR" +export PYTHONPATH="$LIBEFP_DIR/lib" -if ("$TORCH_SWITCH" == "ON") then +if [[ "$TORCH_SWITCH" == "ON" ]]; then # Set the installation directory for LibTorch - setenv CONDA_PREFIX "/apps/spack/gilbreth/apps/anaconda/2020.11-py38-gcc-4.8.5-djkvkvk/etc/profile.d/conda.csh" - setenv TORCH_INSTALLED_DIR "/depot/lslipche/data/skp/libtorch" - setenv LIBTORCH_INCLUDE_DIRS "$TORCH_INSTALLED_DIR/include/;$TORCH_INSTALLED_DIR/include/torch/csrc/api/include" - #setenv PYTHON_REQS "/apps/spack/gilbreth/apps/anaconda/2020.11-py38-gcc-4.8.5-djkvkvk/etc/profile.d/conda.csh;$LIBEFP_DIR/python/../installed;$TORCH_INSTALLED_DIR" - setenv TORCHANI_DIR "$LIBEFP_DIR/efpmd/torch" - + export TORCH_INSTALLED_DIR="/Users/lyuda/LIBEFP/LIBTORCH/libtorch" + export LIBTORCH_INCLUDE_DIRS="$TORCH_INSTALLED_DIR/include/;$TORCH_INSTALLED_DIR/include/torch/csrc/api/include" + export TORCHANI_DIR="$LIBEFP_DIR/efpmd/torch" + echo "Environment variables set for Torch integration:" echo "LIBEFP_DIR=$LIBEFP_DIR" echo "TORCH_INSTALLED_DIR=$TORCH_INSTALLED_DIR" @@ -27,7 +25,7 @@ else echo "Torch integration is disabled. Only basic environment variables are set:" echo "LIBEFP_DIR=$LIBEFP_DIR" -endif +fi echo "TORCH_SWITCH=$TORCH_SWITCH" diff --git a/tests/pytests/atom_coord_2.py b/tests/pytests/atom_coord_2.py deleted file mode 100644 index 1c19c531..00000000 --- a/tests/pytests/atom_coord_2.py +++ /dev/null @@ -1,53 +0,0 @@ -# This job matches atom_coord_2.in - -import numpy as np -import pylibefp - -efp = pylibefp.core.efp() - -b2a = 0.529177 -a2b = 1.0 / b2a - -# coords in angstroms -h2o_coord = np.array([-3.394000, -1.900000, -3.700000, - -3.517419, -1.130057, -3.174996, - -2.580284, -2.281411, -3.424198]) -nh3_coord = np.array([ -5.515000, 1.083000, 0.968000, - -5.171084, 0.157148, 0.817415, - -4.838165, 1.726200, 0.612549, - -6.354118, 1.191679, 0.436750]) -ch3oh_coord = np.array([ -2.056000, 0.767000, -0.301000, --2.979940, -0.252959, -0.545947, --1.192965, 0.406624, 0.250842, --2.554557, 1.516350, 0.296433, --1.714730, 1.232706, -1.220716, --2.587630, -0.929369, -1.064807]) - -# converting to bohrs -h2o_coord *= a2b -nh3_coord *= a2b -ch3oh_coord *= a2b - -frags = ["h2o_l", "nh3_l", "ch3oh_l"] -efp.add_potential(frags) -efp.add_fragment(frags) -efp.set_frag_coordinates(0, "atoms", h2o_coord.tolist()) -efp.set_frag_coordinates(1, "atoms", nh3_coord.tolist()) -efp.set_frag_coordinates(2, "atoms", ch3oh_coord.tolist()) - -efp.prepare() - -efp.set_opts({ - "elec": True, - "elec_damp": "screen", - "xr": True, - "pol": True, - "disp": True, - "print": 0, -}) - -efp.compute(do_gradient=True) -ene = efp.get_energy() -print(ene) -grad = efp.get_gradient() -print(grad) diff --git a/tests/pytests/atoms.py b/tests/pytests/atoms.py deleted file mode 100644 index 33dbb269..00000000 --- a/tests/pytests/atoms.py +++ /dev/null @@ -1,26 +0,0 @@ -import pylibefp - -efp = pylibefp.core.efp() - -frags = ["h2o_l"] -efp.add_potential(frags) -efp.add_fragment(frags) -efp.set_frag_coordinates(0, "points", - [-4.394, -1.900, -0.700, -4.517, -1.130, -0.175, -3.580, -2.281, -0.424]) - -efp.prepare() - -efp.set_opts({ - "elec": True, - "elec_damp": "overlap", - "disp_damp": "tt", - "xr": True, - "pol": True, - "disp": True, -}) - -efp.compute() -ene = efp.get_energy() -ene2 = efp.energy_summary() -print(ene) -print(ene2) diff --git a/tests/pytests/libefp2py.py b/tests/pytests/libefp2py.py index 7b2067f4..43c2f104 100644 --- a/tests/pytests/libefp2py.py +++ b/tests/pytests/libefp2py.py @@ -1,4 +1,4 @@ -# read libefp input and extract geometry suitable for pylibefp input +# read libefp/efpmd input and prepares information for pylibefp input # coordinates will be in Bohr units def read_libefp_input(libefp_inp) : @@ -6,53 +6,130 @@ def read_libefp_input(libefp_inp) : b2a = 0.529177 a2b = 1.0 / b2a - coord_type = 0 + coord_type = 'points' # default frag_names = [] frag_coords = [] + if_gradient = False + periodic_box = [] + efp_options = {} + ref_energy = 0.0 + efp_terms = [] - with open (libefp_inp,'r') as f: - print(f"Will work with {libefp_inp} file") - while True: - line=f.readline() - if not line: break - if "coord" in line: # read type of coordinate input - sline = line.rsplit() - coord_type = sline[1] - print(f"coord {coord_type}") - - if "fragment" in line: # read fragment name - sline = line.rsplit() - frag_name = sline[1] - frag_coord = [] - if coord_type == 'atoms' or 'points': - while True: - l = f.readline() - l = l.strip() # Remove leading/trailing whitespace; stop reading when empty line is found - if not l: break - if "fragment" in l or "velocity" in l: break - sline = l.rsplit() - if coord_type == 'atoms': - frag_coord.append(float(sline[1])*a2b) - frag_coord.append(float(sline[2])*a2b) - frag_coord.append(float(sline[3])*a2b) - if coord_type == 'points': - frag_coord.append(float(sline[0])*a2b) - frag_coord.append(float(sline[1])*a2b) - frag_coord.append(float(sline[2])*a2b) - if coord_type == 'xyzabc': - line=f.readline() - sline = line.rsplit() - for i in range(3): - frag_coord.append(float(sline[i])*a2b) - for i in range(3): - frag_coord.append(float(sline[i+3])) - - # store frag info - frag_names.append(frag_name) - frag_coords.append(frag_coord) - - print(f"Found {len(frag_names)} fragments") - return frag_names, frag_coords + with open(libefp_inp,'r') as f: + #print(f'Will work with {libefp_inp} file') + lines = f.readlines() + line_counter = 0 + for line in lines: + if 'run_type' in line: + if 'grad' in line or 'opt' in line or 'hess' in line or 'md' in line or 'gtest' in line: + if_gradient = True + if "coord" in line: # read type of coordinate input + sline = line.rsplit() + coord_type = sline[1] + #print(f"coord {coord_type}") + if 'terms' in line and 'spec_terms' not in line: + sline = line.rsplit() + for s in sline[1:]: + efp_terms.append(s) + #efp_options[s] = True + + if 'spec_terms' in line: + sline = line.rsplit() + for s in sline[1:]: + #spec_terms.append(s) + efp_options[s] = True + + if 'damp' in line: + efp_options[line.rsplit()[0]] = line.rsplit()[1] + + if "pol_driver" in line: + efp_options["pol_driver"] = line.rsplit()[1] + + if 'enable_cutoff' in line: + efp_options["enable_cutoff"] = line.rsplit()[1] + if 'swf_cutoff' in line: + efp_options["swf_cutoff"] = a2b * float(line.rsplit()[1]) + if 'xr_cutoff' in line: + efp_options["xr_cutoff"] = a2b * float(line.rsplit()[1]) + if 'enable_pbc' in line: + efp_options["enable_pbc"] = line.rsplit()[1] + if 'periodic_box' in line: + for s in line.rsplit()[1:4]: + periodic_box.append( a2b * float(s)) # xyz + if len(line.rsplit()) > 4: + for s in line.rsplit()[4:]: + periodic_box.append(float(s)) # angles + + if 'ref_energy' in line: + ref_energy = line.rsplit()[1] + + if 'ligand' in line: + efp_options["ligand"] = int(line.rsplit()[1]) + if 'enable_pairwise' in line: + efp_options["enable_pairwise"] = line.rsplit()[1] + + if 'symmetry' in line: + efp_options["symmetry"] = line.rsplit()[1] + if 'special_fragment' in line: + efp_options["special_fragment"] = int(line.rsplit()[1]) + if 'symm_frag' in line: + efp_options["symm_frag"] = line.rsplit()[1] + if 'print' in line and 'print_pbc' not in line: + efp_options["print"] = int(line.rsplit()[1]) + + ##### fragments + if "fragment" in line and 'special_fragment' not in line: # read fragment name + sline = line.rsplit() + frag_name = sline[1] + frag_coord = [] + if coord_type == 'atoms' or coord_type == 'points': + for k in range(line_counter+1, len(lines)): + l = lines[k] + l = l.strip() # Remove leading/trailing whitespace; stop reading when empty line is found + if not l: break + if "velocity" in l: break + if "fragment" in l: break + sline = l.rsplit() + if coord_type == 'atoms': + frag_coord.append(float(sline[1])*a2b) + frag_coord.append(float(sline[2])*a2b) + frag_coord.append(float(sline[3])*a2b) + if coord_type == 'points': + frag_coord.append(float(sline[0])*a2b) + frag_coord.append(float(sline[1])*a2b) + frag_coord.append(float(sline[2])*a2b) + if coord_type == 'xyzabc': + l = lines[line_counter+1] + sline = l.rsplit() + if len(sline) != 6: + print('Warning! bad xyzabc coordinate read', sline) + + for i in range(3): + frag_coord.append(float(sline[i])*a2b) + for i in range(3): + frag_coord.append(float(sline[i+3])) + + # store frag info + frag_names.append(frag_name) + frag_coords.append(frag_coord) + + line_counter += 1 + + if efp_terms: + for term in efp_terms: + efp_options[term] = True + else: # no efp terms is given. libefp default is elec, pol, disp, exrep + efp_options['elec'] = True + efp_options['pol'] = True + efp_options['disp'] = True + efp_options['xr'] = True + + #print(f"Found {len(frag_names)} fragments") + return coord_type, frag_names, frag_coords, efp_options, if_gradient, ref_energy, periodic_box + + +#things = read_libefp_input('../total_1a.in') +#print(things) diff --git a/tests/pytests/lj.py b/tests/pytests/lj.py deleted file mode 100644 index 4ac37320..00000000 --- a/tests/pytests/lj.py +++ /dev/null @@ -1,44 +0,0 @@ -# matches lj_2.in - -import numpy as np - -import pylibefp - -efp = pylibefp.core.efp() - -b2a = 0.529177 -a2b = 1.0 / b2a - -frags = ["tip3p_mm_l", "tip3p_mm_l"] -efp.add_potential(frags) -efp.add_fragment(frags) - -frag1_geom = np.array([ -1.815220, 2.663988, 0.000000, - -1.616905, 1.722730, 0.001942, - -2.465495, 2.770431, -0.695494]) -frag1_geom *= a2b - -frag2_geom = np.array([ -1.815220, 5.663988, 0.000000, - -1.616905 , 4.722730 , 0.001942, - -2.465495 , 5.770431 , -0.695494]) -frag2_geom *= a2b - -efp.set_frag_coordinates(0, "atoms", frag1_geom.tolist()) -efp.set_frag_coordinates(1, "atoms", frag2_geom.tolist()) -efp.prepare() - -efp.set_opts({ - "elec": False, - "elec_damp": "screen", - "xr": False, - "pol": False, - "disp": False, - "qq": True, - "lj":True, -}) - -efp.compute(True) -ene = efp.get_energy() -print(ene) -grad = efp.get_gradient() -print(grad) diff --git a/tests/pytests/symm.py b/tests/pytests/symm.py deleted file mode 100644 index 13217115..00000000 --- a/tests/pytests/symm.py +++ /dev/null @@ -1,30 +0,0 @@ -import sys -import numpy as np - -# Get the absolute path to the directory containing the module -sys.path.insert(0, '/Users/lyuda/LIBEFP/libefp_skp_may2025/lib') - -import pylibefp -from systems import * - -from qcelemental.testing import compare, compare_recursive, compare_values - -asdf = system_3() - -opts = asdf.set_opts({ - 'elec': True, - 'disp': True, - 'disp_damp': 'off', - 'enable_pbc': True, - 'enable_cutoff': True, - 'swf_cutoff': 6.0 * a2b, - 'enable_pairwise': True, - 'ligand': 1, - 'symmetry': True, -}) -asdf.set_periodic_box([20.0 * a2b, 20.0 * a2b, 20.0 * a2b]) -box = asdf._efp_get_periodic_box() - -asdf.compute() -ene = asdf.get_energy() -print(ene) diff --git a/tests/pytests/symm_1.py b/tests/pytests/symm_1.py deleted file mode 100644 index 65d93074..00000000 --- a/tests/pytests/symm_1.py +++ /dev/null @@ -1,54 +0,0 @@ -import sys -import numpy as np -import libefp2py - -# Get the absolute path to the directory containing the module -sys.path.insert(0, '/scratch/gilbreth/paulsk/ls_pylib/libefp') - -import pylibefp - -b2a = 0.529177 -a2b = 1.0 / b2a - -# coordinates in Bohr -frags, frag_coords = libefp2py.read_libefp_input("../symm_1.in") -#print(frag_coords) - -efp = pylibefp.core.efp() - -efp.add_potential(frags) -efp.add_fragment(frags) - -for i in range(len(frags)): - efp.set_frag_coordinates(i, "points", frag_coords[i]) - -efp.prepare() - -efp.set_opts({ - 'elec': True, - 'pol': True, - 'disp': True, - 'xr': True, - 'elec_damp': 'screen', - 'pol_damp': 'tt', - 'disp_damp': 'tt', - 'enable_pbc': True, - 'enable_cutoff': True, - 'swf_cutoff': 4.79 * a2b, - 'xr_cutoff': 4.79 * a2b, - 'print': 0, - 'symmetry': True, - 'symm_frag': 'frag', -}) -# 'enable_pairwise': True, -# 'ligand': 1, -#}) - -efp.set_periodic_box([10.66 * a2b, 12.03 * a2b, 10.872 * a2b], 90.0, 115.83, 90.0) -#box = efp._efp_get_periodic_box() -#print(box) - -efp.compute() -ene = efp.get_energy() -ene2 = efp.energy_summary() -print(ene2) diff --git a/tests/pytests/symm_2pw.py b/tests/pytests/symm_2pw.py deleted file mode 100644 index 3cb41420..00000000 --- a/tests/pytests/symm_2pw.py +++ /dev/null @@ -1,49 +0,0 @@ -import sys -import libefp2py - -sys.path.insert(0, '/scratch/gilbreth/paulsk/ls_pylib/libefp') - -import pylibefp - -b2a = 0.529177 -a2b = 1.0 / b2a - -# coordinates in Bohr -frags, frag_coords = libefp2py.read_libefp_input("../symm_2pw.in") -#print(frag_coords) - -efp = pylibefp.core.efp() - -efp.add_potential(frags) -efp.add_fragment(frags) - -for i in range(len(frags)): - efp.set_frag_coordinates(i, "points", frag_coords[i]) - -efp.prepare() - -efp.set_opts({ - 'elec': True, - 'pol': True, - 'disp': True, - 'xr': True, - 'elec_damp': 'screen', - 'pol_damp': 'tt', - 'disp_damp': 'tt', - 'enable_pbc': True, - 'enable_cutoff': True, - 'swf_cutoff': 11.0 * a2b, - 'print': 0, - 'symmetry': True, - 'symm_frag': 'frag', - 'enable_pairwise': True, - 'ligand': 0, -}) - -efp.set_periodic_box([24.0048* a2b, 27.0356* a2b, 25.7166* a2b,], 90.0, 109.424, 90.0) -#box = efp._efp_get_periodic_box() -#print(box) - -efp.compute() -ene = efp.get_energy() -print(ene) diff --git a/tests/pytests/test_dict.py b/tests/pytests/test_dict.py index 8a8436f4..e74cfd95 100644 --- a/tests/pytests/test_dict.py +++ b/tests/pytests/test_dict.py @@ -27,8 +27,8 @@ def test_dict_1(): print(sys1p.geometry_summary(units_to_bohr=b2a)) print(sys1p.geometry_summary(units_to_bohr=1.0)) - assert compare(2, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0001922903, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-6) + assert compare(2, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag', return_message=True), 'FAILED' + assert compare_values(0.0001922903, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-6, return_message=True), 'FAILED' def test_dict_2a(): @@ -39,8 +39,8 @@ def test_dict_2a(): sys1p.compute() ene = sys1p.get_energy() - assert compare(5, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0007440865, ene['total'], sys._getframe().f_code.co_name, atol=1.e-6) + assert compare(5, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag', return_message=True), 'FAILED' + assert compare_values(0.0007440865, ene['total'], sys._getframe().f_code.co_name, atol=1.e-6, return_message=True), 'FAILED' def test_dict_3a(): @@ -59,8 +59,8 @@ def test_dict_3a(): sys1p.compute() ene = sys1p.get_energy() - assert compare(9, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0061408841, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5) + assert compare(9, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag', return_message=True), 'FAILED' + assert compare_values(0.0061408841, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5, return_message=True), 'FAILED' def test_dict_4a(): @@ -79,8 +79,8 @@ def test_dict_4a(): sys1p.compute() ene = sys1p.get_energy() - assert compare(12, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(-0.0095597483, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5) + assert compare(12, sys1p.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag', return_message=True), 'FAILED' + assert compare_values(-0.0095597483, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5, return_message=True), 'FAILED' def test_dict_5(): @@ -91,3 +91,9 @@ def test_dict_5(): with pytest.raises(pylibefp.PolNotConverged) as e_info: sys.compute() assert sys.get_frag_count() == 0 + +if __name__ == '__main__': + function_list = [test_dict_1, test_dict_2a, test_dict_3a, test_dict_4a, test_dict_5] + for f in function_list: + print(f'\nComputing {f.__name__}') + f() \ No newline at end of file diff --git a/tests/pytests/test_efpefp.py b/tests/pytests/test_efpefp.py index 7b6168a7..b06654ba 100644 --- a/tests/pytests/test_efpefp.py +++ b/tests/pytests/test_efpefp.py @@ -11,7 +11,7 @@ def blank_ene(): fields = [ 'charge_penetration', 'disp', 'dispersion', 'elec', 'electrostatic', 'electrostatic_point_charges', - 'exchange_repulsion', 'pol', 'polarization', 'xr' + 'exchange_repulsion', 'pol', 'polarization', 'xr', 'qq', 'lj' ] ene = {f: 0.0 for f in fields} return ene @@ -25,7 +25,7 @@ def test_elec_1a(): expected_ene = blank_ene() expected_ene['elec'] = expected_ene['electrostatic'] = expected_ene['total'] = 0.0002900482 - assert compare_recursive(expected_ene, ene, atol=1.e-6) + assert compare_recursive(expected_ene, ene, atol=1.e-6, return_message=True), 'FAILED' def test_elec_1b(): @@ -40,7 +40,7 @@ def test_elec_1b(): expected_ene['elec'] = expected_ene['total'] = elst expected_ene['charge_penetration'] = cp expected_ene['electrostatic'] = elst - cp - assert compare_recursive(expected_ene, ene, atol=1.e-6) + assert compare_recursive(expected_ene, ene, atol=1.e-6, return_message=True), 'FAILED' def test_pol_1a(): @@ -57,7 +57,7 @@ def test_pol_1a(): expected_ene['pol'] = expected_ene['polarization'] = pol expected_ene['total'] = elec + pol pprint.pprint(opts) - assert compare_recursive(expected_ene, ene, atol=1.e-6) + assert compare_recursive(expected_ene, ene, atol=1.e-6, return_message=True), 'FAILED' def test_pol_1b(): @@ -72,7 +72,7 @@ def test_pol_1b(): expected_ene['elec'] = expected_ene['electrostatic'] = elec expected_ene['pol'] = expected_ene['polarization'] = pol expected_ene['total'] = elec + pol - assert compare_recursive(expected_ene, ene, atol=1.e-6) + assert compare_recursive(expected_ene, ene, atol=1.e-6, return_message=True), 'FAILED' def test_disp_1a(): @@ -83,7 +83,7 @@ def test_disp_1a(): expected_ene = blank_ene() expected_ene['disp'] = expected_ene['dispersion'] = expected_ene['total'] = -0.0000989033 - assert compare_recursive(expected_ene, ene, atol=1.e-6) + assert compare_recursive(expected_ene, ene, atol=1.e-6, return_message=True), 'FAILED' def test_disp_1b(): @@ -95,7 +95,7 @@ def test_disp_1b(): expected_ene = blank_ene() expected_ene['disp'] = expected_ene['dispersion'] = expected_ene['total'] = -0.0001007275 - assert compare_recursive(expected_ene, ene, atol=1.e-6) + assert compare_recursive(expected_ene, ene, atol=1.e-6, return_message=True), 'FAILED' def test_xr_1(): @@ -106,7 +106,7 @@ def test_xr_1(): expected_ene = blank_ene() expected_ene['xr'] = expected_ene['exchange_repulsion'] = expected_ene['total'] = 0.0000134716 - assert compare_recursive(expected_ene, ene, atol=1.e-6) + assert compare_recursive(expected_ene, ene, atol=1.e-6, return_message=True), 'FAILED' def test_total_1a(): @@ -137,11 +137,11 @@ def test_total_1a(): expected_ene['pol'] = expected_ene['polarization'] = 0.0002777238 - expected_ene['electrostatic'] expected_ene['disp'] = expected_ene['dispersion'] = -0.0000989033 expected_ene['total'] = 0.0001922903 - assert compare(2, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0, asdf.get_frag_charge(1), sys._getframe().f_code.co_name + ': f_chg', atol=1.e-6) - assert compare(1, asdf.get_frag_multiplicity(1), sys._getframe().f_code.co_name + ': f_mult') - assert compare('NH3_L', asdf.get_frag_name(1), sys._getframe().f_code.co_name + ': f_name') - assert compare_recursive(expected_ene, ene, sys._getframe().f_code.co_name + ': ene', atol=1.e-6) + assert compare(2, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag', return_message=True), 'FAILED' + assert compare_values(0.0, asdf.get_frag_charge(1), sys._getframe().f_code.co_name + ': f_chg', atol=1.e-6, return_message=True), 'FAILED' + assert compare(1, asdf.get_frag_multiplicity(1), sys._getframe().f_code.co_name + ': f_mult', return_message=True), 'FAILED' + assert compare('NH3_L', asdf.get_frag_name(1), sys._getframe().f_code.co_name + ': f_name', return_message=True), 'FAILED' + assert compare_recursive(expected_ene, ene, sys._getframe().f_code.co_name + ': ene', atol=1.e-6, return_message=True), 'FAILED' def test_elec_2a(): @@ -149,7 +149,7 @@ def test_elec_2a(): asdf.set_opts({'elec': True, 'elec_damp': 'screen'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(0.0015865516, ene['elec'], atol=1.e-6) + assert compare_values(0.0015865516, ene['elec'], atol=1.e-6, return_message=True), 'FAILED' def test_elec_2b(): @@ -157,7 +157,7 @@ def test_elec_2b(): asdf.set_opts({'elec': True, 'elec_damp': 'overlap'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(0.0017049246, ene['elec'], atol=1.e-6) + assert compare_values(0.0017049246, ene['elec'], atol=1.e-6, return_message=True), 'FAILED' def test_pol_2a(): @@ -166,7 +166,7 @@ def test_pol_2a(): asdf.compute() ene = asdf.get_energy() pprint.pprint(ene) - assert compare_values(0.0013685212, ene['total'], atol=1.e-6) + assert compare_values(0.0013685212, ene['total'], atol=1.e-6, return_message=True), 'FAILED' def test_pol_2b(): @@ -174,7 +174,7 @@ def test_pol_2b(): asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen', 'pol_driver': 'direct'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(0.0013685212, ene['total'], atol=1.e-6) + assert compare_values(0.0013685212, ene['total'], atol=1.e-6, return_message=True), 'FAILED' def test_disp_2a(): @@ -182,7 +182,7 @@ def test_disp_2a(): asdf.set_opts({'disp': True, 'disp_damp': 'tt'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0014688094, ene['disp'], atol=1.e-6) + assert compare_values(-0.0014688094, ene['disp'], atol=1.e-6, return_message=True), 'FAILED' def test_disp_2b(): @@ -190,7 +190,7 @@ def test_disp_2b(): asdf.set_opts({'disp': True, 'disp_damp': 'overlap'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0015801770, ene['disp'], atol=1.e-6) + assert compare_values(-0.0015801770, ene['disp'], atol=1.e-6, return_message=True), 'FAILED' def test_xr_2(): @@ -198,7 +198,7 @@ def test_xr_2(): asdf.set_opts({'xr': True}) asdf.compute() ene = asdf.get_energy() - assert compare_values(0.0008443933, ene['xr'], atol=1.e-6) + assert compare_values(0.0008443933, ene['xr'], atol=1.e-6, return_message=True), 'FAILED' def test_total_2a(): @@ -207,7 +207,7 @@ def test_total_2a(): asdf.compute() ene = asdf.get_energy() assert compare(5, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0007440865, ene['total'], atol=1.e-6) + assert compare_values(0.0007440865, ene['total'], atol=1.e-6, return_message=True), 'FAILED' def test_elec_3a(): @@ -215,7 +215,7 @@ def test_elec_3a(): asdf.set_opts({'elec': True, 'elec_damp': 'screen'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0039531505, ene['elec'], atol=1.e-6) + assert compare_values(-0.0039531505, ene['elec'], atol=1.e-6, return_message=True), 'FAILED' def test_elec_3b(): @@ -223,7 +223,7 @@ def test_elec_3b(): asdf.set_opts({'elec': True, 'elec_damp': 'overlap'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(0.0023592829, ene['elec'], atol=1.e-6) + assert compare_values(0.0023592829, ene['elec'], atol=1.e-6, return_message=True), 'FAILED' def test_pol_3a(): @@ -231,7 +231,7 @@ def test_pol_3a(): asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen', 'pol_damp': 'off'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0066095992, ene['total'], atol=1.e-6) + assert compare_values(-0.0066095992, ene['total'], atol=1.e-6, return_message=True), 'FAILED' def test_pol_3b(): @@ -239,7 +239,7 @@ def test_pol_3b(): asdf.set_opts({'elec': True, 'pol': True, 'elec_damp': 'screen', 'pol_damp': 'off', 'pol_driver': 'direct'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0066095992, ene['total'], atol=1.e-6) + assert compare_values(-0.0066095992, ene['total'], atol=1.e-6, return_message=True), 'FAILED' def test_disp_3a(): @@ -247,7 +247,7 @@ def test_disp_3a(): asdf.set_opts({'disp': True, 'disp_damp': 'tt'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0173897265, ene['disp'], atol=1.e-6) + assert compare_values(-0.0173897265, ene['disp'], atol=1.e-6, return_message=True), 'FAILED' def test_disp_3b(): @@ -255,7 +255,7 @@ def test_disp_3b(): asdf.set_opts({'disp': True, 'disp_damp': 'overlap'}) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0220107872, ene['disp'], atol=1.e-6) + assert compare_values(-0.0220107872, ene['disp'], atol=1.e-6, return_message=True), 'FAILED' def test_xr_3(): @@ -263,7 +263,7 @@ def test_xr_3(): asdf.set_opts({'xr': True}) asdf.compute() ene = asdf.get_energy() - assert compare_values(0.0301402098, ene['xr'], atol=1.e-5) + assert compare_values(0.0301402098, ene['xr'], atol=1.e-5, return_message=True), 'FAILED' def test_total_3a(): @@ -279,8 +279,8 @@ def test_total_3a(): }) asdf.compute() ene = asdf.get_energy() - assert compare(9, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_values(0.0061408841, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5) + assert compare(9, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag', return_message=True), 'FAILED' + assert compare_values(0.0061408841, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5, return_message=True), 'FAILED' def test_total_4a(): @@ -301,11 +301,11 @@ def test_total_4a(): mfrags = [1 for fr in range(12)] cfrags = [0.0 for fr in range(12)] tnm = sys._getframe().f_code.co_name - assert compare(12, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag') - assert compare_recursive({'dummy': cfrags}, {'dummy': asdf.get_frag_charge()}, tnm + ': f_chg', atol=1.e-2) - assert compare_recursive({'dummy': mfrags}, {'dummy': asdf.get_frag_multiplicity()}, tnm + ': f_mult', atol=1.e-2) - assert compare_recursive({'dummy': [fr + '_L' for fr in nfrags]}, {'dummy': asdf.get_frag_name()}, tnm + ': f_names', atol=1.e-2) - assert compare_values(-0.0095597483, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5) + assert compare(12, asdf.get_frag_count(), sys._getframe().f_code.co_name + ': nfrag', return_message=True), 'FAILED' + assert compare_recursive({'dummy': cfrags}, {'dummy': asdf.get_frag_charge()}, tnm + ': f_chg', atol=1.e-2, return_message=True), 'FAILED' + assert compare_recursive({'dummy': mfrags}, {'dummy': asdf.get_frag_multiplicity()}, tnm + ': f_mult', atol=1.e-2, return_message=True), 'FAILED' + assert compare_recursive({'dummy': [fr + '_L' for fr in nfrags]}, {'dummy': asdf.get_frag_name()}, tnm + ': f_names', atol=1.e-2, return_message=True), 'FAILED' + assert compare_values(-0.0095597483, ene['total'], sys._getframe().f_code.co_name, atol=1.e-5, return_message=True), 'FAILED' def test_total_4b(): @@ -321,7 +321,7 @@ def test_total_4b(): }) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0092400662, ene['total'], atol=1.e-5) + assert compare_values(-0.0092400662, ene['total'], atol=1.e-5, return_message=True), 'FAILED' def test_total_4c(): @@ -337,7 +337,7 @@ def test_total_4c(): }) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0091278725, ene['total'], atol=1.e-5) + assert compare_values(-0.0091278725, ene['total'], atol=1.e-5, return_message=True), 'FAILED' def test_total_4d(): @@ -354,8 +354,16 @@ def test_total_4d(): }) asdf.compute() ene = asdf.get_energy() - assert compare_values(-0.0095597483, ene['total'], atol=1.e-5) + assert compare_values(-0.0095597483, ene['total'], atol=1.e-5, return_message=True), 'FAILED' if __name__ == '__main__': - test_total_4a() + function_list = [ test_elec_1a, test_elec_1b, test_elec_2a, test_elec_2b, test_elec_3a, test_elec_3b, + test_pol_1a, test_pol_1b, test_pol_2a, test_pol_2b, test_pol_3a, test_pol_3b, + test_disp_1a, test_disp_1b, test_disp_2a, test_disp_2b, test_disp_3a, test_disp_3b, + test_xr_1, test_xr_2, test_xr_3, + test_total_1a, test_total_2a, test_total_3a, test_total_4a, test_total_4b, test_total_4c, test_total_4d] + for f in function_list: + print(f'\nComputing {f.__name__}') + f() + diff --git a/tests/pytests/test_efpefp_new.py b/tests/pytests/test_efpefp_new.py new file mode 100644 index 00000000..850ae8e0 --- /dev/null +++ b/tests/pytests/test_efpefp_new.py @@ -0,0 +1,58 @@ +import libefp2py +import pylibefp +from qcelemental.testing import compare, compare_values +import pprint + + +b2a = 0.529177 +a2b = 1.0 / b2a + +def frag_setup(test_name): + # coordinates in Bohr + coord_type, frags, frag_coords, efp_options, if_gradient, ref_energy, periodic_box = libefp2py.read_libefp_input(test_name) + #print(frag_coords) + + efp = pylibefp.core.efp() + efp.add_potential(frags) + efp.add_fragment(frags) + for i in range(len(frags)): + efp.set_frag_coordinates(i, coord_type, frag_coords[i]) + efp.prepare() + + efp.set_opts(efp_options) + if periodic_box: + #print('box1', periodic_box) + efp.set_periodic_box(periodic_box) + #print('box2', efp.get_periodic_box()) + + + + #print(frag_coords) + #pprint.pprint(efp_options) + efp.compute(do_gradient = if_gradient) + ene = efp.get_energy() + + if 'enable_pairwise' in efp_options.keys(): + if efp_options['enable_pairwise'] in [True, 'true', 1]: + efp.print_pairwise_energies() + + print(efp.energy_summary()) + if if_gradient: + print(efp.gradient_summary()) + if ref_energy != 0.0: + assert compare_values(ref_energy, ene['total'], atol=1.e-5, return_message=True), 'FAILED' + +##### +if __name__ == '__main__': + files = ['atom_coord.in', 'atom_coord_2.in', 'grad_1.in', 'lj_1.in', 'lj_2.in', + 'pairwise_0.in', 'pairwise_1.in', 'pairwise_2.in', 'pairwise_x.in', 'pbc_1.in', 'pbc_2.in', + 'reduced.in', 'spec_frag_0.in', 'spec_frag_1.in', 'spec_frag_2.in', 'spec_frag_base.in', 'spec_frag_ref.in', + 'symm_1.in', 'symm_2.in', 'symm_2full.in', 'symm_2pw.in'] + + # running for all tests in files list + #for f in files: + # print(f'\nComputing {f}...') + # frag_setup('../'+f) + + # single test execution + frag_setup('../symm_2pw.in') diff --git a/tests/pytests/test_lori.py b/tests/pytests/test_lori.py deleted file mode 100644 index 27f98e97..00000000 --- a/tests/pytests/test_lori.py +++ /dev/null @@ -1,26 +0,0 @@ -import pylibefp - - - -efp = pylibefp.core.efp() - -frags = ["h2o_l", "nh3_l"] -efp.add_potential(frags) -efp.add_fragment(frags) -efp.set_frag_coordinates(0, "xyzabc", - [0.0, 0.0, 0.0, 1.0, 2.0, 3.0]) -efp.set_frag_coordinates(1, "xyzabc", - [9.0, 0.0, 0.0, 5.0, 2.0, 8.0]) -efp.prepare() - -efp.set_opts({ - "elec": True, - "elec_damp": "screen", - "xr": True, - "pol": True, - "disp": False, -}) - -efp.compute() -ene = efp.get_energy() -print(ene) diff --git a/tests/pytests/test_opts.py b/tests/pytests/test_opts.py index 4b2aa9cd..1452c701 100644 --- a/tests/pytests/test_opts.py +++ b/tests/pytests/test_opts.py @@ -28,9 +28,27 @@ def test_opts_libefp(): 'disp_damp': 'overlap', 'enable_pbc': False, 'ai_chtr': False, + 'enable_pairwise': False, + 'ligand': -100, + 'symmetry': False, + 'symm_frag': 'frag', + 'spec_elec': False, + 'spec_pol': False, + 'spec_disp': False, + 'spec_xr': False, + 'spec_chtr': False, + 'ai_qq': False, + 'qq': False, + 'lj': False, + 'special_fragment': -100, + 'spec_qq': False, + 'spec_lj': False, + 'print': 0, + 'xr_cutoff':0.0, } + ans1 = asdf.set_opts({}) - assert compare_recursive(ref1, ans1, sys._getframe().f_code.co_name + ': blank', atol=1.e-6) + assert compare_recursive(ref1, ans1, sys._getframe().f_code.co_name + ': blank', atol=1.e-6, return_message=True), 'FAILED' ref2 = { 'ai_elec': True, @@ -50,6 +68,23 @@ def test_opts_libefp(): 'disp_damp': 'overlap', 'enable_pbc': False, 'ai_chtr': False, + 'enable_pairwise': False, + 'ligand': -100, + 'symmetry': False, + 'symm_frag': 'frag', + 'spec_elec': False, + 'spec_pol': False, + 'spec_disp': False, + 'spec_xr': False, + 'spec_chtr': False, + 'ai_qq': False, + 'qq': False, + 'lj': False, + 'special_fragment': -100, + 'spec_qq': False, + 'spec_lj': False, + 'print': 0, + 'xr_cutoff':0.0, } ans2 = asdf.set_opts({ 'elec_damp': 'OFF', @@ -58,7 +93,7 @@ def test_opts_libefp(): 'ai_elec': True, 'enable_cutoff': False, }) - assert compare_recursive(ref2, ans2, sys._getframe().f_code.co_name + ': setting', atol=1.e-6) + assert compare_recursive(ref2, ans2, sys._getframe().f_code.co_name + ': setting', atol=1.e-6, return_message=True), 'FAILED' ref3 = { 'ai_elec': True, @@ -78,9 +113,26 @@ def test_opts_libefp(): 'disp_damp': 'tt', 'enable_pbc': False, 'ai_chtr': False, + 'enable_pairwise': False, + 'ligand': -100, + 'symmetry': False, + 'symm_frag': 'frag', + 'spec_elec': False, + 'spec_pol': False, + 'spec_disp': False, + 'spec_xr': False, + 'spec_chtr': False, + 'ai_qq': False, + 'qq': False, + 'lj': False, + 'special_fragment': -100, + 'spec_qq': False, + 'spec_lj': False, + 'print': 0, + 'xr_cutoff':0.0, } ans3 = asdf.set_opts({'swf_cutoff': 2, 'elec': False, 'ai_elec': True, 'disp_damp': 'TT'}, append='append') - assert compare_recursive(ref3, ans3, sys._getframe().f_code.co_name + ': append setting', atol=1.e-6) + assert compare_recursive(ref3, ans3, sys._getframe().f_code.co_name + ': append setting', atol=1.e-6, return_message=True), 'FAILED' ref4 = { 'ai_elec': False, @@ -100,6 +152,23 @@ def test_opts_libefp(): 'disp_damp': 'overlap', 'enable_pbc': False, 'ai_chtr': False, + 'enable_pairwise': False, + 'ligand': -100, + 'symmetry': False, + 'symm_frag': 'frag', + 'spec_elec': False, + 'spec_pol': False, + 'spec_disp': False, + 'spec_xr': False, + 'spec_chtr': False, + 'ai_qq': False, + 'qq': False, + 'lj': False, + 'special_fragment': -100, + 'spec_qq': False, + 'spec_lj': False, + 'print': 0, + 'xr_cutoff':0.0, } ans4 = asdf.set_opts({ 'elec_damp': 'OFF', @@ -108,7 +177,7 @@ def test_opts_libefp(): 'enable_cutoff': False }, append='libefp') - assert compare_recursive(ref4, ans4, sys._getframe().f_code.co_name + ': reset setting', atol=1.e-6) + assert compare_recursive(ref4, ans4, sys._getframe().f_code.co_name + ': reset setting', atol=1.e-6, return_message=True), 'FAILED' def test_opts_fail_1(): @@ -147,9 +216,28 @@ def test_opts_psi(): 'disp_damping': 'overlap', 'enable_pbc': False, 'qm_chtr': False, + 'enable_pairwise': False, + 'ligand': -100, + 'symmetry': False, + 'symm_frag': 'frag', + 'spec_elec': False, + 'spec_pol': False, + 'spec_disp': False, + 'spec_xr': False, + 'spec_chtr': False, + 'qm_qq': False, + 'charge_charge': False, + 'lennard-jones': False, + 'special_fragment': -100, + 'spec_qq': False, + 'spec_lj': False, + 'print': 0, + 'xr_cutoff':0.0 } + + ans = asdf.set_opts({}, label='psi') - assert compare_recursive(ref, ans, sys._getframe().f_code.co_name + ': psi blank', atol=1.e-6) + assert compare_recursive(ref, ans, sys._getframe().f_code.co_name + ': psi blank', atol=1.e-6, return_message=True), 'FAILED' ref = { 'qm_elst': True, @@ -169,6 +257,23 @@ def test_opts_psi(): 'disp_damping': 'overlap', 'enable_pbc': False, 'qm_chtr': False, + 'enable_pairwise': False, + 'ligand': -100, + 'symmetry': False, + 'symm_frag': 'frag', + 'spec_elec': False, + 'spec_pol': False, + 'spec_disp': False, + 'spec_xr': False, + 'spec_chtr': False, + 'qm_qq': False, + 'charge_charge': False, + 'lennard-jones': False, + 'special_fragment': -100, + 'spec_qq': False, + 'spec_lj': False, + 'print': 0, + 'xr_cutoff':0.0 } ans = asdf.set_opts( { @@ -178,7 +283,7 @@ def test_opts_psi(): 'qm_elst': True, 'enable_cutoff': False, }, label='psi') - assert compare_recursive(ref, ans, sys._getframe().f_code.co_name + ': psi setting', atol=1.e-6) + assert compare_recursive(ref, ans, sys._getframe().f_code.co_name + ': psi setting', atol=1.e-6, return_message=True), 'FAILED' ref = { 'qm_elst': True, @@ -198,6 +303,23 @@ def test_opts_psi(): 'disp_damping': 'tt', 'enable_pbc': False, 'qm_chtr': False, + 'enable_pairwise': False, + 'ligand': -100, + 'symmetry': False, + 'symm_frag': 'frag', + 'spec_elec': False, + 'spec_pol': False, + 'spec_disp': False, + 'spec_xr': False, + 'spec_chtr': False, + 'qm_qq': False, + 'charge_charge': False, + 'lennard-jones': False, + 'special_fragment': -100, + 'spec_qq': False, + 'spec_lj': False, + 'print': 0, + 'xr_cutoff':0.0 } ans = asdf.set_opts({ 'swf_cutoff': 2, @@ -207,7 +329,7 @@ def test_opts_psi(): }, append='append', label='psi') - assert compare_recursive(ref, ans, sys._getframe().f_code.co_name + ': psi append setting', atol=1.e-6) + assert compare_recursive(ref, ans, sys._getframe().f_code.co_name + ': psi append setting', atol=1.e-6, return_message=True), 'FAILED' ref = { 'qm_elst': False, @@ -227,6 +349,23 @@ def test_opts_psi(): 'disp_damping': 'overlap', 'enable_pbc': False, 'qm_chtr': False, + 'enable_pairwise': False, + 'ligand': -100, + 'symmetry': False, + 'symm_frag': 'frag', + 'spec_elec': False, + 'spec_pol': False, + 'spec_disp': False, + 'spec_xr': False, + 'spec_chtr': False, + 'qm_qq': False, + 'charge_charge': False, + 'lennard-jones': False, + 'special_fragment': -100, + 'spec_qq': False, + 'spec_lj': False, + 'print': 0, + 'xr_cutoff':0.0 } ans = asdf.set_opts({ 'elst_damping': 'OFF', @@ -236,7 +375,7 @@ def test_opts_psi(): }, append='libefp', label='psi') - assert compare_recursive(ref, ans, sys._getframe().f_code.co_name + ': psi reset setting', atol=1.e-6) + assert compare_recursive(ref, ans, sys._getframe().f_code.co_name + ': psi reset setting', atol=1.e-6, return_message=True), 'FAILED' def test_opts_psi_dflt(): @@ -260,9 +399,26 @@ def test_opts_psi_dflt(): 'disp_damping': 'overlap', 'enable_pbc': False, 'qm_chtr': False, + 'enable_pairwise': False, + 'ligand': -100, + 'symmetry': False, + 'symm_frag': 'frag', + 'spec_elec': False, + 'spec_pol': False, + 'spec_disp': False, + 'spec_xr': False, + 'spec_chtr': False, + 'qm_qq': False, + 'charge_charge': False, + 'lennard-jones': False, + 'special_fragment': -100, + 'spec_qq': False, + 'spec_lj': False, + 'print': 0, + 'xr_cutoff':0.0 } ans = asdf.set_opts({}, label='psi', append='psi') - assert compare_recursive(ref, ans, sys._getframe().f_code.co_name + ': psi default blank', atol=1.e-6) + assert compare_recursive(ref, ans, sys._getframe().f_code.co_name + ': psi default blank', atol=1.e-6, return_message=True), 'FAILED' ref = { 'qm_elst': False, @@ -282,6 +438,23 @@ def test_opts_psi_dflt(): 'disp_damping': 'overlap', 'enable_pbc': False, 'qm_chtr': False, + 'enable_pairwise': False, + 'ligand': -100, + 'symmetry': False, + 'symm_frag': 'frag', + 'spec_elec': False, + 'spec_pol': False, + 'spec_disp': False, + 'spec_xr': False, + 'spec_chtr': False, + 'qm_qq': False, + 'charge_charge': False, + 'lennard-jones': False, + 'special_fragment': -100, + 'spec_qq': False, + 'spec_lj': False, + 'print': 0, + 'xr_cutoff':0.0 } ans = asdf.set_opts( { @@ -293,7 +466,7 @@ def test_opts_psi_dflt(): }, label='psi', append='append') - assert compare_recursive(ref, ans, sys._getframe().f_code.co_name + ': psi default append setting', atol=1.e-6) + assert compare_recursive(ref, ans, sys._getframe().f_code.co_name + ': psi default append setting', atol=1.e-6, return_message=True), 'FAILED' ref = { 'qm_elst': True, @@ -313,6 +486,23 @@ def test_opts_psi_dflt(): 'disp_damping': 'overlap', 'enable_pbc': False, 'qm_chtr': False, + 'enable_pairwise': False, + 'ligand': -100, + 'symmetry': False, + 'symm_frag': 'frag', + 'spec_elec': False, + 'spec_pol': False, + 'spec_disp': False, + 'spec_xr': False, + 'spec_chtr': False, + 'qm_qq': False, + 'charge_charge': False, + 'lennard-jones': False, + 'special_fragment': -100, + 'spec_qq': False, + 'spec_lj': False, + 'print': 0, + 'xr_cutoff':2.0, } ans = asdf.set_opts({ 'elst_damping': 'OVERlap', @@ -322,4 +512,11 @@ def test_opts_psi_dflt(): }, append='psi', label='psi') - assert compare_recursive(ref, ans, sys._getframe().f_code.co_name + ': psi default reset setting', atol=1.e-6) + assert compare_recursive(ref, ans, sys._getframe().f_code.co_name + ': psi default reset setting', atol=1.e-6, return_message=True), 'FAILED' + +if __name__ == '__main__': + test_opts_libefp() + test_opts_fail_1() + test_opts_fail_2() + test_opts_psi() + test_opts_psi_dflt() diff --git a/tests/pytests/test_psi.py b/tests/pytests/test_psi.py index 490aec3d..48d50314 100644 --- a/tests/pytests/test_psi.py +++ b/tests/pytests/test_psi.py @@ -34,8 +34,8 @@ def test_efpefptorque(): ] } # yapf: disable - assert compare_values(-0.0066095987170644, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-5) - assert compare_recursive(ref, {'torque': torq}, sys._getframe().f_code.co_name + ': torq', atol=1.e-6) + assert compare_values(-0.0066095987170644, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-5, return_message=True), 'FAILED' + assert compare_recursive(ref, {'torque': torq}, sys._getframe().f_code.co_name + ': torq', atol=1.e-6, return_message=True), 'FAILED' def test_efpefp_bz2(): @@ -45,7 +45,7 @@ def test_efpefp_bz2(): asdf = pylibefp.core.efp() - frags = ['c6h6', 'c6h6'] + frags = ['c6h6_l', 'c6h6_l'] asdf.add_potential(frags) asdf.add_fragment(frags) asdf.set_frag_coordinates( @@ -59,8 +59,12 @@ def test_efpefp_bz2(): ene = asdf.get_energy(label='psi') # values copied from q-chem output file - assert compare_values(-0.006945881265, ene['elst'], sys._getframe().f_code.co_name + ': ene elst', atol=1.e-6) - assert compare_values(0.046915489574, ene['exch'], sys._getframe().f_code.co_name + ': ene exch', atol=1.e-6) - assert compare_values(-0.000675030191, ene['ind'], sys._getframe().f_code.co_name + ': ene ind', atol=1.e-6) - assert compare_values(-0.021092526180, ene['disp'], sys._getframe().f_code.co_name + ': ene disp', atol=1.e-6) - assert compare_values(0.018202051938, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-6) + assert compare_values(-0.006945881265, ene['elst'], sys._getframe().f_code.co_name + ': ene elst', atol=1.e-6, return_message=True), 'FAILED' + assert compare_values(0.046915489574, ene['exch'], sys._getframe().f_code.co_name + ': ene exch', atol=1.e-6, return_message=True), 'FAILED' + assert compare_values(-0.000675030191, ene['ind'], sys._getframe().f_code.co_name + ': ene ind', atol=1.e-6, return_message=True), 'FAILED' + assert compare_values(-0.021092526180, ene['disp'], sys._getframe().f_code.co_name + ': ene disp', atol=1.e-6, return_message=True), 'FAILED' + assert compare_values(0.018202051938, ene['total'], sys._getframe().f_code.co_name + ': ene', atol=1.e-6, return_message=True), 'FAILED' + +if __name__ == '__main__': + test_efpefptorque() + test_efpefp_bz2() \ No newline at end of file From f3998824b493dcde000758048a1b44f91c8f10f1 Mon Sep 17 00:00:00 2001 From: "Slipchenko, Lyudmila V" Date: Sat, 20 Sep 2025 23:04:42 -0400 Subject: [PATCH 07/12] tests cleaned --- tests/symm_2pw.out.2 | 65658 ----------------------------------------- 1 file changed, 65658 deletions(-) delete mode 100644 tests/symm_2pw.out.2 diff --git a/tests/symm_2pw.out.2 b/tests/symm_2pw.out.2 deleted file mode 100644 index d50eaf85..00000000 --- a/tests/symm_2pw.out.2 +++ /dev/null @@ -1,65658 +0,0 @@ -EFPMD ver. 1.7.2 -Copyright (c) 2012-2017 Ilya Kaliman - -LIBEFP ver. 1.7.2 -Copyright (c) 2012-2017 Ilya Kaliman - 2018-2022 Lyudmila Slipchenko - -Journal References: - - Kaliman and Slipchenko, JCC 2013. - DOI: http://dx.doi.org/10.1002/jcc.23375 - - Kaliman and Slipchenko, JCC 2015. - DOI: http://dx.doi.org/10.1002/jcc.23772 - -Project web site: https://github.com/libefp2/libefp/ - -RUNNING 1 MPI PROCESSES WITH 8 OPENMP THREADS EACH -WALL CLOCK TIME IS Thu Jun 16 15:17:14 2022 - -SIMULATION SETTINGS - -run_type sp -coord points -terms elec pol disp xr -elec_damp screen -disp_damp tt -pol_damp tt -pol_driver iterative -enable_ff false -enable_multistep false -ff_geometry ff.xyz -ff_parameters /Users/lyuda/LIBEFP//share/libefp/fraglib/params/amber99.prm -single_params_file false -efp_params_file params.efp -enable_cutoff true -swf_cutoff 11 -xr_cutoff 0 -max_steps 100 -multistep_steps 1 -fraglib_path /Users/lyuda/LIBEFP//share/libefp/fraglib -userlib_path ./ -enable_pbc true -periodic_box 24.0048 27.0356 25.7166 90.0 109.424 90.0 -opt_tol 0.0001 -gtest_tol 1e-06 -ref_energy -2.46943 -hess_central false -num_step_dist 0.001 -num_step_angle 0.01 -ensemble nve -time_step 1 -print_step 1 -velocitize false -temperature 300 -pressure 1 -thermostat_tau 1000 -barostat_tau 10000 -ligand 0 -enable_pairwise true -print_pbc false -symmetry true -symm_frag frag -update_params 0 -update_params_cutoff 0 -print 2 - - -xr_cutoff is set to 11.000000 - -SINGLE POINT ENERGY JOB - - - GEOMETRY (ANGSTROMS) - -A01S -6.509027 -0.703872 4.315925 -A02C -5.527225 0.739221 4.530684 -A03C -6.037509 2.064371 4.568640 -A04S -7.763887 2.454224 4.374495 -A05C -8.204440 1.209911 3.186103 -A06C -7.690404 -0.057721 3.155545 -A07C -8.088167 -0.983352 2.158266 -A08N -8.415068 -1.769277 1.354524 -A09C -9.181118 1.610511 2.243393 -A10N -10.030494 1.933586 1.507075 -A11N -5.177090 3.041573 4.778064 -A12S -3.653588 2.410224 5.000220 -A13C -4.154616 0.757673 4.736227 -A14C -3.264318 -0.329564 4.729194 -A15N -2.519451 -1.230593 4.697544 -A01S -1.630227 -4.083322 1.747300 -A02C -2.612029 -2.640229 1.532541 -A03C -2.101745 -1.315079 1.494585 -A04S -0.375367 -0.925226 1.688730 -A05C 0.065186 -2.169539 2.877122 -A06C -0.448850 -3.437171 2.907680 -A07C -0.051087 -4.362802 3.904959 -A08N 0.275814 -5.148727 4.708701 -A09C 1.041864 -1.768939 3.819832 -A10N 1.891240 -1.445864 4.556150 -A11N -2.962164 -0.337877 1.285161 -A12S -4.485666 -0.969226 1.063005 -A13C -3.984638 -2.621777 1.326998 -A14C -4.874936 -3.709014 1.334031 -A15N -5.619803 -4.610043 1.365681 -A01S 6.509027 0.703872 -4.315925 -A02C 5.527225 -0.739221 -4.530684 -A03C 6.037509 -2.064371 -4.568640 -A04S 7.763887 -2.454224 -4.374495 -A05C 8.204440 -1.209911 -3.186103 -A06C 7.690404 0.057721 -3.155545 -A07C 8.088167 0.983352 -2.158266 -A08N 8.415068 1.769277 -1.354524 -A09C 9.181118 -1.610511 -2.243393 -A10N 10.030494 -1.933586 -1.507075 -A11N 5.177090 -3.041573 -4.778064 -A12S 3.653588 -2.410224 -5.000220 -A13C 4.154616 -0.757673 -4.736227 -A14C 3.264318 0.329564 -4.729194 -A15N 2.519451 1.230593 -4.697544 -A01S 1.630227 4.083322 -1.747300 -A02C 2.612029 2.640229 -1.532541 -A03C 2.101745 1.315079 -1.494585 -A04S 0.375367 0.925226 -1.688730 -A05C -0.065186 2.169539 -2.877122 -A06C 0.448850 3.437171 -2.907680 -A07C 0.051087 4.362802 -3.904959 -A08N -0.275814 5.148727 -4.708701 -A09C -1.041864 1.768939 -3.819832 -A10N -1.891240 1.445864 -4.556150 -A11N 2.962164 0.337877 -1.285161 -A12S 4.485666 0.969226 -1.063005 -A13C 3.984638 2.621777 -1.326998 -A14C 4.874936 3.709014 -1.334031 -A15N 5.619803 4.610043 -1.365681 -A01S -10.785134 -0.703872 16.442375 -A02C -9.803332 0.739221 16.657134 -A03C -10.313616 2.064371 16.695090 -A04S -12.039994 2.454224 16.500945 -A05C -12.480547 1.209911 15.312553 -A06C -11.966511 -0.057721 15.281995 -A07C -12.364274 -0.983352 14.284716 -A08N -12.691175 -1.769277 13.480974 -A09C -13.457225 1.610511 14.369843 -A10N -14.306601 1.933586 13.633525 -A11N -9.453197 3.041573 16.904514 -A12S -7.929695 2.410224 17.126670 -A13C -8.430723 0.757673 16.862677 -A14C -7.540425 -0.329564 16.855644 -A15N -6.795558 -1.230593 16.823994 -A01S -5.906334 -4.083322 13.873750 -A02C -6.888136 -2.640229 13.658991 -A03C -6.377852 -1.315079 13.621035 -A04S -4.651474 -0.925226 13.815180 -A05C -4.210921 -2.169539 15.003572 -A06C -4.724957 -3.437171 15.034130 -A07C -4.327194 -4.362802 16.031409 -A08N -4.000293 -5.148727 16.835151 -A09C -3.234243 -1.768939 15.946282 -A10N -2.384867 -1.445864 16.682600 -A11N -7.238271 -0.337877 13.411611 -A12S -8.761773 -0.969226 13.189455 -A13C -8.260745 -2.621777 13.453448 -A14C -9.151043 -3.709014 13.460481 -A15N -9.895910 -4.610043 13.492131 -A01S 2.232919 0.703872 7.810525 -A02C 1.251118 -0.739221 7.595766 -A03C 1.761402 -2.064371 7.557810 -A04S 3.487780 -2.454223 7.751955 -A05C 3.928333 -1.209910 8.940347 -A06C 3.414296 0.057722 8.970905 -A07C 3.812058 0.983353 9.968184 -A08N 4.138959 1.769278 10.771926 -A09C 4.905010 -1.610509 9.883058 -A10N 5.754386 -1.933584 10.619376 -A11N 0.900984 -3.041573 7.348386 -A12S -0.622518 -2.410225 7.126230 -A13C -0.121491 -0.757674 7.390223 -A14C -1.011790 0.329563 7.397255 -A15N -1.756657 1.230591 7.428905 -A01S -2.645880 4.083322 10.379150 -A02C -1.664079 2.640229 10.593909 -A03C -2.174363 1.315079 10.631865 -A04S -3.900741 0.925227 10.437720 -A05C -4.341294 2.169540 9.249328 -A06C -3.827257 3.437172 9.218770 -A07C -4.225019 4.362803 8.221491 -A08N -4.551920 5.148728 7.417749 -A09C -5.317971 1.768941 8.306617 -A10N -6.167347 1.445866 7.570299 -A11N -1.313945 0.337877 10.841289 -A12S 0.209557 0.969225 11.063445 -A13C -0.291470 2.621776 10.799452 -A14C 0.598829 3.709013 10.792420 -A15N 1.343696 4.610041 10.760770 -A01S -6.509027 6.055028 4.315925 -A02C -5.527225 7.498121 4.530684 -A03C -6.037509 8.823271 4.568640 -A04S -7.763887 9.213124 4.374495 -A05C -8.204440 7.968811 3.186103 -A06C -7.690404 6.701179 3.155545 -A07C -8.088167 5.775548 2.158266 -A08N -8.415068 4.989623 1.354524 -A09C -9.181118 8.369411 2.243393 -A10N -10.030494 8.692486 1.507075 -A11N -5.177090 9.800473 4.778064 -A12S -3.653588 9.169124 5.000220 -A13C -4.154616 7.516573 4.736227 -A14C -3.264318 6.429336 4.729194 -A15N -2.519451 5.528307 4.697544 -A01S -1.630227 2.675578 1.747300 -A02C -2.612029 4.118671 1.532541 -A03C -2.101745 5.443821 1.494585 -A04S -0.375367 5.833674 1.688730 -A05C 0.065186 4.589361 2.877122 -A06C -0.448850 3.321729 2.907680 -A07C -0.051087 2.396098 3.904959 -A08N 0.275814 1.610173 4.708701 -A09C 1.041864 4.989961 3.819832 -A10N 1.891240 5.313036 4.556150 -A11N -2.962164 6.421023 1.285161 -A12S -4.485666 5.789674 1.063005 -A13C -3.984638 4.137123 1.326998 -A14C -4.874936 3.049886 1.334031 -A15N -5.619803 2.148857 1.365681 -A01S 6.509027 7.462772 -4.315925 -A02C 5.527225 6.019679 -4.530684 -A03C 6.037509 4.694529 -4.568640 -A04S 7.763887 4.304676 -4.374495 -A05C 8.204440 5.548989 -3.186103 -A06C 7.690404 6.816621 -3.155545 -A07C 8.088167 7.742252 -2.158266 -A08N 8.415068 8.528177 -1.354524 -A09C 9.181118 5.148389 -2.243393 -A10N 10.030494 4.825314 -1.507075 -A11N 5.177090 3.717327 -4.778064 -A12S 3.653588 4.348676 -5.000220 -A13C 4.154616 6.001227 -4.736227 -A14C 3.264318 7.088464 -4.729194 -A15N 2.519451 7.989493 -4.697544 -A01S 1.630227 10.842222 -1.747300 -A02C 2.612029 9.399129 -1.532541 -A03C 2.101745 8.073979 -1.494585 -A04S 0.375367 7.684126 -1.688730 -A05C -0.065186 8.928439 -2.877122 -A06C 0.448850 10.196071 -2.907680 -A07C 0.051087 11.121702 -3.904959 -A08N -0.275814 11.907627 -4.708701 -A09C -1.041864 8.527839 -3.819832 -A10N -1.891240 8.204764 -4.556150 -A11N 2.962164 7.096777 -1.285161 -A12S 4.485666 7.728126 -1.063005 -A13C 3.984638 9.380677 -1.326998 -A14C 4.874936 10.467914 -1.334031 -A15N 5.619803 11.368943 -1.365681 -A01S -10.785134 6.055028 16.442375 -A02C -9.803332 7.498121 16.657134 -A03C -10.313616 8.823271 16.695090 -A04S -12.039994 9.213124 16.500945 -A05C -12.480547 7.968811 15.312553 -A06C -11.966511 6.701179 15.281995 -A07C -12.364274 5.775548 14.284716 -A08N -12.691175 4.989623 13.480974 -A09C -13.457225 8.369411 14.369843 -A10N -14.306601 8.692486 13.633525 -A11N -9.453197 9.800473 16.904514 -A12S -7.929695 9.169124 17.126670 -A13C -8.430723 7.516573 16.862677 -A14C -7.540425 6.429336 16.855644 -A15N -6.795558 5.528307 16.823994 -A01S -5.906334 2.675578 13.873750 -A02C -6.888136 4.118671 13.658991 -A03C -6.377852 5.443821 13.621035 -A04S -4.651474 5.833674 13.815180 -A05C -4.210921 4.589361 15.003572 -A06C -4.724957 3.321729 15.034130 -A07C -4.327194 2.396098 16.031409 -A08N -4.000293 1.610173 16.835151 -A09C -3.234243 4.989961 15.946282 -A10N -2.384867 5.313036 16.682600 -A11N -7.238271 6.421023 13.411611 -A12S -8.761773 5.789674 13.189455 -A13C -8.260745 4.137123 13.453448 -A14C -9.151043 3.049886 13.460481 -A15N -9.895910 2.148857 13.492131 -A01S 2.232919 7.462772 7.810525 -A02C 1.251118 6.019679 7.595766 -A03C 1.761402 4.694529 7.557810 -A04S 3.487780 4.304677 7.751955 -A05C 3.928333 5.548990 8.940347 -A06C 3.414296 6.816622 8.970905 -A07C 3.812058 7.742253 9.968184 -A08N 4.138959 8.528178 10.771926 -A09C 4.905010 5.148391 9.883058 -A10N 5.754386 4.825316 10.619376 -A11N 0.900984 3.717327 7.348386 -A12S -0.622518 4.348675 7.126230 -A13C -0.121491 6.001226 7.390223 -A14C -1.011790 7.088463 7.397255 -A15N -1.756657 7.989491 7.428905 -A01S -2.645880 10.842222 10.379150 -A02C -1.664079 9.399129 10.593909 -A03C -2.174363 8.073979 10.631865 -A04S -3.900741 7.684127 10.437720 -A05C -4.341294 8.928440 9.249328 -A06C -3.827257 10.196072 9.218770 -A07C -4.225019 11.121703 8.221491 -A08N -4.551920 11.907628 7.417749 -A09C -5.317971 8.527841 8.306617 -A10N -6.167347 8.204766 7.570299 -A11N -1.313945 7.096777 10.841289 -A12S 0.209557 7.728125 11.063445 -A13C -0.291470 9.380676 10.799452 -A14C 0.598829 10.467913 10.792420 -A15N 1.343696 11.368941 10.760770 -A01S -6.509027 12.813928 4.315925 -A02C -5.527225 14.257021 4.530684 -A03C -6.037509 15.582171 4.568640 -A04S -7.763887 15.972024 4.374495 -A05C -8.204440 14.727711 3.186103 -A06C -7.690404 13.460079 3.155545 -A07C -8.088167 12.534448 2.158266 -A08N -8.415068 11.748523 1.354524 -A09C -9.181118 15.128311 2.243393 -A10N -10.030494 15.451386 1.507075 -A11N -5.177090 16.559373 4.778064 -A12S -3.653588 15.928024 5.000220 -A13C -4.154616 14.275473 4.736227 -A14C -3.264318 13.188236 4.729194 -A15N -2.519451 12.287207 4.697544 -A01S -1.630227 9.434478 1.747300 -A02C -2.612029 10.877571 1.532541 -A03C -2.101745 12.202721 1.494585 -A04S -0.375367 12.592574 1.688730 -A05C 0.065186 11.348261 2.877122 -A06C -0.448850 10.080629 2.907680 -A07C -0.051087 9.154998 3.904959 -A08N 0.275814 8.369073 4.708701 -A09C 1.041864 11.748861 3.819832 -A10N 1.891240 12.071936 4.556150 -A11N -2.962164 13.179923 1.285161 -A12S -4.485666 12.548574 1.063005 -A13C -3.984638 10.896023 1.326998 -A14C -4.874936 9.808786 1.334031 -A15N -5.619803 8.907757 1.365681 -A01S 6.509027 14.221672 -4.315925 -A02C 5.527225 12.778579 -4.530684 -A03C 6.037509 11.453429 -4.568640 -A04S 7.763887 11.063576 -4.374495 -A05C 8.204440 12.307889 -3.186103 -A06C 7.690404 13.575521 -3.155545 -A07C 8.088167 14.501152 -2.158266 -A08N 8.415068 15.287077 -1.354524 -A09C 9.181118 11.907289 -2.243393 -A10N 10.030494 11.584214 -1.507075 -A11N 5.177090 10.476227 -4.778064 -A12S 3.653588 11.107576 -5.000220 -A13C 4.154616 12.760127 -4.736227 -A14C 3.264318 13.847364 -4.729194 -A15N 2.519451 14.748393 -4.697544 -A01S 1.630227 17.601122 -1.747300 -A02C 2.612029 16.158029 -1.532541 -A03C 2.101745 14.832879 -1.494585 -A04S 0.375367 14.443026 -1.688730 -A05C -0.065186 15.687339 -2.877122 -A06C 0.448850 16.954971 -2.907680 -A07C 0.051087 17.880602 -3.904959 -A08N -0.275814 18.666527 -4.708701 -A09C -1.041864 15.286739 -3.819832 -A10N -1.891240 14.963664 -4.556150 -A11N 2.962164 13.855677 -1.285161 -A12S 4.485666 14.487026 -1.063005 -A13C 3.984638 16.139577 -1.326998 -A14C 4.874936 17.226814 -1.334031 -A15N 5.619803 18.127843 -1.365681 -A01S -10.785134 12.813928 16.442375 -A02C -9.803332 14.257021 16.657134 -A03C -10.313616 15.582171 16.695090 -A04S -12.039994 15.972024 16.500945 -A05C -12.480547 14.727711 15.312553 -A06C -11.966511 13.460079 15.281995 -A07C -12.364274 12.534448 14.284716 -A08N -12.691175 11.748523 13.480974 -A09C -13.457225 15.128311 14.369843 -A10N -14.306601 15.451386 13.633525 -A11N -9.453197 16.559373 16.904514 -A12S -7.929695 15.928024 17.126670 -A13C -8.430723 14.275473 16.862677 -A14C -7.540425 13.188236 16.855644 -A15N -6.795558 12.287207 16.823994 -A01S -5.906334 9.434478 13.873750 -A02C -6.888136 10.877571 13.658991 -A03C -6.377852 12.202721 13.621035 -A04S -4.651474 12.592574 13.815180 -A05C -4.210921 11.348261 15.003572 -A06C -4.724957 10.080629 15.034130 -A07C -4.327194 9.154998 16.031409 -A08N -4.000293 8.369073 16.835151 -A09C -3.234243 11.748861 15.946282 -A10N -2.384867 12.071936 16.682600 -A11N -7.238271 13.179923 13.411611 -A12S -8.761773 12.548574 13.189455 -A13C -8.260745 10.896023 13.453448 -A14C -9.151043 9.808786 13.460481 -A15N -9.895910 8.907757 13.492131 -A01S 2.232919 14.221672 7.810525 -A02C 1.251118 12.778579 7.595766 -A03C 1.761402 11.453429 7.557810 -A04S 3.487780 11.063577 7.751955 -A05C 3.928333 12.307890 8.940347 -A06C 3.414296 13.575522 8.970905 -A07C 3.812058 14.501153 9.968184 -A08N 4.138959 15.287078 10.771926 -A09C 4.905010 11.907291 9.883058 -A10N 5.754386 11.584216 10.619376 -A11N 0.900984 10.476227 7.348386 -A12S -0.622518 11.107575 7.126230 -A13C -0.121491 12.760126 7.390223 -A14C -1.011790 13.847363 7.397255 -A15N -1.756657 14.748391 7.428905 -A01S -2.645880 17.601122 10.379150 -A02C -1.664079 16.158029 10.593909 -A03C -2.174363 14.832879 10.631865 -A04S -3.900741 14.443027 10.437720 -A05C -4.341294 15.687340 9.249328 -A06C -3.827257 16.954972 9.218770 -A07C -4.225019 17.880603 8.221491 -A08N -4.551920 18.666528 7.417749 -A09C -5.317971 15.286741 8.306617 -A10N -6.167347 14.963666 7.570299 -A11N -1.313945 13.855677 10.841289 -A12S 0.209557 14.487025 11.063445 -A13C -0.291470 16.139576 10.799452 -A14C 0.598829 17.226813 10.792420 -A15N 1.343696 18.127841 10.760770 -A01S -6.509027 19.572828 4.315925 -A02C -5.527225 21.015921 4.530684 -A03C -6.037509 22.341071 4.568640 -A04S -7.763887 22.730924 4.374495 -A05C -8.204440 21.486611 3.186103 -A06C -7.690404 20.218979 3.155545 -A07C -8.088167 19.293348 2.158266 -A08N -8.415068 18.507423 1.354524 -A09C -9.181118 21.887211 2.243393 -A10N -10.030494 22.210286 1.507075 -A11N -5.177090 23.318273 4.778064 -A12S -3.653588 22.686924 5.000220 -A13C -4.154616 21.034373 4.736227 -A14C -3.264318 19.947136 4.729194 -A15N -2.519451 19.046107 4.697544 -A01S -1.630227 16.193378 1.747300 -A02C -2.612029 17.636471 1.532541 -A03C -2.101745 18.961621 1.494585 -A04S -0.375367 19.351474 1.688730 -A05C 0.065186 18.107161 2.877122 -A06C -0.448850 16.839529 2.907680 -A07C -0.051087 15.913898 3.904959 -A08N 0.275814 15.127973 4.708701 -A09C 1.041864 18.507761 3.819832 -A10N 1.891240 18.830836 4.556150 -A11N -2.962164 19.938823 1.285161 -A12S -4.485666 19.307474 1.063005 -A13C -3.984638 17.654923 1.326998 -A14C -4.874936 16.567686 1.334031 -A15N -5.619803 15.666657 1.365681 -A01S 6.509027 20.980572 -4.315925 -A02C 5.527225 19.537479 -4.530684 -A03C 6.037509 18.212329 -4.568640 -A04S 7.763887 17.822476 -4.374495 -A05C 8.204440 19.066789 -3.186103 -A06C 7.690404 20.334421 -3.155545 -A07C 8.088167 21.260052 -2.158266 -A08N 8.415068 22.045977 -1.354524 -A09C 9.181118 18.666189 -2.243393 -A10N 10.030494 18.343114 -1.507075 -A11N 5.177090 17.235127 -4.778064 -A12S 3.653588 17.866476 -5.000220 -A13C 4.154616 19.519027 -4.736227 -A14C 3.264318 20.606264 -4.729194 -A15N 2.519451 21.507293 -4.697544 -A01S 1.630227 24.360022 -1.747300 -A02C 2.612029 22.916929 -1.532541 -A03C 2.101745 21.591779 -1.494585 -A04S 0.375367 21.201926 -1.688730 -A05C -0.065186 22.446239 -2.877122 -A06C 0.448850 23.713871 -2.907680 -A07C 0.051087 24.639502 -3.904959 -A08N -0.275814 25.425427 -4.708701 -A09C -1.041864 22.045639 -3.819832 -A10N -1.891240 21.722564 -4.556150 -A11N 2.962164 20.614577 -1.285161 -A12S 4.485666 21.245926 -1.063005 -A13C 3.984638 22.898477 -1.326998 -A14C 4.874936 23.985714 -1.334031 -A15N 5.619803 24.886743 -1.365681 -A01S -10.785134 19.572828 16.442375 -A02C -9.803332 21.015921 16.657134 -A03C -10.313616 22.341071 16.695090 -A04S -12.039994 22.730924 16.500945 -A05C -12.480547 21.486611 15.312553 -A06C -11.966511 20.218979 15.281995 -A07C -12.364274 19.293348 14.284716 -A08N -12.691175 18.507423 13.480974 -A09C -13.457225 21.887211 14.369843 -A10N -14.306601 22.210286 13.633525 -A11N -9.453197 23.318273 16.904514 -A12S -7.929695 22.686924 17.126670 -A13C -8.430723 21.034373 16.862677 -A14C -7.540425 19.947136 16.855644 -A15N -6.795558 19.046107 16.823994 -A01S -5.906334 16.193378 13.873750 -A02C -6.888136 17.636471 13.658991 -A03C -6.377852 18.961621 13.621035 -A04S -4.651474 19.351474 13.815180 -A05C -4.210921 18.107161 15.003572 -A06C -4.724957 16.839529 15.034130 -A07C -4.327194 15.913898 16.031409 -A08N -4.000293 15.127973 16.835151 -A09C -3.234243 18.507761 15.946282 -A10N -2.384867 18.830836 16.682600 -A11N -7.238271 19.938823 13.411611 -A12S -8.761773 19.307474 13.189455 -A13C -8.260745 17.654923 13.453448 -A14C -9.151043 16.567686 13.460481 -A15N -9.895910 15.666657 13.492131 -A01S 2.232919 20.980572 7.810525 -A02C 1.251118 19.537479 7.595766 -A03C 1.761402 18.212329 7.557810 -A04S 3.487780 17.822477 7.751955 -A05C 3.928333 19.066790 8.940347 -A06C 3.414296 20.334422 8.970905 -A07C 3.812058 21.260053 9.968184 -A08N 4.138959 22.045978 10.771926 -A09C 4.905010 18.666191 9.883058 -A10N 5.754386 18.343116 10.619376 -A11N 0.900984 17.235127 7.348386 -A12S -0.622518 17.866475 7.126230 -A13C -0.121491 19.519026 7.390223 -A14C -1.011790 20.606263 7.397255 -A15N -1.756657 21.507291 7.428905 -A01S -2.645880 24.360022 10.379150 -A02C -1.664079 22.916929 10.593909 -A03C -2.174363 21.591779 10.631865 -A04S -3.900741 21.201927 10.437720 -A05C -4.341294 22.446240 9.249328 -A06C -3.827257 23.713872 9.218770 -A07C -4.225019 24.639503 8.221491 -A08N -4.551920 25.425428 7.417749 -A09C -5.317971 22.045641 8.306617 -A10N -6.167347 21.722566 7.570299 -A11N -1.313945 20.614577 10.841289 -A12S 0.209557 21.245925 11.063445 -A13C -0.291470 22.898476 10.799452 -A14C 0.598829 23.985713 10.792420 -A15N 1.343696 24.886741 10.760770 -A01S 5.493373 -0.703872 4.315925 -A02C 6.475175 0.739221 4.530684 -A03C 5.964891 2.064371 4.568640 -A04S 4.238513 2.454224 4.374495 -A05C 3.797960 1.209911 3.186103 -A06C 4.311996 -0.057721 3.155545 -A07C 3.914233 -0.983352 2.158266 -A08N 3.587332 -1.769277 1.354524 -A09C 2.821282 1.610511 2.243393 -A10N 1.971906 1.933586 1.507075 -A11N 6.825310 3.041573 4.778064 -A12S 8.348812 2.410224 5.000220 -A13C 7.847784 0.757673 4.736227 -A14C 8.738082 -0.329564 4.729194 -A15N 9.482949 -1.230593 4.697544 -A01S 10.372173 -4.083322 1.747300 -A02C 9.390371 -2.640229 1.532541 -A03C 9.900655 -1.315079 1.494585 -A04S 11.627033 -0.925226 1.688730 -A05C 12.067586 -2.169539 2.877122 -A06C 11.553550 -3.437171 2.907680 -A07C 11.951313 -4.362802 3.904959 -A08N 12.278214 -5.148727 4.708701 -A09C 13.044264 -1.768939 3.819832 -A10N 13.893640 -1.445864 4.556150 -A11N 9.040236 -0.337877 1.285161 -A12S 7.516734 -0.969226 1.063005 -A13C 8.017762 -2.621777 1.326998 -A14C 7.127464 -3.709014 1.334031 -A15N 6.382597 -4.610043 1.365681 -A01S 18.511427 0.703872 -4.315925 -A02C 17.529625 -0.739221 -4.530684 -A03C 18.039909 -2.064371 -4.568640 -A04S 19.766287 -2.454224 -4.374495 -A05C 20.206840 -1.209911 -3.186103 -A06C 19.692804 0.057721 -3.155545 -A07C 20.090567 0.983352 -2.158266 -A08N 20.417468 1.769277 -1.354524 -A09C 21.183518 -1.610511 -2.243393 -A10N 22.032894 -1.933586 -1.507075 -A11N 17.179490 -3.041573 -4.778064 -A12S 15.655988 -2.410224 -5.000220 -A13C 16.157016 -0.757673 -4.736227 -A14C 15.266718 0.329564 -4.729194 -A15N 14.521851 1.230593 -4.697544 -A01S 13.632627 4.083322 -1.747300 -A02C 14.614429 2.640229 -1.532541 -A03C 14.104145 1.315079 -1.494585 -A04S 12.377767 0.925226 -1.688730 -A05C 11.937214 2.169539 -2.877122 -A06C 12.451250 3.437171 -2.907680 -A07C 12.053487 4.362802 -3.904959 -A08N 11.726586 5.148727 -4.708701 -A09C 10.960536 1.768939 -3.819832 -A10N 10.111160 1.445864 -4.556150 -A11N 14.964564 0.337877 -1.285161 -A12S 16.488066 0.969226 -1.063005 -A13C 15.987038 2.621777 -1.326998 -A14C 16.877336 3.709014 -1.334031 -A15N 17.622203 4.610043 -1.365681 -A01S 1.217266 -0.703872 16.442375 -A02C 2.199068 0.739221 16.657134 -A03C 1.688784 2.064371 16.695090 -A04S -0.037594 2.454224 16.500945 -A05C -0.478147 1.209911 15.312553 -A06C 0.035889 -0.057721 15.281995 -A07C -0.361874 -0.983352 14.284716 -A08N -0.688775 -1.769277 13.480974 -A09C -1.454825 1.610511 14.369843 -A10N -2.304201 1.933586 13.633525 -A11N 2.549203 3.041573 16.904514 -A12S 4.072705 2.410224 17.126670 -A13C 3.571677 0.757673 16.862677 -A14C 4.461975 -0.329564 16.855644 -A15N 5.206842 -1.230593 16.823994 -A01S 6.096066 -4.083322 13.873750 -A02C 5.114264 -2.640229 13.658991 -A03C 5.624548 -1.315079 13.621035 -A04S 7.350926 -0.925226 13.815180 -A05C 7.791479 -2.169539 15.003572 -A06C 7.277443 -3.437171 15.034130 -A07C 7.675206 -4.362802 16.031409 -A08N 8.002107 -5.148727 16.835151 -A09C 8.768157 -1.768939 15.946282 -A10N 9.617533 -1.445864 16.682600 -A11N 4.764129 -0.337877 13.411611 -A12S 3.240627 -0.969226 13.189455 -A13C 3.741655 -2.621777 13.453448 -A14C 2.851357 -3.709014 13.460481 -A15N 2.106490 -4.610043 13.492131 -A01S 14.235319 0.703872 7.810525 -A02C 13.253518 -0.739221 7.595766 -A03C 13.763802 -2.064371 7.557810 -A04S 15.490180 -2.454223 7.751955 -A05C 15.930733 -1.209910 8.940347 -A06C 15.416696 0.057722 8.970905 -A07C 15.814458 0.983353 9.968184 -A08N 16.141359 1.769278 10.771926 -A09C 16.907410 -1.610509 9.883058 -A10N 17.756786 -1.933584 10.619376 -A11N 12.903384 -3.041573 7.348386 -A12S 11.379882 -2.410225 7.126230 -A13C 11.880909 -0.757674 7.390223 -A14C 10.990610 0.329563 7.397255 -A15N 10.245743 1.230591 7.428905 -A01S 9.356520 4.083322 10.379150 -A02C 10.338321 2.640229 10.593909 -A03C 9.828037 1.315079 10.631865 -A04S 8.101659 0.925227 10.437720 -A05C 7.661106 2.169540 9.249328 -A06C 8.175143 3.437172 9.218770 -A07C 7.777381 4.362803 8.221491 -A08N 7.450480 5.148728 7.417749 -A09C 6.684429 1.768941 8.306617 -A10N 5.835053 1.445866 7.570299 -A11N 10.688455 0.337877 10.841289 -A12S 12.211957 0.969225 11.063445 -A13C 11.710930 2.621776 10.799452 -A14C 12.601229 3.709013 10.792420 -A15N 13.346096 4.610041 10.760770 -A01S 5.493373 6.055028 4.315925 -A02C 6.475175 7.498121 4.530684 -A03C 5.964891 8.823271 4.568640 -A04S 4.238513 9.213124 4.374495 -A05C 3.797960 7.968811 3.186103 -A06C 4.311996 6.701179 3.155545 -A07C 3.914233 5.775548 2.158266 -A08N 3.587332 4.989623 1.354524 -A09C 2.821282 8.369411 2.243393 -A10N 1.971906 8.692486 1.507075 -A11N 6.825310 9.800473 4.778064 -A12S 8.348812 9.169124 5.000220 -A13C 7.847784 7.516573 4.736227 -A14C 8.738082 6.429336 4.729194 -A15N 9.482949 5.528307 4.697544 -A01S 10.372173 2.675578 1.747300 -A02C 9.390371 4.118671 1.532541 -A03C 9.900655 5.443821 1.494585 -A04S 11.627033 5.833674 1.688730 -A05C 12.067586 4.589361 2.877122 -A06C 11.553550 3.321729 2.907680 -A07C 11.951313 2.396098 3.904959 -A08N 12.278214 1.610173 4.708701 -A09C 13.044264 4.989961 3.819832 -A10N 13.893640 5.313036 4.556150 -A11N 9.040236 6.421023 1.285161 -A12S 7.516734 5.789674 1.063005 -A13C 8.017762 4.137123 1.326998 -A14C 7.127464 3.049886 1.334031 -A15N 6.382597 2.148857 1.365681 -A01S 18.511427 7.462772 -4.315925 -A02C 17.529625 6.019679 -4.530684 -A03C 18.039909 4.694529 -4.568640 -A04S 19.766287 4.304676 -4.374495 -A05C 20.206840 5.548989 -3.186103 -A06C 19.692804 6.816621 -3.155545 -A07C 20.090567 7.742252 -2.158266 -A08N 20.417468 8.528177 -1.354524 -A09C 21.183518 5.148389 -2.243393 -A10N 22.032894 4.825314 -1.507075 -A11N 17.179490 3.717327 -4.778064 -A12S 15.655988 4.348676 -5.000220 -A13C 16.157016 6.001227 -4.736227 -A14C 15.266718 7.088464 -4.729194 -A15N 14.521851 7.989493 -4.697544 -A01S 13.632627 10.842222 -1.747300 -A02C 14.614429 9.399129 -1.532541 -A03C 14.104145 8.073979 -1.494585 -A04S 12.377767 7.684126 -1.688730 -A05C 11.937214 8.928439 -2.877122 -A06C 12.451250 10.196071 -2.907680 -A07C 12.053487 11.121702 -3.904959 -A08N 11.726586 11.907627 -4.708701 -A09C 10.960536 8.527839 -3.819832 -A10N 10.111160 8.204764 -4.556150 -A11N 14.964564 7.096777 -1.285161 -A12S 16.488066 7.728126 -1.063005 -A13C 15.987038 9.380677 -1.326998 -A14C 16.877336 10.467914 -1.334031 -A15N 17.622203 11.368943 -1.365681 -A01S 1.217266 6.055028 16.442375 -A02C 2.199068 7.498121 16.657134 -A03C 1.688784 8.823271 16.695090 -A04S -0.037594 9.213124 16.500945 -A05C -0.478147 7.968811 15.312553 -A06C 0.035889 6.701179 15.281995 -A07C -0.361874 5.775548 14.284716 -A08N -0.688775 4.989623 13.480974 -A09C -1.454825 8.369411 14.369843 -A10N -2.304201 8.692486 13.633525 -A11N 2.549203 9.800473 16.904514 -A12S 4.072705 9.169124 17.126670 -A13C 3.571677 7.516573 16.862677 -A14C 4.461975 6.429336 16.855644 -A15N 5.206842 5.528307 16.823994 -A01S 6.096066 2.675578 13.873750 -A02C 5.114264 4.118671 13.658991 -A03C 5.624548 5.443821 13.621035 -A04S 7.350926 5.833674 13.815180 -A05C 7.791479 4.589361 15.003572 -A06C 7.277443 3.321729 15.034130 -A07C 7.675206 2.396098 16.031409 -A08N 8.002107 1.610173 16.835151 -A09C 8.768157 4.989961 15.946282 -A10N 9.617533 5.313036 16.682600 -A11N 4.764129 6.421023 13.411611 -A12S 3.240627 5.789674 13.189455 -A13C 3.741655 4.137123 13.453448 -A14C 2.851357 3.049886 13.460481 -A15N 2.106490 2.148857 13.492131 -A01S 14.235319 7.462772 7.810525 -A02C 13.253518 6.019679 7.595766 -A03C 13.763802 4.694529 7.557810 -A04S 15.490180 4.304677 7.751955 -A05C 15.930733 5.548990 8.940347 -A06C 15.416696 6.816622 8.970905 -A07C 15.814458 7.742253 9.968184 -A08N 16.141359 8.528178 10.771926 -A09C 16.907410 5.148391 9.883058 -A10N 17.756786 4.825316 10.619376 -A11N 12.903384 3.717327 7.348386 -A12S 11.379882 4.348675 7.126230 -A13C 11.880909 6.001226 7.390223 -A14C 10.990610 7.088463 7.397255 -A15N 10.245743 7.989491 7.428905 -A01S 9.356520 10.842222 10.379150 -A02C 10.338321 9.399129 10.593909 -A03C 9.828037 8.073979 10.631865 -A04S 8.101659 7.684127 10.437720 -A05C 7.661106 8.928440 9.249328 -A06C 8.175143 10.196072 9.218770 -A07C 7.777381 11.121703 8.221491 -A08N 7.450480 11.907628 7.417749 -A09C 6.684429 8.527841 8.306617 -A10N 5.835053 8.204766 7.570299 -A11N 10.688455 7.096777 10.841289 -A12S 12.211957 7.728125 11.063445 -A13C 11.710930 9.380676 10.799452 -A14C 12.601229 10.467913 10.792420 -A15N 13.346096 11.368941 10.760770 -A01S 5.493373 12.813928 4.315925 -A02C 6.475175 14.257021 4.530684 -A03C 5.964891 15.582171 4.568640 -A04S 4.238513 15.972024 4.374495 -A05C 3.797960 14.727711 3.186103 -A06C 4.311996 13.460079 3.155545 -A07C 3.914233 12.534448 2.158266 -A08N 3.587332 11.748523 1.354524 -A09C 2.821282 15.128311 2.243393 -A10N 1.971906 15.451386 1.507075 -A11N 6.825310 16.559373 4.778064 -A12S 8.348812 15.928024 5.000220 -A13C 7.847784 14.275473 4.736227 -A14C 8.738082 13.188236 4.729194 -A15N 9.482949 12.287207 4.697544 -A01S 10.372173 9.434478 1.747300 -A02C 9.390371 10.877571 1.532541 -A03C 9.900655 12.202721 1.494585 -A04S 11.627033 12.592574 1.688730 -A05C 12.067586 11.348261 2.877122 -A06C 11.553550 10.080629 2.907680 -A07C 11.951313 9.154998 3.904959 -A08N 12.278214 8.369073 4.708701 -A09C 13.044264 11.748861 3.819832 -A10N 13.893640 12.071936 4.556150 -A11N 9.040236 13.179923 1.285161 -A12S 7.516734 12.548574 1.063005 -A13C 8.017762 10.896023 1.326998 -A14C 7.127464 9.808786 1.334031 -A15N 6.382597 8.907757 1.365681 -A01S 18.511427 14.221672 -4.315925 -A02C 17.529625 12.778579 -4.530684 -A03C 18.039909 11.453429 -4.568640 -A04S 19.766287 11.063576 -4.374495 -A05C 20.206840 12.307889 -3.186103 -A06C 19.692804 13.575521 -3.155545 -A07C 20.090567 14.501152 -2.158266 -A08N 20.417468 15.287077 -1.354524 -A09C 21.183518 11.907289 -2.243393 -A10N 22.032894 11.584214 -1.507075 -A11N 17.179490 10.476227 -4.778064 -A12S 15.655988 11.107576 -5.000220 -A13C 16.157016 12.760127 -4.736227 -A14C 15.266718 13.847364 -4.729194 -A15N 14.521851 14.748393 -4.697544 -A01S 13.632627 17.601122 -1.747300 -A02C 14.614429 16.158029 -1.532541 -A03C 14.104145 14.832879 -1.494585 -A04S 12.377767 14.443026 -1.688730 -A05C 11.937214 15.687339 -2.877122 -A06C 12.451250 16.954971 -2.907680 -A07C 12.053487 17.880602 -3.904959 -A08N 11.726586 18.666527 -4.708701 -A09C 10.960536 15.286739 -3.819832 -A10N 10.111160 14.963664 -4.556150 -A11N 14.964564 13.855677 -1.285161 -A12S 16.488066 14.487026 -1.063005 -A13C 15.987038 16.139577 -1.326998 -A14C 16.877336 17.226814 -1.334031 -A15N 17.622203 18.127843 -1.365681 -A01S 1.217266 12.813928 16.442375 -A02C 2.199068 14.257021 16.657134 -A03C 1.688784 15.582171 16.695090 -A04S -0.037594 15.972024 16.500945 -A05C -0.478147 14.727711 15.312553 -A06C 0.035889 13.460079 15.281995 -A07C -0.361874 12.534448 14.284716 -A08N -0.688775 11.748523 13.480974 -A09C -1.454825 15.128311 14.369843 -A10N -2.304201 15.451386 13.633525 -A11N 2.549203 16.559373 16.904514 -A12S 4.072705 15.928024 17.126670 -A13C 3.571677 14.275473 16.862677 -A14C 4.461975 13.188236 16.855644 -A15N 5.206842 12.287207 16.823994 -A01S 6.096066 9.434478 13.873750 -A02C 5.114264 10.877571 13.658991 -A03C 5.624548 12.202721 13.621035 -A04S 7.350926 12.592574 13.815180 -A05C 7.791479 11.348261 15.003572 -A06C 7.277443 10.080629 15.034130 -A07C 7.675206 9.154998 16.031409 -A08N 8.002107 8.369073 16.835151 -A09C 8.768157 11.748861 15.946282 -A10N 9.617533 12.071936 16.682600 -A11N 4.764129 13.179923 13.411611 -A12S 3.240627 12.548574 13.189455 -A13C 3.741655 10.896023 13.453448 -A14C 2.851357 9.808786 13.460481 -A15N 2.106490 8.907757 13.492131 -A01S 14.235319 14.221672 7.810525 -A02C 13.253518 12.778579 7.595766 -A03C 13.763802 11.453429 7.557810 -A04S 15.490180 11.063577 7.751955 -A05C 15.930733 12.307890 8.940347 -A06C 15.416696 13.575522 8.970905 -A07C 15.814458 14.501153 9.968184 -A08N 16.141359 15.287078 10.771926 -A09C 16.907410 11.907291 9.883058 -A10N 17.756786 11.584216 10.619376 -A11N 12.903384 10.476227 7.348386 -A12S 11.379882 11.107575 7.126230 -A13C 11.880909 12.760126 7.390223 -A14C 10.990610 13.847363 7.397255 -A15N 10.245743 14.748391 7.428905 -A01S 9.356520 17.601122 10.379150 -A02C 10.338321 16.158029 10.593909 -A03C 9.828037 14.832879 10.631865 -A04S 8.101659 14.443027 10.437720 -A05C 7.661106 15.687340 9.249328 -A06C 8.175143 16.954972 9.218770 -A07C 7.777381 17.880603 8.221491 -A08N 7.450480 18.666528 7.417749 -A09C 6.684429 15.286741 8.306617 -A10N 5.835053 14.963666 7.570299 -A11N 10.688455 13.855677 10.841289 -A12S 12.211957 14.487025 11.063445 -A13C 11.710930 16.139576 10.799452 -A14C 12.601229 17.226813 10.792420 -A15N 13.346096 18.127841 10.760770 -A01S 5.493373 19.572828 4.315925 -A02C 6.475175 21.015921 4.530684 -A03C 5.964891 22.341071 4.568640 -A04S 4.238513 22.730924 4.374495 -A05C 3.797960 21.486611 3.186103 -A06C 4.311996 20.218979 3.155545 -A07C 3.914233 19.293348 2.158266 -A08N 3.587332 18.507423 1.354524 -A09C 2.821282 21.887211 2.243393 -A10N 1.971906 22.210286 1.507075 -A11N 6.825310 23.318273 4.778064 -A12S 8.348812 22.686924 5.000220 -A13C 7.847784 21.034373 4.736227 -A14C 8.738082 19.947136 4.729194 -A15N 9.482949 19.046107 4.697544 -A01S 10.372173 16.193378 1.747300 -A02C 9.390371 17.636471 1.532541 -A03C 9.900655 18.961621 1.494585 -A04S 11.627033 19.351474 1.688730 -A05C 12.067586 18.107161 2.877122 -A06C 11.553550 16.839529 2.907680 -A07C 11.951313 15.913898 3.904959 -A08N 12.278214 15.127973 4.708701 -A09C 13.044264 18.507761 3.819832 -A10N 13.893640 18.830836 4.556150 -A11N 9.040236 19.938823 1.285161 -A12S 7.516734 19.307474 1.063005 -A13C 8.017762 17.654923 1.326998 -A14C 7.127464 16.567686 1.334031 -A15N 6.382597 15.666657 1.365681 -A01S 18.511427 20.980572 -4.315925 -A02C 17.529625 19.537479 -4.530684 -A03C 18.039909 18.212329 -4.568640 -A04S 19.766287 17.822476 -4.374495 -A05C 20.206840 19.066789 -3.186103 -A06C 19.692804 20.334421 -3.155545 -A07C 20.090567 21.260052 -2.158266 -A08N 20.417468 22.045977 -1.354524 -A09C 21.183518 18.666189 -2.243393 -A10N 22.032894 18.343114 -1.507075 -A11N 17.179490 17.235127 -4.778064 -A12S 15.655988 17.866476 -5.000220 -A13C 16.157016 19.519027 -4.736227 -A14C 15.266718 20.606264 -4.729194 -A15N 14.521851 21.507293 -4.697544 -A01S 13.632627 24.360022 -1.747300 -A02C 14.614429 22.916929 -1.532541 -A03C 14.104145 21.591779 -1.494585 -A04S 12.377767 21.201926 -1.688730 -A05C 11.937214 22.446239 -2.877122 -A06C 12.451250 23.713871 -2.907680 -A07C 12.053487 24.639502 -3.904959 -A08N 11.726586 25.425427 -4.708701 -A09C 10.960536 22.045639 -3.819832 -A10N 10.111160 21.722564 -4.556150 -A11N 14.964564 20.614577 -1.285161 -A12S 16.488066 21.245926 -1.063005 -A13C 15.987038 22.898477 -1.326998 -A14C 16.877336 23.985714 -1.334031 -A15N 17.622203 24.886743 -1.365681 -A01S 1.217266 19.572828 16.442375 -A02C 2.199068 21.015921 16.657134 -A03C 1.688784 22.341071 16.695090 -A04S -0.037594 22.730924 16.500945 -A05C -0.478147 21.486611 15.312553 -A06C 0.035889 20.218979 15.281995 -A07C -0.361874 19.293348 14.284716 -A08N -0.688775 18.507423 13.480974 -A09C -1.454825 21.887211 14.369843 -A10N -2.304201 22.210286 13.633525 -A11N 2.549203 23.318273 16.904514 -A12S 4.072705 22.686924 17.126670 -A13C 3.571677 21.034373 16.862677 -A14C 4.461975 19.947136 16.855644 -A15N 5.206842 19.046107 16.823994 -A01S 6.096066 16.193378 13.873750 -A02C 5.114264 17.636471 13.658991 -A03C 5.624548 18.961621 13.621035 -A04S 7.350926 19.351474 13.815180 -A05C 7.791479 18.107161 15.003572 -A06C 7.277443 16.839529 15.034130 -A07C 7.675206 15.913898 16.031409 -A08N 8.002107 15.127973 16.835151 -A09C 8.768157 18.507761 15.946282 -A10N 9.617533 18.830836 16.682600 -A11N 4.764129 19.938823 13.411611 -A12S 3.240627 19.307474 13.189455 -A13C 3.741655 17.654923 13.453448 -A14C 2.851357 16.567686 13.460481 -A15N 2.106490 15.666657 13.492131 -A01S 14.235319 20.980572 7.810525 -A02C 13.253518 19.537479 7.595766 -A03C 13.763802 18.212329 7.557810 -A04S 15.490180 17.822477 7.751955 -A05C 15.930733 19.066790 8.940347 -A06C 15.416696 20.334422 8.970905 -A07C 15.814458 21.260053 9.968184 -A08N 16.141359 22.045978 10.771926 -A09C 16.907410 18.666191 9.883058 -A10N 17.756786 18.343116 10.619376 -A11N 12.903384 17.235127 7.348386 -A12S 11.379882 17.866475 7.126230 -A13C 11.880909 19.519026 7.390223 -A14C 10.990610 20.606263 7.397255 -A15N 10.245743 21.507291 7.428905 -A01S 9.356520 24.360022 10.379150 -A02C 10.338321 22.916929 10.593909 -A03C 9.828037 21.591779 10.631865 -A04S 8.101659 21.201927 10.437720 -A05C 7.661106 22.446240 9.249328 -A06C 8.175143 23.713872 9.218770 -A07C 7.777381 24.639503 8.221491 -A08N 7.450480 25.425428 7.417749 -A09C 6.684429 22.045641 8.306617 -A10N 5.835053 21.722566 7.570299 -A11N 10.688455 20.614577 10.841289 -A12S 12.211957 21.245925 11.063445 -A13C 11.710930 22.898476 10.799452 -A14C 12.601229 23.985713 10.792420 -A15N 13.346096 24.886741 10.760770 - - -Fragment XXII_exp_N2_1_L - Atom A01S -12.300278 -1.330125 8.155916 - znuc, mass 16.000000 31.972070 - - Atom A02C -10.444942 1.396925 8.561752 - znuc, mass 6.000000 12.000000 - - Atom A03C -11.409239 3.901095 8.633478 - znuc, mass 6.000000 12.000000 - - Atom A04S -14.671620 4.637811 8.266597 - znuc, mass 16.000000 31.972070 - - Atom A05C -15.504144 2.286400 6.020862 - znuc, mass 6.000000 12.000000 - - Atom A06C -14.532757 -0.109077 5.963116 - znuc, mass 6.000000 12.000000 - - Atom A07C -15.284420 -1.858266 4.078532 - znuc, mass 6.000000 12.000000 - - Atom A08N -15.902174 -3.343449 2.559680 - znuc, mass 7.000000 14.003070 - - Atom A09C -17.349798 3.043424 4.239399 - znuc, mass 6.000000 12.000000 - - Atom A10N -18.954886 3.653948 2.847959 - znuc, mass 7.000000 14.003070 - - Atom A11N -9.783282 5.747739 9.029232 - znuc, mass 7.000000 14.003070 - - Atom A12S -6.904281 4.554663 9.449046 - znuc, mass 16.000000 31.972070 - - Atom A13C -7.851087 1.431794 8.950172 - znuc, mass 6.000000 12.000000 - - Atom A14C -6.168667 -0.622786 8.936881 - znuc, mass 6.000000 12.000000 - - Atom A15N -4.761073 -2.325484 8.877072 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -12.300278 -1.330125 8.155916 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole 0.081100 0.120946 -0.015291 -0.151351 0.112179 -0.258142 -0.096888 0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -10.444942 1.396925 8.561752 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 -0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole -0.080562 -0.064792 -0.069734 0.081135 0.040643 0.191017 0.029091 -0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C -11.409239 3.901095 8.633478 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole 0.154202 0.066939 -0.010607 -0.076422 0.037680 -0.126335 -0.027074 -0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -14.671620 4.637811 8.266597 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 -0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole -0.376726 -0.162146 -0.007751 0.064505 -0.144810 0.217808 0.152561 0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -15.504144 2.286400 6.020862 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 -0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole -0.056685 0.087927 -0.028493 -0.015828 0.161274 0.009131 -0.132781 0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C -14.532757 -0.109077 5.963116 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 -0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole -0.001075 -0.050214 -0.014991 -0.047446 -0.160108 0.001747 0.175099 -0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -15.284420 -1.858266 4.078532 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 -0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole 0.066905 0.052623 0.037692 0.033015 0.046038 -0.056469 -0.083730 -0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -15.902174 -3.343449 2.559680 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole -0.024985 -0.019560 -0.010956 -0.010338 -0.013703 0.014533 0.024660 0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -17.349798 3.043424 4.239399 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole -0.000862 -0.071606 0.028175 0.027284 -0.078173 0.054551 0.049997 -0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -18.954886 3.653948 2.847959 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 -0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole -0.001131 0.023490 -0.018307 -0.014058 0.034435 -0.020126 -0.016128 0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -9.783282 5.747739 9.029232 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 -0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole -0.049872 -0.009996 0.025010 -0.027426 -0.025766 0.018699 0.000756 0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -6.904281 4.554663 9.449046 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 -0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole 0.079313 0.431186 -0.101331 -0.400784 0.037962 0.079017 0.063368 -0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -7.851087 1.431794 8.950172 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 -0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole 0.066522 -0.033296 0.033077 0.141141 -0.015825 -0.201472 -0.017252 0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -6.168667 -0.622786 8.936881 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 -0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole -0.082638 0.017348 0.002354 -0.067724 -0.011182 0.121329 0.008828 -0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -4.761073 -2.325484 8.877072 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole 0.020681 -0.004365 -0.003281 0.025182 0.001816 -0.038396 0.001465 0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -11.372610 0.033400 8.358834 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 -0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole 0.135031 -0.064489 0.081833 -0.097858 -0.020810 -0.250721 -0.061022 0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -10.927090 2.649010 8.597615 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 -0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole 0.006937 0.415001 0.020564 -0.384074 -0.195901 0.173547 0.175337 -0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -13.040429 4.269453 8.450038 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole -0.362347 0.032096 -0.067519 0.068455 -0.111862 0.234599 0.179381 0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -15.087882 3.462105 7.143730 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole -0.128236 -0.066192 -0.098878 -0.110011 -0.100435 0.054183 0.199314 0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -13.416518 -0.719601 7.059516 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 -0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole -0.150222 0.184993 0.116290 0.324246 0.434434 -0.009658 -0.550724 0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -15.018451 1.088662 5.991989 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole 0.190699 -0.292172 0.613901 0.301575 -0.166371 -0.195836 -0.447530 0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -14.908589 -0.983671 5.020824 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole 0.090233 0.197003 -0.239935 -0.184502 0.227647 -0.047722 0.012288 -0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -15.593297 -2.600857 3.319106 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 -0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole -0.091256 -0.060414 -0.057038 -0.055047 -0.054877 0.044246 0.111914 0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -16.426971 2.664912 5.130130 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole -0.091909 0.188995 -0.277331 -0.069309 -0.049758 0.131139 0.327089 -0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -18.152342 3.348686 3.543679 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole -0.040090 0.095467 -0.079919 -0.058683 0.126158 -0.051889 -0.046239 0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -10.596260 4.824417 8.831355 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 -0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole -0.344269 0.046395 0.191856 0.007750 -0.171132 0.125564 -0.020724 0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 -8.343782 5.151201 9.239139 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 -0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole -0.052482 0.017861 -0.101437 0.090246 0.034757 0.166574 0.066680 -0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -9.148014 1.414360 8.755962 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole 0.195067 -0.254353 0.246051 -0.014826 0.033884 -0.213914 -0.279935 0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -7.377684 2.993229 9.199609 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole -0.174029 0.208769 -0.072703 -0.067761 -0.017390 0.228215 0.090093 -0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 -7.009877 0.404504 8.943527 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole -0.138702 0.038897 -0.021776 -0.027862 -0.007098 0.125103 0.028874 0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -5.464870 -1.474135 8.906976 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 -0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole 0.084793 0.000751 -0.009942 0.105319 0.003154 -0.171502 0.006789 0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -11.016969 2.599261 8.571017 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -18.521619 2.944467 3.727272 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.746409 -1.764403 9.323269 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -16.153618 -2.579263 3.470142 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.487096 0.880237 6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.358728 4.885969 8.339860 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.515775 4.722878 8.719786 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.326355 0.145353 8.341383 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.954796 4.209593 8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.439681 2.687667 5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.977683 0.386808 8.960653 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.916141 -1.009688 5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.283615 1.392603 9.317312 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.341642 2.827740 9.184184 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.087400 3.349220 7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.080867 1.508206 8.185563 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.481969 -0.637174 6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.589093 1.263009 5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.328854 -2.848026 8.860735 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.444616 3.842599 2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.090221 -3.797662 2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.607879 5.183033 9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.849258 6.396648 9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.050888 4.288729 9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.584314 -1.596696 8.356857 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.818187 3.218967 3.083473 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.792784 -1.357463 8.922441 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.188304 3.897331 3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.248292 -3.027089 3.518027 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.000590 -1.150117 9.040343 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.773264 -1.946686 7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.725003 5.450007 7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.863948 4.529718 10.282389 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.544201 4.784860 9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.418827 -2.255167 2.885267 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Ligand index 0 - -Fragment XXII_exp_N2_1_L - Atom A01S -3.080683 -7.716360 3.301918 - znuc, mass 16.000000 31.972070 - - Atom A02C -4.936019 -4.989310 2.896083 - znuc, mass 6.000000 12.000000 - - Atom A03C -3.971722 -2.485140 2.824356 - znuc, mass 6.000000 12.000000 - - Atom A04S -0.709341 -1.748424 3.191237 - znuc, mass 16.000000 31.972070 - - Atom A05C 0.123183 -4.099835 5.436972 - znuc, mass 6.000000 12.000000 - - Atom A06C -0.848204 -6.495312 5.494719 - znuc, mass 6.000000 12.000000 - - Atom A07C -0.096541 -8.244501 7.379303 - znuc, mass 6.000000 12.000000 - - Atom A08N 0.521213 -9.729684 8.898155 - znuc, mass 7.000000 14.003070 - - Atom A09C 1.968837 -3.342811 7.218436 - znuc, mass 6.000000 12.000000 - - Atom A10N 3.573925 -2.732287 8.609875 - znuc, mass 7.000000 14.003070 - - Atom A11N -5.597679 -0.638496 2.428602 - znuc, mass 7.000000 14.003070 - - Atom A12S -8.476680 -1.831572 2.008788 - znuc, mass 16.000000 31.972070 - - Atom A13C -7.529874 -4.954441 2.507663 - znuc, mass 6.000000 12.000000 - - Atom A14C -9.212293 -7.009021 2.520953 - znuc, mass 6.000000 12.000000 - - Atom A15N -10.619888 -8.711719 2.580763 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -3.080683 -7.716360 3.301918 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole -0.081100 0.120946 0.015291 -0.151351 -0.112179 0.258142 0.096888 -0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -4.936019 -4.989310 2.896083 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 -0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole 0.080562 -0.064792 0.069734 0.081135 -0.040643 -0.191017 -0.029091 0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C -3.971722 -2.485140 2.824356 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole -0.154202 0.066939 0.010607 -0.076422 -0.037680 0.126335 0.027074 0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -0.709341 -1.748424 3.191237 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 -0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole 0.376726 -0.162146 0.007751 0.064505 0.144810 -0.217808 -0.152561 -0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 0.123183 -4.099835 5.436972 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 -0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole 0.056685 0.087927 0.028493 -0.015828 -0.161274 -0.009131 0.132781 -0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C -0.848204 -6.495312 5.494719 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 -0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole 0.001075 -0.050214 0.014991 -0.047446 0.160108 -0.001747 -0.175099 0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -0.096541 -8.244501 7.379303 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 -0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole -0.066905 0.052623 -0.037692 0.033015 -0.046038 0.056469 0.083730 0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 0.521213 -9.729684 8.898155 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole 0.024985 -0.019560 0.010956 -0.010338 0.013703 -0.014533 -0.024660 -0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 1.968837 -3.342811 7.218436 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole 0.000862 -0.071606 -0.028175 0.027284 0.078173 -0.054551 -0.049997 0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 3.573925 -2.732287 8.609875 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 -0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole 0.001131 0.023490 0.018307 -0.014058 -0.034435 0.020126 0.016128 -0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -5.597679 -0.638496 2.428602 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 -0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole 0.049872 -0.009996 -0.025010 -0.027426 0.025766 -0.018699 -0.000756 -0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -8.476680 -1.831572 2.008788 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 -0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole -0.079313 0.431186 0.101331 -0.400784 -0.037962 -0.079017 -0.063368 0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -7.529874 -4.954441 2.507663 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 -0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole -0.066522 -0.033296 -0.033077 0.141141 0.015825 0.201472 0.017252 -0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -9.212293 -7.009021 2.520953 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 -0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole 0.082638 0.017348 -0.002354 -0.067724 0.011182 -0.121329 -0.008828 0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -10.619888 -8.711719 2.580763 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole -0.020681 -0.004365 0.003281 0.025182 -0.001816 0.038396 -0.001465 -0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -4.008351 -6.352835 3.099001 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 -0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole -0.135031 -0.064489 -0.081833 -0.097858 0.020810 0.250721 0.061022 -0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -4.453871 -3.737225 2.860220 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 -0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole -0.006937 0.415001 -0.020564 -0.384074 0.195901 -0.173547 -0.175337 0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -2.340532 -2.116782 3.007797 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole 0.362347 0.032096 0.067519 0.068455 0.111862 -0.234599 -0.179381 -0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -0.293079 -2.924129 4.314105 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole 0.128236 -0.066192 0.098878 -0.110011 0.100435 -0.054183 -0.199314 -0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -1.964443 -7.105836 4.398319 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 -0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole 0.150222 0.184993 -0.116290 0.324246 -0.434434 0.009658 0.550724 -0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -0.362510 -5.297573 5.465846 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole -0.190699 -0.292172 -0.613901 0.301575 0.166371 0.195836 0.447530 -0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -0.472372 -7.369906 6.437011 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole -0.090233 0.197003 0.239935 -0.184502 -0.227647 0.047722 -0.012288 0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 0.212336 -8.987092 8.138729 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 -0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole 0.091256 -0.060414 0.057038 -0.055047 0.054877 -0.044246 -0.111914 -0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 1.046010 -3.721323 6.327704 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole 0.091909 0.188995 0.277331 -0.069309 0.049758 -0.131139 -0.327089 0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 2.771381 -3.037549 7.914156 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole 0.040090 0.095467 0.079919 -0.058683 -0.126158 0.051889 0.046239 -0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -4.784700 -1.561818 2.626479 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 -0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole 0.344269 0.046395 -0.191856 0.007750 0.171132 -0.125564 0.020724 -0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 -7.037179 -1.235034 2.218695 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 -0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole 0.052482 0.017861 0.101437 0.090246 -0.034757 -0.166574 -0.066680 0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -6.232947 -4.971875 2.701873 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole -0.195067 -0.254353 -0.246051 -0.014826 -0.033884 0.213914 0.279935 -0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -8.003277 -3.393006 2.258226 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole 0.174029 0.208769 0.072703 -0.067761 0.017390 -0.228215 -0.090093 0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 -8.371084 -5.981731 2.514308 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole 0.138702 0.038897 0.021776 -0.027862 0.007098 -0.125103 -0.028874 -0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -9.916091 -7.860370 2.550858 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 -0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole -0.084793 0.000751 0.009942 0.105319 -0.003154 0.171502 -0.006789 -0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -4.363992 -3.786974 2.886817 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 3.140658 -3.441768 7.730563 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.634552 -8.150638 2.134565 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 0.772657 -8.965498 7.987693 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.106135 -5.505998 5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.022233 -1.500266 3.117975 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.865186 -1.663357 2.738049 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.054606 -6.240882 3.116452 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.426164 -2.176641 3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.058720 -3.698568 6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.403278 -5.999427 2.497182 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.464819 -7.395923 6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.097346 -4.993632 2.140523 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.039319 -3.558495 2.273651 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.293561 -3.037015 4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.300094 -4.878029 3.272272 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.898992 -7.023409 4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.791868 -5.123226 5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.052107 -9.234261 2.597099 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.063655 -2.543636 9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.709261 -10.183897 9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.773082 -1.203202 2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.531703 0.010413 2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.330072 -2.097506 2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.796647 -7.982931 3.100978 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.437226 -3.167268 8.374362 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.588177 -7.743698 2.535393 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.807343 -2.488904 7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.132669 -9.413324 7.939807 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.380371 -7.536352 2.417492 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.607697 -8.332921 3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.655958 -0.936228 3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.517013 -1.856517 1.175445 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.836760 -1.601375 2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.037866 -8.641402 8.572568 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 12.300278 1.330125 -8.155916 - znuc, mass 16.000000 31.972070 - - Atom A02C 10.444942 -1.396925 -8.561752 - znuc, mass 6.000000 12.000000 - - Atom A03C 11.409239 -3.901095 -8.633478 - znuc, mass 6.000000 12.000000 - - Atom A04S 14.671620 -4.637811 -8.266597 - znuc, mass 16.000000 31.972070 - - Atom A05C 15.504144 -2.286400 -6.020862 - znuc, mass 6.000000 12.000000 - - Atom A06C 14.532757 0.109077 -5.963116 - znuc, mass 6.000000 12.000000 - - Atom A07C 15.284420 1.858266 -4.078532 - znuc, mass 6.000000 12.000000 - - Atom A08N 15.902174 3.343449 -2.559680 - znuc, mass 7.000000 14.003070 - - Atom A09C 17.349798 -3.043424 -4.239399 - znuc, mass 6.000000 12.000000 - - Atom A10N 18.954886 -3.653948 -2.847959 - znuc, mass 7.000000 14.003070 - - Atom A11N 9.783282 -5.747739 -9.029232 - znuc, mass 7.000000 14.003070 - - Atom A12S 6.904281 -4.554663 -9.449046 - znuc, mass 16.000000 31.972070 - - Atom A13C 7.851087 -1.431794 -8.950172 - znuc, mass 6.000000 12.000000 - - Atom A14C 6.168667 0.622786 -8.936881 - znuc, mass 6.000000 12.000000 - - Atom A15N 4.761073 2.325484 -8.877072 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 12.300278 1.330125 -8.155916 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 -1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole -0.081100 -0.120946 0.015291 0.151351 -0.112179 0.258142 0.096888 -0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 10.444942 -1.396925 -8.561752 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole 0.080562 0.064792 0.069734 -0.081135 -0.040643 -0.191017 -0.029091 0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 11.409239 -3.901095 -8.633478 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 -0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole -0.154202 -0.066939 0.010607 0.076422 -0.037680 0.126335 0.027074 0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 14.671620 -4.637811 -8.266597 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole 0.376726 0.162146 0.007751 -0.064505 0.144810 -0.217808 -0.152561 -0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 15.504144 -2.286400 -6.020862 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole 0.056685 -0.087927 0.028493 0.015828 -0.161274 -0.009131 0.132781 -0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 14.532757 0.109077 -5.963116 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole 0.001075 0.050214 0.014991 0.047446 0.160108 -0.001747 -0.175099 0.000672 -0.097660 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 15.284420 1.858266 -4.078532 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole -0.066905 -0.052623 -0.037692 -0.033015 -0.046038 0.056469 0.083730 0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 15.902174 3.343449 -2.559680 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 -0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole 0.024985 0.019560 0.010956 0.010338 0.013703 -0.014533 -0.024660 -0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 17.349798 -3.043424 -4.239399 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 -0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole 0.000862 0.071606 -0.028175 -0.027284 0.078173 -0.054551 -0.049997 0.053688 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 18.954886 -3.653948 -2.847959 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole 0.001131 -0.023490 0.018307 0.014058 -0.034435 0.020126 0.016128 -0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 9.783282 -5.747739 -9.029232 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole 0.049872 0.009996 -0.025010 0.027426 0.025766 -0.018699 -0.000756 -0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 6.904281 -4.554663 -9.449046 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole -0.079313 -0.431186 0.101331 0.400784 -0.037962 -0.079017 -0.063368 0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 7.851087 -1.431794 -8.950172 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole -0.066522 0.033296 -0.033077 -0.141141 0.015825 0.201472 0.017252 -0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 6.168667 0.622786 -8.936881 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole 0.082638 -0.017348 -0.002354 0.067724 0.011182 -0.121329 -0.008828 0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 4.761073 2.325484 -8.877072 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 -0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole -0.020681 0.004365 0.003281 -0.025182 -0.001816 0.038396 -0.001465 -0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 11.372610 -0.033400 -8.358834 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole -0.135031 0.064489 -0.081833 0.097858 0.020810 0.250721 0.061022 -0.115691 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 10.927090 -2.649010 -8.597615 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole -0.006937 -0.415001 -0.020564 0.384074 0.195901 -0.173547 -0.175337 0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 13.040429 -4.269453 -8.450038 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 -0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole 0.362347 -0.032096 0.067519 -0.068455 0.111862 -0.234599 -0.179381 -0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 15.087882 -3.462105 -7.143730 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 -0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole 0.128236 0.066192 0.098878 0.110011 0.100435 -0.054183 -0.199314 -0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 13.416518 0.719601 -7.059516 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole 0.150222 -0.184993 -0.116290 -0.324246 -0.434434 0.009658 0.550724 -0.159880 0.509238 0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 15.018451 -1.088662 -5.991989 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 -0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole -0.190699 0.292172 -0.613901 -0.301575 0.166371 0.195836 0.447530 -0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 14.908589 0.983671 -5.020824 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 -0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole -0.090233 -0.197003 0.239935 0.184502 -0.227647 0.047722 -0.012288 0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 15.593297 2.600857 -3.319106 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole 0.091256 0.060414 0.057038 0.055047 0.054877 -0.044246 -0.111914 -0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 16.426971 -2.664912 -5.130130 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 -0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole 0.091909 -0.188995 0.277331 0.069309 0.049758 -0.131139 -0.327089 0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 18.152342 -3.348686 -3.543679 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 -0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole 0.040090 -0.095467 0.079919 0.058683 -0.126158 0.051889 0.046239 -0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 10.596260 -4.824417 -8.831355 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole 0.344269 -0.046395 -0.191856 -0.007750 0.171132 -0.125564 0.020724 -0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 8.343782 -5.151201 -9.239139 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole 0.052482 -0.017861 0.101437 -0.090246 -0.034757 -0.166574 -0.066680 0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 9.148014 -1.414360 -8.755962 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 -0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole -0.195067 0.254353 -0.246051 0.014826 -0.033884 0.213914 0.279935 -0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 7.377684 -2.993229 -9.199609 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 -0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole 0.174029 -0.208769 0.072703 0.067761 0.017390 -0.228215 -0.090093 0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 7.009877 -0.404504 -8.943527 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 -0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole 0.138702 -0.038897 0.021776 0.027862 0.007098 -0.125103 -0.028874 -0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 5.464870 1.474135 -8.906976 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole -0.084793 -0.000751 0.009942 -0.105319 -0.003154 0.171502 -0.006789 -0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 10.544201 -4.784860 -9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444129 6.305470 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 18.188304 -3.897331 -3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821479 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.746327 1.764335 -9.323370 - polarizability tensor 5.676900 -5.144008 -0.727143 -3.339388 4.987141 -0.427749 -0.708036 -0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 15.248291 3.027089 -3.518027 - polarizability tensor 2.014660 1.411523 2.754674 0.096191 2.864916 1.368380 1.742511 2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.439681 -2.687667 -5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.977683 -0.386808 -8.960653 - polarizability tensor 2.247827 -1.783499 0.065362 -1.149026 2.379898 0.043699 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.607879 -5.183033 -9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.326355 -0.145353 -8.341383 - polarizability tensor 5.018070 4.875224 1.088491 1.811907 4.579783 0.228245 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.954796 -4.209593 -8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.916141 1.009688 -5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.016969 -2.599261 -8.571017 - polarizability tensor 3.009104 -0.265453 0.164854 -0.392052 2.422903 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.589093 -1.263009 -5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522052 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.080866 -1.508206 -8.185563 - polarizability tensor 13.654114 -2.638427 1.355101 -2.419218 4.125882 0.076557 2.653090 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.341642 -2.827740 -9.184184 - polarizability tensor 2.960546 0.866100 0.523975 1.061801 5.117295 0.710667 0.733477 0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.481969 0.637174 -6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.283615 -1.392603 -9.317312 - polarizability tensor 12.949895 -2.646494 1.785361 -2.381880 4.179640 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.087400 -3.349220 -7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.487096 -0.880237 -6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460098 13.263287 0.923067 0.789240 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.328854 2.848026 -8.860735 - polarizability tensor 2.586919 -0.528104 -0.018359 -0.362648 2.294263 -0.043707 0.109841 -0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.444616 -3.842599 -2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.090221 3.797662 -2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.863949 -4.529717 -10.282389 - polarizability tensor 8.609790 3.161438 4.330874 3.390209 5.869742 2.969759 2.433190 1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.725003 -5.450007 -7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.849258 -6.396648 -9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.000566 1.150095 -9.040202 - polarizability tensor 3.548722 -1.577098 0.269187 -2.005619 4.318440 0.319352 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.521619 -2.944467 -3.727272 - polarizability tensor 5.713597 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.773264 1.946686 -7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225663 5.733018 0.256666 1.271657 0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.818187 -3.218967 -3.083473 - polarizability tensor 6.707221 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.418828 2.255166 -2.885267 - polarizability tensor 1.169671 1.724727 0.923947 2.191905 7.141823 4.969365 0.687892 2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.584419 1.596786 -8.356897 - polarizability tensor 5.399126 -5.564498 0.213556 -4.017191 5.082747 0.297192 1.393777 -0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.792784 1.357463 -8.922442 - polarizability tensor 10.702598 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.050888 -4.288728 -9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.515774 -4.722878 -8.719786 - polarizability tensor 9.556647 3.699450 -1.931270 3.986422 6.261107 -1.285638 0.992071 0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.358728 -4.885969 -8.339860 - polarizability tensor 4.541349 2.067478 1.036870 1.580946 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.153617 2.579264 -3.470143 - polarizability tensor 2.204025 0.653491 0.327503 1.701255 5.540977 4.544585 0.766864 3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 3.080683 7.716360 -3.301918 - znuc, mass 16.000000 31.972070 - - Atom A02C 4.936019 4.989310 -2.896083 - znuc, mass 6.000000 12.000000 - - Atom A03C 3.971722 2.485140 -2.824356 - znuc, mass 6.000000 12.000000 - - Atom A04S 0.709341 1.748424 -3.191237 - znuc, mass 16.000000 31.972070 - - Atom A05C -0.123183 4.099835 -5.436972 - znuc, mass 6.000000 12.000000 - - Atom A06C 0.848204 6.495312 -5.494719 - znuc, mass 6.000000 12.000000 - - Atom A07C 0.096541 8.244501 -7.379303 - znuc, mass 6.000000 12.000000 - - Atom A08N -0.521213 9.729684 -8.898155 - znuc, mass 7.000000 14.003070 - - Atom A09C -1.968837 3.342811 -7.218436 - znuc, mass 6.000000 12.000000 - - Atom A10N -3.573925 2.732287 -8.609875 - znuc, mass 7.000000 14.003070 - - Atom A11N 5.597679 0.638496 -2.428602 - znuc, mass 7.000000 14.003070 - - Atom A12S 8.476680 1.831572 -2.008788 - znuc, mass 16.000000 31.972070 - - Atom A13C 7.529874 4.954441 -2.507663 - znuc, mass 6.000000 12.000000 - - Atom A14C 9.212293 7.009021 -2.520953 - znuc, mass 6.000000 12.000000 - - Atom A15N 10.619888 8.711719 -2.580763 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 3.080683 7.716360 -3.301918 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 -1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole 0.081100 -0.120946 -0.015291 0.151351 0.112179 -0.258142 -0.096888 0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 4.936019 4.989310 -2.896083 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole -0.080562 0.064792 -0.069734 -0.081135 0.040643 0.191017 0.029091 -0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 3.971722 2.485140 -2.824356 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 -0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole 0.154202 -0.066939 -0.010607 0.076422 0.037680 -0.126335 -0.027074 -0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 0.709341 1.748424 -3.191237 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole -0.376726 0.162146 -0.007751 -0.064505 -0.144810 0.217808 0.152561 0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -0.123183 4.099835 -5.436972 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole -0.056685 -0.087927 -0.028493 0.015828 0.161274 0.009131 -0.132781 0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 0.848204 6.495312 -5.494719 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole -0.001075 0.050214 -0.014991 0.047446 -0.160108 0.001747 0.175099 -0.000672 -0.097660 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 0.096541 8.244501 -7.379303 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole 0.066905 -0.052623 0.037692 -0.033015 0.046038 -0.056469 -0.083730 -0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -0.521213 9.729684 -8.898155 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 -0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole -0.024985 0.019560 -0.010956 0.010338 -0.013703 0.014533 0.024660 0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -1.968837 3.342811 -7.218436 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 -0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole -0.000862 0.071606 0.028175 -0.027284 -0.078173 0.054551 0.049997 -0.053688 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -3.573925 2.732287 -8.609875 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole -0.001131 -0.023490 -0.018307 0.014058 0.034435 -0.020126 -0.016128 0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 5.597679 0.638496 -2.428602 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole -0.049872 0.009996 0.025010 0.027426 -0.025766 0.018699 0.000756 0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 8.476680 1.831572 -2.008788 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole 0.079313 -0.431186 -0.101331 0.400784 0.037962 0.079017 0.063368 -0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 7.529874 4.954441 -2.507663 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole 0.066522 0.033296 0.033077 -0.141141 -0.015825 -0.201472 -0.017252 0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 9.212293 7.009021 -2.520953 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole -0.082638 -0.017348 0.002354 0.067724 -0.011182 0.121329 0.008828 -0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 10.619888 8.711719 -2.580763 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 -0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole 0.020681 0.004365 -0.003281 -0.025182 0.001816 -0.038396 0.001465 0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 4.008351 6.352835 -3.099001 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole 0.135031 0.064489 0.081833 0.097858 -0.020810 -0.250721 -0.061022 0.115691 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 4.453871 3.737225 -2.860220 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole 0.006937 -0.415001 0.020564 0.384074 -0.195901 0.173547 0.175337 -0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 2.340532 2.116782 -3.007797 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 -0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole -0.362347 -0.032096 -0.067519 -0.068455 -0.111862 0.234599 0.179381 0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 0.293079 2.924129 -4.314105 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 -0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole -0.128236 0.066192 -0.098878 0.110011 -0.100435 0.054183 0.199314 0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 1.964443 7.105836 -4.398319 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole -0.150222 -0.184993 0.116290 -0.324246 0.434434 -0.009658 -0.550724 0.159880 0.509238 0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 0.362510 5.297573 -5.465846 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 -0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole 0.190699 0.292172 0.613901 -0.301575 -0.166371 -0.195836 -0.447530 0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 0.472372 7.369906 -6.437011 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 -0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole 0.090233 -0.197003 -0.239935 0.184502 0.227647 -0.047722 0.012288 -0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -0.212336 8.987092 -8.138729 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole -0.091256 0.060414 -0.057038 0.055047 -0.054877 0.044246 0.111914 0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -1.046010 3.721323 -6.327704 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 -0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole -0.091909 -0.188995 -0.277331 0.069309 -0.049758 0.131139 0.327089 -0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -2.771381 3.037549 -7.914156 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 -0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole -0.040090 -0.095467 -0.079919 0.058683 0.126158 -0.051889 -0.046239 0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 4.784700 1.561818 -2.626479 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole -0.344269 -0.046395 0.191856 -0.007750 -0.171132 0.125564 -0.020724 0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 7.037179 1.235034 -2.218695 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole -0.052482 -0.017861 -0.101437 -0.090246 0.034757 0.166574 0.066680 -0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 6.232947 4.971875 -2.701873 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 -0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole 0.195067 0.254353 0.246051 0.014826 0.033884 -0.213914 -0.279935 0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 8.003277 3.393006 -2.258226 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 -0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole -0.174029 -0.208769 -0.072703 0.067761 -0.017390 0.228215 0.090093 -0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 8.371084 5.981731 -2.514308 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 -0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole -0.138702 -0.038897 -0.021776 0.027862 -0.007098 0.125103 0.028874 0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 9.916091 7.860370 -2.550858 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole 0.084793 -0.000751 -0.009942 -0.105319 0.003154 -0.171502 0.006789 0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 4.836760 1.601375 -2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444129 6.305470 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -2.807344 2.488904 -7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821479 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.634633 8.150570 -2.134465 - polarizability tensor 5.676900 5.144008 -0.727143 3.339388 4.987141 0.427749 -0.708036 0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 0.132670 9.413324 -7.939808 - polarizability tensor 2.014660 -1.411523 2.754674 -0.096191 2.864916 -1.368380 1.742511 -2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.058720 3.698568 -6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.403278 5.999427 -2.497182 - polarizability tensor 2.247827 1.783499 0.065362 1.149026 2.379898 -0.043699 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.773082 1.203202 -2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.054606 6.240882 -3.116452 - polarizability tensor 5.018070 -4.875224 1.088491 -1.811907 4.579783 -0.228245 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.426164 2.176641 -3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.464819 7.395923 -6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.363992 3.786974 -2.886817 - polarizability tensor 3.009104 0.265453 0.164854 0.392052 2.422903 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.791868 5.123226 -5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522052 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.300094 4.878029 -3.272272 - polarizability tensor 13.654114 2.638427 1.355101 2.419218 4.125882 -0.076557 2.653090 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.039319 3.558495 -2.273651 - polarizability tensor 2.960546 -0.866100 0.523975 -1.061801 5.117295 -0.710667 0.733477 -0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.898992 7.023409 -4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.097346 4.993632 -2.140523 - polarizability tensor 12.949895 2.646494 1.785361 2.381880 4.179640 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.293561 3.037015 -4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.106135 5.505998 -5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460098 13.263287 -0.923067 0.789240 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.052107 9.234261 -2.597100 - polarizability tensor 2.586919 0.528104 -0.018359 0.362648 2.294263 0.043707 0.109841 0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.063655 2.543636 -9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.709261 10.183897 -9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.517012 1.856518 -1.175445 - polarizability tensor 8.609790 -3.161438 4.330874 -3.390209 5.869742 -2.969759 2.433190 -1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.655958 0.936228 -3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.531703 -0.010413 -2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.380395 7.536330 -2.417633 - polarizability tensor 3.548722 1.577098 0.269187 2.005619 4.318440 -0.319352 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.140658 3.441768 -7.730563 - polarizability tensor 5.713597 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.607697 8.332921 -3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225663 5.733018 -0.256666 1.271657 -0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.437226 3.167268 -8.374362 - polarizability tensor 6.707221 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.037867 8.641401 -8.572568 - polarizability tensor 1.169671 -1.724727 0.923947 -2.191905 7.141823 -4.969365 0.687892 -2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.796542 7.983021 -3.100937 - polarizability tensor 5.399126 5.564498 0.213556 4.017191 5.082747 -0.297192 1.393777 0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.588177 7.743698 -2.535393 - polarizability tensor 10.702598 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.330072 2.097506 -2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.865186 1.663357 -2.738048 - polarizability tensor 9.556647 -3.699450 -1.931270 -3.986422 6.261107 1.285638 0.992071 -0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.022233 1.500266 -3.117975 - polarizability tensor 4.541349 -2.067478 1.036870 -1.580946 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.772656 8.965499 -7.987692 - polarizability tensor 2.204025 -0.653491 0.327503 -1.701255 5.540977 -4.544585 0.766864 -3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S -20.380949 -1.330125 31.071586 - znuc, mass 16.000000 31.972070 - - Atom A02C -18.525613 1.396925 31.477421 - znuc, mass 6.000000 12.000000 - - Atom A03C -19.489910 3.901095 31.549148 - znuc, mass 6.000000 12.000000 - - Atom A04S -22.752291 4.637811 31.182267 - znuc, mass 16.000000 31.972070 - - Atom A05C -23.584815 2.286400 28.936532 - znuc, mass 6.000000 12.000000 - - Atom A06C -22.613428 -0.109077 28.878785 - znuc, mass 6.000000 12.000000 - - Atom A07C -23.365091 -1.858266 26.994201 - znuc, mass 6.000000 12.000000 - - Atom A08N -23.982845 -3.343449 25.475349 - znuc, mass 7.000000 14.003070 - - Atom A09C -25.430469 3.043424 27.155068 - znuc, mass 6.000000 12.000000 - - Atom A10N -27.035557 3.653948 25.763629 - znuc, mass 7.000000 14.003070 - - Atom A11N -17.863954 5.747739 31.944902 - znuc, mass 7.000000 14.003070 - - Atom A12S -14.984952 4.554663 32.364716 - znuc, mass 16.000000 31.972070 - - Atom A13C -15.931758 1.431794 31.865841 - znuc, mass 6.000000 12.000000 - - Atom A14C -14.249339 -0.622786 31.852551 - znuc, mass 6.000000 12.000000 - - Atom A15N -12.841744 -2.325484 31.792741 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -20.380949 -1.330125 31.071586 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole 0.081100 0.120946 -0.015291 -0.151351 0.112179 -0.258142 -0.096888 0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -18.525613 1.396925 31.477421 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 -0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole -0.080562 -0.064792 -0.069734 0.081135 0.040643 0.191017 0.029091 -0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C -19.489910 3.901095 31.549148 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole 0.154202 0.066939 -0.010607 -0.076422 0.037680 -0.126335 -0.027074 -0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -22.752291 4.637811 31.182267 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 -0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole -0.376726 -0.162146 -0.007751 0.064505 -0.144810 0.217808 0.152561 0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -23.584815 2.286400 28.936532 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 -0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole -0.056685 0.087927 -0.028493 -0.015828 0.161274 0.009131 -0.132781 0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C -22.613428 -0.109077 28.878785 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 -0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole -0.001075 -0.050214 -0.014991 -0.047446 -0.160108 0.001747 0.175099 -0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -23.365091 -1.858266 26.994201 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 -0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole 0.066905 0.052623 0.037692 0.033015 0.046038 -0.056469 -0.083730 -0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -23.982845 -3.343449 25.475349 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole -0.024985 -0.019560 -0.010956 -0.010338 -0.013703 0.014533 0.024660 0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -25.430469 3.043424 27.155068 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole -0.000862 -0.071606 0.028175 0.027284 -0.078173 0.054551 0.049997 -0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -27.035557 3.653948 25.763629 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 -0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole -0.001131 0.023490 -0.018307 -0.014058 0.034435 -0.020126 -0.016128 0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -17.863954 5.747739 31.944902 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 -0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole -0.049872 -0.009996 0.025010 -0.027426 -0.025766 0.018699 0.000756 0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -14.984952 4.554663 32.364716 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 -0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole 0.079313 0.431186 -0.101331 -0.400784 0.037962 0.079017 0.063368 -0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -15.931758 1.431794 31.865841 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 -0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole 0.066522 -0.033296 0.033077 0.141141 -0.015825 -0.201472 -0.017252 0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -14.249339 -0.622786 31.852551 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 -0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole -0.082638 0.017348 0.002354 -0.067724 -0.011182 0.121329 0.008828 -0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -12.841744 -2.325484 31.792741 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole 0.020681 -0.004365 -0.003281 0.025182 0.001816 -0.038396 0.001465 0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -19.453281 0.033400 31.274503 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 -0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole 0.135031 -0.064489 0.081833 -0.097858 -0.020810 -0.250721 -0.061022 0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -19.007761 2.649010 31.513284 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 -0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole 0.006937 0.415001 0.020564 -0.384074 -0.195901 0.173547 0.175337 -0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -21.121100 4.269453 31.365707 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole -0.362347 0.032096 -0.067519 0.068455 -0.111862 0.234599 0.179381 0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -23.168553 3.462105 30.059399 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole -0.128236 -0.066192 -0.098878 -0.110011 -0.100435 0.054183 0.199314 0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -21.497189 -0.719601 29.975185 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 -0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole -0.150222 0.184993 0.116290 0.324246 0.434434 -0.009658 -0.550724 0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -23.099122 1.088662 28.907658 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole 0.190699 -0.292172 0.613901 0.301575 -0.166371 -0.195836 -0.447530 0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -22.989260 -0.983671 27.936493 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole 0.090233 0.197003 -0.239935 -0.184502 0.227647 -0.047722 0.012288 -0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -23.673968 -2.600857 26.234775 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 -0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole -0.091256 -0.060414 -0.057038 -0.055047 -0.054877 0.044246 0.111914 0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -24.507642 2.664912 28.045800 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole -0.091909 0.188995 -0.277331 -0.069309 -0.049758 0.131139 0.327089 -0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -26.233013 3.348686 26.459348 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole -0.040090 0.095467 -0.079919 -0.058683 0.126158 -0.051889 -0.046239 0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -18.676932 4.824417 31.747025 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 -0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole -0.344269 0.046395 0.191856 0.007750 -0.171132 0.125564 -0.020724 0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 -16.424453 5.151201 32.154809 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 -0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole -0.052482 0.017861 -0.101437 0.090246 0.034757 0.166574 0.066680 -0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -17.228685 1.414360 31.671631 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole 0.195067 -0.254353 0.246051 -0.014826 0.033884 -0.213914 -0.279935 0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -15.458355 2.993229 32.115278 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole -0.174029 0.208769 -0.072703 -0.067761 -0.017390 0.228215 0.090093 -0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 -15.090548 0.404504 31.859196 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole -0.138702 0.038897 -0.021776 -0.027862 -0.007098 0.125103 0.028874 0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -13.545541 -1.474135 31.822646 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 -0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole 0.084793 0.000751 -0.009942 0.105319 0.003154 -0.171502 0.006789 0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -19.097640 2.599261 31.486687 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -26.602290 2.944467 26.642941 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.827080 -1.764403 32.238939 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -24.234289 -2.579263 26.385811 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.567767 0.880237 29.220750 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.439399 4.885969 31.255529 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.596446 4.722878 31.635455 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.407026 0.145353 31.257052 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -21.035468 4.209593 31.342289 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.520352 2.687667 28.020022 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.058354 0.386808 31.876322 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.996813 -1.009688 27.916692 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.364286 1.392603 32.232981 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.422313 2.827740 32.099853 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.168071 3.349220 29.965816 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.161538 1.508206 31.101232 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -21.562640 -0.637174 29.886424 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.669764 1.263009 28.521541 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.409525 -2.848026 31.776405 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -27.525287 3.842599 25.335067 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.170893 -3.797662 25.009608 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.688550 5.183033 32.106919 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.929929 6.396648 31.993285 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.131560 4.288729 31.935679 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.664985 -1.596696 31.272526 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -25.898858 3.218967 25.999142 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -20.873455 -1.357463 31.838111 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -26.268976 3.897331 26.657170 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.328963 -3.027089 26.433697 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.081261 -1.150117 31.956012 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.853935 -1.946686 30.590634 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.805674 5.450007 30.716646 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.944619 4.529718 33.198059 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.624872 4.784860 32.281745 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.499498 -2.255167 25.800936 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S -11.161354 -7.716360 26.217588 - znuc, mass 16.000000 31.972070 - - Atom A02C -13.016690 -4.989310 25.811752 - znuc, mass 6.000000 12.000000 - - Atom A03C -12.052393 -2.485140 25.740026 - znuc, mass 6.000000 12.000000 - - Atom A04S -8.790012 -1.748424 26.106907 - znuc, mass 16.000000 31.972070 - - Atom A05C -7.957488 -4.099835 28.352642 - znuc, mass 6.000000 12.000000 - - Atom A06C -8.928875 -6.495312 28.410388 - znuc, mass 6.000000 12.000000 - - Atom A07C -8.177212 -8.244501 30.294972 - znuc, mass 6.000000 12.000000 - - Atom A08N -7.559458 -9.729684 31.813824 - znuc, mass 7.000000 14.003070 - - Atom A09C -6.111834 -3.342811 30.134105 - znuc, mass 6.000000 12.000000 - - Atom A10N -4.506746 -2.732287 31.525545 - znuc, mass 7.000000 14.003070 - - Atom A11N -13.678350 -0.638496 25.344272 - znuc, mass 7.000000 14.003070 - - Atom A12S -16.557351 -1.831572 24.924458 - znuc, mass 16.000000 31.972070 - - Atom A13C -15.610545 -4.954441 25.423332 - znuc, mass 6.000000 12.000000 - - Atom A14C -17.292965 -7.009021 25.436623 - znuc, mass 6.000000 12.000000 - - Atom A15N -18.700559 -8.711719 25.496432 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -11.161354 -7.716360 26.217588 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole -0.081100 0.120946 0.015291 -0.151351 -0.112179 0.258142 0.096888 -0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -13.016690 -4.989310 25.811752 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 -0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole 0.080562 -0.064792 0.069734 0.081135 -0.040643 -0.191017 -0.029091 0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C -12.052393 -2.485140 25.740026 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole -0.154202 0.066939 0.010607 -0.076422 -0.037680 0.126335 0.027074 0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -8.790012 -1.748424 26.106907 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 -0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole 0.376726 -0.162146 0.007751 0.064505 0.144810 -0.217808 -0.152561 -0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -7.957488 -4.099835 28.352642 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 -0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole 0.056685 0.087927 0.028493 -0.015828 -0.161274 -0.009131 0.132781 -0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C -8.928875 -6.495312 28.410388 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 -0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole 0.001075 -0.050214 0.014991 -0.047446 0.160108 -0.001747 -0.175099 0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -8.177212 -8.244501 30.294972 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 -0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole -0.066905 0.052623 -0.037692 0.033015 -0.046038 0.056469 0.083730 0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -7.559458 -9.729684 31.813824 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole 0.024985 -0.019560 0.010956 -0.010338 0.013703 -0.014533 -0.024660 -0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -6.111834 -3.342811 30.134105 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole 0.000862 -0.071606 -0.028175 0.027284 0.078173 -0.054551 -0.049997 0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -4.506746 -2.732287 31.525545 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 -0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole 0.001131 0.023490 0.018307 -0.014058 -0.034435 0.020126 0.016128 -0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -13.678350 -0.638496 25.344272 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 -0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole 0.049872 -0.009996 -0.025010 -0.027426 0.025766 -0.018699 -0.000756 -0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -16.557351 -1.831572 24.924458 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 -0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole -0.079313 0.431186 0.101331 -0.400784 -0.037962 -0.079017 -0.063368 0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -15.610545 -4.954441 25.423332 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 -0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole -0.066522 -0.033296 -0.033077 0.141141 0.015825 0.201472 0.017252 -0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -17.292965 -7.009021 25.436623 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 -0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole 0.082638 0.017348 -0.002354 -0.067724 0.011182 -0.121329 -0.008828 0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -18.700559 -8.711719 25.496432 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole -0.020681 -0.004365 0.003281 0.025182 -0.001816 0.038396 -0.001465 -0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -12.089022 -6.352835 26.014670 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 -0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole -0.135031 -0.064489 -0.081833 -0.097858 0.020810 0.250721 0.061022 -0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -12.534542 -3.737225 25.775889 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 -0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole -0.006937 0.415001 -0.020564 -0.384074 0.195901 -0.173547 -0.175337 0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -10.421203 -2.116782 25.923466 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole 0.362347 0.032096 0.067519 0.068455 0.111862 -0.234599 -0.179381 -0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -8.373750 -2.924129 27.229774 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole 0.128236 -0.066192 0.098878 -0.110011 0.100435 -0.054183 -0.199314 -0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -10.045114 -7.105836 27.313988 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 -0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole 0.150222 0.184993 -0.116290 0.324246 -0.434434 0.009658 0.550724 -0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -8.443181 -5.297573 28.381515 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole -0.190699 -0.292172 -0.613901 0.301575 0.166371 0.195836 0.447530 -0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -8.553043 -7.369906 29.352680 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole -0.090233 0.197003 0.239935 -0.184502 -0.227647 0.047722 -0.012288 0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -7.868335 -8.987092 31.054398 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 -0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole 0.091256 -0.060414 0.057038 -0.055047 0.054877 -0.044246 -0.111914 -0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -7.034661 -3.721323 29.243374 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole 0.091909 0.188995 0.277331 -0.069309 0.049758 -0.131139 -0.327089 0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -5.309290 -3.037549 30.829825 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole 0.040090 0.095467 0.079919 -0.058683 -0.126158 0.051889 0.046239 -0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -12.865372 -1.561818 25.542149 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 -0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole 0.344269 0.046395 -0.191856 0.007750 0.171132 -0.125564 0.020724 -0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 -15.117850 -1.235034 25.134365 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 -0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole 0.052482 0.017861 0.101437 0.090246 -0.034757 -0.166574 -0.066680 0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -14.313618 -4.971875 25.617542 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole -0.195067 -0.254353 -0.246051 -0.014826 -0.033884 0.213914 0.279935 -0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -16.083948 -3.393006 25.173895 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole 0.174029 0.208769 0.072703 -0.067761 0.017390 -0.228215 -0.090093 0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 -16.451755 -5.981731 25.429977 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole 0.138702 0.038897 0.021776 -0.027862 0.007098 -0.125103 -0.028874 -0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -17.996762 -7.860370 25.466528 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 -0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole -0.084793 0.000751 0.009942 0.105319 -0.003154 0.171502 -0.006789 -0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -12.444663 -3.786974 25.802487 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -4.940013 -3.441768 30.646232 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.715223 -8.150638 25.050235 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -7.308014 -8.965498 30.903362 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.974536 -5.505998 28.068423 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.102904 -1.500266 26.033644 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.945857 -1.663357 25.653718 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.135277 -6.240882 26.032121 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.506836 -2.176641 25.946884 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.021951 -3.698568 29.269151 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.483949 -5.999427 25.412851 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.545491 -7.395923 29.372481 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.178017 -4.993632 25.056192 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.119990 -3.558495 25.189320 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.374232 -3.037015 27.323358 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.380765 -4.878029 26.187941 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.979663 -7.023409 27.402749 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.872539 -5.123226 28.767632 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.132779 -9.234261 25.512769 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.017016 -2.543636 31.954106 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.371411 -10.183897 32.279566 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.853753 -1.203202 25.182254 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.612374 0.010413 25.295888 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.410744 -2.097506 25.353494 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.877318 -7.982931 26.016647 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.643445 -3.167268 31.290032 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.668848 -7.743698 25.451063 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.273328 -2.488904 30.632003 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.213340 -9.413324 30.855477 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.461042 -7.536352 25.333161 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.688368 -8.332921 26.698539 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.736629 -0.936228 26.572528 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.597684 -1.856517 24.091115 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.917431 -1.601375 25.007429 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.042805 -8.641402 31.488237 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 4.219605 1.330125 14.759753 - znuc, mass 16.000000 31.972070 - - Atom A02C 2.364270 -1.396926 14.353917 - znuc, mass 6.000000 12.000000 - - Atom A03C 3.328568 -3.901096 14.282191 - znuc, mass 6.000000 12.000000 - - Atom A04S 6.590950 -4.637810 14.649073 - znuc, mass 16.000000 31.972070 - - Atom A05C 7.423473 -2.286399 16.894808 - znuc, mass 6.000000 12.000000 - - Atom A06C 6.452084 0.109078 16.952554 - znuc, mass 6.000000 12.000000 - - Atom A07C 7.203746 1.858268 18.837138 - znuc, mass 6.000000 12.000000 - - Atom A08N 7.821499 3.343451 20.355990 - znuc, mass 7.000000 14.003070 - - Atom A09C 9.269126 -3.043422 18.676272 - znuc, mass 6.000000 12.000000 - - Atom A10N 10.874214 -3.653944 20.067712 - znuc, mass 7.000000 14.003070 - - Atom A11N 1.702613 -5.747741 13.886437 - znuc, mass 7.000000 14.003070 - - Atom A12S -1.176389 -4.554665 13.466623 - znuc, mass 16.000000 31.972070 - - Atom A13C -0.229585 -1.431796 13.965497 - znuc, mass 6.000000 12.000000 - - Atom A14C -1.912005 0.622783 13.978787 - znuc, mass 6.000000 12.000000 - - Atom A15N -3.319600 2.325480 14.038596 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 4.219605 1.330125 14.759753 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 -1.019605 0.491700 - duadrupole 0.200252 0.667129 -0.867381 0.820424 2.014536 -0.644901 - octupole -0.081100 -0.120945 0.015291 0.151350 -0.112179 0.258142 0.096888 -0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 2.364270 -1.396926 14.353917 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026088 0.009793 - octupole 0.080562 0.064792 0.069734 -0.081134 -0.040643 -0.191017 -0.029091 0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 3.328568 -3.901096 14.282191 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 -0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole -0.154202 -0.066939 0.010607 0.076422 -0.037680 0.126335 0.027074 0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 6.590950 -4.637810 14.649073 - znuc, monopole 16.000000 -15.424149 - dipole -0.645105 0.702589 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883321 - octupole 0.376726 0.162146 0.007751 -0.064504 0.144810 -0.217808 -0.152561 -0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 7.423473 -2.286399 16.894808 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 0.012964 0.126299 - duadrupole -0.086713 0.172782 -0.086070 -0.198246 0.015502 0.024956 - octupole 0.056685 -0.087927 0.028493 0.015828 -0.161274 -0.009131 0.132781 -0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 6.452084 0.109078 16.952554 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole 0.001075 0.050214 0.014991 0.047446 0.160109 -0.001747 -0.175100 0.000672 -0.097661 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 7.203746 1.858268 18.837138 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole -0.066905 -0.052623 -0.037692 -0.033015 -0.046038 0.056469 0.083730 0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 7.821499 3.343451 20.355990 - znuc, monopole 7.000000 -6.844356 - dipole -0.128196 -0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole 0.024985 0.019560 0.010956 0.010338 0.013703 -0.014533 -0.024660 -0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 9.269126 -3.043422 18.676272 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 -0.134363 0.337213 - duadrupole 0.044076 -0.065351 0.021276 0.052673 0.059479 0.009395 - octupole 0.000862 0.071606 -0.028175 -0.027284 0.078173 -0.054551 -0.049998 0.053689 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 10.874214 -3.653944 20.067712 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole 0.001131 -0.023490 0.018307 0.014058 -0.034435 0.020126 0.016128 -0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 1.702613 -5.747741 13.886437 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109388 -0.037751 - octupole 0.049872 0.009996 -0.025010 0.027426 0.025766 -0.018699 -0.000756 -0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -1.176389 -4.554665 13.466623 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 0.461479 0.227968 - duadrupole 0.657691 1.380421 -2.038112 -0.516799 0.477705 0.276530 - octupole -0.079313 -0.431186 0.101331 0.400784 -0.037962 -0.079016 -0.063368 0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -0.229585 -1.431796 13.965497 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 0.118662 -0.023762 - duadrupole 0.102512 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole -0.066522 0.033296 -0.033078 -0.141141 0.015825 0.201472 0.017252 -0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -1.912005 0.622783 13.978787 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 0.447125 0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole 0.082638 -0.017348 -0.002354 0.067724 0.011182 -0.121329 -0.008828 0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -3.319600 2.325480 14.038596 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 -0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013044 0.009826 - octupole -0.020681 0.004365 0.003281 -0.025182 -0.001816 0.038396 -0.001465 -0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 3.291938 -0.033400 14.556835 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 0.204132 -0.059744 - duadrupole -0.127967 0.303138 -0.175171 0.361286 0.022579 0.002456 - octupole -0.135031 0.064490 -0.081833 0.097857 0.020810 0.250721 0.061023 -0.115690 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 2.846419 -2.649011 14.318054 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099040 0.017364 - octupole -0.006938 -0.415001 -0.020563 0.384074 0.195901 -0.173546 -0.175337 0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 4.959759 -4.269453 14.465632 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 -0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole 0.362347 -0.032097 0.067519 -0.068455 0.111862 -0.234600 -0.179381 -0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 7.007211 -3.462104 15.771940 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 -0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121103 0.078949 0.001930 0.434804 - octupole 0.128235 0.066191 0.098878 0.110012 0.100436 -0.054183 -0.199314 -0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 5.335845 0.719602 15.856154 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 0.216246 -0.112894 - duadrupole 0.231615 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole 0.150223 -0.184993 -0.116290 -0.324246 -0.434434 0.009658 0.550724 -0.159881 0.509238 0.036069 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 6.937778 -1.088660 16.923681 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 -0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole -0.190699 0.292172 -0.613901 -0.301576 0.166371 0.195835 0.447530 -0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 6.827915 0.983673 17.894846 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 -0.079077 -0.047152 - duadrupole 0.177104 0.006089 -0.183194 -0.206575 0.019465 -0.143936 - octupole -0.090233 -0.197003 0.239935 0.184502 -0.227648 0.047722 -0.012288 0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 7.512622 2.600859 19.596564 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 0.228151 0.227536 - duadrupole -0.226596 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole 0.091256 0.060414 0.057038 0.055047 0.054877 -0.044246 -0.111914 -0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 8.346300 -2.664910 17.785540 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 -0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142766 -0.071307 0.108121 - octupole 0.091909 -0.188995 0.277331 0.069309 0.049758 -0.131139 -0.327089 0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 10.071670 -3.348683 19.371992 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 -0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole 0.040090 -0.095467 0.079919 0.058683 -0.126158 0.051889 0.046239 -0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 2.515590 -4.824418 14.084314 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 0.115721 0.003434 - duadrupole 0.270648 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole 0.344269 -0.046395 -0.191856 -0.007750 0.171132 -0.125564 0.020724 -0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 0.263112 -5.151203 13.676530 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 0.026718 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole 0.052482 -0.017862 0.101437 -0.090246 -0.034757 -0.166575 -0.066680 0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 1.067343 -1.414361 14.159707 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 -0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole -0.195067 0.254354 -0.246051 0.014825 -0.033884 0.213914 0.279935 -0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -0.702987 -2.993231 13.716060 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 -0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole 0.174029 -0.208769 0.072703 0.067761 0.017390 -0.228215 -0.090093 0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 -1.070795 -0.404507 13.972142 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 -0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole 0.138702 -0.038897 0.021776 0.027863 0.007098 -0.125103 -0.028874 -0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -2.615803 1.474132 14.008692 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 0.265565 0.005667 - duadrupole 0.053653 0.238490 -0.292143 -0.457319 -0.029902 0.030180 - octupole -0.084792 -0.000751 0.009942 -0.105320 -0.003154 0.171502 -0.006789 -0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 2.463531 -4.784861 13.549594 - polarizability tensor 4.528424 1.917551 0.356759 1.444128 6.305472 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 10.107633 -3.897328 19.174170 - polarizability tensor 3.614271 -1.113333 2.917217 -0.029793 1.821479 0.641372 2.940226 -0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.334346 1.764332 13.592298 - polarizability tensor 5.676904 -5.144008 -0.727141 -3.339388 4.987137 -0.427750 -0.708035 -0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 7.167617 3.027091 19.397643 - polarizability tensor 2.014659 1.411522 2.754673 0.096191 2.864917 1.368381 1.742510 2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.359009 -2.687665 17.811318 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536299 1.326286 -0.648852 1.549497 -0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.102989 -0.386810 13.955016 - polarizability tensor 2.247828 -1.783499 0.065363 -1.149026 2.379896 0.043699 0.251241 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.527209 -5.183035 13.724420 - polarizability tensor 5.239487 -1.239561 0.807464 -0.101560 1.234380 0.089842 1.195631 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.245682 -0.145353 14.574286 - polarizability tensor 5.018067 4.875224 1.088491 1.811907 4.579786 0.228246 1.487331 1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.874126 -4.209593 14.489050 - polarizability tensor 9.182809 -1.751286 0.995508 -0.084237 1.828484 0.387734 2.027093 0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.835468 1.009690 17.914647 - polarizability tensor 1.671051 0.572015 1.296469 0.542823 2.162529 1.769890 1.031019 1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.936298 -2.599261 14.344652 - polarizability tensor 3.009105 -0.265453 0.164855 -0.392052 2.422902 0.078852 0.571863 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.508421 -1.263007 17.309798 - polarizability tensor 5.263037 -4.454329 1.663069 -4.279634 13.403258 0.812801 1.522053 0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.000195 -1.508207 14.730106 - polarizability tensor 13.654116 -2.638423 1.355104 -2.419214 4.125879 0.076557 2.653092 -0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.739029 -2.827742 13.731485 - polarizability tensor 2.960545 0.866099 0.523975 1.061800 5.117296 0.710667 0.733477 0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.401296 0.637175 15.944915 - polarizability tensor 5.617929 -1.381554 4.877276 -1.251780 2.735770 -1.290944 3.659516 -1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.202943 -1.392605 13.598357 - polarizability tensor 12.949896 -2.646490 1.785363 -2.381876 4.179637 -0.329227 2.420663 -0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.006729 -3.349219 15.865524 - polarizability tensor 3.040417 1.393146 2.596746 0.925311 4.759664 3.665080 1.764101 3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.406423 -0.880236 16.610589 - polarizability tensor 4.688607 -4.661428 1.698768 -4.460102 13.263283 0.923066 0.789241 0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.751820 2.848022 14.054933 - polarizability tensor 2.586920 -0.528103 -0.018359 -0.362647 2.294262 -0.043707 0.109841 -0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.363944 -3.842595 20.496273 - polarizability tensor 2.625149 -0.213208 0.424935 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.009546 3.797665 20.821732 - polarizability tensor 2.080856 0.280706 0.149350 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.216721 -4.529720 12.633279 - polarizability tensor 8.609786 3.161439 4.330873 3.390210 5.869745 2.969762 2.433189 1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.644333 -5.450006 15.114694 - polarizability tensor 5.800146 -0.752295 1.186095 0.172145 7.005037 0.548345 0.964192 0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.768589 -6.396649 13.838054 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321947 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.080107 1.150091 13.875466 - polarizability tensor 3.548724 -1.577098 0.269188 -2.005619 4.318439 0.319351 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.440947 -2.944464 19.188399 - polarizability tensor 5.713598 -1.433755 3.432521 -2.871854 2.858065 -3.181668 3.126669 -2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.692591 1.946686 15.240704 - polarizability tensor 6.533271 0.444461 1.547291 -1.225663 5.733017 0.256666 1.271658 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.737515 -3.218964 19.832198 - polarizability tensor 6.707222 -2.929001 4.115173 -3.681834 2.332214 -2.837643 2.110817 -1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.338154 2.255168 20.030403 - polarizability tensor 1.169669 1.724724 0.923944 2.191901 7.141826 4.969366 0.687890 2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.496254 1.596783 14.558771 - polarizability tensor 5.399130 -5.564497 0.213557 -4.017191 5.082742 0.297191 1.393778 -0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.712111 1.357463 13.993228 - polarizability tensor 10.702596 1.789313 3.005774 -0.514549 5.742470 -3.210321 2.108866 -0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.970218 -4.288727 13.895660 - polarizability tensor 8.115953 0.753025 -0.167711 1.550833 6.978558 4.365403 0.764813 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.564896 -4.722881 14.195882 - polarizability tensor 9.556643 3.699452 -1.931269 3.986424 6.261110 -1.285638 0.992072 0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.278058 -4.885970 14.575810 - polarizability tensor 4.541347 2.067477 1.036870 1.580945 6.187413 0.395977 1.497097 1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.072943 2.579266 19.445527 - polarizability tensor 2.204024 0.653489 0.327501 1.701252 5.540979 4.544585 0.766862 3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S -4.999989 7.716360 19.613751 - znuc, mass 16.000000 31.972070 - - Atom A02C -3.144653 4.989309 20.019587 - znuc, mass 6.000000 12.000000 - - Atom A03C -4.108951 2.485139 20.091313 - znuc, mass 6.000000 12.000000 - - Atom A04S -7.371333 1.748425 19.724431 - znuc, mass 16.000000 31.972070 - - Atom A05C -8.203856 4.099836 17.478696 - znuc, mass 6.000000 12.000000 - - Atom A06C -7.232468 6.495313 17.420950 - znuc, mass 6.000000 12.000000 - - Atom A07C -7.984129 8.244503 15.536366 - znuc, mass 6.000000 12.000000 - - Atom A08N -8.601882 9.729686 14.017514 - znuc, mass 7.000000 14.003070 - - Atom A09C -10.049510 3.342813 15.697232 - znuc, mass 6.000000 12.000000 - - Atom A10N -11.654598 2.732291 14.305792 - znuc, mass 7.000000 14.003070 - - Atom A11N -2.482996 0.638494 20.487067 - znuc, mass 7.000000 14.003070 - - Atom A12S 0.396006 1.831570 20.906881 - znuc, mass 16.000000 31.972070 - - Atom A13C -0.550798 4.954439 20.408007 - znuc, mass 6.000000 12.000000 - - Atom A14C 1.131622 7.009018 20.394717 - znuc, mass 6.000000 12.000000 - - Atom A15N 2.539217 8.711715 20.334908 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -4.999989 7.716360 19.613751 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 -1.019605 -0.491700 - duadrupole 0.200252 0.667129 -0.867381 -0.820424 2.014536 0.644901 - octupole 0.081100 -0.120945 -0.015291 0.151350 0.112179 -0.258142 -0.096888 0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -3.144653 4.989309 20.019587 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026088 -0.009793 - octupole -0.080562 0.064792 -0.069734 -0.081134 0.040643 0.191017 0.029091 -0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C -4.108951 2.485139 20.091313 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 -0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole 0.154202 -0.066939 -0.010607 0.076422 0.037680 -0.126335 -0.027074 -0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -7.371333 1.748425 19.724431 - znuc, monopole 16.000000 -15.424149 - dipole 0.645105 0.702589 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883321 - octupole -0.376726 0.162146 -0.007751 -0.064504 -0.144810 0.217808 0.152561 0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -8.203856 4.099836 17.478696 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 0.012964 -0.126299 - duadrupole -0.086713 0.172782 -0.086070 0.198246 0.015502 -0.024956 - octupole -0.056685 -0.087927 -0.028493 0.015828 0.161274 0.009131 -0.132781 0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C -7.232468 6.495313 17.420950 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole -0.001075 0.050214 -0.014991 0.047446 -0.160109 0.001747 0.175100 -0.000672 -0.097661 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -7.984129 8.244503 15.536366 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole 0.066905 -0.052623 0.037692 -0.033015 0.046038 -0.056469 -0.083730 -0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -8.601882 9.729686 14.017514 - znuc, monopole 7.000000 -6.844356 - dipole 0.128196 -0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole -0.024985 0.019560 -0.010956 0.010338 -0.013703 0.014533 0.024660 0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -10.049510 3.342813 15.697232 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 -0.134363 -0.337213 - duadrupole 0.044076 -0.065351 0.021276 -0.052673 0.059479 -0.009395 - octupole -0.000862 0.071606 0.028175 -0.027284 -0.078173 0.054551 0.049998 -0.053689 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -11.654598 2.732291 14.305792 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole -0.001131 -0.023490 -0.018307 0.014058 0.034435 -0.020126 -0.016128 0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -2.482996 0.638494 20.487067 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109388 0.037751 - octupole -0.049872 0.009996 0.025010 0.027426 -0.025766 0.018699 0.000756 0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 0.396006 1.831570 20.906881 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 0.461479 -0.227968 - duadrupole 0.657691 1.380421 -2.038112 0.516799 0.477705 -0.276530 - octupole 0.079313 -0.431186 -0.101331 0.400784 0.037962 0.079016 0.063368 -0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -0.550798 4.954439 20.408007 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 0.118662 0.023762 - duadrupole 0.102512 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole 0.066522 0.033296 0.033078 -0.141141 -0.015825 -0.201472 -0.017252 0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 1.131622 7.009018 20.394717 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 0.447125 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole -0.082638 -0.017348 0.002354 0.067724 -0.011182 0.121329 0.008828 -0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 2.539217 8.711715 20.334908 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 -0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013044 -0.009826 - octupole 0.020681 0.004365 -0.003281 -0.025182 0.001816 -0.038396 0.001465 0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -4.072321 6.352835 19.816669 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 0.204132 0.059744 - duadrupole -0.127967 0.303138 -0.175171 -0.361286 0.022579 -0.002456 - octupole 0.135031 0.064490 0.081833 0.097857 -0.020810 -0.250721 -0.061023 0.115690 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -3.626802 3.737224 20.055450 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099040 -0.017364 - octupole 0.006938 -0.415001 0.020563 0.384074 -0.195901 0.173546 0.175337 -0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -5.740142 2.116782 19.907872 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 -0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole -0.362347 -0.032097 -0.067519 -0.068455 -0.111862 0.234600 0.179381 0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -7.787594 2.924131 18.601564 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 -0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121103 -0.078949 0.001930 -0.434804 - octupole -0.128235 0.066191 -0.098878 0.110012 -0.100436 0.054183 0.199314 0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -6.116228 7.105837 18.517351 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 0.216246 0.112894 - duadrupole 0.231615 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole -0.150223 -0.184993 0.116290 -0.324246 0.434434 -0.009658 -0.550724 0.159881 0.509238 0.036069 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -7.718162 5.297575 17.449823 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 -0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole 0.190699 0.292172 0.613901 -0.301576 -0.166371 -0.195835 -0.447530 0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 -7.608298 7.369908 16.478658 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 -0.079077 0.047152 - duadrupole 0.177104 0.006089 -0.183194 0.206575 0.019465 0.143936 - octupole 0.090233 -0.197003 -0.239935 0.184502 0.227648 -0.047722 0.012288 -0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -8.293006 8.987094 14.776940 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 0.228151 -0.227536 - duadrupole -0.226596 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole -0.091256 0.060414 -0.057038 0.055047 -0.054877 0.044246 0.111914 0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -9.126683 3.721325 16.587964 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 -0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142766 -0.071307 -0.108121 - octupole -0.091909 -0.188995 -0.277331 0.069309 -0.049758 0.131139 0.327089 -0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -10.852054 3.037552 15.001512 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 -0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole -0.040090 -0.095467 -0.079919 0.058683 0.126158 -0.051889 -0.046239 0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -3.295974 1.561817 20.289190 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 0.115721 -0.003434 - duadrupole 0.270648 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole -0.344269 -0.046395 0.191856 -0.007750 -0.171132 0.125564 -0.020724 0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 -1.043495 1.235032 20.696974 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 0.026718 0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole -0.052482 -0.017862 -0.101437 -0.090246 0.034757 0.166575 0.066680 -0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -1.847726 4.971874 20.213797 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 -0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole 0.195067 0.254354 0.246051 0.014825 0.033884 -0.213914 -0.279935 0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -0.077396 3.393004 20.657444 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 -0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole -0.174029 -0.208769 -0.072703 0.067761 -0.017390 0.228215 0.090093 -0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 0.290412 5.981728 20.401362 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 -0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole -0.138702 -0.038897 -0.021776 0.027863 -0.007098 0.125103 0.028874 0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 1.835420 7.860367 20.364812 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 0.265565 -0.005667 - duadrupole 0.053653 0.238490 -0.292143 0.457319 -0.029902 -0.030180 - octupole 0.084792 -0.000751 -0.009942 -0.105320 0.003154 -0.171502 0.006789 0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -3.243914 1.601374 20.823910 - polarizability tensor 4.528424 -1.917551 0.356759 -1.444128 6.305472 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -10.888016 2.488907 15.199334 - polarizability tensor 3.614271 1.113333 2.917217 0.029793 1.821479 -0.641372 2.940226 0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.553962 8.150567 20.781206 - polarizability tensor 5.676904 5.144008 -0.727141 3.339388 4.987137 0.427750 -0.708035 0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -7.948000 9.413326 14.975861 - polarizability tensor 2.014659 -1.411522 2.754673 -0.096191 2.864917 -1.368381 1.742510 -2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.139393 3.698570 16.562186 - polarizability tensor 2.644773 0.420648 2.214495 0.536299 1.326286 0.648852 1.549497 0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.322606 5.999425 20.418488 - polarizability tensor 2.247828 1.783499 0.065363 1.149026 2.379896 -0.043699 0.251241 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.307592 1.203200 20.649084 - polarizability tensor 5.239487 1.239561 0.807464 0.101560 1.234380 -0.089842 1.195631 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.026065 6.240882 19.799218 - polarizability tensor 5.018067 -4.875224 1.088491 -1.811907 4.579786 -0.228246 1.487331 -1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.654509 2.176642 19.884454 - polarizability tensor 9.182809 1.751286 0.995508 0.084237 1.828484 -0.387734 2.027093 -0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.615851 7.395925 16.458857 - polarizability tensor 1.671051 -0.572015 1.296469 -0.542823 2.162529 -1.769890 1.031019 -1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.716681 3.786974 20.028852 - polarizability tensor 3.009105 0.265453 0.164855 0.392052 2.422902 -0.078852 0.571863 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.288804 5.123228 17.063706 - polarizability tensor 5.263037 4.454329 1.663069 4.279634 13.403258 -0.812801 1.522053 -0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.780578 4.878028 19.643398 - polarizability tensor 13.654116 2.638423 1.355104 2.419214 4.125879 -0.076557 2.653092 0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.041354 3.558492 20.642019 - polarizability tensor 2.960545 -0.866099 0.523975 -1.061800 5.117296 -0.710667 0.733477 -0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.181679 7.023410 18.428589 - polarizability tensor 5.617929 1.381554 4.877276 1.251780 2.735770 1.290944 3.659516 1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.983327 4.993630 20.775147 - polarizability tensor 12.949896 2.646490 1.785363 2.381876 4.179637 0.329227 2.420663 0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.787112 3.037016 18.507980 - polarizability tensor 3.040417 -1.393146 2.596746 -0.925311 4.759664 -3.665080 1.764101 -3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.186806 5.505999 17.762915 - polarizability tensor 4.688607 4.661428 1.698768 4.460102 13.263283 -0.923066 0.789241 -0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.971437 9.234257 20.318571 - polarizability tensor 2.586920 0.528103 -0.018359 0.362647 2.294262 0.043707 0.109841 0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.144327 2.543640 13.877231 - polarizability tensor 2.625149 0.213208 0.424935 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.789929 10.183899 13.551772 - polarizability tensor 2.080856 -0.280706 0.149350 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.436338 1.856515 21.740225 - polarizability tensor 8.609786 -3.161439 4.330873 -3.390210 5.869745 -2.969762 2.433189 -1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.424716 0.936229 19.258810 - polarizability tensor 5.800146 0.752295 1.186095 -0.172145 7.005037 -0.548345 0.964192 -0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.548972 -0.010414 20.535450 - polarizability tensor 2.238895 0.092051 0.189597 0.321947 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.299723 7.536326 20.498038 - polarizability tensor 3.548724 1.577098 0.269188 2.005619 4.318439 -0.319351 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.221331 3.441771 15.185105 - polarizability tensor 5.713598 1.433755 3.432521 2.871854 2.858065 3.181668 3.126669 2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.472974 8.332921 19.132800 - polarizability tensor 6.533271 -0.444461 1.547291 1.225663 5.733017 -0.256666 1.271658 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.517899 3.167271 14.541306 - polarizability tensor 6.707222 2.929001 4.115173 3.681834 2.332214 2.837643 2.110817 1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.118537 8.641403 14.343101 - polarizability tensor 1.169669 -1.724724 0.923944 -2.191901 7.141826 -4.969366 0.687890 -2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.715871 7.983018 19.814733 - polarizability tensor 5.399130 5.564497 0.213557 4.017191 5.082742 -0.297191 1.393778 0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.492494 7.743698 20.380276 - polarizability tensor 10.702596 -1.789313 3.005774 0.514549 5.742470 3.210321 2.108866 0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.750601 2.097508 20.477844 - polarizability tensor 8.115953 -0.753025 -0.167711 -1.550833 6.978558 -4.365403 0.764813 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.784513 1.663354 20.177622 - polarizability tensor 9.556643 -3.699452 -1.931269 -3.986424 6.261110 1.285638 0.992072 -0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.058441 1.500265 19.797694 - polarizability tensor 4.541347 -2.067477 1.036870 -1.580945 6.187413 -0.395977 1.497097 -1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.853326 8.965501 14.927977 - polarizability tensor 2.204024 -0.653489 0.327501 -1.701252 5.540979 -4.544585 0.766862 -3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S -12.300278 11.442345 8.155916 - znuc, mass 16.000000 31.972070 - - Atom A02C -10.444942 14.169395 8.561752 - znuc, mass 6.000000 12.000000 - - Atom A03C -11.409239 16.673565 8.633478 - znuc, mass 6.000000 12.000000 - - Atom A04S -14.671620 17.410281 8.266597 - znuc, mass 16.000000 31.972070 - - Atom A05C -15.504144 15.058870 6.020862 - znuc, mass 6.000000 12.000000 - - Atom A06C -14.532757 12.663393 5.963116 - znuc, mass 6.000000 12.000000 - - Atom A07C -15.284420 10.914204 4.078532 - znuc, mass 6.000000 12.000000 - - Atom A08N -15.902174 9.429021 2.559680 - znuc, mass 7.000000 14.003070 - - Atom A09C -17.349798 15.815894 4.239399 - znuc, mass 6.000000 12.000000 - - Atom A10N -18.954886 16.426418 2.847959 - znuc, mass 7.000000 14.003070 - - Atom A11N -9.783282 18.520209 9.029232 - znuc, mass 7.000000 14.003070 - - Atom A12S -6.904281 17.327133 9.449046 - znuc, mass 16.000000 31.972070 - - Atom A13C -7.851087 14.204264 8.950172 - znuc, mass 6.000000 12.000000 - - Atom A14C -6.168667 12.149684 8.936881 - znuc, mass 6.000000 12.000000 - - Atom A15N -4.761073 10.446986 8.877072 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -12.300278 11.442345 8.155916 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole 0.081100 0.120946 -0.015291 -0.151351 0.112179 -0.258142 -0.096888 0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -10.444942 14.169395 8.561752 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 -0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole -0.080562 -0.064792 -0.069734 0.081135 0.040643 0.191017 0.029091 -0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C -11.409239 16.673565 8.633478 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole 0.154202 0.066939 -0.010607 -0.076422 0.037680 -0.126335 -0.027074 -0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -14.671620 17.410281 8.266597 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 -0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole -0.376726 -0.162146 -0.007751 0.064505 -0.144810 0.217808 0.152561 0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -15.504144 15.058870 6.020862 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 -0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole -0.056685 0.087927 -0.028493 -0.015828 0.161274 0.009131 -0.132781 0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C -14.532757 12.663393 5.963116 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 -0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole -0.001075 -0.050214 -0.014991 -0.047446 -0.160108 0.001747 0.175099 -0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -15.284420 10.914204 4.078532 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 -0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole 0.066905 0.052623 0.037692 0.033015 0.046038 -0.056469 -0.083730 -0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -15.902174 9.429021 2.559680 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole -0.024985 -0.019560 -0.010956 -0.010338 -0.013703 0.014533 0.024660 0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -17.349798 15.815894 4.239399 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole -0.000862 -0.071606 0.028175 0.027284 -0.078173 0.054551 0.049997 -0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -18.954886 16.426418 2.847959 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 -0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole -0.001131 0.023490 -0.018307 -0.014058 0.034435 -0.020126 -0.016128 0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -9.783282 18.520209 9.029232 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 -0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole -0.049872 -0.009996 0.025010 -0.027426 -0.025766 0.018699 0.000756 0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -6.904281 17.327133 9.449046 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 -0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole 0.079313 0.431186 -0.101331 -0.400784 0.037962 0.079017 0.063368 -0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -7.851087 14.204264 8.950172 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 -0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole 0.066522 -0.033296 0.033077 0.141141 -0.015825 -0.201472 -0.017252 0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -6.168667 12.149684 8.936881 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 -0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole -0.082638 0.017348 0.002354 -0.067724 -0.011182 0.121329 0.008828 -0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -4.761073 10.446986 8.877072 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole 0.020681 -0.004365 -0.003281 0.025182 0.001816 -0.038396 0.001465 0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -11.372610 12.805870 8.358834 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 -0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole 0.135031 -0.064489 0.081833 -0.097858 -0.020810 -0.250721 -0.061022 0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -10.927090 15.421480 8.597615 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 -0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole 0.006937 0.415001 0.020564 -0.384074 -0.195901 0.173547 0.175337 -0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -13.040429 17.041923 8.450038 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole -0.362347 0.032096 -0.067519 0.068455 -0.111862 0.234599 0.179381 0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -15.087882 16.234575 7.143730 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole -0.128236 -0.066192 -0.098878 -0.110011 -0.100435 0.054183 0.199314 0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -13.416518 12.052869 7.059516 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 -0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole -0.150222 0.184993 0.116290 0.324246 0.434434 -0.009658 -0.550724 0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -15.018451 13.861131 5.991989 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole 0.190699 -0.292172 0.613901 0.301575 -0.166371 -0.195836 -0.447530 0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -14.908589 11.788798 5.020824 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole 0.090233 0.197003 -0.239935 -0.184502 0.227647 -0.047722 0.012288 -0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -15.593297 10.171613 3.319106 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 -0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole -0.091256 -0.060414 -0.057038 -0.055047 -0.054877 0.044246 0.111914 0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -16.426971 15.437382 5.130130 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole -0.091909 0.188995 -0.277331 -0.069309 -0.049758 0.131139 0.327089 -0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -18.152342 16.121156 3.543679 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole -0.040090 0.095467 -0.079919 -0.058683 0.126158 -0.051889 -0.046239 0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -10.596260 17.596887 8.831355 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 -0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole -0.344269 0.046395 0.191856 0.007750 -0.171132 0.125564 -0.020724 0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 -8.343782 17.923671 9.239139 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 -0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole -0.052482 0.017861 -0.101437 0.090246 0.034757 0.166574 0.066680 -0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -9.148014 14.186830 8.755962 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole 0.195067 -0.254353 0.246051 -0.014826 0.033884 -0.213914 -0.279935 0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -7.377684 15.765698 9.199609 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole -0.174029 0.208769 -0.072703 -0.067761 -0.017390 0.228215 0.090093 -0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 -7.009877 13.176974 8.943527 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole -0.138702 0.038897 -0.021776 -0.027862 -0.007098 0.125103 0.028874 0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -5.464870 11.298335 8.906976 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 -0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole 0.084793 0.000751 -0.009942 0.105319 0.003154 -0.171502 0.006789 0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -11.016969 15.371730 8.571017 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -18.521619 15.716937 3.727272 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.746409 11.008067 9.323269 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -16.153618 10.193207 3.470142 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.487096 13.652707 6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.358728 17.658439 8.339860 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.515775 17.495348 8.719786 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.326355 12.917822 8.341383 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.954796 16.982063 8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.439681 15.460137 5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.977683 13.159277 8.960653 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.916141 11.762781 5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.283615 14.165073 9.317312 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.341642 15.600210 9.184184 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.087400 16.121690 7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.080867 14.280676 8.185563 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.481969 12.135296 6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.589093 14.035478 5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.328854 9.924444 8.860735 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.444616 16.615069 2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.090221 8.974808 2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.607879 17.955503 9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.849258 19.169118 9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.050888 17.061198 9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.584314 11.175774 8.356857 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.818187 15.991437 3.083473 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.792784 11.415007 8.922441 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.188304 16.669800 3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.248292 9.745380 3.518027 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.000590 11.622353 9.040343 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.773264 10.825784 7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.725003 18.222477 7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.863948 17.302188 10.282389 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.544201 17.557330 9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.418827 10.517303 2.885267 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S -3.080683 5.056110 3.301918 - znuc, mass 16.000000 31.972070 - - Atom A02C -4.936019 7.783160 2.896083 - znuc, mass 6.000000 12.000000 - - Atom A03C -3.971722 10.287330 2.824356 - znuc, mass 6.000000 12.000000 - - Atom A04S -0.709341 11.024046 3.191237 - znuc, mass 16.000000 31.972070 - - Atom A05C 0.123183 8.672635 5.436972 - znuc, mass 6.000000 12.000000 - - Atom A06C -0.848204 6.277158 5.494719 - znuc, mass 6.000000 12.000000 - - Atom A07C -0.096541 4.527969 7.379303 - znuc, mass 6.000000 12.000000 - - Atom A08N 0.521213 3.042786 8.898155 - znuc, mass 7.000000 14.003070 - - Atom A09C 1.968837 9.429659 7.218436 - znuc, mass 6.000000 12.000000 - - Atom A10N 3.573925 10.040183 8.609875 - znuc, mass 7.000000 14.003070 - - Atom A11N -5.597679 12.133974 2.428602 - znuc, mass 7.000000 14.003070 - - Atom A12S -8.476680 10.940898 2.008788 - znuc, mass 16.000000 31.972070 - - Atom A13C -7.529874 7.818029 2.507663 - znuc, mass 6.000000 12.000000 - - Atom A14C -9.212293 5.763449 2.520953 - znuc, mass 6.000000 12.000000 - - Atom A15N -10.619888 4.060751 2.580763 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -3.080683 5.056110 3.301918 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole -0.081100 0.120946 0.015291 -0.151351 -0.112179 0.258142 0.096888 -0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -4.936019 7.783160 2.896083 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 -0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole 0.080562 -0.064792 0.069734 0.081135 -0.040643 -0.191017 -0.029091 0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C -3.971722 10.287330 2.824356 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole -0.154202 0.066939 0.010607 -0.076422 -0.037680 0.126335 0.027074 0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -0.709341 11.024046 3.191237 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 -0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole 0.376726 -0.162146 0.007751 0.064505 0.144810 -0.217808 -0.152561 -0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 0.123183 8.672635 5.436972 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 -0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole 0.056685 0.087927 0.028493 -0.015828 -0.161274 -0.009131 0.132781 -0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C -0.848204 6.277158 5.494719 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 -0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole 0.001075 -0.050214 0.014991 -0.047446 0.160108 -0.001747 -0.175099 0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -0.096541 4.527969 7.379303 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 -0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole -0.066905 0.052623 -0.037692 0.033015 -0.046038 0.056469 0.083730 0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 0.521213 3.042786 8.898155 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole 0.024985 -0.019560 0.010956 -0.010338 0.013703 -0.014533 -0.024660 -0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 1.968837 9.429659 7.218436 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole 0.000862 -0.071606 -0.028175 0.027284 0.078173 -0.054551 -0.049997 0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 3.573925 10.040183 8.609875 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 -0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole 0.001131 0.023490 0.018307 -0.014058 -0.034435 0.020126 0.016128 -0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -5.597679 12.133974 2.428602 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 -0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole 0.049872 -0.009996 -0.025010 -0.027426 0.025766 -0.018699 -0.000756 -0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -8.476680 10.940898 2.008788 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 -0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole -0.079313 0.431186 0.101331 -0.400784 -0.037962 -0.079017 -0.063368 0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -7.529874 7.818029 2.507663 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 -0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole -0.066522 -0.033296 -0.033077 0.141141 0.015825 0.201472 0.017252 -0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -9.212293 5.763449 2.520953 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 -0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole 0.082638 0.017348 -0.002354 -0.067724 0.011182 -0.121329 -0.008828 0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -10.619888 4.060751 2.580763 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole -0.020681 -0.004365 0.003281 0.025182 -0.001816 0.038396 -0.001465 -0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -4.008351 6.419635 3.099001 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 -0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole -0.135031 -0.064489 -0.081833 -0.097858 0.020810 0.250721 0.061022 -0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -4.453871 9.035245 2.860220 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 -0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole -0.006937 0.415001 -0.020564 -0.384074 0.195901 -0.173547 -0.175337 0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -2.340532 10.655688 3.007797 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole 0.362347 0.032096 0.067519 0.068455 0.111862 -0.234599 -0.179381 -0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -0.293079 9.848340 4.314105 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole 0.128236 -0.066192 0.098878 -0.110011 0.100435 -0.054183 -0.199314 -0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -1.964443 5.666634 4.398319 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 -0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole 0.150222 0.184993 -0.116290 0.324246 -0.434434 0.009658 0.550724 -0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -0.362510 7.474897 5.465846 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole -0.190699 -0.292172 -0.613901 0.301575 0.166371 0.195836 0.447530 -0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -0.472372 5.402564 6.437011 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole -0.090233 0.197003 0.239935 -0.184502 -0.227647 0.047722 -0.012288 0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 0.212336 3.785378 8.138729 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 -0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole 0.091256 -0.060414 0.057038 -0.055047 0.054877 -0.044246 -0.111914 -0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 1.046010 9.051147 6.327704 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole 0.091909 0.188995 0.277331 -0.069309 0.049758 -0.131139 -0.327089 0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 2.771381 9.734921 7.914156 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole 0.040090 0.095467 0.079919 -0.058683 -0.126158 0.051889 0.046239 -0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -4.784700 11.210652 2.626479 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 -0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole 0.344269 0.046395 -0.191856 0.007750 0.171132 -0.125564 0.020724 -0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 -7.037179 11.537436 2.218695 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 -0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole 0.052482 0.017861 0.101437 0.090246 -0.034757 -0.166574 -0.066680 0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -6.232947 7.800595 2.701873 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole -0.195067 -0.254353 -0.246051 -0.014826 -0.033884 0.213914 0.279935 -0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -8.003277 9.379463 2.258226 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole 0.174029 0.208769 0.072703 -0.067761 0.017390 -0.228215 -0.090093 0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 -8.371084 6.790739 2.514308 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole 0.138702 0.038897 0.021776 -0.027862 0.007098 -0.125103 -0.028874 -0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -9.916091 4.912100 2.550858 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 -0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole -0.084793 0.000751 0.009942 0.105319 -0.003154 0.171502 -0.006789 -0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -4.363992 8.985495 2.886817 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 3.140658 9.330702 7.730563 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.634552 4.621832 2.134565 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 0.772657 3.806972 7.987693 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.106135 7.266472 5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.022233 11.272204 3.117975 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.865186 11.109113 2.738049 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.054606 6.531587 3.116452 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.426164 10.595828 3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.058720 9.073902 6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.403278 6.773043 2.497182 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.464819 5.376546 6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.097346 7.778838 2.140523 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.039319 9.213975 2.273651 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.293561 9.735455 4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.300094 7.894441 3.272272 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.898992 5.749061 4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.791868 7.649243 5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.052107 3.538209 2.597099 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.063655 10.228834 9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.709261 2.588573 9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.773082 11.569268 2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.531703 12.782883 2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.330072 10.674963 2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.796647 4.789539 3.100978 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.437226 9.605202 8.374362 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.588177 5.028772 2.535393 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.807343 10.283566 7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.132669 3.359146 7.939807 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.380371 5.236118 2.417492 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.607697 4.439549 3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.655958 11.836242 3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.517013 10.915953 1.175445 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.836760 11.171095 2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.037866 4.131068 8.572568 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 12.300278 14.102595 -8.155916 - znuc, mass 16.000000 31.972070 - - Atom A02C 10.444942 11.375545 -8.561752 - znuc, mass 6.000000 12.000000 - - Atom A03C 11.409239 8.871374 -8.633478 - znuc, mass 6.000000 12.000000 - - Atom A04S 14.671620 8.134659 -8.266597 - znuc, mass 16.000000 31.972070 - - Atom A05C 15.504144 10.486070 -6.020862 - znuc, mass 6.000000 12.000000 - - Atom A06C 14.532757 12.881547 -5.963116 - znuc, mass 6.000000 12.000000 - - Atom A07C 15.284420 14.630736 -4.078532 - znuc, mass 6.000000 12.000000 - - Atom A08N 15.902174 16.115919 -2.559680 - znuc, mass 7.000000 14.003070 - - Atom A09C 17.349798 9.729046 -4.239399 - znuc, mass 6.000000 12.000000 - - Atom A10N 18.954886 9.118522 -2.847959 - znuc, mass 7.000000 14.003070 - - Atom A11N 9.783282 7.024730 -9.029232 - znuc, mass 7.000000 14.003070 - - Atom A12S 6.904281 8.217807 -9.449046 - znuc, mass 16.000000 31.972070 - - Atom A13C 7.851087 11.340676 -8.950172 - znuc, mass 6.000000 12.000000 - - Atom A14C 6.168667 13.395256 -8.936881 - znuc, mass 6.000000 12.000000 - - Atom A15N 4.761073 15.097954 -8.877072 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 12.300278 14.102595 -8.155916 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 -1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole -0.081100 -0.120946 0.015291 0.151351 -0.112179 0.258142 0.096888 -0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 10.444942 11.375545 -8.561752 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole 0.080562 0.064792 0.069734 -0.081135 -0.040643 -0.191017 -0.029091 0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 11.409239 8.871374 -8.633478 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 -0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole -0.154202 -0.066939 0.010607 0.076422 -0.037680 0.126335 0.027074 0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 14.671620 8.134659 -8.266597 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole 0.376726 0.162146 0.007751 -0.064505 0.144810 -0.217808 -0.152561 -0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 15.504144 10.486070 -6.020862 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole 0.056685 -0.087927 0.028493 0.015828 -0.161274 -0.009131 0.132781 -0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 14.532757 12.881547 -5.963116 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole 0.001075 0.050214 0.014991 0.047446 0.160108 -0.001747 -0.175099 0.000672 -0.097660 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 15.284420 14.630736 -4.078532 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole -0.066905 -0.052623 -0.037692 -0.033015 -0.046038 0.056469 0.083730 0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 15.902174 16.115919 -2.559680 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 -0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole 0.024985 0.019560 0.010956 0.010338 0.013703 -0.014533 -0.024660 -0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 17.349798 9.729046 -4.239399 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 -0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole 0.000862 0.071606 -0.028175 -0.027284 0.078173 -0.054551 -0.049997 0.053688 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 18.954886 9.118522 -2.847959 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole 0.001131 -0.023490 0.018307 0.014058 -0.034435 0.020126 0.016128 -0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 9.783282 7.024730 -9.029232 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole 0.049872 0.009996 -0.025010 0.027426 0.025766 -0.018699 -0.000756 -0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 6.904281 8.217807 -9.449046 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole -0.079313 -0.431186 0.101331 0.400784 -0.037962 -0.079017 -0.063368 0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 7.851087 11.340676 -8.950172 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole -0.066522 0.033296 -0.033077 -0.141141 0.015825 0.201472 0.017252 -0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 6.168667 13.395256 -8.936881 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole 0.082638 -0.017348 -0.002354 0.067724 0.011182 -0.121329 -0.008828 0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 4.761073 15.097954 -8.877072 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 -0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole -0.020681 0.004365 0.003281 -0.025182 -0.001816 0.038396 -0.001465 -0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 11.372610 12.739070 -8.358834 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole -0.135031 0.064489 -0.081833 0.097858 0.020810 0.250721 0.061022 -0.115691 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 10.927090 10.123460 -8.597615 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole -0.006937 -0.415001 -0.020564 0.384074 0.195901 -0.173547 -0.175337 0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 13.040429 8.503017 -8.450038 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 -0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole 0.362347 -0.032096 0.067519 -0.068455 0.111862 -0.234599 -0.179381 -0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 15.087882 9.310364 -7.143730 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 -0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole 0.128236 0.066192 0.098878 0.110011 0.100435 -0.054183 -0.199314 -0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 13.416518 13.492071 -7.059516 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole 0.150222 -0.184993 -0.116290 -0.324246 -0.434434 0.009658 0.550724 -0.159880 0.509238 0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 15.018451 11.683808 -5.991989 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 -0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole -0.190699 0.292172 -0.613901 -0.301575 0.166371 0.195836 0.447530 -0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 14.908589 13.756141 -5.020824 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 -0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole -0.090233 -0.197003 0.239935 0.184502 -0.227647 0.047722 -0.012288 0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 15.593297 15.373327 -3.319106 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole 0.091256 0.060414 0.057038 0.055047 0.054877 -0.044246 -0.111914 -0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 16.426971 10.107558 -5.130130 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 -0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole 0.091909 -0.188995 0.277331 0.069309 0.049758 -0.131139 -0.327089 0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 18.152342 9.423784 -3.543679 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 -0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole 0.040090 -0.095467 0.079919 0.058683 -0.126158 0.051889 0.046239 -0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 10.596260 7.948052 -8.831355 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole 0.344269 -0.046395 -0.191856 -0.007750 0.171132 -0.125564 0.020724 -0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 8.343782 7.621269 -9.239139 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole 0.052482 -0.017861 0.101437 -0.090246 -0.034757 -0.166574 -0.066680 0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 9.148014 11.358110 -8.755962 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 -0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole -0.195067 0.254353 -0.246051 0.014826 -0.033884 0.213914 0.279935 -0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 7.377684 9.779241 -9.199609 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 -0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole 0.174029 -0.208769 0.072703 0.067761 0.017390 -0.228215 -0.090093 0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 7.009877 12.367966 -8.943527 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 -0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole 0.138702 -0.038897 0.021776 0.027862 0.007098 -0.125103 -0.028874 -0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 5.464870 14.246605 -8.906976 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole -0.084793 -0.000751 0.009942 -0.105319 -0.003154 0.171502 -0.006789 -0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 10.544201 7.987610 -9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444129 6.305470 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 18.188304 8.875139 -3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821479 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.746327 14.536805 -9.323370 - polarizability tensor 5.676900 -5.144008 -0.727143 -3.339388 4.987141 -0.427749 -0.708036 -0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 15.248291 15.799559 -3.518027 - polarizability tensor 2.014660 1.411523 2.754674 0.096191 2.864916 1.368380 1.742511 2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.439681 10.084803 -5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.977683 12.385662 -8.960653 - polarizability tensor 2.247827 -1.783499 0.065362 -1.149026 2.379898 0.043699 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.607879 7.589437 -9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.326355 12.627117 -8.341383 - polarizability tensor 5.018070 4.875224 1.088491 1.811907 4.579783 0.228245 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.954796 8.562876 -8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.916141 13.782158 -5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.016969 10.173209 -8.571017 - polarizability tensor 3.009104 -0.265453 0.164854 -0.392052 2.422903 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.589093 11.509461 -5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522052 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.080866 11.264264 -8.185563 - polarizability tensor 13.654114 -2.638427 1.355101 -2.419218 4.125882 0.076557 2.653090 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.341642 9.944730 -9.184184 - polarizability tensor 2.960546 0.866100 0.523975 1.061801 5.117295 0.710667 0.733477 0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.481969 13.409644 -6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.283615 11.379867 -9.317312 - polarizability tensor 12.949895 -2.646494 1.785361 -2.381880 4.179640 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.087400 9.423250 -7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.487096 11.892233 -6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460098 13.263287 0.923067 0.789240 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.328854 15.620496 -8.860735 - polarizability tensor 2.586919 -0.528104 -0.018359 -0.362648 2.294263 -0.043707 0.109841 -0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.444616 8.929871 -2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.090221 16.570132 -2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.863949 8.242753 -10.282389 - polarizability tensor 8.609790 3.161438 4.330874 3.390209 5.869742 2.969759 2.433190 1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.725003 7.322463 -7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.849258 6.375822 -9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.000566 13.922565 -9.040202 - polarizability tensor 3.548722 -1.577098 0.269187 -2.005619 4.318440 0.319352 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.521619 9.828003 -3.727272 - polarizability tensor 5.713597 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.773264 14.719156 -7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225663 5.733018 0.256666 1.271657 0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.818187 9.553503 -3.083473 - polarizability tensor 6.707221 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.418828 15.027636 -2.885267 - polarizability tensor 1.169671 1.724727 0.923947 2.191905 7.141823 4.969365 0.687892 2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.584419 14.369256 -8.356897 - polarizability tensor 5.399126 -5.564498 0.213556 -4.017191 5.082747 0.297192 1.393777 -0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.792784 14.129933 -8.922442 - polarizability tensor 10.702598 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.050888 8.483741 -9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.515774 8.049592 -8.719786 - polarizability tensor 9.556647 3.699450 -1.931270 3.986422 6.261107 -1.285638 0.992071 0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.358728 7.886501 -8.339860 - polarizability tensor 4.541349 2.067478 1.036870 1.580946 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.153617 15.351734 -3.470143 - polarizability tensor 2.204025 0.653491 0.327503 1.701255 5.540977 4.544585 0.766864 3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 3.080683 20.488830 -3.301918 - znuc, mass 16.000000 31.972070 - - Atom A02C 4.936019 17.761780 -2.896083 - znuc, mass 6.000000 12.000000 - - Atom A03C 3.971722 15.257609 -2.824356 - znuc, mass 6.000000 12.000000 - - Atom A04S 0.709341 14.520894 -3.191237 - znuc, mass 16.000000 31.972070 - - Atom A05C -0.123183 16.872305 -5.436972 - znuc, mass 6.000000 12.000000 - - Atom A06C 0.848204 19.267782 -5.494719 - znuc, mass 6.000000 12.000000 - - Atom A07C 0.096541 21.016971 -7.379303 - znuc, mass 6.000000 12.000000 - - Atom A08N -0.521213 22.502154 -8.898155 - znuc, mass 7.000000 14.003070 - - Atom A09C -1.968837 16.115280 -7.218436 - znuc, mass 6.000000 12.000000 - - Atom A10N -3.573925 15.504757 -8.609875 - znuc, mass 7.000000 14.003070 - - Atom A11N 5.597679 13.410965 -2.428602 - znuc, mass 7.000000 14.003070 - - Atom A12S 8.476680 14.604042 -2.008788 - znuc, mass 16.000000 31.972070 - - Atom A13C 7.529874 17.726911 -2.507663 - znuc, mass 6.000000 12.000000 - - Atom A14C 9.212293 19.781491 -2.520953 - znuc, mass 6.000000 12.000000 - - Atom A15N 10.619888 21.484189 -2.580763 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 3.080683 20.488830 -3.301918 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 -1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole 0.081100 -0.120946 -0.015291 0.151351 0.112179 -0.258142 -0.096888 0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 4.936019 17.761780 -2.896083 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole -0.080562 0.064792 -0.069734 -0.081135 0.040643 0.191017 0.029091 -0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 3.971722 15.257609 -2.824356 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 -0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole 0.154202 -0.066939 -0.010607 0.076422 0.037680 -0.126335 -0.027074 -0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 0.709341 14.520894 -3.191237 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole -0.376726 0.162146 -0.007751 -0.064505 -0.144810 0.217808 0.152561 0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -0.123183 16.872305 -5.436972 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole -0.056685 -0.087927 -0.028493 0.015828 0.161274 0.009131 -0.132781 0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 0.848204 19.267782 -5.494719 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole -0.001075 0.050214 -0.014991 0.047446 -0.160108 0.001747 0.175099 -0.000672 -0.097660 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 0.096541 21.016971 -7.379303 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole 0.066905 -0.052623 0.037692 -0.033015 0.046038 -0.056469 -0.083730 -0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -0.521213 22.502154 -8.898155 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 -0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole -0.024985 0.019560 -0.010956 0.010338 -0.013703 0.014533 0.024660 0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -1.968837 16.115280 -7.218436 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 -0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole -0.000862 0.071606 0.028175 -0.027284 -0.078173 0.054551 0.049997 -0.053688 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -3.573925 15.504757 -8.609875 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole -0.001131 -0.023490 -0.018307 0.014058 0.034435 -0.020126 -0.016128 0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 5.597679 13.410965 -2.428602 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole -0.049872 0.009996 0.025010 0.027426 -0.025766 0.018699 0.000756 0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 8.476680 14.604042 -2.008788 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole 0.079313 -0.431186 -0.101331 0.400784 0.037962 0.079017 0.063368 -0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 7.529874 17.726911 -2.507663 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole 0.066522 0.033296 0.033077 -0.141141 -0.015825 -0.201472 -0.017252 0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 9.212293 19.781491 -2.520953 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole -0.082638 -0.017348 0.002354 0.067724 -0.011182 0.121329 0.008828 -0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 10.619888 21.484189 -2.580763 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 -0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole 0.020681 0.004365 -0.003281 -0.025182 0.001816 -0.038396 0.001465 0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 4.008351 19.125305 -3.099001 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole 0.135031 0.064489 0.081833 0.097858 -0.020810 -0.250721 -0.061022 0.115691 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 4.453871 16.509695 -2.860220 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole 0.006937 -0.415001 0.020564 0.384074 -0.195901 0.173547 0.175337 -0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 2.340532 14.889252 -3.007797 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 -0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole -0.362347 -0.032096 -0.067519 -0.068455 -0.111862 0.234599 0.179381 0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 0.293079 15.696599 -4.314105 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 -0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole -0.128236 0.066192 -0.098878 0.110011 -0.100435 0.054183 0.199314 0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 1.964443 19.878306 -4.398319 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole -0.150222 -0.184993 0.116290 -0.324246 0.434434 -0.009658 -0.550724 0.159880 0.509238 0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 0.362510 18.070043 -5.465846 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 -0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole 0.190699 0.292172 0.613901 -0.301575 -0.166371 -0.195836 -0.447530 0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 0.472372 20.142376 -6.437011 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 -0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole 0.090233 -0.197003 -0.239935 0.184502 0.227647 -0.047722 0.012288 -0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -0.212336 21.759562 -8.138729 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole -0.091256 0.060414 -0.057038 0.055047 -0.054877 0.044246 0.111914 0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -1.046010 16.493793 -6.327704 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 -0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole -0.091909 -0.188995 -0.277331 0.069309 -0.049758 0.131139 0.327089 -0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -2.771381 15.810019 -7.914156 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 -0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole -0.040090 -0.095467 -0.079919 0.058683 0.126158 -0.051889 -0.046239 0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 4.784700 14.334287 -2.626479 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole -0.344269 -0.046395 0.191856 -0.007750 -0.171132 0.125564 -0.020724 0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 7.037179 14.007504 -2.218695 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole -0.052482 -0.017861 -0.101437 -0.090246 0.034757 0.166574 0.066680 -0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 6.232947 17.744345 -2.701873 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 -0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole 0.195067 0.254353 0.246051 0.014826 0.033884 -0.213914 -0.279935 0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 8.003277 16.165476 -2.258226 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 -0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole -0.174029 -0.208769 -0.072703 0.067761 -0.017390 0.228215 0.090093 -0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 8.371084 18.754201 -2.514308 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 -0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole -0.138702 -0.038897 -0.021776 0.027862 -0.007098 0.125103 0.028874 0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 9.916091 20.632840 -2.550858 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole 0.084793 -0.000751 -0.009942 -0.105319 0.003154 -0.171502 0.006789 0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 4.836760 14.373845 -2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444129 6.305470 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -2.807344 15.261374 -7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821479 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.634633 20.923040 -2.134465 - polarizability tensor 5.676900 5.144008 -0.727143 3.339388 4.987141 0.427749 -0.708036 0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 0.132670 22.185794 -7.939808 - polarizability tensor 2.014660 -1.411523 2.754674 -0.096191 2.864916 -1.368380 1.742511 -2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.058720 16.471038 -6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.403278 18.771897 -2.497182 - polarizability tensor 2.247827 1.783499 0.065362 1.149026 2.379898 -0.043699 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.773082 13.975671 -2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.054606 19.013352 -3.116452 - polarizability tensor 5.018070 -4.875224 1.088491 -1.811907 4.579783 -0.228245 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.426164 14.949111 -3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.464819 20.168393 -6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.363992 16.559444 -2.886817 - polarizability tensor 3.009104 0.265453 0.164854 0.392052 2.422903 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.791868 17.895696 -5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522052 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.300094 17.650499 -3.272272 - polarizability tensor 13.654114 2.638427 1.355101 2.419218 4.125882 -0.076557 2.653090 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.039319 16.330965 -2.273651 - polarizability tensor 2.960546 -0.866100 0.523975 -1.061801 5.117295 -0.710667 0.733477 -0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.898992 19.795879 -4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.097346 17.766102 -2.140523 - polarizability tensor 12.949895 2.646494 1.785361 2.381880 4.179640 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.293561 15.809485 -4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.106135 18.278468 -5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460098 13.263287 -0.923067 0.789240 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.052107 22.006731 -2.597100 - polarizability tensor 2.586919 0.528104 -0.018359 0.362648 2.294263 0.043707 0.109841 0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.063655 15.316106 -9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.709261 22.956367 -9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.517012 14.628988 -1.175445 - polarizability tensor 8.609790 -3.161438 4.330874 -3.390209 5.869742 -2.969759 2.433190 -1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.655958 13.708698 -3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.531703 12.762057 -2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.380395 20.308800 -2.417633 - polarizability tensor 3.548722 1.577098 0.269187 2.005619 4.318440 -0.319352 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.140658 16.214238 -7.730563 - polarizability tensor 5.713597 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.607697 21.105391 -3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225663 5.733018 -0.256666 1.271657 -0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.437226 15.939738 -8.374362 - polarizability tensor 6.707221 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.037867 21.413871 -8.572568 - polarizability tensor 1.169671 -1.724727 0.923947 -2.191905 7.141823 -4.969365 0.687892 -2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.796542 20.755491 -3.100937 - polarizability tensor 5.399126 5.564498 0.213556 4.017191 5.082747 -0.297192 1.393777 0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.588177 20.516167 -2.535393 - polarizability tensor 10.702598 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.330072 14.869976 -2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.865186 14.435827 -2.738048 - polarizability tensor 9.556647 -3.699450 -1.931270 -3.986422 6.261107 1.285638 0.992071 -0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.022233 14.272736 -3.117975 - polarizability tensor 4.541349 -2.067478 1.036870 -1.580946 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.772656 21.737969 -7.987692 - polarizability tensor 2.204025 -0.653491 0.327503 -1.701255 5.540977 -4.544585 0.766864 -3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S -20.380949 11.442345 31.071586 - znuc, mass 16.000000 31.972070 - - Atom A02C -18.525613 14.169395 31.477421 - znuc, mass 6.000000 12.000000 - - Atom A03C -19.489910 16.673565 31.549148 - znuc, mass 6.000000 12.000000 - - Atom A04S -22.752291 17.410281 31.182267 - znuc, mass 16.000000 31.972070 - - Atom A05C -23.584815 15.058870 28.936532 - znuc, mass 6.000000 12.000000 - - Atom A06C -22.613428 12.663393 28.878785 - znuc, mass 6.000000 12.000000 - - Atom A07C -23.365091 10.914204 26.994201 - znuc, mass 6.000000 12.000000 - - Atom A08N -23.982845 9.429021 25.475349 - znuc, mass 7.000000 14.003070 - - Atom A09C -25.430469 15.815894 27.155068 - znuc, mass 6.000000 12.000000 - - Atom A10N -27.035557 16.426418 25.763629 - znuc, mass 7.000000 14.003070 - - Atom A11N -17.863954 18.520209 31.944902 - znuc, mass 7.000000 14.003070 - - Atom A12S -14.984952 17.327133 32.364716 - znuc, mass 16.000000 31.972070 - - Atom A13C -15.931758 14.204264 31.865841 - znuc, mass 6.000000 12.000000 - - Atom A14C -14.249339 12.149684 31.852551 - znuc, mass 6.000000 12.000000 - - Atom A15N -12.841744 10.446986 31.792741 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -20.380949 11.442345 31.071586 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole 0.081100 0.120946 -0.015291 -0.151351 0.112179 -0.258142 -0.096888 0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -18.525613 14.169395 31.477421 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 -0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole -0.080562 -0.064792 -0.069734 0.081135 0.040643 0.191017 0.029091 -0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C -19.489910 16.673565 31.549148 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole 0.154202 0.066939 -0.010607 -0.076422 0.037680 -0.126335 -0.027074 -0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -22.752291 17.410281 31.182267 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 -0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole -0.376726 -0.162146 -0.007751 0.064505 -0.144810 0.217808 0.152561 0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -23.584815 15.058870 28.936532 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 -0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole -0.056685 0.087927 -0.028493 -0.015828 0.161274 0.009131 -0.132781 0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C -22.613428 12.663393 28.878785 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 -0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole -0.001075 -0.050214 -0.014991 -0.047446 -0.160108 0.001747 0.175099 -0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -23.365091 10.914204 26.994201 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 -0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole 0.066905 0.052623 0.037692 0.033015 0.046038 -0.056469 -0.083730 -0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -23.982845 9.429021 25.475349 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole -0.024985 -0.019560 -0.010956 -0.010338 -0.013703 0.014533 0.024660 0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -25.430469 15.815894 27.155068 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole -0.000862 -0.071606 0.028175 0.027284 -0.078173 0.054551 0.049997 -0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -27.035557 16.426418 25.763629 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 -0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole -0.001131 0.023490 -0.018307 -0.014058 0.034435 -0.020126 -0.016128 0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -17.863954 18.520209 31.944902 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 -0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole -0.049872 -0.009996 0.025010 -0.027426 -0.025766 0.018699 0.000756 0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -14.984952 17.327133 32.364716 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 -0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole 0.079313 0.431186 -0.101331 -0.400784 0.037962 0.079017 0.063368 -0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -15.931758 14.204264 31.865841 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 -0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole 0.066522 -0.033296 0.033077 0.141141 -0.015825 -0.201472 -0.017252 0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -14.249339 12.149684 31.852551 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 -0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole -0.082638 0.017348 0.002354 -0.067724 -0.011182 0.121329 0.008828 -0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -12.841744 10.446986 31.792741 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole 0.020681 -0.004365 -0.003281 0.025182 0.001816 -0.038396 0.001465 0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -19.453281 12.805870 31.274503 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 -0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole 0.135031 -0.064489 0.081833 -0.097858 -0.020810 -0.250721 -0.061022 0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -19.007761 15.421480 31.513284 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 -0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole 0.006937 0.415001 0.020564 -0.384074 -0.195901 0.173547 0.175337 -0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -21.121100 17.041923 31.365707 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole -0.362347 0.032096 -0.067519 0.068455 -0.111862 0.234599 0.179381 0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -23.168553 16.234575 30.059399 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole -0.128236 -0.066192 -0.098878 -0.110011 -0.100435 0.054183 0.199314 0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -21.497189 12.052869 29.975185 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 -0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole -0.150222 0.184993 0.116290 0.324246 0.434434 -0.009658 -0.550724 0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -23.099122 13.861131 28.907658 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole 0.190699 -0.292172 0.613901 0.301575 -0.166371 -0.195836 -0.447530 0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -22.989260 11.788798 27.936493 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole 0.090233 0.197003 -0.239935 -0.184502 0.227647 -0.047722 0.012288 -0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -23.673968 10.171613 26.234775 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 -0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole -0.091256 -0.060414 -0.057038 -0.055047 -0.054877 0.044246 0.111914 0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -24.507642 15.437382 28.045800 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole -0.091909 0.188995 -0.277331 -0.069309 -0.049758 0.131139 0.327089 -0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -26.233013 16.121156 26.459348 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole -0.040090 0.095467 -0.079919 -0.058683 0.126158 -0.051889 -0.046239 0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -18.676932 17.596887 31.747025 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 -0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole -0.344269 0.046395 0.191856 0.007750 -0.171132 0.125564 -0.020724 0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 -16.424453 17.923671 32.154809 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 -0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole -0.052482 0.017861 -0.101437 0.090246 0.034757 0.166574 0.066680 -0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -17.228685 14.186830 31.671631 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole 0.195067 -0.254353 0.246051 -0.014826 0.033884 -0.213914 -0.279935 0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -15.458355 15.765698 32.115278 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole -0.174029 0.208769 -0.072703 -0.067761 -0.017390 0.228215 0.090093 -0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 -15.090548 13.176974 31.859196 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole -0.138702 0.038897 -0.021776 -0.027862 -0.007098 0.125103 0.028874 0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -13.545541 11.298335 31.822646 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 -0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole 0.084793 0.000751 -0.009942 0.105319 0.003154 -0.171502 0.006789 0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -19.097640 15.371730 31.486687 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -26.602290 15.716937 26.642941 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.827080 11.008067 32.238939 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -24.234289 10.193207 26.385811 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.567767 13.652707 29.220750 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.439399 17.658439 31.255529 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.596446 17.495348 31.635455 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.407026 12.917822 31.257052 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -21.035468 16.982063 31.342289 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.520352 15.460137 28.020022 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.058354 13.159277 31.876322 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.996813 11.762781 27.916692 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.364286 14.165073 32.232981 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.422313 15.600210 32.099853 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.168071 16.121690 29.965816 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.161538 14.280676 31.101232 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -21.562640 12.135296 29.886424 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.669764 14.035478 28.521541 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.409525 9.924444 31.776405 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -27.525287 16.615069 25.335067 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.170893 8.974808 25.009608 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.688550 17.955503 32.106919 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.929929 19.169118 31.993285 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.131560 17.061198 31.935679 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.664985 11.175774 31.272526 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -25.898858 15.991437 25.999142 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -20.873455 11.415007 31.838111 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -26.268976 16.669800 26.657170 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.328963 9.745380 26.433697 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.081261 11.622353 31.956012 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.853935 10.825784 30.590634 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.805674 18.222477 30.716646 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.944619 17.302188 33.198059 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.624872 17.557330 32.281745 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.499498 10.517303 25.800936 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S -11.161354 5.056110 26.217588 - znuc, mass 16.000000 31.972070 - - Atom A02C -13.016690 7.783160 25.811752 - znuc, mass 6.000000 12.000000 - - Atom A03C -12.052393 10.287330 25.740026 - znuc, mass 6.000000 12.000000 - - Atom A04S -8.790012 11.024046 26.106907 - znuc, mass 16.000000 31.972070 - - Atom A05C -7.957488 8.672635 28.352642 - znuc, mass 6.000000 12.000000 - - Atom A06C -8.928875 6.277158 28.410388 - znuc, mass 6.000000 12.000000 - - Atom A07C -8.177212 4.527969 30.294972 - znuc, mass 6.000000 12.000000 - - Atom A08N -7.559458 3.042786 31.813824 - znuc, mass 7.000000 14.003070 - - Atom A09C -6.111834 9.429659 30.134105 - znuc, mass 6.000000 12.000000 - - Atom A10N -4.506746 10.040183 31.525545 - znuc, mass 7.000000 14.003070 - - Atom A11N -13.678350 12.133974 25.344272 - znuc, mass 7.000000 14.003070 - - Atom A12S -16.557351 10.940898 24.924458 - znuc, mass 16.000000 31.972070 - - Atom A13C -15.610545 7.818029 25.423332 - znuc, mass 6.000000 12.000000 - - Atom A14C -17.292965 5.763449 25.436623 - znuc, mass 6.000000 12.000000 - - Atom A15N -18.700559 4.060751 25.496432 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -11.161354 5.056110 26.217588 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole -0.081100 0.120946 0.015291 -0.151351 -0.112179 0.258142 0.096888 -0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -13.016690 7.783160 25.811752 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 -0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole 0.080562 -0.064792 0.069734 0.081135 -0.040643 -0.191017 -0.029091 0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C -12.052393 10.287330 25.740026 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole -0.154202 0.066939 0.010607 -0.076422 -0.037680 0.126335 0.027074 0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -8.790012 11.024046 26.106907 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 -0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole 0.376726 -0.162146 0.007751 0.064505 0.144810 -0.217808 -0.152561 -0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -7.957488 8.672635 28.352642 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 -0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole 0.056685 0.087927 0.028493 -0.015828 -0.161274 -0.009131 0.132781 -0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C -8.928875 6.277158 28.410388 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 -0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole 0.001075 -0.050214 0.014991 -0.047446 0.160108 -0.001747 -0.175099 0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -8.177212 4.527969 30.294972 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 -0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole -0.066905 0.052623 -0.037692 0.033015 -0.046038 0.056469 0.083730 0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -7.559458 3.042786 31.813824 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole 0.024985 -0.019560 0.010956 -0.010338 0.013703 -0.014533 -0.024660 -0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -6.111834 9.429659 30.134105 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole 0.000862 -0.071606 -0.028175 0.027284 0.078173 -0.054551 -0.049997 0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -4.506746 10.040183 31.525545 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 -0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole 0.001131 0.023490 0.018307 -0.014058 -0.034435 0.020126 0.016128 -0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -13.678350 12.133974 25.344272 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 -0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole 0.049872 -0.009996 -0.025010 -0.027426 0.025766 -0.018699 -0.000756 -0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -16.557351 10.940898 24.924458 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 -0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole -0.079313 0.431186 0.101331 -0.400784 -0.037962 -0.079017 -0.063368 0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -15.610545 7.818029 25.423332 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 -0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole -0.066522 -0.033296 -0.033077 0.141141 0.015825 0.201472 0.017252 -0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -17.292965 5.763449 25.436623 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 -0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole 0.082638 0.017348 -0.002354 -0.067724 0.011182 -0.121329 -0.008828 0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -18.700559 4.060751 25.496432 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole -0.020681 -0.004365 0.003281 0.025182 -0.001816 0.038396 -0.001465 -0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -12.089022 6.419635 26.014670 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 -0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole -0.135031 -0.064489 -0.081833 -0.097858 0.020810 0.250721 0.061022 -0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -12.534542 9.035245 25.775889 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 -0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole -0.006937 0.415001 -0.020564 -0.384074 0.195901 -0.173547 -0.175337 0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -10.421203 10.655688 25.923466 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole 0.362347 0.032096 0.067519 0.068455 0.111862 -0.234599 -0.179381 -0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -8.373750 9.848340 27.229774 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole 0.128236 -0.066192 0.098878 -0.110011 0.100435 -0.054183 -0.199314 -0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -10.045114 5.666634 27.313988 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 -0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole 0.150222 0.184993 -0.116290 0.324246 -0.434434 0.009658 0.550724 -0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -8.443181 7.474897 28.381515 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole -0.190699 -0.292172 -0.613901 0.301575 0.166371 0.195836 0.447530 -0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -8.553043 5.402564 29.352680 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole -0.090233 0.197003 0.239935 -0.184502 -0.227647 0.047722 -0.012288 0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -7.868335 3.785378 31.054398 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 -0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole 0.091256 -0.060414 0.057038 -0.055047 0.054877 -0.044246 -0.111914 -0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -7.034661 9.051147 29.243374 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole 0.091909 0.188995 0.277331 -0.069309 0.049758 -0.131139 -0.327089 0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -5.309290 9.734921 30.829825 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole 0.040090 0.095467 0.079919 -0.058683 -0.126158 0.051889 0.046239 -0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -12.865372 11.210652 25.542149 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 -0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole 0.344269 0.046395 -0.191856 0.007750 0.171132 -0.125564 0.020724 -0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 -15.117850 11.537436 25.134365 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 -0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole 0.052482 0.017861 0.101437 0.090246 -0.034757 -0.166574 -0.066680 0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -14.313618 7.800595 25.617542 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole -0.195067 -0.254353 -0.246051 -0.014826 -0.033884 0.213914 0.279935 -0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -16.083948 9.379463 25.173895 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole 0.174029 0.208769 0.072703 -0.067761 0.017390 -0.228215 -0.090093 0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 -16.451755 6.790739 25.429977 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole 0.138702 0.038897 0.021776 -0.027862 0.007098 -0.125103 -0.028874 -0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -17.996762 4.912100 25.466528 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 -0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole -0.084793 0.000751 0.009942 0.105319 -0.003154 0.171502 -0.006789 -0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -12.444663 8.985495 25.802487 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -4.940013 9.330702 30.646232 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.715223 4.621832 25.050235 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -7.308014 3.806972 30.903362 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.974536 7.266472 28.068423 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.102904 11.272204 26.033644 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.945857 11.109113 25.653718 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.135277 6.531587 26.032121 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.506836 10.595828 25.946884 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.021951 9.073902 29.269151 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.483949 6.773043 25.412851 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.545491 5.376546 29.372481 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.178017 7.778838 25.056192 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.119990 9.213975 25.189320 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.374232 9.735455 27.323358 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.380765 7.894441 26.187941 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.979663 5.749061 27.402749 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.872539 7.649243 28.767632 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.132779 3.538209 25.512769 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.017016 10.228834 31.954106 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.371411 2.588573 32.279566 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.853753 11.569268 25.182254 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.612374 12.782883 25.295888 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.410744 10.674963 25.353494 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.877318 4.789539 26.016647 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.643445 9.605202 31.290032 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.668848 5.028772 25.451063 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.273328 10.283566 30.632003 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.213340 3.359146 30.855477 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.461042 5.236118 25.333161 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.688368 4.439549 26.698539 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.736629 11.836242 26.572528 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.597684 10.915953 24.091115 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.917431 11.171095 25.007429 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.042805 4.131068 31.488237 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 4.219605 14.102595 14.759753 - znuc, mass 16.000000 31.972070 - - Atom A02C 2.364270 11.375544 14.353917 - znuc, mass 6.000000 12.000000 - - Atom A03C 3.328568 8.871374 14.282191 - znuc, mass 6.000000 12.000000 - - Atom A04S 6.590950 8.134660 14.649073 - znuc, mass 16.000000 31.972070 - - Atom A05C 7.423473 10.486071 16.894808 - znuc, mass 6.000000 12.000000 - - Atom A06C 6.452084 12.881548 16.952554 - znuc, mass 6.000000 12.000000 - - Atom A07C 7.203746 14.630737 18.837138 - znuc, mass 6.000000 12.000000 - - Atom A08N 7.821499 16.115921 20.355990 - znuc, mass 7.000000 14.003070 - - Atom A09C 9.269126 9.729048 18.676272 - znuc, mass 6.000000 12.000000 - - Atom A10N 10.874214 9.118526 20.067712 - znuc, mass 7.000000 14.003070 - - Atom A11N 1.702613 7.024729 13.886437 - znuc, mass 7.000000 14.003070 - - Atom A12S -1.176389 8.217805 13.466623 - znuc, mass 16.000000 31.972070 - - Atom A13C -0.229585 11.340674 13.965497 - znuc, mass 6.000000 12.000000 - - Atom A14C -1.912005 13.395253 13.978787 - znuc, mass 6.000000 12.000000 - - Atom A15N -3.319600 15.097950 14.038596 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 4.219605 14.102595 14.759753 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 -1.019605 0.491700 - duadrupole 0.200252 0.667129 -0.867381 0.820424 2.014536 -0.644901 - octupole -0.081100 -0.120945 0.015291 0.151350 -0.112179 0.258142 0.096888 -0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 2.364270 11.375544 14.353917 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026088 0.009793 - octupole 0.080562 0.064792 0.069734 -0.081134 -0.040643 -0.191017 -0.029091 0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 3.328568 8.871374 14.282191 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 -0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole -0.154202 -0.066939 0.010607 0.076422 -0.037680 0.126335 0.027074 0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 6.590950 8.134660 14.649073 - znuc, monopole 16.000000 -15.424149 - dipole -0.645105 0.702589 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883321 - octupole 0.376726 0.162146 0.007751 -0.064504 0.144810 -0.217808 -0.152561 -0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 7.423473 10.486071 16.894808 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 0.012964 0.126299 - duadrupole -0.086713 0.172782 -0.086070 -0.198246 0.015502 0.024956 - octupole 0.056685 -0.087927 0.028493 0.015828 -0.161274 -0.009131 0.132781 -0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 6.452084 12.881548 16.952554 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole 0.001075 0.050214 0.014991 0.047446 0.160109 -0.001747 -0.175100 0.000672 -0.097661 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 7.203746 14.630737 18.837138 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole -0.066905 -0.052623 -0.037692 -0.033015 -0.046038 0.056469 0.083730 0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 7.821499 16.115921 20.355990 - znuc, monopole 7.000000 -6.844356 - dipole -0.128196 -0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole 0.024985 0.019560 0.010956 0.010338 0.013703 -0.014533 -0.024660 -0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 9.269126 9.729048 18.676272 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 -0.134363 0.337213 - duadrupole 0.044076 -0.065351 0.021276 0.052673 0.059479 0.009395 - octupole 0.000862 0.071606 -0.028175 -0.027284 0.078173 -0.054551 -0.049998 0.053689 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 10.874214 9.118526 20.067712 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole 0.001131 -0.023490 0.018307 0.014058 -0.034435 0.020126 0.016128 -0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 1.702613 7.024729 13.886437 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109388 -0.037751 - octupole 0.049872 0.009996 -0.025010 0.027426 0.025766 -0.018699 -0.000756 -0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -1.176389 8.217805 13.466623 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 0.461479 0.227968 - duadrupole 0.657691 1.380421 -2.038112 -0.516799 0.477705 0.276530 - octupole -0.079313 -0.431186 0.101331 0.400784 -0.037962 -0.079016 -0.063368 0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -0.229585 11.340674 13.965497 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 0.118662 -0.023762 - duadrupole 0.102512 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole -0.066522 0.033296 -0.033078 -0.141141 0.015825 0.201472 0.017252 -0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -1.912005 13.395253 13.978787 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 0.447125 0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole 0.082638 -0.017348 -0.002354 0.067724 0.011182 -0.121329 -0.008828 0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -3.319600 15.097950 14.038596 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 -0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013044 0.009826 - octupole -0.020681 0.004365 0.003281 -0.025182 -0.001816 0.038396 -0.001465 -0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 3.291938 12.739070 14.556835 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 0.204132 -0.059744 - duadrupole -0.127967 0.303138 -0.175171 0.361286 0.022579 0.002456 - octupole -0.135031 0.064490 -0.081833 0.097857 0.020810 0.250721 0.061023 -0.115690 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 2.846419 10.123459 14.318054 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099040 0.017364 - octupole -0.006938 -0.415001 -0.020563 0.384074 0.195901 -0.173546 -0.175337 0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 4.959759 8.503017 14.465632 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 -0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole 0.362347 -0.032097 0.067519 -0.068455 0.111862 -0.234600 -0.179381 -0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 7.007211 9.310366 15.771940 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 -0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121103 0.078949 0.001930 0.434804 - octupole 0.128235 0.066191 0.098878 0.110012 0.100436 -0.054183 -0.199314 -0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 5.335845 13.492072 15.856154 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 0.216246 -0.112894 - duadrupole 0.231615 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole 0.150223 -0.184993 -0.116290 -0.324246 -0.434434 0.009658 0.550724 -0.159881 0.509238 0.036069 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 6.937778 11.683810 16.923681 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 -0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole -0.190699 0.292172 -0.613901 -0.301576 0.166371 0.195835 0.447530 -0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 6.827915 13.756143 17.894846 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 -0.079077 -0.047152 - duadrupole 0.177104 0.006089 -0.183194 -0.206575 0.019465 -0.143936 - octupole -0.090233 -0.197003 0.239935 0.184502 -0.227648 0.047722 -0.012288 0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 7.512622 15.373329 19.596564 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 0.228151 0.227536 - duadrupole -0.226596 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole 0.091256 0.060414 0.057038 0.055047 0.054877 -0.044246 -0.111914 -0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 8.346300 10.107560 17.785540 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 -0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142766 -0.071307 0.108121 - octupole 0.091909 -0.188995 0.277331 0.069309 0.049758 -0.131139 -0.327089 0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 10.071670 9.423787 19.371992 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 -0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole 0.040090 -0.095467 0.079919 0.058683 -0.126158 0.051889 0.046239 -0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 2.515590 7.948052 14.084314 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 0.115721 0.003434 - duadrupole 0.270648 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole 0.344269 -0.046395 -0.191856 -0.007750 0.171132 -0.125564 0.020724 -0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 0.263112 7.621267 13.676530 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 0.026718 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole 0.052482 -0.017862 0.101437 -0.090246 -0.034757 -0.166575 -0.066680 0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 1.067343 11.358109 14.159707 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 -0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole -0.195067 0.254354 -0.246051 0.014825 -0.033884 0.213914 0.279935 -0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -0.702987 9.779239 13.716060 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 -0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole 0.174029 -0.208769 0.072703 0.067761 0.017390 -0.228215 -0.090093 0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 -1.070795 12.367963 13.972142 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 -0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole 0.138702 -0.038897 0.021776 0.027863 0.007098 -0.125103 -0.028874 -0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -2.615803 14.246601 14.008692 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 0.265565 0.005667 - duadrupole 0.053653 0.238490 -0.292143 -0.457319 -0.029902 0.030180 - octupole -0.084792 -0.000751 0.009942 -0.105320 -0.003154 0.171502 -0.006789 -0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 2.463531 7.987609 13.549594 - polarizability tensor 4.528424 1.917551 0.356759 1.444128 6.305472 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 10.107633 8.875142 19.174170 - polarizability tensor 3.614271 -1.113333 2.917217 -0.029793 1.821479 0.641372 2.940226 -0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.334346 14.536802 13.592298 - polarizability tensor 5.676904 -5.144008 -0.727141 -3.339388 4.987137 -0.427750 -0.708035 -0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 7.167617 15.799561 19.397643 - polarizability tensor 2.014659 1.411522 2.754673 0.096191 2.864917 1.368381 1.742510 2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.359009 10.084805 17.811318 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536299 1.326286 -0.648852 1.549497 -0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.102989 12.385660 13.955016 - polarizability tensor 2.247828 -1.783499 0.065363 -1.149026 2.379896 0.043699 0.251241 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.527209 7.589435 13.724420 - polarizability tensor 5.239487 -1.239561 0.807464 -0.101560 1.234380 0.089842 1.195631 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.245682 12.627117 14.574286 - polarizability tensor 5.018067 4.875224 1.088491 1.811907 4.579786 0.228246 1.487331 1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.874126 8.562877 14.489050 - polarizability tensor 9.182809 -1.751286 0.995508 -0.084237 1.828484 0.387734 2.027093 0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.835468 13.782160 17.914647 - polarizability tensor 1.671051 0.572015 1.296469 0.542823 2.162529 1.769890 1.031019 1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.936298 10.173209 14.344652 - polarizability tensor 3.009105 -0.265453 0.164855 -0.392052 2.422902 0.078852 0.571863 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.508421 11.509463 17.309798 - polarizability tensor 5.263037 -4.454329 1.663069 -4.279634 13.403258 0.812801 1.522053 0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.000195 11.264263 14.730106 - polarizability tensor 13.654116 -2.638423 1.355104 -2.419214 4.125879 0.076557 2.653092 -0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.739029 9.944727 13.731485 - polarizability tensor 2.960545 0.866099 0.523975 1.061800 5.117296 0.710667 0.733477 0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.401296 13.409645 15.944915 - polarizability tensor 5.617929 -1.381554 4.877276 -1.251780 2.735770 -1.290944 3.659516 -1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.202943 11.379865 13.598357 - polarizability tensor 12.949896 -2.646490 1.785363 -2.381876 4.179637 -0.329227 2.420663 -0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.006729 9.423251 15.865524 - polarizability tensor 3.040417 1.393146 2.596746 0.925311 4.759664 3.665080 1.764101 3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.406423 11.892234 16.610589 - polarizability tensor 4.688607 -4.661428 1.698768 -4.460102 13.263283 0.923066 0.789241 0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.751820 15.620492 14.054933 - polarizability tensor 2.586920 -0.528103 -0.018359 -0.362647 2.294262 -0.043707 0.109841 -0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.363944 8.929875 20.496273 - polarizability tensor 2.625149 -0.213208 0.424935 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.009546 16.570134 20.821732 - polarizability tensor 2.080856 0.280706 0.149350 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.216721 8.242750 12.633279 - polarizability tensor 8.609786 3.161439 4.330873 3.390210 5.869745 2.969762 2.433189 1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.644333 7.322464 15.114694 - polarizability tensor 5.800146 -0.752295 1.186095 0.172145 7.005037 0.548345 0.964192 0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.768589 6.375821 13.838054 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321947 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.080107 13.922561 13.875466 - polarizability tensor 3.548724 -1.577098 0.269188 -2.005619 4.318439 0.319351 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.440947 9.828006 19.188399 - polarizability tensor 5.713598 -1.433755 3.432521 -2.871854 2.858065 -3.181668 3.126669 -2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.692591 14.719156 15.240704 - polarizability tensor 6.533271 0.444461 1.547291 -1.225663 5.733017 0.256666 1.271658 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.737515 9.553506 19.832198 - polarizability tensor 6.707222 -2.929001 4.115173 -3.681834 2.332214 -2.837643 2.110817 -1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.338154 15.027638 20.030403 - polarizability tensor 1.169669 1.724724 0.923944 2.191901 7.141826 4.969366 0.687890 2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.496254 14.369253 14.558771 - polarizability tensor 5.399130 -5.564497 0.213557 -4.017191 5.082742 0.297191 1.393778 -0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.712111 14.129933 13.993228 - polarizability tensor 10.702596 1.789313 3.005774 -0.514549 5.742470 -3.210321 2.108866 -0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.970218 8.483743 13.895660 - polarizability tensor 8.115953 0.753025 -0.167711 1.550833 6.978558 4.365403 0.764813 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.564896 8.049589 14.195882 - polarizability tensor 9.556643 3.699452 -1.931269 3.986424 6.261110 -1.285638 0.992072 0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.278058 7.886500 14.575810 - polarizability tensor 4.541347 2.067477 1.036870 1.580945 6.187413 0.395977 1.497097 1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.072943 15.351736 19.445527 - polarizability tensor 2.204024 0.653489 0.327501 1.701252 5.540979 4.544585 0.766862 3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S -4.999989 20.488830 19.613751 - znuc, mass 16.000000 31.972070 - - Atom A02C -3.144653 17.761779 20.019587 - znuc, mass 6.000000 12.000000 - - Atom A03C -4.108951 15.257609 20.091313 - znuc, mass 6.000000 12.000000 - - Atom A04S -7.371333 14.520895 19.724431 - znuc, mass 16.000000 31.972070 - - Atom A05C -8.203856 16.872306 17.478696 - znuc, mass 6.000000 12.000000 - - Atom A06C -7.232468 19.267783 17.420950 - znuc, mass 6.000000 12.000000 - - Atom A07C -7.984129 21.016972 15.536366 - znuc, mass 6.000000 12.000000 - - Atom A08N -8.601882 22.502156 14.017514 - znuc, mass 7.000000 14.003070 - - Atom A09C -10.049510 16.115283 15.697232 - znuc, mass 6.000000 12.000000 - - Atom A10N -11.654598 15.504761 14.305792 - znuc, mass 7.000000 14.003070 - - Atom A11N -2.482996 13.410964 20.487067 - znuc, mass 7.000000 14.003070 - - Atom A12S 0.396006 14.604039 20.906881 - znuc, mass 16.000000 31.972070 - - Atom A13C -0.550798 17.726909 20.408007 - znuc, mass 6.000000 12.000000 - - Atom A14C 1.131622 19.781488 20.394717 - znuc, mass 6.000000 12.000000 - - Atom A15N 2.539217 21.484185 20.334908 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -4.999989 20.488830 19.613751 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 -1.019605 -0.491700 - duadrupole 0.200252 0.667129 -0.867381 -0.820424 2.014536 0.644901 - octupole 0.081100 -0.120945 -0.015291 0.151350 0.112179 -0.258142 -0.096888 0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -3.144653 17.761779 20.019587 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026088 -0.009793 - octupole -0.080562 0.064792 -0.069734 -0.081134 0.040643 0.191017 0.029091 -0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C -4.108951 15.257609 20.091313 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 -0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole 0.154202 -0.066939 -0.010607 0.076422 0.037680 -0.126335 -0.027074 -0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -7.371333 14.520895 19.724431 - znuc, monopole 16.000000 -15.424149 - dipole 0.645105 0.702589 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883321 - octupole -0.376726 0.162146 -0.007751 -0.064504 -0.144810 0.217808 0.152561 0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -8.203856 16.872306 17.478696 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 0.012964 -0.126299 - duadrupole -0.086713 0.172782 -0.086070 0.198246 0.015502 -0.024956 - octupole -0.056685 -0.087927 -0.028493 0.015828 0.161274 0.009131 -0.132781 0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C -7.232468 19.267783 17.420950 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole -0.001075 0.050214 -0.014991 0.047446 -0.160109 0.001747 0.175100 -0.000672 -0.097661 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -7.984129 21.016972 15.536366 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole 0.066905 -0.052623 0.037692 -0.033015 0.046038 -0.056469 -0.083730 -0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -8.601882 22.502156 14.017514 - znuc, monopole 7.000000 -6.844356 - dipole 0.128196 -0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole -0.024985 0.019560 -0.010956 0.010338 -0.013703 0.014533 0.024660 0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -10.049510 16.115283 15.697232 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 -0.134363 -0.337213 - duadrupole 0.044076 -0.065351 0.021276 -0.052673 0.059479 -0.009395 - octupole -0.000862 0.071606 0.028175 -0.027284 -0.078173 0.054551 0.049998 -0.053689 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -11.654598 15.504761 14.305792 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole -0.001131 -0.023490 -0.018307 0.014058 0.034435 -0.020126 -0.016128 0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -2.482996 13.410964 20.487067 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109388 0.037751 - octupole -0.049872 0.009996 0.025010 0.027426 -0.025766 0.018699 0.000756 0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 0.396006 14.604039 20.906881 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 0.461479 -0.227968 - duadrupole 0.657691 1.380421 -2.038112 0.516799 0.477705 -0.276530 - octupole 0.079313 -0.431186 -0.101331 0.400784 0.037962 0.079016 0.063368 -0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -0.550798 17.726909 20.408007 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 0.118662 0.023762 - duadrupole 0.102512 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole 0.066522 0.033296 0.033078 -0.141141 -0.015825 -0.201472 -0.017252 0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 1.131622 19.781488 20.394717 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 0.447125 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole -0.082638 -0.017348 0.002354 0.067724 -0.011182 0.121329 0.008828 -0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 2.539217 21.484185 20.334908 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 -0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013044 -0.009826 - octupole 0.020681 0.004365 -0.003281 -0.025182 0.001816 -0.038396 0.001465 0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -4.072321 19.125305 19.816669 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 0.204132 0.059744 - duadrupole -0.127967 0.303138 -0.175171 -0.361286 0.022579 -0.002456 - octupole 0.135031 0.064490 0.081833 0.097857 -0.020810 -0.250721 -0.061023 0.115690 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -3.626802 16.509694 20.055450 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099040 -0.017364 - octupole 0.006938 -0.415001 0.020563 0.384074 -0.195901 0.173546 0.175337 -0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -5.740142 14.889252 19.907872 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 -0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole -0.362347 -0.032097 -0.067519 -0.068455 -0.111862 0.234600 0.179381 0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -7.787594 15.696601 18.601564 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 -0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121103 -0.078949 0.001930 -0.434804 - octupole -0.128235 0.066191 -0.098878 0.110012 -0.100436 0.054183 0.199314 0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -6.116228 19.878307 18.517351 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 0.216246 0.112894 - duadrupole 0.231615 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole -0.150223 -0.184993 0.116290 -0.324246 0.434434 -0.009658 -0.550724 0.159881 0.509238 0.036069 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -7.718162 18.070045 17.449823 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 -0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole 0.190699 0.292172 0.613901 -0.301576 -0.166371 -0.195835 -0.447530 0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 -7.608298 20.142378 16.478658 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 -0.079077 0.047152 - duadrupole 0.177104 0.006089 -0.183194 0.206575 0.019465 0.143936 - octupole 0.090233 -0.197003 -0.239935 0.184502 0.227648 -0.047722 0.012288 -0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -8.293006 21.759564 14.776940 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 0.228151 -0.227536 - duadrupole -0.226596 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole -0.091256 0.060414 -0.057038 0.055047 -0.054877 0.044246 0.111914 0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -9.126683 16.493795 16.587964 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 -0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142766 -0.071307 -0.108121 - octupole -0.091909 -0.188995 -0.277331 0.069309 -0.049758 0.131139 0.327089 -0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -10.852054 15.810022 15.001512 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 -0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole -0.040090 -0.095467 -0.079919 0.058683 0.126158 -0.051889 -0.046239 0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -3.295974 14.334287 20.289190 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 0.115721 -0.003434 - duadrupole 0.270648 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole -0.344269 -0.046395 0.191856 -0.007750 -0.171132 0.125564 -0.020724 0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 -1.043495 14.007502 20.696974 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 0.026718 0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole -0.052482 -0.017862 -0.101437 -0.090246 0.034757 0.166575 0.066680 -0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -1.847726 17.744344 20.213797 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 -0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole 0.195067 0.254354 0.246051 0.014825 0.033884 -0.213914 -0.279935 0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -0.077396 16.165474 20.657444 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 -0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole -0.174029 -0.208769 -0.072703 0.067761 -0.017390 0.228215 0.090093 -0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 0.290412 18.754198 20.401362 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 -0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole -0.138702 -0.038897 -0.021776 0.027863 -0.007098 0.125103 0.028874 0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 1.835420 20.632836 20.364812 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 0.265565 -0.005667 - duadrupole 0.053653 0.238490 -0.292143 0.457319 -0.029902 -0.030180 - octupole 0.084792 -0.000751 -0.009942 -0.105320 0.003154 -0.171502 0.006789 0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -3.243914 14.373844 20.823910 - polarizability tensor 4.528424 -1.917551 0.356759 -1.444128 6.305472 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -10.888016 15.261377 15.199334 - polarizability tensor 3.614271 1.113333 2.917217 0.029793 1.821479 -0.641372 2.940226 0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.553962 20.923037 20.781206 - polarizability tensor 5.676904 5.144008 -0.727141 3.339388 4.987137 0.427750 -0.708035 0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -7.948000 22.185796 14.975861 - polarizability tensor 2.014659 -1.411522 2.754673 -0.096191 2.864917 -1.368381 1.742510 -2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.139393 16.471040 16.562186 - polarizability tensor 2.644773 0.420648 2.214495 0.536299 1.326286 0.648852 1.549497 0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.322606 18.771895 20.418488 - polarizability tensor 2.247828 1.783499 0.065363 1.149026 2.379896 -0.043699 0.251241 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.307592 13.975670 20.649084 - polarizability tensor 5.239487 1.239561 0.807464 0.101560 1.234380 -0.089842 1.195631 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.026065 19.013352 19.799218 - polarizability tensor 5.018067 -4.875224 1.088491 -1.811907 4.579786 -0.228246 1.487331 -1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.654509 14.949112 19.884454 - polarizability tensor 9.182809 1.751286 0.995508 0.084237 1.828484 -0.387734 2.027093 -0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.615851 20.168395 16.458857 - polarizability tensor 1.671051 -0.572015 1.296469 -0.542823 2.162529 -1.769890 1.031019 -1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.716681 16.559444 20.028852 - polarizability tensor 3.009105 0.265453 0.164855 0.392052 2.422902 -0.078852 0.571863 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.288804 17.895698 17.063706 - polarizability tensor 5.263037 4.454329 1.663069 4.279634 13.403258 -0.812801 1.522053 -0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.780578 17.650498 19.643398 - polarizability tensor 13.654116 2.638423 1.355104 2.419214 4.125879 -0.076557 2.653092 0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.041354 16.330962 20.642019 - polarizability tensor 2.960545 -0.866099 0.523975 -1.061800 5.117296 -0.710667 0.733477 -0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.181679 19.795880 18.428589 - polarizability tensor 5.617929 1.381554 4.877276 1.251780 2.735770 1.290944 3.659516 1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.983327 17.766100 20.775147 - polarizability tensor 12.949896 2.646490 1.785363 2.381876 4.179637 0.329227 2.420663 0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.787112 15.809486 18.507980 - polarizability tensor 3.040417 -1.393146 2.596746 -0.925311 4.759664 -3.665080 1.764101 -3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.186806 18.278469 17.762915 - polarizability tensor 4.688607 4.661428 1.698768 4.460102 13.263283 -0.923066 0.789241 -0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.971437 22.006727 20.318571 - polarizability tensor 2.586920 0.528103 -0.018359 0.362647 2.294262 0.043707 0.109841 0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.144327 15.316110 13.877231 - polarizability tensor 2.625149 0.213208 0.424935 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.789929 22.956369 13.551772 - polarizability tensor 2.080856 -0.280706 0.149350 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.436338 14.628985 21.740225 - polarizability tensor 8.609786 -3.161439 4.330873 -3.390210 5.869745 -2.969762 2.433189 -1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.424716 13.708699 19.258810 - polarizability tensor 5.800146 0.752295 1.186095 -0.172145 7.005037 -0.548345 0.964192 -0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.548972 12.762056 20.535450 - polarizability tensor 2.238895 0.092051 0.189597 0.321947 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.299723 20.308796 20.498038 - polarizability tensor 3.548724 1.577098 0.269188 2.005619 4.318439 -0.319351 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.221331 16.214241 15.185105 - polarizability tensor 5.713598 1.433755 3.432521 2.871854 2.858065 3.181668 3.126669 2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.472974 21.105391 19.132800 - polarizability tensor 6.533271 -0.444461 1.547291 1.225663 5.733017 -0.256666 1.271658 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.517899 15.939741 14.541306 - polarizability tensor 6.707222 2.929001 4.115173 3.681834 2.332214 2.837643 2.110817 1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.118537 21.413873 14.343101 - polarizability tensor 1.169669 -1.724724 0.923944 -2.191901 7.141826 -4.969366 0.687890 -2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.715871 20.755488 19.814733 - polarizability tensor 5.399130 5.564497 0.213557 4.017191 5.082742 -0.297191 1.393778 0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.492494 20.516168 20.380276 - polarizability tensor 10.702596 -1.789313 3.005774 0.514549 5.742470 3.210321 2.108866 0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.750601 14.869978 20.477844 - polarizability tensor 8.115953 -0.753025 -0.167711 -1.550833 6.978558 -4.365403 0.764813 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.784513 14.435824 20.177622 - polarizability tensor 9.556643 -3.699452 -1.931269 -3.986424 6.261110 1.285638 0.992072 -0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.058441 14.272735 19.797694 - polarizability tensor 4.541347 -2.067477 1.036870 -1.580945 6.187413 -0.395977 1.497097 -1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.853326 21.737971 14.927977 - polarizability tensor 2.204024 -0.653489 0.327501 -1.701252 5.540979 -4.544585 0.766862 -3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S -12.300278 24.214814 8.155916 - znuc, mass 16.000000 31.972070 - - Atom A02C -10.444942 26.941865 8.561752 - znuc, mass 6.000000 12.000000 - - Atom A03C -11.409239 29.446035 8.633478 - znuc, mass 6.000000 12.000000 - - Atom A04S -14.671620 30.182751 8.266597 - znuc, mass 16.000000 31.972070 - - Atom A05C -15.504144 27.831340 6.020862 - znuc, mass 6.000000 12.000000 - - Atom A06C -14.532757 25.435863 5.963116 - znuc, mass 6.000000 12.000000 - - Atom A07C -15.284420 23.686674 4.078532 - znuc, mass 6.000000 12.000000 - - Atom A08N -15.902174 22.201491 2.559680 - znuc, mass 7.000000 14.003070 - - Atom A09C -17.349798 28.588364 4.239399 - znuc, mass 6.000000 12.000000 - - Atom A10N -18.954886 29.198887 2.847959 - znuc, mass 7.000000 14.003070 - - Atom A11N -9.783282 31.292679 9.029232 - znuc, mass 7.000000 14.003070 - - Atom A12S -6.904281 30.099603 9.449046 - znuc, mass 16.000000 31.972070 - - Atom A13C -7.851087 26.976734 8.950172 - znuc, mass 6.000000 12.000000 - - Atom A14C -6.168667 24.922154 8.936881 - znuc, mass 6.000000 12.000000 - - Atom A15N -4.761073 23.219456 8.877072 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -12.300278 24.214814 8.155916 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole 0.081100 0.120946 -0.015291 -0.151351 0.112179 -0.258142 -0.096888 0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -10.444942 26.941865 8.561752 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 -0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole -0.080562 -0.064792 -0.069734 0.081135 0.040643 0.191017 0.029091 -0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C -11.409239 29.446035 8.633478 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole 0.154202 0.066939 -0.010607 -0.076422 0.037680 -0.126335 -0.027074 -0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -14.671620 30.182751 8.266597 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 -0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole -0.376726 -0.162146 -0.007751 0.064505 -0.144810 0.217808 0.152561 0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -15.504144 27.831340 6.020862 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 -0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole -0.056685 0.087927 -0.028493 -0.015828 0.161274 0.009131 -0.132781 0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C -14.532757 25.435863 5.963116 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 -0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole -0.001075 -0.050214 -0.014991 -0.047446 -0.160108 0.001747 0.175099 -0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -15.284420 23.686674 4.078532 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 -0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole 0.066905 0.052623 0.037692 0.033015 0.046038 -0.056469 -0.083730 -0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -15.902174 22.201491 2.559680 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole -0.024985 -0.019560 -0.010956 -0.010338 -0.013703 0.014533 0.024660 0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -17.349798 28.588364 4.239399 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole -0.000862 -0.071606 0.028175 0.027284 -0.078173 0.054551 0.049997 -0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -18.954886 29.198887 2.847959 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 -0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole -0.001131 0.023490 -0.018307 -0.014058 0.034435 -0.020126 -0.016128 0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -9.783282 31.292679 9.029232 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 -0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole -0.049872 -0.009996 0.025010 -0.027426 -0.025766 0.018699 0.000756 0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -6.904281 30.099603 9.449046 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 -0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole 0.079313 0.431186 -0.101331 -0.400784 0.037962 0.079017 0.063368 -0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -7.851087 26.976734 8.950172 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 -0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole 0.066522 -0.033296 0.033077 0.141141 -0.015825 -0.201472 -0.017252 0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -6.168667 24.922154 8.936881 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 -0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole -0.082638 0.017348 0.002354 -0.067724 -0.011182 0.121329 0.008828 -0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -4.761073 23.219456 8.877072 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole 0.020681 -0.004365 -0.003281 0.025182 0.001816 -0.038396 0.001465 0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -11.372610 25.578340 8.358834 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 -0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole 0.135031 -0.064489 0.081833 -0.097858 -0.020810 -0.250721 -0.061022 0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -10.927090 28.193950 8.597615 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 -0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole 0.006937 0.415001 0.020564 -0.384074 -0.195901 0.173547 0.175337 -0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -13.040429 29.814393 8.450038 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole -0.362347 0.032096 -0.067519 0.068455 -0.111862 0.234599 0.179381 0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -15.087882 29.007045 7.143730 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole -0.128236 -0.066192 -0.098878 -0.110011 -0.100435 0.054183 0.199314 0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -13.416518 24.825339 7.059516 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 -0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole -0.150222 0.184993 0.116290 0.324246 0.434434 -0.009658 -0.550724 0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -15.018451 26.633601 5.991989 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole 0.190699 -0.292172 0.613901 0.301575 -0.166371 -0.195836 -0.447530 0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -14.908589 24.561268 5.020824 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole 0.090233 0.197003 -0.239935 -0.184502 0.227647 -0.047722 0.012288 -0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -15.593297 22.944082 3.319106 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 -0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole -0.091256 -0.060414 -0.057038 -0.055047 -0.054877 0.044246 0.111914 0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -16.426971 28.209852 5.130130 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole -0.091909 0.188995 -0.277331 -0.069309 -0.049758 0.131139 0.327089 -0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -18.152342 28.893626 3.543679 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole -0.040090 0.095467 -0.079919 -0.058683 0.126158 -0.051889 -0.046239 0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -10.596260 30.369357 8.831355 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 -0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole -0.344269 0.046395 0.191856 0.007750 -0.171132 0.125564 -0.020724 0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 -8.343782 30.696141 9.239139 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 -0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole -0.052482 0.017861 -0.101437 0.090246 0.034757 0.166574 0.066680 -0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -9.148014 26.959299 8.755962 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole 0.195067 -0.254353 0.246051 -0.014826 0.033884 -0.213914 -0.279935 0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -7.377684 28.538168 9.199609 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole -0.174029 0.208769 -0.072703 -0.067761 -0.017390 0.228215 0.090093 -0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 -7.009877 25.949444 8.943527 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole -0.138702 0.038897 -0.021776 -0.027862 -0.007098 0.125103 0.028874 0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -5.464870 24.070805 8.906976 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 -0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole 0.084793 0.000751 -0.009942 0.105319 0.003154 -0.171502 0.006789 0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -11.016969 28.144200 8.571017 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -18.521619 28.489407 3.727272 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.746409 23.780537 9.323269 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -16.153618 22.965676 3.470142 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.487096 26.425177 6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.358728 30.430909 8.339860 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.515775 30.267818 8.719786 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.326355 25.690292 8.341383 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.954796 29.754533 8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.439681 28.232607 5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.977683 25.931747 8.960653 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.916141 24.535251 5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.283615 26.937543 9.317312 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.341642 28.372680 9.184184 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.087400 28.894160 7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.080867 27.053146 8.185563 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.481969 24.907766 6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.589093 26.807948 5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.328854 22.696914 8.860735 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.444616 29.387539 2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.090221 21.747277 2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.607879 30.727973 9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.849258 31.941587 9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.050888 29.833668 9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.584314 23.948244 8.356857 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.818187 28.763906 3.083473 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.792784 24.187477 8.922441 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.188304 29.442270 3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.248292 22.517850 3.518027 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.000590 24.394823 9.040343 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.773264 23.598254 7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.725003 30.994947 7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.863948 30.074657 10.282389 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.544201 30.329800 9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.418827 23.289773 2.885267 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S -3.080683 17.828580 3.301918 - znuc, mass 16.000000 31.972070 - - Atom A02C -4.936019 20.555630 2.896083 - znuc, mass 6.000000 12.000000 - - Atom A03C -3.971722 23.059800 2.824356 - znuc, mass 6.000000 12.000000 - - Atom A04S -0.709341 23.796516 3.191237 - znuc, mass 16.000000 31.972070 - - Atom A05C 0.123183 21.445105 5.436972 - znuc, mass 6.000000 12.000000 - - Atom A06C -0.848204 19.049628 5.494719 - znuc, mass 6.000000 12.000000 - - Atom A07C -0.096541 17.300439 7.379303 - znuc, mass 6.000000 12.000000 - - Atom A08N 0.521213 15.815256 8.898155 - znuc, mass 7.000000 14.003070 - - Atom A09C 1.968837 22.202129 7.218436 - znuc, mass 6.000000 12.000000 - - Atom A10N 3.573925 22.812652 8.609875 - znuc, mass 7.000000 14.003070 - - Atom A11N -5.597679 24.906444 2.428602 - znuc, mass 7.000000 14.003070 - - Atom A12S -8.476680 23.713368 2.008788 - znuc, mass 16.000000 31.972070 - - Atom A13C -7.529874 20.590499 2.507663 - znuc, mass 6.000000 12.000000 - - Atom A14C -9.212293 18.535919 2.520953 - znuc, mass 6.000000 12.000000 - - Atom A15N -10.619888 16.833221 2.580763 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -3.080683 17.828580 3.301918 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole -0.081100 0.120946 0.015291 -0.151351 -0.112179 0.258142 0.096888 -0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -4.936019 20.555630 2.896083 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 -0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole 0.080562 -0.064792 0.069734 0.081135 -0.040643 -0.191017 -0.029091 0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C -3.971722 23.059800 2.824356 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole -0.154202 0.066939 0.010607 -0.076422 -0.037680 0.126335 0.027074 0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -0.709341 23.796516 3.191237 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 -0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole 0.376726 -0.162146 0.007751 0.064505 0.144810 -0.217808 -0.152561 -0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 0.123183 21.445105 5.436972 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 -0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole 0.056685 0.087927 0.028493 -0.015828 -0.161274 -0.009131 0.132781 -0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C -0.848204 19.049628 5.494719 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 -0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole 0.001075 -0.050214 0.014991 -0.047446 0.160108 -0.001747 -0.175099 0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -0.096541 17.300439 7.379303 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 -0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole -0.066905 0.052623 -0.037692 0.033015 -0.046038 0.056469 0.083730 0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 0.521213 15.815256 8.898155 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole 0.024985 -0.019560 0.010956 -0.010338 0.013703 -0.014533 -0.024660 -0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 1.968837 22.202129 7.218436 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole 0.000862 -0.071606 -0.028175 0.027284 0.078173 -0.054551 -0.049997 0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 3.573925 22.812652 8.609875 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 -0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole 0.001131 0.023490 0.018307 -0.014058 -0.034435 0.020126 0.016128 -0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -5.597679 24.906444 2.428602 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 -0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole 0.049872 -0.009996 -0.025010 -0.027426 0.025766 -0.018699 -0.000756 -0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -8.476680 23.713368 2.008788 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 -0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole -0.079313 0.431186 0.101331 -0.400784 -0.037962 -0.079017 -0.063368 0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -7.529874 20.590499 2.507663 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 -0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole -0.066522 -0.033296 -0.033077 0.141141 0.015825 0.201472 0.017252 -0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -9.212293 18.535919 2.520953 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 -0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole 0.082638 0.017348 -0.002354 -0.067724 0.011182 -0.121329 -0.008828 0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -10.619888 16.833221 2.580763 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole -0.020681 -0.004365 0.003281 0.025182 -0.001816 0.038396 -0.001465 -0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -4.008351 19.192105 3.099001 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 -0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole -0.135031 -0.064489 -0.081833 -0.097858 0.020810 0.250721 0.061022 -0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -4.453871 21.807715 2.860220 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 -0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole -0.006937 0.415001 -0.020564 -0.384074 0.195901 -0.173547 -0.175337 0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -2.340532 23.428158 3.007797 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole 0.362347 0.032096 0.067519 0.068455 0.111862 -0.234599 -0.179381 -0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -0.293079 22.620810 4.314105 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole 0.128236 -0.066192 0.098878 -0.110011 0.100435 -0.054183 -0.199314 -0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -1.964443 18.439104 4.398319 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 -0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole 0.150222 0.184993 -0.116290 0.324246 -0.434434 0.009658 0.550724 -0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -0.362510 20.247366 5.465846 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole -0.190699 -0.292172 -0.613901 0.301575 0.166371 0.195836 0.447530 -0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -0.472372 18.175033 6.437011 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole -0.090233 0.197003 0.239935 -0.184502 -0.227647 0.047722 -0.012288 0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 0.212336 16.557847 8.138729 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 -0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole 0.091256 -0.060414 0.057038 -0.055047 0.054877 -0.044246 -0.111914 -0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 1.046010 21.823617 6.327704 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole 0.091909 0.188995 0.277331 -0.069309 0.049758 -0.131139 -0.327089 0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 2.771381 22.507391 7.914156 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole 0.040090 0.095467 0.079919 -0.058683 -0.126158 0.051889 0.046239 -0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -4.784700 23.983122 2.626479 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 -0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole 0.344269 0.046395 -0.191856 0.007750 0.171132 -0.125564 0.020724 -0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 -7.037179 24.309906 2.218695 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 -0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole 0.052482 0.017861 0.101437 0.090246 -0.034757 -0.166574 -0.066680 0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -6.232947 20.573065 2.701873 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole -0.195067 -0.254353 -0.246051 -0.014826 -0.033884 0.213914 0.279935 -0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -8.003277 22.151933 2.258226 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole 0.174029 0.208769 0.072703 -0.067761 0.017390 -0.228215 -0.090093 0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 -8.371084 19.563209 2.514308 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole 0.138702 0.038897 0.021776 -0.027862 0.007098 -0.125103 -0.028874 -0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -9.916091 17.684570 2.550858 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 -0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole -0.084793 0.000751 0.009942 0.105319 -0.003154 0.171502 -0.006789 -0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -4.363992 21.757965 2.886817 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 3.140658 22.103172 7.730563 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.634552 17.394302 2.134565 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 0.772657 16.579441 7.987693 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.106135 20.038942 5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.022233 24.044674 3.117975 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.865186 23.881583 2.738049 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.054606 19.304057 3.116452 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.426164 23.368298 3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.058720 21.846372 6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.403278 19.545512 2.497182 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.464819 18.149016 6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.097346 20.551308 2.140523 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.039319 21.986445 2.273651 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.293561 22.507925 4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.300094 20.666911 3.272272 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.898992 18.521531 4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.791868 20.421713 5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.052107 16.310679 2.597099 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.063655 23.001304 9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.709261 15.361042 9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.773082 24.341738 2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.531703 25.555353 2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.330072 23.447433 2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.796647 17.562009 3.100978 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.437226 22.377672 8.374362 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.588177 17.801242 2.535393 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.807343 23.056035 7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.132669 16.131615 7.939807 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.380371 18.008588 2.417492 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.607697 17.212019 3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.655958 24.608712 3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.517013 23.688423 1.175445 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.836760 23.943565 2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.037866 16.903538 8.572568 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 12.300278 26.875065 -8.155916 - znuc, mass 16.000000 31.972070 - - Atom A02C 10.444942 24.148015 -8.561752 - znuc, mass 6.000000 12.000000 - - Atom A03C 11.409239 21.643844 -8.633478 - znuc, mass 6.000000 12.000000 - - Atom A04S 14.671620 20.907129 -8.266597 - znuc, mass 16.000000 31.972070 - - Atom A05C 15.504144 23.258540 -6.020862 - znuc, mass 6.000000 12.000000 - - Atom A06C 14.532757 25.654017 -5.963116 - znuc, mass 6.000000 12.000000 - - Atom A07C 15.284420 27.403206 -4.078532 - znuc, mass 6.000000 12.000000 - - Atom A08N 15.902174 28.888389 -2.559680 - znuc, mass 7.000000 14.003070 - - Atom A09C 17.349798 22.501515 -4.239399 - znuc, mass 6.000000 12.000000 - - Atom A10N 18.954886 21.890992 -2.847959 - znuc, mass 7.000000 14.003070 - - Atom A11N 9.783282 19.797200 -9.029232 - znuc, mass 7.000000 14.003070 - - Atom A12S 6.904281 20.990277 -9.449046 - znuc, mass 16.000000 31.972070 - - Atom A13C 7.851087 24.113146 -8.950172 - znuc, mass 6.000000 12.000000 - - Atom A14C 6.168667 26.167726 -8.936881 - znuc, mass 6.000000 12.000000 - - Atom A15N 4.761073 27.870423 -8.877072 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 12.300278 26.875065 -8.155916 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 -1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole -0.081100 -0.120946 0.015291 0.151351 -0.112179 0.258142 0.096888 -0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 10.444942 24.148015 -8.561752 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole 0.080562 0.064792 0.069734 -0.081135 -0.040643 -0.191017 -0.029091 0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 11.409239 21.643844 -8.633478 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 -0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole -0.154202 -0.066939 0.010607 0.076422 -0.037680 0.126335 0.027074 0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 14.671620 20.907129 -8.266597 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole 0.376726 0.162146 0.007751 -0.064505 0.144810 -0.217808 -0.152561 -0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 15.504144 23.258540 -6.020862 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole 0.056685 -0.087927 0.028493 0.015828 -0.161274 -0.009131 0.132781 -0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 14.532757 25.654017 -5.963116 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole 0.001075 0.050214 0.014991 0.047446 0.160108 -0.001747 -0.175099 0.000672 -0.097660 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 15.284420 27.403206 -4.078532 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole -0.066905 -0.052623 -0.037692 -0.033015 -0.046038 0.056469 0.083730 0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 15.902174 28.888389 -2.559680 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 -0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole 0.024985 0.019560 0.010956 0.010338 0.013703 -0.014533 -0.024660 -0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 17.349798 22.501515 -4.239399 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 -0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole 0.000862 0.071606 -0.028175 -0.027284 0.078173 -0.054551 -0.049997 0.053688 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 18.954886 21.890992 -2.847959 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole 0.001131 -0.023490 0.018307 0.014058 -0.034435 0.020126 0.016128 -0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 9.783282 19.797200 -9.029232 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole 0.049872 0.009996 -0.025010 0.027426 0.025766 -0.018699 -0.000756 -0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 6.904281 20.990277 -9.449046 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole -0.079313 -0.431186 0.101331 0.400784 -0.037962 -0.079017 -0.063368 0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 7.851087 24.113146 -8.950172 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole -0.066522 0.033296 -0.033077 -0.141141 0.015825 0.201472 0.017252 -0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 6.168667 26.167726 -8.936881 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole 0.082638 -0.017348 -0.002354 0.067724 0.011182 -0.121329 -0.008828 0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 4.761073 27.870423 -8.877072 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 -0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole -0.020681 0.004365 0.003281 -0.025182 -0.001816 0.038396 -0.001465 -0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 11.372610 25.511540 -8.358834 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole -0.135031 0.064489 -0.081833 0.097858 0.020810 0.250721 0.061022 -0.115691 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 10.927090 22.895930 -8.597615 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole -0.006937 -0.415001 -0.020564 0.384074 0.195901 -0.173547 -0.175337 0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 13.040429 21.275487 -8.450038 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 -0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole 0.362347 -0.032096 0.067519 -0.068455 0.111862 -0.234599 -0.179381 -0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 15.087882 22.082834 -7.143730 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 -0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole 0.128236 0.066192 0.098878 0.110011 0.100435 -0.054183 -0.199314 -0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 13.416518 26.264541 -7.059516 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole 0.150222 -0.184993 -0.116290 -0.324246 -0.434434 0.009658 0.550724 -0.159880 0.509238 0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 15.018451 24.456278 -5.991989 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 -0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole -0.190699 0.292172 -0.613901 -0.301575 0.166371 0.195836 0.447530 -0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 14.908589 26.528611 -5.020824 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 -0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole -0.090233 -0.197003 0.239935 0.184502 -0.227647 0.047722 -0.012288 0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 15.593297 28.145797 -3.319106 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole 0.091256 0.060414 0.057038 0.055047 0.054877 -0.044246 -0.111914 -0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 16.426971 22.880028 -5.130130 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 -0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole 0.091909 -0.188995 0.277331 0.069309 0.049758 -0.131139 -0.327089 0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 18.152342 22.196254 -3.543679 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 -0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole 0.040090 -0.095467 0.079919 0.058683 -0.126158 0.051889 0.046239 -0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 10.596260 20.720522 -8.831355 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole 0.344269 -0.046395 -0.191856 -0.007750 0.171132 -0.125564 0.020724 -0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 8.343782 20.393739 -9.239139 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole 0.052482 -0.017861 0.101437 -0.090246 -0.034757 -0.166574 -0.066680 0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 9.148014 24.130580 -8.755962 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 -0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole -0.195067 0.254353 -0.246051 0.014826 -0.033884 0.213914 0.279935 -0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 7.377684 22.551711 -9.199609 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 -0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole 0.174029 -0.208769 0.072703 0.067761 0.017390 -0.228215 -0.090093 0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 7.009877 25.140436 -8.943527 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 -0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole 0.138702 -0.038897 0.021776 0.027862 0.007098 -0.125103 -0.028874 -0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 5.464870 27.019075 -8.906976 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole -0.084793 -0.000751 0.009942 -0.105319 -0.003154 0.171502 -0.006789 -0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 10.544201 20.760080 -9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444129 6.305470 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 18.188304 21.647609 -3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821479 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.746327 27.309275 -9.323370 - polarizability tensor 5.676900 -5.144008 -0.727143 -3.339388 4.987141 -0.427749 -0.708036 -0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 15.248291 28.572029 -3.518027 - polarizability tensor 2.014660 1.411523 2.754674 0.096191 2.864916 1.368380 1.742511 2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.439681 22.857273 -5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.977683 25.158132 -8.960653 - polarizability tensor 2.247827 -1.783499 0.065362 -1.149026 2.379898 0.043699 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.607879 20.361906 -9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.326355 25.399587 -8.341383 - polarizability tensor 5.018070 4.875224 1.088491 1.811907 4.579783 0.228245 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.954796 21.335346 -8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.916141 26.554628 -5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.016969 22.945679 -8.571017 - polarizability tensor 3.009104 -0.265453 0.164854 -0.392052 2.422903 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.589093 24.281931 -5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522052 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.080866 24.036734 -8.185563 - polarizability tensor 13.654114 -2.638427 1.355101 -2.419218 4.125882 0.076557 2.653090 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.341642 22.717200 -9.184184 - polarizability tensor 2.960546 0.866100 0.523975 1.061801 5.117295 0.710667 0.733477 0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.481969 26.182114 -6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.283615 24.152337 -9.317312 - polarizability tensor 12.949895 -2.646494 1.785361 -2.381880 4.179640 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.087400 22.195720 -7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.487096 24.664703 -6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460098 13.263287 0.923067 0.789240 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.328854 28.392966 -8.860735 - polarizability tensor 2.586919 -0.528104 -0.018359 -0.362648 2.294263 -0.043707 0.109841 -0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.444616 21.702341 -2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.090221 29.342602 -2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.863949 21.015222 -10.282389 - polarizability tensor 8.609790 3.161438 4.330874 3.390209 5.869742 2.969759 2.433190 1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.725003 20.094933 -7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.849258 19.148292 -9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.000566 26.695035 -9.040202 - polarizability tensor 3.548722 -1.577098 0.269187 -2.005619 4.318440 0.319352 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.521619 22.600473 -3.727272 - polarizability tensor 5.713597 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.773264 27.491626 -7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225663 5.733018 0.256666 1.271657 0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.818187 22.325973 -3.083473 - polarizability tensor 6.707221 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.418828 27.800106 -2.885267 - polarizability tensor 1.169671 1.724727 0.923947 2.191905 7.141823 4.969365 0.687892 2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.584419 27.141726 -8.356897 - polarizability tensor 5.399126 -5.564498 0.213556 -4.017191 5.082747 0.297192 1.393777 -0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.792784 26.902402 -8.922442 - polarizability tensor 10.702598 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.050888 21.256211 -9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.515774 20.822062 -8.719786 - polarizability tensor 9.556647 3.699450 -1.931270 3.986422 6.261107 -1.285638 0.992071 0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.358728 20.658971 -8.339860 - polarizability tensor 4.541349 2.067478 1.036870 1.580946 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.153617 28.124204 -3.470143 - polarizability tensor 2.204025 0.653491 0.327503 1.701255 5.540977 4.544585 0.766864 3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 3.080683 33.261300 -3.301918 - znuc, mass 16.000000 31.972070 - - Atom A02C 4.936019 30.534250 -2.896083 - znuc, mass 6.000000 12.000000 - - Atom A03C 3.971722 28.030079 -2.824356 - znuc, mass 6.000000 12.000000 - - Atom A04S 0.709341 27.293364 -3.191237 - znuc, mass 16.000000 31.972070 - - Atom A05C -0.123183 29.644775 -5.436972 - znuc, mass 6.000000 12.000000 - - Atom A06C 0.848204 32.040252 -5.494719 - znuc, mass 6.000000 12.000000 - - Atom A07C 0.096541 33.789441 -7.379303 - znuc, mass 6.000000 12.000000 - - Atom A08N -0.521213 35.274624 -8.898155 - znuc, mass 7.000000 14.003070 - - Atom A09C -1.968837 28.887750 -7.218436 - znuc, mass 6.000000 12.000000 - - Atom A10N -3.573925 28.277227 -8.609875 - znuc, mass 7.000000 14.003070 - - Atom A11N 5.597679 26.183435 -2.428602 - znuc, mass 7.000000 14.003070 - - Atom A12S 8.476680 27.376512 -2.008788 - znuc, mass 16.000000 31.972070 - - Atom A13C 7.529874 30.499380 -2.507663 - znuc, mass 6.000000 12.000000 - - Atom A14C 9.212293 32.553961 -2.520953 - znuc, mass 6.000000 12.000000 - - Atom A15N 10.619888 34.256658 -2.580763 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 3.080683 33.261300 -3.301918 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 -1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole 0.081100 -0.120946 -0.015291 0.151351 0.112179 -0.258142 -0.096888 0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 4.936019 30.534250 -2.896083 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole -0.080562 0.064792 -0.069734 -0.081135 0.040643 0.191017 0.029091 -0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 3.971722 28.030079 -2.824356 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 -0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole 0.154202 -0.066939 -0.010607 0.076422 0.037680 -0.126335 -0.027074 -0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 0.709341 27.293364 -3.191237 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole -0.376726 0.162146 -0.007751 -0.064505 -0.144810 0.217808 0.152561 0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -0.123183 29.644775 -5.436972 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole -0.056685 -0.087927 -0.028493 0.015828 0.161274 0.009131 -0.132781 0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 0.848204 32.040252 -5.494719 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole -0.001075 0.050214 -0.014991 0.047446 -0.160108 0.001747 0.175099 -0.000672 -0.097660 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 0.096541 33.789441 -7.379303 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole 0.066905 -0.052623 0.037692 -0.033015 0.046038 -0.056469 -0.083730 -0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -0.521213 35.274624 -8.898155 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 -0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole -0.024985 0.019560 -0.010956 0.010338 -0.013703 0.014533 0.024660 0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -1.968837 28.887750 -7.218436 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 -0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole -0.000862 0.071606 0.028175 -0.027284 -0.078173 0.054551 0.049997 -0.053688 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -3.573925 28.277227 -8.609875 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole -0.001131 -0.023490 -0.018307 0.014058 0.034435 -0.020126 -0.016128 0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 5.597679 26.183435 -2.428602 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole -0.049872 0.009996 0.025010 0.027426 -0.025766 0.018699 0.000756 0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 8.476680 27.376512 -2.008788 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole 0.079313 -0.431186 -0.101331 0.400784 0.037962 0.079017 0.063368 -0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 7.529874 30.499380 -2.507663 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole 0.066522 0.033296 0.033077 -0.141141 -0.015825 -0.201472 -0.017252 0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 9.212293 32.553961 -2.520953 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole -0.082638 -0.017348 0.002354 0.067724 -0.011182 0.121329 0.008828 -0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 10.619888 34.256658 -2.580763 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 -0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole 0.020681 0.004365 -0.003281 -0.025182 0.001816 -0.038396 0.001465 0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 4.008351 31.897775 -3.099001 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole 0.135031 0.064489 0.081833 0.097858 -0.020810 -0.250721 -0.061022 0.115691 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 4.453871 29.282165 -2.860220 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole 0.006937 -0.415001 0.020564 0.384074 -0.195901 0.173547 0.175337 -0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 2.340532 27.661722 -3.007797 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 -0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole -0.362347 -0.032096 -0.067519 -0.068455 -0.111862 0.234599 0.179381 0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 0.293079 28.469069 -4.314105 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 -0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole -0.128236 0.066192 -0.098878 0.110011 -0.100435 0.054183 0.199314 0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 1.964443 32.650776 -4.398319 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole -0.150222 -0.184993 0.116290 -0.324246 0.434434 -0.009658 -0.550724 0.159880 0.509238 0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 0.362510 30.842513 -5.465846 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 -0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole 0.190699 0.292172 0.613901 -0.301575 -0.166371 -0.195836 -0.447530 0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 0.472372 32.914846 -6.437011 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 -0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole 0.090233 -0.197003 -0.239935 0.184502 0.227647 -0.047722 0.012288 -0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -0.212336 34.532032 -8.138729 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole -0.091256 0.060414 -0.057038 0.055047 -0.054877 0.044246 0.111914 0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -1.046010 29.266262 -6.327704 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 -0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole -0.091909 -0.188995 -0.277331 0.069309 -0.049758 0.131139 0.327089 -0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -2.771381 28.582489 -7.914156 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 -0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole -0.040090 -0.095467 -0.079919 0.058683 0.126158 -0.051889 -0.046239 0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 4.784700 27.106757 -2.626479 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole -0.344269 -0.046395 0.191856 -0.007750 -0.171132 0.125564 -0.020724 0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 7.037179 26.779974 -2.218695 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole -0.052482 -0.017861 -0.101437 -0.090246 0.034757 0.166574 0.066680 -0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 6.232947 30.516815 -2.701873 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 -0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole 0.195067 0.254353 0.246051 0.014826 0.033884 -0.213914 -0.279935 0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 8.003277 28.937946 -2.258226 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 -0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole -0.174029 -0.208769 -0.072703 0.067761 -0.017390 0.228215 0.090093 -0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 8.371084 31.526671 -2.514308 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 -0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole -0.138702 -0.038897 -0.021776 0.027862 -0.007098 0.125103 0.028874 0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 9.916091 33.405309 -2.550858 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole 0.084793 -0.000751 -0.009942 -0.105319 0.003154 -0.171502 0.006789 0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 4.836760 27.146314 -2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444129 6.305470 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -2.807344 28.033844 -7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821479 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.634633 33.695510 -2.134465 - polarizability tensor 5.676900 5.144008 -0.727143 3.339388 4.987141 0.427749 -0.708036 0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 0.132670 34.958264 -7.939808 - polarizability tensor 2.014660 -1.411523 2.754674 -0.096191 2.864916 -1.368380 1.742511 -2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.058720 29.243508 -6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.403278 31.544367 -2.497182 - polarizability tensor 2.247827 1.783499 0.065362 1.149026 2.379898 -0.043699 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.773082 26.748141 -2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.054606 31.785822 -3.116452 - polarizability tensor 5.018070 -4.875224 1.088491 -1.811907 4.579783 -0.228245 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.426164 27.721581 -3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.464819 32.940863 -6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.363992 29.331914 -2.886817 - polarizability tensor 3.009104 0.265453 0.164854 0.392052 2.422903 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.791868 30.668166 -5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522052 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.300094 30.422969 -3.272272 - polarizability tensor 13.654114 2.638427 1.355101 2.419218 4.125882 -0.076557 2.653090 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.039319 29.103435 -2.273651 - polarizability tensor 2.960546 -0.866100 0.523975 -1.061801 5.117295 -0.710667 0.733477 -0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.898992 32.568349 -4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.097346 30.538571 -2.140523 - polarizability tensor 12.949895 2.646494 1.785361 2.381880 4.179640 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.293561 28.581955 -4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.106135 31.050938 -5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460098 13.263287 -0.923067 0.789240 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.052107 34.779201 -2.597100 - polarizability tensor 2.586919 0.528104 -0.018359 0.362648 2.294263 0.043707 0.109841 0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.063655 28.088576 -9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.709261 35.728837 -9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.517012 27.401457 -1.175445 - polarizability tensor 8.609790 -3.161438 4.330874 -3.390209 5.869742 -2.969759 2.433190 -1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.655958 26.481168 -3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.531703 25.534527 -2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.380395 33.081270 -2.417633 - polarizability tensor 3.548722 1.577098 0.269187 2.005619 4.318440 -0.319352 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.140658 28.986707 -7.730563 - polarizability tensor 5.713597 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.607697 33.877861 -3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225663 5.733018 -0.256666 1.271657 -0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.437226 28.712208 -8.374362 - polarizability tensor 6.707221 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.037867 34.186341 -8.572568 - polarizability tensor 1.169671 -1.724727 0.923947 -2.191905 7.141823 -4.969365 0.687892 -2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.796542 33.527961 -3.100937 - polarizability tensor 5.399126 5.564498 0.213556 4.017191 5.082747 -0.297192 1.393777 0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.588177 33.288637 -2.535393 - polarizability tensor 10.702598 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.330072 27.642446 -2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.865186 27.208297 -2.738048 - polarizability tensor 9.556647 -3.699450 -1.931270 -3.986422 6.261107 1.285638 0.992071 -0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.022233 27.045206 -3.117975 - polarizability tensor 4.541349 -2.067478 1.036870 -1.580946 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.772656 34.510439 -7.987692 - polarizability tensor 2.204025 -0.653491 0.327503 -1.701255 5.540977 -4.544585 0.766864 -3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S -20.380949 24.214814 31.071586 - znuc, mass 16.000000 31.972070 - - Atom A02C -18.525613 26.941865 31.477421 - znuc, mass 6.000000 12.000000 - - Atom A03C -19.489910 29.446035 31.549148 - znuc, mass 6.000000 12.000000 - - Atom A04S -22.752291 30.182751 31.182267 - znuc, mass 16.000000 31.972070 - - Atom A05C -23.584815 27.831340 28.936532 - znuc, mass 6.000000 12.000000 - - Atom A06C -22.613428 25.435863 28.878785 - znuc, mass 6.000000 12.000000 - - Atom A07C -23.365091 23.686674 26.994201 - znuc, mass 6.000000 12.000000 - - Atom A08N -23.982845 22.201491 25.475349 - znuc, mass 7.000000 14.003070 - - Atom A09C -25.430469 28.588364 27.155068 - znuc, mass 6.000000 12.000000 - - Atom A10N -27.035557 29.198887 25.763629 - znuc, mass 7.000000 14.003070 - - Atom A11N -17.863954 31.292679 31.944902 - znuc, mass 7.000000 14.003070 - - Atom A12S -14.984952 30.099603 32.364716 - znuc, mass 16.000000 31.972070 - - Atom A13C -15.931758 26.976734 31.865841 - znuc, mass 6.000000 12.000000 - - Atom A14C -14.249339 24.922154 31.852551 - znuc, mass 6.000000 12.000000 - - Atom A15N -12.841744 23.219456 31.792741 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -20.380949 24.214814 31.071586 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole 0.081100 0.120946 -0.015291 -0.151351 0.112179 -0.258142 -0.096888 0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -18.525613 26.941865 31.477421 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 -0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole -0.080562 -0.064792 -0.069734 0.081135 0.040643 0.191017 0.029091 -0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C -19.489910 29.446035 31.549148 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole 0.154202 0.066939 -0.010607 -0.076422 0.037680 -0.126335 -0.027074 -0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -22.752291 30.182751 31.182267 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 -0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole -0.376726 -0.162146 -0.007751 0.064505 -0.144810 0.217808 0.152561 0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -23.584815 27.831340 28.936532 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 -0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole -0.056685 0.087927 -0.028493 -0.015828 0.161274 0.009131 -0.132781 0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C -22.613428 25.435863 28.878785 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 -0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole -0.001075 -0.050214 -0.014991 -0.047446 -0.160108 0.001747 0.175099 -0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -23.365091 23.686674 26.994201 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 -0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole 0.066905 0.052623 0.037692 0.033015 0.046038 -0.056469 -0.083730 -0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -23.982845 22.201491 25.475349 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole -0.024985 -0.019560 -0.010956 -0.010338 -0.013703 0.014533 0.024660 0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -25.430469 28.588364 27.155068 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole -0.000862 -0.071606 0.028175 0.027284 -0.078173 0.054551 0.049997 -0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -27.035557 29.198887 25.763629 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 -0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole -0.001131 0.023490 -0.018307 -0.014058 0.034435 -0.020126 -0.016128 0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -17.863954 31.292679 31.944902 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 -0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole -0.049872 -0.009996 0.025010 -0.027426 -0.025766 0.018699 0.000756 0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -14.984952 30.099603 32.364716 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 -0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole 0.079313 0.431186 -0.101331 -0.400784 0.037962 0.079017 0.063368 -0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -15.931758 26.976734 31.865841 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 -0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole 0.066522 -0.033296 0.033077 0.141141 -0.015825 -0.201472 -0.017252 0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -14.249339 24.922154 31.852551 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 -0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole -0.082638 0.017348 0.002354 -0.067724 -0.011182 0.121329 0.008828 -0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -12.841744 23.219456 31.792741 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole 0.020681 -0.004365 -0.003281 0.025182 0.001816 -0.038396 0.001465 0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -19.453281 25.578340 31.274503 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 -0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole 0.135031 -0.064489 0.081833 -0.097858 -0.020810 -0.250721 -0.061022 0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -19.007761 28.193950 31.513284 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 -0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole 0.006937 0.415001 0.020564 -0.384074 -0.195901 0.173547 0.175337 -0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -21.121100 29.814393 31.365707 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole -0.362347 0.032096 -0.067519 0.068455 -0.111862 0.234599 0.179381 0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -23.168553 29.007045 30.059399 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole -0.128236 -0.066192 -0.098878 -0.110011 -0.100435 0.054183 0.199314 0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -21.497189 24.825339 29.975185 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 -0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole -0.150222 0.184993 0.116290 0.324246 0.434434 -0.009658 -0.550724 0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -23.099122 26.633601 28.907658 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole 0.190699 -0.292172 0.613901 0.301575 -0.166371 -0.195836 -0.447530 0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -22.989260 24.561268 27.936493 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole 0.090233 0.197003 -0.239935 -0.184502 0.227647 -0.047722 0.012288 -0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -23.673968 22.944082 26.234775 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 -0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole -0.091256 -0.060414 -0.057038 -0.055047 -0.054877 0.044246 0.111914 0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -24.507642 28.209852 28.045800 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole -0.091909 0.188995 -0.277331 -0.069309 -0.049758 0.131139 0.327089 -0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -26.233013 28.893626 26.459348 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole -0.040090 0.095467 -0.079919 -0.058683 0.126158 -0.051889 -0.046239 0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -18.676932 30.369357 31.747025 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 -0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole -0.344269 0.046395 0.191856 0.007750 -0.171132 0.125564 -0.020724 0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 -16.424453 30.696141 32.154809 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 -0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole -0.052482 0.017861 -0.101437 0.090246 0.034757 0.166574 0.066680 -0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -17.228685 26.959299 31.671631 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole 0.195067 -0.254353 0.246051 -0.014826 0.033884 -0.213914 -0.279935 0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -15.458355 28.538168 32.115278 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole -0.174029 0.208769 -0.072703 -0.067761 -0.017390 0.228215 0.090093 -0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 -15.090548 25.949444 31.859196 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole -0.138702 0.038897 -0.021776 -0.027862 -0.007098 0.125103 0.028874 0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -13.545541 24.070805 31.822646 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 -0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole 0.084793 0.000751 -0.009942 0.105319 0.003154 -0.171502 0.006789 0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -19.097640 28.144200 31.486687 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -26.602290 28.489407 26.642941 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.827080 23.780537 32.238939 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -24.234289 22.965676 26.385811 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.567767 26.425177 29.220750 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.439399 30.430909 31.255529 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.596446 30.267818 31.635455 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.407026 25.690292 31.257052 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -21.035468 29.754533 31.342289 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.520352 28.232607 28.020022 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.058354 25.931747 31.876322 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.996813 24.535251 27.916692 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.364286 26.937543 32.232981 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.422313 28.372680 32.099853 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.168071 28.894160 29.965816 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.161538 27.053146 31.101232 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -21.562640 24.907766 29.886424 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.669764 26.807948 28.521541 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.409525 22.696914 31.776405 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -27.525287 29.387539 25.335067 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.170893 21.747277 25.009608 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.688550 30.727973 32.106919 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.929929 31.941587 31.993285 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.131560 29.833668 31.935679 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.664985 23.948244 31.272526 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -25.898858 28.763906 25.999142 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -20.873455 24.187477 31.838111 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -26.268976 29.442270 26.657170 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.328963 22.517850 26.433697 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.081261 24.394823 31.956012 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.853935 23.598254 30.590634 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.805674 30.994947 30.716646 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.944619 30.074657 33.198059 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.624872 30.329800 32.281745 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.499498 23.289773 25.800936 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S -11.161354 17.828580 26.217588 - znuc, mass 16.000000 31.972070 - - Atom A02C -13.016690 20.555630 25.811752 - znuc, mass 6.000000 12.000000 - - Atom A03C -12.052393 23.059800 25.740026 - znuc, mass 6.000000 12.000000 - - Atom A04S -8.790012 23.796516 26.106907 - znuc, mass 16.000000 31.972070 - - Atom A05C -7.957488 21.445105 28.352642 - znuc, mass 6.000000 12.000000 - - Atom A06C -8.928875 19.049628 28.410388 - znuc, mass 6.000000 12.000000 - - Atom A07C -8.177212 17.300439 30.294972 - znuc, mass 6.000000 12.000000 - - Atom A08N -7.559458 15.815256 31.813824 - znuc, mass 7.000000 14.003070 - - Atom A09C -6.111834 22.202129 30.134105 - znuc, mass 6.000000 12.000000 - - Atom A10N -4.506746 22.812652 31.525545 - znuc, mass 7.000000 14.003070 - - Atom A11N -13.678350 24.906444 25.344272 - znuc, mass 7.000000 14.003070 - - Atom A12S -16.557351 23.713368 24.924458 - znuc, mass 16.000000 31.972070 - - Atom A13C -15.610545 20.590499 25.423332 - znuc, mass 6.000000 12.000000 - - Atom A14C -17.292965 18.535919 25.436623 - znuc, mass 6.000000 12.000000 - - Atom A15N -18.700559 16.833221 25.496432 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -11.161354 17.828580 26.217588 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole -0.081100 0.120946 0.015291 -0.151351 -0.112179 0.258142 0.096888 -0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -13.016690 20.555630 25.811752 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 -0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole 0.080562 -0.064792 0.069734 0.081135 -0.040643 -0.191017 -0.029091 0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C -12.052393 23.059800 25.740026 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole -0.154202 0.066939 0.010607 -0.076422 -0.037680 0.126335 0.027074 0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -8.790012 23.796516 26.106907 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 -0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole 0.376726 -0.162146 0.007751 0.064505 0.144810 -0.217808 -0.152561 -0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -7.957488 21.445105 28.352642 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 -0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole 0.056685 0.087927 0.028493 -0.015828 -0.161274 -0.009131 0.132781 -0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C -8.928875 19.049628 28.410388 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 -0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole 0.001075 -0.050214 0.014991 -0.047446 0.160108 -0.001747 -0.175099 0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -8.177212 17.300439 30.294972 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 -0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole -0.066905 0.052623 -0.037692 0.033015 -0.046038 0.056469 0.083730 0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -7.559458 15.815256 31.813824 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole 0.024985 -0.019560 0.010956 -0.010338 0.013703 -0.014533 -0.024660 -0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -6.111834 22.202129 30.134105 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole 0.000862 -0.071606 -0.028175 0.027284 0.078173 -0.054551 -0.049997 0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -4.506746 22.812652 31.525545 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 -0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole 0.001131 0.023490 0.018307 -0.014058 -0.034435 0.020126 0.016128 -0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -13.678350 24.906444 25.344272 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 -0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole 0.049872 -0.009996 -0.025010 -0.027426 0.025766 -0.018699 -0.000756 -0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -16.557351 23.713368 24.924458 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 -0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole -0.079313 0.431186 0.101331 -0.400784 -0.037962 -0.079017 -0.063368 0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -15.610545 20.590499 25.423332 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 -0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole -0.066522 -0.033296 -0.033077 0.141141 0.015825 0.201472 0.017252 -0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -17.292965 18.535919 25.436623 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 -0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole 0.082638 0.017348 -0.002354 -0.067724 0.011182 -0.121329 -0.008828 0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -18.700559 16.833221 25.496432 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole -0.020681 -0.004365 0.003281 0.025182 -0.001816 0.038396 -0.001465 -0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -12.089022 19.192105 26.014670 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 -0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole -0.135031 -0.064489 -0.081833 -0.097858 0.020810 0.250721 0.061022 -0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -12.534542 21.807715 25.775889 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 -0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole -0.006937 0.415001 -0.020564 -0.384074 0.195901 -0.173547 -0.175337 0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -10.421203 23.428158 25.923466 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole 0.362347 0.032096 0.067519 0.068455 0.111862 -0.234599 -0.179381 -0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -8.373750 22.620810 27.229774 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole 0.128236 -0.066192 0.098878 -0.110011 0.100435 -0.054183 -0.199314 -0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -10.045114 18.439104 27.313988 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 -0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole 0.150222 0.184993 -0.116290 0.324246 -0.434434 0.009658 0.550724 -0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -8.443181 20.247366 28.381515 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole -0.190699 -0.292172 -0.613901 0.301575 0.166371 0.195836 0.447530 -0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -8.553043 18.175033 29.352680 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole -0.090233 0.197003 0.239935 -0.184502 -0.227647 0.047722 -0.012288 0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -7.868335 16.557847 31.054398 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 -0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole 0.091256 -0.060414 0.057038 -0.055047 0.054877 -0.044246 -0.111914 -0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -7.034661 21.823617 29.243374 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole 0.091909 0.188995 0.277331 -0.069309 0.049758 -0.131139 -0.327089 0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -5.309290 22.507391 30.829825 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole 0.040090 0.095467 0.079919 -0.058683 -0.126158 0.051889 0.046239 -0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -12.865372 23.983122 25.542149 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 -0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole 0.344269 0.046395 -0.191856 0.007750 0.171132 -0.125564 0.020724 -0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 -15.117850 24.309906 25.134365 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 -0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole 0.052482 0.017861 0.101437 0.090246 -0.034757 -0.166574 -0.066680 0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -14.313618 20.573065 25.617542 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole -0.195067 -0.254353 -0.246051 -0.014826 -0.033884 0.213914 0.279935 -0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -16.083948 22.151933 25.173895 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole 0.174029 0.208769 0.072703 -0.067761 0.017390 -0.228215 -0.090093 0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 -16.451755 19.563209 25.429977 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole 0.138702 0.038897 0.021776 -0.027862 0.007098 -0.125103 -0.028874 -0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -17.996762 17.684570 25.466528 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 -0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole -0.084793 0.000751 0.009942 0.105319 -0.003154 0.171502 -0.006789 -0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -12.444663 21.757965 25.802487 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -4.940013 22.103172 30.646232 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.715223 17.394302 25.050235 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -7.308014 16.579441 30.903362 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.974536 20.038942 28.068423 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.102904 24.044674 26.033644 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.945857 23.881583 25.653718 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.135277 19.304057 26.032121 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.506836 23.368298 25.946884 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.021951 21.846372 29.269151 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.483949 19.545512 25.412851 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.545491 18.149016 29.372481 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.178017 20.551308 25.056192 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.119990 21.986445 25.189320 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.374232 22.507925 27.323358 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.380765 20.666911 26.187941 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.979663 18.521531 27.402749 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.872539 20.421713 28.767632 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.132779 16.310679 25.512769 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.017016 23.001304 31.954106 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.371411 15.361042 32.279566 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.853753 24.341738 25.182254 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.612374 25.555353 25.295888 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.410744 23.447433 25.353494 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.877318 17.562009 26.016647 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.643445 22.377672 31.290032 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.668848 17.801242 25.451063 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.273328 23.056035 30.632003 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.213340 16.131615 30.855477 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.461042 18.008588 25.333161 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.688368 17.212019 26.698539 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.736629 24.608712 26.572528 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.597684 23.688423 24.091115 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.917431 23.943565 25.007429 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.042805 16.903538 31.488237 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 4.219605 26.875065 14.759753 - znuc, mass 16.000000 31.972070 - - Atom A02C 2.364270 24.148014 14.353917 - znuc, mass 6.000000 12.000000 - - Atom A03C 3.328568 21.643844 14.282191 - znuc, mass 6.000000 12.000000 - - Atom A04S 6.590950 20.907130 14.649073 - znuc, mass 16.000000 31.972070 - - Atom A05C 7.423473 23.258541 16.894808 - znuc, mass 6.000000 12.000000 - - Atom A06C 6.452084 25.654018 16.952554 - znuc, mass 6.000000 12.000000 - - Atom A07C 7.203746 27.403207 18.837138 - znuc, mass 6.000000 12.000000 - - Atom A08N 7.821499 28.888391 20.355990 - znuc, mass 7.000000 14.003070 - - Atom A09C 9.269126 22.501518 18.676272 - znuc, mass 6.000000 12.000000 - - Atom A10N 10.874214 21.890996 20.067712 - znuc, mass 7.000000 14.003070 - - Atom A11N 1.702613 19.797199 13.886437 - znuc, mass 7.000000 14.003070 - - Atom A12S -1.176389 20.990274 13.466623 - znuc, mass 16.000000 31.972070 - - Atom A13C -0.229585 24.113143 13.965497 - znuc, mass 6.000000 12.000000 - - Atom A14C -1.912005 26.167723 13.978787 - znuc, mass 6.000000 12.000000 - - Atom A15N -3.319600 27.870420 14.038596 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 4.219605 26.875065 14.759753 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 -1.019605 0.491700 - duadrupole 0.200252 0.667129 -0.867381 0.820424 2.014536 -0.644901 - octupole -0.081100 -0.120945 0.015291 0.151350 -0.112179 0.258142 0.096888 -0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 2.364270 24.148014 14.353917 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026088 0.009793 - octupole 0.080562 0.064792 0.069734 -0.081134 -0.040643 -0.191017 -0.029091 0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 3.328568 21.643844 14.282191 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 -0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole -0.154202 -0.066939 0.010607 0.076422 -0.037680 0.126335 0.027074 0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 6.590950 20.907130 14.649073 - znuc, monopole 16.000000 -15.424149 - dipole -0.645105 0.702589 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883321 - octupole 0.376726 0.162146 0.007751 -0.064504 0.144810 -0.217808 -0.152561 -0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 7.423473 23.258541 16.894808 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 0.012964 0.126299 - duadrupole -0.086713 0.172782 -0.086070 -0.198246 0.015502 0.024956 - octupole 0.056685 -0.087927 0.028493 0.015828 -0.161274 -0.009131 0.132781 -0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 6.452084 25.654018 16.952554 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole 0.001075 0.050214 0.014991 0.047446 0.160109 -0.001747 -0.175100 0.000672 -0.097661 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 7.203746 27.403207 18.837138 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole -0.066905 -0.052623 -0.037692 -0.033015 -0.046038 0.056469 0.083730 0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 7.821499 28.888391 20.355990 - znuc, monopole 7.000000 -6.844356 - dipole -0.128196 -0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole 0.024985 0.019560 0.010956 0.010338 0.013703 -0.014533 -0.024660 -0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 9.269126 22.501518 18.676272 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 -0.134363 0.337213 - duadrupole 0.044076 -0.065351 0.021276 0.052673 0.059479 0.009395 - octupole 0.000862 0.071606 -0.028175 -0.027284 0.078173 -0.054551 -0.049998 0.053689 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 10.874214 21.890996 20.067712 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole 0.001131 -0.023490 0.018307 0.014058 -0.034435 0.020126 0.016128 -0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 1.702613 19.797199 13.886437 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109388 -0.037751 - octupole 0.049872 0.009996 -0.025010 0.027426 0.025766 -0.018699 -0.000756 -0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -1.176389 20.990274 13.466623 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 0.461479 0.227968 - duadrupole 0.657691 1.380421 -2.038112 -0.516799 0.477705 0.276530 - octupole -0.079313 -0.431186 0.101331 0.400784 -0.037962 -0.079016 -0.063368 0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -0.229585 24.113143 13.965497 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 0.118662 -0.023762 - duadrupole 0.102512 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole -0.066522 0.033296 -0.033078 -0.141141 0.015825 0.201472 0.017252 -0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -1.912005 26.167723 13.978787 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 0.447125 0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole 0.082638 -0.017348 -0.002354 0.067724 0.011182 -0.121329 -0.008828 0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -3.319600 27.870420 14.038596 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 -0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013044 0.009826 - octupole -0.020681 0.004365 0.003281 -0.025182 -0.001816 0.038396 -0.001465 -0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 3.291938 25.511540 14.556835 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 0.204132 -0.059744 - duadrupole -0.127967 0.303138 -0.175171 0.361286 0.022579 0.002456 - octupole -0.135031 0.064490 -0.081833 0.097857 0.020810 0.250721 0.061023 -0.115690 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 2.846419 22.895929 14.318054 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099040 0.017364 - octupole -0.006938 -0.415001 -0.020563 0.384074 0.195901 -0.173546 -0.175337 0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 4.959759 21.275487 14.465632 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 -0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole 0.362347 -0.032097 0.067519 -0.068455 0.111862 -0.234600 -0.179381 -0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 7.007211 22.082836 15.771940 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 -0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121103 0.078949 0.001930 0.434804 - octupole 0.128235 0.066191 0.098878 0.110012 0.100436 -0.054183 -0.199314 -0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 5.335845 26.264542 15.856154 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 0.216246 -0.112894 - duadrupole 0.231615 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole 0.150223 -0.184993 -0.116290 -0.324246 -0.434434 0.009658 0.550724 -0.159881 0.509238 0.036069 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 6.937778 24.456280 16.923681 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 -0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole -0.190699 0.292172 -0.613901 -0.301576 0.166371 0.195835 0.447530 -0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 6.827915 26.528613 17.894846 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 -0.079077 -0.047152 - duadrupole 0.177104 0.006089 -0.183194 -0.206575 0.019465 -0.143936 - octupole -0.090233 -0.197003 0.239935 0.184502 -0.227648 0.047722 -0.012288 0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 7.512622 28.145799 19.596564 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 0.228151 0.227536 - duadrupole -0.226596 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole 0.091256 0.060414 0.057038 0.055047 0.054877 -0.044246 -0.111914 -0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 8.346300 22.880030 17.785540 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 -0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142766 -0.071307 0.108121 - octupole 0.091909 -0.188995 0.277331 0.069309 0.049758 -0.131139 -0.327089 0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 10.071670 22.196257 19.371992 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 -0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole 0.040090 -0.095467 0.079919 0.058683 -0.126158 0.051889 0.046239 -0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 2.515590 20.720522 14.084314 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 0.115721 0.003434 - duadrupole 0.270648 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole 0.344269 -0.046395 -0.191856 -0.007750 0.171132 -0.125564 0.020724 -0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 0.263112 20.393737 13.676530 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 0.026718 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole 0.052482 -0.017862 0.101437 -0.090246 -0.034757 -0.166575 -0.066680 0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 1.067343 24.130579 14.159707 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 -0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole -0.195067 0.254354 -0.246051 0.014825 -0.033884 0.213914 0.279935 -0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -0.702987 22.551709 13.716060 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 -0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole 0.174029 -0.208769 0.072703 0.067761 0.017390 -0.228215 -0.090093 0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 -1.070795 25.140433 13.972142 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 -0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole 0.138702 -0.038897 0.021776 0.027863 0.007098 -0.125103 -0.028874 -0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -2.615803 27.019071 14.008692 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 0.265565 0.005667 - duadrupole 0.053653 0.238490 -0.292143 -0.457319 -0.029902 0.030180 - octupole -0.084792 -0.000751 0.009942 -0.105320 -0.003154 0.171502 -0.006789 -0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 2.463531 20.760079 13.549594 - polarizability tensor 4.528424 1.917551 0.356759 1.444128 6.305472 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 10.107633 21.647612 19.174170 - polarizability tensor 3.614271 -1.113333 2.917217 -0.029793 1.821479 0.641372 2.940226 -0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.334346 27.309272 13.592298 - polarizability tensor 5.676904 -5.144008 -0.727141 -3.339388 4.987137 -0.427750 -0.708035 -0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 7.167617 28.572031 19.397643 - polarizability tensor 2.014659 1.411522 2.754673 0.096191 2.864917 1.368381 1.742510 2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.359009 22.857275 17.811318 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536299 1.326286 -0.648852 1.549497 -0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.102989 25.158130 13.955016 - polarizability tensor 2.247828 -1.783499 0.065363 -1.149026 2.379896 0.043699 0.251241 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.527209 20.361905 13.724420 - polarizability tensor 5.239487 -1.239561 0.807464 -0.101560 1.234380 0.089842 1.195631 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.245682 25.399587 14.574286 - polarizability tensor 5.018067 4.875224 1.088491 1.811907 4.579786 0.228246 1.487331 1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.874126 21.335347 14.489050 - polarizability tensor 9.182809 -1.751286 0.995508 -0.084237 1.828484 0.387734 2.027093 0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.835468 26.554630 17.914647 - polarizability tensor 1.671051 0.572015 1.296469 0.542823 2.162529 1.769890 1.031019 1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.936298 22.945679 14.344652 - polarizability tensor 3.009105 -0.265453 0.164855 -0.392052 2.422902 0.078852 0.571863 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.508421 24.281933 17.309798 - polarizability tensor 5.263037 -4.454329 1.663069 -4.279634 13.403258 0.812801 1.522053 0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.000195 24.036733 14.730106 - polarizability tensor 13.654116 -2.638423 1.355104 -2.419214 4.125879 0.076557 2.653092 -0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.739029 22.717197 13.731485 - polarizability tensor 2.960545 0.866099 0.523975 1.061800 5.117296 0.710667 0.733477 0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.401296 26.182115 15.944915 - polarizability tensor 5.617929 -1.381554 4.877276 -1.251780 2.735770 -1.290944 3.659516 -1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.202943 24.152335 13.598357 - polarizability tensor 12.949896 -2.646490 1.785363 -2.381876 4.179637 -0.329227 2.420663 -0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.006729 22.195721 15.865524 - polarizability tensor 3.040417 1.393146 2.596746 0.925311 4.759664 3.665080 1.764101 3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.406423 24.664704 16.610589 - polarizability tensor 4.688607 -4.661428 1.698768 -4.460102 13.263283 0.923066 0.789241 0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.751820 28.392962 14.054933 - polarizability tensor 2.586920 -0.528103 -0.018359 -0.362647 2.294262 -0.043707 0.109841 -0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.363944 21.702344 20.496273 - polarizability tensor 2.625149 -0.213208 0.424935 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.009546 29.342604 20.821732 - polarizability tensor 2.080856 0.280706 0.149350 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.216721 21.015220 12.633279 - polarizability tensor 8.609786 3.161439 4.330873 3.390210 5.869745 2.969762 2.433189 1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.644333 20.094934 15.114694 - polarizability tensor 5.800146 -0.752295 1.186095 0.172145 7.005037 0.548345 0.964192 0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.768589 19.148291 13.838054 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321947 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.080107 26.695031 13.875466 - polarizability tensor 3.548724 -1.577098 0.269188 -2.005619 4.318439 0.319351 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.440947 22.600476 19.188399 - polarizability tensor 5.713598 -1.433755 3.432521 -2.871854 2.858065 -3.181668 3.126669 -2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.692591 27.491626 15.240704 - polarizability tensor 6.533271 0.444461 1.547291 -1.225663 5.733017 0.256666 1.271658 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.737515 22.325976 19.832198 - polarizability tensor 6.707222 -2.929001 4.115173 -3.681834 2.332214 -2.837643 2.110817 -1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.338154 27.800108 20.030403 - polarizability tensor 1.169669 1.724724 0.923944 2.191901 7.141826 4.969366 0.687890 2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.496254 27.141723 14.558771 - polarizability tensor 5.399130 -5.564497 0.213557 -4.017191 5.082742 0.297191 1.393778 -0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.712111 26.902403 13.993228 - polarizability tensor 10.702596 1.789313 3.005774 -0.514549 5.742470 -3.210321 2.108866 -0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.970218 21.256212 13.895660 - polarizability tensor 8.115953 0.753025 -0.167711 1.550833 6.978558 4.365403 0.764813 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.564896 20.822059 14.195882 - polarizability tensor 9.556643 3.699452 -1.931269 3.986424 6.261110 -1.285638 0.992072 0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.278058 20.658970 14.575810 - polarizability tensor 4.541347 2.067477 1.036870 1.580945 6.187413 0.395977 1.497097 1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.072943 28.124206 19.445527 - polarizability tensor 2.204024 0.653489 0.327501 1.701252 5.540979 4.544585 0.766862 3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S -4.999989 33.261300 19.613751 - znuc, mass 16.000000 31.972070 - - Atom A02C -3.144653 30.534249 20.019587 - znuc, mass 6.000000 12.000000 - - Atom A03C -4.108951 28.030079 20.091313 - znuc, mass 6.000000 12.000000 - - Atom A04S -7.371333 27.293365 19.724431 - znuc, mass 16.000000 31.972070 - - Atom A05C -8.203856 29.644776 17.478696 - znuc, mass 6.000000 12.000000 - - Atom A06C -7.232468 32.040253 17.420950 - znuc, mass 6.000000 12.000000 - - Atom A07C -7.984129 33.789442 15.536366 - znuc, mass 6.000000 12.000000 - - Atom A08N -8.601882 35.274626 14.017514 - znuc, mass 7.000000 14.003070 - - Atom A09C -10.049510 28.887753 15.697232 - znuc, mass 6.000000 12.000000 - - Atom A10N -11.654598 28.277231 14.305792 - znuc, mass 7.000000 14.003070 - - Atom A11N -2.482996 26.183434 20.487067 - znuc, mass 7.000000 14.003070 - - Atom A12S 0.396006 27.376509 20.906881 - znuc, mass 16.000000 31.972070 - - Atom A13C -0.550798 30.499378 20.408007 - znuc, mass 6.000000 12.000000 - - Atom A14C 1.131622 32.553958 20.394717 - znuc, mass 6.000000 12.000000 - - Atom A15N 2.539217 34.256655 20.334908 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -4.999989 33.261300 19.613751 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 -1.019605 -0.491700 - duadrupole 0.200252 0.667129 -0.867381 -0.820424 2.014536 0.644901 - octupole 0.081100 -0.120945 -0.015291 0.151350 0.112179 -0.258142 -0.096888 0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -3.144653 30.534249 20.019587 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026088 -0.009793 - octupole -0.080562 0.064792 -0.069734 -0.081134 0.040643 0.191017 0.029091 -0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C -4.108951 28.030079 20.091313 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 -0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole 0.154202 -0.066939 -0.010607 0.076422 0.037680 -0.126335 -0.027074 -0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -7.371333 27.293365 19.724431 - znuc, monopole 16.000000 -15.424149 - dipole 0.645105 0.702589 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883321 - octupole -0.376726 0.162146 -0.007751 -0.064504 -0.144810 0.217808 0.152561 0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -8.203856 29.644776 17.478696 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 0.012964 -0.126299 - duadrupole -0.086713 0.172782 -0.086070 0.198246 0.015502 -0.024956 - octupole -0.056685 -0.087927 -0.028493 0.015828 0.161274 0.009131 -0.132781 0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C -7.232468 32.040253 17.420950 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole -0.001075 0.050214 -0.014991 0.047446 -0.160109 0.001747 0.175100 -0.000672 -0.097661 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -7.984129 33.789442 15.536366 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole 0.066905 -0.052623 0.037692 -0.033015 0.046038 -0.056469 -0.083730 -0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -8.601882 35.274626 14.017514 - znuc, monopole 7.000000 -6.844356 - dipole 0.128196 -0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole -0.024985 0.019560 -0.010956 0.010338 -0.013703 0.014533 0.024660 0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -10.049510 28.887753 15.697232 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 -0.134363 -0.337213 - duadrupole 0.044076 -0.065351 0.021276 -0.052673 0.059479 -0.009395 - octupole -0.000862 0.071606 0.028175 -0.027284 -0.078173 0.054551 0.049998 -0.053689 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -11.654598 28.277231 14.305792 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole -0.001131 -0.023490 -0.018307 0.014058 0.034435 -0.020126 -0.016128 0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -2.482996 26.183434 20.487067 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109388 0.037751 - octupole -0.049872 0.009996 0.025010 0.027426 -0.025766 0.018699 0.000756 0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 0.396006 27.376509 20.906881 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 0.461479 -0.227968 - duadrupole 0.657691 1.380421 -2.038112 0.516799 0.477705 -0.276530 - octupole 0.079313 -0.431186 -0.101331 0.400784 0.037962 0.079016 0.063368 -0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -0.550798 30.499378 20.408007 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 0.118662 0.023762 - duadrupole 0.102512 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole 0.066522 0.033296 0.033078 -0.141141 -0.015825 -0.201472 -0.017252 0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 1.131622 32.553958 20.394717 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 0.447125 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole -0.082638 -0.017348 0.002354 0.067724 -0.011182 0.121329 0.008828 -0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 2.539217 34.256655 20.334908 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 -0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013044 -0.009826 - octupole 0.020681 0.004365 -0.003281 -0.025182 0.001816 -0.038396 0.001465 0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -4.072321 31.897774 19.816669 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 0.204132 0.059744 - duadrupole -0.127967 0.303138 -0.175171 -0.361286 0.022579 -0.002456 - octupole 0.135031 0.064490 0.081833 0.097857 -0.020810 -0.250721 -0.061023 0.115690 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -3.626802 29.282164 20.055450 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099040 -0.017364 - octupole 0.006938 -0.415001 0.020563 0.384074 -0.195901 0.173546 0.175337 -0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -5.740142 27.661722 19.907872 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 -0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole -0.362347 -0.032097 -0.067519 -0.068455 -0.111862 0.234600 0.179381 0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -7.787594 28.469071 18.601564 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 -0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121103 -0.078949 0.001930 -0.434804 - octupole -0.128235 0.066191 -0.098878 0.110012 -0.100436 0.054183 0.199314 0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -6.116228 32.650776 18.517351 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 0.216246 0.112894 - duadrupole 0.231615 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole -0.150223 -0.184993 0.116290 -0.324246 0.434434 -0.009658 -0.550724 0.159881 0.509238 0.036069 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -7.718162 30.842515 17.449823 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 -0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole 0.190699 0.292172 0.613901 -0.301576 -0.166371 -0.195835 -0.447530 0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 -7.608298 32.914848 16.478658 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 -0.079077 0.047152 - duadrupole 0.177104 0.006089 -0.183194 0.206575 0.019465 0.143936 - octupole 0.090233 -0.197003 -0.239935 0.184502 0.227648 -0.047722 0.012288 -0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -8.293006 34.532034 14.776940 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 0.228151 -0.227536 - duadrupole -0.226596 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole -0.091256 0.060414 -0.057038 0.055047 -0.054877 0.044246 0.111914 0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -9.126683 29.266265 16.587964 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 -0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142766 -0.071307 -0.108121 - octupole -0.091909 -0.188995 -0.277331 0.069309 -0.049758 0.131139 0.327089 -0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -10.852054 28.582492 15.001512 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 -0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole -0.040090 -0.095467 -0.079919 0.058683 0.126158 -0.051889 -0.046239 0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -3.295974 27.106757 20.289190 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 0.115721 -0.003434 - duadrupole 0.270648 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole -0.344269 -0.046395 0.191856 -0.007750 -0.171132 0.125564 -0.020724 0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 -1.043495 26.779972 20.696974 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 0.026718 0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole -0.052482 -0.017862 -0.101437 -0.090246 0.034757 0.166575 0.066680 -0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -1.847726 30.516814 20.213797 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 -0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole 0.195067 0.254354 0.246051 0.014825 0.033884 -0.213914 -0.279935 0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -0.077396 28.937944 20.657444 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 -0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole -0.174029 -0.208769 -0.072703 0.067761 -0.017390 0.228215 0.090093 -0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 0.290412 31.526668 20.401362 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 -0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole -0.138702 -0.038897 -0.021776 0.027863 -0.007098 0.125103 0.028874 0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 1.835420 33.405306 20.364812 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 0.265565 -0.005667 - duadrupole 0.053653 0.238490 -0.292143 0.457319 -0.029902 -0.030180 - octupole 0.084792 -0.000751 -0.009942 -0.105320 0.003154 -0.171502 0.006789 0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -3.243914 27.146314 20.823910 - polarizability tensor 4.528424 -1.917551 0.356759 -1.444128 6.305472 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -10.888016 28.033847 15.199334 - polarizability tensor 3.614271 1.113333 2.917217 0.029793 1.821479 -0.641372 2.940226 0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.553962 33.695507 20.781206 - polarizability tensor 5.676904 5.144008 -0.727141 3.339388 4.987137 0.427750 -0.708035 0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -7.948000 34.958265 14.975861 - polarizability tensor 2.014659 -1.411522 2.754673 -0.096191 2.864917 -1.368381 1.742510 -2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.139393 29.243510 16.562186 - polarizability tensor 2.644773 0.420648 2.214495 0.536299 1.326286 0.648852 1.549497 0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.322606 31.544365 20.418488 - polarizability tensor 2.247828 1.783499 0.065363 1.149026 2.379896 -0.043699 0.251241 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.307592 26.748140 20.649084 - polarizability tensor 5.239487 1.239561 0.807464 0.101560 1.234380 -0.089842 1.195631 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.026065 31.785822 19.799218 - polarizability tensor 5.018067 -4.875224 1.088491 -1.811907 4.579786 -0.228246 1.487331 -1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.654509 27.721582 19.884454 - polarizability tensor 9.182809 1.751286 0.995508 0.084237 1.828484 -0.387734 2.027093 -0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.615851 32.940865 16.458857 - polarizability tensor 1.671051 -0.572015 1.296469 -0.542823 2.162529 -1.769890 1.031019 -1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.716681 29.331914 20.028852 - polarizability tensor 3.009105 0.265453 0.164855 0.392052 2.422902 -0.078852 0.571863 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.288804 30.668167 17.063706 - polarizability tensor 5.263037 4.454329 1.663069 4.279634 13.403258 -0.812801 1.522053 -0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.780578 30.422967 19.643398 - polarizability tensor 13.654116 2.638423 1.355104 2.419214 4.125879 -0.076557 2.653092 0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.041354 29.103432 20.642019 - polarizability tensor 2.960545 -0.866099 0.523975 -1.061800 5.117296 -0.710667 0.733477 -0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.181679 32.568350 18.428589 - polarizability tensor 5.617929 1.381554 4.877276 1.251780 2.735770 1.290944 3.659516 1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.983327 30.538570 20.775147 - polarizability tensor 12.949896 2.646490 1.785363 2.381876 4.179637 0.329227 2.420663 0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.787112 28.581956 18.507980 - polarizability tensor 3.040417 -1.393146 2.596746 -0.925311 4.759664 -3.665080 1.764101 -3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.186806 31.050939 17.762915 - polarizability tensor 4.688607 4.661428 1.698768 4.460102 13.263283 -0.923066 0.789241 -0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.971437 34.779197 20.318571 - polarizability tensor 2.586920 0.528103 -0.018359 0.362647 2.294262 0.043707 0.109841 0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.144327 28.088579 13.877231 - polarizability tensor 2.625149 0.213208 0.424935 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.789929 35.728839 13.551772 - polarizability tensor 2.080856 -0.280706 0.149350 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.436338 27.401455 21.740225 - polarizability tensor 8.609786 -3.161439 4.330873 -3.390210 5.869745 -2.969762 2.433189 -1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.424716 26.481169 19.258810 - polarizability tensor 5.800146 0.752295 1.186095 -0.172145 7.005037 -0.548345 0.964192 -0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.548972 25.534526 20.535450 - polarizability tensor 2.238895 0.092051 0.189597 0.321947 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.299723 33.081266 20.498038 - polarizability tensor 3.548724 1.577098 0.269188 2.005619 4.318439 -0.319351 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.221331 28.986711 15.185105 - polarizability tensor 5.713598 1.433755 3.432521 2.871854 2.858065 3.181668 3.126669 2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.472974 33.877861 19.132800 - polarizability tensor 6.533271 -0.444461 1.547291 1.225663 5.733017 -0.256666 1.271658 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.517899 28.712211 14.541306 - polarizability tensor 6.707222 2.929001 4.115173 3.681834 2.332214 2.837643 2.110817 1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.118537 34.186343 14.343101 - polarizability tensor 1.169669 -1.724724 0.923944 -2.191901 7.141826 -4.969366 0.687890 -2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.715871 33.527958 19.814733 - polarizability tensor 5.399130 5.564497 0.213557 4.017191 5.082742 -0.297191 1.393778 0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.492494 33.288638 20.380276 - polarizability tensor 10.702596 -1.789313 3.005774 0.514549 5.742470 3.210321 2.108866 0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.750601 27.642447 20.477844 - polarizability tensor 8.115953 -0.753025 -0.167711 -1.550833 6.978558 -4.365403 0.764813 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.784513 27.208294 20.177622 - polarizability tensor 9.556643 -3.699452 -1.931269 -3.986424 6.261110 1.285638 0.992072 -0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.058441 27.045205 19.797694 - polarizability tensor 4.541347 -2.067477 1.036870 -1.580945 6.187413 -0.395977 1.497097 -1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.853326 34.510441 14.927977 - polarizability tensor 2.204024 -0.653489 0.327501 -1.701252 5.540979 -4.544585 0.766862 -3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S -12.300278 36.987284 8.155916 - znuc, mass 16.000000 31.972070 - - Atom A02C -10.444942 39.714335 8.561752 - znuc, mass 6.000000 12.000000 - - Atom A03C -11.409239 42.218505 8.633478 - znuc, mass 6.000000 12.000000 - - Atom A04S -14.671620 42.955220 8.266597 - znuc, mass 16.000000 31.972070 - - Atom A05C -15.504144 40.603810 6.020862 - znuc, mass 6.000000 12.000000 - - Atom A06C -14.532757 38.208333 5.963116 - znuc, mass 6.000000 12.000000 - - Atom A07C -15.284420 36.459144 4.078532 - znuc, mass 6.000000 12.000000 - - Atom A08N -15.902174 34.973961 2.559680 - znuc, mass 7.000000 14.003070 - - Atom A09C -17.349798 41.360834 4.239399 - znuc, mass 6.000000 12.000000 - - Atom A10N -18.954886 41.971357 2.847959 - znuc, mass 7.000000 14.003070 - - Atom A11N -9.783282 44.065149 9.029232 - znuc, mass 7.000000 14.003070 - - Atom A12S -6.904281 42.872073 9.449046 - znuc, mass 16.000000 31.972070 - - Atom A13C -7.851087 39.749204 8.950172 - znuc, mass 6.000000 12.000000 - - Atom A14C -6.168667 37.694624 8.936881 - znuc, mass 6.000000 12.000000 - - Atom A15N -4.761073 35.991926 8.877072 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -12.300278 36.987284 8.155916 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole 0.081100 0.120946 -0.015291 -0.151351 0.112179 -0.258142 -0.096888 0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -10.444942 39.714335 8.561752 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 -0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole -0.080562 -0.064792 -0.069734 0.081135 0.040643 0.191017 0.029091 -0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C -11.409239 42.218505 8.633478 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole 0.154202 0.066939 -0.010607 -0.076422 0.037680 -0.126335 -0.027074 -0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -14.671620 42.955220 8.266597 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 -0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole -0.376726 -0.162146 -0.007751 0.064505 -0.144810 0.217808 0.152561 0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -15.504144 40.603810 6.020862 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 -0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole -0.056685 0.087927 -0.028493 -0.015828 0.161274 0.009131 -0.132781 0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C -14.532757 38.208333 5.963116 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 -0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole -0.001075 -0.050214 -0.014991 -0.047446 -0.160108 0.001747 0.175099 -0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -15.284420 36.459144 4.078532 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 -0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole 0.066905 0.052623 0.037692 0.033015 0.046038 -0.056469 -0.083730 -0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -15.902174 34.973961 2.559680 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole -0.024985 -0.019560 -0.010956 -0.010338 -0.013703 0.014533 0.024660 0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -17.349798 41.360834 4.239399 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole -0.000862 -0.071606 0.028175 0.027284 -0.078173 0.054551 0.049997 -0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -18.954886 41.971357 2.847959 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 -0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole -0.001131 0.023490 -0.018307 -0.014058 0.034435 -0.020126 -0.016128 0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -9.783282 44.065149 9.029232 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 -0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole -0.049872 -0.009996 0.025010 -0.027426 -0.025766 0.018699 0.000756 0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -6.904281 42.872073 9.449046 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 -0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole 0.079313 0.431186 -0.101331 -0.400784 0.037962 0.079017 0.063368 -0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -7.851087 39.749204 8.950172 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 -0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole 0.066522 -0.033296 0.033077 0.141141 -0.015825 -0.201472 -0.017252 0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -6.168667 37.694624 8.936881 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 -0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole -0.082638 0.017348 0.002354 -0.067724 -0.011182 0.121329 0.008828 -0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -4.761073 35.991926 8.877072 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole 0.020681 -0.004365 -0.003281 0.025182 0.001816 -0.038396 0.001465 0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -11.372610 38.350810 8.358834 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 -0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole 0.135031 -0.064489 0.081833 -0.097858 -0.020810 -0.250721 -0.061022 0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -10.927090 40.966420 8.597615 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 -0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole 0.006937 0.415001 0.020564 -0.384074 -0.195901 0.173547 0.175337 -0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -13.040429 42.586863 8.450038 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole -0.362347 0.032096 -0.067519 0.068455 -0.111862 0.234599 0.179381 0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -15.087882 41.779515 7.143730 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole -0.128236 -0.066192 -0.098878 -0.110011 -0.100435 0.054183 0.199314 0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -13.416518 37.597809 7.059516 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 -0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole -0.150222 0.184993 0.116290 0.324246 0.434434 -0.009658 -0.550724 0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -15.018451 39.406071 5.991989 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole 0.190699 -0.292172 0.613901 0.301575 -0.166371 -0.195836 -0.447530 0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -14.908589 37.333738 5.020824 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole 0.090233 0.197003 -0.239935 -0.184502 0.227647 -0.047722 0.012288 -0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -15.593297 35.716552 3.319106 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 -0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole -0.091256 -0.060414 -0.057038 -0.055047 -0.054877 0.044246 0.111914 0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -16.426971 40.982322 5.130130 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole -0.091909 0.188995 -0.277331 -0.069309 -0.049758 0.131139 0.327089 -0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -18.152342 41.666096 3.543679 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole -0.040090 0.095467 -0.079919 -0.058683 0.126158 -0.051889 -0.046239 0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -10.596260 43.141827 8.831355 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 -0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole -0.344269 0.046395 0.191856 0.007750 -0.171132 0.125564 -0.020724 0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 -8.343782 43.468611 9.239139 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 -0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole -0.052482 0.017861 -0.101437 0.090246 0.034757 0.166574 0.066680 -0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -9.148014 39.731769 8.755962 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole 0.195067 -0.254353 0.246051 -0.014826 0.033884 -0.213914 -0.279935 0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -7.377684 41.310638 9.199609 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole -0.174029 0.208769 -0.072703 -0.067761 -0.017390 0.228215 0.090093 -0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 -7.009877 38.721914 8.943527 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole -0.138702 0.038897 -0.021776 -0.027862 -0.007098 0.125103 0.028874 0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -5.464870 36.843275 8.906976 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 -0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole 0.084793 0.000751 -0.009942 0.105319 0.003154 -0.171502 0.006789 0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -11.016969 40.916670 8.571017 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -18.521619 41.261877 3.727272 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.746409 36.553007 9.323269 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -16.153618 35.738146 3.470142 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.487096 39.197647 6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.358728 43.203379 8.339860 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.515775 43.040288 8.719786 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.326355 38.462762 8.341383 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.954796 42.527003 8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.439681 41.005076 5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.977683 38.704217 8.960653 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.916141 37.307721 5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.283615 39.710013 9.317312 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.341642 41.145150 9.184184 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.087400 41.666630 7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.080867 39.825616 8.185563 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.481969 37.680236 6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.589093 39.580418 5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.328854 35.469384 8.860735 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.444616 42.160009 2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.090221 34.519747 2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.607879 43.500443 9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.849258 44.714057 9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.050888 42.606138 9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.584314 36.720714 8.356857 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.818187 41.536376 3.083473 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.792784 36.959947 8.922441 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.188304 42.214740 3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.248292 35.290320 3.518027 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.000590 37.167293 9.040343 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.773264 36.370723 7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.725003 43.767417 7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.863948 42.847127 10.282389 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.544201 43.102270 9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.418827 36.062243 2.885267 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S -3.080683 30.601049 3.301918 - znuc, mass 16.000000 31.972070 - - Atom A02C -4.936019 33.328100 2.896083 - znuc, mass 6.000000 12.000000 - - Atom A03C -3.971722 35.832270 2.824356 - znuc, mass 6.000000 12.000000 - - Atom A04S -0.709341 36.568986 3.191237 - znuc, mass 16.000000 31.972070 - - Atom A05C 0.123183 34.217575 5.436972 - znuc, mass 6.000000 12.000000 - - Atom A06C -0.848204 31.822098 5.494719 - znuc, mass 6.000000 12.000000 - - Atom A07C -0.096541 30.072909 7.379303 - znuc, mass 6.000000 12.000000 - - Atom A08N 0.521213 28.587726 8.898155 - znuc, mass 7.000000 14.003070 - - Atom A09C 1.968837 34.974599 7.218436 - znuc, mass 6.000000 12.000000 - - Atom A10N 3.573925 35.585122 8.609875 - znuc, mass 7.000000 14.003070 - - Atom A11N -5.597679 37.678914 2.428602 - znuc, mass 7.000000 14.003070 - - Atom A12S -8.476680 36.485838 2.008788 - znuc, mass 16.000000 31.972070 - - Atom A13C -7.529874 33.362969 2.507663 - znuc, mass 6.000000 12.000000 - - Atom A14C -9.212293 31.308389 2.520953 - znuc, mass 6.000000 12.000000 - - Atom A15N -10.619888 29.605691 2.580763 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -3.080683 30.601049 3.301918 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole -0.081100 0.120946 0.015291 -0.151351 -0.112179 0.258142 0.096888 -0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -4.936019 33.328100 2.896083 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 -0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole 0.080562 -0.064792 0.069734 0.081135 -0.040643 -0.191017 -0.029091 0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C -3.971722 35.832270 2.824356 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole -0.154202 0.066939 0.010607 -0.076422 -0.037680 0.126335 0.027074 0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -0.709341 36.568986 3.191237 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 -0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole 0.376726 -0.162146 0.007751 0.064505 0.144810 -0.217808 -0.152561 -0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 0.123183 34.217575 5.436972 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 -0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole 0.056685 0.087927 0.028493 -0.015828 -0.161274 -0.009131 0.132781 -0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C -0.848204 31.822098 5.494719 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 -0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole 0.001075 -0.050214 0.014991 -0.047446 0.160108 -0.001747 -0.175099 0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -0.096541 30.072909 7.379303 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 -0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole -0.066905 0.052623 -0.037692 0.033015 -0.046038 0.056469 0.083730 0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 0.521213 28.587726 8.898155 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole 0.024985 -0.019560 0.010956 -0.010338 0.013703 -0.014533 -0.024660 -0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 1.968837 34.974599 7.218436 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole 0.000862 -0.071606 -0.028175 0.027284 0.078173 -0.054551 -0.049997 0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 3.573925 35.585122 8.609875 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 -0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole 0.001131 0.023490 0.018307 -0.014058 -0.034435 0.020126 0.016128 -0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -5.597679 37.678914 2.428602 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 -0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole 0.049872 -0.009996 -0.025010 -0.027426 0.025766 -0.018699 -0.000756 -0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -8.476680 36.485838 2.008788 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 -0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole -0.079313 0.431186 0.101331 -0.400784 -0.037962 -0.079017 -0.063368 0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -7.529874 33.362969 2.507663 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 -0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole -0.066522 -0.033296 -0.033077 0.141141 0.015825 0.201472 0.017252 -0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -9.212293 31.308389 2.520953 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 -0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole 0.082638 0.017348 -0.002354 -0.067724 0.011182 -0.121329 -0.008828 0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -10.619888 29.605691 2.580763 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole -0.020681 -0.004365 0.003281 0.025182 -0.001816 0.038396 -0.001465 -0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -4.008351 31.964575 3.099001 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 -0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole -0.135031 -0.064489 -0.081833 -0.097858 0.020810 0.250721 0.061022 -0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -4.453871 34.580185 2.860220 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 -0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole -0.006937 0.415001 -0.020564 -0.384074 0.195901 -0.173547 -0.175337 0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -2.340532 36.200628 3.007797 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole 0.362347 0.032096 0.067519 0.068455 0.111862 -0.234599 -0.179381 -0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -0.293079 35.393280 4.314105 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole 0.128236 -0.066192 0.098878 -0.110011 0.100435 -0.054183 -0.199314 -0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -1.964443 31.211574 4.398319 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 -0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole 0.150222 0.184993 -0.116290 0.324246 -0.434434 0.009658 0.550724 -0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -0.362510 33.019836 5.465846 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole -0.190699 -0.292172 -0.613901 0.301575 0.166371 0.195836 0.447530 -0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -0.472372 30.947503 6.437011 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole -0.090233 0.197003 0.239935 -0.184502 -0.227647 0.047722 -0.012288 0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 0.212336 29.330317 8.138729 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 -0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole 0.091256 -0.060414 0.057038 -0.055047 0.054877 -0.044246 -0.111914 -0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 1.046010 34.596087 6.327704 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole 0.091909 0.188995 0.277331 -0.069309 0.049758 -0.131139 -0.327089 0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 2.771381 35.279861 7.914156 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole 0.040090 0.095467 0.079919 -0.058683 -0.126158 0.051889 0.046239 -0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -4.784700 36.755592 2.626479 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 -0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole 0.344269 0.046395 -0.191856 0.007750 0.171132 -0.125564 0.020724 -0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 -7.037179 37.082376 2.218695 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 -0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole 0.052482 0.017861 0.101437 0.090246 -0.034757 -0.166574 -0.066680 0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -6.232947 33.345534 2.701873 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole -0.195067 -0.254353 -0.246051 -0.014826 -0.033884 0.213914 0.279935 -0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -8.003277 34.924403 2.258226 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole 0.174029 0.208769 0.072703 -0.067761 0.017390 -0.228215 -0.090093 0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 -8.371084 32.335679 2.514308 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole 0.138702 0.038897 0.021776 -0.027862 0.007098 -0.125103 -0.028874 -0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -9.916091 30.457040 2.550858 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 -0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole -0.084793 0.000751 0.009942 0.105319 -0.003154 0.171502 -0.006789 -0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -4.363992 34.530435 2.886817 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 3.140658 34.875642 7.730563 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.634552 30.166772 2.134565 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 0.772657 29.351911 7.987693 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.106135 32.811412 5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.022233 36.817144 3.117975 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.865186 36.654053 2.738049 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.054606 32.076527 3.116452 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.426164 36.140768 3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.058720 34.618841 6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.403278 32.317982 2.497182 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.464819 30.921486 6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.097346 33.323778 2.140523 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.039319 34.758915 2.273651 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.293561 35.280395 4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.300094 33.439381 3.272272 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.898992 31.294001 4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.791868 33.194183 5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.052107 29.083149 2.597099 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.063655 35.773774 9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.709261 28.133512 9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.773082 37.114208 2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.531703 38.327822 2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.330072 36.219903 2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.796647 30.334479 3.100978 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.437226 35.150141 8.374362 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.588177 30.573712 2.535393 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.807343 35.828505 7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.132669 28.904085 7.939807 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.380371 30.781058 2.417492 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.607697 29.984488 3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.655958 37.381182 3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.517013 36.460892 1.175445 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.836760 36.716035 2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.037866 29.676008 8.572568 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 12.300278 39.647535 -8.155916 - znuc, mass 16.000000 31.972070 - - Atom A02C 10.444942 36.920485 -8.561752 - znuc, mass 6.000000 12.000000 - - Atom A03C 11.409239 34.416314 -8.633478 - znuc, mass 6.000000 12.000000 - - Atom A04S 14.671620 33.679599 -8.266597 - znuc, mass 16.000000 31.972070 - - Atom A05C 15.504144 36.031010 -6.020862 - znuc, mass 6.000000 12.000000 - - Atom A06C 14.532757 38.426487 -5.963116 - znuc, mass 6.000000 12.000000 - - Atom A07C 15.284420 40.175676 -4.078532 - znuc, mass 6.000000 12.000000 - - Atom A08N 15.902174 41.660859 -2.559680 - znuc, mass 7.000000 14.003070 - - Atom A09C 17.349798 35.273985 -4.239399 - znuc, mass 6.000000 12.000000 - - Atom A10N 18.954886 34.663462 -2.847959 - znuc, mass 7.000000 14.003070 - - Atom A11N 9.783282 32.569670 -9.029232 - znuc, mass 7.000000 14.003070 - - Atom A12S 6.904281 33.762747 -9.449046 - znuc, mass 16.000000 31.972070 - - Atom A13C 7.851087 36.885615 -8.950172 - znuc, mass 6.000000 12.000000 - - Atom A14C 6.168667 38.940195 -8.936881 - znuc, mass 6.000000 12.000000 - - Atom A15N 4.761073 40.642893 -8.877072 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 12.300278 39.647535 -8.155916 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 -1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole -0.081100 -0.120946 0.015291 0.151351 -0.112179 0.258142 0.096888 -0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 10.444942 36.920485 -8.561752 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole 0.080562 0.064792 0.069734 -0.081135 -0.040643 -0.191017 -0.029091 0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 11.409239 34.416314 -8.633478 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 -0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole -0.154202 -0.066939 0.010607 0.076422 -0.037680 0.126335 0.027074 0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 14.671620 33.679599 -8.266597 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole 0.376726 0.162146 0.007751 -0.064505 0.144810 -0.217808 -0.152561 -0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 15.504144 36.031010 -6.020862 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole 0.056685 -0.087927 0.028493 0.015828 -0.161274 -0.009131 0.132781 -0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 14.532757 38.426487 -5.963116 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole 0.001075 0.050214 0.014991 0.047446 0.160108 -0.001747 -0.175099 0.000672 -0.097660 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 15.284420 40.175676 -4.078532 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole -0.066905 -0.052623 -0.037692 -0.033015 -0.046038 0.056469 0.083730 0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 15.902174 41.660859 -2.559680 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 -0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole 0.024985 0.019560 0.010956 0.010338 0.013703 -0.014533 -0.024660 -0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 17.349798 35.273985 -4.239399 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 -0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole 0.000862 0.071606 -0.028175 -0.027284 0.078173 -0.054551 -0.049997 0.053688 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 18.954886 34.663462 -2.847959 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole 0.001131 -0.023490 0.018307 0.014058 -0.034435 0.020126 0.016128 -0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 9.783282 32.569670 -9.029232 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole 0.049872 0.009996 -0.025010 0.027426 0.025766 -0.018699 -0.000756 -0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 6.904281 33.762747 -9.449046 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole -0.079313 -0.431186 0.101331 0.400784 -0.037962 -0.079017 -0.063368 0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 7.851087 36.885615 -8.950172 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole -0.066522 0.033296 -0.033077 -0.141141 0.015825 0.201472 0.017252 -0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 6.168667 38.940195 -8.936881 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole 0.082638 -0.017348 -0.002354 0.067724 0.011182 -0.121329 -0.008828 0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 4.761073 40.642893 -8.877072 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 -0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole -0.020681 0.004365 0.003281 -0.025182 -0.001816 0.038396 -0.001465 -0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 11.372610 38.284010 -8.358834 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole -0.135031 0.064489 -0.081833 0.097858 0.020810 0.250721 0.061022 -0.115691 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 10.927090 35.668399 -8.597615 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole -0.006937 -0.415001 -0.020564 0.384074 0.195901 -0.173547 -0.175337 0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 13.040429 34.047957 -8.450038 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 -0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole 0.362347 -0.032096 0.067519 -0.068455 0.111862 -0.234599 -0.179381 -0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 15.087882 34.855304 -7.143730 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 -0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole 0.128236 0.066192 0.098878 0.110011 0.100435 -0.054183 -0.199314 -0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 13.416518 39.037011 -7.059516 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole 0.150222 -0.184993 -0.116290 -0.324246 -0.434434 0.009658 0.550724 -0.159880 0.509238 0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 15.018451 37.228748 -5.991989 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 -0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole -0.190699 0.292172 -0.613901 -0.301575 0.166371 0.195836 0.447530 -0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 14.908589 39.301081 -5.020824 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 -0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole -0.090233 -0.197003 0.239935 0.184502 -0.227647 0.047722 -0.012288 0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 15.593297 40.918267 -3.319106 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole 0.091256 0.060414 0.057038 0.055047 0.054877 -0.044246 -0.111914 -0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 16.426971 35.652497 -5.130130 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 -0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole 0.091909 -0.188995 0.277331 0.069309 0.049758 -0.131139 -0.327089 0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 18.152342 34.968724 -3.543679 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 -0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole 0.040090 -0.095467 0.079919 0.058683 -0.126158 0.051889 0.046239 -0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 10.596260 33.492992 -8.831355 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole 0.344269 -0.046395 -0.191856 -0.007750 0.171132 -0.125564 0.020724 -0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 8.343782 33.166209 -9.239139 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole 0.052482 -0.017861 0.101437 -0.090246 -0.034757 -0.166574 -0.066680 0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 9.148014 36.903050 -8.755962 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 -0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole -0.195067 0.254353 -0.246051 0.014826 -0.033884 0.213914 0.279935 -0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 7.377684 35.324181 -9.199609 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 -0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole 0.174029 -0.208769 0.072703 0.067761 0.017390 -0.228215 -0.090093 0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 7.009877 37.912905 -8.943527 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 -0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole 0.138702 -0.038897 0.021776 0.027862 0.007098 -0.125103 -0.028874 -0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 5.464870 39.791544 -8.906976 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole -0.084793 -0.000751 0.009942 -0.105319 -0.003154 0.171502 -0.006789 -0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 10.544201 33.532549 -9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444129 6.305470 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 18.188304 34.420079 -3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821479 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.746327 40.081745 -9.323370 - polarizability tensor 5.676900 -5.144008 -0.727143 -3.339388 4.987141 -0.427749 -0.708036 -0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 15.248291 41.344499 -3.518027 - polarizability tensor 2.014660 1.411523 2.754674 0.096191 2.864916 1.368380 1.742511 2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.439681 35.629743 -5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.977683 37.930602 -8.960653 - polarizability tensor 2.247827 -1.783499 0.065362 -1.149026 2.379898 0.043699 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.607879 33.134376 -9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.326355 38.172057 -8.341383 - polarizability tensor 5.018070 4.875224 1.088491 1.811907 4.579783 0.228245 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.954796 34.107816 -8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.916141 39.327098 -5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.016969 35.718149 -8.571017 - polarizability tensor 3.009104 -0.265453 0.164854 -0.392052 2.422903 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.589093 37.054401 -5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522052 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.080866 36.809204 -8.185563 - polarizability tensor 13.654114 -2.638427 1.355101 -2.419218 4.125882 0.076557 2.653090 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.341642 35.489670 -9.184184 - polarizability tensor 2.960546 0.866100 0.523975 1.061801 5.117295 0.710667 0.733477 0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.481969 38.954584 -6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.283615 36.924806 -9.317312 - polarizability tensor 12.949895 -2.646494 1.785361 -2.381880 4.179640 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.087400 34.968190 -7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.487096 37.437172 -6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460098 13.263287 0.923067 0.789240 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.328854 41.165436 -8.860735 - polarizability tensor 2.586919 -0.528104 -0.018359 -0.362648 2.294263 -0.043707 0.109841 -0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.444616 34.474811 -2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.090221 42.115072 -2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.863949 33.787692 -10.282389 - polarizability tensor 8.609790 3.161438 4.330874 3.390209 5.869742 2.969759 2.433190 1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.725003 32.867403 -7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.849258 31.920762 -9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.000566 39.467504 -9.040202 - polarizability tensor 3.548722 -1.577098 0.269187 -2.005619 4.318440 0.319352 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.521619 35.372942 -3.727272 - polarizability tensor 5.713597 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.773264 40.264096 -7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225663 5.733018 0.256666 1.271657 0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.818187 35.098443 -3.083473 - polarizability tensor 6.707221 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.418828 40.572576 -2.885267 - polarizability tensor 1.169671 1.724727 0.923947 2.191905 7.141823 4.969365 0.687892 2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.584419 39.914196 -8.356897 - polarizability tensor 5.399126 -5.564498 0.213556 -4.017191 5.082747 0.297192 1.393777 -0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.792784 39.674872 -8.922442 - polarizability tensor 10.702598 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.050888 34.028681 -9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.515774 33.594532 -8.719786 - polarizability tensor 9.556647 3.699450 -1.931270 3.986422 6.261107 -1.285638 0.992071 0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.358728 33.431441 -8.339860 - polarizability tensor 4.541349 2.067478 1.036870 1.580946 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.153617 40.896674 -3.470143 - polarizability tensor 2.204025 0.653491 0.327503 1.701255 5.540977 4.544585 0.766864 3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 3.080683 46.033770 -3.301918 - znuc, mass 16.000000 31.972070 - - Atom A02C 4.936019 43.306720 -2.896083 - znuc, mass 6.000000 12.000000 - - Atom A03C 3.971722 40.802549 -2.824356 - znuc, mass 6.000000 12.000000 - - Atom A04S 0.709341 40.065834 -3.191237 - znuc, mass 16.000000 31.972070 - - Atom A05C -0.123183 42.417244 -5.436972 - znuc, mass 6.000000 12.000000 - - Atom A06C 0.848204 44.812722 -5.494719 - znuc, mass 6.000000 12.000000 - - Atom A07C 0.096541 46.561911 -7.379303 - znuc, mass 6.000000 12.000000 - - Atom A08N -0.521213 48.047093 -8.898155 - znuc, mass 7.000000 14.003070 - - Atom A09C -1.968837 41.660220 -7.218436 - znuc, mass 6.000000 12.000000 - - Atom A10N -3.573925 41.049697 -8.609875 - znuc, mass 7.000000 14.003070 - - Atom A11N 5.597679 38.955905 -2.428602 - znuc, mass 7.000000 14.003070 - - Atom A12S 8.476680 40.148982 -2.008788 - znuc, mass 16.000000 31.972070 - - Atom A13C 7.529874 43.271850 -2.507663 - znuc, mass 6.000000 12.000000 - - Atom A14C 9.212293 45.326430 -2.520953 - znuc, mass 6.000000 12.000000 - - Atom A15N 10.619888 47.029128 -2.580763 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 3.080683 46.033770 -3.301918 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 -1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole 0.081100 -0.120946 -0.015291 0.151351 0.112179 -0.258142 -0.096888 0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 4.936019 43.306720 -2.896083 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole -0.080562 0.064792 -0.069734 -0.081135 0.040643 0.191017 0.029091 -0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 3.971722 40.802549 -2.824356 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 -0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole 0.154202 -0.066939 -0.010607 0.076422 0.037680 -0.126335 -0.027074 -0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 0.709341 40.065834 -3.191237 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole -0.376726 0.162146 -0.007751 -0.064505 -0.144810 0.217808 0.152561 0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -0.123183 42.417244 -5.436972 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole -0.056685 -0.087927 -0.028493 0.015828 0.161274 0.009131 -0.132781 0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 0.848204 44.812722 -5.494719 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole -0.001075 0.050214 -0.014991 0.047446 -0.160108 0.001747 0.175099 -0.000672 -0.097660 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 0.096541 46.561911 -7.379303 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole 0.066905 -0.052623 0.037692 -0.033015 0.046038 -0.056469 -0.083730 -0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -0.521213 48.047093 -8.898155 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 -0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole -0.024985 0.019560 -0.010956 0.010338 -0.013703 0.014533 0.024660 0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -1.968837 41.660220 -7.218436 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 -0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole -0.000862 0.071606 0.028175 -0.027284 -0.078173 0.054551 0.049997 -0.053688 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -3.573925 41.049697 -8.609875 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole -0.001131 -0.023490 -0.018307 0.014058 0.034435 -0.020126 -0.016128 0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 5.597679 38.955905 -2.428602 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole -0.049872 0.009996 0.025010 0.027426 -0.025766 0.018699 0.000756 0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 8.476680 40.148982 -2.008788 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole 0.079313 -0.431186 -0.101331 0.400784 0.037962 0.079017 0.063368 -0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 7.529874 43.271850 -2.507663 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole 0.066522 0.033296 0.033077 -0.141141 -0.015825 -0.201472 -0.017252 0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 9.212293 45.326430 -2.520953 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole -0.082638 -0.017348 0.002354 0.067724 -0.011182 0.121329 0.008828 -0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 10.619888 47.029128 -2.580763 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 -0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole 0.020681 0.004365 -0.003281 -0.025182 0.001816 -0.038396 0.001465 0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 4.008351 44.670245 -3.099001 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole 0.135031 0.064489 0.081833 0.097858 -0.020810 -0.250721 -0.061022 0.115691 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 4.453871 42.054634 -2.860220 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole 0.006937 -0.415001 0.020564 0.384074 -0.195901 0.173547 0.175337 -0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 2.340532 40.434192 -3.007797 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 -0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole -0.362347 -0.032096 -0.067519 -0.068455 -0.111862 0.234599 0.179381 0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 0.293079 41.241539 -4.314105 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 -0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole -0.128236 0.066192 -0.098878 0.110011 -0.100435 0.054183 0.199314 0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 1.964443 45.423246 -4.398319 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole -0.150222 -0.184993 0.116290 -0.324246 0.434434 -0.009658 -0.550724 0.159880 0.509238 0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 0.362510 43.614983 -5.465846 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 -0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole 0.190699 0.292172 0.613901 -0.301575 -0.166371 -0.195836 -0.447530 0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 0.472372 45.687316 -6.437011 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 -0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole 0.090233 -0.197003 -0.239935 0.184502 0.227647 -0.047722 0.012288 -0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -0.212336 47.304502 -8.138729 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole -0.091256 0.060414 -0.057038 0.055047 -0.054877 0.044246 0.111914 0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -1.046010 42.038732 -6.327704 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 -0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole -0.091909 -0.188995 -0.277331 0.069309 -0.049758 0.131139 0.327089 -0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -2.771381 41.354959 -7.914156 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 -0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole -0.040090 -0.095467 -0.079919 0.058683 0.126158 -0.051889 -0.046239 0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 4.784700 39.879227 -2.626479 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole -0.344269 -0.046395 0.191856 -0.007750 -0.171132 0.125564 -0.020724 0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 7.037179 39.552444 -2.218695 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole -0.052482 -0.017861 -0.101437 -0.090246 0.034757 0.166574 0.066680 -0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 6.232947 43.289285 -2.701873 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 -0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole 0.195067 0.254353 0.246051 0.014826 0.033884 -0.213914 -0.279935 0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 8.003277 41.710416 -2.258226 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 -0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole -0.174029 -0.208769 -0.072703 0.067761 -0.017390 0.228215 0.090093 -0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 8.371084 44.299140 -2.514308 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 -0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole -0.138702 -0.038897 -0.021776 0.027862 -0.007098 0.125103 0.028874 0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 9.916091 46.177779 -2.550858 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole 0.084793 -0.000751 -0.009942 -0.105319 0.003154 -0.171502 0.006789 0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 4.836760 39.918784 -2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444129 6.305470 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -2.807344 40.806314 -7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821479 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.634633 46.467980 -2.134465 - polarizability tensor 5.676900 5.144008 -0.727143 3.339388 4.987141 0.427749 -0.708036 0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 0.132670 47.730734 -7.939808 - polarizability tensor 2.014660 -1.411523 2.754674 -0.096191 2.864916 -1.368380 1.742511 -2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.058720 42.015978 -6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.403278 44.316837 -2.497182 - polarizability tensor 2.247827 1.783499 0.065362 1.149026 2.379898 -0.043699 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.773082 39.520611 -2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.054606 44.558292 -3.116452 - polarizability tensor 5.018070 -4.875224 1.088491 -1.811907 4.579783 -0.228245 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.426164 40.494051 -3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.464819 45.713333 -6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.363992 42.104384 -2.886817 - polarizability tensor 3.009104 0.265453 0.164854 0.392052 2.422903 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.791868 43.440636 -5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522052 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.300094 43.195439 -3.272272 - polarizability tensor 13.654114 2.638427 1.355101 2.419218 4.125882 -0.076557 2.653090 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.039319 41.875905 -2.273651 - polarizability tensor 2.960546 -0.866100 0.523975 -1.061801 5.117295 -0.710667 0.733477 -0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.898992 45.340819 -4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.097346 43.311041 -2.140523 - polarizability tensor 12.949895 2.646494 1.785361 2.381880 4.179640 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.293561 41.354425 -4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.106135 43.823407 -5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460098 13.263287 -0.923067 0.789240 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.052107 47.551671 -2.597100 - polarizability tensor 2.586919 0.528104 -0.018359 0.362648 2.294263 0.043707 0.109841 0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.063655 40.861046 -9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.709261 48.501307 -9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.517012 40.173927 -1.175445 - polarizability tensor 8.609790 -3.161438 4.330874 -3.390209 5.869742 -2.969759 2.433190 -1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.655958 39.253638 -3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.531703 38.306997 -2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.380395 45.853739 -2.417633 - polarizability tensor 3.548722 1.577098 0.269187 2.005619 4.318440 -0.319352 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.140658 41.759177 -7.730563 - polarizability tensor 5.713597 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.607697 46.650331 -3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225663 5.733018 -0.256666 1.271657 -0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.437226 41.484678 -8.374362 - polarizability tensor 6.707221 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.037867 46.958811 -8.572568 - polarizability tensor 1.169671 -1.724727 0.923947 -2.191905 7.141823 -4.969365 0.687892 -2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.796542 46.300431 -3.100937 - polarizability tensor 5.399126 5.564498 0.213556 4.017191 5.082747 -0.297192 1.393777 0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.588177 46.061107 -2.535393 - polarizability tensor 10.702598 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.330072 40.414916 -2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.865186 39.980766 -2.738048 - polarizability tensor 9.556647 -3.699450 -1.931270 -3.986422 6.261107 1.285638 0.992071 -0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.022233 39.817676 -3.117975 - polarizability tensor 4.541349 -2.067478 1.036870 -1.580946 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.772656 47.282909 -7.987692 - polarizability tensor 2.204025 -0.653491 0.327503 -1.701255 5.540977 -4.544585 0.766864 -3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S -20.380949 36.987284 31.071586 - znuc, mass 16.000000 31.972070 - - Atom A02C -18.525613 39.714335 31.477421 - znuc, mass 6.000000 12.000000 - - Atom A03C -19.489910 42.218505 31.549148 - znuc, mass 6.000000 12.000000 - - Atom A04S -22.752291 42.955220 31.182267 - znuc, mass 16.000000 31.972070 - - Atom A05C -23.584815 40.603810 28.936532 - znuc, mass 6.000000 12.000000 - - Atom A06C -22.613428 38.208333 28.878785 - znuc, mass 6.000000 12.000000 - - Atom A07C -23.365091 36.459144 26.994201 - znuc, mass 6.000000 12.000000 - - Atom A08N -23.982845 34.973961 25.475349 - znuc, mass 7.000000 14.003070 - - Atom A09C -25.430469 41.360834 27.155068 - znuc, mass 6.000000 12.000000 - - Atom A10N -27.035557 41.971357 25.763629 - znuc, mass 7.000000 14.003070 - - Atom A11N -17.863954 44.065149 31.944902 - znuc, mass 7.000000 14.003070 - - Atom A12S -14.984952 42.872073 32.364716 - znuc, mass 16.000000 31.972070 - - Atom A13C -15.931758 39.749204 31.865841 - znuc, mass 6.000000 12.000000 - - Atom A14C -14.249339 37.694624 31.852551 - znuc, mass 6.000000 12.000000 - - Atom A15N -12.841744 35.991926 31.792741 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -20.380949 36.987284 31.071586 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole 0.081100 0.120946 -0.015291 -0.151351 0.112179 -0.258142 -0.096888 0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -18.525613 39.714335 31.477421 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 -0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole -0.080562 -0.064792 -0.069734 0.081135 0.040643 0.191017 0.029091 -0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C -19.489910 42.218505 31.549148 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole 0.154202 0.066939 -0.010607 -0.076422 0.037680 -0.126335 -0.027074 -0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -22.752291 42.955220 31.182267 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 -0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole -0.376726 -0.162146 -0.007751 0.064505 -0.144810 0.217808 0.152561 0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -23.584815 40.603810 28.936532 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 -0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole -0.056685 0.087927 -0.028493 -0.015828 0.161274 0.009131 -0.132781 0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C -22.613428 38.208333 28.878785 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 -0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole -0.001075 -0.050214 -0.014991 -0.047446 -0.160108 0.001747 0.175099 -0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -23.365091 36.459144 26.994201 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 -0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole 0.066905 0.052623 0.037692 0.033015 0.046038 -0.056469 -0.083730 -0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -23.982845 34.973961 25.475349 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole -0.024985 -0.019560 -0.010956 -0.010338 -0.013703 0.014533 0.024660 0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -25.430469 41.360834 27.155068 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole -0.000862 -0.071606 0.028175 0.027284 -0.078173 0.054551 0.049997 -0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -27.035557 41.971357 25.763629 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 -0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole -0.001131 0.023490 -0.018307 -0.014058 0.034435 -0.020126 -0.016128 0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -17.863954 44.065149 31.944902 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 -0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole -0.049872 -0.009996 0.025010 -0.027426 -0.025766 0.018699 0.000756 0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -14.984952 42.872073 32.364716 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 -0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole 0.079313 0.431186 -0.101331 -0.400784 0.037962 0.079017 0.063368 -0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -15.931758 39.749204 31.865841 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 -0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole 0.066522 -0.033296 0.033077 0.141141 -0.015825 -0.201472 -0.017252 0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -14.249339 37.694624 31.852551 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 -0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole -0.082638 0.017348 0.002354 -0.067724 -0.011182 0.121329 0.008828 -0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -12.841744 35.991926 31.792741 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole 0.020681 -0.004365 -0.003281 0.025182 0.001816 -0.038396 0.001465 0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -19.453281 38.350810 31.274503 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 -0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole 0.135031 -0.064489 0.081833 -0.097858 -0.020810 -0.250721 -0.061022 0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -19.007761 40.966420 31.513284 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 -0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole 0.006937 0.415001 0.020564 -0.384074 -0.195901 0.173547 0.175337 -0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -21.121100 42.586863 31.365707 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole -0.362347 0.032096 -0.067519 0.068455 -0.111862 0.234599 0.179381 0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -23.168553 41.779515 30.059399 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole -0.128236 -0.066192 -0.098878 -0.110011 -0.100435 0.054183 0.199314 0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -21.497189 37.597809 29.975185 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 -0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole -0.150222 0.184993 0.116290 0.324246 0.434434 -0.009658 -0.550724 0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -23.099122 39.406071 28.907658 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole 0.190699 -0.292172 0.613901 0.301575 -0.166371 -0.195836 -0.447530 0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -22.989260 37.333738 27.936493 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole 0.090233 0.197003 -0.239935 -0.184502 0.227647 -0.047722 0.012288 -0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -23.673968 35.716552 26.234775 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 -0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole -0.091256 -0.060414 -0.057038 -0.055047 -0.054877 0.044246 0.111914 0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -24.507642 40.982322 28.045800 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole -0.091909 0.188995 -0.277331 -0.069309 -0.049758 0.131139 0.327089 -0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -26.233013 41.666096 26.459348 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole -0.040090 0.095467 -0.079919 -0.058683 0.126158 -0.051889 -0.046239 0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -18.676932 43.141827 31.747025 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 -0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole -0.344269 0.046395 0.191856 0.007750 -0.171132 0.125564 -0.020724 0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 -16.424453 43.468611 32.154809 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 -0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole -0.052482 0.017861 -0.101437 0.090246 0.034757 0.166574 0.066680 -0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -17.228685 39.731769 31.671631 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole 0.195067 -0.254353 0.246051 -0.014826 0.033884 -0.213914 -0.279935 0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -15.458355 41.310638 32.115278 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole -0.174029 0.208769 -0.072703 -0.067761 -0.017390 0.228215 0.090093 -0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 -15.090548 38.721914 31.859196 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole -0.138702 0.038897 -0.021776 -0.027862 -0.007098 0.125103 0.028874 0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -13.545541 36.843275 31.822646 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 -0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole 0.084793 0.000751 -0.009942 0.105319 0.003154 -0.171502 0.006789 0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -19.097640 40.916670 31.486687 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -26.602290 41.261877 26.642941 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.827080 36.553007 32.238939 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -24.234289 35.738146 26.385811 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.567767 39.197647 29.220750 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.439399 43.203379 31.255529 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.596446 43.040288 31.635455 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.407026 38.462762 31.257052 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -21.035468 42.527003 31.342289 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.520352 41.005076 28.020022 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.058354 38.704217 31.876322 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.996813 37.307721 27.916692 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.364286 39.710013 32.232981 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.422313 41.145150 32.099853 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.168071 41.666630 29.965816 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.161538 39.825616 31.101232 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -21.562640 37.680236 29.886424 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.669764 39.580418 28.521541 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.409525 35.469384 31.776405 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -27.525287 42.160009 25.335067 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.170893 34.519747 25.009608 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.688550 43.500443 32.106919 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.929929 44.714057 31.993285 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.131560 42.606138 31.935679 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.664985 36.720714 31.272526 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -25.898858 41.536376 25.999142 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -20.873455 36.959947 31.838111 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -26.268976 42.214740 26.657170 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.328963 35.290320 26.433697 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.081261 37.167293 31.956012 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.853935 36.370723 30.590634 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.805674 43.767417 30.716646 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.944619 42.847127 33.198059 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.624872 43.102270 32.281745 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.499498 36.062243 25.800936 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S -11.161354 30.601049 26.217588 - znuc, mass 16.000000 31.972070 - - Atom A02C -13.016690 33.328100 25.811752 - znuc, mass 6.000000 12.000000 - - Atom A03C -12.052393 35.832270 25.740026 - znuc, mass 6.000000 12.000000 - - Atom A04S -8.790012 36.568986 26.106907 - znuc, mass 16.000000 31.972070 - - Atom A05C -7.957488 34.217575 28.352642 - znuc, mass 6.000000 12.000000 - - Atom A06C -8.928875 31.822098 28.410388 - znuc, mass 6.000000 12.000000 - - Atom A07C -8.177212 30.072909 30.294972 - znuc, mass 6.000000 12.000000 - - Atom A08N -7.559458 28.587726 31.813824 - znuc, mass 7.000000 14.003070 - - Atom A09C -6.111834 34.974599 30.134105 - znuc, mass 6.000000 12.000000 - - Atom A10N -4.506746 35.585122 31.525545 - znuc, mass 7.000000 14.003070 - - Atom A11N -13.678350 37.678914 25.344272 - znuc, mass 7.000000 14.003070 - - Atom A12S -16.557351 36.485838 24.924458 - znuc, mass 16.000000 31.972070 - - Atom A13C -15.610545 33.362969 25.423332 - znuc, mass 6.000000 12.000000 - - Atom A14C -17.292965 31.308389 25.436623 - znuc, mass 6.000000 12.000000 - - Atom A15N -18.700559 29.605691 25.496432 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -11.161354 30.601049 26.217588 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole -0.081100 0.120946 0.015291 -0.151351 -0.112179 0.258142 0.096888 -0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -13.016690 33.328100 25.811752 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 -0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole 0.080562 -0.064792 0.069734 0.081135 -0.040643 -0.191017 -0.029091 0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C -12.052393 35.832270 25.740026 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole -0.154202 0.066939 0.010607 -0.076422 -0.037680 0.126335 0.027074 0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -8.790012 36.568986 26.106907 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 -0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole 0.376726 -0.162146 0.007751 0.064505 0.144810 -0.217808 -0.152561 -0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -7.957488 34.217575 28.352642 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 -0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole 0.056685 0.087927 0.028493 -0.015828 -0.161274 -0.009131 0.132781 -0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C -8.928875 31.822098 28.410388 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 -0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole 0.001075 -0.050214 0.014991 -0.047446 0.160108 -0.001747 -0.175099 0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -8.177212 30.072909 30.294972 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 -0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole -0.066905 0.052623 -0.037692 0.033015 -0.046038 0.056469 0.083730 0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -7.559458 28.587726 31.813824 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole 0.024985 -0.019560 0.010956 -0.010338 0.013703 -0.014533 -0.024660 -0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -6.111834 34.974599 30.134105 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole 0.000862 -0.071606 -0.028175 0.027284 0.078173 -0.054551 -0.049997 0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -4.506746 35.585122 31.525545 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 -0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole 0.001131 0.023490 0.018307 -0.014058 -0.034435 0.020126 0.016128 -0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -13.678350 37.678914 25.344272 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 -0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole 0.049872 -0.009996 -0.025010 -0.027426 0.025766 -0.018699 -0.000756 -0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -16.557351 36.485838 24.924458 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 -0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole -0.079313 0.431186 0.101331 -0.400784 -0.037962 -0.079017 -0.063368 0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -15.610545 33.362969 25.423332 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 -0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole -0.066522 -0.033296 -0.033077 0.141141 0.015825 0.201472 0.017252 -0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -17.292965 31.308389 25.436623 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 -0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole 0.082638 0.017348 -0.002354 -0.067724 0.011182 -0.121329 -0.008828 0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -18.700559 29.605691 25.496432 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole -0.020681 -0.004365 0.003281 0.025182 -0.001816 0.038396 -0.001465 -0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -12.089022 31.964575 26.014670 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 -0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole -0.135031 -0.064489 -0.081833 -0.097858 0.020810 0.250721 0.061022 -0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -12.534542 34.580185 25.775889 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 -0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole -0.006937 0.415001 -0.020564 -0.384074 0.195901 -0.173547 -0.175337 0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -10.421203 36.200628 25.923466 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole 0.362347 0.032096 0.067519 0.068455 0.111862 -0.234599 -0.179381 -0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -8.373750 35.393280 27.229774 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole 0.128236 -0.066192 0.098878 -0.110011 0.100435 -0.054183 -0.199314 -0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -10.045114 31.211574 27.313988 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 -0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole 0.150222 0.184993 -0.116290 0.324246 -0.434434 0.009658 0.550724 -0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -8.443181 33.019836 28.381515 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole -0.190699 -0.292172 -0.613901 0.301575 0.166371 0.195836 0.447530 -0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -8.553043 30.947503 29.352680 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole -0.090233 0.197003 0.239935 -0.184502 -0.227647 0.047722 -0.012288 0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -7.868335 29.330317 31.054398 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 -0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole 0.091256 -0.060414 0.057038 -0.055047 0.054877 -0.044246 -0.111914 -0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -7.034661 34.596087 29.243374 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole 0.091909 0.188995 0.277331 -0.069309 0.049758 -0.131139 -0.327089 0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -5.309290 35.279861 30.829825 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole 0.040090 0.095467 0.079919 -0.058683 -0.126158 0.051889 0.046239 -0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -12.865372 36.755592 25.542149 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 -0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole 0.344269 0.046395 -0.191856 0.007750 0.171132 -0.125564 0.020724 -0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 -15.117850 37.082376 25.134365 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 -0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole 0.052482 0.017861 0.101437 0.090246 -0.034757 -0.166574 -0.066680 0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -14.313618 33.345534 25.617542 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole -0.195067 -0.254353 -0.246051 -0.014826 -0.033884 0.213914 0.279935 -0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -16.083948 34.924403 25.173895 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole 0.174029 0.208769 0.072703 -0.067761 0.017390 -0.228215 -0.090093 0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 -16.451755 32.335679 25.429977 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole 0.138702 0.038897 0.021776 -0.027862 0.007098 -0.125103 -0.028874 -0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -17.996762 30.457040 25.466528 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 -0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole -0.084793 0.000751 0.009942 0.105319 -0.003154 0.171502 -0.006789 -0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -12.444663 34.530435 25.802487 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -4.940013 34.875642 30.646232 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.715223 30.166772 25.050235 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -7.308014 29.351911 30.903362 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.974536 32.811412 28.068423 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.102904 36.817144 26.033644 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.945857 36.654053 25.653718 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.135277 32.076527 26.032121 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.506836 36.140768 25.946884 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.021951 34.618841 29.269151 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.483949 32.317982 25.412851 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.545491 30.921486 29.372481 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.178017 33.323778 25.056192 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.119990 34.758915 25.189320 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.374232 35.280395 27.323358 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.380765 33.439381 26.187941 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.979663 31.294001 27.402749 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.872539 33.194183 28.767632 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.132779 29.083149 25.512769 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.017016 35.773774 31.954106 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.371411 28.133512 32.279566 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.853753 37.114208 25.182254 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.612374 38.327822 25.295888 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.410744 36.219903 25.353494 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.877318 30.334479 26.016647 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.643445 35.150141 31.290032 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.668848 30.573712 25.451063 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.273328 35.828505 30.632003 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.213340 28.904085 30.855477 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.461042 30.781058 25.333161 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.688368 29.984488 26.698539 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.736629 37.381182 26.572528 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.597684 36.460892 24.091115 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.917431 36.716035 25.007429 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.042805 29.676008 31.488237 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 4.219605 39.647535 14.759753 - znuc, mass 16.000000 31.972070 - - Atom A02C 2.364270 36.920484 14.353917 - znuc, mass 6.000000 12.000000 - - Atom A03C 3.328568 34.416314 14.282191 - znuc, mass 6.000000 12.000000 - - Atom A04S 6.590950 33.679600 14.649073 - znuc, mass 16.000000 31.972070 - - Atom A05C 7.423473 36.031011 16.894808 - znuc, mass 6.000000 12.000000 - - Atom A06C 6.452084 38.426488 16.952554 - znuc, mass 6.000000 12.000000 - - Atom A07C 7.203746 40.175677 18.837138 - znuc, mass 6.000000 12.000000 - - Atom A08N 7.821499 41.660861 20.355990 - znuc, mass 7.000000 14.003070 - - Atom A09C 9.269126 35.273988 18.676272 - znuc, mass 6.000000 12.000000 - - Atom A10N 10.874214 34.663465 20.067712 - znuc, mass 7.000000 14.003070 - - Atom A11N 1.702613 32.569669 13.886437 - znuc, mass 7.000000 14.003070 - - Atom A12S -1.176389 33.762744 13.466623 - znuc, mass 16.000000 31.972070 - - Atom A13C -0.229585 36.885613 13.965497 - znuc, mass 6.000000 12.000000 - - Atom A14C -1.912005 38.940193 13.978787 - znuc, mass 6.000000 12.000000 - - Atom A15N -3.319600 40.642890 14.038596 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 4.219605 39.647535 14.759753 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 -1.019605 0.491700 - duadrupole 0.200252 0.667129 -0.867381 0.820424 2.014536 -0.644901 - octupole -0.081100 -0.120945 0.015291 0.151350 -0.112179 0.258142 0.096888 -0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 2.364270 36.920484 14.353917 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026088 0.009793 - octupole 0.080562 0.064792 0.069734 -0.081134 -0.040643 -0.191017 -0.029091 0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 3.328568 34.416314 14.282191 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 -0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole -0.154202 -0.066939 0.010607 0.076422 -0.037680 0.126335 0.027074 0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 6.590950 33.679600 14.649073 - znuc, monopole 16.000000 -15.424149 - dipole -0.645105 0.702589 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883321 - octupole 0.376726 0.162146 0.007751 -0.064504 0.144810 -0.217808 -0.152561 -0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 7.423473 36.031011 16.894808 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 0.012964 0.126299 - duadrupole -0.086713 0.172782 -0.086070 -0.198246 0.015502 0.024956 - octupole 0.056685 -0.087927 0.028493 0.015828 -0.161274 -0.009131 0.132781 -0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 6.452084 38.426488 16.952554 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole 0.001075 0.050214 0.014991 0.047446 0.160109 -0.001747 -0.175100 0.000672 -0.097661 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 7.203746 40.175677 18.837138 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole -0.066905 -0.052623 -0.037692 -0.033015 -0.046038 0.056469 0.083730 0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 7.821499 41.660861 20.355990 - znuc, monopole 7.000000 -6.844356 - dipole -0.128196 -0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole 0.024985 0.019560 0.010956 0.010338 0.013703 -0.014533 -0.024660 -0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 9.269126 35.273988 18.676272 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 -0.134363 0.337213 - duadrupole 0.044076 -0.065351 0.021276 0.052673 0.059479 0.009395 - octupole 0.000862 0.071606 -0.028175 -0.027284 0.078173 -0.054551 -0.049998 0.053689 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 10.874214 34.663465 20.067712 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole 0.001131 -0.023490 0.018307 0.014058 -0.034435 0.020126 0.016128 -0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 1.702613 32.569669 13.886437 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109388 -0.037751 - octupole 0.049872 0.009996 -0.025010 0.027426 0.025766 -0.018699 -0.000756 -0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S -1.176389 33.762744 13.466623 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 0.461479 0.227968 - duadrupole 0.657691 1.380421 -2.038112 -0.516799 0.477705 0.276530 - octupole -0.079313 -0.431186 0.101331 0.400784 -0.037962 -0.079016 -0.063368 0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -0.229585 36.885613 13.965497 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 0.118662 -0.023762 - duadrupole 0.102512 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole -0.066522 0.033296 -0.033078 -0.141141 0.015825 0.201472 0.017252 -0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C -1.912005 38.940193 13.978787 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 0.447125 0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole 0.082638 -0.017348 -0.002354 0.067724 0.011182 -0.121329 -0.008828 0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N -3.319600 40.642890 14.038596 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 -0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013044 0.009826 - octupole -0.020681 0.004365 0.003281 -0.025182 -0.001816 0.038396 -0.001465 -0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 3.291938 38.284009 14.556835 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 0.204132 -0.059744 - duadrupole -0.127967 0.303138 -0.175171 0.361286 0.022579 0.002456 - octupole -0.135031 0.064490 -0.081833 0.097857 0.020810 0.250721 0.061023 -0.115690 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 2.846419 35.668399 14.318054 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099040 0.017364 - octupole -0.006938 -0.415001 -0.020563 0.384074 0.195901 -0.173546 -0.175337 0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 4.959759 34.047957 14.465632 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 -0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole 0.362347 -0.032097 0.067519 -0.068455 0.111862 -0.234600 -0.179381 -0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 7.007211 34.855306 15.771940 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 -0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121103 0.078949 0.001930 0.434804 - octupole 0.128235 0.066191 0.098878 0.110012 0.100436 -0.054183 -0.199314 -0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 5.335845 39.037011 15.856154 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 0.216246 -0.112894 - duadrupole 0.231615 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole 0.150223 -0.184993 -0.116290 -0.324246 -0.434434 0.009658 0.550724 -0.159881 0.509238 0.036069 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 6.937778 37.228750 16.923681 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 -0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole -0.190699 0.292172 -0.613901 -0.301576 0.166371 0.195835 0.447530 -0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 6.827915 39.301083 17.894846 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 -0.079077 -0.047152 - duadrupole 0.177104 0.006089 -0.183194 -0.206575 0.019465 -0.143936 - octupole -0.090233 -0.197003 0.239935 0.184502 -0.227648 0.047722 -0.012288 0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 7.512622 40.918269 19.596564 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 0.228151 0.227536 - duadrupole -0.226596 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole 0.091256 0.060414 0.057038 0.055047 0.054877 -0.044246 -0.111914 -0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 8.346300 35.652500 17.785540 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 -0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142766 -0.071307 0.108121 - octupole 0.091909 -0.188995 0.277331 0.069309 0.049758 -0.131139 -0.327089 0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 10.071670 34.968727 19.371992 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 -0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole 0.040090 -0.095467 0.079919 0.058683 -0.126158 0.051889 0.046239 -0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 2.515590 33.492991 14.084314 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 0.115721 0.003434 - duadrupole 0.270648 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole 0.344269 -0.046395 -0.191856 -0.007750 0.171132 -0.125564 0.020724 -0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 0.263112 33.166207 13.676530 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 0.026718 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole 0.052482 -0.017862 0.101437 -0.090246 -0.034757 -0.166575 -0.066680 0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 1.067343 36.903049 14.159707 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 -0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole -0.195067 0.254354 -0.246051 0.014825 -0.033884 0.213914 0.279935 -0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -0.702987 35.324179 13.716060 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 -0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole 0.174029 -0.208769 0.072703 0.067761 0.017390 -0.228215 -0.090093 0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 -1.070795 37.912903 13.972142 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 -0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole 0.138702 -0.038897 0.021776 0.027863 0.007098 -0.125103 -0.028874 -0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 -2.615803 39.791541 14.008692 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 0.265565 0.005667 - duadrupole 0.053653 0.238490 -0.292143 -0.457319 -0.029902 0.030180 - octupole -0.084792 -0.000751 0.009942 -0.105320 -0.003154 0.171502 -0.006789 -0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 2.463531 33.532549 13.549594 - polarizability tensor 4.528424 1.917551 0.356759 1.444128 6.305472 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 10.107633 34.420082 19.174170 - polarizability tensor 3.614271 -1.113333 2.917217 -0.029793 1.821479 0.641372 2.940226 -0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.334346 40.081742 13.592298 - polarizability tensor 5.676904 -5.144008 -0.727141 -3.339388 4.987137 -0.427750 -0.708035 -0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 7.167617 41.344500 19.397643 - polarizability tensor 2.014659 1.411522 2.754673 0.096191 2.864917 1.368381 1.742510 2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.359009 35.629745 17.811318 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536299 1.326286 -0.648852 1.549497 -0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.102989 37.930600 13.955016 - polarizability tensor 2.247828 -1.783499 0.065363 -1.149026 2.379896 0.043699 0.251241 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.527209 33.134375 13.724420 - polarizability tensor 5.239487 -1.239561 0.807464 -0.101560 1.234380 0.089842 1.195631 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.245682 38.172057 14.574286 - polarizability tensor 5.018067 4.875224 1.088491 1.811907 4.579786 0.228246 1.487331 1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.874126 34.107816 14.489050 - polarizability tensor 9.182809 -1.751286 0.995508 -0.084237 1.828484 0.387734 2.027093 0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.835468 39.327100 17.914647 - polarizability tensor 1.671051 0.572015 1.296469 0.542823 2.162529 1.769890 1.031019 1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.936298 35.718149 14.344652 - polarizability tensor 3.009105 -0.265453 0.164855 -0.392052 2.422902 0.078852 0.571863 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.508421 37.054402 17.309798 - polarizability tensor 5.263037 -4.454329 1.663069 -4.279634 13.403258 0.812801 1.522053 0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.000195 36.809202 14.730106 - polarizability tensor 13.654116 -2.638423 1.355104 -2.419214 4.125879 0.076557 2.653092 -0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.739029 35.489667 13.731485 - polarizability tensor 2.960545 0.866099 0.523975 1.061800 5.117296 0.710667 0.733477 0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.401296 38.954584 15.944915 - polarizability tensor 5.617929 -1.381554 4.877276 -1.251780 2.735770 -1.290944 3.659516 -1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.202943 36.924805 13.598357 - polarizability tensor 12.949896 -2.646490 1.785363 -2.381876 4.179637 -0.329227 2.420663 -0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.006729 34.968191 15.865524 - polarizability tensor 3.040417 1.393146 2.596746 0.925311 4.759664 3.665080 1.764101 3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.406423 37.437174 16.610589 - polarizability tensor 4.688607 -4.661428 1.698768 -4.460102 13.263283 0.923066 0.789241 0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.751820 41.165432 14.054933 - polarizability tensor 2.586920 -0.528103 -0.018359 -0.362647 2.294262 -0.043707 0.109841 -0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.363944 34.474814 20.496273 - polarizability tensor 2.625149 -0.213208 0.424935 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.009546 42.115074 20.821732 - polarizability tensor 2.080856 0.280706 0.149350 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.216721 33.787690 12.633279 - polarizability tensor 8.609786 3.161439 4.330873 3.390210 5.869745 2.969762 2.433189 1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.644333 32.867404 15.114694 - polarizability tensor 5.800146 -0.752295 1.186095 0.172145 7.005037 0.548345 0.964192 0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.768589 31.920761 13.838054 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321947 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.080107 39.467501 13.875466 - polarizability tensor 3.548724 -1.577098 0.269188 -2.005619 4.318439 0.319351 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.440947 35.372946 19.188399 - polarizability tensor 5.713598 -1.433755 3.432521 -2.871854 2.858065 -3.181668 3.126669 -2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.692591 40.264096 15.240704 - polarizability tensor 6.533271 0.444461 1.547291 -1.225663 5.733017 0.256666 1.271658 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.737515 35.098446 19.832198 - polarizability tensor 6.707222 -2.929001 4.115173 -3.681834 2.332214 -2.837643 2.110817 -1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.338154 40.572578 20.030403 - polarizability tensor 1.169669 1.724724 0.923944 2.191901 7.141826 4.969366 0.687890 2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.496254 39.914193 14.558771 - polarizability tensor 5.399130 -5.564497 0.213557 -4.017191 5.082742 0.297191 1.393778 -0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.712111 39.674873 13.993228 - polarizability tensor 10.702596 1.789313 3.005774 -0.514549 5.742470 -3.210321 2.108866 -0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.970218 34.028682 13.895660 - polarizability tensor 8.115953 0.753025 -0.167711 1.550833 6.978558 4.365403 0.764813 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.564896 33.594529 14.195882 - polarizability tensor 9.556643 3.699452 -1.931269 3.986424 6.261110 -1.285638 0.992072 0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.278058 33.431440 14.575810 - polarizability tensor 4.541347 2.067477 1.036870 1.580945 6.187413 0.395977 1.497097 1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.072943 40.896676 19.445527 - polarizability tensor 2.204024 0.653489 0.327501 1.701252 5.540979 4.544585 0.766862 3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S -4.999989 46.033770 19.613751 - znuc, mass 16.000000 31.972070 - - Atom A02C -3.144653 43.306719 20.019587 - znuc, mass 6.000000 12.000000 - - Atom A03C -4.108951 40.802549 20.091313 - znuc, mass 6.000000 12.000000 - - Atom A04S -7.371333 40.065835 19.724431 - znuc, mass 16.000000 31.972070 - - Atom A05C -8.203856 42.417246 17.478696 - znuc, mass 6.000000 12.000000 - - Atom A06C -7.232468 44.812723 17.420950 - znuc, mass 6.000000 12.000000 - - Atom A07C -7.984129 46.561912 15.536366 - znuc, mass 6.000000 12.000000 - - Atom A08N -8.601882 48.047096 14.017514 - znuc, mass 7.000000 14.003070 - - Atom A09C -10.049510 41.660223 15.697232 - znuc, mass 6.000000 12.000000 - - Atom A10N -11.654598 41.049700 14.305792 - znuc, mass 7.000000 14.003070 - - Atom A11N -2.482996 38.955904 20.487067 - znuc, mass 7.000000 14.003070 - - Atom A12S 0.396006 40.148979 20.906881 - znuc, mass 16.000000 31.972070 - - Atom A13C -0.550798 43.271848 20.408007 - znuc, mass 6.000000 12.000000 - - Atom A14C 1.131622 45.326428 20.394717 - znuc, mass 6.000000 12.000000 - - Atom A15N 2.539217 47.029125 20.334908 - znuc, mass 7.000000 14.003070 - - Multipole point A01S -4.999989 46.033770 19.613751 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 -1.019605 -0.491700 - duadrupole 0.200252 0.667129 -0.867381 -0.820424 2.014536 0.644901 - octupole 0.081100 -0.120945 -0.015291 0.151350 0.112179 -0.258142 -0.096888 0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C -3.144653 43.306719 20.019587 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026088 -0.009793 - octupole -0.080562 0.064792 -0.069734 -0.081134 0.040643 0.191017 0.029091 -0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C -4.108951 40.802549 20.091313 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 -0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole 0.154202 -0.066939 -0.010607 0.076422 0.037680 -0.126335 -0.027074 -0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -7.371333 40.065835 19.724431 - znuc, monopole 16.000000 -15.424149 - dipole 0.645105 0.702589 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883321 - octupole -0.376726 0.162146 -0.007751 -0.064504 -0.144810 0.217808 0.152561 0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -8.203856 42.417246 17.478696 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 0.012964 -0.126299 - duadrupole -0.086713 0.172782 -0.086070 0.198246 0.015502 -0.024956 - octupole -0.056685 -0.087927 -0.028493 0.015828 0.161274 0.009131 -0.132781 0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C -7.232468 44.812723 17.420950 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole -0.001075 0.050214 -0.014991 0.047446 -0.160109 0.001747 0.175100 -0.000672 -0.097661 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -7.984129 46.561912 15.536366 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole 0.066905 -0.052623 0.037692 -0.033015 0.046038 -0.056469 -0.083730 -0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -8.601882 48.047096 14.017514 - znuc, monopole 7.000000 -6.844356 - dipole 0.128196 -0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole -0.024985 0.019560 -0.010956 0.010338 -0.013703 0.014533 0.024660 0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -10.049510 41.660223 15.697232 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 -0.134363 -0.337213 - duadrupole 0.044076 -0.065351 0.021276 -0.052673 0.059479 -0.009395 - octupole -0.000862 0.071606 0.028175 -0.027284 -0.078173 0.054551 0.049998 -0.053689 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -11.654598 41.049700 14.305792 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole -0.001131 -0.023490 -0.018307 0.014058 0.034435 -0.020126 -0.016128 0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N -2.482996 38.955904 20.487067 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109388 0.037751 - octupole -0.049872 0.009996 0.025010 0.027426 -0.025766 0.018699 0.000756 0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 0.396006 40.148979 20.906881 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 0.461479 -0.227968 - duadrupole 0.657691 1.380421 -2.038112 0.516799 0.477705 -0.276530 - octupole 0.079313 -0.431186 -0.101331 0.400784 0.037962 0.079016 0.063368 -0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C -0.550798 43.271848 20.408007 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 0.118662 0.023762 - duadrupole 0.102512 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole 0.066522 0.033296 0.033078 -0.141141 -0.015825 -0.201472 -0.017252 0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 1.131622 45.326428 20.394717 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 0.447125 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole -0.082638 -0.017348 0.002354 0.067724 -0.011182 0.121329 0.008828 -0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 2.539217 47.029125 20.334908 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 -0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013044 -0.009826 - octupole 0.020681 0.004365 -0.003281 -0.025182 0.001816 -0.038396 0.001465 0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 -4.072321 44.670244 19.816669 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 0.204132 0.059744 - duadrupole -0.127967 0.303138 -0.175171 -0.361286 0.022579 -0.002456 - octupole 0.135031 0.064490 0.081833 0.097857 -0.020810 -0.250721 -0.061023 0.115690 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 -3.626802 42.054634 20.055450 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099040 -0.017364 - octupole 0.006938 -0.415001 0.020563 0.384074 -0.195901 0.173546 0.175337 -0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 -5.740142 40.434192 19.907872 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 -0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole -0.362347 -0.032097 -0.067519 -0.068455 -0.111862 0.234600 0.179381 0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -7.787594 41.241541 18.601564 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 -0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121103 -0.078949 0.001930 -0.434804 - octupole -0.128235 0.066191 -0.098878 0.110012 -0.100436 0.054183 0.199314 0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 -6.116228 45.423246 18.517351 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 0.216246 0.112894 - duadrupole 0.231615 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole -0.150223 -0.184993 0.116290 -0.324246 0.434434 -0.009658 -0.550724 0.159881 0.509238 0.036069 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -7.718162 43.614984 17.449823 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 -0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole 0.190699 0.292172 0.613901 -0.301576 -0.166371 -0.195835 -0.447530 0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 -7.608298 45.687318 16.478658 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 -0.079077 0.047152 - duadrupole 0.177104 0.006089 -0.183194 0.206575 0.019465 0.143936 - octupole 0.090233 -0.197003 -0.239935 0.184502 0.227648 -0.047722 0.012288 -0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -8.293006 47.304504 14.776940 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 0.228151 -0.227536 - duadrupole -0.226596 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole -0.091256 0.060414 -0.057038 0.055047 -0.054877 0.044246 0.111914 0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -9.126683 42.038734 16.587964 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 -0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142766 -0.071307 -0.108121 - octupole -0.091909 -0.188995 -0.277331 0.069309 -0.049758 0.131139 0.327089 -0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -10.852054 41.354962 15.001512 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 -0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole -0.040090 -0.095467 -0.079919 0.058683 0.126158 -0.051889 -0.046239 0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 -3.295974 39.879226 20.289190 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 0.115721 -0.003434 - duadrupole 0.270648 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole -0.344269 -0.046395 0.191856 -0.007750 -0.171132 0.125564 -0.020724 0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 -1.043495 39.552442 20.696974 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 0.026718 0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole -0.052482 -0.017862 -0.101437 -0.090246 0.034757 0.166575 0.066680 -0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 -1.847726 43.289284 20.213797 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 -0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole 0.195067 0.254354 0.246051 0.014825 0.033884 -0.213914 -0.279935 0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 -0.077396 41.710414 20.657444 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 -0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole -0.174029 -0.208769 -0.072703 0.067761 -0.017390 0.228215 0.090093 -0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 0.290412 44.299138 20.401362 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 -0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole -0.138702 -0.038897 -0.021776 0.027863 -0.007098 0.125103 0.028874 0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 1.835420 46.177776 20.364812 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 0.265565 -0.005667 - duadrupole 0.053653 0.238490 -0.292143 0.457319 -0.029902 -0.030180 - octupole 0.084792 -0.000751 -0.009942 -0.105320 0.003154 -0.171502 0.006789 0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords -3.243914 39.918783 20.823910 - polarizability tensor 4.528424 -1.917551 0.356759 -1.444128 6.305472 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -10.888016 40.806317 15.199334 - polarizability tensor 3.614271 1.113333 2.917217 0.029793 1.821479 -0.641372 2.940226 0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.553962 46.467977 20.781206 - polarizability tensor 5.676904 5.144008 -0.727141 3.339388 4.987137 0.427750 -0.708035 0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -7.948000 47.730735 14.975861 - polarizability tensor 2.014659 -1.411522 2.754673 -0.096191 2.864917 -1.368381 1.742510 -2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.139393 42.015980 16.562186 - polarizability tensor 2.644773 0.420648 2.214495 0.536299 1.326286 0.648852 1.549497 0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.322606 44.316835 20.418488 - polarizability tensor 2.247828 1.783499 0.065363 1.149026 2.379896 -0.043699 0.251241 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.307592 39.520610 20.649084 - polarizability tensor 5.239487 1.239561 0.807464 0.101560 1.234380 -0.089842 1.195631 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.026065 44.558292 19.799218 - polarizability tensor 5.018067 -4.875224 1.088491 -1.811907 4.579786 -0.228246 1.487331 -1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.654509 40.494051 19.884454 - polarizability tensor 9.182809 1.751286 0.995508 0.084237 1.828484 -0.387734 2.027093 -0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.615851 45.713335 16.458857 - polarizability tensor 1.671051 -0.572015 1.296469 -0.542823 2.162529 -1.769890 1.031019 -1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.716681 42.104384 20.028852 - polarizability tensor 3.009105 0.265453 0.164855 0.392052 2.422902 -0.078852 0.571863 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.288804 43.440637 17.063706 - polarizability tensor 5.263037 4.454329 1.663069 4.279634 13.403258 -0.812801 1.522053 -0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.780578 43.195437 19.643398 - polarizability tensor 13.654116 2.638423 1.355104 2.419214 4.125879 -0.076557 2.653092 0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.041354 41.875902 20.642019 - polarizability tensor 2.960545 -0.866099 0.523975 -1.061800 5.117296 -0.710667 0.733477 -0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.181679 45.340819 18.428589 - polarizability tensor 5.617929 1.381554 4.877276 1.251780 2.735770 1.290944 3.659516 1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.983327 43.311040 20.775147 - polarizability tensor 12.949896 2.646490 1.785363 2.381876 4.179637 0.329227 2.420663 0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.787112 41.354426 18.507980 - polarizability tensor 3.040417 -1.393146 2.596746 -0.925311 4.759664 -3.665080 1.764101 -3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.186806 43.823409 17.762915 - polarizability tensor 4.688607 4.661428 1.698768 4.460102 13.263283 -0.923066 0.789241 -0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.971437 47.551667 20.318571 - polarizability tensor 2.586920 0.528103 -0.018359 0.362647 2.294262 0.043707 0.109841 0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.144327 40.861049 13.877231 - polarizability tensor 2.625149 0.213208 0.424935 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.789929 48.501309 13.551772 - polarizability tensor 2.080856 -0.280706 0.149350 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.436338 40.173925 21.740225 - polarizability tensor 8.609786 -3.161439 4.330873 -3.390210 5.869745 -2.969762 2.433189 -1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.424716 39.253639 19.258810 - polarizability tensor 5.800146 0.752295 1.186095 -0.172145 7.005037 -0.548345 0.964192 -0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.548972 38.306996 20.535450 - polarizability tensor 2.238895 0.092051 0.189597 0.321947 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.299723 45.853736 20.498038 - polarizability tensor 3.548724 1.577098 0.269188 2.005619 4.318439 -0.319351 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.221331 41.759181 15.185105 - polarizability tensor 5.713598 1.433755 3.432521 2.871854 2.858065 3.181668 3.126669 2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.472974 46.650331 19.132800 - polarizability tensor 6.533271 -0.444461 1.547291 1.225663 5.733017 -0.256666 1.271658 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.517899 41.484681 14.541306 - polarizability tensor 6.707222 2.929001 4.115173 3.681834 2.332214 2.837643 2.110817 1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.118537 46.958813 14.343101 - polarizability tensor 1.169669 -1.724724 0.923944 -2.191901 7.141826 -4.969366 0.687890 -2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.715871 46.300428 19.814733 - polarizability tensor 5.399130 5.564497 0.213557 4.017191 5.082742 -0.297191 1.393778 0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.492494 46.061107 20.380276 - polarizability tensor 10.702596 -1.789313 3.005774 0.514549 5.742470 3.210321 2.108866 0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.750601 40.414917 20.477844 - polarizability tensor 8.115953 -0.753025 -0.167711 -1.550833 6.978558 -4.365403 0.764813 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.784513 39.980764 20.177622 - polarizability tensor 9.556643 -3.699452 -1.931269 -3.986424 6.261110 1.285638 0.992072 -0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.058441 39.817675 19.797694 - polarizability tensor 4.541347 -2.067477 1.036870 -1.580945 6.187413 -0.395977 1.497097 -1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.853326 47.282911 14.927977 - polarizability tensor 2.204024 -0.653489 0.327501 -1.701252 5.540979 -4.544585 0.766862 -3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S 10.380970 -1.330125 8.155916 - znuc, mass 16.000000 31.972070 - - Atom A02C 12.236307 1.396925 8.561752 - znuc, mass 6.000000 12.000000 - - Atom A03C 11.272010 3.901095 8.633478 - znuc, mass 6.000000 12.000000 - - Atom A04S 8.009629 4.637811 8.266597 - znuc, mass 16.000000 31.972070 - - Atom A05C 7.177104 2.286400 6.020862 - znuc, mass 6.000000 12.000000 - - Atom A06C 8.148492 -0.109077 5.963116 - znuc, mass 6.000000 12.000000 - - Atom A07C 7.396829 -1.858266 4.078532 - znuc, mass 6.000000 12.000000 - - Atom A08N 6.779075 -3.343449 2.559680 - znuc, mass 7.000000 14.003070 - - Atom A09C 5.331451 3.043424 4.239399 - znuc, mass 6.000000 12.000000 - - Atom A10N 3.726363 3.653948 2.847959 - znuc, mass 7.000000 14.003070 - - Atom A11N 12.897966 5.747739 9.029232 - znuc, mass 7.000000 14.003070 - - Atom A12S 15.776968 4.554663 9.449046 - znuc, mass 16.000000 31.972070 - - Atom A13C 14.830162 1.431794 8.950172 - znuc, mass 6.000000 12.000000 - - Atom A14C 16.512581 -0.622786 8.936881 - znuc, mass 6.000000 12.000000 - - Atom A15N 17.920176 -2.325484 8.877072 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 10.380970 -1.330125 8.155916 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole 0.081100 0.120946 -0.015291 -0.151351 0.112179 -0.258142 -0.096888 0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 12.236307 1.396925 8.561752 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 -0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole -0.080562 -0.064792 -0.069734 0.081135 0.040643 0.191017 0.029091 -0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C 11.272010 3.901095 8.633478 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole 0.154202 0.066939 -0.010607 -0.076422 0.037680 -0.126335 -0.027074 -0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 8.009629 4.637811 8.266597 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 -0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole -0.376726 -0.162146 -0.007751 0.064505 -0.144810 0.217808 0.152561 0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 7.177104 2.286400 6.020862 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 -0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole -0.056685 0.087927 -0.028493 -0.015828 0.161274 0.009131 -0.132781 0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C 8.148492 -0.109077 5.963116 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 -0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole -0.001075 -0.050214 -0.014991 -0.047446 -0.160108 0.001747 0.175099 -0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 7.396829 -1.858266 4.078532 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 -0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole 0.066905 0.052623 0.037692 0.033015 0.046038 -0.056469 -0.083730 -0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 6.779075 -3.343449 2.559680 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole -0.024985 -0.019560 -0.010956 -0.010338 -0.013703 0.014533 0.024660 0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 5.331451 3.043424 4.239399 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole -0.000862 -0.071606 0.028175 0.027284 -0.078173 0.054551 0.049997 -0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 3.726363 3.653948 2.847959 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 -0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole -0.001131 0.023490 -0.018307 -0.014058 0.034435 -0.020126 -0.016128 0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 12.897966 5.747739 9.029232 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 -0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole -0.049872 -0.009996 0.025010 -0.027426 -0.025766 0.018699 0.000756 0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 15.776968 4.554663 9.449046 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 -0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole 0.079313 0.431186 -0.101331 -0.400784 0.037962 0.079017 0.063368 -0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 14.830162 1.431794 8.950172 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 -0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole 0.066522 -0.033296 0.033077 0.141141 -0.015825 -0.201472 -0.017252 0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 16.512581 -0.622786 8.936881 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 -0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole -0.082638 0.017348 0.002354 -0.067724 -0.011182 0.121329 0.008828 -0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 17.920176 -2.325484 8.877072 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole 0.020681 -0.004365 -0.003281 0.025182 0.001816 -0.038396 0.001465 0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 11.308639 0.033400 8.358834 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 -0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole 0.135031 -0.064489 0.081833 -0.097858 -0.020810 -0.250721 -0.061022 0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 11.754159 2.649010 8.597615 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 -0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole 0.006937 0.415001 0.020564 -0.384074 -0.195901 0.173547 0.175337 -0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 9.640820 4.269453 8.450038 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole -0.362347 0.032096 -0.067519 0.068455 -0.111862 0.234599 0.179381 0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 7.593367 3.462105 7.143730 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole -0.128236 -0.066192 -0.098878 -0.110011 -0.100435 0.054183 0.199314 0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 9.264731 -0.719601 7.059516 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 -0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole -0.150222 0.184993 0.116290 0.324246 0.434434 -0.009658 -0.550724 0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 7.662798 1.088662 5.991989 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole 0.190699 -0.292172 0.613901 0.301575 -0.166371 -0.195836 -0.447530 0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 7.772660 -0.983671 5.020824 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole 0.090233 0.197003 -0.239935 -0.184502 0.227647 -0.047722 0.012288 -0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 7.087952 -2.600857 3.319106 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 -0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole -0.091256 -0.060414 -0.057038 -0.055047 -0.054877 0.044246 0.111914 0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 6.254278 2.664912 5.130130 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole -0.091909 0.188995 -0.277331 -0.069309 -0.049758 0.131139 0.327089 -0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 4.528907 3.348686 3.543679 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole -0.040090 0.095467 -0.079919 -0.058683 0.126158 -0.051889 -0.046239 0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 12.084988 4.824417 8.831355 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 -0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole -0.344269 0.046395 0.191856 0.007750 -0.171132 0.125564 -0.020724 0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 14.337467 5.151201 9.239139 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 -0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole -0.052482 0.017861 -0.101437 0.090246 0.034757 0.166574 0.066680 -0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 13.533235 1.414360 8.755962 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole 0.195067 -0.254353 0.246051 -0.014826 0.033884 -0.213914 -0.279935 0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 15.303565 2.993229 9.199609 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole -0.174029 0.208769 -0.072703 -0.067761 -0.017390 0.228215 0.090093 -0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 15.671372 0.404504 8.943527 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole -0.138702 0.038897 -0.021776 -0.027862 -0.007098 0.125103 0.028874 0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 17.216379 -1.474135 8.906976 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 -0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole 0.084793 0.000751 -0.009942 0.105319 0.003154 -0.171502 0.006789 0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 11.664279 2.599261 8.571017 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 4.159630 2.944467 3.727272 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.934840 -1.764403 9.323269 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 6.527631 -2.579263 3.470142 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.194153 0.880237 6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.322521 4.885969 8.339860 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.165474 4.722878 8.719786 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.354894 0.145353 8.341383 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.726452 4.209593 8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.241568 2.687667 5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.703566 0.386808 8.960653 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.765107 -1.009688 5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.397634 1.392603 9.317312 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.339607 2.827740 9.184184 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.593849 3.349220 7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.600382 1.508206 8.185563 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.199280 -0.637174 6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.092155 1.263009 5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.352395 -2.848026 8.860735 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.236633 3.842599 2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.591027 -3.797662 2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.073370 5.183033 9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.831991 6.396648 9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.630360 4.288729 9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.096935 -1.596696 8.356857 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.863062 3.218967 3.083473 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.888465 -1.357463 8.922441 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.492944 3.897331 3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.432957 -3.027089 3.518027 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.680659 -1.150117 9.040343 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.907985 -1.946686 7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.956246 5.450007 7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.817300 4.529718 10.282389 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.137048 4.784860 9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.262422 -2.255167 2.885267 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S 19.600566 -7.716360 3.301918 - znuc, mass 16.000000 31.972070 - - Atom A02C 17.745230 -4.989310 2.896083 - znuc, mass 6.000000 12.000000 - - Atom A03C 18.709526 -2.485140 2.824356 - znuc, mass 6.000000 12.000000 - - Atom A04S 21.971908 -1.748424 3.191237 - znuc, mass 16.000000 31.972070 - - Atom A05C 22.804432 -4.099835 5.436972 - znuc, mass 6.000000 12.000000 - - Atom A06C 21.833045 -6.495312 5.494719 - znuc, mass 6.000000 12.000000 - - Atom A07C 22.584708 -8.244501 7.379303 - znuc, mass 6.000000 12.000000 - - Atom A08N 23.202461 -9.729684 8.898155 - znuc, mass 7.000000 14.003070 - - Atom A09C 24.650086 -3.342811 7.218436 - znuc, mass 6.000000 12.000000 - - Atom A10N 26.255174 -2.732287 8.609875 - znuc, mass 7.000000 14.003070 - - Atom A11N 17.083570 -0.638496 2.428602 - znuc, mass 7.000000 14.003070 - - Atom A12S 14.204569 -1.831572 2.008788 - znuc, mass 16.000000 31.972070 - - Atom A13C 15.151375 -4.954441 2.507663 - znuc, mass 6.000000 12.000000 - - Atom A14C 13.468955 -7.009021 2.520953 - znuc, mass 6.000000 12.000000 - - Atom A15N 12.061361 -8.711719 2.580763 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 19.600566 -7.716360 3.301918 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole -0.081100 0.120946 0.015291 -0.151351 -0.112179 0.258142 0.096888 -0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 17.745230 -4.989310 2.896083 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 -0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole 0.080562 -0.064792 0.069734 0.081135 -0.040643 -0.191017 -0.029091 0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C 18.709526 -2.485140 2.824356 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole -0.154202 0.066939 0.010607 -0.076422 -0.037680 0.126335 0.027074 0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 21.971908 -1.748424 3.191237 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 -0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole 0.376726 -0.162146 0.007751 0.064505 0.144810 -0.217808 -0.152561 -0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 22.804432 -4.099835 5.436972 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 -0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole 0.056685 0.087927 0.028493 -0.015828 -0.161274 -0.009131 0.132781 -0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C 21.833045 -6.495312 5.494719 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 -0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole 0.001075 -0.050214 0.014991 -0.047446 0.160108 -0.001747 -0.175099 0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 22.584708 -8.244501 7.379303 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 -0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole -0.066905 0.052623 -0.037692 0.033015 -0.046038 0.056469 0.083730 0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 23.202461 -9.729684 8.898155 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole 0.024985 -0.019560 0.010956 -0.010338 0.013703 -0.014533 -0.024660 -0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 24.650086 -3.342811 7.218436 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole 0.000862 -0.071606 -0.028175 0.027284 0.078173 -0.054551 -0.049997 0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 26.255174 -2.732287 8.609875 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 -0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole 0.001131 0.023490 0.018307 -0.014058 -0.034435 0.020126 0.016128 -0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 17.083570 -0.638496 2.428602 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 -0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole 0.049872 -0.009996 -0.025010 -0.027426 0.025766 -0.018699 -0.000756 -0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 14.204569 -1.831572 2.008788 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 -0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole -0.079313 0.431186 0.101331 -0.400784 -0.037962 -0.079017 -0.063368 0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 15.151375 -4.954441 2.507663 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 -0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole -0.066522 -0.033296 -0.033077 0.141141 0.015825 0.201472 0.017252 -0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 13.468955 -7.009021 2.520953 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 -0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole 0.082638 0.017348 -0.002354 -0.067724 0.011182 -0.121329 -0.008828 0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 12.061361 -8.711719 2.580763 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole -0.020681 -0.004365 0.003281 0.025182 -0.001816 0.038396 -0.001465 -0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 18.672898 -6.352835 3.099001 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 -0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole -0.135031 -0.064489 -0.081833 -0.097858 0.020810 0.250721 0.061022 -0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 18.227378 -3.737225 2.860220 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 -0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole -0.006937 0.415001 -0.020564 -0.384074 0.195901 -0.173547 -0.175337 0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 20.340717 -2.116782 3.007797 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole 0.362347 0.032096 0.067519 0.068455 0.111862 -0.234599 -0.179381 -0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 22.388170 -2.924129 4.314105 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole 0.128236 -0.066192 0.098878 -0.110011 0.100435 -0.054183 -0.199314 -0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 20.716806 -7.105836 4.398319 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 -0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole 0.150222 0.184993 -0.116290 0.324246 -0.434434 0.009658 0.550724 -0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 22.318739 -5.297573 5.465846 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole -0.190699 -0.292172 -0.613901 0.301575 0.166371 0.195836 0.447530 -0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 22.208877 -7.369906 6.437011 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole -0.090233 0.197003 0.239935 -0.184502 -0.227647 0.047722 -0.012288 0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 22.893585 -8.987092 8.138729 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 -0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole 0.091256 -0.060414 0.057038 -0.055047 0.054877 -0.044246 -0.111914 -0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 23.727259 -3.721323 6.327704 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole 0.091909 0.188995 0.277331 -0.069309 0.049758 -0.131139 -0.327089 0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 25.452630 -3.037549 7.914156 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole 0.040090 0.095467 0.079919 -0.058683 -0.126158 0.051889 0.046239 -0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 17.896548 -1.561818 2.626479 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 -0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole 0.344269 0.046395 -0.191856 0.007750 0.171132 -0.125564 0.020724 -0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 15.644070 -1.235034 2.218695 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 -0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole 0.052482 0.017861 0.101437 0.090246 -0.034757 -0.166574 -0.066680 0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 16.448302 -4.971875 2.701873 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole -0.195067 -0.254353 -0.246051 -0.014826 -0.033884 0.213914 0.279935 -0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 14.677972 -3.393006 2.258226 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole 0.174029 0.208769 0.072703 -0.067761 0.017390 -0.228215 -0.090093 0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 14.310165 -5.981731 2.514308 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole 0.138702 0.038897 0.021776 -0.027862 0.007098 -0.125103 -0.028874 -0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 12.765158 -7.860370 2.550858 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 -0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole -0.084793 0.000751 0.009942 0.105319 -0.003154 0.171502 -0.006789 -0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 18.317257 -3.786974 2.886817 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 25.821907 -3.441768 7.730563 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.046697 -8.150638 2.134565 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 23.453906 -8.965498 7.987693 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.787384 -5.505998 5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.659016 -1.500266 3.117975 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.816063 -1.663357 2.738049 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.626643 -6.240882 3.116452 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.255084 -2.176641 3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.739969 -3.698568 6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.277971 -5.999427 2.497182 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.216429 -7.395923 6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.583903 -4.993632 2.140523 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.641930 -3.558495 2.273651 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.387688 -3.037015 4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.381154 -4.878029 3.272272 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.782257 -7.023409 4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.889381 -5.123226 5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.629141 -9.234261 2.597099 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.744904 -2.543636 9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.390509 -10.183897 9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.908167 -1.203202 2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.149546 0.010413 2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.351176 -2.097506 2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.884602 -7.982931 3.100978 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.118475 -3.167268 8.374362 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.093072 -7.743698 2.535393 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.488592 -2.488904 7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.548580 -9.413324 7.939807 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.300878 -7.536352 2.417492 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.073552 -8.332921 3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.025291 -0.936228 3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.164236 -1.856517 1.175445 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.844488 -1.601375 2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.719115 -8.641402 8.572568 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 34.981527 1.330125 -8.155916 - znuc, mass 16.000000 31.972070 - - Atom A02C 33.126190 -1.396925 -8.561752 - znuc, mass 6.000000 12.000000 - - Atom A03C 34.090487 -3.901095 -8.633478 - znuc, mass 6.000000 12.000000 - - Atom A04S 37.352869 -4.637811 -8.266597 - znuc, mass 16.000000 31.972070 - - Atom A05C 38.185393 -2.286400 -6.020862 - znuc, mass 6.000000 12.000000 - - Atom A06C 37.214006 0.109077 -5.963116 - znuc, mass 6.000000 12.000000 - - Atom A07C 37.965669 1.858266 -4.078532 - znuc, mass 6.000000 12.000000 - - Atom A08N 38.583422 3.343449 -2.559680 - znuc, mass 7.000000 14.003070 - - Atom A09C 40.031047 -3.043424 -4.239399 - znuc, mass 6.000000 12.000000 - - Atom A10N 41.636135 -3.653948 -2.847959 - znuc, mass 7.000000 14.003070 - - Atom A11N 32.464531 -5.747739 -9.029232 - znuc, mass 7.000000 14.003070 - - Atom A12S 29.585530 -4.554663 -9.449046 - znuc, mass 16.000000 31.972070 - - Atom A13C 30.532336 -1.431794 -8.950172 - znuc, mass 6.000000 12.000000 - - Atom A14C 28.849916 0.622786 -8.936881 - znuc, mass 6.000000 12.000000 - - Atom A15N 27.442322 2.325484 -8.877072 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 34.981527 1.330125 -8.155916 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 -1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole -0.081100 -0.120946 0.015291 0.151351 -0.112179 0.258142 0.096888 -0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 33.126190 -1.396925 -8.561752 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole 0.080562 0.064792 0.069734 -0.081135 -0.040643 -0.191017 -0.029091 0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 34.090487 -3.901095 -8.633478 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 -0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole -0.154202 -0.066939 0.010607 0.076422 -0.037680 0.126335 0.027074 0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 37.352869 -4.637811 -8.266597 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole 0.376726 0.162146 0.007751 -0.064505 0.144810 -0.217808 -0.152561 -0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 38.185393 -2.286400 -6.020862 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole 0.056685 -0.087927 0.028493 0.015828 -0.161274 -0.009131 0.132781 -0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 37.214006 0.109077 -5.963116 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole 0.001075 0.050214 0.014991 0.047446 0.160108 -0.001747 -0.175099 0.000672 -0.097660 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 37.965669 1.858266 -4.078532 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole -0.066905 -0.052623 -0.037692 -0.033015 -0.046038 0.056469 0.083730 0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 38.583422 3.343449 -2.559680 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 -0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole 0.024985 0.019560 0.010956 0.010338 0.013703 -0.014533 -0.024660 -0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 40.031047 -3.043424 -4.239399 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 -0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole 0.000862 0.071606 -0.028175 -0.027284 0.078173 -0.054551 -0.049997 0.053688 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 41.636135 -3.653948 -2.847959 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole 0.001131 -0.023490 0.018307 0.014058 -0.034435 0.020126 0.016128 -0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 32.464531 -5.747739 -9.029232 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole 0.049872 0.009996 -0.025010 0.027426 0.025766 -0.018699 -0.000756 -0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 29.585530 -4.554663 -9.449046 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole -0.079313 -0.431186 0.101331 0.400784 -0.037962 -0.079017 -0.063368 0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 30.532336 -1.431794 -8.950172 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole -0.066522 0.033296 -0.033077 -0.141141 0.015825 0.201472 0.017252 -0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 28.849916 0.622786 -8.936881 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole 0.082638 -0.017348 -0.002354 0.067724 0.011182 -0.121329 -0.008828 0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 27.442322 2.325484 -8.877072 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 -0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole -0.020681 0.004365 0.003281 -0.025182 -0.001816 0.038396 -0.001465 -0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 34.053859 -0.033400 -8.358834 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole -0.135031 0.064489 -0.081833 0.097858 0.020810 0.250721 0.061022 -0.115691 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 33.608339 -2.649010 -8.597615 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole -0.006937 -0.415001 -0.020564 0.384074 0.195901 -0.173547 -0.175337 0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 35.721678 -4.269453 -8.450038 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 -0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole 0.362347 -0.032096 0.067519 -0.068455 0.111862 -0.234599 -0.179381 -0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 37.769131 -3.462105 -7.143730 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 -0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole 0.128236 0.066192 0.098878 0.110011 0.100435 -0.054183 -0.199314 -0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 36.097767 0.719601 -7.059516 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole 0.150222 -0.184993 -0.116290 -0.324246 -0.434434 0.009658 0.550724 -0.159880 0.509238 0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 37.699700 -1.088662 -5.991989 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 -0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole -0.190699 0.292172 -0.613901 -0.301575 0.166371 0.195836 0.447530 -0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 37.589838 0.983671 -5.020824 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 -0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole -0.090233 -0.197003 0.239935 0.184502 -0.227647 0.047722 -0.012288 0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 38.274546 2.600857 -3.319106 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole 0.091256 0.060414 0.057038 0.055047 0.054877 -0.044246 -0.111914 -0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 39.108220 -2.664912 -5.130130 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 -0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole 0.091909 -0.188995 0.277331 0.069309 0.049758 -0.131139 -0.327089 0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 40.833591 -3.348686 -3.543679 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 -0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole 0.040090 -0.095467 0.079919 0.058683 -0.126158 0.051889 0.046239 -0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 33.277509 -4.824417 -8.831355 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole 0.344269 -0.046395 -0.191856 -0.007750 0.171132 -0.125564 0.020724 -0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 31.025031 -5.151201 -9.239139 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole 0.052482 -0.017861 0.101437 -0.090246 -0.034757 -0.166574 -0.066680 0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 31.829263 -1.414360 -8.755962 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 -0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole -0.195067 0.254353 -0.246051 0.014826 -0.033884 0.213914 0.279935 -0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 30.058933 -2.993229 -9.199609 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 -0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole 0.174029 -0.208769 0.072703 0.067761 0.017390 -0.228215 -0.090093 0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 29.691126 -0.404504 -8.943527 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 -0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole 0.138702 -0.038897 0.021776 0.027862 0.007098 -0.125103 -0.028874 -0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 28.146119 1.474135 -8.906976 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole -0.084793 -0.000751 0.009942 -0.105319 -0.003154 0.171502 -0.006789 -0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 33.225449 -4.784860 -9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444129 6.305470 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 40.869553 -3.897331 -3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821479 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.427576 1.764335 -9.323370 - polarizability tensor 5.676900 -5.144008 -0.727143 -3.339388 4.987141 -0.427749 -0.708036 -0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 37.929540 3.027089 -3.518027 - polarizability tensor 2.014660 1.411523 2.754674 0.096191 2.864916 1.368380 1.742511 2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 39.120930 -2.687667 -5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.658932 -0.386808 -8.960653 - polarizability tensor 2.247827 -1.783499 0.065362 -1.149026 2.379898 0.043699 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.289127 -5.183033 -9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.007603 -0.145353 -8.341383 - polarizability tensor 5.018070 4.875224 1.088491 1.811907 4.579783 0.228245 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 35.636045 -4.209593 -8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.597390 1.009688 -5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.698218 -2.599261 -8.571017 - polarizability tensor 3.009104 -0.265453 0.164854 -0.392052 2.422903 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.270342 -1.263009 -5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522052 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.762115 -1.508206 -8.185563 - polarizability tensor 13.654114 -2.638427 1.355101 -2.419218 4.125882 0.076557 2.653090 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.022891 -2.827740 -9.184184 - polarizability tensor 2.960546 0.866100 0.523975 1.061801 5.117295 0.710667 0.733477 0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 36.163218 0.637174 -6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.964864 -1.392603 -9.317312 - polarizability tensor 12.949895 -2.646494 1.785361 -2.381880 4.179640 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.768649 -3.349220 -7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.168344 -0.880237 -6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460098 13.263287 0.923067 0.789240 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.010102 2.848026 -8.860735 - polarizability tensor 2.586919 -0.528104 -0.018359 -0.362648 2.294263 -0.043707 0.109841 -0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 42.125865 -3.842599 -2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.771470 3.797662 -2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.545198 -4.529717 -10.282389 - polarizability tensor 8.609790 3.161438 4.330874 3.390209 5.869742 2.969759 2.433190 1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.406252 -5.450007 -7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.530507 -6.396648 -9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.681815 1.150095 -9.040202 - polarizability tensor 3.548722 -1.577098 0.269187 -2.005619 4.318440 0.319352 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 41.202868 -2.944467 -3.727272 - polarizability tensor 5.713597 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.454513 1.946686 -7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225663 5.733018 0.256666 1.271657 0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 40.499436 -3.218967 -3.083473 - polarizability tensor 6.707221 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.100077 2.255166 -2.885267 - polarizability tensor 1.169671 1.724727 0.923947 2.191905 7.141823 4.969365 0.687892 2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.265668 1.596786 -8.356897 - polarizability tensor 5.399126 -5.564498 0.213556 -4.017191 5.082747 0.297192 1.393777 -0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 35.474033 1.357463 -8.922442 - polarizability tensor 10.702598 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.732137 -4.288728 -9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.197023 -4.722878 -8.719786 - polarizability tensor 9.556647 3.699450 -1.931270 3.986422 6.261107 -1.285638 0.992071 0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.039977 -4.885969 -8.339860 - polarizability tensor 4.541349 2.067478 1.036870 1.580946 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.834866 2.579264 -3.470143 - polarizability tensor 2.204025 0.653491 0.327503 1.701255 5.540977 4.544585 0.766864 3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 25.761931 7.716360 -3.301918 - znuc, mass 16.000000 31.972070 - - Atom A02C 27.617268 4.989310 -2.896083 - znuc, mass 6.000000 12.000000 - - Atom A03C 26.652971 2.485140 -2.824356 - znuc, mass 6.000000 12.000000 - - Atom A04S 23.390590 1.748424 -3.191237 - znuc, mass 16.000000 31.972070 - - Atom A05C 22.558065 4.099835 -5.436972 - znuc, mass 6.000000 12.000000 - - Atom A06C 23.529453 6.495312 -5.494719 - znuc, mass 6.000000 12.000000 - - Atom A07C 22.777789 8.244501 -7.379303 - znuc, mass 6.000000 12.000000 - - Atom A08N 22.160036 9.729684 -8.898155 - znuc, mass 7.000000 14.003070 - - Atom A09C 20.712412 3.342811 -7.218436 - znuc, mass 6.000000 12.000000 - - Atom A10N 19.107324 2.732287 -8.609875 - znuc, mass 7.000000 14.003070 - - Atom A11N 28.278927 0.638496 -2.428602 - znuc, mass 7.000000 14.003070 - - Atom A12S 31.157929 1.831572 -2.008788 - znuc, mass 16.000000 31.972070 - - Atom A13C 30.211123 4.954441 -2.507663 - znuc, mass 6.000000 12.000000 - - Atom A14C 31.893542 7.009021 -2.520953 - znuc, mass 6.000000 12.000000 - - Atom A15N 33.301137 8.711719 -2.580763 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 25.761931 7.716360 -3.301918 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 -1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole 0.081100 -0.120946 -0.015291 0.151351 0.112179 -0.258142 -0.096888 0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 27.617268 4.989310 -2.896083 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole -0.080562 0.064792 -0.069734 -0.081135 0.040643 0.191017 0.029091 -0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 26.652971 2.485140 -2.824356 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 -0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole 0.154202 -0.066939 -0.010607 0.076422 0.037680 -0.126335 -0.027074 -0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 23.390590 1.748424 -3.191237 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole -0.376726 0.162146 -0.007751 -0.064505 -0.144810 0.217808 0.152561 0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 22.558065 4.099835 -5.436972 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole -0.056685 -0.087927 -0.028493 0.015828 0.161274 0.009131 -0.132781 0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 23.529453 6.495312 -5.494719 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole -0.001075 0.050214 -0.014991 0.047446 -0.160108 0.001747 0.175099 -0.000672 -0.097660 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 22.777789 8.244501 -7.379303 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole 0.066905 -0.052623 0.037692 -0.033015 0.046038 -0.056469 -0.083730 -0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 22.160036 9.729684 -8.898155 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 -0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole -0.024985 0.019560 -0.010956 0.010338 -0.013703 0.014533 0.024660 0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 20.712412 3.342811 -7.218436 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 -0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole -0.000862 0.071606 0.028175 -0.027284 -0.078173 0.054551 0.049997 -0.053688 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 19.107324 2.732287 -8.609875 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole -0.001131 -0.023490 -0.018307 0.014058 0.034435 -0.020126 -0.016128 0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 28.278927 0.638496 -2.428602 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole -0.049872 0.009996 0.025010 0.027426 -0.025766 0.018699 0.000756 0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 31.157929 1.831572 -2.008788 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole 0.079313 -0.431186 -0.101331 0.400784 0.037962 0.079017 0.063368 -0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 30.211123 4.954441 -2.507663 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole 0.066522 0.033296 0.033077 -0.141141 -0.015825 -0.201472 -0.017252 0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 31.893542 7.009021 -2.520953 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole -0.082638 -0.017348 0.002354 0.067724 -0.011182 0.121329 0.008828 -0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 33.301137 8.711719 -2.580763 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 -0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole 0.020681 0.004365 -0.003281 -0.025182 0.001816 -0.038396 0.001465 0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 26.689600 6.352835 -3.099001 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole 0.135031 0.064489 0.081833 0.097858 -0.020810 -0.250721 -0.061022 0.115691 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 27.135120 3.737225 -2.860220 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole 0.006937 -0.415001 0.020564 0.384074 -0.195901 0.173547 0.175337 -0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 25.021781 2.116782 -3.007797 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 -0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole -0.362347 -0.032096 -0.067519 -0.068455 -0.111862 0.234599 0.179381 0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 22.974328 2.924129 -4.314105 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 -0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole -0.128236 0.066192 -0.098878 0.110011 -0.100435 0.054183 0.199314 0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 24.645692 7.105836 -4.398319 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole -0.150222 -0.184993 0.116290 -0.324246 0.434434 -0.009658 -0.550724 0.159880 0.509238 0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 23.043759 5.297573 -5.465846 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 -0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole 0.190699 0.292172 0.613901 -0.301575 -0.166371 -0.195836 -0.447530 0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 23.153621 7.369906 -6.437011 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 -0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole 0.090233 -0.197003 -0.239935 0.184502 0.227647 -0.047722 0.012288 -0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 22.468913 8.987092 -8.138729 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole -0.091256 0.060414 -0.057038 0.055047 -0.054877 0.044246 0.111914 0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 21.635238 3.721323 -6.327704 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 -0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole -0.091909 -0.188995 -0.277331 0.069309 -0.049758 0.131139 0.327089 -0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 19.909868 3.037549 -7.914156 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 -0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole -0.040090 -0.095467 -0.079919 0.058683 0.126158 -0.051889 -0.046239 0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 27.465949 1.561818 -2.626479 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole -0.344269 -0.046395 0.191856 -0.007750 -0.171132 0.125564 -0.020724 0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 29.718428 1.235034 -2.218695 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole -0.052482 -0.017861 -0.101437 -0.090246 0.034757 0.166574 0.066680 -0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 28.914196 4.971875 -2.701873 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 -0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole 0.195067 0.254353 0.246051 0.014826 0.033884 -0.213914 -0.279935 0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 30.684526 3.393006 -2.258226 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 -0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole -0.174029 -0.208769 -0.072703 0.067761 -0.017390 0.228215 0.090093 -0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 31.052333 5.981731 -2.514308 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 -0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole -0.138702 -0.038897 -0.021776 0.027862 -0.007098 0.125103 0.028874 0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 32.597340 7.860370 -2.550858 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole 0.084793 -0.000751 -0.009942 -0.105319 0.003154 -0.171502 0.006789 0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 27.518009 1.601375 -2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444129 6.305470 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 19.873905 2.488904 -7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821479 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.315882 8.150570 -2.134465 - polarizability tensor 5.676900 5.144008 -0.727143 3.339388 4.987141 0.427749 -0.708036 0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 22.813919 9.413324 -7.939808 - polarizability tensor 2.014660 -1.411523 2.754674 -0.096191 2.864916 -1.368380 1.742511 -2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.622529 3.698568 -6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.084527 5.999427 -2.497182 - polarizability tensor 2.247827 1.783499 0.065362 1.149026 2.379898 -0.043699 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.454331 1.203202 -2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.735855 6.240882 -3.116452 - polarizability tensor 5.018070 -4.875224 1.088491 -1.811907 4.579783 -0.228245 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.107413 2.176641 -3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.146068 7.395923 -6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.045240 3.786974 -2.886817 - polarizability tensor 3.009104 0.265453 0.164854 0.392052 2.422903 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.473116 5.123226 -5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522052 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.981343 4.878029 -3.272272 - polarizability tensor 13.654114 2.638427 1.355101 2.419218 4.125882 -0.076557 2.653090 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.720568 3.558495 -2.273651 - polarizability tensor 2.960546 -0.866100 0.523975 -1.061801 5.117295 -0.710667 0.733477 -0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.580241 7.023409 -4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.778595 4.993632 -2.140523 - polarizability tensor 12.949895 2.646494 1.785361 2.381880 4.179640 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.974810 3.037015 -4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.575114 5.505998 -5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460098 13.263287 -0.923067 0.789240 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.733356 9.234261 -2.597100 - polarizability tensor 2.586919 0.528104 -0.018359 0.362648 2.294263 0.043707 0.109841 0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.617594 2.543636 -9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.971988 10.183897 -9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.198261 1.856518 -1.175445 - polarizability tensor 8.609790 -3.161438 4.330874 -3.390209 5.869742 -2.969759 2.433190 -1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.337207 0.936228 -3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.212952 -0.010413 -2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.061644 7.536330 -2.417633 - polarizability tensor 3.548722 1.577098 0.269187 2.005619 4.318440 -0.319352 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.540590 3.441768 -7.730563 - polarizability tensor 5.713597 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.288946 8.332921 -3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225663 5.733018 -0.256666 1.271657 -0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.244023 3.167268 -8.374362 - polarizability tensor 6.707221 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.643382 8.641401 -8.572568 - polarizability tensor 1.169671 -1.724727 0.923947 -2.191905 7.141823 -4.969365 0.687892 -2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.477790 7.983021 -3.100937 - polarizability tensor 5.399126 5.564498 0.213556 4.017191 5.082747 -0.297192 1.393777 0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.269426 7.743698 -2.535393 - polarizability tensor 10.702598 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.011321 2.097506 -2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.546435 1.663357 -2.738048 - polarizability tensor 9.556647 -3.699450 -1.931270 -3.986422 6.261107 1.285638 0.992071 -0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.703482 1.500266 -3.117975 - polarizability tensor 4.541349 -2.067478 1.036870 -1.580946 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.908592 8.965499 -7.987692 - polarizability tensor 2.204025 -0.653491 0.327503 -1.701255 5.540977 -4.544585 0.766864 -3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S 2.300299 -1.330125 31.071586 - znuc, mass 16.000000 31.972070 - - Atom A02C 4.155636 1.396925 31.477421 - znuc, mass 6.000000 12.000000 - - Atom A03C 3.191339 3.901095 31.549148 - znuc, mass 6.000000 12.000000 - - Atom A04S -0.071042 4.637811 31.182267 - znuc, mass 16.000000 31.972070 - - Atom A05C -0.903567 2.286400 28.936532 - znuc, mass 6.000000 12.000000 - - Atom A06C 0.067821 -0.109077 28.878785 - znuc, mass 6.000000 12.000000 - - Atom A07C -0.683843 -1.858266 26.994201 - znuc, mass 6.000000 12.000000 - - Atom A08N -1.301596 -3.343449 25.475349 - znuc, mass 7.000000 14.003070 - - Atom A09C -2.749220 3.043424 27.155068 - znuc, mass 6.000000 12.000000 - - Atom A10N -4.354308 3.653948 25.763629 - znuc, mass 7.000000 14.003070 - - Atom A11N 4.817295 5.747739 31.944902 - znuc, mass 7.000000 14.003070 - - Atom A12S 7.696297 4.554663 32.364716 - znuc, mass 16.000000 31.972070 - - Atom A13C 6.749491 1.431794 31.865841 - znuc, mass 6.000000 12.000000 - - Atom A14C 8.431910 -0.622786 31.852551 - znuc, mass 6.000000 12.000000 - - Atom A15N 9.839505 -2.325484 31.792741 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 2.300299 -1.330125 31.071586 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole 0.081100 0.120946 -0.015291 -0.151351 0.112179 -0.258142 -0.096888 0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 4.155636 1.396925 31.477421 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 -0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole -0.080562 -0.064792 -0.069734 0.081135 0.040643 0.191017 0.029091 -0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C 3.191339 3.901095 31.549148 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole 0.154202 0.066939 -0.010607 -0.076422 0.037680 -0.126335 -0.027074 -0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -0.071042 4.637811 31.182267 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 -0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole -0.376726 -0.162146 -0.007751 0.064505 -0.144810 0.217808 0.152561 0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -0.903567 2.286400 28.936532 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 -0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole -0.056685 0.087927 -0.028493 -0.015828 0.161274 0.009131 -0.132781 0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C 0.067821 -0.109077 28.878785 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 -0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole -0.001075 -0.050214 -0.014991 -0.047446 -0.160108 0.001747 0.175099 -0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -0.683843 -1.858266 26.994201 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 -0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole 0.066905 0.052623 0.037692 0.033015 0.046038 -0.056469 -0.083730 -0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -1.301596 -3.343449 25.475349 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole -0.024985 -0.019560 -0.010956 -0.010338 -0.013703 0.014533 0.024660 0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -2.749220 3.043424 27.155068 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole -0.000862 -0.071606 0.028175 0.027284 -0.078173 0.054551 0.049997 -0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -4.354308 3.653948 25.763629 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 -0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole -0.001131 0.023490 -0.018307 -0.014058 0.034435 -0.020126 -0.016128 0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 4.817295 5.747739 31.944902 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 -0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole -0.049872 -0.009996 0.025010 -0.027426 -0.025766 0.018699 0.000756 0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 7.696297 4.554663 32.364716 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 -0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole 0.079313 0.431186 -0.101331 -0.400784 0.037962 0.079017 0.063368 -0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 6.749491 1.431794 31.865841 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 -0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole 0.066522 -0.033296 0.033077 0.141141 -0.015825 -0.201472 -0.017252 0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 8.431910 -0.622786 31.852551 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 -0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole -0.082638 0.017348 0.002354 -0.067724 -0.011182 0.121329 0.008828 -0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 9.839505 -2.325484 31.792741 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole 0.020681 -0.004365 -0.003281 0.025182 0.001816 -0.038396 0.001465 0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 3.227968 0.033400 31.274503 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 -0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole 0.135031 -0.064489 0.081833 -0.097858 -0.020810 -0.250721 -0.061022 0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 3.673488 2.649010 31.513284 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 -0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole 0.006937 0.415001 0.020564 -0.384074 -0.195901 0.173547 0.175337 -0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 1.560148 4.269453 31.365707 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole -0.362347 0.032096 -0.067519 0.068455 -0.111862 0.234599 0.179381 0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -0.487304 3.462105 30.059399 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole -0.128236 -0.066192 -0.098878 -0.110011 -0.100435 0.054183 0.199314 0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 1.184060 -0.719601 29.975185 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 -0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole -0.150222 0.184993 0.116290 0.324246 0.434434 -0.009658 -0.550724 0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -0.417873 1.088662 28.907658 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole 0.190699 -0.292172 0.613901 0.301575 -0.166371 -0.195836 -0.447530 0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -0.308011 -0.983671 27.936493 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole 0.090233 0.197003 -0.239935 -0.184502 0.227647 -0.047722 0.012288 -0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -0.992719 -2.600857 26.234775 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 -0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole -0.091256 -0.060414 -0.057038 -0.055047 -0.054877 0.044246 0.111914 0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -1.826394 2.664912 28.045800 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole -0.091909 0.188995 -0.277331 -0.069309 -0.049758 0.131139 0.327089 -0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -3.551764 3.348686 26.459348 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole -0.040090 0.095467 -0.079919 -0.058683 0.126158 -0.051889 -0.046239 0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 4.004317 4.824417 31.747025 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 -0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole -0.344269 0.046395 0.191856 0.007750 -0.171132 0.125564 -0.020724 0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 6.256796 5.151201 32.154809 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 -0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole -0.052482 0.017861 -0.101437 0.090246 0.034757 0.166574 0.066680 -0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 5.452564 1.414360 31.671631 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole 0.195067 -0.254353 0.246051 -0.014826 0.033884 -0.213914 -0.279935 0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 7.222894 2.993229 32.115278 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole -0.174029 0.208769 -0.072703 -0.067761 -0.017390 0.228215 0.090093 -0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 7.590701 0.404504 31.859196 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole -0.138702 0.038897 -0.021776 -0.027862 -0.007098 0.125103 0.028874 0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 9.135708 -1.474135 31.822646 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 -0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole 0.084793 0.000751 -0.009942 0.105319 0.003154 -0.171502 0.006789 0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 3.583608 2.599261 31.486687 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -3.921042 2.944467 26.642941 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.854169 -1.764403 32.238939 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -1.553040 -2.579263 26.385811 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.886518 0.880237 29.220750 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.241850 4.885969 31.255529 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.084803 4.722878 31.635455 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.274223 0.145353 31.257052 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.645781 4.209593 31.342289 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.839103 2.687667 28.020022 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.622894 0.386808 31.876322 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.315564 -1.009688 27.916692 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.316963 1.392603 32.232981 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.258936 2.827740 32.099853 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.486822 3.349220 29.965816 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.519711 1.508206 31.101232 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.118609 -0.637174 29.886424 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.011484 1.263009 28.521541 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.271724 -2.848026 31.776405 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.844038 3.842599 25.335067 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.489644 -3.797662 25.009608 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.992699 5.183033 32.106919 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.751320 6.396648 31.993285 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.450311 4.288729 31.935679 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.016264 -1.596696 31.272526 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.217610 3.218967 25.999142 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.807794 -1.357463 31.838111 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.587727 3.897331 26.657170 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.647714 -3.027089 26.433697 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.599988 -1.150117 31.956012 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.827314 -1.946686 30.590634 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.124425 5.450007 30.716646 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.736629 4.529718 33.198059 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.056377 4.784860 32.281745 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.818249 -2.255167 25.800936 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S 11.519895 -7.716360 26.217588 - znuc, mass 16.000000 31.972070 - - Atom A02C 9.664558 -4.989310 25.811752 - znuc, mass 6.000000 12.000000 - - Atom A03C 10.628855 -2.485140 25.740026 - znuc, mass 6.000000 12.000000 - - Atom A04S 13.891237 -1.748424 26.106907 - znuc, mass 16.000000 31.972070 - - Atom A05C 14.723761 -4.099835 28.352642 - znuc, mass 6.000000 12.000000 - - Atom A06C 13.752374 -6.495312 28.410388 - znuc, mass 6.000000 12.000000 - - Atom A07C 14.504037 -8.244501 30.294972 - znuc, mass 6.000000 12.000000 - - Atom A08N 15.121790 -9.729684 31.813824 - znuc, mass 7.000000 14.003070 - - Atom A09C 16.569415 -3.342811 30.134105 - znuc, mass 6.000000 12.000000 - - Atom A10N 18.174503 -2.732287 31.525545 - znuc, mass 7.000000 14.003070 - - Atom A11N 9.002899 -0.638496 25.344272 - znuc, mass 7.000000 14.003070 - - Atom A12S 6.123898 -1.831572 24.924458 - znuc, mass 16.000000 31.972070 - - Atom A13C 7.070704 -4.954441 25.423332 - znuc, mass 6.000000 12.000000 - - Atom A14C 5.388284 -7.009021 25.436623 - znuc, mass 6.000000 12.000000 - - Atom A15N 3.980690 -8.711719 25.496432 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 11.519895 -7.716360 26.217588 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole -0.081100 0.120946 0.015291 -0.151351 -0.112179 0.258142 0.096888 -0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 9.664558 -4.989310 25.811752 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 -0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole 0.080562 -0.064792 0.069734 0.081135 -0.040643 -0.191017 -0.029091 0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C 10.628855 -2.485140 25.740026 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole -0.154202 0.066939 0.010607 -0.076422 -0.037680 0.126335 0.027074 0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 13.891237 -1.748424 26.106907 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 -0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole 0.376726 -0.162146 0.007751 0.064505 0.144810 -0.217808 -0.152561 -0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 14.723761 -4.099835 28.352642 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 -0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole 0.056685 0.087927 0.028493 -0.015828 -0.161274 -0.009131 0.132781 -0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C 13.752374 -6.495312 28.410388 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 -0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole 0.001075 -0.050214 0.014991 -0.047446 0.160108 -0.001747 -0.175099 0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 14.504037 -8.244501 30.294972 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 -0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole -0.066905 0.052623 -0.037692 0.033015 -0.046038 0.056469 0.083730 0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 15.121790 -9.729684 31.813824 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole 0.024985 -0.019560 0.010956 -0.010338 0.013703 -0.014533 -0.024660 -0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 16.569415 -3.342811 30.134105 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole 0.000862 -0.071606 -0.028175 0.027284 0.078173 -0.054551 -0.049997 0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 18.174503 -2.732287 31.525545 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 -0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole 0.001131 0.023490 0.018307 -0.014058 -0.034435 0.020126 0.016128 -0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 9.002899 -0.638496 25.344272 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 -0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole 0.049872 -0.009996 -0.025010 -0.027426 0.025766 -0.018699 -0.000756 -0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 6.123898 -1.831572 24.924458 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 -0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole -0.079313 0.431186 0.101331 -0.400784 -0.037962 -0.079017 -0.063368 0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 7.070704 -4.954441 25.423332 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 -0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole -0.066522 -0.033296 -0.033077 0.141141 0.015825 0.201472 0.017252 -0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 5.388284 -7.009021 25.436623 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 -0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole 0.082638 0.017348 -0.002354 -0.067724 0.011182 -0.121329 -0.008828 0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 3.980690 -8.711719 25.496432 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole -0.020681 -0.004365 0.003281 0.025182 -0.001816 0.038396 -0.001465 -0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 10.592227 -6.352835 26.014670 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 -0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole -0.135031 -0.064489 -0.081833 -0.097858 0.020810 0.250721 0.061022 -0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 10.146707 -3.737225 25.775889 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 -0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole -0.006937 0.415001 -0.020564 -0.384074 0.195901 -0.173547 -0.175337 0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 12.260046 -2.116782 25.923466 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole 0.362347 0.032096 0.067519 0.068455 0.111862 -0.234599 -0.179381 -0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 14.307499 -2.924129 27.229774 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole 0.128236 -0.066192 0.098878 -0.110011 0.100435 -0.054183 -0.199314 -0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 12.636135 -7.105836 27.313988 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 -0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole 0.150222 0.184993 -0.116290 0.324246 -0.434434 0.009658 0.550724 -0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 14.238068 -5.297573 28.381515 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole -0.190699 -0.292172 -0.613901 0.301575 0.166371 0.195836 0.447530 -0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 14.128206 -7.369906 29.352680 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole -0.090233 0.197003 0.239935 -0.184502 -0.227647 0.047722 -0.012288 0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 14.812914 -8.987092 31.054398 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 -0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole 0.091256 -0.060414 0.057038 -0.055047 0.054877 -0.044246 -0.111914 -0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 15.646588 -3.721323 29.243374 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole 0.091909 0.188995 0.277331 -0.069309 0.049758 -0.131139 -0.327089 0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 17.371959 -3.037549 30.829825 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole 0.040090 0.095467 0.079919 -0.058683 -0.126158 0.051889 0.046239 -0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 9.815877 -1.561818 25.542149 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 -0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole 0.344269 0.046395 -0.191856 0.007750 0.171132 -0.125564 0.020724 -0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 7.563399 -1.235034 25.134365 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 -0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole 0.052482 0.017861 0.101437 0.090246 -0.034757 -0.166574 -0.066680 0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 8.367631 -4.971875 25.617542 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole -0.195067 -0.254353 -0.246051 -0.014826 -0.033884 0.213914 0.279935 -0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 6.597301 -3.393006 25.173895 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole 0.174029 0.208769 0.072703 -0.067761 0.017390 -0.228215 -0.090093 0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 6.229494 -5.981731 25.429977 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole 0.138702 0.038897 0.021776 -0.027862 0.007098 -0.125103 -0.028874 -0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 4.684487 -7.860370 25.466528 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 -0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole -0.084793 0.000751 0.009942 0.105319 -0.003154 0.171502 -0.006789 -0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 10.236586 -3.786974 25.802487 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 17.741236 -3.441768 30.646232 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.966026 -8.150638 25.050235 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 15.373234 -8.965498 30.903362 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.706712 -5.505998 28.068423 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.578345 -1.500266 26.033644 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.735392 -1.663357 25.653718 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.545971 -6.240882 26.032121 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.174413 -2.176641 25.946884 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.659298 -3.698568 29.269151 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.197300 -5.999427 25.412851 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.135758 -7.395923 29.372481 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.503232 -4.993632 25.056192 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.561259 -3.558495 25.189320 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.307017 -3.037015 27.323358 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.300483 -4.878029 26.187941 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.701586 -7.023409 27.402749 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.808710 -5.123226 28.767632 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.548470 -9.234261 25.512769 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.664233 -2.543636 31.954106 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.309838 -10.183897 32.279566 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.827495 -1.203202 25.182254 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.068875 0.010413 25.295888 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.270505 -2.097506 25.353494 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.803931 -7.982931 26.016647 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.037804 -3.167268 31.290032 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.012401 -7.743698 25.451063 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.407921 -2.488904 30.632003 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.467909 -9.413324 30.855477 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.220207 -7.536352 25.333161 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.992881 -8.332921 26.698539 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.944620 -0.936228 26.572528 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.083565 -1.856517 24.091115 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.763817 -1.601375 25.007429 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.638444 -8.641402 31.488237 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 26.900854 1.330125 14.759753 - znuc, mass 16.000000 31.972070 - - Atom A02C 25.045519 -1.396926 14.353917 - znuc, mass 6.000000 12.000000 - - Atom A03C 26.009817 -3.901096 14.282191 - znuc, mass 6.000000 12.000000 - - Atom A04S 29.272198 -4.637810 14.649073 - znuc, mass 16.000000 31.972070 - - Atom A05C 30.104721 -2.286399 16.894808 - znuc, mass 6.000000 12.000000 - - Atom A06C 29.133333 0.109078 16.952554 - znuc, mass 6.000000 12.000000 - - Atom A07C 29.884995 1.858268 18.837138 - znuc, mass 6.000000 12.000000 - - Atom A08N 30.502747 3.343451 20.355990 - znuc, mass 7.000000 14.003070 - - Atom A09C 31.950375 -3.043422 18.676272 - znuc, mass 6.000000 12.000000 - - Atom A10N 33.555463 -3.653944 20.067712 - znuc, mass 7.000000 14.003070 - - Atom A11N 24.383862 -5.747741 13.886437 - znuc, mass 7.000000 14.003070 - - Atom A12S 21.504860 -4.554665 13.466623 - znuc, mass 16.000000 31.972070 - - Atom A13C 22.451664 -1.431796 13.965497 - znuc, mass 6.000000 12.000000 - - Atom A14C 20.769244 0.622783 13.978787 - znuc, mass 6.000000 12.000000 - - Atom A15N 19.361648 2.325480 14.038596 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 26.900854 1.330125 14.759753 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 -1.019605 0.491700 - duadrupole 0.200252 0.667129 -0.867381 0.820424 2.014536 -0.644901 - octupole -0.081100 -0.120945 0.015291 0.151350 -0.112179 0.258142 0.096888 -0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 25.045519 -1.396926 14.353917 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026088 0.009793 - octupole 0.080562 0.064792 0.069734 -0.081134 -0.040643 -0.191017 -0.029091 0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 26.009817 -3.901096 14.282191 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 -0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole -0.154202 -0.066939 0.010607 0.076422 -0.037680 0.126335 0.027074 0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 29.272198 -4.637810 14.649073 - znuc, monopole 16.000000 -15.424149 - dipole -0.645105 0.702589 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883321 - octupole 0.376726 0.162146 0.007751 -0.064504 0.144810 -0.217808 -0.152561 -0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 30.104721 -2.286399 16.894808 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 0.012964 0.126299 - duadrupole -0.086713 0.172782 -0.086070 -0.198246 0.015502 0.024956 - octupole 0.056685 -0.087927 0.028493 0.015828 -0.161274 -0.009131 0.132781 -0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 29.133333 0.109078 16.952554 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole 0.001075 0.050214 0.014991 0.047446 0.160109 -0.001747 -0.175100 0.000672 -0.097661 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 29.884995 1.858268 18.837138 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole -0.066905 -0.052623 -0.037692 -0.033015 -0.046038 0.056469 0.083730 0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 30.502747 3.343451 20.355990 - znuc, monopole 7.000000 -6.844356 - dipole -0.128196 -0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole 0.024985 0.019560 0.010956 0.010338 0.013703 -0.014533 -0.024660 -0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 31.950375 -3.043422 18.676272 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 -0.134363 0.337213 - duadrupole 0.044076 -0.065351 0.021276 0.052673 0.059479 0.009395 - octupole 0.000862 0.071606 -0.028175 -0.027284 0.078173 -0.054551 -0.049998 0.053689 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 33.555463 -3.653944 20.067712 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole 0.001131 -0.023490 0.018307 0.014058 -0.034435 0.020126 0.016128 -0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 24.383862 -5.747741 13.886437 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109388 -0.037751 - octupole 0.049872 0.009996 -0.025010 0.027426 0.025766 -0.018699 -0.000756 -0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 21.504860 -4.554665 13.466623 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 0.461479 0.227968 - duadrupole 0.657691 1.380421 -2.038112 -0.516799 0.477705 0.276530 - octupole -0.079313 -0.431186 0.101331 0.400784 -0.037962 -0.079016 -0.063368 0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 22.451664 -1.431796 13.965497 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 0.118662 -0.023762 - duadrupole 0.102512 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole -0.066522 0.033296 -0.033078 -0.141141 0.015825 0.201472 0.017252 -0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 20.769244 0.622783 13.978787 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 0.447125 0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole 0.082638 -0.017348 -0.002354 0.067724 0.011182 -0.121329 -0.008828 0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 19.361648 2.325480 14.038596 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 -0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013044 0.009826 - octupole -0.020681 0.004365 0.003281 -0.025182 -0.001816 0.038396 -0.001465 -0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 25.973186 -0.033400 14.556835 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 0.204132 -0.059744 - duadrupole -0.127967 0.303138 -0.175171 0.361286 0.022579 0.002456 - octupole -0.135031 0.064490 -0.081833 0.097857 0.020810 0.250721 0.061023 -0.115690 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 25.527668 -2.649011 14.318054 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099040 0.017364 - octupole -0.006938 -0.415001 -0.020563 0.384074 0.195901 -0.173546 -0.175337 0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 27.641008 -4.269453 14.465632 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 -0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole 0.362347 -0.032097 0.067519 -0.068455 0.111862 -0.234600 -0.179381 -0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 29.688460 -3.462104 15.771940 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 -0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121103 0.078949 0.001930 0.434804 - octupole 0.128235 0.066191 0.098878 0.110012 0.100436 -0.054183 -0.199314 -0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 28.017094 0.719602 15.856154 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 0.216246 -0.112894 - duadrupole 0.231615 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole 0.150223 -0.184993 -0.116290 -0.324246 -0.434434 0.009658 0.550724 -0.159881 0.509238 0.036069 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 29.619027 -1.088660 16.923681 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 -0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole -0.190699 0.292172 -0.613901 -0.301576 0.166371 0.195835 0.447530 -0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 29.509164 0.983673 17.894846 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 -0.079077 -0.047152 - duadrupole 0.177104 0.006089 -0.183194 -0.206575 0.019465 -0.143936 - octupole -0.090233 -0.197003 0.239935 0.184502 -0.227648 0.047722 -0.012288 0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 30.193871 2.600859 19.596564 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 0.228151 0.227536 - duadrupole -0.226596 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole 0.091256 0.060414 0.057038 0.055047 0.054877 -0.044246 -0.111914 -0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 31.027548 -2.664910 17.785540 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 -0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142766 -0.071307 0.108121 - octupole 0.091909 -0.188995 0.277331 0.069309 0.049758 -0.131139 -0.327089 0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 32.752919 -3.348683 19.371992 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 -0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole 0.040090 -0.095467 0.079919 0.058683 -0.126158 0.051889 0.046239 -0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 25.196839 -4.824418 14.084314 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 0.115721 0.003434 - duadrupole 0.270648 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole 0.344269 -0.046395 -0.191856 -0.007750 0.171132 -0.125564 0.020724 -0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 22.944361 -5.151203 13.676530 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 0.026718 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole 0.052482 -0.017862 0.101437 -0.090246 -0.034757 -0.166575 -0.066680 0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 23.748591 -1.414361 14.159707 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 -0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole -0.195067 0.254354 -0.246051 0.014825 -0.033884 0.213914 0.279935 -0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 21.978262 -2.993231 13.716060 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 -0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole 0.174029 -0.208769 0.072703 0.067761 0.017390 -0.228215 -0.090093 0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 21.610454 -0.404507 13.972142 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 -0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole 0.138702 -0.038897 0.021776 0.027863 0.007098 -0.125103 -0.028874 -0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 20.065446 1.474132 14.008692 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 0.265565 0.005667 - duadrupole 0.053653 0.238490 -0.292143 -0.457319 -0.029902 0.030180 - octupole -0.084792 -0.000751 0.009942 -0.105320 -0.003154 0.171502 -0.006789 -0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 25.144779 -4.784861 13.549594 - polarizability tensor 4.528424 1.917551 0.356759 1.444128 6.305472 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 32.788882 -3.897328 19.174170 - polarizability tensor 3.614271 -1.113333 2.917217 -0.029793 1.821479 0.641372 2.940226 -0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.346903 1.764332 13.592298 - polarizability tensor 5.676904 -5.144008 -0.727141 -3.339388 4.987137 -0.427750 -0.708035 -0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 29.848865 3.027091 19.397643 - polarizability tensor 2.014659 1.411522 2.754673 0.096191 2.864917 1.368381 1.742510 2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.040258 -2.687665 17.811318 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536299 1.326286 -0.648852 1.549497 -0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.578260 -0.386810 13.955016 - polarizability tensor 2.247828 -1.783499 0.065363 -1.149026 2.379896 0.043699 0.251241 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.208458 -5.183035 13.724420 - polarizability tensor 5.239487 -1.239561 0.807464 -0.101560 1.234380 0.089842 1.195631 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.926931 -0.145353 14.574286 - polarizability tensor 5.018067 4.875224 1.088491 1.811907 4.579786 0.228246 1.487331 1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.555375 -4.209593 14.489050 - polarizability tensor 9.182809 -1.751286 0.995508 -0.084237 1.828484 0.387734 2.027093 0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.516717 1.009690 17.914647 - polarizability tensor 1.671051 0.572015 1.296469 0.542823 2.162529 1.769890 1.031019 1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.617547 -2.599261 14.344652 - polarizability tensor 3.009105 -0.265453 0.164855 -0.392052 2.422902 0.078852 0.571863 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.189670 -1.263007 17.309798 - polarizability tensor 5.263037 -4.454329 1.663069 -4.279634 13.403258 0.812801 1.522053 0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.681444 -1.508207 14.730106 - polarizability tensor 13.654116 -2.638423 1.355104 -2.419214 4.125879 0.076557 2.653092 -0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.942220 -2.827742 13.731485 - polarizability tensor 2.960545 0.866099 0.523975 1.061800 5.117296 0.710667 0.733477 0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.082545 0.637175 15.944915 - polarizability tensor 5.617929 -1.381554 4.877276 -1.251780 2.735770 -1.290944 3.659516 -1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.884192 -1.392605 13.598357 - polarizability tensor 12.949896 -2.646490 1.785363 -2.381876 4.179637 -0.329227 2.420663 -0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.687978 -3.349219 15.865524 - polarizability tensor 3.040417 1.393146 2.596746 0.925311 4.759664 3.665080 1.764101 3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.087672 -0.880236 16.610589 - polarizability tensor 4.688607 -4.661428 1.698768 -4.460102 13.263283 0.923066 0.789241 0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.929429 2.848022 14.054933 - polarizability tensor 2.586920 -0.528103 -0.018359 -0.362647 2.294262 -0.043707 0.109841 -0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.045193 -3.842595 20.496273 - polarizability tensor 2.625149 -0.213208 0.424935 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.690795 3.797665 20.821732 - polarizability tensor 2.080856 0.280706 0.149350 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.464528 -4.529720 12.633279 - polarizability tensor 8.609786 3.161439 4.330873 3.390210 5.869745 2.969762 2.433189 1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.325582 -5.450006 15.114694 - polarizability tensor 5.800146 -0.752295 1.186095 0.172145 7.005037 0.548345 0.964192 0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.449837 -6.396649 13.838054 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321947 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.601142 1.150091 13.875466 - polarizability tensor 3.548724 -1.577098 0.269188 -2.005619 4.318439 0.319351 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.122196 -2.944464 19.188399 - polarizability tensor 5.713598 -1.433755 3.432521 -2.871854 2.858065 -3.181668 3.126669 -2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.373840 1.946686 15.240704 - polarizability tensor 6.533271 0.444461 1.547291 -1.225663 5.733017 0.256666 1.271658 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.418764 -3.218964 19.832198 - polarizability tensor 6.707222 -2.929001 4.115173 -3.681834 2.332214 -2.837643 2.110817 -1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.019403 2.255168 20.030403 - polarizability tensor 1.169669 1.724724 0.923944 2.191901 7.141826 4.969366 0.687890 2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.184995 1.596783 14.558771 - polarizability tensor 5.399130 -5.564497 0.213557 -4.017191 5.082742 0.297191 1.393778 -0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.393360 1.357463 13.993228 - polarizability tensor 10.702596 1.789313 3.005774 -0.514549 5.742470 -3.210321 2.108866 -0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.651467 -4.288727 13.895660 - polarizability tensor 8.115953 0.753025 -0.167711 1.550833 6.978558 4.365403 0.764813 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.116353 -4.722881 14.195882 - polarizability tensor 9.556643 3.699452 -1.931269 3.986424 6.261110 -1.285638 0.992072 0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.959306 -4.885970 14.575810 - polarizability tensor 4.541347 2.067477 1.036870 1.580945 6.187413 0.395977 1.497097 1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.754192 2.579266 19.445527 - polarizability tensor 2.204024 0.653489 0.327501 1.701252 5.540979 4.544585 0.766862 3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 17.681260 7.716360 19.613751 - znuc, mass 16.000000 31.972070 - - Atom A02C 19.536596 4.989309 20.019587 - znuc, mass 6.000000 12.000000 - - Atom A03C 18.572298 2.485139 20.091313 - znuc, mass 6.000000 12.000000 - - Atom A04S 15.309916 1.748425 19.724431 - znuc, mass 16.000000 31.972070 - - Atom A05C 14.477393 4.099836 17.478696 - znuc, mass 6.000000 12.000000 - - Atom A06C 15.448781 6.495313 17.420950 - znuc, mass 6.000000 12.000000 - - Atom A07C 14.697119 8.244503 15.536366 - znuc, mass 6.000000 12.000000 - - Atom A08N 14.079367 9.729686 14.017514 - znuc, mass 7.000000 14.003070 - - Atom A09C 12.631739 3.342813 15.697232 - znuc, mass 6.000000 12.000000 - - Atom A10N 11.026651 2.732291 14.305792 - znuc, mass 7.000000 14.003070 - - Atom A11N 20.198253 0.638494 20.487067 - znuc, mass 7.000000 14.003070 - - Atom A12S 23.077255 1.831570 20.906881 - znuc, mass 16.000000 31.972070 - - Atom A13C 22.130451 4.954439 20.408007 - znuc, mass 6.000000 12.000000 - - Atom A14C 23.812871 7.009018 20.394717 - znuc, mass 6.000000 12.000000 - - Atom A15N 25.220466 8.711715 20.334908 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 17.681260 7.716360 19.613751 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 -1.019605 -0.491700 - duadrupole 0.200252 0.667129 -0.867381 -0.820424 2.014536 0.644901 - octupole 0.081100 -0.120945 -0.015291 0.151350 0.112179 -0.258142 -0.096888 0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 19.536596 4.989309 20.019587 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026088 -0.009793 - octupole -0.080562 0.064792 -0.069734 -0.081134 0.040643 0.191017 0.029091 -0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 18.572298 2.485139 20.091313 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 -0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole 0.154202 -0.066939 -0.010607 0.076422 0.037680 -0.126335 -0.027074 -0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 15.309916 1.748425 19.724431 - znuc, monopole 16.000000 -15.424149 - dipole 0.645105 0.702589 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883321 - octupole -0.376726 0.162146 -0.007751 -0.064504 -0.144810 0.217808 0.152561 0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 14.477393 4.099836 17.478696 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 0.012964 -0.126299 - duadrupole -0.086713 0.172782 -0.086070 0.198246 0.015502 -0.024956 - octupole -0.056685 -0.087927 -0.028493 0.015828 0.161274 0.009131 -0.132781 0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 15.448781 6.495313 17.420950 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole -0.001075 0.050214 -0.014991 0.047446 -0.160109 0.001747 0.175100 -0.000672 -0.097661 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 14.697119 8.244503 15.536366 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole 0.066905 -0.052623 0.037692 -0.033015 0.046038 -0.056469 -0.083730 -0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 14.079367 9.729686 14.017514 - znuc, monopole 7.000000 -6.844356 - dipole 0.128196 -0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole -0.024985 0.019560 -0.010956 0.010338 -0.013703 0.014533 0.024660 0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 12.631739 3.342813 15.697232 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 -0.134363 -0.337213 - duadrupole 0.044076 -0.065351 0.021276 -0.052673 0.059479 -0.009395 - octupole -0.000862 0.071606 0.028175 -0.027284 -0.078173 0.054551 0.049998 -0.053689 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 11.026651 2.732291 14.305792 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole -0.001131 -0.023490 -0.018307 0.014058 0.034435 -0.020126 -0.016128 0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 20.198253 0.638494 20.487067 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109388 0.037751 - octupole -0.049872 0.009996 0.025010 0.027426 -0.025766 0.018699 0.000756 0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 23.077255 1.831570 20.906881 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 0.461479 -0.227968 - duadrupole 0.657691 1.380421 -2.038112 0.516799 0.477705 -0.276530 - octupole 0.079313 -0.431186 -0.101331 0.400784 0.037962 0.079016 0.063368 -0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 22.130451 4.954439 20.408007 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 0.118662 0.023762 - duadrupole 0.102512 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole 0.066522 0.033296 0.033078 -0.141141 -0.015825 -0.201472 -0.017252 0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 23.812871 7.009018 20.394717 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 0.447125 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole -0.082638 -0.017348 0.002354 0.067724 -0.011182 0.121329 0.008828 -0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 25.220466 8.711715 20.334908 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 -0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013044 -0.009826 - octupole 0.020681 0.004365 -0.003281 -0.025182 0.001816 -0.038396 0.001465 0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 18.608928 6.352835 19.816669 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 0.204132 0.059744 - duadrupole -0.127967 0.303138 -0.175171 -0.361286 0.022579 -0.002456 - octupole 0.135031 0.064490 0.081833 0.097857 -0.020810 -0.250721 -0.061023 0.115690 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 19.054447 3.737224 20.055450 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099040 -0.017364 - octupole 0.006938 -0.415001 0.020563 0.384074 -0.195901 0.173546 0.175337 -0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 16.941107 2.116782 19.907872 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 -0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole -0.362347 -0.032097 -0.067519 -0.068455 -0.111862 0.234600 0.179381 0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 14.893655 2.924131 18.601564 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 -0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121103 -0.078949 0.001930 -0.434804 - octupole -0.128235 0.066191 -0.098878 0.110012 -0.100436 0.054183 0.199314 0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 16.565021 7.105837 18.517351 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 0.216246 0.112894 - duadrupole 0.231615 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole -0.150223 -0.184993 0.116290 -0.324246 0.434434 -0.009658 -0.550724 0.159881 0.509238 0.036069 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 14.963087 5.297575 17.449823 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 -0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole 0.190699 0.292172 0.613901 -0.301576 -0.166371 -0.195835 -0.447530 0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 15.072950 7.369908 16.478658 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 -0.079077 0.047152 - duadrupole 0.177104 0.006089 -0.183194 0.206575 0.019465 0.143936 - octupole 0.090233 -0.197003 -0.239935 0.184502 0.227648 -0.047722 0.012288 -0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 14.388243 8.987094 14.776940 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 0.228151 -0.227536 - duadrupole -0.226596 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole -0.091256 0.060414 -0.057038 0.055047 -0.054877 0.044246 0.111914 0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 13.554566 3.721325 16.587964 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 -0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142766 -0.071307 -0.108121 - octupole -0.091909 -0.188995 -0.277331 0.069309 -0.049758 0.131139 0.327089 -0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 11.829195 3.037552 15.001512 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 -0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole -0.040090 -0.095467 -0.079919 0.058683 0.126158 -0.051889 -0.046239 0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 19.385275 1.561817 20.289190 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 0.115721 -0.003434 - duadrupole 0.270648 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole -0.344269 -0.046395 0.191856 -0.007750 -0.171132 0.125564 -0.020724 0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 21.637754 1.235032 20.696974 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 0.026718 0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole -0.052482 -0.017862 -0.101437 -0.090246 0.034757 0.166575 0.066680 -0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 20.833523 4.971874 20.213797 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 -0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole 0.195067 0.254354 0.246051 0.014825 0.033884 -0.213914 -0.279935 0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 22.603853 3.393004 20.657444 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 -0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole -0.174029 -0.208769 -0.072703 0.067761 -0.017390 0.228215 0.090093 -0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 22.971661 5.981728 20.401362 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 -0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole -0.138702 -0.038897 -0.021776 0.027863 -0.007098 0.125103 0.028874 0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 24.516668 7.860367 20.364812 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 0.265565 -0.005667 - duadrupole 0.053653 0.238490 -0.292143 0.457319 -0.029902 -0.030180 - octupole 0.084792 -0.000751 -0.009942 -0.105320 0.003154 -0.171502 0.006789 0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 19.437335 1.601374 20.823910 - polarizability tensor 4.528424 -1.917551 0.356759 -1.444128 6.305472 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 11.793233 2.488907 15.199334 - polarizability tensor 3.614271 1.113333 2.917217 0.029793 1.821479 -0.641372 2.940226 0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.235211 8.150567 20.781206 - polarizability tensor 5.676904 5.144008 -0.727141 3.339388 4.987137 0.427750 -0.708035 0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 14.733249 9.413326 14.975861 - polarizability tensor 2.014659 -1.411522 2.754673 -0.096191 2.864917 -1.368381 1.742510 -2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.541856 3.698570 16.562186 - polarizability tensor 2.644773 0.420648 2.214495 0.536299 1.326286 0.648852 1.549497 0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.003855 5.999425 20.418488 - polarizability tensor 2.247828 1.783499 0.065363 1.149026 2.379896 -0.043699 0.251241 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.373657 1.203200 20.649084 - polarizability tensor 5.239487 1.239561 0.807464 0.101560 1.234380 -0.089842 1.195631 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.655183 6.240882 19.799218 - polarizability tensor 5.018067 -4.875224 1.088491 -1.811907 4.579786 -0.228246 1.487331 -1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.026740 2.176642 19.884454 - polarizability tensor 9.182809 1.751286 0.995508 0.084237 1.828484 -0.387734 2.027093 -0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.065398 7.395925 16.458857 - polarizability tensor 1.671051 -0.572015 1.296469 -0.542823 2.162529 -1.769890 1.031019 -1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.964567 3.786974 20.028852 - polarizability tensor 3.009105 0.265453 0.164855 0.392052 2.422902 -0.078852 0.571863 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.392445 5.123228 17.063706 - polarizability tensor 5.263037 4.454329 1.663069 4.279634 13.403258 -0.812801 1.522053 -0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.900671 4.878028 19.643398 - polarizability tensor 13.654116 2.638423 1.355104 2.419214 4.125879 -0.076557 2.653092 0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.639895 3.558492 20.642019 - polarizability tensor 2.960545 -0.866099 0.523975 -1.061800 5.117296 -0.710667 0.733477 -0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.499570 7.023410 18.428589 - polarizability tensor 5.617929 1.381554 4.877276 1.251780 2.735770 1.290944 3.659516 1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.697922 4.993630 20.775147 - polarizability tensor 12.949896 2.646490 1.785363 2.381876 4.179637 0.329227 2.420663 0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.894137 3.037016 18.507980 - polarizability tensor 3.040417 -1.393146 2.596746 -0.925311 4.759664 -3.665080 1.764101 -3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.494442 5.505999 17.762915 - polarizability tensor 4.688607 4.661428 1.698768 4.460102 13.263283 -0.923066 0.789241 -0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.652686 9.234257 20.318571 - polarizability tensor 2.586920 0.528103 -0.018359 0.362647 2.294262 0.043707 0.109841 0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.536921 2.543640 13.877231 - polarizability tensor 2.625149 0.213208 0.424935 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.891319 10.183899 13.551772 - polarizability tensor 2.080856 -0.280706 0.149350 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.117587 1.856515 21.740225 - polarizability tensor 8.609786 -3.161439 4.330873 -3.390210 5.869745 -2.969762 2.433189 -1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.256533 0.936229 19.258810 - polarizability tensor 5.800146 0.752295 1.186095 -0.172145 7.005037 -0.548345 0.964192 -0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.132277 -0.010414 20.535450 - polarizability tensor 2.238895 0.092051 0.189597 0.321947 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.980972 7.536326 20.498038 - polarizability tensor 3.548724 1.577098 0.269188 2.005619 4.318439 -0.319351 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.459918 3.441771 15.185105 - polarizability tensor 5.713598 1.433755 3.432521 2.871854 2.858065 3.181668 3.126669 2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.208275 8.332921 19.132800 - polarizability tensor 6.533271 -0.444461 1.547291 1.225663 5.733017 -0.256666 1.271658 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.163350 3.167271 14.541306 - polarizability tensor 6.707222 2.929001 4.115173 3.681834 2.332214 2.837643 2.110817 1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.562712 8.641403 14.343101 - polarizability tensor 1.169669 -1.724724 0.923944 -2.191901 7.141826 -4.969366 0.687890 -2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.397119 7.983018 19.814733 - polarizability tensor 5.399130 5.564497 0.213557 4.017191 5.082742 -0.297191 1.393778 0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.188755 7.743698 20.380276 - polarizability tensor 10.702596 -1.789313 3.005774 0.514549 5.742470 3.210321 2.108866 0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.930648 2.097508 20.477844 - polarizability tensor 8.115953 -0.753025 -0.167711 -1.550833 6.978558 -4.365403 0.764813 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.465761 1.663354 20.177622 - polarizability tensor 9.556643 -3.699452 -1.931269 -3.986424 6.261110 1.285638 0.992072 -0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.622808 1.500265 19.797694 - polarizability tensor 4.541347 -2.067477 1.036870 -1.580945 6.187413 -0.395977 1.497097 -1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.827923 8.965501 14.927977 - polarizability tensor 2.204024 -0.653489 0.327501 -1.701252 5.540979 -4.544585 0.766862 -3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S 10.380970 11.442345 8.155916 - znuc, mass 16.000000 31.972070 - - Atom A02C 12.236307 14.169395 8.561752 - znuc, mass 6.000000 12.000000 - - Atom A03C 11.272010 16.673565 8.633478 - znuc, mass 6.000000 12.000000 - - Atom A04S 8.009629 17.410281 8.266597 - znuc, mass 16.000000 31.972070 - - Atom A05C 7.177104 15.058870 6.020862 - znuc, mass 6.000000 12.000000 - - Atom A06C 8.148492 12.663393 5.963116 - znuc, mass 6.000000 12.000000 - - Atom A07C 7.396829 10.914204 4.078532 - znuc, mass 6.000000 12.000000 - - Atom A08N 6.779075 9.429021 2.559680 - znuc, mass 7.000000 14.003070 - - Atom A09C 5.331451 15.815894 4.239399 - znuc, mass 6.000000 12.000000 - - Atom A10N 3.726363 16.426418 2.847959 - znuc, mass 7.000000 14.003070 - - Atom A11N 12.897966 18.520209 9.029232 - znuc, mass 7.000000 14.003070 - - Atom A12S 15.776968 17.327133 9.449046 - znuc, mass 16.000000 31.972070 - - Atom A13C 14.830162 14.204264 8.950172 - znuc, mass 6.000000 12.000000 - - Atom A14C 16.512581 12.149684 8.936881 - znuc, mass 6.000000 12.000000 - - Atom A15N 17.920176 10.446986 8.877072 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 10.380970 11.442345 8.155916 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole 0.081100 0.120946 -0.015291 -0.151351 0.112179 -0.258142 -0.096888 0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 12.236307 14.169395 8.561752 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 -0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole -0.080562 -0.064792 -0.069734 0.081135 0.040643 0.191017 0.029091 -0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C 11.272010 16.673565 8.633478 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole 0.154202 0.066939 -0.010607 -0.076422 0.037680 -0.126335 -0.027074 -0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 8.009629 17.410281 8.266597 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 -0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole -0.376726 -0.162146 -0.007751 0.064505 -0.144810 0.217808 0.152561 0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 7.177104 15.058870 6.020862 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 -0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole -0.056685 0.087927 -0.028493 -0.015828 0.161274 0.009131 -0.132781 0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C 8.148492 12.663393 5.963116 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 -0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole -0.001075 -0.050214 -0.014991 -0.047446 -0.160108 0.001747 0.175099 -0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 7.396829 10.914204 4.078532 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 -0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole 0.066905 0.052623 0.037692 0.033015 0.046038 -0.056469 -0.083730 -0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 6.779075 9.429021 2.559680 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole -0.024985 -0.019560 -0.010956 -0.010338 -0.013703 0.014533 0.024660 0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 5.331451 15.815894 4.239399 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole -0.000862 -0.071606 0.028175 0.027284 -0.078173 0.054551 0.049997 -0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 3.726363 16.426418 2.847959 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 -0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole -0.001131 0.023490 -0.018307 -0.014058 0.034435 -0.020126 -0.016128 0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 12.897966 18.520209 9.029232 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 -0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole -0.049872 -0.009996 0.025010 -0.027426 -0.025766 0.018699 0.000756 0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 15.776968 17.327133 9.449046 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 -0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole 0.079313 0.431186 -0.101331 -0.400784 0.037962 0.079017 0.063368 -0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 14.830162 14.204264 8.950172 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 -0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole 0.066522 -0.033296 0.033077 0.141141 -0.015825 -0.201472 -0.017252 0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 16.512581 12.149684 8.936881 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 -0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole -0.082638 0.017348 0.002354 -0.067724 -0.011182 0.121329 0.008828 -0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 17.920176 10.446986 8.877072 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole 0.020681 -0.004365 -0.003281 0.025182 0.001816 -0.038396 0.001465 0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 11.308639 12.805870 8.358834 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 -0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole 0.135031 -0.064489 0.081833 -0.097858 -0.020810 -0.250721 -0.061022 0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 11.754159 15.421480 8.597615 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 -0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole 0.006937 0.415001 0.020564 -0.384074 -0.195901 0.173547 0.175337 -0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 9.640820 17.041923 8.450038 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole -0.362347 0.032096 -0.067519 0.068455 -0.111862 0.234599 0.179381 0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 7.593367 16.234575 7.143730 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole -0.128236 -0.066192 -0.098878 -0.110011 -0.100435 0.054183 0.199314 0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 9.264731 12.052869 7.059516 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 -0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole -0.150222 0.184993 0.116290 0.324246 0.434434 -0.009658 -0.550724 0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 7.662798 13.861131 5.991989 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole 0.190699 -0.292172 0.613901 0.301575 -0.166371 -0.195836 -0.447530 0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 7.772660 11.788798 5.020824 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole 0.090233 0.197003 -0.239935 -0.184502 0.227647 -0.047722 0.012288 -0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 7.087952 10.171613 3.319106 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 -0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole -0.091256 -0.060414 -0.057038 -0.055047 -0.054877 0.044246 0.111914 0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 6.254278 15.437382 5.130130 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole -0.091909 0.188995 -0.277331 -0.069309 -0.049758 0.131139 0.327089 -0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 4.528907 16.121156 3.543679 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole -0.040090 0.095467 -0.079919 -0.058683 0.126158 -0.051889 -0.046239 0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 12.084988 17.596887 8.831355 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 -0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole -0.344269 0.046395 0.191856 0.007750 -0.171132 0.125564 -0.020724 0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 14.337467 17.923671 9.239139 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 -0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole -0.052482 0.017861 -0.101437 0.090246 0.034757 0.166574 0.066680 -0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 13.533235 14.186830 8.755962 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole 0.195067 -0.254353 0.246051 -0.014826 0.033884 -0.213914 -0.279935 0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 15.303565 15.765698 9.199609 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole -0.174029 0.208769 -0.072703 -0.067761 -0.017390 0.228215 0.090093 -0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 15.671372 13.176974 8.943527 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole -0.138702 0.038897 -0.021776 -0.027862 -0.007098 0.125103 0.028874 0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 17.216379 11.298335 8.906976 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 -0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole 0.084793 0.000751 -0.009942 0.105319 0.003154 -0.171502 0.006789 0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 11.664279 15.371730 8.571017 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 4.159630 15.716937 3.727272 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.934840 11.008067 9.323269 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 6.527631 10.193207 3.470142 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.194153 13.652707 6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.322521 17.658439 8.339860 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.165474 17.495348 8.719786 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.354894 12.917822 8.341383 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.726452 16.982063 8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.241568 15.460137 5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.703566 13.159277 8.960653 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.765107 11.762781 5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.397634 14.165073 9.317312 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.339607 15.600210 9.184184 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.593849 16.121690 7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.600382 14.280676 8.185563 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.199280 12.135296 6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.092155 14.035478 5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.352395 9.924444 8.860735 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.236633 16.615069 2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.591027 8.974808 2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.073370 17.955503 9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.831991 19.169118 9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.630360 17.061198 9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.096935 11.175774 8.356857 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.863062 15.991437 3.083473 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.888465 11.415007 8.922441 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.492944 16.669800 3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.432957 9.745380 3.518027 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.680659 11.622353 9.040343 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.907985 10.825784 7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.956246 18.222477 7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.817300 17.302188 10.282389 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.137048 17.557330 9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.262422 10.517303 2.885267 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S 19.600566 5.056110 3.301918 - znuc, mass 16.000000 31.972070 - - Atom A02C 17.745230 7.783160 2.896083 - znuc, mass 6.000000 12.000000 - - Atom A03C 18.709526 10.287330 2.824356 - znuc, mass 6.000000 12.000000 - - Atom A04S 21.971908 11.024046 3.191237 - znuc, mass 16.000000 31.972070 - - Atom A05C 22.804432 8.672635 5.436972 - znuc, mass 6.000000 12.000000 - - Atom A06C 21.833045 6.277158 5.494719 - znuc, mass 6.000000 12.000000 - - Atom A07C 22.584708 4.527969 7.379303 - znuc, mass 6.000000 12.000000 - - Atom A08N 23.202461 3.042786 8.898155 - znuc, mass 7.000000 14.003070 - - Atom A09C 24.650086 9.429659 7.218436 - znuc, mass 6.000000 12.000000 - - Atom A10N 26.255174 10.040183 8.609875 - znuc, mass 7.000000 14.003070 - - Atom A11N 17.083570 12.133974 2.428602 - znuc, mass 7.000000 14.003070 - - Atom A12S 14.204569 10.940898 2.008788 - znuc, mass 16.000000 31.972070 - - Atom A13C 15.151375 7.818029 2.507663 - znuc, mass 6.000000 12.000000 - - Atom A14C 13.468955 5.763449 2.520953 - znuc, mass 6.000000 12.000000 - - Atom A15N 12.061361 4.060751 2.580763 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 19.600566 5.056110 3.301918 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole -0.081100 0.120946 0.015291 -0.151351 -0.112179 0.258142 0.096888 -0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 17.745230 7.783160 2.896083 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 -0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole 0.080562 -0.064792 0.069734 0.081135 -0.040643 -0.191017 -0.029091 0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C 18.709526 10.287330 2.824356 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole -0.154202 0.066939 0.010607 -0.076422 -0.037680 0.126335 0.027074 0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 21.971908 11.024046 3.191237 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 -0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole 0.376726 -0.162146 0.007751 0.064505 0.144810 -0.217808 -0.152561 -0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 22.804432 8.672635 5.436972 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 -0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole 0.056685 0.087927 0.028493 -0.015828 -0.161274 -0.009131 0.132781 -0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C 21.833045 6.277158 5.494719 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 -0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole 0.001075 -0.050214 0.014991 -0.047446 0.160108 -0.001747 -0.175099 0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 22.584708 4.527969 7.379303 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 -0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole -0.066905 0.052623 -0.037692 0.033015 -0.046038 0.056469 0.083730 0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 23.202461 3.042786 8.898155 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole 0.024985 -0.019560 0.010956 -0.010338 0.013703 -0.014533 -0.024660 -0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 24.650086 9.429659 7.218436 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole 0.000862 -0.071606 -0.028175 0.027284 0.078173 -0.054551 -0.049997 0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 26.255174 10.040183 8.609875 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 -0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole 0.001131 0.023490 0.018307 -0.014058 -0.034435 0.020126 0.016128 -0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 17.083570 12.133974 2.428602 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 -0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole 0.049872 -0.009996 -0.025010 -0.027426 0.025766 -0.018699 -0.000756 -0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 14.204569 10.940898 2.008788 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 -0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole -0.079313 0.431186 0.101331 -0.400784 -0.037962 -0.079017 -0.063368 0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 15.151375 7.818029 2.507663 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 -0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole -0.066522 -0.033296 -0.033077 0.141141 0.015825 0.201472 0.017252 -0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 13.468955 5.763449 2.520953 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 -0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole 0.082638 0.017348 -0.002354 -0.067724 0.011182 -0.121329 -0.008828 0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 12.061361 4.060751 2.580763 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole -0.020681 -0.004365 0.003281 0.025182 -0.001816 0.038396 -0.001465 -0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 18.672898 6.419635 3.099001 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 -0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole -0.135031 -0.064489 -0.081833 -0.097858 0.020810 0.250721 0.061022 -0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 18.227378 9.035245 2.860220 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 -0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole -0.006937 0.415001 -0.020564 -0.384074 0.195901 -0.173547 -0.175337 0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 20.340717 10.655688 3.007797 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole 0.362347 0.032096 0.067519 0.068455 0.111862 -0.234599 -0.179381 -0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 22.388170 9.848340 4.314105 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole 0.128236 -0.066192 0.098878 -0.110011 0.100435 -0.054183 -0.199314 -0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 20.716806 5.666634 4.398319 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 -0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole 0.150222 0.184993 -0.116290 0.324246 -0.434434 0.009658 0.550724 -0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 22.318739 7.474897 5.465846 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole -0.190699 -0.292172 -0.613901 0.301575 0.166371 0.195836 0.447530 -0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 22.208877 5.402564 6.437011 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole -0.090233 0.197003 0.239935 -0.184502 -0.227647 0.047722 -0.012288 0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 22.893585 3.785378 8.138729 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 -0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole 0.091256 -0.060414 0.057038 -0.055047 0.054877 -0.044246 -0.111914 -0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 23.727259 9.051147 6.327704 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole 0.091909 0.188995 0.277331 -0.069309 0.049758 -0.131139 -0.327089 0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 25.452630 9.734921 7.914156 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole 0.040090 0.095467 0.079919 -0.058683 -0.126158 0.051889 0.046239 -0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 17.896548 11.210652 2.626479 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 -0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole 0.344269 0.046395 -0.191856 0.007750 0.171132 -0.125564 0.020724 -0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 15.644070 11.537436 2.218695 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 -0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole 0.052482 0.017861 0.101437 0.090246 -0.034757 -0.166574 -0.066680 0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 16.448302 7.800595 2.701873 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole -0.195067 -0.254353 -0.246051 -0.014826 -0.033884 0.213914 0.279935 -0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 14.677972 9.379463 2.258226 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole 0.174029 0.208769 0.072703 -0.067761 0.017390 -0.228215 -0.090093 0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 14.310165 6.790739 2.514308 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole 0.138702 0.038897 0.021776 -0.027862 0.007098 -0.125103 -0.028874 -0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 12.765158 4.912100 2.550858 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 -0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole -0.084793 0.000751 0.009942 0.105319 -0.003154 0.171502 -0.006789 -0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 18.317257 8.985495 2.886817 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 25.821907 9.330702 7.730563 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.046697 4.621832 2.134565 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 23.453906 3.806972 7.987693 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.787384 7.266472 5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.659016 11.272204 3.117975 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.816063 11.109113 2.738049 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.626643 6.531587 3.116452 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.255084 10.595828 3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.739969 9.073902 6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.277971 6.773043 2.497182 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.216429 5.376546 6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.583903 7.778838 2.140523 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.641930 9.213975 2.273651 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.387688 9.735455 4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.381154 7.894441 3.272272 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.782257 5.749061 4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.889381 7.649243 5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.629141 3.538209 2.597099 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.744904 10.228834 9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.390509 2.588573 9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.908167 11.569268 2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.149546 12.782883 2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.351176 10.674963 2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.884602 4.789539 3.100978 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.118475 9.605202 8.374362 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.093072 5.028772 2.535393 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.488592 10.283566 7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.548580 3.359146 7.939807 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.300878 5.236118 2.417492 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.073552 4.439549 3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.025291 11.836242 3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.164236 10.915953 1.175445 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.844488 11.171095 2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.719115 4.131068 8.572568 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 34.981527 14.102595 -8.155916 - znuc, mass 16.000000 31.972070 - - Atom A02C 33.126190 11.375545 -8.561752 - znuc, mass 6.000000 12.000000 - - Atom A03C 34.090487 8.871374 -8.633478 - znuc, mass 6.000000 12.000000 - - Atom A04S 37.352869 8.134659 -8.266597 - znuc, mass 16.000000 31.972070 - - Atom A05C 38.185393 10.486070 -6.020862 - znuc, mass 6.000000 12.000000 - - Atom A06C 37.214006 12.881547 -5.963116 - znuc, mass 6.000000 12.000000 - - Atom A07C 37.965669 14.630736 -4.078532 - znuc, mass 6.000000 12.000000 - - Atom A08N 38.583422 16.115919 -2.559680 - znuc, mass 7.000000 14.003070 - - Atom A09C 40.031047 9.729046 -4.239399 - znuc, mass 6.000000 12.000000 - - Atom A10N 41.636135 9.118522 -2.847959 - znuc, mass 7.000000 14.003070 - - Atom A11N 32.464531 7.024730 -9.029232 - znuc, mass 7.000000 14.003070 - - Atom A12S 29.585530 8.217807 -9.449046 - znuc, mass 16.000000 31.972070 - - Atom A13C 30.532336 11.340676 -8.950172 - znuc, mass 6.000000 12.000000 - - Atom A14C 28.849916 13.395256 -8.936881 - znuc, mass 6.000000 12.000000 - - Atom A15N 27.442322 15.097954 -8.877072 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 34.981527 14.102595 -8.155916 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 -1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole -0.081100 -0.120946 0.015291 0.151351 -0.112179 0.258142 0.096888 -0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 33.126190 11.375545 -8.561752 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole 0.080562 0.064792 0.069734 -0.081135 -0.040643 -0.191017 -0.029091 0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 34.090487 8.871374 -8.633478 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 -0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole -0.154202 -0.066939 0.010607 0.076422 -0.037680 0.126335 0.027074 0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 37.352869 8.134659 -8.266597 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole 0.376726 0.162146 0.007751 -0.064505 0.144810 -0.217808 -0.152561 -0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 38.185393 10.486070 -6.020862 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole 0.056685 -0.087927 0.028493 0.015828 -0.161274 -0.009131 0.132781 -0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 37.214006 12.881547 -5.963116 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole 0.001075 0.050214 0.014991 0.047446 0.160108 -0.001747 -0.175099 0.000672 -0.097660 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 37.965669 14.630736 -4.078532 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole -0.066905 -0.052623 -0.037692 -0.033015 -0.046038 0.056469 0.083730 0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 38.583422 16.115919 -2.559680 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 -0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole 0.024985 0.019560 0.010956 0.010338 0.013703 -0.014533 -0.024660 -0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 40.031047 9.729046 -4.239399 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 -0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole 0.000862 0.071606 -0.028175 -0.027284 0.078173 -0.054551 -0.049997 0.053688 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 41.636135 9.118522 -2.847959 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole 0.001131 -0.023490 0.018307 0.014058 -0.034435 0.020126 0.016128 -0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 32.464531 7.024730 -9.029232 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole 0.049872 0.009996 -0.025010 0.027426 0.025766 -0.018699 -0.000756 -0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 29.585530 8.217807 -9.449046 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole -0.079313 -0.431186 0.101331 0.400784 -0.037962 -0.079017 -0.063368 0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 30.532336 11.340676 -8.950172 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole -0.066522 0.033296 -0.033077 -0.141141 0.015825 0.201472 0.017252 -0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 28.849916 13.395256 -8.936881 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole 0.082638 -0.017348 -0.002354 0.067724 0.011182 -0.121329 -0.008828 0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 27.442322 15.097954 -8.877072 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 -0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole -0.020681 0.004365 0.003281 -0.025182 -0.001816 0.038396 -0.001465 -0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 34.053859 12.739070 -8.358834 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole -0.135031 0.064489 -0.081833 0.097858 0.020810 0.250721 0.061022 -0.115691 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 33.608339 10.123460 -8.597615 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole -0.006937 -0.415001 -0.020564 0.384074 0.195901 -0.173547 -0.175337 0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 35.721678 8.503017 -8.450038 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 -0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole 0.362347 -0.032096 0.067519 -0.068455 0.111862 -0.234599 -0.179381 -0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 37.769131 9.310364 -7.143730 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 -0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole 0.128236 0.066192 0.098878 0.110011 0.100435 -0.054183 -0.199314 -0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 36.097767 13.492071 -7.059516 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole 0.150222 -0.184993 -0.116290 -0.324246 -0.434434 0.009658 0.550724 -0.159880 0.509238 0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 37.699700 11.683808 -5.991989 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 -0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole -0.190699 0.292172 -0.613901 -0.301575 0.166371 0.195836 0.447530 -0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 37.589838 13.756141 -5.020824 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 -0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole -0.090233 -0.197003 0.239935 0.184502 -0.227647 0.047722 -0.012288 0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 38.274546 15.373327 -3.319106 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole 0.091256 0.060414 0.057038 0.055047 0.054877 -0.044246 -0.111914 -0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 39.108220 10.107558 -5.130130 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 -0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole 0.091909 -0.188995 0.277331 0.069309 0.049758 -0.131139 -0.327089 0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 40.833591 9.423784 -3.543679 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 -0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole 0.040090 -0.095467 0.079919 0.058683 -0.126158 0.051889 0.046239 -0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 33.277509 7.948052 -8.831355 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole 0.344269 -0.046395 -0.191856 -0.007750 0.171132 -0.125564 0.020724 -0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 31.025031 7.621269 -9.239139 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole 0.052482 -0.017861 0.101437 -0.090246 -0.034757 -0.166574 -0.066680 0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 31.829263 11.358110 -8.755962 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 -0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole -0.195067 0.254353 -0.246051 0.014826 -0.033884 0.213914 0.279935 -0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 30.058933 9.779241 -9.199609 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 -0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole 0.174029 -0.208769 0.072703 0.067761 0.017390 -0.228215 -0.090093 0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 29.691126 12.367966 -8.943527 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 -0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole 0.138702 -0.038897 0.021776 0.027862 0.007098 -0.125103 -0.028874 -0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 28.146119 14.246605 -8.906976 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole -0.084793 -0.000751 0.009942 -0.105319 -0.003154 0.171502 -0.006789 -0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 33.225449 7.987610 -9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444129 6.305470 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 40.869553 8.875139 -3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821479 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.427576 14.536805 -9.323370 - polarizability tensor 5.676900 -5.144008 -0.727143 -3.339388 4.987141 -0.427749 -0.708036 -0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 37.929540 15.799559 -3.518027 - polarizability tensor 2.014660 1.411523 2.754674 0.096191 2.864916 1.368380 1.742511 2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 39.120930 10.084803 -5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.658932 12.385662 -8.960653 - polarizability tensor 2.247827 -1.783499 0.065362 -1.149026 2.379898 0.043699 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.289127 7.589437 -9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.007603 12.627117 -8.341383 - polarizability tensor 5.018070 4.875224 1.088491 1.811907 4.579783 0.228245 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 35.636045 8.562876 -8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.597390 13.782158 -5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.698218 10.173209 -8.571017 - polarizability tensor 3.009104 -0.265453 0.164854 -0.392052 2.422903 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.270342 11.509461 -5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522052 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.762115 11.264264 -8.185563 - polarizability tensor 13.654114 -2.638427 1.355101 -2.419218 4.125882 0.076557 2.653090 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.022891 9.944730 -9.184184 - polarizability tensor 2.960546 0.866100 0.523975 1.061801 5.117295 0.710667 0.733477 0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 36.163218 13.409644 -6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.964864 11.379867 -9.317312 - polarizability tensor 12.949895 -2.646494 1.785361 -2.381880 4.179640 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.768649 9.423250 -7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.168344 11.892233 -6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460098 13.263287 0.923067 0.789240 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.010102 15.620496 -8.860735 - polarizability tensor 2.586919 -0.528104 -0.018359 -0.362648 2.294263 -0.043707 0.109841 -0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 42.125865 8.929871 -2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.771470 16.570132 -2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.545198 8.242753 -10.282389 - polarizability tensor 8.609790 3.161438 4.330874 3.390209 5.869742 2.969759 2.433190 1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.406252 7.322463 -7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.530507 6.375822 -9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.681815 13.922565 -9.040202 - polarizability tensor 3.548722 -1.577098 0.269187 -2.005619 4.318440 0.319352 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 41.202868 9.828003 -3.727272 - polarizability tensor 5.713597 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.454513 14.719156 -7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225663 5.733018 0.256666 1.271657 0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 40.499436 9.553503 -3.083473 - polarizability tensor 6.707221 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.100077 15.027636 -2.885267 - polarizability tensor 1.169671 1.724727 0.923947 2.191905 7.141823 4.969365 0.687892 2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.265668 14.369256 -8.356897 - polarizability tensor 5.399126 -5.564498 0.213556 -4.017191 5.082747 0.297192 1.393777 -0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 35.474033 14.129933 -8.922442 - polarizability tensor 10.702598 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.732137 8.483741 -9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.197023 8.049592 -8.719786 - polarizability tensor 9.556647 3.699450 -1.931270 3.986422 6.261107 -1.285638 0.992071 0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.039977 7.886501 -8.339860 - polarizability tensor 4.541349 2.067478 1.036870 1.580946 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.834866 15.351734 -3.470143 - polarizability tensor 2.204025 0.653491 0.327503 1.701255 5.540977 4.544585 0.766864 3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 25.761931 20.488830 -3.301918 - znuc, mass 16.000000 31.972070 - - Atom A02C 27.617268 17.761780 -2.896083 - znuc, mass 6.000000 12.000000 - - Atom A03C 26.652971 15.257609 -2.824356 - znuc, mass 6.000000 12.000000 - - Atom A04S 23.390590 14.520894 -3.191237 - znuc, mass 16.000000 31.972070 - - Atom A05C 22.558065 16.872305 -5.436972 - znuc, mass 6.000000 12.000000 - - Atom A06C 23.529453 19.267782 -5.494719 - znuc, mass 6.000000 12.000000 - - Atom A07C 22.777789 21.016971 -7.379303 - znuc, mass 6.000000 12.000000 - - Atom A08N 22.160036 22.502154 -8.898155 - znuc, mass 7.000000 14.003070 - - Atom A09C 20.712412 16.115280 -7.218436 - znuc, mass 6.000000 12.000000 - - Atom A10N 19.107324 15.504757 -8.609875 - znuc, mass 7.000000 14.003070 - - Atom A11N 28.278927 13.410965 -2.428602 - znuc, mass 7.000000 14.003070 - - Atom A12S 31.157929 14.604042 -2.008788 - znuc, mass 16.000000 31.972070 - - Atom A13C 30.211123 17.726911 -2.507663 - znuc, mass 6.000000 12.000000 - - Atom A14C 31.893542 19.781491 -2.520953 - znuc, mass 6.000000 12.000000 - - Atom A15N 33.301137 21.484189 -2.580763 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 25.761931 20.488830 -3.301918 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 -1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole 0.081100 -0.120946 -0.015291 0.151351 0.112179 -0.258142 -0.096888 0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 27.617268 17.761780 -2.896083 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole -0.080562 0.064792 -0.069734 -0.081135 0.040643 0.191017 0.029091 -0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 26.652971 15.257609 -2.824356 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 -0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole 0.154202 -0.066939 -0.010607 0.076422 0.037680 -0.126335 -0.027074 -0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 23.390590 14.520894 -3.191237 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole -0.376726 0.162146 -0.007751 -0.064505 -0.144810 0.217808 0.152561 0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 22.558065 16.872305 -5.436972 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole -0.056685 -0.087927 -0.028493 0.015828 0.161274 0.009131 -0.132781 0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 23.529453 19.267782 -5.494719 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole -0.001075 0.050214 -0.014991 0.047446 -0.160108 0.001747 0.175099 -0.000672 -0.097660 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 22.777789 21.016971 -7.379303 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole 0.066905 -0.052623 0.037692 -0.033015 0.046038 -0.056469 -0.083730 -0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 22.160036 22.502154 -8.898155 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 -0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole -0.024985 0.019560 -0.010956 0.010338 -0.013703 0.014533 0.024660 0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 20.712412 16.115280 -7.218436 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 -0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole -0.000862 0.071606 0.028175 -0.027284 -0.078173 0.054551 0.049997 -0.053688 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 19.107324 15.504757 -8.609875 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole -0.001131 -0.023490 -0.018307 0.014058 0.034435 -0.020126 -0.016128 0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 28.278927 13.410965 -2.428602 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole -0.049872 0.009996 0.025010 0.027426 -0.025766 0.018699 0.000756 0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 31.157929 14.604042 -2.008788 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole 0.079313 -0.431186 -0.101331 0.400784 0.037962 0.079017 0.063368 -0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 30.211123 17.726911 -2.507663 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole 0.066522 0.033296 0.033077 -0.141141 -0.015825 -0.201472 -0.017252 0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 31.893542 19.781491 -2.520953 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole -0.082638 -0.017348 0.002354 0.067724 -0.011182 0.121329 0.008828 -0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 33.301137 21.484189 -2.580763 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 -0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole 0.020681 0.004365 -0.003281 -0.025182 0.001816 -0.038396 0.001465 0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 26.689600 19.125305 -3.099001 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole 0.135031 0.064489 0.081833 0.097858 -0.020810 -0.250721 -0.061022 0.115691 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 27.135120 16.509695 -2.860220 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole 0.006937 -0.415001 0.020564 0.384074 -0.195901 0.173547 0.175337 -0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 25.021781 14.889252 -3.007797 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 -0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole -0.362347 -0.032096 -0.067519 -0.068455 -0.111862 0.234599 0.179381 0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 22.974328 15.696599 -4.314105 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 -0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole -0.128236 0.066192 -0.098878 0.110011 -0.100435 0.054183 0.199314 0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 24.645692 19.878306 -4.398319 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole -0.150222 -0.184993 0.116290 -0.324246 0.434434 -0.009658 -0.550724 0.159880 0.509238 0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 23.043759 18.070043 -5.465846 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 -0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole 0.190699 0.292172 0.613901 -0.301575 -0.166371 -0.195836 -0.447530 0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 23.153621 20.142376 -6.437011 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 -0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole 0.090233 -0.197003 -0.239935 0.184502 0.227647 -0.047722 0.012288 -0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 22.468913 21.759562 -8.138729 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole -0.091256 0.060414 -0.057038 0.055047 -0.054877 0.044246 0.111914 0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 21.635238 16.493793 -6.327704 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 -0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole -0.091909 -0.188995 -0.277331 0.069309 -0.049758 0.131139 0.327089 -0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 19.909868 15.810019 -7.914156 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 -0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole -0.040090 -0.095467 -0.079919 0.058683 0.126158 -0.051889 -0.046239 0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 27.465949 14.334287 -2.626479 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole -0.344269 -0.046395 0.191856 -0.007750 -0.171132 0.125564 -0.020724 0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 29.718428 14.007504 -2.218695 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole -0.052482 -0.017861 -0.101437 -0.090246 0.034757 0.166574 0.066680 -0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 28.914196 17.744345 -2.701873 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 -0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole 0.195067 0.254353 0.246051 0.014826 0.033884 -0.213914 -0.279935 0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 30.684526 16.165476 -2.258226 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 -0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole -0.174029 -0.208769 -0.072703 0.067761 -0.017390 0.228215 0.090093 -0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 31.052333 18.754201 -2.514308 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 -0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole -0.138702 -0.038897 -0.021776 0.027862 -0.007098 0.125103 0.028874 0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 32.597340 20.632840 -2.550858 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole 0.084793 -0.000751 -0.009942 -0.105319 0.003154 -0.171502 0.006789 0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 27.518009 14.373845 -2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444129 6.305470 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 19.873905 15.261374 -7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821479 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.315882 20.923040 -2.134465 - polarizability tensor 5.676900 5.144008 -0.727143 3.339388 4.987141 0.427749 -0.708036 0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 22.813919 22.185794 -7.939808 - polarizability tensor 2.014660 -1.411523 2.754674 -0.096191 2.864916 -1.368380 1.742511 -2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.622529 16.471038 -6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.084527 18.771897 -2.497182 - polarizability tensor 2.247827 1.783499 0.065362 1.149026 2.379898 -0.043699 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.454331 13.975671 -2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.735855 19.013352 -3.116452 - polarizability tensor 5.018070 -4.875224 1.088491 -1.811907 4.579783 -0.228245 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.107413 14.949111 -3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.146068 20.168393 -6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.045240 16.559444 -2.886817 - polarizability tensor 3.009104 0.265453 0.164854 0.392052 2.422903 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.473116 17.895696 -5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522052 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.981343 17.650499 -3.272272 - polarizability tensor 13.654114 2.638427 1.355101 2.419218 4.125882 -0.076557 2.653090 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.720568 16.330965 -2.273651 - polarizability tensor 2.960546 -0.866100 0.523975 -1.061801 5.117295 -0.710667 0.733477 -0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.580241 19.795879 -4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.778595 17.766102 -2.140523 - polarizability tensor 12.949895 2.646494 1.785361 2.381880 4.179640 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.974810 15.809485 -4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.575114 18.278468 -5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460098 13.263287 -0.923067 0.789240 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.733356 22.006731 -2.597100 - polarizability tensor 2.586919 0.528104 -0.018359 0.362648 2.294263 0.043707 0.109841 0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.617594 15.316106 -9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.971988 22.956367 -9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.198261 14.628988 -1.175445 - polarizability tensor 8.609790 -3.161438 4.330874 -3.390209 5.869742 -2.969759 2.433190 -1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.337207 13.708698 -3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.212952 12.762057 -2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.061644 20.308800 -2.417633 - polarizability tensor 3.548722 1.577098 0.269187 2.005619 4.318440 -0.319352 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.540590 16.214238 -7.730563 - polarizability tensor 5.713597 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.288946 21.105391 -3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225663 5.733018 -0.256666 1.271657 -0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.244023 15.939738 -8.374362 - polarizability tensor 6.707221 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.643382 21.413871 -8.572568 - polarizability tensor 1.169671 -1.724727 0.923947 -2.191905 7.141823 -4.969365 0.687892 -2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.477790 20.755491 -3.100937 - polarizability tensor 5.399126 5.564498 0.213556 4.017191 5.082747 -0.297192 1.393777 0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.269426 20.516167 -2.535393 - polarizability tensor 10.702598 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.011321 14.869976 -2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.546435 14.435827 -2.738048 - polarizability tensor 9.556647 -3.699450 -1.931270 -3.986422 6.261107 1.285638 0.992071 -0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.703482 14.272736 -3.117975 - polarizability tensor 4.541349 -2.067478 1.036870 -1.580946 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.908592 21.737969 -7.987692 - polarizability tensor 2.204025 -0.653491 0.327503 -1.701255 5.540977 -4.544585 0.766864 -3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S 2.300299 11.442345 31.071586 - znuc, mass 16.000000 31.972070 - - Atom A02C 4.155636 14.169395 31.477421 - znuc, mass 6.000000 12.000000 - - Atom A03C 3.191339 16.673565 31.549148 - znuc, mass 6.000000 12.000000 - - Atom A04S -0.071042 17.410281 31.182267 - znuc, mass 16.000000 31.972070 - - Atom A05C -0.903567 15.058870 28.936532 - znuc, mass 6.000000 12.000000 - - Atom A06C 0.067821 12.663393 28.878785 - znuc, mass 6.000000 12.000000 - - Atom A07C -0.683843 10.914204 26.994201 - znuc, mass 6.000000 12.000000 - - Atom A08N -1.301596 9.429021 25.475349 - znuc, mass 7.000000 14.003070 - - Atom A09C -2.749220 15.815894 27.155068 - znuc, mass 6.000000 12.000000 - - Atom A10N -4.354308 16.426418 25.763629 - znuc, mass 7.000000 14.003070 - - Atom A11N 4.817295 18.520209 31.944902 - znuc, mass 7.000000 14.003070 - - Atom A12S 7.696297 17.327133 32.364716 - znuc, mass 16.000000 31.972070 - - Atom A13C 6.749491 14.204264 31.865841 - znuc, mass 6.000000 12.000000 - - Atom A14C 8.431910 12.149684 31.852551 - znuc, mass 6.000000 12.000000 - - Atom A15N 9.839505 10.446986 31.792741 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 2.300299 11.442345 31.071586 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole 0.081100 0.120946 -0.015291 -0.151351 0.112179 -0.258142 -0.096888 0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 4.155636 14.169395 31.477421 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 -0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole -0.080562 -0.064792 -0.069734 0.081135 0.040643 0.191017 0.029091 -0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C 3.191339 16.673565 31.549148 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole 0.154202 0.066939 -0.010607 -0.076422 0.037680 -0.126335 -0.027074 -0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -0.071042 17.410281 31.182267 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 -0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole -0.376726 -0.162146 -0.007751 0.064505 -0.144810 0.217808 0.152561 0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -0.903567 15.058870 28.936532 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 -0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole -0.056685 0.087927 -0.028493 -0.015828 0.161274 0.009131 -0.132781 0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C 0.067821 12.663393 28.878785 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 -0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole -0.001075 -0.050214 -0.014991 -0.047446 -0.160108 0.001747 0.175099 -0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -0.683843 10.914204 26.994201 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 -0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole 0.066905 0.052623 0.037692 0.033015 0.046038 -0.056469 -0.083730 -0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -1.301596 9.429021 25.475349 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole -0.024985 -0.019560 -0.010956 -0.010338 -0.013703 0.014533 0.024660 0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -2.749220 15.815894 27.155068 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole -0.000862 -0.071606 0.028175 0.027284 -0.078173 0.054551 0.049997 -0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -4.354308 16.426418 25.763629 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 -0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole -0.001131 0.023490 -0.018307 -0.014058 0.034435 -0.020126 -0.016128 0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 4.817295 18.520209 31.944902 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 -0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole -0.049872 -0.009996 0.025010 -0.027426 -0.025766 0.018699 0.000756 0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 7.696297 17.327133 32.364716 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 -0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole 0.079313 0.431186 -0.101331 -0.400784 0.037962 0.079017 0.063368 -0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 6.749491 14.204264 31.865841 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 -0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole 0.066522 -0.033296 0.033077 0.141141 -0.015825 -0.201472 -0.017252 0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 8.431910 12.149684 31.852551 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 -0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole -0.082638 0.017348 0.002354 -0.067724 -0.011182 0.121329 0.008828 -0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 9.839505 10.446986 31.792741 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole 0.020681 -0.004365 -0.003281 0.025182 0.001816 -0.038396 0.001465 0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 3.227968 12.805870 31.274503 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 -0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole 0.135031 -0.064489 0.081833 -0.097858 -0.020810 -0.250721 -0.061022 0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 3.673488 15.421480 31.513284 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 -0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole 0.006937 0.415001 0.020564 -0.384074 -0.195901 0.173547 0.175337 -0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 1.560148 17.041923 31.365707 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole -0.362347 0.032096 -0.067519 0.068455 -0.111862 0.234599 0.179381 0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -0.487304 16.234575 30.059399 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole -0.128236 -0.066192 -0.098878 -0.110011 -0.100435 0.054183 0.199314 0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 1.184060 12.052869 29.975185 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 -0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole -0.150222 0.184993 0.116290 0.324246 0.434434 -0.009658 -0.550724 0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -0.417873 13.861131 28.907658 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole 0.190699 -0.292172 0.613901 0.301575 -0.166371 -0.195836 -0.447530 0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -0.308011 11.788798 27.936493 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole 0.090233 0.197003 -0.239935 -0.184502 0.227647 -0.047722 0.012288 -0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -0.992719 10.171613 26.234775 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 -0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole -0.091256 -0.060414 -0.057038 -0.055047 -0.054877 0.044246 0.111914 0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -1.826394 15.437382 28.045800 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole -0.091909 0.188995 -0.277331 -0.069309 -0.049758 0.131139 0.327089 -0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -3.551764 16.121156 26.459348 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole -0.040090 0.095467 -0.079919 -0.058683 0.126158 -0.051889 -0.046239 0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 4.004317 17.596887 31.747025 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 -0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole -0.344269 0.046395 0.191856 0.007750 -0.171132 0.125564 -0.020724 0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 6.256796 17.923671 32.154809 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 -0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole -0.052482 0.017861 -0.101437 0.090246 0.034757 0.166574 0.066680 -0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 5.452564 14.186830 31.671631 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole 0.195067 -0.254353 0.246051 -0.014826 0.033884 -0.213914 -0.279935 0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 7.222894 15.765698 32.115278 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole -0.174029 0.208769 -0.072703 -0.067761 -0.017390 0.228215 0.090093 -0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 7.590701 13.176974 31.859196 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole -0.138702 0.038897 -0.021776 -0.027862 -0.007098 0.125103 0.028874 0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 9.135708 11.298335 31.822646 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 -0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole 0.084793 0.000751 -0.009942 0.105319 0.003154 -0.171502 0.006789 0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 3.583608 15.371730 31.486687 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -3.921042 15.716937 26.642941 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.854169 11.008067 32.238939 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -1.553040 10.193207 26.385811 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.886518 13.652707 29.220750 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.241850 17.658439 31.255529 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.084803 17.495348 31.635455 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.274223 12.917822 31.257052 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.645781 16.982063 31.342289 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.839103 15.460137 28.020022 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.622894 13.159277 31.876322 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.315564 11.762781 27.916692 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.316963 14.165073 32.232981 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.258936 15.600210 32.099853 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.486822 16.121690 29.965816 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.519711 14.280676 31.101232 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.118609 12.135296 29.886424 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.011484 14.035478 28.521541 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.271724 9.924444 31.776405 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.844038 16.615069 25.335067 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.489644 8.974808 25.009608 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.992699 17.955503 32.106919 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.751320 19.169118 31.993285 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.450311 17.061198 31.935679 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.016264 11.175774 31.272526 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.217610 15.991437 25.999142 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.807794 11.415007 31.838111 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.587727 16.669800 26.657170 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.647714 9.745380 26.433697 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.599988 11.622353 31.956012 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.827314 10.825784 30.590634 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.124425 18.222477 30.716646 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.736629 17.302188 33.198059 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.056377 17.557330 32.281745 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.818249 10.517303 25.800936 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S 11.519895 5.056110 26.217588 - znuc, mass 16.000000 31.972070 - - Atom A02C 9.664558 7.783160 25.811752 - znuc, mass 6.000000 12.000000 - - Atom A03C 10.628855 10.287330 25.740026 - znuc, mass 6.000000 12.000000 - - Atom A04S 13.891237 11.024046 26.106907 - znuc, mass 16.000000 31.972070 - - Atom A05C 14.723761 8.672635 28.352642 - znuc, mass 6.000000 12.000000 - - Atom A06C 13.752374 6.277158 28.410388 - znuc, mass 6.000000 12.000000 - - Atom A07C 14.504037 4.527969 30.294972 - znuc, mass 6.000000 12.000000 - - Atom A08N 15.121790 3.042786 31.813824 - znuc, mass 7.000000 14.003070 - - Atom A09C 16.569415 9.429659 30.134105 - znuc, mass 6.000000 12.000000 - - Atom A10N 18.174503 10.040183 31.525545 - znuc, mass 7.000000 14.003070 - - Atom A11N 9.002899 12.133974 25.344272 - znuc, mass 7.000000 14.003070 - - Atom A12S 6.123898 10.940898 24.924458 - znuc, mass 16.000000 31.972070 - - Atom A13C 7.070704 7.818029 25.423332 - znuc, mass 6.000000 12.000000 - - Atom A14C 5.388284 5.763449 25.436623 - znuc, mass 6.000000 12.000000 - - Atom A15N 3.980690 4.060751 25.496432 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 11.519895 5.056110 26.217588 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole -0.081100 0.120946 0.015291 -0.151351 -0.112179 0.258142 0.096888 -0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 9.664558 7.783160 25.811752 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 -0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole 0.080562 -0.064792 0.069734 0.081135 -0.040643 -0.191017 -0.029091 0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C 10.628855 10.287330 25.740026 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole -0.154202 0.066939 0.010607 -0.076422 -0.037680 0.126335 0.027074 0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 13.891237 11.024046 26.106907 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 -0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole 0.376726 -0.162146 0.007751 0.064505 0.144810 -0.217808 -0.152561 -0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 14.723761 8.672635 28.352642 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 -0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole 0.056685 0.087927 0.028493 -0.015828 -0.161274 -0.009131 0.132781 -0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C 13.752374 6.277158 28.410388 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 -0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole 0.001075 -0.050214 0.014991 -0.047446 0.160108 -0.001747 -0.175099 0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 14.504037 4.527969 30.294972 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 -0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole -0.066905 0.052623 -0.037692 0.033015 -0.046038 0.056469 0.083730 0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 15.121790 3.042786 31.813824 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole 0.024985 -0.019560 0.010956 -0.010338 0.013703 -0.014533 -0.024660 -0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 16.569415 9.429659 30.134105 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole 0.000862 -0.071606 -0.028175 0.027284 0.078173 -0.054551 -0.049997 0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 18.174503 10.040183 31.525545 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 -0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole 0.001131 0.023490 0.018307 -0.014058 -0.034435 0.020126 0.016128 -0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 9.002899 12.133974 25.344272 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 -0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole 0.049872 -0.009996 -0.025010 -0.027426 0.025766 -0.018699 -0.000756 -0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 6.123898 10.940898 24.924458 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 -0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole -0.079313 0.431186 0.101331 -0.400784 -0.037962 -0.079017 -0.063368 0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 7.070704 7.818029 25.423332 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 -0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole -0.066522 -0.033296 -0.033077 0.141141 0.015825 0.201472 0.017252 -0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 5.388284 5.763449 25.436623 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 -0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole 0.082638 0.017348 -0.002354 -0.067724 0.011182 -0.121329 -0.008828 0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 3.980690 4.060751 25.496432 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole -0.020681 -0.004365 0.003281 0.025182 -0.001816 0.038396 -0.001465 -0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 10.592227 6.419635 26.014670 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 -0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole -0.135031 -0.064489 -0.081833 -0.097858 0.020810 0.250721 0.061022 -0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 10.146707 9.035245 25.775889 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 -0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole -0.006937 0.415001 -0.020564 -0.384074 0.195901 -0.173547 -0.175337 0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 12.260046 10.655688 25.923466 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole 0.362347 0.032096 0.067519 0.068455 0.111862 -0.234599 -0.179381 -0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 14.307499 9.848340 27.229774 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole 0.128236 -0.066192 0.098878 -0.110011 0.100435 -0.054183 -0.199314 -0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 12.636135 5.666634 27.313988 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 -0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole 0.150222 0.184993 -0.116290 0.324246 -0.434434 0.009658 0.550724 -0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 14.238068 7.474897 28.381515 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole -0.190699 -0.292172 -0.613901 0.301575 0.166371 0.195836 0.447530 -0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 14.128206 5.402564 29.352680 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole -0.090233 0.197003 0.239935 -0.184502 -0.227647 0.047722 -0.012288 0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 14.812914 3.785378 31.054398 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 -0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole 0.091256 -0.060414 0.057038 -0.055047 0.054877 -0.044246 -0.111914 -0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 15.646588 9.051147 29.243374 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole 0.091909 0.188995 0.277331 -0.069309 0.049758 -0.131139 -0.327089 0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 17.371959 9.734921 30.829825 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole 0.040090 0.095467 0.079919 -0.058683 -0.126158 0.051889 0.046239 -0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 9.815877 11.210652 25.542149 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 -0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole 0.344269 0.046395 -0.191856 0.007750 0.171132 -0.125564 0.020724 -0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 7.563399 11.537436 25.134365 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 -0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole 0.052482 0.017861 0.101437 0.090246 -0.034757 -0.166574 -0.066680 0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 8.367631 7.800595 25.617542 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole -0.195067 -0.254353 -0.246051 -0.014826 -0.033884 0.213914 0.279935 -0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 6.597301 9.379463 25.173895 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole 0.174029 0.208769 0.072703 -0.067761 0.017390 -0.228215 -0.090093 0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 6.229494 6.790739 25.429977 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole 0.138702 0.038897 0.021776 -0.027862 0.007098 -0.125103 -0.028874 -0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 4.684487 4.912100 25.466528 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 -0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole -0.084793 0.000751 0.009942 0.105319 -0.003154 0.171502 -0.006789 -0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 10.236586 8.985495 25.802487 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 17.741236 9.330702 30.646232 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.966026 4.621832 25.050235 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 15.373234 3.806972 30.903362 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.706712 7.266472 28.068423 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.578345 11.272204 26.033644 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.735392 11.109113 25.653718 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.545971 6.531587 26.032121 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.174413 10.595828 25.946884 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.659298 9.073902 29.269151 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.197300 6.773043 25.412851 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.135758 5.376546 29.372481 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.503232 7.778838 25.056192 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.561259 9.213975 25.189320 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.307017 9.735455 27.323358 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.300483 7.894441 26.187941 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.701586 5.749061 27.402749 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.808710 7.649243 28.767632 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.548470 3.538209 25.512769 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.664233 10.228834 31.954106 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.309838 2.588573 32.279566 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.827495 11.569268 25.182254 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.068875 12.782883 25.295888 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.270505 10.674963 25.353494 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.803931 4.789539 26.016647 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.037804 9.605202 31.290032 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.012401 5.028772 25.451063 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.407921 10.283566 30.632003 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.467909 3.359146 30.855477 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.220207 5.236118 25.333161 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.992881 4.439549 26.698539 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.944620 11.836242 26.572528 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.083565 10.915953 24.091115 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.763817 11.171095 25.007429 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.638444 4.131068 31.488237 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 26.900854 14.102595 14.759753 - znuc, mass 16.000000 31.972070 - - Atom A02C 25.045519 11.375544 14.353917 - znuc, mass 6.000000 12.000000 - - Atom A03C 26.009817 8.871374 14.282191 - znuc, mass 6.000000 12.000000 - - Atom A04S 29.272198 8.134660 14.649073 - znuc, mass 16.000000 31.972070 - - Atom A05C 30.104721 10.486071 16.894808 - znuc, mass 6.000000 12.000000 - - Atom A06C 29.133333 12.881548 16.952554 - znuc, mass 6.000000 12.000000 - - Atom A07C 29.884995 14.630737 18.837138 - znuc, mass 6.000000 12.000000 - - Atom A08N 30.502747 16.115921 20.355990 - znuc, mass 7.000000 14.003070 - - Atom A09C 31.950375 9.729048 18.676272 - znuc, mass 6.000000 12.000000 - - Atom A10N 33.555463 9.118526 20.067712 - znuc, mass 7.000000 14.003070 - - Atom A11N 24.383862 7.024729 13.886437 - znuc, mass 7.000000 14.003070 - - Atom A12S 21.504860 8.217805 13.466623 - znuc, mass 16.000000 31.972070 - - Atom A13C 22.451664 11.340674 13.965497 - znuc, mass 6.000000 12.000000 - - Atom A14C 20.769244 13.395253 13.978787 - znuc, mass 6.000000 12.000000 - - Atom A15N 19.361648 15.097950 14.038596 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 26.900854 14.102595 14.759753 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 -1.019605 0.491700 - duadrupole 0.200252 0.667129 -0.867381 0.820424 2.014536 -0.644901 - octupole -0.081100 -0.120945 0.015291 0.151350 -0.112179 0.258142 0.096888 -0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 25.045519 11.375544 14.353917 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026088 0.009793 - octupole 0.080562 0.064792 0.069734 -0.081134 -0.040643 -0.191017 -0.029091 0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 26.009817 8.871374 14.282191 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 -0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole -0.154202 -0.066939 0.010607 0.076422 -0.037680 0.126335 0.027074 0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 29.272198 8.134660 14.649073 - znuc, monopole 16.000000 -15.424149 - dipole -0.645105 0.702589 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883321 - octupole 0.376726 0.162146 0.007751 -0.064504 0.144810 -0.217808 -0.152561 -0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 30.104721 10.486071 16.894808 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 0.012964 0.126299 - duadrupole -0.086713 0.172782 -0.086070 -0.198246 0.015502 0.024956 - octupole 0.056685 -0.087927 0.028493 0.015828 -0.161274 -0.009131 0.132781 -0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 29.133333 12.881548 16.952554 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole 0.001075 0.050214 0.014991 0.047446 0.160109 -0.001747 -0.175100 0.000672 -0.097661 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 29.884995 14.630737 18.837138 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole -0.066905 -0.052623 -0.037692 -0.033015 -0.046038 0.056469 0.083730 0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 30.502747 16.115921 20.355990 - znuc, monopole 7.000000 -6.844356 - dipole -0.128196 -0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole 0.024985 0.019560 0.010956 0.010338 0.013703 -0.014533 -0.024660 -0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 31.950375 9.729048 18.676272 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 -0.134363 0.337213 - duadrupole 0.044076 -0.065351 0.021276 0.052673 0.059479 0.009395 - octupole 0.000862 0.071606 -0.028175 -0.027284 0.078173 -0.054551 -0.049998 0.053689 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 33.555463 9.118526 20.067712 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole 0.001131 -0.023490 0.018307 0.014058 -0.034435 0.020126 0.016128 -0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 24.383862 7.024729 13.886437 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109388 -0.037751 - octupole 0.049872 0.009996 -0.025010 0.027426 0.025766 -0.018699 -0.000756 -0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 21.504860 8.217805 13.466623 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 0.461479 0.227968 - duadrupole 0.657691 1.380421 -2.038112 -0.516799 0.477705 0.276530 - octupole -0.079313 -0.431186 0.101331 0.400784 -0.037962 -0.079016 -0.063368 0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 22.451664 11.340674 13.965497 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 0.118662 -0.023762 - duadrupole 0.102512 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole -0.066522 0.033296 -0.033078 -0.141141 0.015825 0.201472 0.017252 -0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 20.769244 13.395253 13.978787 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 0.447125 0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole 0.082638 -0.017348 -0.002354 0.067724 0.011182 -0.121329 -0.008828 0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 19.361648 15.097950 14.038596 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 -0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013044 0.009826 - octupole -0.020681 0.004365 0.003281 -0.025182 -0.001816 0.038396 -0.001465 -0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 25.973186 12.739070 14.556835 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 0.204132 -0.059744 - duadrupole -0.127967 0.303138 -0.175171 0.361286 0.022579 0.002456 - octupole -0.135031 0.064490 -0.081833 0.097857 0.020810 0.250721 0.061023 -0.115690 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 25.527668 10.123459 14.318054 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099040 0.017364 - octupole -0.006938 -0.415001 -0.020563 0.384074 0.195901 -0.173546 -0.175337 0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 27.641008 8.503017 14.465632 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 -0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole 0.362347 -0.032097 0.067519 -0.068455 0.111862 -0.234600 -0.179381 -0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 29.688460 9.310366 15.771940 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 -0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121103 0.078949 0.001930 0.434804 - octupole 0.128235 0.066191 0.098878 0.110012 0.100436 -0.054183 -0.199314 -0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 28.017094 13.492072 15.856154 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 0.216246 -0.112894 - duadrupole 0.231615 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole 0.150223 -0.184993 -0.116290 -0.324246 -0.434434 0.009658 0.550724 -0.159881 0.509238 0.036069 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 29.619027 11.683810 16.923681 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 -0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole -0.190699 0.292172 -0.613901 -0.301576 0.166371 0.195835 0.447530 -0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 29.509164 13.756143 17.894846 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 -0.079077 -0.047152 - duadrupole 0.177104 0.006089 -0.183194 -0.206575 0.019465 -0.143936 - octupole -0.090233 -0.197003 0.239935 0.184502 -0.227648 0.047722 -0.012288 0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 30.193871 15.373329 19.596564 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 0.228151 0.227536 - duadrupole -0.226596 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole 0.091256 0.060414 0.057038 0.055047 0.054877 -0.044246 -0.111914 -0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 31.027548 10.107560 17.785540 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 -0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142766 -0.071307 0.108121 - octupole 0.091909 -0.188995 0.277331 0.069309 0.049758 -0.131139 -0.327089 0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 32.752919 9.423787 19.371992 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 -0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole 0.040090 -0.095467 0.079919 0.058683 -0.126158 0.051889 0.046239 -0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 25.196839 7.948052 14.084314 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 0.115721 0.003434 - duadrupole 0.270648 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole 0.344269 -0.046395 -0.191856 -0.007750 0.171132 -0.125564 0.020724 -0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 22.944361 7.621267 13.676530 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 0.026718 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole 0.052482 -0.017862 0.101437 -0.090246 -0.034757 -0.166575 -0.066680 0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 23.748591 11.358109 14.159707 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 -0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole -0.195067 0.254354 -0.246051 0.014825 -0.033884 0.213914 0.279935 -0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 21.978262 9.779239 13.716060 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 -0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole 0.174029 -0.208769 0.072703 0.067761 0.017390 -0.228215 -0.090093 0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 21.610454 12.367963 13.972142 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 -0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole 0.138702 -0.038897 0.021776 0.027863 0.007098 -0.125103 -0.028874 -0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 20.065446 14.246601 14.008692 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 0.265565 0.005667 - duadrupole 0.053653 0.238490 -0.292143 -0.457319 -0.029902 0.030180 - octupole -0.084792 -0.000751 0.009942 -0.105320 -0.003154 0.171502 -0.006789 -0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 25.144779 7.987609 13.549594 - polarizability tensor 4.528424 1.917551 0.356759 1.444128 6.305472 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 32.788882 8.875142 19.174170 - polarizability tensor 3.614271 -1.113333 2.917217 -0.029793 1.821479 0.641372 2.940226 -0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.346903 14.536802 13.592298 - polarizability tensor 5.676904 -5.144008 -0.727141 -3.339388 4.987137 -0.427750 -0.708035 -0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 29.848865 15.799561 19.397643 - polarizability tensor 2.014659 1.411522 2.754673 0.096191 2.864917 1.368381 1.742510 2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.040258 10.084805 17.811318 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536299 1.326286 -0.648852 1.549497 -0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.578260 12.385660 13.955016 - polarizability tensor 2.247828 -1.783499 0.065363 -1.149026 2.379896 0.043699 0.251241 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.208458 7.589435 13.724420 - polarizability tensor 5.239487 -1.239561 0.807464 -0.101560 1.234380 0.089842 1.195631 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.926931 12.627117 14.574286 - polarizability tensor 5.018067 4.875224 1.088491 1.811907 4.579786 0.228246 1.487331 1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.555375 8.562877 14.489050 - polarizability tensor 9.182809 -1.751286 0.995508 -0.084237 1.828484 0.387734 2.027093 0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.516717 13.782160 17.914647 - polarizability tensor 1.671051 0.572015 1.296469 0.542823 2.162529 1.769890 1.031019 1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.617547 10.173209 14.344652 - polarizability tensor 3.009105 -0.265453 0.164855 -0.392052 2.422902 0.078852 0.571863 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.189670 11.509463 17.309798 - polarizability tensor 5.263037 -4.454329 1.663069 -4.279634 13.403258 0.812801 1.522053 0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.681444 11.264263 14.730106 - polarizability tensor 13.654116 -2.638423 1.355104 -2.419214 4.125879 0.076557 2.653092 -0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.942220 9.944727 13.731485 - polarizability tensor 2.960545 0.866099 0.523975 1.061800 5.117296 0.710667 0.733477 0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.082545 13.409645 15.944915 - polarizability tensor 5.617929 -1.381554 4.877276 -1.251780 2.735770 -1.290944 3.659516 -1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.884192 11.379865 13.598357 - polarizability tensor 12.949896 -2.646490 1.785363 -2.381876 4.179637 -0.329227 2.420663 -0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.687978 9.423251 15.865524 - polarizability tensor 3.040417 1.393146 2.596746 0.925311 4.759664 3.665080 1.764101 3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.087672 11.892234 16.610589 - polarizability tensor 4.688607 -4.661428 1.698768 -4.460102 13.263283 0.923066 0.789241 0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.929429 15.620492 14.054933 - polarizability tensor 2.586920 -0.528103 -0.018359 -0.362647 2.294262 -0.043707 0.109841 -0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.045193 8.929875 20.496273 - polarizability tensor 2.625149 -0.213208 0.424935 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.690795 16.570134 20.821732 - polarizability tensor 2.080856 0.280706 0.149350 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.464528 8.242750 12.633279 - polarizability tensor 8.609786 3.161439 4.330873 3.390210 5.869745 2.969762 2.433189 1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.325582 7.322464 15.114694 - polarizability tensor 5.800146 -0.752295 1.186095 0.172145 7.005037 0.548345 0.964192 0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.449837 6.375821 13.838054 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321947 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.601142 13.922561 13.875466 - polarizability tensor 3.548724 -1.577098 0.269188 -2.005619 4.318439 0.319351 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.122196 9.828006 19.188399 - polarizability tensor 5.713598 -1.433755 3.432521 -2.871854 2.858065 -3.181668 3.126669 -2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.373840 14.719156 15.240704 - polarizability tensor 6.533271 0.444461 1.547291 -1.225663 5.733017 0.256666 1.271658 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.418764 9.553506 19.832198 - polarizability tensor 6.707222 -2.929001 4.115173 -3.681834 2.332214 -2.837643 2.110817 -1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.019403 15.027638 20.030403 - polarizability tensor 1.169669 1.724724 0.923944 2.191901 7.141826 4.969366 0.687890 2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.184995 14.369253 14.558771 - polarizability tensor 5.399130 -5.564497 0.213557 -4.017191 5.082742 0.297191 1.393778 -0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.393360 14.129933 13.993228 - polarizability tensor 10.702596 1.789313 3.005774 -0.514549 5.742470 -3.210321 2.108866 -0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.651467 8.483743 13.895660 - polarizability tensor 8.115953 0.753025 -0.167711 1.550833 6.978558 4.365403 0.764813 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.116353 8.049589 14.195882 - polarizability tensor 9.556643 3.699452 -1.931269 3.986424 6.261110 -1.285638 0.992072 0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.959306 7.886500 14.575810 - polarizability tensor 4.541347 2.067477 1.036870 1.580945 6.187413 0.395977 1.497097 1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.754192 15.351736 19.445527 - polarizability tensor 2.204024 0.653489 0.327501 1.701252 5.540979 4.544585 0.766862 3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 17.681260 20.488830 19.613751 - znuc, mass 16.000000 31.972070 - - Atom A02C 19.536596 17.761779 20.019587 - znuc, mass 6.000000 12.000000 - - Atom A03C 18.572298 15.257609 20.091313 - znuc, mass 6.000000 12.000000 - - Atom A04S 15.309916 14.520895 19.724431 - znuc, mass 16.000000 31.972070 - - Atom A05C 14.477393 16.872306 17.478696 - znuc, mass 6.000000 12.000000 - - Atom A06C 15.448781 19.267783 17.420950 - znuc, mass 6.000000 12.000000 - - Atom A07C 14.697119 21.016972 15.536366 - znuc, mass 6.000000 12.000000 - - Atom A08N 14.079367 22.502156 14.017514 - znuc, mass 7.000000 14.003070 - - Atom A09C 12.631739 16.115283 15.697232 - znuc, mass 6.000000 12.000000 - - Atom A10N 11.026651 15.504761 14.305792 - znuc, mass 7.000000 14.003070 - - Atom A11N 20.198253 13.410964 20.487067 - znuc, mass 7.000000 14.003070 - - Atom A12S 23.077255 14.604039 20.906881 - znuc, mass 16.000000 31.972070 - - Atom A13C 22.130451 17.726909 20.408007 - znuc, mass 6.000000 12.000000 - - Atom A14C 23.812871 19.781488 20.394717 - znuc, mass 6.000000 12.000000 - - Atom A15N 25.220466 21.484185 20.334908 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 17.681260 20.488830 19.613751 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 -1.019605 -0.491700 - duadrupole 0.200252 0.667129 -0.867381 -0.820424 2.014536 0.644901 - octupole 0.081100 -0.120945 -0.015291 0.151350 0.112179 -0.258142 -0.096888 0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 19.536596 17.761779 20.019587 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026088 -0.009793 - octupole -0.080562 0.064792 -0.069734 -0.081134 0.040643 0.191017 0.029091 -0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 18.572298 15.257609 20.091313 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 -0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole 0.154202 -0.066939 -0.010607 0.076422 0.037680 -0.126335 -0.027074 -0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 15.309916 14.520895 19.724431 - znuc, monopole 16.000000 -15.424149 - dipole 0.645105 0.702589 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883321 - octupole -0.376726 0.162146 -0.007751 -0.064504 -0.144810 0.217808 0.152561 0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 14.477393 16.872306 17.478696 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 0.012964 -0.126299 - duadrupole -0.086713 0.172782 -0.086070 0.198246 0.015502 -0.024956 - octupole -0.056685 -0.087927 -0.028493 0.015828 0.161274 0.009131 -0.132781 0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 15.448781 19.267783 17.420950 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole -0.001075 0.050214 -0.014991 0.047446 -0.160109 0.001747 0.175100 -0.000672 -0.097661 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 14.697119 21.016972 15.536366 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole 0.066905 -0.052623 0.037692 -0.033015 0.046038 -0.056469 -0.083730 -0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 14.079367 22.502156 14.017514 - znuc, monopole 7.000000 -6.844356 - dipole 0.128196 -0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole -0.024985 0.019560 -0.010956 0.010338 -0.013703 0.014533 0.024660 0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 12.631739 16.115283 15.697232 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 -0.134363 -0.337213 - duadrupole 0.044076 -0.065351 0.021276 -0.052673 0.059479 -0.009395 - octupole -0.000862 0.071606 0.028175 -0.027284 -0.078173 0.054551 0.049998 -0.053689 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 11.026651 15.504761 14.305792 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole -0.001131 -0.023490 -0.018307 0.014058 0.034435 -0.020126 -0.016128 0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 20.198253 13.410964 20.487067 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109388 0.037751 - octupole -0.049872 0.009996 0.025010 0.027426 -0.025766 0.018699 0.000756 0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 23.077255 14.604039 20.906881 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 0.461479 -0.227968 - duadrupole 0.657691 1.380421 -2.038112 0.516799 0.477705 -0.276530 - octupole 0.079313 -0.431186 -0.101331 0.400784 0.037962 0.079016 0.063368 -0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 22.130451 17.726909 20.408007 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 0.118662 0.023762 - duadrupole 0.102512 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole 0.066522 0.033296 0.033078 -0.141141 -0.015825 -0.201472 -0.017252 0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 23.812871 19.781488 20.394717 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 0.447125 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole -0.082638 -0.017348 0.002354 0.067724 -0.011182 0.121329 0.008828 -0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 25.220466 21.484185 20.334908 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 -0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013044 -0.009826 - octupole 0.020681 0.004365 -0.003281 -0.025182 0.001816 -0.038396 0.001465 0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 18.608928 19.125305 19.816669 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 0.204132 0.059744 - duadrupole -0.127967 0.303138 -0.175171 -0.361286 0.022579 -0.002456 - octupole 0.135031 0.064490 0.081833 0.097857 -0.020810 -0.250721 -0.061023 0.115690 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 19.054447 16.509694 20.055450 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099040 -0.017364 - octupole 0.006938 -0.415001 0.020563 0.384074 -0.195901 0.173546 0.175337 -0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 16.941107 14.889252 19.907872 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 -0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole -0.362347 -0.032097 -0.067519 -0.068455 -0.111862 0.234600 0.179381 0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 14.893655 15.696601 18.601564 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 -0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121103 -0.078949 0.001930 -0.434804 - octupole -0.128235 0.066191 -0.098878 0.110012 -0.100436 0.054183 0.199314 0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 16.565021 19.878307 18.517351 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 0.216246 0.112894 - duadrupole 0.231615 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole -0.150223 -0.184993 0.116290 -0.324246 0.434434 -0.009658 -0.550724 0.159881 0.509238 0.036069 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 14.963087 18.070045 17.449823 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 -0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole 0.190699 0.292172 0.613901 -0.301576 -0.166371 -0.195835 -0.447530 0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 15.072950 20.142378 16.478658 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 -0.079077 0.047152 - duadrupole 0.177104 0.006089 -0.183194 0.206575 0.019465 0.143936 - octupole 0.090233 -0.197003 -0.239935 0.184502 0.227648 -0.047722 0.012288 -0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 14.388243 21.759564 14.776940 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 0.228151 -0.227536 - duadrupole -0.226596 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole -0.091256 0.060414 -0.057038 0.055047 -0.054877 0.044246 0.111914 0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 13.554566 16.493795 16.587964 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 -0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142766 -0.071307 -0.108121 - octupole -0.091909 -0.188995 -0.277331 0.069309 -0.049758 0.131139 0.327089 -0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 11.829195 15.810022 15.001512 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 -0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole -0.040090 -0.095467 -0.079919 0.058683 0.126158 -0.051889 -0.046239 0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 19.385275 14.334287 20.289190 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 0.115721 -0.003434 - duadrupole 0.270648 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole -0.344269 -0.046395 0.191856 -0.007750 -0.171132 0.125564 -0.020724 0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 21.637754 14.007502 20.696974 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 0.026718 0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole -0.052482 -0.017862 -0.101437 -0.090246 0.034757 0.166575 0.066680 -0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 20.833523 17.744344 20.213797 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 -0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole 0.195067 0.254354 0.246051 0.014825 0.033884 -0.213914 -0.279935 0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 22.603853 16.165474 20.657444 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 -0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole -0.174029 -0.208769 -0.072703 0.067761 -0.017390 0.228215 0.090093 -0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 22.971661 18.754198 20.401362 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 -0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole -0.138702 -0.038897 -0.021776 0.027863 -0.007098 0.125103 0.028874 0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 24.516668 20.632836 20.364812 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 0.265565 -0.005667 - duadrupole 0.053653 0.238490 -0.292143 0.457319 -0.029902 -0.030180 - octupole 0.084792 -0.000751 -0.009942 -0.105320 0.003154 -0.171502 0.006789 0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 19.437335 14.373844 20.823910 - polarizability tensor 4.528424 -1.917551 0.356759 -1.444128 6.305472 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 11.793233 15.261377 15.199334 - polarizability tensor 3.614271 1.113333 2.917217 0.029793 1.821479 -0.641372 2.940226 0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.235211 20.923037 20.781206 - polarizability tensor 5.676904 5.144008 -0.727141 3.339388 4.987137 0.427750 -0.708035 0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 14.733249 22.185796 14.975861 - polarizability tensor 2.014659 -1.411522 2.754673 -0.096191 2.864917 -1.368381 1.742510 -2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.541856 16.471040 16.562186 - polarizability tensor 2.644773 0.420648 2.214495 0.536299 1.326286 0.648852 1.549497 0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.003855 18.771895 20.418488 - polarizability tensor 2.247828 1.783499 0.065363 1.149026 2.379896 -0.043699 0.251241 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.373657 13.975670 20.649084 - polarizability tensor 5.239487 1.239561 0.807464 0.101560 1.234380 -0.089842 1.195631 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.655183 19.013352 19.799218 - polarizability tensor 5.018067 -4.875224 1.088491 -1.811907 4.579786 -0.228246 1.487331 -1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.026740 14.949112 19.884454 - polarizability tensor 9.182809 1.751286 0.995508 0.084237 1.828484 -0.387734 2.027093 -0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.065398 20.168395 16.458857 - polarizability tensor 1.671051 -0.572015 1.296469 -0.542823 2.162529 -1.769890 1.031019 -1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.964567 16.559444 20.028852 - polarizability tensor 3.009105 0.265453 0.164855 0.392052 2.422902 -0.078852 0.571863 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.392445 17.895698 17.063706 - polarizability tensor 5.263037 4.454329 1.663069 4.279634 13.403258 -0.812801 1.522053 -0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.900671 17.650498 19.643398 - polarizability tensor 13.654116 2.638423 1.355104 2.419214 4.125879 -0.076557 2.653092 0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.639895 16.330962 20.642019 - polarizability tensor 2.960545 -0.866099 0.523975 -1.061800 5.117296 -0.710667 0.733477 -0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.499570 19.795880 18.428589 - polarizability tensor 5.617929 1.381554 4.877276 1.251780 2.735770 1.290944 3.659516 1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.697922 17.766100 20.775147 - polarizability tensor 12.949896 2.646490 1.785363 2.381876 4.179637 0.329227 2.420663 0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.894137 15.809486 18.507980 - polarizability tensor 3.040417 -1.393146 2.596746 -0.925311 4.759664 -3.665080 1.764101 -3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.494442 18.278469 17.762915 - polarizability tensor 4.688607 4.661428 1.698768 4.460102 13.263283 -0.923066 0.789241 -0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.652686 22.006727 20.318571 - polarizability tensor 2.586920 0.528103 -0.018359 0.362647 2.294262 0.043707 0.109841 0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.536921 15.316110 13.877231 - polarizability tensor 2.625149 0.213208 0.424935 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.891319 22.956369 13.551772 - polarizability tensor 2.080856 -0.280706 0.149350 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.117587 14.628985 21.740225 - polarizability tensor 8.609786 -3.161439 4.330873 -3.390210 5.869745 -2.969762 2.433189 -1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.256533 13.708699 19.258810 - polarizability tensor 5.800146 0.752295 1.186095 -0.172145 7.005037 -0.548345 0.964192 -0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.132277 12.762056 20.535450 - polarizability tensor 2.238895 0.092051 0.189597 0.321947 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.980972 20.308796 20.498038 - polarizability tensor 3.548724 1.577098 0.269188 2.005619 4.318439 -0.319351 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.459918 16.214241 15.185105 - polarizability tensor 5.713598 1.433755 3.432521 2.871854 2.858065 3.181668 3.126669 2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.208275 21.105391 19.132800 - polarizability tensor 6.533271 -0.444461 1.547291 1.225663 5.733017 -0.256666 1.271658 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.163350 15.939741 14.541306 - polarizability tensor 6.707222 2.929001 4.115173 3.681834 2.332214 2.837643 2.110817 1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.562712 21.413873 14.343101 - polarizability tensor 1.169669 -1.724724 0.923944 -2.191901 7.141826 -4.969366 0.687890 -2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.397119 20.755488 19.814733 - polarizability tensor 5.399130 5.564497 0.213557 4.017191 5.082742 -0.297191 1.393778 0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.188755 20.516168 20.380276 - polarizability tensor 10.702596 -1.789313 3.005774 0.514549 5.742470 3.210321 2.108866 0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.930648 14.869978 20.477844 - polarizability tensor 8.115953 -0.753025 -0.167711 -1.550833 6.978558 -4.365403 0.764813 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.465761 14.435824 20.177622 - polarizability tensor 9.556643 -3.699452 -1.931269 -3.986424 6.261110 1.285638 0.992072 -0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.622808 14.272735 19.797694 - polarizability tensor 4.541347 -2.067477 1.036870 -1.580945 6.187413 -0.395977 1.497097 -1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.827923 21.737971 14.927977 - polarizability tensor 2.204024 -0.653489 0.327501 -1.701252 5.540979 -4.544585 0.766862 -3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S 10.380970 24.214814 8.155916 - znuc, mass 16.000000 31.972070 - - Atom A02C 12.236307 26.941865 8.561752 - znuc, mass 6.000000 12.000000 - - Atom A03C 11.272010 29.446035 8.633478 - znuc, mass 6.000000 12.000000 - - Atom A04S 8.009629 30.182751 8.266597 - znuc, mass 16.000000 31.972070 - - Atom A05C 7.177104 27.831340 6.020862 - znuc, mass 6.000000 12.000000 - - Atom A06C 8.148492 25.435863 5.963116 - znuc, mass 6.000000 12.000000 - - Atom A07C 7.396829 23.686674 4.078532 - znuc, mass 6.000000 12.000000 - - Atom A08N 6.779075 22.201491 2.559680 - znuc, mass 7.000000 14.003070 - - Atom A09C 5.331451 28.588364 4.239399 - znuc, mass 6.000000 12.000000 - - Atom A10N 3.726363 29.198887 2.847959 - znuc, mass 7.000000 14.003070 - - Atom A11N 12.897966 31.292679 9.029232 - znuc, mass 7.000000 14.003070 - - Atom A12S 15.776968 30.099603 9.449046 - znuc, mass 16.000000 31.972070 - - Atom A13C 14.830162 26.976734 8.950172 - znuc, mass 6.000000 12.000000 - - Atom A14C 16.512581 24.922154 8.936881 - znuc, mass 6.000000 12.000000 - - Atom A15N 17.920176 23.219456 8.877072 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 10.380970 24.214814 8.155916 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole 0.081100 0.120946 -0.015291 -0.151351 0.112179 -0.258142 -0.096888 0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 12.236307 26.941865 8.561752 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 -0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole -0.080562 -0.064792 -0.069734 0.081135 0.040643 0.191017 0.029091 -0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C 11.272010 29.446035 8.633478 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole 0.154202 0.066939 -0.010607 -0.076422 0.037680 -0.126335 -0.027074 -0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 8.009629 30.182751 8.266597 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 -0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole -0.376726 -0.162146 -0.007751 0.064505 -0.144810 0.217808 0.152561 0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 7.177104 27.831340 6.020862 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 -0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole -0.056685 0.087927 -0.028493 -0.015828 0.161274 0.009131 -0.132781 0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C 8.148492 25.435863 5.963116 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 -0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole -0.001075 -0.050214 -0.014991 -0.047446 -0.160108 0.001747 0.175099 -0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 7.396829 23.686674 4.078532 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 -0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole 0.066905 0.052623 0.037692 0.033015 0.046038 -0.056469 -0.083730 -0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 6.779075 22.201491 2.559680 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole -0.024985 -0.019560 -0.010956 -0.010338 -0.013703 0.014533 0.024660 0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 5.331451 28.588364 4.239399 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole -0.000862 -0.071606 0.028175 0.027284 -0.078173 0.054551 0.049997 -0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 3.726363 29.198887 2.847959 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 -0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole -0.001131 0.023490 -0.018307 -0.014058 0.034435 -0.020126 -0.016128 0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 12.897966 31.292679 9.029232 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 -0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole -0.049872 -0.009996 0.025010 -0.027426 -0.025766 0.018699 0.000756 0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 15.776968 30.099603 9.449046 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 -0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole 0.079313 0.431186 -0.101331 -0.400784 0.037962 0.079017 0.063368 -0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 14.830162 26.976734 8.950172 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 -0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole 0.066522 -0.033296 0.033077 0.141141 -0.015825 -0.201472 -0.017252 0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 16.512581 24.922154 8.936881 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 -0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole -0.082638 0.017348 0.002354 -0.067724 -0.011182 0.121329 0.008828 -0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 17.920176 23.219456 8.877072 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole 0.020681 -0.004365 -0.003281 0.025182 0.001816 -0.038396 0.001465 0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 11.308639 25.578340 8.358834 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 -0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole 0.135031 -0.064489 0.081833 -0.097858 -0.020810 -0.250721 -0.061022 0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 11.754159 28.193950 8.597615 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 -0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole 0.006937 0.415001 0.020564 -0.384074 -0.195901 0.173547 0.175337 -0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 9.640820 29.814393 8.450038 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole -0.362347 0.032096 -0.067519 0.068455 -0.111862 0.234599 0.179381 0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 7.593367 29.007045 7.143730 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole -0.128236 -0.066192 -0.098878 -0.110011 -0.100435 0.054183 0.199314 0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 9.264731 24.825339 7.059516 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 -0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole -0.150222 0.184993 0.116290 0.324246 0.434434 -0.009658 -0.550724 0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 7.662798 26.633601 5.991989 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole 0.190699 -0.292172 0.613901 0.301575 -0.166371 -0.195836 -0.447530 0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 7.772660 24.561268 5.020824 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole 0.090233 0.197003 -0.239935 -0.184502 0.227647 -0.047722 0.012288 -0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 7.087952 22.944082 3.319106 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 -0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole -0.091256 -0.060414 -0.057038 -0.055047 -0.054877 0.044246 0.111914 0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 6.254278 28.209852 5.130130 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole -0.091909 0.188995 -0.277331 -0.069309 -0.049758 0.131139 0.327089 -0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 4.528907 28.893626 3.543679 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole -0.040090 0.095467 -0.079919 -0.058683 0.126158 -0.051889 -0.046239 0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 12.084988 30.369357 8.831355 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 -0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole -0.344269 0.046395 0.191856 0.007750 -0.171132 0.125564 -0.020724 0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 14.337467 30.696141 9.239139 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 -0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole -0.052482 0.017861 -0.101437 0.090246 0.034757 0.166574 0.066680 -0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 13.533235 26.959299 8.755962 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole 0.195067 -0.254353 0.246051 -0.014826 0.033884 -0.213914 -0.279935 0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 15.303565 28.538168 9.199609 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole -0.174029 0.208769 -0.072703 -0.067761 -0.017390 0.228215 0.090093 -0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 15.671372 25.949444 8.943527 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole -0.138702 0.038897 -0.021776 -0.027862 -0.007098 0.125103 0.028874 0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 17.216379 24.070805 8.906976 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 -0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole 0.084793 0.000751 -0.009942 0.105319 0.003154 -0.171502 0.006789 0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 11.664279 28.144200 8.571017 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 4.159630 28.489407 3.727272 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.934840 23.780537 9.323269 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 6.527631 22.965676 3.470142 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.194153 26.425177 6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.322521 30.430909 8.339860 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.165474 30.267818 8.719786 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.354894 25.690292 8.341383 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.726452 29.754533 8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.241568 28.232607 5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.703566 25.931747 8.960653 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.765107 24.535251 5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.397634 26.937543 9.317312 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.339607 28.372680 9.184184 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.593849 28.894160 7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.600382 27.053146 8.185563 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.199280 24.907766 6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.092155 26.807948 5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.352395 22.696914 8.860735 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.236633 29.387539 2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.591027 21.747277 2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.073370 30.727973 9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.831991 31.941587 9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.630360 29.833668 9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.096935 23.948244 8.356857 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.863062 28.763906 3.083473 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.888465 24.187477 8.922441 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.492944 29.442270 3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.432957 22.517850 3.518027 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.680659 24.394823 9.040343 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.907985 23.598254 7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.956246 30.994947 7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.817300 30.074657 10.282389 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.137048 30.329800 9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.262422 23.289773 2.885267 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S 19.600566 17.828580 3.301918 - znuc, mass 16.000000 31.972070 - - Atom A02C 17.745230 20.555630 2.896083 - znuc, mass 6.000000 12.000000 - - Atom A03C 18.709526 23.059800 2.824356 - znuc, mass 6.000000 12.000000 - - Atom A04S 21.971908 23.796516 3.191237 - znuc, mass 16.000000 31.972070 - - Atom A05C 22.804432 21.445105 5.436972 - znuc, mass 6.000000 12.000000 - - Atom A06C 21.833045 19.049628 5.494719 - znuc, mass 6.000000 12.000000 - - Atom A07C 22.584708 17.300439 7.379303 - znuc, mass 6.000000 12.000000 - - Atom A08N 23.202461 15.815256 8.898155 - znuc, mass 7.000000 14.003070 - - Atom A09C 24.650086 22.202129 7.218436 - znuc, mass 6.000000 12.000000 - - Atom A10N 26.255174 22.812652 8.609875 - znuc, mass 7.000000 14.003070 - - Atom A11N 17.083570 24.906444 2.428602 - znuc, mass 7.000000 14.003070 - - Atom A12S 14.204569 23.713368 2.008788 - znuc, mass 16.000000 31.972070 - - Atom A13C 15.151375 20.590499 2.507663 - znuc, mass 6.000000 12.000000 - - Atom A14C 13.468955 18.535919 2.520953 - znuc, mass 6.000000 12.000000 - - Atom A15N 12.061361 16.833221 2.580763 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 19.600566 17.828580 3.301918 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole -0.081100 0.120946 0.015291 -0.151351 -0.112179 0.258142 0.096888 -0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 17.745230 20.555630 2.896083 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 -0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole 0.080562 -0.064792 0.069734 0.081135 -0.040643 -0.191017 -0.029091 0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C 18.709526 23.059800 2.824356 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole -0.154202 0.066939 0.010607 -0.076422 -0.037680 0.126335 0.027074 0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 21.971908 23.796516 3.191237 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 -0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole 0.376726 -0.162146 0.007751 0.064505 0.144810 -0.217808 -0.152561 -0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 22.804432 21.445105 5.436972 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 -0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole 0.056685 0.087927 0.028493 -0.015828 -0.161274 -0.009131 0.132781 -0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C 21.833045 19.049628 5.494719 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 -0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole 0.001075 -0.050214 0.014991 -0.047446 0.160108 -0.001747 -0.175099 0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 22.584708 17.300439 7.379303 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 -0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole -0.066905 0.052623 -0.037692 0.033015 -0.046038 0.056469 0.083730 0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 23.202461 15.815256 8.898155 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole 0.024985 -0.019560 0.010956 -0.010338 0.013703 -0.014533 -0.024660 -0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 24.650086 22.202129 7.218436 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole 0.000862 -0.071606 -0.028175 0.027284 0.078173 -0.054551 -0.049997 0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 26.255174 22.812652 8.609875 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 -0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole 0.001131 0.023490 0.018307 -0.014058 -0.034435 0.020126 0.016128 -0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 17.083570 24.906444 2.428602 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 -0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole 0.049872 -0.009996 -0.025010 -0.027426 0.025766 -0.018699 -0.000756 -0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 14.204569 23.713368 2.008788 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 -0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole -0.079313 0.431186 0.101331 -0.400784 -0.037962 -0.079017 -0.063368 0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 15.151375 20.590499 2.507663 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 -0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole -0.066522 -0.033296 -0.033077 0.141141 0.015825 0.201472 0.017252 -0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 13.468955 18.535919 2.520953 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 -0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole 0.082638 0.017348 -0.002354 -0.067724 0.011182 -0.121329 -0.008828 0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 12.061361 16.833221 2.580763 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole -0.020681 -0.004365 0.003281 0.025182 -0.001816 0.038396 -0.001465 -0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 18.672898 19.192105 3.099001 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 -0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole -0.135031 -0.064489 -0.081833 -0.097858 0.020810 0.250721 0.061022 -0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 18.227378 21.807715 2.860220 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 -0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole -0.006937 0.415001 -0.020564 -0.384074 0.195901 -0.173547 -0.175337 0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 20.340717 23.428158 3.007797 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole 0.362347 0.032096 0.067519 0.068455 0.111862 -0.234599 -0.179381 -0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 22.388170 22.620810 4.314105 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole 0.128236 -0.066192 0.098878 -0.110011 0.100435 -0.054183 -0.199314 -0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 20.716806 18.439104 4.398319 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 -0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole 0.150222 0.184993 -0.116290 0.324246 -0.434434 0.009658 0.550724 -0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 22.318739 20.247366 5.465846 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole -0.190699 -0.292172 -0.613901 0.301575 0.166371 0.195836 0.447530 -0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 22.208877 18.175033 6.437011 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole -0.090233 0.197003 0.239935 -0.184502 -0.227647 0.047722 -0.012288 0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 22.893585 16.557847 8.138729 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 -0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole 0.091256 -0.060414 0.057038 -0.055047 0.054877 -0.044246 -0.111914 -0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 23.727259 21.823617 6.327704 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole 0.091909 0.188995 0.277331 -0.069309 0.049758 -0.131139 -0.327089 0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 25.452630 22.507391 7.914156 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole 0.040090 0.095467 0.079919 -0.058683 -0.126158 0.051889 0.046239 -0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 17.896548 23.983122 2.626479 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 -0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole 0.344269 0.046395 -0.191856 0.007750 0.171132 -0.125564 0.020724 -0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 15.644070 24.309906 2.218695 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 -0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole 0.052482 0.017861 0.101437 0.090246 -0.034757 -0.166574 -0.066680 0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 16.448302 20.573065 2.701873 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole -0.195067 -0.254353 -0.246051 -0.014826 -0.033884 0.213914 0.279935 -0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 14.677972 22.151933 2.258226 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole 0.174029 0.208769 0.072703 -0.067761 0.017390 -0.228215 -0.090093 0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 14.310165 19.563209 2.514308 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole 0.138702 0.038897 0.021776 -0.027862 0.007098 -0.125103 -0.028874 -0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 12.765158 17.684570 2.550858 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 -0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole -0.084793 0.000751 0.009942 0.105319 -0.003154 0.171502 -0.006789 -0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 18.317257 21.757965 2.886817 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 25.821907 22.103172 7.730563 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.046697 17.394302 2.134565 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 23.453906 16.579441 7.987693 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.787384 20.038942 5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.659016 24.044674 3.117975 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.816063 23.881583 2.738049 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.626643 19.304057 3.116452 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.255084 23.368298 3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.739969 21.846372 6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.277971 19.545512 2.497182 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.216429 18.149016 6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.583903 20.551308 2.140523 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.641930 21.986445 2.273651 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.387688 22.507925 4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.381154 20.666911 3.272272 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.782257 18.521531 4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.889381 20.421713 5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.629141 16.310679 2.597099 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.744904 23.001304 9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.390509 15.361042 9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.908167 24.341738 2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.149546 25.555353 2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.351176 23.447433 2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.884602 17.562009 3.100978 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.118475 22.377672 8.374362 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.093072 17.801242 2.535393 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.488592 23.056035 7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.548580 16.131615 7.939807 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.300878 18.008588 2.417492 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.073552 17.212019 3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.025291 24.608712 3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.164236 23.688423 1.175445 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.844488 23.943565 2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.719115 16.903538 8.572568 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 34.981527 26.875065 -8.155916 - znuc, mass 16.000000 31.972070 - - Atom A02C 33.126190 24.148015 -8.561752 - znuc, mass 6.000000 12.000000 - - Atom A03C 34.090487 21.643844 -8.633478 - znuc, mass 6.000000 12.000000 - - Atom A04S 37.352869 20.907129 -8.266597 - znuc, mass 16.000000 31.972070 - - Atom A05C 38.185393 23.258540 -6.020862 - znuc, mass 6.000000 12.000000 - - Atom A06C 37.214006 25.654017 -5.963116 - znuc, mass 6.000000 12.000000 - - Atom A07C 37.965669 27.403206 -4.078532 - znuc, mass 6.000000 12.000000 - - Atom A08N 38.583422 28.888389 -2.559680 - znuc, mass 7.000000 14.003070 - - Atom A09C 40.031047 22.501515 -4.239399 - znuc, mass 6.000000 12.000000 - - Atom A10N 41.636135 21.890992 -2.847959 - znuc, mass 7.000000 14.003070 - - Atom A11N 32.464531 19.797200 -9.029232 - znuc, mass 7.000000 14.003070 - - Atom A12S 29.585530 20.990277 -9.449046 - znuc, mass 16.000000 31.972070 - - Atom A13C 30.532336 24.113146 -8.950172 - znuc, mass 6.000000 12.000000 - - Atom A14C 28.849916 26.167726 -8.936881 - znuc, mass 6.000000 12.000000 - - Atom A15N 27.442322 27.870423 -8.877072 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 34.981527 26.875065 -8.155916 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 -1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole -0.081100 -0.120946 0.015291 0.151351 -0.112179 0.258142 0.096888 -0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 33.126190 24.148015 -8.561752 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole 0.080562 0.064792 0.069734 -0.081135 -0.040643 -0.191017 -0.029091 0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 34.090487 21.643844 -8.633478 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 -0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole -0.154202 -0.066939 0.010607 0.076422 -0.037680 0.126335 0.027074 0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 37.352869 20.907129 -8.266597 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole 0.376726 0.162146 0.007751 -0.064505 0.144810 -0.217808 -0.152561 -0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 38.185393 23.258540 -6.020862 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole 0.056685 -0.087927 0.028493 0.015828 -0.161274 -0.009131 0.132781 -0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 37.214006 25.654017 -5.963116 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole 0.001075 0.050214 0.014991 0.047446 0.160108 -0.001747 -0.175099 0.000672 -0.097660 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 37.965669 27.403206 -4.078532 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole -0.066905 -0.052623 -0.037692 -0.033015 -0.046038 0.056469 0.083730 0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 38.583422 28.888389 -2.559680 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 -0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole 0.024985 0.019560 0.010956 0.010338 0.013703 -0.014533 -0.024660 -0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 40.031047 22.501515 -4.239399 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 -0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole 0.000862 0.071606 -0.028175 -0.027284 0.078173 -0.054551 -0.049997 0.053688 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 41.636135 21.890992 -2.847959 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole 0.001131 -0.023490 0.018307 0.014058 -0.034435 0.020126 0.016128 -0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 32.464531 19.797200 -9.029232 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole 0.049872 0.009996 -0.025010 0.027426 0.025766 -0.018699 -0.000756 -0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 29.585530 20.990277 -9.449046 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole -0.079313 -0.431186 0.101331 0.400784 -0.037962 -0.079017 -0.063368 0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 30.532336 24.113146 -8.950172 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole -0.066522 0.033296 -0.033077 -0.141141 0.015825 0.201472 0.017252 -0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 28.849916 26.167726 -8.936881 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole 0.082638 -0.017348 -0.002354 0.067724 0.011182 -0.121329 -0.008828 0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 27.442322 27.870423 -8.877072 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 -0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole -0.020681 0.004365 0.003281 -0.025182 -0.001816 0.038396 -0.001465 -0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 34.053859 25.511540 -8.358834 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole -0.135031 0.064489 -0.081833 0.097858 0.020810 0.250721 0.061022 -0.115691 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 33.608339 22.895930 -8.597615 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole -0.006937 -0.415001 -0.020564 0.384074 0.195901 -0.173547 -0.175337 0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 35.721678 21.275487 -8.450038 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 -0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole 0.362347 -0.032096 0.067519 -0.068455 0.111862 -0.234599 -0.179381 -0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 37.769131 22.082834 -7.143730 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 -0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole 0.128236 0.066192 0.098878 0.110011 0.100435 -0.054183 -0.199314 -0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 36.097767 26.264541 -7.059516 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole 0.150222 -0.184993 -0.116290 -0.324246 -0.434434 0.009658 0.550724 -0.159880 0.509238 0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 37.699700 24.456278 -5.991989 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 -0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole -0.190699 0.292172 -0.613901 -0.301575 0.166371 0.195836 0.447530 -0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 37.589838 26.528611 -5.020824 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 -0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole -0.090233 -0.197003 0.239935 0.184502 -0.227647 0.047722 -0.012288 0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 38.274546 28.145797 -3.319106 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole 0.091256 0.060414 0.057038 0.055047 0.054877 -0.044246 -0.111914 -0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 39.108220 22.880028 -5.130130 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 -0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole 0.091909 -0.188995 0.277331 0.069309 0.049758 -0.131139 -0.327089 0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 40.833591 22.196254 -3.543679 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 -0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole 0.040090 -0.095467 0.079919 0.058683 -0.126158 0.051889 0.046239 -0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 33.277509 20.720522 -8.831355 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole 0.344269 -0.046395 -0.191856 -0.007750 0.171132 -0.125564 0.020724 -0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 31.025031 20.393739 -9.239139 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole 0.052482 -0.017861 0.101437 -0.090246 -0.034757 -0.166574 -0.066680 0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 31.829263 24.130580 -8.755962 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 -0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole -0.195067 0.254353 -0.246051 0.014826 -0.033884 0.213914 0.279935 -0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 30.058933 22.551711 -9.199609 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 -0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole 0.174029 -0.208769 0.072703 0.067761 0.017390 -0.228215 -0.090093 0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 29.691126 25.140436 -8.943527 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 -0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole 0.138702 -0.038897 0.021776 0.027862 0.007098 -0.125103 -0.028874 -0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 28.146119 27.019075 -8.906976 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole -0.084793 -0.000751 0.009942 -0.105319 -0.003154 0.171502 -0.006789 -0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 33.225449 20.760080 -9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444129 6.305470 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 40.869553 21.647609 -3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821479 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.427576 27.309275 -9.323370 - polarizability tensor 5.676900 -5.144008 -0.727143 -3.339388 4.987141 -0.427749 -0.708036 -0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 37.929540 28.572029 -3.518027 - polarizability tensor 2.014660 1.411523 2.754674 0.096191 2.864916 1.368380 1.742511 2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 39.120930 22.857273 -5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.658932 25.158132 -8.960653 - polarizability tensor 2.247827 -1.783499 0.065362 -1.149026 2.379898 0.043699 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.289127 20.361906 -9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.007603 25.399587 -8.341383 - polarizability tensor 5.018070 4.875224 1.088491 1.811907 4.579783 0.228245 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 35.636045 21.335346 -8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.597390 26.554628 -5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.698218 22.945679 -8.571017 - polarizability tensor 3.009104 -0.265453 0.164854 -0.392052 2.422903 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.270342 24.281931 -5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522052 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.762115 24.036734 -8.185563 - polarizability tensor 13.654114 -2.638427 1.355101 -2.419218 4.125882 0.076557 2.653090 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.022891 22.717200 -9.184184 - polarizability tensor 2.960546 0.866100 0.523975 1.061801 5.117295 0.710667 0.733477 0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 36.163218 26.182114 -6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.964864 24.152337 -9.317312 - polarizability tensor 12.949895 -2.646494 1.785361 -2.381880 4.179640 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.768649 22.195720 -7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.168344 24.664703 -6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460098 13.263287 0.923067 0.789240 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.010102 28.392966 -8.860735 - polarizability tensor 2.586919 -0.528104 -0.018359 -0.362648 2.294263 -0.043707 0.109841 -0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 42.125865 21.702341 -2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.771470 29.342602 -2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.545198 21.015222 -10.282389 - polarizability tensor 8.609790 3.161438 4.330874 3.390209 5.869742 2.969759 2.433190 1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.406252 20.094933 -7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.530507 19.148292 -9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.681815 26.695035 -9.040202 - polarizability tensor 3.548722 -1.577098 0.269187 -2.005619 4.318440 0.319352 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 41.202868 22.600473 -3.727272 - polarizability tensor 5.713597 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.454513 27.491626 -7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225663 5.733018 0.256666 1.271657 0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 40.499436 22.325973 -3.083473 - polarizability tensor 6.707221 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.100077 27.800106 -2.885267 - polarizability tensor 1.169671 1.724727 0.923947 2.191905 7.141823 4.969365 0.687892 2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.265668 27.141726 -8.356897 - polarizability tensor 5.399126 -5.564498 0.213556 -4.017191 5.082747 0.297192 1.393777 -0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 35.474033 26.902402 -8.922442 - polarizability tensor 10.702598 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.732137 21.256211 -9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.197023 20.822062 -8.719786 - polarizability tensor 9.556647 3.699450 -1.931270 3.986422 6.261107 -1.285638 0.992071 0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.039977 20.658971 -8.339860 - polarizability tensor 4.541349 2.067478 1.036870 1.580946 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.834866 28.124204 -3.470143 - polarizability tensor 2.204025 0.653491 0.327503 1.701255 5.540977 4.544585 0.766864 3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 25.761931 33.261300 -3.301918 - znuc, mass 16.000000 31.972070 - - Atom A02C 27.617268 30.534250 -2.896083 - znuc, mass 6.000000 12.000000 - - Atom A03C 26.652971 28.030079 -2.824356 - znuc, mass 6.000000 12.000000 - - Atom A04S 23.390590 27.293364 -3.191237 - znuc, mass 16.000000 31.972070 - - Atom A05C 22.558065 29.644775 -5.436972 - znuc, mass 6.000000 12.000000 - - Atom A06C 23.529453 32.040252 -5.494719 - znuc, mass 6.000000 12.000000 - - Atom A07C 22.777789 33.789441 -7.379303 - znuc, mass 6.000000 12.000000 - - Atom A08N 22.160036 35.274624 -8.898155 - znuc, mass 7.000000 14.003070 - - Atom A09C 20.712412 28.887750 -7.218436 - znuc, mass 6.000000 12.000000 - - Atom A10N 19.107324 28.277227 -8.609875 - znuc, mass 7.000000 14.003070 - - Atom A11N 28.278927 26.183435 -2.428602 - znuc, mass 7.000000 14.003070 - - Atom A12S 31.157929 27.376512 -2.008788 - znuc, mass 16.000000 31.972070 - - Atom A13C 30.211123 30.499380 -2.507663 - znuc, mass 6.000000 12.000000 - - Atom A14C 31.893542 32.553961 -2.520953 - znuc, mass 6.000000 12.000000 - - Atom A15N 33.301137 34.256658 -2.580763 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 25.761931 33.261300 -3.301918 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 -1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole 0.081100 -0.120946 -0.015291 0.151351 0.112179 -0.258142 -0.096888 0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 27.617268 30.534250 -2.896083 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole -0.080562 0.064792 -0.069734 -0.081135 0.040643 0.191017 0.029091 -0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 26.652971 28.030079 -2.824356 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 -0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole 0.154202 -0.066939 -0.010607 0.076422 0.037680 -0.126335 -0.027074 -0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 23.390590 27.293364 -3.191237 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole -0.376726 0.162146 -0.007751 -0.064505 -0.144810 0.217808 0.152561 0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 22.558065 29.644775 -5.436972 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole -0.056685 -0.087927 -0.028493 0.015828 0.161274 0.009131 -0.132781 0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 23.529453 32.040252 -5.494719 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole -0.001075 0.050214 -0.014991 0.047446 -0.160108 0.001747 0.175099 -0.000672 -0.097660 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 22.777789 33.789441 -7.379303 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole 0.066905 -0.052623 0.037692 -0.033015 0.046038 -0.056469 -0.083730 -0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 22.160036 35.274624 -8.898155 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 -0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole -0.024985 0.019560 -0.010956 0.010338 -0.013703 0.014533 0.024660 0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 20.712412 28.887750 -7.218436 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 -0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole -0.000862 0.071606 0.028175 -0.027284 -0.078173 0.054551 0.049997 -0.053688 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 19.107324 28.277227 -8.609875 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole -0.001131 -0.023490 -0.018307 0.014058 0.034435 -0.020126 -0.016128 0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 28.278927 26.183435 -2.428602 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole -0.049872 0.009996 0.025010 0.027426 -0.025766 0.018699 0.000756 0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 31.157929 27.376512 -2.008788 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole 0.079313 -0.431186 -0.101331 0.400784 0.037962 0.079017 0.063368 -0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 30.211123 30.499380 -2.507663 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole 0.066522 0.033296 0.033077 -0.141141 -0.015825 -0.201472 -0.017252 0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 31.893542 32.553961 -2.520953 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole -0.082638 -0.017348 0.002354 0.067724 -0.011182 0.121329 0.008828 -0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 33.301137 34.256658 -2.580763 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 -0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole 0.020681 0.004365 -0.003281 -0.025182 0.001816 -0.038396 0.001465 0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 26.689600 31.897775 -3.099001 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole 0.135031 0.064489 0.081833 0.097858 -0.020810 -0.250721 -0.061022 0.115691 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 27.135120 29.282165 -2.860220 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole 0.006937 -0.415001 0.020564 0.384074 -0.195901 0.173547 0.175337 -0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 25.021781 27.661722 -3.007797 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 -0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole -0.362347 -0.032096 -0.067519 -0.068455 -0.111862 0.234599 0.179381 0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 22.974328 28.469069 -4.314105 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 -0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole -0.128236 0.066192 -0.098878 0.110011 -0.100435 0.054183 0.199314 0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 24.645692 32.650776 -4.398319 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole -0.150222 -0.184993 0.116290 -0.324246 0.434434 -0.009658 -0.550724 0.159880 0.509238 0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 23.043759 30.842513 -5.465846 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 -0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole 0.190699 0.292172 0.613901 -0.301575 -0.166371 -0.195836 -0.447530 0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 23.153621 32.914846 -6.437011 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 -0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole 0.090233 -0.197003 -0.239935 0.184502 0.227647 -0.047722 0.012288 -0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 22.468913 34.532032 -8.138729 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole -0.091256 0.060414 -0.057038 0.055047 -0.054877 0.044246 0.111914 0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 21.635238 29.266262 -6.327704 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 -0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole -0.091909 -0.188995 -0.277331 0.069309 -0.049758 0.131139 0.327089 -0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 19.909868 28.582489 -7.914156 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 -0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole -0.040090 -0.095467 -0.079919 0.058683 0.126158 -0.051889 -0.046239 0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 27.465949 27.106757 -2.626479 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole -0.344269 -0.046395 0.191856 -0.007750 -0.171132 0.125564 -0.020724 0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 29.718428 26.779974 -2.218695 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole -0.052482 -0.017861 -0.101437 -0.090246 0.034757 0.166574 0.066680 -0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 28.914196 30.516815 -2.701873 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 -0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole 0.195067 0.254353 0.246051 0.014826 0.033884 -0.213914 -0.279935 0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 30.684526 28.937946 -2.258226 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 -0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole -0.174029 -0.208769 -0.072703 0.067761 -0.017390 0.228215 0.090093 -0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 31.052333 31.526671 -2.514308 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 -0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole -0.138702 -0.038897 -0.021776 0.027862 -0.007098 0.125103 0.028874 0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 32.597340 33.405309 -2.550858 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole 0.084793 -0.000751 -0.009942 -0.105319 0.003154 -0.171502 0.006789 0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 27.518009 27.146314 -2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444129 6.305470 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 19.873905 28.033844 -7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821479 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.315882 33.695510 -2.134465 - polarizability tensor 5.676900 5.144008 -0.727143 3.339388 4.987141 0.427749 -0.708036 0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 22.813919 34.958264 -7.939808 - polarizability tensor 2.014660 -1.411523 2.754674 -0.096191 2.864916 -1.368380 1.742511 -2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.622529 29.243508 -6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.084527 31.544367 -2.497182 - polarizability tensor 2.247827 1.783499 0.065362 1.149026 2.379898 -0.043699 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.454331 26.748141 -2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.735855 31.785822 -3.116452 - polarizability tensor 5.018070 -4.875224 1.088491 -1.811907 4.579783 -0.228245 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.107413 27.721581 -3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.146068 32.940863 -6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.045240 29.331914 -2.886817 - polarizability tensor 3.009104 0.265453 0.164854 0.392052 2.422903 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.473116 30.668166 -5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522052 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.981343 30.422969 -3.272272 - polarizability tensor 13.654114 2.638427 1.355101 2.419218 4.125882 -0.076557 2.653090 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.720568 29.103435 -2.273651 - polarizability tensor 2.960546 -0.866100 0.523975 -1.061801 5.117295 -0.710667 0.733477 -0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.580241 32.568349 -4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.778595 30.538571 -2.140523 - polarizability tensor 12.949895 2.646494 1.785361 2.381880 4.179640 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.974810 28.581955 -4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.575114 31.050938 -5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460098 13.263287 -0.923067 0.789240 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.733356 34.779201 -2.597100 - polarizability tensor 2.586919 0.528104 -0.018359 0.362648 2.294263 0.043707 0.109841 0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.617594 28.088576 -9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.971988 35.728837 -9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.198261 27.401457 -1.175445 - polarizability tensor 8.609790 -3.161438 4.330874 -3.390209 5.869742 -2.969759 2.433190 -1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.337207 26.481168 -3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.212952 25.534527 -2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.061644 33.081270 -2.417633 - polarizability tensor 3.548722 1.577098 0.269187 2.005619 4.318440 -0.319352 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.540590 28.986707 -7.730563 - polarizability tensor 5.713597 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.288946 33.877861 -3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225663 5.733018 -0.256666 1.271657 -0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.244023 28.712208 -8.374362 - polarizability tensor 6.707221 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.643382 34.186341 -8.572568 - polarizability tensor 1.169671 -1.724727 0.923947 -2.191905 7.141823 -4.969365 0.687892 -2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.477790 33.527961 -3.100937 - polarizability tensor 5.399126 5.564498 0.213556 4.017191 5.082747 -0.297192 1.393777 0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.269426 33.288637 -2.535393 - polarizability tensor 10.702598 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.011321 27.642446 -2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.546435 27.208297 -2.738048 - polarizability tensor 9.556647 -3.699450 -1.931270 -3.986422 6.261107 1.285638 0.992071 -0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.703482 27.045206 -3.117975 - polarizability tensor 4.541349 -2.067478 1.036870 -1.580946 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.908592 34.510439 -7.987692 - polarizability tensor 2.204025 -0.653491 0.327503 -1.701255 5.540977 -4.544585 0.766864 -3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S 2.300299 24.214814 31.071586 - znuc, mass 16.000000 31.972070 - - Atom A02C 4.155636 26.941865 31.477421 - znuc, mass 6.000000 12.000000 - - Atom A03C 3.191339 29.446035 31.549148 - znuc, mass 6.000000 12.000000 - - Atom A04S -0.071042 30.182751 31.182267 - znuc, mass 16.000000 31.972070 - - Atom A05C -0.903567 27.831340 28.936532 - znuc, mass 6.000000 12.000000 - - Atom A06C 0.067821 25.435863 28.878785 - znuc, mass 6.000000 12.000000 - - Atom A07C -0.683843 23.686674 26.994201 - znuc, mass 6.000000 12.000000 - - Atom A08N -1.301596 22.201491 25.475349 - znuc, mass 7.000000 14.003070 - - Atom A09C -2.749220 28.588364 27.155068 - znuc, mass 6.000000 12.000000 - - Atom A10N -4.354308 29.198887 25.763629 - znuc, mass 7.000000 14.003070 - - Atom A11N 4.817295 31.292679 31.944902 - znuc, mass 7.000000 14.003070 - - Atom A12S 7.696297 30.099603 32.364716 - znuc, mass 16.000000 31.972070 - - Atom A13C 6.749491 26.976734 31.865841 - znuc, mass 6.000000 12.000000 - - Atom A14C 8.431910 24.922154 31.852551 - znuc, mass 6.000000 12.000000 - - Atom A15N 9.839505 23.219456 31.792741 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 2.300299 24.214814 31.071586 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole 0.081100 0.120946 -0.015291 -0.151351 0.112179 -0.258142 -0.096888 0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 4.155636 26.941865 31.477421 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 -0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole -0.080562 -0.064792 -0.069734 0.081135 0.040643 0.191017 0.029091 -0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C 3.191339 29.446035 31.549148 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole 0.154202 0.066939 -0.010607 -0.076422 0.037680 -0.126335 -0.027074 -0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -0.071042 30.182751 31.182267 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 -0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole -0.376726 -0.162146 -0.007751 0.064505 -0.144810 0.217808 0.152561 0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -0.903567 27.831340 28.936532 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 -0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole -0.056685 0.087927 -0.028493 -0.015828 0.161274 0.009131 -0.132781 0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C 0.067821 25.435863 28.878785 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 -0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole -0.001075 -0.050214 -0.014991 -0.047446 -0.160108 0.001747 0.175099 -0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -0.683843 23.686674 26.994201 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 -0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole 0.066905 0.052623 0.037692 0.033015 0.046038 -0.056469 -0.083730 -0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -1.301596 22.201491 25.475349 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole -0.024985 -0.019560 -0.010956 -0.010338 -0.013703 0.014533 0.024660 0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -2.749220 28.588364 27.155068 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole -0.000862 -0.071606 0.028175 0.027284 -0.078173 0.054551 0.049997 -0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -4.354308 29.198887 25.763629 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 -0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole -0.001131 0.023490 -0.018307 -0.014058 0.034435 -0.020126 -0.016128 0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 4.817295 31.292679 31.944902 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 -0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole -0.049872 -0.009996 0.025010 -0.027426 -0.025766 0.018699 0.000756 0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 7.696297 30.099603 32.364716 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 -0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole 0.079313 0.431186 -0.101331 -0.400784 0.037962 0.079017 0.063368 -0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 6.749491 26.976734 31.865841 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 -0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole 0.066522 -0.033296 0.033077 0.141141 -0.015825 -0.201472 -0.017252 0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 8.431910 24.922154 31.852551 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 -0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole -0.082638 0.017348 0.002354 -0.067724 -0.011182 0.121329 0.008828 -0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 9.839505 23.219456 31.792741 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole 0.020681 -0.004365 -0.003281 0.025182 0.001816 -0.038396 0.001465 0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 3.227968 25.578340 31.274503 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 -0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole 0.135031 -0.064489 0.081833 -0.097858 -0.020810 -0.250721 -0.061022 0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 3.673488 28.193950 31.513284 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 -0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole 0.006937 0.415001 0.020564 -0.384074 -0.195901 0.173547 0.175337 -0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 1.560148 29.814393 31.365707 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole -0.362347 0.032096 -0.067519 0.068455 -0.111862 0.234599 0.179381 0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -0.487304 29.007045 30.059399 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole -0.128236 -0.066192 -0.098878 -0.110011 -0.100435 0.054183 0.199314 0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 1.184060 24.825339 29.975185 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 -0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole -0.150222 0.184993 0.116290 0.324246 0.434434 -0.009658 -0.550724 0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -0.417873 26.633601 28.907658 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole 0.190699 -0.292172 0.613901 0.301575 -0.166371 -0.195836 -0.447530 0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -0.308011 24.561268 27.936493 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole 0.090233 0.197003 -0.239935 -0.184502 0.227647 -0.047722 0.012288 -0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -0.992719 22.944082 26.234775 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 -0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole -0.091256 -0.060414 -0.057038 -0.055047 -0.054877 0.044246 0.111914 0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -1.826394 28.209852 28.045800 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole -0.091909 0.188995 -0.277331 -0.069309 -0.049758 0.131139 0.327089 -0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -3.551764 28.893626 26.459348 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole -0.040090 0.095467 -0.079919 -0.058683 0.126158 -0.051889 -0.046239 0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 4.004317 30.369357 31.747025 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 -0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole -0.344269 0.046395 0.191856 0.007750 -0.171132 0.125564 -0.020724 0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 6.256796 30.696141 32.154809 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 -0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole -0.052482 0.017861 -0.101437 0.090246 0.034757 0.166574 0.066680 -0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 5.452564 26.959299 31.671631 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole 0.195067 -0.254353 0.246051 -0.014826 0.033884 -0.213914 -0.279935 0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 7.222894 28.538168 32.115278 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole -0.174029 0.208769 -0.072703 -0.067761 -0.017390 0.228215 0.090093 -0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 7.590701 25.949444 31.859196 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole -0.138702 0.038897 -0.021776 -0.027862 -0.007098 0.125103 0.028874 0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 9.135708 24.070805 31.822646 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 -0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole 0.084793 0.000751 -0.009942 0.105319 0.003154 -0.171502 0.006789 0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 3.583608 28.144200 31.486687 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -3.921042 28.489407 26.642941 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.854169 23.780537 32.238939 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -1.553040 22.965676 26.385811 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.886518 26.425177 29.220750 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.241850 30.430909 31.255529 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.084803 30.267818 31.635455 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.274223 25.690292 31.257052 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.645781 29.754533 31.342289 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.839103 28.232607 28.020022 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.622894 25.931747 31.876322 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.315564 24.535251 27.916692 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.316963 26.937543 32.232981 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.258936 28.372680 32.099853 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.486822 28.894160 29.965816 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.519711 27.053146 31.101232 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.118609 24.907766 29.886424 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.011484 26.807948 28.521541 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.271724 22.696914 31.776405 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.844038 29.387539 25.335067 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.489644 21.747277 25.009608 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.992699 30.727973 32.106919 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.751320 31.941587 31.993285 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.450311 29.833668 31.935679 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.016264 23.948244 31.272526 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.217610 28.763906 25.999142 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.807794 24.187477 31.838111 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.587727 29.442270 26.657170 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.647714 22.517850 26.433697 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.599988 24.394823 31.956012 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.827314 23.598254 30.590634 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.124425 30.994947 30.716646 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.736629 30.074657 33.198059 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.056377 30.329800 32.281745 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.818249 23.289773 25.800936 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S 11.519895 17.828580 26.217588 - znuc, mass 16.000000 31.972070 - - Atom A02C 9.664558 20.555630 25.811752 - znuc, mass 6.000000 12.000000 - - Atom A03C 10.628855 23.059800 25.740026 - znuc, mass 6.000000 12.000000 - - Atom A04S 13.891237 23.796516 26.106907 - znuc, mass 16.000000 31.972070 - - Atom A05C 14.723761 21.445105 28.352642 - znuc, mass 6.000000 12.000000 - - Atom A06C 13.752374 19.049628 28.410388 - znuc, mass 6.000000 12.000000 - - Atom A07C 14.504037 17.300439 30.294972 - znuc, mass 6.000000 12.000000 - - Atom A08N 15.121790 15.815256 31.813824 - znuc, mass 7.000000 14.003070 - - Atom A09C 16.569415 22.202129 30.134105 - znuc, mass 6.000000 12.000000 - - Atom A10N 18.174503 22.812652 31.525545 - znuc, mass 7.000000 14.003070 - - Atom A11N 9.002899 24.906444 25.344272 - znuc, mass 7.000000 14.003070 - - Atom A12S 6.123898 23.713368 24.924458 - znuc, mass 16.000000 31.972070 - - Atom A13C 7.070704 20.590499 25.423332 - znuc, mass 6.000000 12.000000 - - Atom A14C 5.388284 18.535919 25.436623 - znuc, mass 6.000000 12.000000 - - Atom A15N 3.980690 16.833221 25.496432 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 11.519895 17.828580 26.217588 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole -0.081100 0.120946 0.015291 -0.151351 -0.112179 0.258142 0.096888 -0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 9.664558 20.555630 25.811752 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 -0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole 0.080562 -0.064792 0.069734 0.081135 -0.040643 -0.191017 -0.029091 0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C 10.628855 23.059800 25.740026 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole -0.154202 0.066939 0.010607 -0.076422 -0.037680 0.126335 0.027074 0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 13.891237 23.796516 26.106907 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 -0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole 0.376726 -0.162146 0.007751 0.064505 0.144810 -0.217808 -0.152561 -0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 14.723761 21.445105 28.352642 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 -0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole 0.056685 0.087927 0.028493 -0.015828 -0.161274 -0.009131 0.132781 -0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C 13.752374 19.049628 28.410388 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 -0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole 0.001075 -0.050214 0.014991 -0.047446 0.160108 -0.001747 -0.175099 0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 14.504037 17.300439 30.294972 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 -0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole -0.066905 0.052623 -0.037692 0.033015 -0.046038 0.056469 0.083730 0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 15.121790 15.815256 31.813824 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole 0.024985 -0.019560 0.010956 -0.010338 0.013703 -0.014533 -0.024660 -0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 16.569415 22.202129 30.134105 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole 0.000862 -0.071606 -0.028175 0.027284 0.078173 -0.054551 -0.049997 0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 18.174503 22.812652 31.525545 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 -0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole 0.001131 0.023490 0.018307 -0.014058 -0.034435 0.020126 0.016128 -0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 9.002899 24.906444 25.344272 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 -0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole 0.049872 -0.009996 -0.025010 -0.027426 0.025766 -0.018699 -0.000756 -0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 6.123898 23.713368 24.924458 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 -0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole -0.079313 0.431186 0.101331 -0.400784 -0.037962 -0.079017 -0.063368 0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 7.070704 20.590499 25.423332 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 -0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole -0.066522 -0.033296 -0.033077 0.141141 0.015825 0.201472 0.017252 -0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 5.388284 18.535919 25.436623 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 -0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole 0.082638 0.017348 -0.002354 -0.067724 0.011182 -0.121329 -0.008828 0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 3.980690 16.833221 25.496432 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole -0.020681 -0.004365 0.003281 0.025182 -0.001816 0.038396 -0.001465 -0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 10.592227 19.192105 26.014670 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 -0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole -0.135031 -0.064489 -0.081833 -0.097858 0.020810 0.250721 0.061022 -0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 10.146707 21.807715 25.775889 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 -0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole -0.006937 0.415001 -0.020564 -0.384074 0.195901 -0.173547 -0.175337 0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 12.260046 23.428158 25.923466 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole 0.362347 0.032096 0.067519 0.068455 0.111862 -0.234599 -0.179381 -0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 14.307499 22.620810 27.229774 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole 0.128236 -0.066192 0.098878 -0.110011 0.100435 -0.054183 -0.199314 -0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 12.636135 18.439104 27.313988 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 -0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole 0.150222 0.184993 -0.116290 0.324246 -0.434434 0.009658 0.550724 -0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 14.238068 20.247366 28.381515 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole -0.190699 -0.292172 -0.613901 0.301575 0.166371 0.195836 0.447530 -0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 14.128206 18.175033 29.352680 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole -0.090233 0.197003 0.239935 -0.184502 -0.227647 0.047722 -0.012288 0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 14.812914 16.557847 31.054398 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 -0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole 0.091256 -0.060414 0.057038 -0.055047 0.054877 -0.044246 -0.111914 -0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 15.646588 21.823617 29.243374 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole 0.091909 0.188995 0.277331 -0.069309 0.049758 -0.131139 -0.327089 0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 17.371959 22.507391 30.829825 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole 0.040090 0.095467 0.079919 -0.058683 -0.126158 0.051889 0.046239 -0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 9.815877 23.983122 25.542149 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 -0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole 0.344269 0.046395 -0.191856 0.007750 0.171132 -0.125564 0.020724 -0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 7.563399 24.309906 25.134365 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 -0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole 0.052482 0.017861 0.101437 0.090246 -0.034757 -0.166574 -0.066680 0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 8.367631 20.573065 25.617542 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole -0.195067 -0.254353 -0.246051 -0.014826 -0.033884 0.213914 0.279935 -0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 6.597301 22.151933 25.173895 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole 0.174029 0.208769 0.072703 -0.067761 0.017390 -0.228215 -0.090093 0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 6.229494 19.563209 25.429977 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole 0.138702 0.038897 0.021776 -0.027862 0.007098 -0.125103 -0.028874 -0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 4.684487 17.684570 25.466528 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 -0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole -0.084793 0.000751 0.009942 0.105319 -0.003154 0.171502 -0.006789 -0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 10.236586 21.757965 25.802487 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 17.741236 22.103172 30.646232 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.966026 17.394302 25.050235 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 15.373234 16.579441 30.903362 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.706712 20.038942 28.068423 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.578345 24.044674 26.033644 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.735392 23.881583 25.653718 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.545971 19.304057 26.032121 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.174413 23.368298 25.946884 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.659298 21.846372 29.269151 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.197300 19.545512 25.412851 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.135758 18.149016 29.372481 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.503232 20.551308 25.056192 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.561259 21.986445 25.189320 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.307017 22.507925 27.323358 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.300483 20.666911 26.187941 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.701586 18.521531 27.402749 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.808710 20.421713 28.767632 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.548470 16.310679 25.512769 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.664233 23.001304 31.954106 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.309838 15.361042 32.279566 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.827495 24.341738 25.182254 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.068875 25.555353 25.295888 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.270505 23.447433 25.353494 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.803931 17.562009 26.016647 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.037804 22.377672 31.290032 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.012401 17.801242 25.451063 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.407921 23.056035 30.632003 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.467909 16.131615 30.855477 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.220207 18.008588 25.333161 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.992881 17.212019 26.698539 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.944620 24.608712 26.572528 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.083565 23.688423 24.091115 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.763817 23.943565 25.007429 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.638444 16.903538 31.488237 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 26.900854 26.875065 14.759753 - znuc, mass 16.000000 31.972070 - - Atom A02C 25.045519 24.148014 14.353917 - znuc, mass 6.000000 12.000000 - - Atom A03C 26.009817 21.643844 14.282191 - znuc, mass 6.000000 12.000000 - - Atom A04S 29.272198 20.907130 14.649073 - znuc, mass 16.000000 31.972070 - - Atom A05C 30.104721 23.258541 16.894808 - znuc, mass 6.000000 12.000000 - - Atom A06C 29.133333 25.654018 16.952554 - znuc, mass 6.000000 12.000000 - - Atom A07C 29.884995 27.403207 18.837138 - znuc, mass 6.000000 12.000000 - - Atom A08N 30.502747 28.888391 20.355990 - znuc, mass 7.000000 14.003070 - - Atom A09C 31.950375 22.501518 18.676272 - znuc, mass 6.000000 12.000000 - - Atom A10N 33.555463 21.890996 20.067712 - znuc, mass 7.000000 14.003070 - - Atom A11N 24.383862 19.797199 13.886437 - znuc, mass 7.000000 14.003070 - - Atom A12S 21.504860 20.990274 13.466623 - znuc, mass 16.000000 31.972070 - - Atom A13C 22.451664 24.113143 13.965497 - znuc, mass 6.000000 12.000000 - - Atom A14C 20.769244 26.167723 13.978787 - znuc, mass 6.000000 12.000000 - - Atom A15N 19.361648 27.870420 14.038596 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 26.900854 26.875065 14.759753 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 -1.019605 0.491700 - duadrupole 0.200252 0.667129 -0.867381 0.820424 2.014536 -0.644901 - octupole -0.081100 -0.120945 0.015291 0.151350 -0.112179 0.258142 0.096888 -0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 25.045519 24.148014 14.353917 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026088 0.009793 - octupole 0.080562 0.064792 0.069734 -0.081134 -0.040643 -0.191017 -0.029091 0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 26.009817 21.643844 14.282191 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 -0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole -0.154202 -0.066939 0.010607 0.076422 -0.037680 0.126335 0.027074 0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 29.272198 20.907130 14.649073 - znuc, monopole 16.000000 -15.424149 - dipole -0.645105 0.702589 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883321 - octupole 0.376726 0.162146 0.007751 -0.064504 0.144810 -0.217808 -0.152561 -0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 30.104721 23.258541 16.894808 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 0.012964 0.126299 - duadrupole -0.086713 0.172782 -0.086070 -0.198246 0.015502 0.024956 - octupole 0.056685 -0.087927 0.028493 0.015828 -0.161274 -0.009131 0.132781 -0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 29.133333 25.654018 16.952554 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole 0.001075 0.050214 0.014991 0.047446 0.160109 -0.001747 -0.175100 0.000672 -0.097661 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 29.884995 27.403207 18.837138 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole -0.066905 -0.052623 -0.037692 -0.033015 -0.046038 0.056469 0.083730 0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 30.502747 28.888391 20.355990 - znuc, monopole 7.000000 -6.844356 - dipole -0.128196 -0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole 0.024985 0.019560 0.010956 0.010338 0.013703 -0.014533 -0.024660 -0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 31.950375 22.501518 18.676272 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 -0.134363 0.337213 - duadrupole 0.044076 -0.065351 0.021276 0.052673 0.059479 0.009395 - octupole 0.000862 0.071606 -0.028175 -0.027284 0.078173 -0.054551 -0.049998 0.053689 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 33.555463 21.890996 20.067712 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole 0.001131 -0.023490 0.018307 0.014058 -0.034435 0.020126 0.016128 -0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 24.383862 19.797199 13.886437 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109388 -0.037751 - octupole 0.049872 0.009996 -0.025010 0.027426 0.025766 -0.018699 -0.000756 -0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 21.504860 20.990274 13.466623 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 0.461479 0.227968 - duadrupole 0.657691 1.380421 -2.038112 -0.516799 0.477705 0.276530 - octupole -0.079313 -0.431186 0.101331 0.400784 -0.037962 -0.079016 -0.063368 0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 22.451664 24.113143 13.965497 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 0.118662 -0.023762 - duadrupole 0.102512 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole -0.066522 0.033296 -0.033078 -0.141141 0.015825 0.201472 0.017252 -0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 20.769244 26.167723 13.978787 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 0.447125 0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole 0.082638 -0.017348 -0.002354 0.067724 0.011182 -0.121329 -0.008828 0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 19.361648 27.870420 14.038596 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 -0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013044 0.009826 - octupole -0.020681 0.004365 0.003281 -0.025182 -0.001816 0.038396 -0.001465 -0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 25.973186 25.511540 14.556835 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 0.204132 -0.059744 - duadrupole -0.127967 0.303138 -0.175171 0.361286 0.022579 0.002456 - octupole -0.135031 0.064490 -0.081833 0.097857 0.020810 0.250721 0.061023 -0.115690 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 25.527668 22.895929 14.318054 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099040 0.017364 - octupole -0.006938 -0.415001 -0.020563 0.384074 0.195901 -0.173546 -0.175337 0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 27.641008 21.275487 14.465632 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 -0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole 0.362347 -0.032097 0.067519 -0.068455 0.111862 -0.234600 -0.179381 -0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 29.688460 22.082836 15.771940 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 -0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121103 0.078949 0.001930 0.434804 - octupole 0.128235 0.066191 0.098878 0.110012 0.100436 -0.054183 -0.199314 -0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 28.017094 26.264542 15.856154 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 0.216246 -0.112894 - duadrupole 0.231615 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole 0.150223 -0.184993 -0.116290 -0.324246 -0.434434 0.009658 0.550724 -0.159881 0.509238 0.036069 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 29.619027 24.456280 16.923681 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 -0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole -0.190699 0.292172 -0.613901 -0.301576 0.166371 0.195835 0.447530 -0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 29.509164 26.528613 17.894846 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 -0.079077 -0.047152 - duadrupole 0.177104 0.006089 -0.183194 -0.206575 0.019465 -0.143936 - octupole -0.090233 -0.197003 0.239935 0.184502 -0.227648 0.047722 -0.012288 0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 30.193871 28.145799 19.596564 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 0.228151 0.227536 - duadrupole -0.226596 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole 0.091256 0.060414 0.057038 0.055047 0.054877 -0.044246 -0.111914 -0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 31.027548 22.880030 17.785540 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 -0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142766 -0.071307 0.108121 - octupole 0.091909 -0.188995 0.277331 0.069309 0.049758 -0.131139 -0.327089 0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 32.752919 22.196257 19.371992 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 -0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole 0.040090 -0.095467 0.079919 0.058683 -0.126158 0.051889 0.046239 -0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 25.196839 20.720522 14.084314 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 0.115721 0.003434 - duadrupole 0.270648 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole 0.344269 -0.046395 -0.191856 -0.007750 0.171132 -0.125564 0.020724 -0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 22.944361 20.393737 13.676530 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 0.026718 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole 0.052482 -0.017862 0.101437 -0.090246 -0.034757 -0.166575 -0.066680 0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 23.748591 24.130579 14.159707 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 -0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole -0.195067 0.254354 -0.246051 0.014825 -0.033884 0.213914 0.279935 -0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 21.978262 22.551709 13.716060 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 -0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole 0.174029 -0.208769 0.072703 0.067761 0.017390 -0.228215 -0.090093 0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 21.610454 25.140433 13.972142 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 -0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole 0.138702 -0.038897 0.021776 0.027863 0.007098 -0.125103 -0.028874 -0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 20.065446 27.019071 14.008692 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 0.265565 0.005667 - duadrupole 0.053653 0.238490 -0.292143 -0.457319 -0.029902 0.030180 - octupole -0.084792 -0.000751 0.009942 -0.105320 -0.003154 0.171502 -0.006789 -0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 25.144779 20.760079 13.549594 - polarizability tensor 4.528424 1.917551 0.356759 1.444128 6.305472 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 32.788882 21.647612 19.174170 - polarizability tensor 3.614271 -1.113333 2.917217 -0.029793 1.821479 0.641372 2.940226 -0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.346903 27.309272 13.592298 - polarizability tensor 5.676904 -5.144008 -0.727141 -3.339388 4.987137 -0.427750 -0.708035 -0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 29.848865 28.572031 19.397643 - polarizability tensor 2.014659 1.411522 2.754673 0.096191 2.864917 1.368381 1.742510 2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.040258 22.857275 17.811318 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536299 1.326286 -0.648852 1.549497 -0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.578260 25.158130 13.955016 - polarizability tensor 2.247828 -1.783499 0.065363 -1.149026 2.379896 0.043699 0.251241 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.208458 20.361905 13.724420 - polarizability tensor 5.239487 -1.239561 0.807464 -0.101560 1.234380 0.089842 1.195631 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.926931 25.399587 14.574286 - polarizability tensor 5.018067 4.875224 1.088491 1.811907 4.579786 0.228246 1.487331 1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.555375 21.335347 14.489050 - polarizability tensor 9.182809 -1.751286 0.995508 -0.084237 1.828484 0.387734 2.027093 0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.516717 26.554630 17.914647 - polarizability tensor 1.671051 0.572015 1.296469 0.542823 2.162529 1.769890 1.031019 1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.617547 22.945679 14.344652 - polarizability tensor 3.009105 -0.265453 0.164855 -0.392052 2.422902 0.078852 0.571863 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.189670 24.281933 17.309798 - polarizability tensor 5.263037 -4.454329 1.663069 -4.279634 13.403258 0.812801 1.522053 0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.681444 24.036733 14.730106 - polarizability tensor 13.654116 -2.638423 1.355104 -2.419214 4.125879 0.076557 2.653092 -0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.942220 22.717197 13.731485 - polarizability tensor 2.960545 0.866099 0.523975 1.061800 5.117296 0.710667 0.733477 0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.082545 26.182115 15.944915 - polarizability tensor 5.617929 -1.381554 4.877276 -1.251780 2.735770 -1.290944 3.659516 -1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.884192 24.152335 13.598357 - polarizability tensor 12.949896 -2.646490 1.785363 -2.381876 4.179637 -0.329227 2.420663 -0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.687978 22.195721 15.865524 - polarizability tensor 3.040417 1.393146 2.596746 0.925311 4.759664 3.665080 1.764101 3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.087672 24.664704 16.610589 - polarizability tensor 4.688607 -4.661428 1.698768 -4.460102 13.263283 0.923066 0.789241 0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.929429 28.392962 14.054933 - polarizability tensor 2.586920 -0.528103 -0.018359 -0.362647 2.294262 -0.043707 0.109841 -0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.045193 21.702344 20.496273 - polarizability tensor 2.625149 -0.213208 0.424935 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.690795 29.342604 20.821732 - polarizability tensor 2.080856 0.280706 0.149350 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.464528 21.015220 12.633279 - polarizability tensor 8.609786 3.161439 4.330873 3.390210 5.869745 2.969762 2.433189 1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.325582 20.094934 15.114694 - polarizability tensor 5.800146 -0.752295 1.186095 0.172145 7.005037 0.548345 0.964192 0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.449837 19.148291 13.838054 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321947 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.601142 26.695031 13.875466 - polarizability tensor 3.548724 -1.577098 0.269188 -2.005619 4.318439 0.319351 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.122196 22.600476 19.188399 - polarizability tensor 5.713598 -1.433755 3.432521 -2.871854 2.858065 -3.181668 3.126669 -2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.373840 27.491626 15.240704 - polarizability tensor 6.533271 0.444461 1.547291 -1.225663 5.733017 0.256666 1.271658 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.418764 22.325976 19.832198 - polarizability tensor 6.707222 -2.929001 4.115173 -3.681834 2.332214 -2.837643 2.110817 -1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.019403 27.800108 20.030403 - polarizability tensor 1.169669 1.724724 0.923944 2.191901 7.141826 4.969366 0.687890 2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.184995 27.141723 14.558771 - polarizability tensor 5.399130 -5.564497 0.213557 -4.017191 5.082742 0.297191 1.393778 -0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.393360 26.902403 13.993228 - polarizability tensor 10.702596 1.789313 3.005774 -0.514549 5.742470 -3.210321 2.108866 -0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.651467 21.256212 13.895660 - polarizability tensor 8.115953 0.753025 -0.167711 1.550833 6.978558 4.365403 0.764813 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.116353 20.822059 14.195882 - polarizability tensor 9.556643 3.699452 -1.931269 3.986424 6.261110 -1.285638 0.992072 0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.959306 20.658970 14.575810 - polarizability tensor 4.541347 2.067477 1.036870 1.580945 6.187413 0.395977 1.497097 1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.754192 28.124206 19.445527 - polarizability tensor 2.204024 0.653489 0.327501 1.701252 5.540979 4.544585 0.766862 3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 17.681260 33.261300 19.613751 - znuc, mass 16.000000 31.972070 - - Atom A02C 19.536596 30.534249 20.019587 - znuc, mass 6.000000 12.000000 - - Atom A03C 18.572298 28.030079 20.091313 - znuc, mass 6.000000 12.000000 - - Atom A04S 15.309916 27.293365 19.724431 - znuc, mass 16.000000 31.972070 - - Atom A05C 14.477393 29.644776 17.478696 - znuc, mass 6.000000 12.000000 - - Atom A06C 15.448781 32.040253 17.420950 - znuc, mass 6.000000 12.000000 - - Atom A07C 14.697119 33.789442 15.536366 - znuc, mass 6.000000 12.000000 - - Atom A08N 14.079367 35.274626 14.017514 - znuc, mass 7.000000 14.003070 - - Atom A09C 12.631739 28.887753 15.697232 - znuc, mass 6.000000 12.000000 - - Atom A10N 11.026651 28.277231 14.305792 - znuc, mass 7.000000 14.003070 - - Atom A11N 20.198253 26.183434 20.487067 - znuc, mass 7.000000 14.003070 - - Atom A12S 23.077255 27.376509 20.906881 - znuc, mass 16.000000 31.972070 - - Atom A13C 22.130451 30.499378 20.408007 - znuc, mass 6.000000 12.000000 - - Atom A14C 23.812871 32.553958 20.394717 - znuc, mass 6.000000 12.000000 - - Atom A15N 25.220466 34.256655 20.334908 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 17.681260 33.261300 19.613751 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 -1.019605 -0.491700 - duadrupole 0.200252 0.667129 -0.867381 -0.820424 2.014536 0.644901 - octupole 0.081100 -0.120945 -0.015291 0.151350 0.112179 -0.258142 -0.096888 0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 19.536596 30.534249 20.019587 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026088 -0.009793 - octupole -0.080562 0.064792 -0.069734 -0.081134 0.040643 0.191017 0.029091 -0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 18.572298 28.030079 20.091313 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 -0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole 0.154202 -0.066939 -0.010607 0.076422 0.037680 -0.126335 -0.027074 -0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 15.309916 27.293365 19.724431 - znuc, monopole 16.000000 -15.424149 - dipole 0.645105 0.702589 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883321 - octupole -0.376726 0.162146 -0.007751 -0.064504 -0.144810 0.217808 0.152561 0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 14.477393 29.644776 17.478696 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 0.012964 -0.126299 - duadrupole -0.086713 0.172782 -0.086070 0.198246 0.015502 -0.024956 - octupole -0.056685 -0.087927 -0.028493 0.015828 0.161274 0.009131 -0.132781 0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 15.448781 32.040253 17.420950 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole -0.001075 0.050214 -0.014991 0.047446 -0.160109 0.001747 0.175100 -0.000672 -0.097661 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 14.697119 33.789442 15.536366 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole 0.066905 -0.052623 0.037692 -0.033015 0.046038 -0.056469 -0.083730 -0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 14.079367 35.274626 14.017514 - znuc, monopole 7.000000 -6.844356 - dipole 0.128196 -0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole -0.024985 0.019560 -0.010956 0.010338 -0.013703 0.014533 0.024660 0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 12.631739 28.887753 15.697232 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 -0.134363 -0.337213 - duadrupole 0.044076 -0.065351 0.021276 -0.052673 0.059479 -0.009395 - octupole -0.000862 0.071606 0.028175 -0.027284 -0.078173 0.054551 0.049998 -0.053689 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 11.026651 28.277231 14.305792 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole -0.001131 -0.023490 -0.018307 0.014058 0.034435 -0.020126 -0.016128 0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 20.198253 26.183434 20.487067 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109388 0.037751 - octupole -0.049872 0.009996 0.025010 0.027426 -0.025766 0.018699 0.000756 0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 23.077255 27.376509 20.906881 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 0.461479 -0.227968 - duadrupole 0.657691 1.380421 -2.038112 0.516799 0.477705 -0.276530 - octupole 0.079313 -0.431186 -0.101331 0.400784 0.037962 0.079016 0.063368 -0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 22.130451 30.499378 20.408007 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 0.118662 0.023762 - duadrupole 0.102512 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole 0.066522 0.033296 0.033078 -0.141141 -0.015825 -0.201472 -0.017252 0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 23.812871 32.553958 20.394717 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 0.447125 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole -0.082638 -0.017348 0.002354 0.067724 -0.011182 0.121329 0.008828 -0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 25.220466 34.256655 20.334908 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 -0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013044 -0.009826 - octupole 0.020681 0.004365 -0.003281 -0.025182 0.001816 -0.038396 0.001465 0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 18.608928 31.897774 19.816669 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 0.204132 0.059744 - duadrupole -0.127967 0.303138 -0.175171 -0.361286 0.022579 -0.002456 - octupole 0.135031 0.064490 0.081833 0.097857 -0.020810 -0.250721 -0.061023 0.115690 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 19.054447 29.282164 20.055450 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099040 -0.017364 - octupole 0.006938 -0.415001 0.020563 0.384074 -0.195901 0.173546 0.175337 -0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 16.941107 27.661722 19.907872 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 -0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole -0.362347 -0.032097 -0.067519 -0.068455 -0.111862 0.234600 0.179381 0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 14.893655 28.469071 18.601564 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 -0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121103 -0.078949 0.001930 -0.434804 - octupole -0.128235 0.066191 -0.098878 0.110012 -0.100436 0.054183 0.199314 0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 16.565021 32.650776 18.517351 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 0.216246 0.112894 - duadrupole 0.231615 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole -0.150223 -0.184993 0.116290 -0.324246 0.434434 -0.009658 -0.550724 0.159881 0.509238 0.036069 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 14.963087 30.842515 17.449823 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 -0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole 0.190699 0.292172 0.613901 -0.301576 -0.166371 -0.195835 -0.447530 0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 15.072950 32.914848 16.478658 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 -0.079077 0.047152 - duadrupole 0.177104 0.006089 -0.183194 0.206575 0.019465 0.143936 - octupole 0.090233 -0.197003 -0.239935 0.184502 0.227648 -0.047722 0.012288 -0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 14.388243 34.532034 14.776940 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 0.228151 -0.227536 - duadrupole -0.226596 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole -0.091256 0.060414 -0.057038 0.055047 -0.054877 0.044246 0.111914 0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 13.554566 29.266265 16.587964 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 -0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142766 -0.071307 -0.108121 - octupole -0.091909 -0.188995 -0.277331 0.069309 -0.049758 0.131139 0.327089 -0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 11.829195 28.582492 15.001512 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 -0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole -0.040090 -0.095467 -0.079919 0.058683 0.126158 -0.051889 -0.046239 0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 19.385275 27.106757 20.289190 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 0.115721 -0.003434 - duadrupole 0.270648 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole -0.344269 -0.046395 0.191856 -0.007750 -0.171132 0.125564 -0.020724 0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 21.637754 26.779972 20.696974 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 0.026718 0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole -0.052482 -0.017862 -0.101437 -0.090246 0.034757 0.166575 0.066680 -0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 20.833523 30.516814 20.213797 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 -0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole 0.195067 0.254354 0.246051 0.014825 0.033884 -0.213914 -0.279935 0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 22.603853 28.937944 20.657444 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 -0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole -0.174029 -0.208769 -0.072703 0.067761 -0.017390 0.228215 0.090093 -0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 22.971661 31.526668 20.401362 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 -0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole -0.138702 -0.038897 -0.021776 0.027863 -0.007098 0.125103 0.028874 0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 24.516668 33.405306 20.364812 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 0.265565 -0.005667 - duadrupole 0.053653 0.238490 -0.292143 0.457319 -0.029902 -0.030180 - octupole 0.084792 -0.000751 -0.009942 -0.105320 0.003154 -0.171502 0.006789 0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 19.437335 27.146314 20.823910 - polarizability tensor 4.528424 -1.917551 0.356759 -1.444128 6.305472 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 11.793233 28.033847 15.199334 - polarizability tensor 3.614271 1.113333 2.917217 0.029793 1.821479 -0.641372 2.940226 0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.235211 33.695507 20.781206 - polarizability tensor 5.676904 5.144008 -0.727141 3.339388 4.987137 0.427750 -0.708035 0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 14.733249 34.958265 14.975861 - polarizability tensor 2.014659 -1.411522 2.754673 -0.096191 2.864917 -1.368381 1.742510 -2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.541856 29.243510 16.562186 - polarizability tensor 2.644773 0.420648 2.214495 0.536299 1.326286 0.648852 1.549497 0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.003855 31.544365 20.418488 - polarizability tensor 2.247828 1.783499 0.065363 1.149026 2.379896 -0.043699 0.251241 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.373657 26.748140 20.649084 - polarizability tensor 5.239487 1.239561 0.807464 0.101560 1.234380 -0.089842 1.195631 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.655183 31.785822 19.799218 - polarizability tensor 5.018067 -4.875224 1.088491 -1.811907 4.579786 -0.228246 1.487331 -1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.026740 27.721582 19.884454 - polarizability tensor 9.182809 1.751286 0.995508 0.084237 1.828484 -0.387734 2.027093 -0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.065398 32.940865 16.458857 - polarizability tensor 1.671051 -0.572015 1.296469 -0.542823 2.162529 -1.769890 1.031019 -1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.964567 29.331914 20.028852 - polarizability tensor 3.009105 0.265453 0.164855 0.392052 2.422902 -0.078852 0.571863 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.392445 30.668167 17.063706 - polarizability tensor 5.263037 4.454329 1.663069 4.279634 13.403258 -0.812801 1.522053 -0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.900671 30.422967 19.643398 - polarizability tensor 13.654116 2.638423 1.355104 2.419214 4.125879 -0.076557 2.653092 0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.639895 29.103432 20.642019 - polarizability tensor 2.960545 -0.866099 0.523975 -1.061800 5.117296 -0.710667 0.733477 -0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.499570 32.568350 18.428589 - polarizability tensor 5.617929 1.381554 4.877276 1.251780 2.735770 1.290944 3.659516 1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.697922 30.538570 20.775147 - polarizability tensor 12.949896 2.646490 1.785363 2.381876 4.179637 0.329227 2.420663 0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.894137 28.581956 18.507980 - polarizability tensor 3.040417 -1.393146 2.596746 -0.925311 4.759664 -3.665080 1.764101 -3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.494442 31.050939 17.762915 - polarizability tensor 4.688607 4.661428 1.698768 4.460102 13.263283 -0.923066 0.789241 -0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.652686 34.779197 20.318571 - polarizability tensor 2.586920 0.528103 -0.018359 0.362647 2.294262 0.043707 0.109841 0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.536921 28.088579 13.877231 - polarizability tensor 2.625149 0.213208 0.424935 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.891319 35.728839 13.551772 - polarizability tensor 2.080856 -0.280706 0.149350 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.117587 27.401455 21.740225 - polarizability tensor 8.609786 -3.161439 4.330873 -3.390210 5.869745 -2.969762 2.433189 -1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.256533 26.481169 19.258810 - polarizability tensor 5.800146 0.752295 1.186095 -0.172145 7.005037 -0.548345 0.964192 -0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.132277 25.534526 20.535450 - polarizability tensor 2.238895 0.092051 0.189597 0.321947 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.980972 33.081266 20.498038 - polarizability tensor 3.548724 1.577098 0.269188 2.005619 4.318439 -0.319351 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.459918 28.986711 15.185105 - polarizability tensor 5.713598 1.433755 3.432521 2.871854 2.858065 3.181668 3.126669 2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.208275 33.877861 19.132800 - polarizability tensor 6.533271 -0.444461 1.547291 1.225663 5.733017 -0.256666 1.271658 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.163350 28.712211 14.541306 - polarizability tensor 6.707222 2.929001 4.115173 3.681834 2.332214 2.837643 2.110817 1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.562712 34.186343 14.343101 - polarizability tensor 1.169669 -1.724724 0.923944 -2.191901 7.141826 -4.969366 0.687890 -2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.397119 33.527958 19.814733 - polarizability tensor 5.399130 5.564497 0.213557 4.017191 5.082742 -0.297191 1.393778 0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.188755 33.288638 20.380276 - polarizability tensor 10.702596 -1.789313 3.005774 0.514549 5.742470 3.210321 2.108866 0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.930648 27.642447 20.477844 - polarizability tensor 8.115953 -0.753025 -0.167711 -1.550833 6.978558 -4.365403 0.764813 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.465761 27.208294 20.177622 - polarizability tensor 9.556643 -3.699452 -1.931269 -3.986424 6.261110 1.285638 0.992072 -0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.622808 27.045205 19.797694 - polarizability tensor 4.541347 -2.067477 1.036870 -1.580945 6.187413 -0.395977 1.497097 -1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.827923 34.510441 14.927977 - polarizability tensor 2.204024 -0.653489 0.327501 -1.701252 5.540979 -4.544585 0.766862 -3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S 10.380970 36.987284 8.155916 - znuc, mass 16.000000 31.972070 - - Atom A02C 12.236307 39.714335 8.561752 - znuc, mass 6.000000 12.000000 - - Atom A03C 11.272010 42.218505 8.633478 - znuc, mass 6.000000 12.000000 - - Atom A04S 8.009629 42.955220 8.266597 - znuc, mass 16.000000 31.972070 - - Atom A05C 7.177104 40.603810 6.020862 - znuc, mass 6.000000 12.000000 - - Atom A06C 8.148492 38.208333 5.963116 - znuc, mass 6.000000 12.000000 - - Atom A07C 7.396829 36.459144 4.078532 - znuc, mass 6.000000 12.000000 - - Atom A08N 6.779075 34.973961 2.559680 - znuc, mass 7.000000 14.003070 - - Atom A09C 5.331451 41.360834 4.239399 - znuc, mass 6.000000 12.000000 - - Atom A10N 3.726363 41.971357 2.847959 - znuc, mass 7.000000 14.003070 - - Atom A11N 12.897966 44.065149 9.029232 - znuc, mass 7.000000 14.003070 - - Atom A12S 15.776968 42.872073 9.449046 - znuc, mass 16.000000 31.972070 - - Atom A13C 14.830162 39.749204 8.950172 - znuc, mass 6.000000 12.000000 - - Atom A14C 16.512581 37.694624 8.936881 - znuc, mass 6.000000 12.000000 - - Atom A15N 17.920176 35.991926 8.877072 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 10.380970 36.987284 8.155916 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole 0.081100 0.120946 -0.015291 -0.151351 0.112179 -0.258142 -0.096888 0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 12.236307 39.714335 8.561752 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 -0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole -0.080562 -0.064792 -0.069734 0.081135 0.040643 0.191017 0.029091 -0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C 11.272010 42.218505 8.633478 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole 0.154202 0.066939 -0.010607 -0.076422 0.037680 -0.126335 -0.027074 -0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 8.009629 42.955220 8.266597 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 -0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole -0.376726 -0.162146 -0.007751 0.064505 -0.144810 0.217808 0.152561 0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 7.177104 40.603810 6.020862 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 -0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole -0.056685 0.087927 -0.028493 -0.015828 0.161274 0.009131 -0.132781 0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C 8.148492 38.208333 5.963116 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 -0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole -0.001075 -0.050214 -0.014991 -0.047446 -0.160108 0.001747 0.175099 -0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 7.396829 36.459144 4.078532 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 -0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole 0.066905 0.052623 0.037692 0.033015 0.046038 -0.056469 -0.083730 -0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 6.779075 34.973961 2.559680 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole -0.024985 -0.019560 -0.010956 -0.010338 -0.013703 0.014533 0.024660 0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 5.331451 41.360834 4.239399 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole -0.000862 -0.071606 0.028175 0.027284 -0.078173 0.054551 0.049997 -0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 3.726363 41.971357 2.847959 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 -0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole -0.001131 0.023490 -0.018307 -0.014058 0.034435 -0.020126 -0.016128 0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 12.897966 44.065149 9.029232 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 -0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole -0.049872 -0.009996 0.025010 -0.027426 -0.025766 0.018699 0.000756 0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 15.776968 42.872073 9.449046 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 -0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole 0.079313 0.431186 -0.101331 -0.400784 0.037962 0.079017 0.063368 -0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 14.830162 39.749204 8.950172 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 -0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole 0.066522 -0.033296 0.033077 0.141141 -0.015825 -0.201472 -0.017252 0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 16.512581 37.694624 8.936881 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 -0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole -0.082638 0.017348 0.002354 -0.067724 -0.011182 0.121329 0.008828 -0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 17.920176 35.991926 8.877072 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole 0.020681 -0.004365 -0.003281 0.025182 0.001816 -0.038396 0.001465 0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 11.308639 38.350810 8.358834 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 -0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole 0.135031 -0.064489 0.081833 -0.097858 -0.020810 -0.250721 -0.061022 0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 11.754159 40.966420 8.597615 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 -0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole 0.006937 0.415001 0.020564 -0.384074 -0.195901 0.173547 0.175337 -0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 9.640820 42.586863 8.450038 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole -0.362347 0.032096 -0.067519 0.068455 -0.111862 0.234599 0.179381 0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 7.593367 41.779515 7.143730 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole -0.128236 -0.066192 -0.098878 -0.110011 -0.100435 0.054183 0.199314 0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 9.264731 37.597809 7.059516 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 -0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole -0.150222 0.184993 0.116290 0.324246 0.434434 -0.009658 -0.550724 0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 7.662798 39.406071 5.991989 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole 0.190699 -0.292172 0.613901 0.301575 -0.166371 -0.195836 -0.447530 0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 7.772660 37.333738 5.020824 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole 0.090233 0.197003 -0.239935 -0.184502 0.227647 -0.047722 0.012288 -0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 7.087952 35.716552 3.319106 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 -0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole -0.091256 -0.060414 -0.057038 -0.055047 -0.054877 0.044246 0.111914 0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 6.254278 40.982322 5.130130 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole -0.091909 0.188995 -0.277331 -0.069309 -0.049758 0.131139 0.327089 -0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 4.528907 41.666096 3.543679 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole -0.040090 0.095467 -0.079919 -0.058683 0.126158 -0.051889 -0.046239 0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 12.084988 43.141827 8.831355 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 -0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole -0.344269 0.046395 0.191856 0.007750 -0.171132 0.125564 -0.020724 0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 14.337467 43.468611 9.239139 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 -0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole -0.052482 0.017861 -0.101437 0.090246 0.034757 0.166574 0.066680 -0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 13.533235 39.731769 8.755962 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole 0.195067 -0.254353 0.246051 -0.014826 0.033884 -0.213914 -0.279935 0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 15.303565 41.310638 9.199609 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole -0.174029 0.208769 -0.072703 -0.067761 -0.017390 0.228215 0.090093 -0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 15.671372 38.721914 8.943527 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole -0.138702 0.038897 -0.021776 -0.027862 -0.007098 0.125103 0.028874 0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 17.216379 36.843275 8.906976 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 -0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole 0.084793 0.000751 -0.009942 0.105319 0.003154 -0.171502 0.006789 0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 11.664279 40.916670 8.571017 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 4.159630 41.261877 3.727272 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.934840 36.553007 9.323269 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 6.527631 35.738146 3.470142 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.194153 39.197647 6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.322521 43.203379 8.339860 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.165474 43.040288 8.719786 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.354894 38.462762 8.341383 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.726452 42.527003 8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.241568 41.005076 5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.703566 38.704217 8.960653 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.765107 37.307721 5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.397634 39.710013 9.317312 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.339607 41.145150 9.184184 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.593849 41.666630 7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.600382 39.825616 8.185563 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.199280 37.680236 6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.092155 39.580418 5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.352395 35.469384 8.860735 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.236633 42.160009 2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.591027 34.519747 2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.073370 43.500443 9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.831991 44.714057 9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.630360 42.606138 9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.096935 36.720714 8.356857 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.863062 41.536376 3.083473 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.888465 36.959947 8.922441 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.492944 42.214740 3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.432957 35.290320 3.518027 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.680659 37.167293 9.040343 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.907985 36.370723 7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.956246 43.767417 7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.817300 42.847127 10.282389 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.137048 43.102270 9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.262422 36.062243 2.885267 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S 19.600566 30.601049 3.301918 - znuc, mass 16.000000 31.972070 - - Atom A02C 17.745230 33.328100 2.896083 - znuc, mass 6.000000 12.000000 - - Atom A03C 18.709526 35.832270 2.824356 - znuc, mass 6.000000 12.000000 - - Atom A04S 21.971908 36.568986 3.191237 - znuc, mass 16.000000 31.972070 - - Atom A05C 22.804432 34.217575 5.436972 - znuc, mass 6.000000 12.000000 - - Atom A06C 21.833045 31.822098 5.494719 - znuc, mass 6.000000 12.000000 - - Atom A07C 22.584708 30.072909 7.379303 - znuc, mass 6.000000 12.000000 - - Atom A08N 23.202461 28.587726 8.898155 - znuc, mass 7.000000 14.003070 - - Atom A09C 24.650086 34.974599 7.218436 - znuc, mass 6.000000 12.000000 - - Atom A10N 26.255174 35.585122 8.609875 - znuc, mass 7.000000 14.003070 - - Atom A11N 17.083570 37.678914 2.428602 - znuc, mass 7.000000 14.003070 - - Atom A12S 14.204569 36.485838 2.008788 - znuc, mass 16.000000 31.972070 - - Atom A13C 15.151375 33.362969 2.507663 - znuc, mass 6.000000 12.000000 - - Atom A14C 13.468955 31.308389 2.520953 - znuc, mass 6.000000 12.000000 - - Atom A15N 12.061361 29.605691 2.580763 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 19.600566 30.601049 3.301918 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole -0.081100 0.120946 0.015291 -0.151351 -0.112179 0.258142 0.096888 -0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 17.745230 33.328100 2.896083 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 -0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole 0.080562 -0.064792 0.069734 0.081135 -0.040643 -0.191017 -0.029091 0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C 18.709526 35.832270 2.824356 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole -0.154202 0.066939 0.010607 -0.076422 -0.037680 0.126335 0.027074 0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 21.971908 36.568986 3.191237 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 -0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole 0.376726 -0.162146 0.007751 0.064505 0.144810 -0.217808 -0.152561 -0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 22.804432 34.217575 5.436972 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 -0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole 0.056685 0.087927 0.028493 -0.015828 -0.161274 -0.009131 0.132781 -0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C 21.833045 31.822098 5.494719 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 -0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole 0.001075 -0.050214 0.014991 -0.047446 0.160108 -0.001747 -0.175099 0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 22.584708 30.072909 7.379303 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 -0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole -0.066905 0.052623 -0.037692 0.033015 -0.046038 0.056469 0.083730 0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 23.202461 28.587726 8.898155 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole 0.024985 -0.019560 0.010956 -0.010338 0.013703 -0.014533 -0.024660 -0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 24.650086 34.974599 7.218436 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole 0.000862 -0.071606 -0.028175 0.027284 0.078173 -0.054551 -0.049997 0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 26.255174 35.585122 8.609875 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 -0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole 0.001131 0.023490 0.018307 -0.014058 -0.034435 0.020126 0.016128 -0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 17.083570 37.678914 2.428602 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 -0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole 0.049872 -0.009996 -0.025010 -0.027426 0.025766 -0.018699 -0.000756 -0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 14.204569 36.485838 2.008788 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 -0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole -0.079313 0.431186 0.101331 -0.400784 -0.037962 -0.079017 -0.063368 0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 15.151375 33.362969 2.507663 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 -0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole -0.066522 -0.033296 -0.033077 0.141141 0.015825 0.201472 0.017252 -0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 13.468955 31.308389 2.520953 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 -0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole 0.082638 0.017348 -0.002354 -0.067724 0.011182 -0.121329 -0.008828 0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 12.061361 29.605691 2.580763 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole -0.020681 -0.004365 0.003281 0.025182 -0.001816 0.038396 -0.001465 -0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 18.672898 31.964575 3.099001 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 -0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole -0.135031 -0.064489 -0.081833 -0.097858 0.020810 0.250721 0.061022 -0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 18.227378 34.580185 2.860220 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 -0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole -0.006937 0.415001 -0.020564 -0.384074 0.195901 -0.173547 -0.175337 0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 20.340717 36.200628 3.007797 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole 0.362347 0.032096 0.067519 0.068455 0.111862 -0.234599 -0.179381 -0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 22.388170 35.393280 4.314105 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole 0.128236 -0.066192 0.098878 -0.110011 0.100435 -0.054183 -0.199314 -0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 20.716806 31.211574 4.398319 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 -0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole 0.150222 0.184993 -0.116290 0.324246 -0.434434 0.009658 0.550724 -0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 22.318739 33.019836 5.465846 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole -0.190699 -0.292172 -0.613901 0.301575 0.166371 0.195836 0.447530 -0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 22.208877 30.947503 6.437011 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole -0.090233 0.197003 0.239935 -0.184502 -0.227647 0.047722 -0.012288 0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 22.893585 29.330317 8.138729 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 -0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole 0.091256 -0.060414 0.057038 -0.055047 0.054877 -0.044246 -0.111914 -0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 23.727259 34.596087 6.327704 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole 0.091909 0.188995 0.277331 -0.069309 0.049758 -0.131139 -0.327089 0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 25.452630 35.279861 7.914156 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole 0.040090 0.095467 0.079919 -0.058683 -0.126158 0.051889 0.046239 -0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 17.896548 36.755592 2.626479 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 -0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole 0.344269 0.046395 -0.191856 0.007750 0.171132 -0.125564 0.020724 -0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 15.644070 37.082376 2.218695 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 -0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole 0.052482 0.017861 0.101437 0.090246 -0.034757 -0.166574 -0.066680 0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 16.448302 33.345534 2.701873 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole -0.195067 -0.254353 -0.246051 -0.014826 -0.033884 0.213914 0.279935 -0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 14.677972 34.924403 2.258226 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole 0.174029 0.208769 0.072703 -0.067761 0.017390 -0.228215 -0.090093 0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 14.310165 32.335679 2.514308 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole 0.138702 0.038897 0.021776 -0.027862 0.007098 -0.125103 -0.028874 -0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 12.765158 30.457040 2.550858 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 -0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole -0.084793 0.000751 0.009942 0.105319 -0.003154 0.171502 -0.006789 -0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 18.317257 34.530435 2.886817 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 25.821907 34.875642 7.730563 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.046697 30.166772 2.134565 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 23.453906 29.351911 7.987693 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.787384 32.811412 5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.659016 36.817144 3.117975 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.816063 36.654053 2.738049 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.626643 32.076527 3.116452 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.255084 36.140768 3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.739969 34.618841 6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.277971 32.317982 2.497182 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.216429 30.921486 6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.583903 33.323778 2.140523 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.641930 34.758915 2.273651 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.387688 35.280395 4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.381154 33.439381 3.272272 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.782257 31.294001 4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.889381 33.194183 5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.629141 29.083149 2.597099 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.744904 35.773774 9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.390509 28.133512 9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.908167 37.114208 2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.149546 38.327822 2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.351176 36.219903 2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.884602 30.334479 3.100978 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.118475 35.150141 8.374362 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.093072 30.573712 2.535393 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.488592 35.828505 7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.548580 28.904085 7.939807 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.300878 30.781058 2.417492 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.073552 29.984488 3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.025291 37.381182 3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.164236 36.460892 1.175445 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.844488 36.716035 2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.719115 29.676008 8.572568 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 34.981527 39.647535 -8.155916 - znuc, mass 16.000000 31.972070 - - Atom A02C 33.126190 36.920485 -8.561752 - znuc, mass 6.000000 12.000000 - - Atom A03C 34.090487 34.416314 -8.633478 - znuc, mass 6.000000 12.000000 - - Atom A04S 37.352869 33.679599 -8.266597 - znuc, mass 16.000000 31.972070 - - Atom A05C 38.185393 36.031010 -6.020862 - znuc, mass 6.000000 12.000000 - - Atom A06C 37.214006 38.426487 -5.963116 - znuc, mass 6.000000 12.000000 - - Atom A07C 37.965669 40.175676 -4.078532 - znuc, mass 6.000000 12.000000 - - Atom A08N 38.583422 41.660859 -2.559680 - znuc, mass 7.000000 14.003070 - - Atom A09C 40.031047 35.273985 -4.239399 - znuc, mass 6.000000 12.000000 - - Atom A10N 41.636135 34.663462 -2.847959 - znuc, mass 7.000000 14.003070 - - Atom A11N 32.464531 32.569670 -9.029232 - znuc, mass 7.000000 14.003070 - - Atom A12S 29.585530 33.762747 -9.449046 - znuc, mass 16.000000 31.972070 - - Atom A13C 30.532336 36.885615 -8.950172 - znuc, mass 6.000000 12.000000 - - Atom A14C 28.849916 38.940195 -8.936881 - znuc, mass 6.000000 12.000000 - - Atom A15N 27.442322 40.642893 -8.877072 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 34.981527 39.647535 -8.155916 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 -1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole -0.081100 -0.120946 0.015291 0.151351 -0.112179 0.258142 0.096888 -0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 33.126190 36.920485 -8.561752 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole 0.080562 0.064792 0.069734 -0.081135 -0.040643 -0.191017 -0.029091 0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 34.090487 34.416314 -8.633478 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 -0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole -0.154202 -0.066939 0.010607 0.076422 -0.037680 0.126335 0.027074 0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 37.352869 33.679599 -8.266597 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole 0.376726 0.162146 0.007751 -0.064505 0.144810 -0.217808 -0.152561 -0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 38.185393 36.031010 -6.020862 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole 0.056685 -0.087927 0.028493 0.015828 -0.161274 -0.009131 0.132781 -0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 37.214006 38.426487 -5.963116 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole 0.001075 0.050214 0.014991 0.047446 0.160108 -0.001747 -0.175099 0.000672 -0.097660 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 37.965669 40.175676 -4.078532 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole -0.066905 -0.052623 -0.037692 -0.033015 -0.046038 0.056469 0.083730 0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 38.583422 41.660859 -2.559680 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 -0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole 0.024985 0.019560 0.010956 0.010338 0.013703 -0.014533 -0.024660 -0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 40.031047 35.273985 -4.239399 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 -0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole 0.000862 0.071606 -0.028175 -0.027284 0.078173 -0.054551 -0.049997 0.053688 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 41.636135 34.663462 -2.847959 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole 0.001131 -0.023490 0.018307 0.014058 -0.034435 0.020126 0.016128 -0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 32.464531 32.569670 -9.029232 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole 0.049872 0.009996 -0.025010 0.027426 0.025766 -0.018699 -0.000756 -0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 29.585530 33.762747 -9.449046 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole -0.079313 -0.431186 0.101331 0.400784 -0.037962 -0.079017 -0.063368 0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 30.532336 36.885615 -8.950172 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole -0.066522 0.033296 -0.033077 -0.141141 0.015825 0.201472 0.017252 -0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 28.849916 38.940195 -8.936881 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole 0.082638 -0.017348 -0.002354 0.067724 0.011182 -0.121329 -0.008828 0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 27.442322 40.642893 -8.877072 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 -0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole -0.020681 0.004365 0.003281 -0.025182 -0.001816 0.038396 -0.001465 -0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 34.053859 38.284010 -8.358834 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole -0.135031 0.064489 -0.081833 0.097858 0.020810 0.250721 0.061022 -0.115691 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 33.608339 35.668399 -8.597615 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole -0.006937 -0.415001 -0.020564 0.384074 0.195901 -0.173547 -0.175337 0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 35.721678 34.047957 -8.450038 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 -0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole 0.362347 -0.032096 0.067519 -0.068455 0.111862 -0.234599 -0.179381 -0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 37.769131 34.855304 -7.143730 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 -0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole 0.128236 0.066192 0.098878 0.110011 0.100435 -0.054183 -0.199314 -0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 36.097767 39.037011 -7.059516 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole 0.150222 -0.184993 -0.116290 -0.324246 -0.434434 0.009658 0.550724 -0.159880 0.509238 0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 37.699700 37.228748 -5.991989 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 -0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole -0.190699 0.292172 -0.613901 -0.301575 0.166371 0.195836 0.447530 -0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 37.589838 39.301081 -5.020824 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 -0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole -0.090233 -0.197003 0.239935 0.184502 -0.227647 0.047722 -0.012288 0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 38.274546 40.918267 -3.319106 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole 0.091256 0.060414 0.057038 0.055047 0.054877 -0.044246 -0.111914 -0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 39.108220 35.652497 -5.130130 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 -0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole 0.091909 -0.188995 0.277331 0.069309 0.049758 -0.131139 -0.327089 0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 40.833591 34.968724 -3.543679 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 -0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole 0.040090 -0.095467 0.079919 0.058683 -0.126158 0.051889 0.046239 -0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 33.277509 33.492992 -8.831355 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole 0.344269 -0.046395 -0.191856 -0.007750 0.171132 -0.125564 0.020724 -0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 31.025031 33.166209 -9.239139 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole 0.052482 -0.017861 0.101437 -0.090246 -0.034757 -0.166574 -0.066680 0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 31.829263 36.903050 -8.755962 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 -0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole -0.195067 0.254353 -0.246051 0.014826 -0.033884 0.213914 0.279935 -0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 30.058933 35.324181 -9.199609 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 -0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole 0.174029 -0.208769 0.072703 0.067761 0.017390 -0.228215 -0.090093 0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 29.691126 37.912905 -8.943527 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 -0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole 0.138702 -0.038897 0.021776 0.027862 0.007098 -0.125103 -0.028874 -0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 28.146119 39.791544 -8.906976 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole -0.084793 -0.000751 0.009942 -0.105319 -0.003154 0.171502 -0.006789 -0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 33.225449 33.532549 -9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444129 6.305470 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 40.869553 34.420079 -3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821479 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.427576 40.081745 -9.323370 - polarizability tensor 5.676900 -5.144008 -0.727143 -3.339388 4.987141 -0.427749 -0.708036 -0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 37.929540 41.344499 -3.518027 - polarizability tensor 2.014660 1.411523 2.754674 0.096191 2.864916 1.368380 1.742511 2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 39.120930 35.629743 -5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.658932 37.930602 -8.960653 - polarizability tensor 2.247827 -1.783499 0.065362 -1.149026 2.379898 0.043699 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.289127 33.134376 -9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.007603 38.172057 -8.341383 - polarizability tensor 5.018070 4.875224 1.088491 1.811907 4.579783 0.228245 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 35.636045 34.107816 -8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.597390 39.327098 -5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.698218 35.718149 -8.571017 - polarizability tensor 3.009104 -0.265453 0.164854 -0.392052 2.422903 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.270342 37.054401 -5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522052 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.762115 36.809204 -8.185563 - polarizability tensor 13.654114 -2.638427 1.355101 -2.419218 4.125882 0.076557 2.653090 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.022891 35.489670 -9.184184 - polarizability tensor 2.960546 0.866100 0.523975 1.061801 5.117295 0.710667 0.733477 0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 36.163218 38.954584 -6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.964864 36.924806 -9.317312 - polarizability tensor 12.949895 -2.646494 1.785361 -2.381880 4.179640 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.768649 34.968190 -7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.168344 37.437172 -6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460098 13.263287 0.923067 0.789240 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.010102 41.165436 -8.860735 - polarizability tensor 2.586919 -0.528104 -0.018359 -0.362648 2.294263 -0.043707 0.109841 -0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 42.125865 34.474811 -2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.771470 42.115072 -2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.545198 33.787692 -10.282389 - polarizability tensor 8.609790 3.161438 4.330874 3.390209 5.869742 2.969759 2.433190 1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.406252 32.867403 -7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.530507 31.920762 -9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.681815 39.467504 -9.040202 - polarizability tensor 3.548722 -1.577098 0.269187 -2.005619 4.318440 0.319352 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 41.202868 35.372942 -3.727272 - polarizability tensor 5.713597 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.454513 40.264096 -7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225663 5.733018 0.256666 1.271657 0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 40.499436 35.098443 -3.083473 - polarizability tensor 6.707221 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.100077 40.572576 -2.885267 - polarizability tensor 1.169671 1.724727 0.923947 2.191905 7.141823 4.969365 0.687892 2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.265668 39.914196 -8.356897 - polarizability tensor 5.399126 -5.564498 0.213556 -4.017191 5.082747 0.297192 1.393777 -0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 35.474033 39.674872 -8.922442 - polarizability tensor 10.702598 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.732137 34.028681 -9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.197023 33.594532 -8.719786 - polarizability tensor 9.556647 3.699450 -1.931270 3.986422 6.261107 -1.285638 0.992071 0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.039977 33.431441 -8.339860 - polarizability tensor 4.541349 2.067478 1.036870 1.580946 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.834866 40.896674 -3.470143 - polarizability tensor 2.204025 0.653491 0.327503 1.701255 5.540977 4.544585 0.766864 3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 25.761931 46.033770 -3.301918 - znuc, mass 16.000000 31.972070 - - Atom A02C 27.617268 43.306720 -2.896083 - znuc, mass 6.000000 12.000000 - - Atom A03C 26.652971 40.802549 -2.824356 - znuc, mass 6.000000 12.000000 - - Atom A04S 23.390590 40.065834 -3.191237 - znuc, mass 16.000000 31.972070 - - Atom A05C 22.558065 42.417244 -5.436972 - znuc, mass 6.000000 12.000000 - - Atom A06C 23.529453 44.812722 -5.494719 - znuc, mass 6.000000 12.000000 - - Atom A07C 22.777789 46.561911 -7.379303 - znuc, mass 6.000000 12.000000 - - Atom A08N 22.160036 48.047093 -8.898155 - znuc, mass 7.000000 14.003070 - - Atom A09C 20.712412 41.660220 -7.218436 - znuc, mass 6.000000 12.000000 - - Atom A10N 19.107324 41.049697 -8.609875 - znuc, mass 7.000000 14.003070 - - Atom A11N 28.278927 38.955905 -2.428602 - znuc, mass 7.000000 14.003070 - - Atom A12S 31.157929 40.148982 -2.008788 - znuc, mass 16.000000 31.972070 - - Atom A13C 30.211123 43.271850 -2.507663 - znuc, mass 6.000000 12.000000 - - Atom A14C 31.893542 45.326430 -2.520953 - znuc, mass 6.000000 12.000000 - - Atom A15N 33.301137 47.029128 -2.580763 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 25.761931 46.033770 -3.301918 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 -1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole 0.081100 -0.120946 -0.015291 0.151351 0.112179 -0.258142 -0.096888 0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 27.617268 43.306720 -2.896083 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole -0.080562 0.064792 -0.069734 -0.081135 0.040643 0.191017 0.029091 -0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 26.652971 40.802549 -2.824356 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 -0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole 0.154202 -0.066939 -0.010607 0.076422 0.037680 -0.126335 -0.027074 -0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 23.390590 40.065834 -3.191237 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole -0.376726 0.162146 -0.007751 -0.064505 -0.144810 0.217808 0.152561 0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 22.558065 42.417244 -5.436972 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole -0.056685 -0.087927 -0.028493 0.015828 0.161274 0.009131 -0.132781 0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 23.529453 44.812722 -5.494719 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole -0.001075 0.050214 -0.014991 0.047446 -0.160108 0.001747 0.175099 -0.000672 -0.097660 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 22.777789 46.561911 -7.379303 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole 0.066905 -0.052623 0.037692 -0.033015 0.046038 -0.056469 -0.083730 -0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 22.160036 48.047093 -8.898155 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 -0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole -0.024985 0.019560 -0.010956 0.010338 -0.013703 0.014533 0.024660 0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 20.712412 41.660220 -7.218436 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 -0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole -0.000862 0.071606 0.028175 -0.027284 -0.078173 0.054551 0.049997 -0.053688 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 19.107324 41.049697 -8.609875 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole -0.001131 -0.023490 -0.018307 0.014058 0.034435 -0.020126 -0.016128 0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 28.278927 38.955905 -2.428602 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole -0.049872 0.009996 0.025010 0.027426 -0.025766 0.018699 0.000756 0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 31.157929 40.148982 -2.008788 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole 0.079313 -0.431186 -0.101331 0.400784 0.037962 0.079017 0.063368 -0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 30.211123 43.271850 -2.507663 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole 0.066522 0.033296 0.033077 -0.141141 -0.015825 -0.201472 -0.017252 0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 31.893542 45.326430 -2.520953 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole -0.082638 -0.017348 0.002354 0.067724 -0.011182 0.121329 0.008828 -0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 33.301137 47.029128 -2.580763 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 -0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole 0.020681 0.004365 -0.003281 -0.025182 0.001816 -0.038396 0.001465 0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 26.689600 44.670245 -3.099001 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole 0.135031 0.064489 0.081833 0.097858 -0.020810 -0.250721 -0.061022 0.115691 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 27.135120 42.054634 -2.860220 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole 0.006937 -0.415001 0.020564 0.384074 -0.195901 0.173547 0.175337 -0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 25.021781 40.434192 -3.007797 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 -0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole -0.362347 -0.032096 -0.067519 -0.068455 -0.111862 0.234599 0.179381 0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 22.974328 41.241539 -4.314105 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 -0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole -0.128236 0.066192 -0.098878 0.110011 -0.100435 0.054183 0.199314 0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 24.645692 45.423246 -4.398319 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole -0.150222 -0.184993 0.116290 -0.324246 0.434434 -0.009658 -0.550724 0.159880 0.509238 0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 23.043759 43.614983 -5.465846 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 -0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole 0.190699 0.292172 0.613901 -0.301575 -0.166371 -0.195836 -0.447530 0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 23.153621 45.687316 -6.437011 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 -0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole 0.090233 -0.197003 -0.239935 0.184502 0.227647 -0.047722 0.012288 -0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 22.468913 47.304502 -8.138729 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole -0.091256 0.060414 -0.057038 0.055047 -0.054877 0.044246 0.111914 0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 21.635238 42.038732 -6.327704 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 -0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole -0.091909 -0.188995 -0.277331 0.069309 -0.049758 0.131139 0.327089 -0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 19.909868 41.354959 -7.914156 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 -0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole -0.040090 -0.095467 -0.079919 0.058683 0.126158 -0.051889 -0.046239 0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 27.465949 39.879227 -2.626479 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole -0.344269 -0.046395 0.191856 -0.007750 -0.171132 0.125564 -0.020724 0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 29.718428 39.552444 -2.218695 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole -0.052482 -0.017861 -0.101437 -0.090246 0.034757 0.166574 0.066680 -0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 28.914196 43.289285 -2.701873 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 -0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole 0.195067 0.254353 0.246051 0.014826 0.033884 -0.213914 -0.279935 0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 30.684526 41.710416 -2.258226 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 -0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole -0.174029 -0.208769 -0.072703 0.067761 -0.017390 0.228215 0.090093 -0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 31.052333 44.299140 -2.514308 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 -0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole -0.138702 -0.038897 -0.021776 0.027862 -0.007098 0.125103 0.028874 0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 32.597340 46.177779 -2.550858 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole 0.084793 -0.000751 -0.009942 -0.105319 0.003154 -0.171502 0.006789 0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 27.518009 39.918784 -2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444129 6.305470 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 19.873905 40.806314 -7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821479 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.315882 46.467980 -2.134465 - polarizability tensor 5.676900 5.144008 -0.727143 3.339388 4.987141 0.427749 -0.708036 0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 22.813919 47.730734 -7.939808 - polarizability tensor 2.014660 -1.411523 2.754674 -0.096191 2.864916 -1.368380 1.742511 -2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.622529 42.015978 -6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.084527 44.316837 -2.497182 - polarizability tensor 2.247827 1.783499 0.065362 1.149026 2.379898 -0.043699 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.454331 39.520611 -2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.735855 44.558292 -3.116452 - polarizability tensor 5.018070 -4.875224 1.088491 -1.811907 4.579783 -0.228245 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.107413 40.494051 -3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.146068 45.713333 -6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.045240 42.104384 -2.886817 - polarizability tensor 3.009104 0.265453 0.164854 0.392052 2.422903 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.473116 43.440636 -5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522052 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.981343 43.195439 -3.272272 - polarizability tensor 13.654114 2.638427 1.355101 2.419218 4.125882 -0.076557 2.653090 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.720568 41.875905 -2.273651 - polarizability tensor 2.960546 -0.866100 0.523975 -1.061801 5.117295 -0.710667 0.733477 -0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.580241 45.340819 -4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.778595 43.311041 -2.140523 - polarizability tensor 12.949895 2.646494 1.785361 2.381880 4.179640 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.974810 41.354425 -4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.575114 43.823407 -5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460098 13.263287 -0.923067 0.789240 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.733356 47.551671 -2.597100 - polarizability tensor 2.586919 0.528104 -0.018359 0.362648 2.294263 0.043707 0.109841 0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.617594 40.861046 -9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.971988 48.501307 -9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.198261 40.173927 -1.175445 - polarizability tensor 8.609790 -3.161438 4.330874 -3.390209 5.869742 -2.969759 2.433190 -1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.337207 39.253638 -3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.212952 38.306997 -2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.061644 45.853739 -2.417633 - polarizability tensor 3.548722 1.577098 0.269187 2.005619 4.318440 -0.319352 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.540590 41.759177 -7.730563 - polarizability tensor 5.713597 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.288946 46.650331 -3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225663 5.733018 -0.256666 1.271657 -0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.244023 41.484678 -8.374362 - polarizability tensor 6.707221 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.643382 46.958811 -8.572568 - polarizability tensor 1.169671 -1.724727 0.923947 -2.191905 7.141823 -4.969365 0.687892 -2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.477790 46.300431 -3.100937 - polarizability tensor 5.399126 5.564498 0.213556 4.017191 5.082747 -0.297192 1.393777 0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.269426 46.061107 -2.535393 - polarizability tensor 10.702598 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.011321 40.414916 -2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.546435 39.980766 -2.738048 - polarizability tensor 9.556647 -3.699450 -1.931270 -3.986422 6.261107 1.285638 0.992071 -0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.703482 39.817676 -3.117975 - polarizability tensor 4.541349 -2.067478 1.036870 -1.580946 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.908592 47.282909 -7.987692 - polarizability tensor 2.204025 -0.653491 0.327503 -1.701255 5.540977 -4.544585 0.766864 -3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S 2.300299 36.987284 31.071586 - znuc, mass 16.000000 31.972070 - - Atom A02C 4.155636 39.714335 31.477421 - znuc, mass 6.000000 12.000000 - - Atom A03C 3.191339 42.218505 31.549148 - znuc, mass 6.000000 12.000000 - - Atom A04S -0.071042 42.955220 31.182267 - znuc, mass 16.000000 31.972070 - - Atom A05C -0.903567 40.603810 28.936532 - znuc, mass 6.000000 12.000000 - - Atom A06C 0.067821 38.208333 28.878785 - znuc, mass 6.000000 12.000000 - - Atom A07C -0.683843 36.459144 26.994201 - znuc, mass 6.000000 12.000000 - - Atom A08N -1.301596 34.973961 25.475349 - znuc, mass 7.000000 14.003070 - - Atom A09C -2.749220 41.360834 27.155068 - znuc, mass 6.000000 12.000000 - - Atom A10N -4.354308 41.971357 25.763629 - znuc, mass 7.000000 14.003070 - - Atom A11N 4.817295 44.065149 31.944902 - znuc, mass 7.000000 14.003070 - - Atom A12S 7.696297 42.872073 32.364716 - znuc, mass 16.000000 31.972070 - - Atom A13C 6.749491 39.749204 31.865841 - znuc, mass 6.000000 12.000000 - - Atom A14C 8.431910 37.694624 31.852551 - znuc, mass 6.000000 12.000000 - - Atom A15N 9.839505 35.991926 31.792741 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 2.300299 36.987284 31.071586 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 1.019605 -0.491700 - duadrupole 0.200253 0.667129 -0.867382 0.820424 2.014536 -0.644902 - octupole 0.081100 0.120946 -0.015291 -0.151351 0.112179 -0.258142 -0.096888 0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 4.155636 39.714335 31.477421 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 -0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026087 0.009793 - octupole -0.080562 -0.064792 -0.069734 0.081135 0.040643 0.191017 0.029091 -0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C 3.191339 42.218505 31.549148 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole 0.154202 0.066939 -0.010607 -0.076422 0.037680 -0.126335 -0.027074 -0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S -0.071042 42.955220 31.182267 - znuc, monopole 16.000000 -15.424149 - dipole 0.645104 -0.702590 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883320 - octupole -0.376726 -0.162146 -0.007751 0.064505 -0.144810 0.217808 0.152561 0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C -0.903567 40.603810 28.936532 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 -0.012964 -0.126299 - duadrupole -0.086713 0.172783 -0.086070 -0.198246 0.015502 0.024956 - octupole -0.056685 0.087927 -0.028493 -0.015828 0.161274 0.009131 -0.132781 0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C 0.067821 38.208333 28.878785 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 -0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole -0.001075 -0.050214 -0.014991 -0.047446 -0.160108 0.001747 0.175099 -0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C -0.683843 36.459144 26.994201 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 -0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole 0.066905 0.052623 0.037692 0.033015 0.046038 -0.056469 -0.083730 -0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N -1.301596 34.973961 25.475349 - znuc, monopole 7.000000 -6.844356 - dipole 0.128197 0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole -0.024985 -0.019560 -0.010956 -0.010338 -0.013703 0.014533 0.024660 0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C -2.749220 41.360834 27.155068 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 0.134363 -0.337213 - duadrupole 0.044076 -0.065352 0.021276 0.052673 0.059479 0.009395 - octupole -0.000862 -0.071606 0.028175 0.027284 -0.078173 0.054551 0.049997 -0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N -4.354308 41.971357 25.763629 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 -0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole -0.001131 0.023490 -0.018307 -0.014058 0.034435 -0.020126 -0.016128 0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 4.817295 44.065149 31.944902 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 -0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109387 -0.037752 - octupole -0.049872 -0.009996 0.025010 -0.027426 -0.025766 0.018699 0.000756 0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 7.696297 42.872073 32.364716 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 -0.461479 -0.227968 - duadrupole 0.657690 1.380422 -2.038112 -0.516798 0.477704 0.276530 - octupole 0.079313 0.431186 -0.101331 -0.400784 0.037962 0.079017 0.063368 -0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 6.749491 39.749204 31.865841 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 -0.118662 0.023762 - duadrupole 0.102513 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole 0.066522 -0.033296 0.033077 0.141141 -0.015825 -0.201472 -0.017252 0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 8.431910 37.694624 31.852551 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 -0.447126 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole -0.082638 0.017348 0.002354 -0.067724 -0.011182 0.121329 0.008828 -0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 9.839505 35.991926 31.792741 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013045 0.009826 - octupole 0.020681 -0.004365 -0.003281 0.025182 0.001816 -0.038396 0.001465 0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 3.227968 38.350810 31.274503 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 -0.204132 0.059744 - duadrupole -0.127966 0.303137 -0.175171 0.361286 0.022579 0.002456 - octupole 0.135031 -0.064489 0.081833 -0.097858 -0.020810 -0.250721 -0.061022 0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 3.673488 40.966420 31.513284 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 -0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099039 0.017363 - octupole 0.006937 0.415001 0.020564 -0.384074 -0.195901 0.173547 0.175337 -0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 1.560148 42.586863 31.365707 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole -0.362347 0.032096 -0.067519 0.068455 -0.111862 0.234599 0.179381 0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 -0.487304 41.779515 30.059399 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121104 0.078949 0.001930 0.434804 - octupole -0.128236 -0.066192 -0.098878 -0.110011 -0.100435 0.054183 0.199314 0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 1.184060 37.597809 29.975185 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 -0.216246 0.112894 - duadrupole 0.231616 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole -0.150222 0.184993 0.116290 0.324246 0.434434 -0.009658 -0.550724 0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 -0.417873 39.406071 28.907658 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole 0.190699 -0.292172 0.613901 0.301575 -0.166371 -0.195836 -0.447530 0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 -0.308011 37.333738 27.936493 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 0.079077 0.047152 - duadrupole 0.177104 0.006090 -0.183194 -0.206576 0.019465 -0.143936 - octupole 0.090233 0.197003 -0.239935 -0.184502 0.227647 -0.047722 0.012288 -0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 -0.992719 35.716552 26.234775 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 -0.228151 -0.227536 - duadrupole -0.226595 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole -0.091256 -0.060414 -0.057038 -0.055047 -0.054877 0.044246 0.111914 0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 -1.826394 40.982322 28.045800 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142767 -0.071307 0.108122 - octupole -0.091909 0.188995 -0.277331 -0.069309 -0.049758 0.131139 0.327089 -0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 -3.551764 41.666096 26.459348 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole -0.040090 0.095467 -0.079919 -0.058683 0.126158 -0.051889 -0.046239 0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 4.004317 43.141827 31.747025 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 -0.115721 -0.003434 - duadrupole 0.270647 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole -0.344269 0.046395 0.191856 0.007750 -0.171132 0.125564 -0.020724 0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 6.256796 43.468611 32.154809 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 -0.026719 0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole -0.052482 0.017861 -0.101437 0.090246 0.034757 0.166574 0.066680 -0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 5.452564 39.731769 31.671631 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole 0.195067 -0.254353 0.246051 -0.014826 0.033884 -0.213914 -0.279935 0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 7.222894 41.310638 32.115278 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole -0.174029 0.208769 -0.072703 -0.067761 -0.017390 0.228215 0.090093 -0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 7.590701 38.721914 31.859196 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole -0.138702 0.038897 -0.021776 -0.027862 -0.007098 0.125103 0.028874 0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 9.135708 36.843275 31.822646 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 -0.265565 -0.005667 - duadrupole 0.053652 0.238491 -0.292143 -0.457319 -0.029902 0.030180 - octupole 0.084793 0.000751 -0.009942 0.105319 0.003154 -0.171502 0.006789 0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 3.583608 40.916670 31.486687 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -3.921042 41.261877 26.642941 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.854169 36.553007 32.238939 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords -1.553040 35.738146 26.385811 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.886518 39.197647 29.220750 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.241850 43.203379 31.255529 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.084803 43.040288 31.635455 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.274223 38.462762 31.257052 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.645781 42.527003 31.342289 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.839103 41.005076 28.020022 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.622894 38.704217 31.876322 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.315564 37.307721 27.916692 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.316963 39.710013 32.232981 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.258936 41.145150 32.099853 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.486822 41.666630 29.965816 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.519711 39.825616 31.101232 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.118609 37.680236 29.886424 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.011484 39.580418 28.521541 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.271724 35.469384 31.776405 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.844038 42.160009 25.335067 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.489644 34.519747 25.009608 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.992699 43.500443 32.106919 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.751320 44.714057 31.993285 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.450311 42.606138 31.935679 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.016264 36.720714 31.272526 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.217610 41.536376 25.999142 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.807794 36.959947 31.838111 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.587727 42.214740 26.657170 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.647714 35.290320 26.433697 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.599988 37.167293 31.956012 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.827314 36.370723 30.590634 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.124425 43.767417 30.716646 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.736629 42.847127 33.198059 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.056377 43.102270 32.281745 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.818249 36.062243 25.800936 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_1_L - Atom A01S 11.519895 30.601049 26.217588 - znuc, mass 16.000000 31.972070 - - Atom A02C 9.664558 33.328100 25.811752 - znuc, mass 6.000000 12.000000 - - Atom A03C 10.628855 35.832270 25.740026 - znuc, mass 6.000000 12.000000 - - Atom A04S 13.891237 36.568986 26.106907 - znuc, mass 16.000000 31.972070 - - Atom A05C 14.723761 34.217575 28.352642 - znuc, mass 6.000000 12.000000 - - Atom A06C 13.752374 31.822098 28.410388 - znuc, mass 6.000000 12.000000 - - Atom A07C 14.504037 30.072909 30.294972 - znuc, mass 6.000000 12.000000 - - Atom A08N 15.121790 28.587726 31.813824 - znuc, mass 7.000000 14.003070 - - Atom A09C 16.569415 34.974599 30.134105 - znuc, mass 6.000000 12.000000 - - Atom A10N 18.174503 35.585122 31.525545 - znuc, mass 7.000000 14.003070 - - Atom A11N 9.002899 37.678914 25.344272 - znuc, mass 7.000000 14.003070 - - Atom A12S 6.123898 36.485838 24.924458 - znuc, mass 16.000000 31.972070 - - Atom A13C 7.070704 33.362969 25.423332 - znuc, mass 6.000000 12.000000 - - Atom A14C 5.388284 31.308389 25.436623 - znuc, mass 6.000000 12.000000 - - Atom A15N 3.980690 29.605691 25.496432 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 11.519895 30.601049 26.217588 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 1.019605 0.491700 - duadrupole 0.200253 0.667129 -0.867382 -0.820424 2.014536 0.644902 - octupole -0.081100 0.120946 0.015291 -0.151351 -0.112179 0.258142 0.096888 -0.177042 0.030405 -0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 9.664558 33.328100 25.811752 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 -0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026087 -0.009793 - octupole 0.080562 -0.064792 0.069734 0.081135 -0.040643 -0.191017 -0.029091 0.110455 -0.016343 0.060049 - screen, screen2 0.731440 1.827189 - - Multipole point A03C 10.628855 35.832270 25.740026 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole -0.154202 0.066939 0.010607 -0.076422 -0.037680 0.126335 0.027074 0.027868 0.009483 -0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 13.891237 36.568986 26.106907 - znuc, monopole 16.000000 -15.424149 - dipole -0.645104 -0.702590 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883320 - octupole 0.376726 -0.162146 0.007751 0.064505 0.144810 -0.217808 -0.152561 -0.158918 0.097642 0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 14.723761 34.217575 28.352642 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 -0.012964 0.126299 - duadrupole -0.086713 0.172783 -0.086070 0.198246 0.015502 -0.024956 - octupole 0.056685 0.087927 0.028493 -0.015828 -0.161274 -0.009131 0.132781 -0.047554 -0.072099 -0.175924 - screen, screen2 0.959383 1.795310 - - Multipole point A06C 13.752374 31.822098 28.410388 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 -0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole 0.001075 -0.050214 0.014991 -0.047446 0.160108 -0.001747 -0.175099 0.000672 0.097660 0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 14.504037 30.072909 30.294972 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 -0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole -0.066905 0.052623 -0.037692 0.033015 -0.046038 0.056469 0.083730 0.010436 -0.085637 -0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 15.121790 28.587726 31.813824 - znuc, monopole 7.000000 -6.844356 - dipole -0.128197 0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole 0.024985 -0.019560 0.010956 -0.010338 0.013703 -0.014533 -0.024660 -0.010452 0.029898 0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 16.569415 34.974599 30.134105 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 0.134363 0.337213 - duadrupole 0.044076 -0.065352 0.021276 -0.052673 0.059479 -0.009395 - octupole 0.000862 -0.071606 -0.028175 0.027284 0.078173 -0.054551 -0.049997 0.053688 0.044323 0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 18.174503 35.585122 31.525545 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 -0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole 0.001131 0.023490 0.018307 -0.014058 -0.034435 0.020126 0.016128 -0.021257 -0.009432 -0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 9.002899 37.678914 25.344272 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 -0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109387 0.037752 - octupole 0.049872 -0.009996 -0.025010 -0.027426 0.025766 -0.018699 -0.000756 -0.031173 0.037423 -0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 6.123898 36.485838 24.924458 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 -0.461479 0.227968 - duadrupole 0.657690 1.380422 -2.038112 0.516798 0.477704 -0.276530 - octupole -0.079313 0.431186 0.101331 -0.400784 -0.037962 -0.079017 -0.063368 0.158329 -0.030402 -0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 7.070704 33.362969 25.423332 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 -0.118662 -0.023762 - duadrupole 0.102513 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole -0.066522 -0.033296 -0.033077 0.141141 0.015825 0.201472 0.017252 -0.134950 -0.107845 -0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 5.388284 31.308389 25.436623 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 -0.447126 0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole 0.082638 0.017348 -0.002354 -0.067724 0.011182 -0.121329 -0.008828 0.038691 0.050375 0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 3.980690 29.605691 25.496432 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013045 -0.009826 - octupole -0.020681 -0.004365 0.003281 0.025182 -0.001816 0.038396 -0.001465 -0.017715 -0.020817 -0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 10.592227 31.964575 26.014670 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 -0.204132 -0.059744 - duadrupole -0.127966 0.303137 -0.175171 -0.361286 0.022579 -0.002456 - octupole -0.135031 -0.064489 -0.081833 -0.097858 0.020810 0.250721 0.061022 -0.115691 0.162347 -0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 10.146707 34.580185 25.775889 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 -0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099039 -0.017363 - octupole -0.006937 0.415001 -0.020564 -0.384074 0.195901 -0.173547 -0.175337 0.180484 -0.030927 -0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 12.260046 36.200628 25.923466 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole 0.362347 0.032096 0.067519 0.068455 0.111862 -0.234599 -0.179381 -0.127747 -0.100551 0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 14.307499 35.393280 27.229774 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121104 -0.078949 0.001930 -0.434804 - octupole 0.128236 -0.066192 0.098878 -0.110011 0.100435 -0.054183 -0.199314 -0.074053 0.176203 0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 12.636135 31.211574 27.313988 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 -0.216246 -0.112894 - duadrupole 0.231616 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole 0.150222 0.184993 -0.116290 0.324246 -0.434434 0.009658 0.550724 -0.159880 -0.509238 -0.036070 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 14.238068 33.019836 28.381515 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole -0.190699 -0.292172 -0.613901 0.301575 0.166371 0.195836 0.447530 -0.005136 -0.009404 0.097493 - screen, screen2 0.215934 1.658300 - - Multipole point BO76 14.128206 30.947503 29.352680 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 0.079077 -0.047152 - duadrupole 0.177104 0.006090 -0.183194 0.206576 0.019465 0.143936 - octupole -0.090233 0.197003 0.239935 -0.184502 -0.227647 0.047722 -0.012288 0.042511 -0.012501 -0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 14.812914 29.330317 31.054398 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 -0.228151 0.227536 - duadrupole -0.226595 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole 0.091256 -0.060414 0.057038 -0.055047 0.054877 -0.044246 -0.111914 -0.047010 0.115460 0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 15.646588 34.596087 29.243374 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142767 -0.071307 -0.108122 - octupole 0.091909 0.188995 0.277331 -0.069309 0.049758 -0.131139 -0.327089 0.039230 -0.119686 0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 17.371959 35.279861 30.829825 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole 0.040090 0.095467 0.079919 -0.058683 -0.126158 0.051889 0.046239 -0.091979 -0.036784 -0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 9.815877 36.755592 25.542149 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 -0.115721 0.003434 - duadrupole 0.270647 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole 0.344269 0.046395 -0.191856 0.007750 0.171132 -0.125564 0.020724 -0.218705 -0.054145 0.058621 - screen, screen2 10.000000 6.946238 - - Multipole point BO1211 7.563399 37.082376 25.134365 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 -0.026719 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole 0.052482 0.017861 0.101437 0.090246 -0.034757 -0.166574 -0.066680 0.114093 -0.108108 0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 8.367631 33.345534 25.617542 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole -0.195067 -0.254353 -0.246051 -0.014826 -0.033884 0.213914 0.279935 -0.018847 0.269179 -0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 6.597301 34.924403 25.173895 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole 0.174029 0.208769 0.072703 -0.067761 0.017390 -0.228215 -0.090093 0.054186 -0.141008 0.037712 - screen, screen2 1.692976 10.000000 - - Multipole point BO1413 6.229494 32.335679 25.429977 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole 0.138702 0.038897 0.021776 -0.027862 0.007098 -0.125103 -0.028874 -0.013599 -0.011034 0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 4.684487 30.457040 25.466528 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 -0.265565 0.005667 - duadrupole 0.053652 0.238491 -0.292143 0.457319 -0.029902 -0.030180 - octupole -0.084793 0.000751 0.009942 0.105319 -0.003154 0.171502 -0.006789 -0.086709 -0.106070 -0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 10.236586 34.530435 25.802487 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 -14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 17.741236 34.875642 30.646232 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 4.078531 12.000000 6.000000 - old induced dipole 0.000000 -15.284419 -1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.966026 30.166772 25.050235 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -18.954885 3.653948 - induced dipole 2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 -9.783282 5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 15.373234 29.351911 30.903362 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.706712 32.811412 28.068423 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.578345 36.817144 26.033644 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.735392 36.654053 25.653718 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.545971 32.076527 26.032121 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.174413 36.140768 25.946884 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.659298 34.618841 29.269151 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.197300 32.317982 25.412851 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.135758 30.921486 29.372481 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.503232 33.323778 25.056192 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.561259 34.758915 25.189320 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.307017 35.280395 27.323358 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.300483 33.439381 26.187941 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.701586 31.294001 27.402749 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.808710 33.194183 28.767632 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.548470 29.083149 25.512769 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.664233 35.773774 31.954106 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.309838 28.133512 32.279566 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.827495 37.114208 25.182254 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.068875 38.327822 25.295888 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.270505 36.219903 25.353494 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.803931 30.334479 26.016647 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.037804 35.150141 31.290032 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.012401 30.573712 25.451063 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.407921 35.828505 30.632003 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.467909 28.904085 30.855477 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.220207 30.781058 25.333161 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.992881 29.984488 26.698539 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.944620 37.381182 26.572528 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.083565 36.460892 24.091115 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.763817 36.716035 25.007429 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.638444 29.676008 31.488237 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 26.900854 39.647535 14.759753 - znuc, mass 16.000000 31.972070 - - Atom A02C 25.045519 36.920484 14.353917 - znuc, mass 6.000000 12.000000 - - Atom A03C 26.009817 34.416314 14.282191 - znuc, mass 6.000000 12.000000 - - Atom A04S 29.272198 33.679600 14.649073 - znuc, mass 16.000000 31.972070 - - Atom A05C 30.104721 36.031011 16.894808 - znuc, mass 6.000000 12.000000 - - Atom A06C 29.133333 38.426488 16.952554 - znuc, mass 6.000000 12.000000 - - Atom A07C 29.884995 40.175677 18.837138 - znuc, mass 6.000000 12.000000 - - Atom A08N 30.502747 41.660861 20.355990 - znuc, mass 7.000000 14.003070 - - Atom A09C 31.950375 35.273988 18.676272 - znuc, mass 6.000000 12.000000 - - Atom A10N 33.555463 34.663465 20.067712 - znuc, mass 7.000000 14.003070 - - Atom A11N 24.383862 32.569669 13.886437 - znuc, mass 7.000000 14.003070 - - Atom A12S 21.504860 33.762744 13.466623 - znuc, mass 16.000000 31.972070 - - Atom A13C 22.451664 36.885613 13.965497 - znuc, mass 6.000000 12.000000 - - Atom A14C 20.769244 38.940193 13.978787 - znuc, mass 6.000000 12.000000 - - Atom A15N 19.361648 40.642890 14.038596 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 26.900854 39.647535 14.759753 - znuc, monopole 16.000000 -15.415585 - dipole 0.031685 -1.019605 0.491700 - duadrupole 0.200252 0.667129 -0.867381 0.820424 2.014536 -0.644901 - octupole -0.081100 -0.120945 0.015291 0.151350 -0.112179 0.258142 0.096888 -0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 25.045519 36.920484 14.353917 - znuc, monopole 6.000000 -5.686439 - dipole -0.147468 0.069991 -0.013557 - duadrupole 0.211125 0.081875 -0.293000 -0.056665 0.026088 0.009793 - octupole 0.080562 0.064792 0.069734 -0.081134 -0.040643 -0.191017 -0.029091 0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 26.009817 34.416314 14.282191 - znuc, monopole 6.000000 -5.188604 - dipole -0.287821 -0.376450 -0.044654 - duadrupole -0.078438 0.263091 -0.184653 0.130204 -0.010839 0.057149 - octupole -0.154202 -0.066939 0.010607 0.076422 -0.037680 0.126335 0.027074 0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 29.272198 33.679600 14.649073 - znuc, monopole 16.000000 -15.424149 - dipole -0.645105 0.702589 0.533508 - duadrupole 1.204718 -0.439167 -0.765551 -0.204941 0.964000 1.883321 - octupole 0.376726 0.162146 0.007751 -0.064504 0.144810 -0.217808 -0.152561 -0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 30.104721 36.031011 16.894808 - znuc, monopole 6.000000 -5.640629 - dipole 0.049828 0.012964 0.126299 - duadrupole -0.086713 0.172782 -0.086070 -0.198246 0.015502 0.024956 - octupole 0.056685 -0.087927 0.028493 0.015828 -0.161274 -0.009131 0.132781 -0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 29.133333 38.426488 16.952554 - znuc, monopole 6.000000 -5.646592 - dipole 0.034572 0.011110 0.116276 - duadrupole -0.170291 0.257434 -0.087143 -0.104852 0.076555 0.011620 - octupole 0.001075 0.050214 0.014991 0.047446 0.160109 -0.001747 -0.175100 0.000672 -0.097661 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 29.884995 40.175677 18.837138 - znuc, monopole 6.000000 -4.634467 - dipole 0.163232 0.355849 0.376625 - duadrupole 0.022933 -0.066203 0.043270 0.029798 0.042405 0.032905 - octupole -0.066905 -0.052623 -0.037692 -0.033015 -0.046038 0.056469 0.083730 0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 30.502747 41.660861 20.355990 - znuc, monopole 7.000000 -6.844356 - dipole -0.128196 -0.266682 -0.293977 - duadrupole 0.086050 -0.042359 -0.043691 -0.077137 -0.049858 -0.186337 - octupole 0.024985 0.019560 0.010956 0.010338 0.013703 -0.014533 -0.024660 -0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 31.950375 35.273988 18.676272 - znuc, monopole 6.000000 -4.633995 - dipole 0.401189 -0.134363 0.337213 - duadrupole 0.044076 -0.065351 0.021276 0.052673 0.059479 0.009395 - octupole 0.000862 0.071606 -0.028175 -0.027284 0.078173 -0.054551 -0.049998 0.053689 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 33.555463 34.663465 20.067712 - znuc, monopole 7.000000 -6.841667 - dipole -0.310426 0.091617 -0.265732 - duadrupole -0.070948 0.091461 -0.020513 0.072876 -0.167404 0.096084 - octupole 0.001131 -0.023490 0.018307 0.014058 -0.034435 0.020126 0.016128 -0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 24.383862 32.569669 13.886437 - znuc, monopole 7.000000 -7.064539 - dipole -0.008007 0.506325 -0.003176 - duadrupole 0.542026 -0.452158 -0.089868 0.144992 0.109388 -0.037751 - octupole 0.049872 0.009996 -0.025010 0.027426 0.025766 -0.018699 -0.000756 -0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 21.504860 33.762744 13.466623 - znuc, monopole 16.000000 -15.194130 - dipole 0.941861 0.461479 0.227968 - duadrupole 0.657691 1.380421 -2.038112 -0.516799 0.477705 0.276530 - octupole -0.079313 -0.431186 0.101331 0.400784 -0.037962 -0.079016 -0.063368 0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 22.451664 36.885613 13.965497 - znuc, monopole 6.000000 -5.719035 - dipole 0.092509 0.118662 -0.023762 - duadrupole 0.102512 0.148735 -0.251247 0.127665 0.038462 0.058863 - octupole -0.066522 0.033296 -0.033078 -0.141141 0.015825 0.201472 0.017252 -0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 20.769244 38.940193 13.978787 - znuc, monopole 6.000000 -4.624143 - dipole -0.367517 0.447125 0.029070 - duadrupole -0.038324 -0.011888 0.050212 -0.017149 -0.029084 0.004836 - octupole 0.082638 -0.017348 -0.002354 0.067724 0.011182 -0.121329 -0.008828 0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 19.361648 40.642890 14.038596 - znuc, monopole 7.000000 -6.851920 - dipole 0.256429 -0.312423 -0.018119 - duadrupole -0.009794 -0.087129 0.096923 0.209786 0.013044 0.009826 - octupole -0.020681 0.004365 0.003281 -0.025182 -0.001816 0.038396 -0.001465 -0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 25.973186 38.284009 14.556835 - znuc, monopole 0.000000 -0.356916 - dipole 0.109553 0.204132 -0.059744 - duadrupole -0.127967 0.303138 -0.175171 0.361286 0.022579 0.002456 - octupole -0.135031 0.064490 -0.081833 0.097857 0.020810 0.250721 0.061023 -0.115690 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 25.527668 35.668399 14.318054 - znuc, monopole 0.000000 -0.123866 - dipole 0.135096 0.067486 0.004072 - duadrupole 0.518270 -0.149121 -0.369149 0.133532 0.099040 0.017364 - octupole -0.006938 -0.415001 -0.020563 0.384074 0.195901 -0.173546 -0.175337 0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 27.641008 34.047957 14.465632 - znuc, monopole 0.000000 -0.358848 - dipole 0.205196 -0.104126 -0.064082 - duadrupole 0.439458 -0.315813 -0.123645 -0.205636 0.025515 -0.021949 - octupole 0.362347 -0.032097 0.067519 -0.068455 0.111862 -0.234600 -0.179381 -0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 29.688460 34.855306 15.771940 - znuc, monopole 0.000000 -0.356746 - dipole 0.023721 -0.143477 -0.199345 - duadrupole -0.140991 0.019887 0.121103 0.078949 0.001930 0.434804 - octupole 0.128235 0.066191 0.098878 0.110012 0.100436 -0.054183 -0.199314 -0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 28.017094 39.037011 15.856154 - znuc, monopole 0.000000 -0.383529 - dipole -0.110502 0.216246 -0.112894 - duadrupole 0.231615 -0.257352 0.025736 -0.034025 0.310740 -0.545622 - octupole 0.150223 -0.184993 -0.116290 -0.324246 -0.434434 0.009658 0.550724 -0.159881 0.509238 0.036069 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 29.619027 37.228750 16.923681 - znuc, monopole 0.000000 -0.379962 - dipole -0.046960 -0.009670 -0.308462 - duadrupole -0.281472 -0.117989 0.399461 -0.102856 0.583238 0.213632 - octupole -0.190699 0.292172 -0.613901 -0.301576 0.166371 0.195835 0.447530 -0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 29.509164 39.301083 17.894846 - znuc, monopole 0.000000 -0.113790 - dipole -0.053681 -0.079077 -0.047152 - duadrupole 0.177104 0.006089 -0.183194 -0.206575 0.019465 -0.143936 - octupole -0.090233 -0.197003 0.239935 0.184502 -0.227648 0.047722 -0.012288 0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 30.193871 40.918269 19.596564 - znuc, monopole 0.000000 -1.515371 - dipole 0.088059 0.228151 0.227536 - duadrupole -0.226596 0.063980 0.162615 0.200282 0.195785 0.428331 - octupole 0.091256 0.060414 0.057038 0.055047 0.054877 -0.044246 -0.111914 -0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 31.027548 35.652500 17.785540 - znuc, monopole 0.000000 -0.139461 - dipole -0.055226 -0.003360 -0.063646 - duadrupole -0.117989 0.227615 -0.109626 0.142766 -0.071307 0.108121 - octupole 0.091909 -0.188995 0.277331 0.069309 0.049758 -0.131139 -0.327089 0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 32.752919 34.968727 19.371992 - znuc, monopole 0.000000 -1.515409 - dipole 0.241222 -0.100815 0.209112 - duadrupole 0.208275 -0.288891 0.080616 -0.152589 0.441844 -0.142774 - octupole 0.040090 -0.095467 0.079919 0.058683 -0.126158 0.051889 0.046239 -0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 25.196839 33.492991 14.084314 - znuc, monopole 0.000000 -0.573241 - dipole -0.246452 0.115721 0.003434 - duadrupole 0.270648 0.326208 -0.596855 -0.171767 0.173248 -0.037718 - octupole 0.344269 -0.046395 -0.191856 -0.007750 0.171132 -0.125564 0.020724 -0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 22.944361 33.166207 13.676530 - znuc, monopole 0.000000 -0.321812 - dipole -0.145840 0.026718 -0.010065 - duadrupole 0.221927 0.003922 -0.225849 -0.128314 0.089248 -0.007836 - octupole 0.052482 -0.017862 0.101437 -0.090246 -0.034757 -0.166575 -0.066680 0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 23.748591 36.903049 14.159707 - znuc, monopole 0.000000 -0.381477 - dipole 0.062638 -0.114049 0.023850 - duadrupole 0.071236 0.413968 -0.485205 -0.026093 0.083923 0.225116 - octupole -0.195067 0.254354 -0.246051 0.014825 -0.033884 0.213914 0.279935 -0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 21.978262 35.324179 13.716060 - znuc, monopole 0.000000 -0.445522 - dipole -0.060055 -0.227354 -0.024433 - duadrupole 0.021753 0.415169 -0.436922 0.230889 0.130921 0.156752 - octupole 0.174029 -0.208769 0.072703 0.067761 0.017390 -0.228215 -0.090093 0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 21.610454 37.912903 13.972142 - znuc, monopole 0.000000 -0.094348 - dipole -0.023833 -0.134944 -0.004158 - duadrupole -0.090198 -0.007419 0.097617 0.237041 -0.005394 0.010479 - octupole 0.138702 -0.038897 0.021776 0.027863 0.007098 -0.125103 -0.028874 -0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 20.065446 39.791541 14.008692 - znuc, monopole 0.000000 -1.529454 - dipole -0.221723 0.265565 0.005667 - duadrupole 0.053653 0.238490 -0.292143 -0.457319 -0.029902 0.030180 - octupole -0.084792 -0.000751 0.009942 -0.105320 -0.003154 0.171502 -0.006789 -0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 25.144779 33.532549 13.549594 - polarizability tensor 4.528424 1.917551 0.356759 1.444128 6.305472 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 32.788882 34.420082 19.174170 - polarizability tensor 3.614271 -1.113333 2.917217 -0.029793 1.821479 0.641372 2.940226 -0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.346903 40.081742 13.592298 - polarizability tensor 5.676904 -5.144008 -0.727141 -3.339388 4.987137 -0.427750 -0.708035 -0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 29.848865 41.344500 19.397643 - polarizability tensor 2.014659 1.411522 2.754673 0.096191 2.864917 1.368381 1.742510 2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.040258 35.629745 17.811318 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536299 1.326286 -0.648852 1.549497 -0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.578260 37.930600 13.955016 - polarizability tensor 2.247828 -1.783499 0.065363 -1.149026 2.379896 0.043699 0.251241 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.208458 33.134375 13.724420 - polarizability tensor 5.239487 -1.239561 0.807464 -0.101560 1.234380 0.089842 1.195631 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.926931 38.172057 14.574286 - polarizability tensor 5.018067 4.875224 1.088491 1.811907 4.579786 0.228246 1.487331 1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.555375 34.107816 14.489050 - polarizability tensor 9.182809 -1.751286 0.995508 -0.084237 1.828484 0.387734 2.027093 0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.516717 39.327100 17.914647 - polarizability tensor 1.671051 0.572015 1.296469 0.542823 2.162529 1.769890 1.031019 1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.617547 35.718149 14.344652 - polarizability tensor 3.009105 -0.265453 0.164855 -0.392052 2.422902 0.078852 0.571863 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.189670 37.054402 17.309798 - polarizability tensor 5.263037 -4.454329 1.663069 -4.279634 13.403258 0.812801 1.522053 0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.681444 36.809202 14.730106 - polarizability tensor 13.654116 -2.638423 1.355104 -2.419214 4.125879 0.076557 2.653092 -0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.942220 35.489667 13.731485 - polarizability tensor 2.960545 0.866099 0.523975 1.061800 5.117296 0.710667 0.733477 0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.082545 38.954584 15.944915 - polarizability tensor 5.617929 -1.381554 4.877276 -1.251780 2.735770 -1.290944 3.659516 -1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.884192 36.924805 13.598357 - polarizability tensor 12.949896 -2.646490 1.785363 -2.381876 4.179637 -0.329227 2.420663 -0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.687978 34.968191 15.865524 - polarizability tensor 3.040417 1.393146 2.596746 0.925311 4.759664 3.665080 1.764101 3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.087672 37.437174 16.610589 - polarizability tensor 4.688607 -4.661428 1.698768 -4.460102 13.263283 0.923066 0.789241 0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.929429 41.165432 14.054933 - polarizability tensor 2.586920 -0.528103 -0.018359 -0.362647 2.294262 -0.043707 0.109841 -0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.045193 34.474814 20.496273 - polarizability tensor 2.625149 -0.213208 0.424935 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.690795 42.115074 20.821732 - polarizability tensor 2.080856 0.280706 0.149350 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.464528 33.787690 12.633279 - polarizability tensor 8.609786 3.161439 4.330873 3.390210 5.869745 2.969762 2.433189 1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.325582 32.867404 15.114694 - polarizability tensor 5.800146 -0.752295 1.186095 0.172145 7.005037 0.548345 0.964192 0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.449837 31.920761 13.838054 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321947 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.601142 39.467501 13.875466 - polarizability tensor 3.548724 -1.577098 0.269188 -2.005619 4.318439 0.319351 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.122196 35.372946 19.188399 - polarizability tensor 5.713598 -1.433755 3.432521 -2.871854 2.858065 -3.181668 3.126669 -2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.373840 40.264096 15.240704 - polarizability tensor 6.533271 0.444461 1.547291 -1.225663 5.733017 0.256666 1.271658 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.418764 35.098446 19.832198 - polarizability tensor 6.707222 -2.929001 4.115173 -3.681834 2.332214 -2.837643 2.110817 -1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.019403 40.572578 20.030403 - polarizability tensor 1.169669 1.724724 0.923944 2.191901 7.141826 4.969366 0.687890 2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.184995 39.914193 14.558771 - polarizability tensor 5.399130 -5.564497 0.213557 -4.017191 5.082742 0.297191 1.393778 -0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.393360 39.674873 13.993228 - polarizability tensor 10.702596 1.789313 3.005774 -0.514549 5.742470 -3.210321 2.108866 -0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.651467 34.028682 13.895660 - polarizability tensor 8.115953 0.753025 -0.167711 1.550833 6.978558 4.365403 0.764813 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.116353 33.594529 14.195882 - polarizability tensor 9.556643 3.699452 -1.931269 3.986424 6.261110 -1.285638 0.992072 0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.959306 33.431440 14.575810 - polarizability tensor 4.541347 2.067477 1.036870 1.580945 6.187413 0.395977 1.497097 1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.754192 40.896676 19.445527 - polarizability tensor 2.204024 0.653489 0.327501 1.701252 5.540979 4.544585 0.766862 3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - -Fragment XXII_exp_N2_2_L - Atom A01S 17.681260 46.033770 19.613751 - znuc, mass 16.000000 31.972070 - - Atom A02C 19.536596 43.306719 20.019587 - znuc, mass 6.000000 12.000000 - - Atom A03C 18.572298 40.802549 20.091313 - znuc, mass 6.000000 12.000000 - - Atom A04S 15.309916 40.065835 19.724431 - znuc, mass 16.000000 31.972070 - - Atom A05C 14.477393 42.417246 17.478696 - znuc, mass 6.000000 12.000000 - - Atom A06C 15.448781 44.812723 17.420950 - znuc, mass 6.000000 12.000000 - - Atom A07C 14.697119 46.561912 15.536366 - znuc, mass 6.000000 12.000000 - - Atom A08N 14.079367 48.047096 14.017514 - znuc, mass 7.000000 14.003070 - - Atom A09C 12.631739 41.660223 15.697232 - znuc, mass 6.000000 12.000000 - - Atom A10N 11.026651 41.049700 14.305792 - znuc, mass 7.000000 14.003070 - - Atom A11N 20.198253 38.955904 20.487067 - znuc, mass 7.000000 14.003070 - - Atom A12S 23.077255 40.148979 20.906881 - znuc, mass 16.000000 31.972070 - - Atom A13C 22.130451 43.271848 20.408007 - znuc, mass 6.000000 12.000000 - - Atom A14C 23.812871 45.326428 20.394717 - znuc, mass 6.000000 12.000000 - - Atom A15N 25.220466 47.029125 20.334908 - znuc, mass 7.000000 14.003070 - - Multipole point A01S 17.681260 46.033770 19.613751 - znuc, monopole 16.000000 -15.415585 - dipole -0.031685 -1.019605 -0.491700 - duadrupole 0.200252 0.667129 -0.867381 -0.820424 2.014536 0.644901 - octupole 0.081100 -0.120945 -0.015291 0.151350 0.112179 -0.258142 -0.096888 0.177042 -0.030405 0.171329 - screen, screen2 0.640706 1.708182 - - Multipole point A02C 19.536596 43.306719 20.019587 - znuc, monopole 6.000000 -5.686439 - dipole 0.147468 0.069991 0.013557 - duadrupole 0.211125 0.081875 -0.293000 0.056665 0.026088 -0.009793 - octupole -0.080562 0.064792 -0.069734 -0.081134 0.040643 0.191017 0.029091 -0.110455 0.016343 -0.060049 - screen, screen2 0.731439 1.827189 - - Multipole point A03C 18.572298 40.802549 20.091313 - znuc, monopole 6.000000 -5.188604 - dipole 0.287821 -0.376450 0.044654 - duadrupole -0.078438 0.263091 -0.184653 -0.130204 -0.010839 -0.057149 - octupole 0.154202 -0.066939 -0.010607 0.076422 0.037680 -0.126335 -0.027074 -0.027868 -0.009483 0.023249 - screen, screen2 0.781238 1.960410 - - Multipole point A04S 15.309916 40.065835 19.724431 - znuc, monopole 16.000000 -15.424149 - dipole 0.645105 0.702589 -0.533508 - duadrupole 1.204718 -0.439167 -0.765551 0.204941 0.964000 -1.883321 - octupole -0.376726 0.162146 -0.007751 -0.064504 -0.144810 0.217808 0.152561 0.158918 -0.097642 -0.117519 - screen, screen2 0.643718 1.703737 - - Multipole point A05C 14.477393 42.417246 17.478696 - znuc, monopole 6.000000 -5.640629 - dipole -0.049828 0.012964 -0.126299 - duadrupole -0.086713 0.172782 -0.086070 0.198246 0.015502 -0.024956 - octupole -0.056685 -0.087927 -0.028493 0.015828 0.161274 0.009131 -0.132781 0.047554 0.072099 0.175924 - screen, screen2 0.959384 1.795310 - - Multipole point A06C 15.448781 44.812723 17.420950 - znuc, monopole 6.000000 -5.646592 - dipole -0.034572 0.011110 -0.116276 - duadrupole -0.170291 0.257434 -0.087143 0.104852 0.076555 -0.011620 - octupole -0.001075 0.050214 -0.014991 0.047446 -0.160109 0.001747 0.175100 -0.000672 -0.097661 -0.156172 - screen, screen2 0.939303 1.797140 - - Multipole point A07C 14.697119 46.561912 15.536366 - znuc, monopole 6.000000 -4.634467 - dipole -0.163232 0.355849 -0.376625 - duadrupole 0.022933 -0.066203 0.043270 -0.029798 0.042405 -0.032905 - octupole 0.066905 -0.052623 0.037692 -0.033015 0.046038 -0.056469 -0.083730 -0.010436 0.085637 0.041143 - screen, screen2 0.913471 1.850275 - - Multipole point A08N 14.079367 48.047096 14.017514 - znuc, monopole 7.000000 -6.844356 - dipole 0.128196 -0.266682 0.293977 - duadrupole 0.086050 -0.042359 -0.043691 0.077137 -0.049858 0.186337 - octupole -0.024985 0.019560 -0.010956 0.010338 -0.013703 0.014533 0.024660 0.010452 -0.029898 -0.022225 - screen, screen2 0.937336 1.888181 - - Multipole point A09C 12.631739 41.660223 15.697232 - znuc, monopole 6.000000 -4.633995 - dipole -0.401189 -0.134363 -0.337213 - duadrupole 0.044076 -0.065351 0.021276 -0.052673 0.059479 -0.009395 - octupole -0.000862 0.071606 0.028175 -0.027284 -0.078173 0.054551 0.049998 -0.053689 -0.044323 -0.068057 - screen, screen2 0.910782 1.850347 - - Multipole point A10N 11.026651 41.049700 14.305792 - znuc, monopole 7.000000 -6.841667 - dipole 0.310426 0.091617 0.265732 - duadrupole -0.070948 0.091461 -0.020513 -0.072876 -0.167404 -0.096084 - octupole -0.001131 -0.023490 -0.018307 0.014058 0.034435 -0.020126 -0.016128 0.021257 0.009432 0.017996 - screen, screen2 0.935205 1.886888 - - Multipole point A11N 20.198253 38.955904 20.487067 - znuc, monopole 7.000000 -7.064539 - dipole 0.008007 0.506325 0.003176 - duadrupole 0.542026 -0.452158 -0.089868 -0.144992 0.109388 0.037751 - octupole -0.049872 0.009996 0.025010 0.027426 -0.025766 0.018699 0.000756 0.031173 -0.037423 0.009422 - screen, screen2 0.835106 1.797177 - - Multipole point A12S 23.077255 40.148979 20.906881 - znuc, monopole 16.000000 -15.194130 - dipole -0.941861 0.461479 -0.227968 - duadrupole 0.657691 1.380421 -2.038112 0.516799 0.477705 -0.276530 - octupole 0.079313 -0.431186 -0.101331 0.400784 0.037962 0.079016 0.063368 -0.158329 0.030402 0.038334 - screen, screen2 0.661748 1.761689 - - Multipole point A13C 22.130451 43.271848 20.408007 - znuc, monopole 6.000000 -5.719035 - dipole -0.092509 0.118662 0.023762 - duadrupole 0.102512 0.148735 -0.251247 -0.127665 0.038462 -0.058863 - octupole 0.066522 0.033296 0.033078 -0.141141 -0.015825 -0.201472 -0.017252 0.134950 0.107845 0.011973 - screen, screen2 0.708596 1.735436 - - Multipole point A14C 23.812871 45.326428 20.394717 - znuc, monopole 6.000000 -4.624143 - dipole 0.367517 0.447125 -0.029070 - duadrupole -0.038324 -0.011888 0.050212 0.017149 -0.029084 -0.004836 - octupole -0.082638 -0.017348 0.002354 0.067724 -0.011182 0.121329 0.008828 -0.038691 -0.050375 -0.007160 - screen, screen2 0.881686 1.871547 - - Multipole point A15N 25.220466 47.029125 20.334908 - znuc, monopole 7.000000 -6.851920 - dipole -0.256429 -0.312423 0.018119 - duadrupole -0.009794 -0.087129 0.096923 -0.209786 0.013044 -0.009826 - octupole 0.020681 0.004365 -0.003281 -0.025182 0.001816 -0.038396 0.001465 0.017715 0.020817 0.003001 - screen, screen2 0.928391 1.884839 - - Multipole point BO21 18.608928 44.670244 19.816669 - znuc, monopole 0.000000 -0.356916 - dipole -0.109553 0.204132 0.059744 - duadrupole -0.127967 0.303138 -0.175171 -0.361286 0.022579 -0.002456 - octupole 0.135031 0.064490 0.081833 0.097857 -0.020810 -0.250721 -0.061023 0.115690 -0.162347 0.059315 - screen, screen2 10.000000 10.000000 - - Multipole point BO32 19.054447 42.054634 20.055450 - znuc, monopole 0.000000 -0.123866 - dipole -0.135096 0.067486 -0.004072 - duadrupole 0.518270 -0.149121 -0.369149 -0.133532 0.099040 -0.017364 - octupole 0.006938 -0.415001 0.020563 0.384074 -0.195901 0.173546 0.175337 -0.180484 0.030927 0.019924 - screen, screen2 10.000000 10.000000 - - Multipole point BO43 16.941107 40.434192 19.907872 - znuc, monopole 0.000000 -0.358848 - dipole -0.205196 -0.104126 0.064082 - duadrupole 0.439458 -0.315813 -0.123645 0.205636 0.025515 0.021949 - octupole -0.362347 -0.032097 -0.067519 -0.068455 -0.111862 0.234600 0.179381 0.127747 0.100551 -0.034254 - screen, screen2 10.000000 10.000000 - - Multipole point BO54 14.893655 41.241541 18.601564 - znuc, monopole 0.000000 -0.356746 - dipole -0.023721 -0.143477 0.199345 - duadrupole -0.140991 0.019887 0.121103 -0.078949 0.001930 -0.434804 - octupole -0.128235 0.066191 -0.098878 0.110012 -0.100436 0.054183 0.199314 0.074053 -0.176203 -0.154845 - screen, screen2 10.000000 10.000000 - - Multipole point BO61 16.565021 45.423246 18.517351 - znuc, monopole 0.000000 -0.383529 - dipole 0.110502 0.216246 0.112894 - duadrupole 0.231615 -0.257352 0.025736 0.034025 0.310740 0.545622 - octupole -0.150223 -0.184993 0.116290 -0.324246 0.434434 -0.009658 -0.550724 0.159881 0.509238 0.036069 - screen, screen2 10.000000 10.000000 - - Multipole point BO65 14.963087 43.614984 17.449823 - znuc, monopole 0.000000 -0.379962 - dipole 0.046960 -0.009670 0.308462 - duadrupole -0.281472 -0.117989 0.399461 0.102856 0.583238 -0.213632 - octupole 0.190699 0.292172 0.613901 -0.301576 -0.166371 -0.195835 -0.447530 0.005136 0.009404 -0.097493 - screen, screen2 0.215933 1.658300 - - Multipole point BO76 15.072950 45.687318 16.478658 - znuc, monopole 0.000000 -0.113790 - dipole 0.053681 -0.079077 0.047152 - duadrupole 0.177104 0.006089 -0.183194 0.206575 0.019465 0.143936 - octupole 0.090233 -0.197003 -0.239935 0.184502 0.227648 -0.047722 0.012288 -0.042511 0.012501 0.186798 - screen, screen2 10.000000 10.000000 - - Multipole point BO87 14.388243 47.304504 14.776940 - znuc, monopole 0.000000 -1.515371 - dipole -0.088059 0.228151 -0.227536 - duadrupole -0.226596 0.063980 0.162615 -0.200282 0.195785 -0.428331 - octupole -0.091256 0.060414 -0.057038 0.055047 -0.054877 0.044246 0.111914 0.047010 -0.115460 -0.079857 - screen, screen2 0.567029 1.577915 - - Multipole point BO95 13.554566 42.038734 16.587964 - znuc, monopole 0.000000 -0.139461 - dipole 0.055226 -0.003360 0.063646 - duadrupole -0.117989 0.227615 -0.109626 -0.142766 -0.071307 -0.108121 - octupole -0.091909 -0.188995 -0.277331 0.069309 -0.049758 0.131139 0.327089 -0.039230 0.119686 -0.053147 - screen, screen2 10.000000 10.000000 - - Multipole point BO109 11.829195 41.354962 15.001512 - znuc, monopole 0.000000 -1.515409 - dipole -0.241222 -0.100815 -0.209112 - duadrupole 0.208275 -0.288891 0.080616 0.152589 0.441844 0.142774 - octupole -0.040090 -0.095467 -0.079919 0.058683 0.126158 -0.051889 -0.046239 0.091979 0.036784 0.083877 - screen, screen2 0.569386 1.584627 - - Multipole point BO113 19.385275 39.879226 20.289190 - znuc, monopole 0.000000 -0.573241 - dipole 0.246452 0.115721 -0.003434 - duadrupole 0.270648 0.326208 -0.596855 0.171767 0.173248 0.037718 - octupole -0.344269 -0.046395 0.191856 -0.007750 -0.171132 0.125564 -0.020724 0.218705 0.054145 -0.058621 - screen, screen2 10.000000 6.946289 - - Multipole point BO1211 21.637754 39.552442 20.696974 - znuc, monopole 0.000000 -0.321812 - dipole 0.145840 0.026718 0.010065 - duadrupole 0.221927 0.003922 -0.225849 0.128314 0.089248 0.007836 - octupole -0.052482 -0.017862 -0.101437 -0.090246 0.034757 0.166575 0.066680 -0.114093 0.108108 -0.077670 - screen, screen2 10.000000 10.000000 - - Multipole point BO132 20.833523 43.289284 20.213797 - znuc, monopole 0.000000 -0.381477 - dipole -0.062638 -0.114049 -0.023850 - duadrupole 0.071236 0.413968 -0.485205 0.026093 0.083923 -0.225116 - octupole 0.195067 0.254354 0.246051 0.014825 0.033884 -0.213914 -0.279935 0.018847 -0.269179 0.111318 - screen, screen2 10.000000 1.548330 - - Multipole point BO1312 22.603853 41.710414 20.657444 - znuc, monopole 0.000000 -0.445522 - dipole 0.060055 -0.227354 0.024433 - duadrupole 0.021753 0.415169 -0.436922 -0.230889 0.130921 -0.156752 - octupole -0.174029 -0.208769 -0.072703 0.067761 -0.017390 0.228215 0.090093 -0.054186 0.141008 -0.037712 - screen, screen2 1.692955 10.000000 - - Multipole point BO1413 22.971661 44.299138 20.401362 - znuc, monopole 0.000000 -0.094348 - dipole 0.023833 -0.134944 0.004158 - duadrupole -0.090198 -0.007419 0.097617 -0.237041 -0.005394 -0.010479 - octupole -0.138702 -0.038897 -0.021776 0.027863 -0.007098 0.125103 0.028874 0.013599 0.011034 -0.025734 - screen, screen2 10.000000 10.000000 - - Multipole point BO1514 24.516668 46.177776 20.364812 - znuc, monopole 0.000000 -1.529454 - dipole 0.221723 0.265565 -0.005667 - duadrupole 0.053653 0.238490 -0.292143 0.457319 -0.029902 -0.030180 - octupole 0.084792 -0.000751 -0.009942 -0.105320 0.003154 -0.171502 0.006789 0.086709 0.106070 0.007951 - screen, screen2 0.574522 1.575481 - - Polarizability point coords 19.437335 39.918783 20.823910 - polarizability tensor 4.528424 -1.917551 0.356759 -1.444128 6.305472 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole -8.632814 12.000000 6.000000 - old conjugated induced dipole 0.000000 14.671619 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 11.793233 40.806317 15.199334 - polarizability tensor 3.614271 1.113333 2.917217 0.029793 1.821479 -0.641372 2.940226 0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 12.000000 6.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole -4.078531 12.000000 6.000000 - old induced dipole 0.000000 15.284419 1.858266 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.235211 46.467977 20.781206 - polarizability tensor 5.676904 5.144008 -0.727141 3.339388 4.987137 0.427750 -0.708035 0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 18.954885 -3.653948 - induced dipole -2.847959 14.003070 7.000000 - conjugated induced dipole 0.000000 9.783282 -5.747740 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole -9.029232 14.003070 -231584178474632390847141970017375815706539969331281128078915168015826259279872.000000 - - Polarizability point coords 14.733249 47.730735 14.975861 - polarizability tensor 2.014659 -1.411522 2.754673 -0.096191 2.864917 -1.368381 1.742510 -2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.541856 42.015980 16.562186 - polarizability tensor 2.644773 0.420648 2.214495 0.536299 1.326286 0.648852 1.549497 0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.003855 44.316835 20.418488 - polarizability tensor 2.247828 1.783499 0.065363 1.149026 2.379896 -0.043699 0.251241 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.373657 39.520610 20.649084 - polarizability tensor 5.239487 1.239561 0.807464 0.101560 1.234380 -0.089842 1.195631 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.655183 44.558292 19.799218 - polarizability tensor 5.018067 -4.875224 1.088491 -1.811907 4.579786 -0.228246 1.487331 -1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.026740 40.494051 19.884454 - polarizability tensor 9.182809 1.751286 0.995508 0.084237 1.828484 -0.387734 2.027093 -0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.065398 45.713335 16.458857 - polarizability tensor 1.671051 -0.572015 1.296469 -0.542823 2.162529 -1.769890 1.031019 -1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.964567 42.104384 20.028852 - polarizability tensor 3.009105 0.265453 0.164855 0.392052 2.422902 -0.078852 0.571863 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.392445 43.440637 17.063706 - polarizability tensor 5.263037 4.454329 1.663069 4.279634 13.403258 -0.812801 1.522053 -0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.900671 43.195437 19.643398 - polarizability tensor 13.654116 2.638423 1.355104 2.419214 4.125879 -0.076557 2.653092 0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.639895 41.875902 20.642019 - polarizability tensor 2.960545 -0.866099 0.523975 -1.061800 5.117296 -0.710667 0.733477 -0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.499570 45.340819 18.428589 - polarizability tensor 5.617929 1.381554 4.877276 1.251780 2.735770 1.290944 3.659516 1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.697922 43.311040 20.775147 - polarizability tensor 12.949896 2.646490 1.785363 2.381876 4.179637 0.329227 2.420663 0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.894137 41.354426 18.507980 - polarizability tensor 3.040417 -1.393146 2.596746 -0.925311 4.759664 -3.665080 1.764101 -3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.494442 43.823409 17.762915 - polarizability tensor 4.688607 4.661428 1.698768 4.460102 13.263283 -0.923066 0.789241 -0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.652686 47.551667 20.318571 - polarizability tensor 2.586920 0.528103 -0.018359 0.362647 2.294262 0.043707 0.109841 0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.536921 40.861049 13.877231 - polarizability tensor 2.625149 0.213208 0.424935 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.891319 48.501309 13.551772 - polarizability tensor 2.080856 -0.280706 0.149350 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.117587 40.173925 21.740225 - polarizability tensor 8.609786 -3.161439 4.330873 -3.390210 5.869745 -2.969762 2.433189 -1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.256533 39.253639 19.258810 - polarizability tensor 5.800146 0.752295 1.186095 -0.172145 7.005037 -0.548345 0.964192 -0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.132277 38.306996 20.535450 - polarizability tensor 2.238895 0.092051 0.189597 0.321947 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.980972 45.853736 20.498038 - polarizability tensor 3.548724 1.577098 0.269188 2.005619 4.318439 -0.319351 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.459918 41.759181 15.185105 - polarizability tensor 5.713598 1.433755 3.432521 2.871854 2.858065 3.181668 3.126669 2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.208275 46.650331 19.132800 - polarizability tensor 6.533271 -0.444461 1.547291 1.225663 5.733017 -0.256666 1.271658 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.163350 41.484681 14.541306 - polarizability tensor 6.707222 2.929001 4.115173 3.681834 2.332214 2.837643 2.110817 1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.562712 46.958813 14.343101 - polarizability tensor 1.169669 -1.724724 0.923944 -2.191901 7.141826 -4.969366 0.687890 -2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.397119 46.300428 19.814733 - polarizability tensor 5.399130 5.564497 0.213557 4.017191 5.082742 -0.297191 1.393778 0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.188755 46.061107 20.380276 - polarizability tensor 10.702596 -1.789313 3.005774 0.514549 5.742470 3.210321 2.108866 0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.930648 40.414917 20.477844 - polarizability tensor 8.115953 -0.753025 -0.167711 -1.550833 6.978558 -4.365403 0.764813 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.465761 39.980764 20.177622 - polarizability tensor 9.556643 -3.699452 -1.931269 -3.986424 6.261110 1.285638 0.992072 -0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.622808 39.817675 19.797694 - polarizability tensor 4.541347 -2.067477 1.036870 -1.580945 6.187413 -0.395977 1.497097 -1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.827923 47.282911 14.927977 - polarizability tensor 2.204024 -0.653489 0.327501 -1.701252 5.540979 -4.544585 0.766862 -3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000000 0.000000 0.000000 - conjugated induced dipole 0.000000 0.000000 0.000000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - - IND DIPOLES NORM: 0.022844 - IND DIPOLES NORM: 0.004631 - IND DIPOLES NORM: 0.001148 - IND DIPOLES NORM: 0.000319 - IND DIPOLES NORM: 0.000090 - IND DIPOLES NORM: 0.000033 - IND DIPOLES NORM: 0.000010 - IND DIPOLES NORM: 0.000004 - IND DIPOLES NORM: 0.000001 - IND DIPOLES NORM: 0.000000 - IND DIPOLES NORM: 0.000000 - IND DIPOLES NORM: 0.000000 - IND DIPOLES NORM: 0.000000 - IND DIPOLES NORM: 0.000000 - IND DIPOLES NORM: 0.000000 - IND DIPOLES NORM: 0.000000 - IND DIPOLES NORM: 0.000000 - IND DIPOLES NORM: 0.000000 -Fragment 0 - Polarizability point coords -11.016969 2.599261 8.571017 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field -0.000707 -0.002083 0.004937 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 -0.006235 0.000930 - conjugated induced dipole 0.002419 -0.004872 0.001639 - old induced dipole -0.000502 -0.006235 0.000930 - old conjugated induced dipole 0.002419 -0.004872 0.001639 - - Polarizability point coords -18.521619 2.944467 3.727272 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000636 0.001450 0.002707 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 -0.011888 0.014683 - conjugated induced dipole 0.014358 -0.005896 0.013284 - old induced dipole 0.017774 -0.011888 0.014683 - old conjugated induced dipole 0.014358 -0.005896 0.013284 - - Polarizability point coords -5.746409 -1.764403 9.323269 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field -0.005845 0.004147 0.001820 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063346 0.043899 0.005721 - conjugated induced dipole -0.055842 0.056799 0.006258 - old induced dipole -0.063346 0.043899 0.005721 - old conjugated induced dipole -0.055842 0.056799 0.006258 - - Polarizability point coords -16.153618 -2.579263 3.470142 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field -0.000242 0.002270 0.001640 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 0.029042 0.022595 - conjugated induced dipole 0.008031 0.026943 0.024571 - old induced dipole 0.003843 0.029042 0.022595 - old conjugated induced dipole 0.008031 0.026943 0.024571 - - Polarizability point coords -15.487096 0.880237 6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.001508 0.000341 0.002188 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 -0.004500 0.010285 - conjugated induced dipole 0.010329 -0.004071 0.012280 - old induced dipole 0.013189 -0.004500 0.010285 - old conjugated induced dipole 0.010329 -0.004071 0.012280 - - Polarizability point coords -10.358728 4.885969 8.339860 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000486 -0.002308 0.002026 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 -0.021657 -0.001455 - conjugated induced dipole 0.001239 -0.015466 0.003342 - old induced dipole -0.002879 -0.021657 -0.001455 - old conjugated induced dipole 0.001239 -0.015466 0.003342 - - Polarizability point coords -6.515775 4.722878 8.719786 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000536 0.002973 -0.001170 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 0.025280 -0.002707 - conjugated induced dipole 0.021953 0.024514 -0.010846 - old induced dipole 0.024576 0.025280 -0.002707 - old conjugated induced dipole 0.021953 0.024514 -0.010846 - - Polarizability point coords -11.326355 0.145353 8.341383 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000657 -0.000938 0.005512 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 -0.002957 0.007603 - conjugated induced dipole 0.011858 0.007327 0.008705 - old induced dipole 0.004785 -0.002957 0.007603 - old conjugated induced dipole 0.011858 0.007327 0.008705 - - Polarizability point coords -12.954796 4.209593 8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.001435 -0.003757 0.003998 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 -0.007223 0.008401 - conjugated induced dipole 0.024722 -0.010399 0.005993 - old induced dipole 0.026692 -0.007223 0.008401 - old conjugated induced dipole 0.024722 -0.010399 0.005993 - - Polarizability point coords -16.439681 2.687667 5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000908 0.000560 0.001450 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 -0.001430 0.006467 - conjugated induced dipole 0.006680 -0.000245 0.007225 - old induced dipole 0.008021 -0.001430 0.006467 - old conjugated induced dipole 0.006680 -0.000245 0.007225 - - Polarizability point coords -6.977683 0.386808 8.960653 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field -0.004368 -0.000546 0.002087 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 0.003713 0.000482 - conjugated induced dipole -0.009703 0.006827 0.001297 - old induced dipole -0.009459 0.003713 0.000482 - old conjugated induced dipole -0.009703 0.006827 0.001297 - - Polarizability point coords -14.916141 -1.009688 5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.001286 0.001070 0.002191 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 0.008201 0.009724 - conjugated induced dipole 0.006616 0.006977 0.011000 - old induced dipole 0.007350 0.008201 0.009724 - old conjugated induced dipole 0.006616 0.006977 0.011000 - - Polarizability point coords -9.283615 1.392603 9.317312 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field -0.003441 -0.002380 0.004383 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 -0.005385 0.002398 - conjugated induced dipole -0.029267 -0.003579 0.004952 - old induced dipole -0.032580 -0.005385 0.002398 - old conjugated induced dipole -0.029267 -0.003579 0.004952 - - Polarizability point coords -7.341642 2.827740 9.184184 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field -0.002486 -0.000564 -0.000314 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 -0.008630 -0.003112 - conjugated induced dipole -0.008989 -0.006449 -0.002117 - old induced dipole -0.009130 -0.008630 -0.003112 - old conjugated induced dipole -0.008989 -0.006449 -0.002117 - - Polarizability point coords -15.087400 3.349220 7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.001284 -0.001360 0.001865 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 0.001162 0.007068 - conjugated induced dipole 0.007504 0.002361 0.008889 - old induced dipole 0.007992 0.001162 0.007068 - old conjugated induced dipole 0.007504 0.002361 0.008889 - - Polarizability point coords -9.080867 1.508206 8.185563 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field -0.002041 -0.001230 0.003268 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 -0.001460 0.001599 - conjugated induced dipole -0.016161 -0.000422 0.004574 - old induced dipole -0.021085 -0.001460 0.001599 - old conjugated induced dipole -0.016161 -0.000422 0.004574 - - Polarizability point coords -13.481969 -0.637174 6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.002143 0.000489 0.003387 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 -0.007600 0.027393 - conjugated induced dipole 0.028333 -0.007801 0.030425 - old induced dipole 0.033173 -0.007600 0.027393 - old conjugated induced dipole 0.028333 -0.007801 0.030425 - - Polarizability point coords -14.589093 1.263009 5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.001272 0.000178 0.002191 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 -0.005736 0.010955 - conjugated induced dipole 0.012784 -0.003818 0.011435 - old induced dipole 0.013634 -0.005736 0.010955 - old conjugated induced dipole 0.012784 -0.003818 0.011435 - - Polarizability point coords -4.328854 -2.848026 8.860735 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field -0.001547 0.005895 -0.000772 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 0.015807 -0.002368 - conjugated induced dipole -0.007606 0.016649 -0.001351 - old induced dipole -0.008720 0.015807 -0.002368 - old conjugated induced dipole -0.007606 0.016649 -0.001351 - - Polarizability point coords -19.444616 3.842599 2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field -0.000198 0.003417 0.004966 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 0.004775 0.016411 - conjugated induced dipole -0.000061 0.005522 0.015883 - old induced dipole 0.001749 0.004775 0.016411 - old conjugated induced dipole -0.000061 0.005522 0.015883 - - Polarizability point coords -16.090221 -3.797662 2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field -0.001729 0.004592 0.003383 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 0.016467 0.014862 - conjugated induced dipole 0.000106 0.015979 0.015390 - old induced dipole 0.000865 0.016467 0.014862 - old conjugated induced dipole 0.000106 0.015979 0.015390 - - Polarizability point coords -8.607879 5.183033 9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000107 -0.000237 -0.000261 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 -0.001746 0.000735 - conjugated induced dipole 0.002994 -0.001829 0.000320 - old induced dipole 0.004462 -0.001746 0.000735 - old conjugated induced dipole 0.002994 -0.001829 0.000320 - - Polarizability point coords -9.849258 6.396648 9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.001901 -0.002245 0.000818 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 -0.016593 0.000811 - conjugated induced dipole 0.007353 -0.013869 0.001598 - old induced dipole 0.006347 -0.016593 0.000811 - old conjugated induced dipole 0.007353 -0.013869 0.001598 - - Polarizability point coords -15.050888 4.288729 9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.002293 -0.003677 0.003470 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 -0.009874 0.021011 - conjugated induced dipole 0.018333 -0.019255 0.008873 - old induced dipole 0.016570 -0.009874 0.021011 - old conjugated induced dipole 0.018333 -0.019255 0.008873 - - Polarizability point coords -5.584314 -1.596696 8.356857 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field -0.004060 0.003580 0.000890 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046958 0.039179 -0.007441 - conjugated induced dipole -0.039937 0.045846 0.002781 - old induced dipole -0.046958 0.039179 -0.007441 - old conjugated induced dipole -0.039937 0.045846 0.002781 - - Polarizability point coords -17.818187 3.218967 3.083473 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000950 0.002180 0.003856 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 -0.017077 0.022943 - conjugated induced dipole 0.015224 -0.006010 0.022514 - old induced dipole 0.028024 -0.017077 0.022943 - old conjugated induced dipole 0.015224 -0.006010 0.022514 - - Polarizability point coords -12.792784 -1.357463 8.922441 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.004268 0.000857 0.004513 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 -0.015625 0.045166 - conjugated induced dipole 0.061942 0.008873 0.047522 - old induced dipole 0.068050 -0.015625 0.045166 - old conjugated induced dipole 0.061942 0.008873 0.047522 - - Polarizability point coords -18.188304 3.897331 3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000947 0.002830 0.001995 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 0.007583 0.014002 - conjugated induced dipole 0.015109 0.002583 0.017046 - old induced dipole 0.011763 0.007583 0.014002 - old conjugated induced dipole 0.015109 0.002583 0.017046 - - Polarizability point coords -15.248292 -3.027089 3.518027 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000394 0.003107 0.002306 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 0.015360 0.023246 - conjugated induced dipole 0.008731 0.020510 0.020878 - old induced dipole 0.017229 0.015360 0.023246 - old conjugated induced dipole 0.008731 0.020510 0.020878 - - Polarizability point coords -5.000590 -1.150117 9.040343 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field -0.003842 0.002906 0.000499 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020830 0.022726 -0.000901 - conjugated induced dipole -0.022286 0.021511 0.000192 - old induced dipole -0.020830 0.022726 -0.000901 - old conjugated induced dipole -0.022286 0.021511 0.000192 - - Polarizability point coords -11.773264 -1.946686 7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.003305 -0.001466 0.005326 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 -0.013065 0.031206 - conjugated induced dipole 0.032768 -0.007049 0.032022 - old induced dipole 0.031823 -0.013065 0.031206 - old conjugated induced dipole 0.032768 -0.007049 0.032022 - - Polarizability point coords -14.725003 5.450007 7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000812 -0.005388 0.001435 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 -0.041713 0.001546 - conjugated induced dipole 0.005860 -0.039807 0.004393 - old induced dipole 0.010155 -0.041713 0.001546 - old conjugated induced dipole 0.005860 -0.039807 0.004393 - - Polarizability point coords -6.863948 4.529718 10.282389 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field -0.001008 0.001477 -0.004623 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 -0.011418 -0.033335 - conjugated induced dipole -0.014981 -0.002807 -0.031806 - old induced dipole -0.025817 -0.011418 -0.033335 - old conjugated induced dipole -0.014981 -0.002807 -0.031806 - - Polarizability point coords -10.544201 4.784860 9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field -0.000766 -0.003524 0.002810 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 -0.031001 0.001118 - conjugated induced dipole -0.007779 -0.029252 0.000281 - old induced dipole -0.012761 -0.031001 0.001118 - old conjugated induced dipole -0.007779 -0.029252 0.000281 - - Polarizability point coords -15.418827 -2.255167 2.885267 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000204 0.002371 0.001742 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 0.038168 0.020381 - conjugated induced dipole 0.010164 0.031452 0.028358 - old induced dipole 0.009280 0.038168 0.020381 - old conjugated induced dipole 0.010164 0.031452 0.028358 - -Fragment 1 - Polarizability point coords -4.363992 -3.786974 2.886817 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000034 -0.000048 0.000063 - induced dipole 0.000502 -0.006235 -0.000930 - conjugated induced dipole -0.002419 -0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.140658 -3.441768 7.730563 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000043 -0.000021 0.000004 - induced dipole -0.017774 -0.011888 -0.014683 - conjugated induced dipole -0.014358 -0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.634552 -8.150638 2.134565 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000024 -0.000004 -0.000019 - induced dipole 0.063346 0.043899 -0.005721 - conjugated induced dipole 0.055842 0.056799 -0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.772657 -8.965498 7.987693 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000030 0.000030 0.000002 - induced dipole -0.003843 0.029042 -0.022595 - conjugated induced dipole -0.008031 0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.106135 -5.505998 5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000055 0.000013 0.000053 - induced dipole -0.013189 -0.004500 -0.010285 - conjugated induced dipole -0.010329 -0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.022233 -1.500266 3.117975 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000077 -0.000110 0.000002 - induced dipole 0.002879 -0.021657 0.001455 - conjugated induced dipole -0.001239 -0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.865186 -1.663357 2.738049 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000061 -0.000130 -0.000100 - induced dipole -0.024576 0.025280 0.002707 - conjugated induced dipole -0.021953 0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.054606 -6.240882 3.116452 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000013 0.000003 0.000055 - induced dipole -0.004785 -0.002957 -0.007603 - conjugated induced dipole -0.011858 0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.426164 -2.176641 3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000014 -0.000066 0.000054 - induced dipole -0.026692 -0.007223 -0.008401 - conjugated induced dipole -0.024722 -0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.058720 -3.698568 6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000079 -0.000022 0.000040 - induced dipole -0.008021 -0.001430 -0.006467 - conjugated induced dipole -0.006680 -0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.403278 -5.999427 2.497182 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000002 -0.000037 -0.000012 - induced dipole 0.009459 0.003713 -0.000482 - conjugated induced dipole 0.009703 0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.464819 -7.395923 6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000049 0.000049 0.000033 - induced dipole -0.007350 0.008201 -0.009724 - conjugated induced dipole -0.006616 0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.097346 -4.993632 2.140523 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000024 -0.000037 0.000019 - induced dipole 0.032580 -0.005385 -0.002398 - conjugated induced dipole 0.029267 -0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.039319 -3.558495 2.273651 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000025 -0.000086 -0.000031 - induced dipole 0.009130 -0.008630 0.003112 - conjugated induced dipole 0.008989 -0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.293561 -3.037015 4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000042 -0.000041 0.000066 - induced dipole -0.007992 0.001162 -0.007068 - conjugated induced dipole -0.007504 0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.300094 -4.878029 3.272272 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000048 -0.000043 0.000038 - induced dipole 0.021085 -0.001460 -0.001599 - conjugated induced dipole 0.016161 -0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.898992 -7.023409 4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000021 0.000033 0.000057 - induced dipole -0.033173 -0.007600 -0.027393 - conjugated induced dipole -0.028333 -0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.791868 -5.123226 5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000093 0.000034 0.000094 - induced dipole -0.013634 -0.005736 -0.010955 - conjugated induced dipole -0.012784 -0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.052107 -9.234261 2.597099 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000030 0.000012 -0.000029 - induced dipole 0.008720 0.015807 0.002368 - conjugated induced dipole 0.007606 0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.063655 -2.543636 9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000026 -0.000025 -0.000005 - induced dipole -0.001749 0.004775 -0.016411 - conjugated induced dipole 0.000061 0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.709261 -10.183897 9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000018 0.000024 -0.000007 - induced dipole -0.000865 0.016467 -0.014862 - conjugated induced dipole -0.000106 0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.773082 -1.203202 2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000058 -0.000089 -0.000063 - induced dipole -0.004462 -0.001746 -0.000735 - conjugated induced dipole -0.002994 -0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.531703 0.010413 2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000064 -0.000072 -0.000067 - induced dipole -0.006347 -0.016593 -0.000811 - conjugated induced dipole -0.007353 -0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.330072 -2.097506 2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000002 -0.000038 0.000026 - induced dipole -0.016570 -0.009874 -0.021011 - conjugated induced dipole -0.018333 -0.019255 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.796647 -7.982931 3.100978 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000015 -0.000010 -0.000027 - induced dipole 0.046958 0.039179 0.007441 - conjugated induced dipole 0.039937 0.045846 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.437226 -3.167268 8.374362 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000059 -0.000029 0.000000 - induced dipole -0.028024 -0.017077 -0.022943 - conjugated induced dipole -0.015224 -0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.588177 -7.743698 2.535393 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 0.000009 0.000030 - induced dipole -0.068050 -0.015625 -0.045166 - conjugated induced dipole -0.061942 0.008873 -0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.807343 -2.488904 7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000043 -0.000034 0.000004 - induced dipole -0.011763 0.007583 -0.014002 - conjugated induced dipole -0.015109 0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.132669 -9.413324 7.939807 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000025 0.000037 0.000003 - induced dipole -0.017229 0.015360 -0.023246 - conjugated induced dipole -0.008731 0.020510 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.380371 -7.536352 2.417492 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000039 -0.000007 -0.000034 - induced dipole 0.020830 0.022726 0.000901 - conjugated induced dipole 0.022286 0.021511 -0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.607697 -8.332921 3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000003 0.000023 0.000033 - induced dipole -0.031823 -0.013065 -0.031206 - conjugated induced dipole -0.032768 -0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.655958 -0.936228 3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000004 -0.000067 0.000028 - induced dipole -0.010155 -0.041713 -0.001546 - conjugated induced dipole -0.005860 -0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.517013 -1.856517 1.175445 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000020 -0.000083 -0.000074 - induced dipole 0.025817 -0.011418 0.033335 - conjugated induced dipole 0.014981 -0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.836760 -1.601375 2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000047 -0.000074 -0.000007 - induced dipole 0.012761 -0.031001 -0.001118 - conjugated induced dipole 0.007779 -0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.037866 -8.641402 8.572568 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000036 0.000043 -0.000002 - induced dipole -0.009280 0.038168 -0.020381 - conjugated induced dipole -0.010164 0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 2 - Polarizability point coords 10.544201 -4.784860 -9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444129 6.305470 0.945064 0.689806 0.619686 1.472952 - electric field 0.000766 0.003524 -0.002810 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000036 -0.000062 -0.000011 - induced dipole 0.012761 0.031001 -0.001118 - conjugated induced dipole 0.007779 0.029252 -0.000281 - old induced dipole 0.012761 0.031001 -0.001118 - old conjugated induced dipole 0.007779 0.029252 -0.000281 - - Polarizability point coords 18.188304 -3.897331 -3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821479 0.641371 2.940226 -0.379588 3.227902 - electric field -0.000947 -0.002830 -0.001995 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000014 -0.000049 -0.000018 - induced dipole -0.011763 -0.007583 -0.014002 - conjugated induced dipole -0.015109 -0.002583 -0.017046 - old induced dipole -0.011763 -0.007583 -0.014002 - old conjugated induced dipole -0.015109 -0.002583 -0.017046 - - Polarizability point coords 5.746327 1.764335 -9.323370 - polarizability tensor 5.676900 -5.144008 -0.727143 -3.339388 4.987141 -0.427749 -0.708036 -0.509155 1.316657 - electric field 0.005845 -0.004147 -0.001820 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000098 -0.000082 - induced dipole 0.063351 -0.043904 -0.005722 - conjugated induced dipole 0.055846 -0.056805 -0.006259 - old induced dipole 0.063351 -0.043904 -0.005722 - old conjugated induced dipole 0.055846 -0.056805 -0.006259 - - Polarizability point coords 15.248291 3.027089 -3.518027 - polarizability tensor 2.014660 1.411523 2.754674 0.096191 2.864916 1.368380 1.742511 2.324061 3.622593 - electric field -0.000394 -0.003107 -0.002306 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000029 -0.000064 -0.000047 - induced dipole -0.017229 -0.015360 -0.023246 - conjugated induced dipole -0.008731 -0.020509 -0.020878 - old induced dipole -0.017229 -0.015360 -0.023246 - old conjugated induced dipole -0.008731 -0.020509 -0.020878 - - Polarizability point coords 16.439681 -2.687667 -5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field -0.000908 -0.000560 -0.001450 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000011 -0.000056 -0.000021 - induced dipole -0.008021 0.001430 -0.006467 - conjugated induced dipole -0.006680 0.000245 -0.007225 - old induced dipole -0.008021 0.001430 -0.006467 - old conjugated induced dipole -0.006680 0.000245 -0.007225 - - Polarizability point coords 6.977683 -0.386808 -8.960653 - polarizability tensor 2.247827 -1.783499 0.065362 -1.149026 2.379898 0.043699 0.251240 -0.157820 0.623217 - electric field 0.004368 0.000546 -0.002087 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000016 -0.000099 -0.000052 - induced dipole 0.009459 -0.003713 -0.000482 - conjugated induced dipole 0.009703 -0.006827 -0.001297 - old induced dipole 0.009459 -0.003713 -0.000482 - old conjugated induced dipole 0.009703 -0.006827 -0.001297 - - Polarizability point coords 8.607879 -5.183033 -9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field -0.000107 0.000237 0.000261 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000046 -0.000072 -0.000006 - induced dipole -0.004462 0.001746 -0.000735 - conjugated induced dipole -0.002995 0.001829 -0.000320 - old induced dipole -0.004462 0.001746 -0.000735 - old conjugated induced dipole -0.002995 0.001829 -0.000320 - - Polarizability point coords 11.326355 -0.145353 -8.341383 - polarizability tensor 5.018070 4.875224 1.088491 1.811907 4.579783 0.228245 1.487331 1.273638 1.260418 - electric field -0.000657 0.000938 -0.005512 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000006 -0.000072 -0.000039 - induced dipole -0.004785 0.002957 -0.007603 - conjugated induced dipole -0.011858 -0.007327 -0.008705 - old induced dipole -0.004785 0.002957 -0.007603 - old conjugated induced dipole -0.011858 -0.007327 -0.008705 - - Polarizability point coords 12.954796 -4.209593 -8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field -0.001435 0.003757 -0.003998 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000027 -0.000057 -0.000015 - induced dipole -0.026692 0.007223 -0.008401 - conjugated induced dipole -0.024722 0.010399 -0.005993 - old induced dipole -0.026692 0.007223 -0.008401 - old conjugated induced dipole -0.024722 0.010399 -0.005993 - - Polarizability point coords 14.916141 1.009688 -5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field -0.001286 -0.001070 -0.002191 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000011 -0.000065 -0.000039 - induced dipole -0.007350 -0.008201 -0.009724 - conjugated induced dipole -0.006616 -0.006977 -0.011000 - old induced dipole -0.007350 -0.008201 -0.009724 - old conjugated induced dipole -0.006616 -0.006977 -0.011000 - - Polarizability point coords 11.016969 -2.599261 -8.571017 - polarizability tensor 3.009104 -0.265453 0.164854 -0.392052 2.422903 0.078853 0.571862 0.205879 0.338965 - electric field 0.000707 0.002083 -0.004937 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000023 -0.000071 -0.000023 - induced dipole 0.000502 0.006235 -0.000930 - conjugated induced dipole -0.002419 0.004872 -0.001639 - old induced dipole 0.000502 0.006235 -0.000930 - old conjugated induced dipole -0.002419 0.004872 -0.001639 - - Polarizability point coords 14.589093 -1.263009 -5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522052 0.962357 3.293630 - electric field -0.001272 -0.000178 -0.002191 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000006 -0.000066 -0.000028 - induced dipole -0.013634 0.005736 -0.010955 - conjugated induced dipole -0.012784 0.003818 -0.011435 - old induced dipole -0.013634 0.005736 -0.010955 - old conjugated induced dipole -0.012784 0.003818 -0.011435 - - Polarizability point coords 9.080866 -1.508206 -8.185563 - polarizability tensor 13.654114 -2.638427 1.355101 -2.419218 4.125882 0.076557 2.653090 -0.028380 1.982134 - electric field 0.002041 0.001230 -0.003268 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000019 -0.000090 -0.000035 - induced dipole 0.021085 0.001460 -0.001599 - conjugated induced dipole 0.016161 0.000422 -0.004574 - old induced dipole 0.021085 0.001460 -0.001599 - old conjugated induced dipole 0.016161 0.000422 -0.004574 - - Polarizability point coords 7.341642 -2.827740 -9.184184 - polarizability tensor 2.960546 0.866100 0.523975 1.061801 5.117295 0.710667 0.733477 0.805591 0.872851 - electric field 0.002486 0.000564 0.000314 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000035 -0.000091 -0.000025 - induced dipole 0.009130 0.008630 0.003112 - conjugated induced dipole 0.008989 0.006449 0.002117 - old induced dipole 0.009130 0.008630 0.003112 - old conjugated induced dipole 0.008989 0.006449 0.002117 - - Polarizability point coords 13.481969 0.637174 -6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field -0.002143 -0.000489 -0.003387 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000003 -0.000066 -0.000039 - induced dipole -0.033173 0.007600 -0.027393 - conjugated induced dipole -0.028333 0.007801 -0.030425 - old induced dipole -0.033173 0.007600 -0.027393 - old conjugated induced dipole -0.028333 0.007801 -0.030425 - - Polarizability point coords 9.283615 -1.392603 -9.317312 - polarizability tensor 12.949895 -2.646494 1.785361 -2.381880 4.179640 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.003441 0.002380 -0.004383 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000020 -0.000079 -0.000034 - induced dipole 0.032580 0.005385 -0.002398 - conjugated induced dipole 0.029267 0.003579 -0.004952 - old induced dipole 0.032580 0.005385 -0.002398 - old conjugated induced dipole 0.029267 0.003579 -0.004952 - - Polarizability point coords 15.087400 -3.349220 -7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field -0.001284 0.001360 -0.001865 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000018 -0.000055 -0.000019 - induced dipole -0.007992 -0.001162 -0.007068 - conjugated induced dipole -0.007504 -0.002361 -0.008889 - old induced dipole -0.007992 -0.001162 -0.007068 - old conjugated induced dipole -0.007504 -0.002361 -0.008889 - - Polarizability point coords 15.487096 -0.880237 -6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460098 13.263287 0.923067 0.789240 0.637256 3.260995 - electric field -0.001508 -0.000341 -0.002188 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000058 -0.000028 - induced dipole -0.013189 0.004500 -0.010285 - conjugated induced dipole -0.010329 0.004071 -0.012280 - old induced dipole -0.013189 0.004500 -0.010285 - old conjugated induced dipole -0.010329 0.004071 -0.012280 - - Polarizability point coords 4.328854 2.848026 -8.860735 - polarizability tensor 2.586919 -0.528104 -0.018359 -0.362648 2.294263 -0.043707 0.109841 -0.127145 2.115097 - electric field 0.001547 -0.005895 0.000772 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000004 -0.000106 -0.000114 - induced dipole 0.008720 -0.015807 0.002368 - conjugated induced dipole 0.007606 -0.016649 0.001351 - old induced dipole 0.008720 -0.015807 0.002368 - old conjugated induced dipole 0.007606 -0.016649 0.001351 - - Polarizability point coords 19.444616 -3.842599 -2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000198 -0.003417 -0.004966 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000010 -0.000046 -0.000018 - induced dipole -0.001749 -0.004775 -0.016411 - conjugated induced dipole 0.000061 -0.005522 -0.015883 - old induced dipole -0.001749 -0.004775 -0.016411 - old conjugated induced dipole 0.000061 -0.005522 -0.015883 - - Polarizability point coords 16.090221 3.797662 -2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.001729 -0.004592 -0.003383 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000037 -0.000060 -0.000047 - induced dipole -0.000865 -0.016467 -0.014861 - conjugated induced dipole -0.000106 -0.015979 -0.015390 - old induced dipole -0.000865 -0.016467 -0.014861 - old conjugated induced dipole -0.000106 -0.015979 -0.015390 - - Polarizability point coords 6.863949 -4.529717 -10.282389 - polarizability tensor 8.609790 3.161438 4.330874 3.390209 5.869742 2.969759 2.433190 1.740004 6.358301 - electric field 0.001008 -0.001477 0.004623 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000049 -0.000077 -0.000010 - induced dipole 0.025817 0.011418 0.033335 - conjugated induced dipole 0.014981 0.002807 0.031806 - old induced dipole 0.025817 0.011418 0.033335 - old conjugated induced dipole 0.014981 0.002807 0.031806 - - Polarizability point coords 14.725003 -5.450007 -7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field -0.000812 0.005388 -0.001435 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000028 -0.000048 -0.000011 - induced dipole -0.010155 0.041713 -0.001546 - conjugated induced dipole -0.005860 0.039807 -0.004393 - old induced dipole -0.010155 0.041713 -0.001546 - old conjugated induced dipole -0.005860 0.039807 -0.004393 - - Polarizability point coords 9.849258 -6.396648 -9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field -0.001901 0.002245 -0.000818 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000047 -0.000059 -0.000001 - induced dipole -0.006347 0.016593 -0.000811 - conjugated induced dipole -0.007353 0.013869 -0.001598 - old induced dipole -0.006347 0.016593 -0.000811 - old conjugated induced dipole -0.007353 0.013869 -0.001598 - - Polarizability point coords 5.000566 1.150095 -9.040202 - polarizability tensor 3.548722 -1.577098 0.269187 -2.005619 4.318440 0.319352 0.418130 0.221895 0.439301 - electric field 0.003842 -0.002906 -0.000499 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000009 -0.000111 -0.000084 - induced dipole 0.020829 -0.022725 0.000901 - conjugated induced dipole 0.022286 -0.021510 -0.000193 - old induced dipole 0.020829 -0.022725 0.000901 - old conjugated induced dipole 0.022286 -0.021510 -0.000193 - - Polarizability point coords 18.521619 -2.944467 -3.727272 - polarizability tensor 5.713597 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field -0.000636 -0.001450 -0.002707 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000008 -0.000049 -0.000020 - induced dipole -0.017774 0.011888 -0.014683 - conjugated induced dipole -0.014358 0.005896 -0.013284 - old induced dipole -0.017774 0.011888 -0.014683 - old conjugated induced dipole -0.014358 0.005896 -0.013284 - - Polarizability point coords 11.773264 1.946686 -7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225663 5.733018 0.256666 1.271657 0.143979 4.406063 - electric field -0.003305 0.001466 -0.005326 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000010 -0.000069 -0.000051 - induced dipole -0.031823 0.013065 -0.031206 - conjugated induced dipole -0.032768 0.007049 -0.032022 - old induced dipole -0.031823 0.013065 -0.031206 - old conjugated induced dipole -0.032768 0.007049 -0.032022 - - Polarizability point coords 17.818187 -3.218967 -3.083473 - polarizability tensor 6.707221 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field -0.000950 -0.002180 -0.003856 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000011 -0.000054 -0.000020 - induced dipole -0.028024 0.017077 -0.022943 - conjugated induced dipole -0.015224 0.006010 -0.022514 - old induced dipole -0.028024 0.017077 -0.022943 - old conjugated induced dipole -0.015224 0.006010 -0.022514 - - Polarizability point coords 15.418828 2.255166 -2.885267 - polarizability tensor 1.169671 1.724727 0.923947 2.191905 7.141823 4.969365 0.687892 2.528024 4.381745 - electric field -0.000204 -0.002371 -0.001742 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000026 -0.000068 -0.000044 - induced dipole -0.009280 -0.038168 -0.020381 - conjugated induced dipole -0.010164 -0.031452 -0.028358 - old induced dipole -0.009280 -0.038168 -0.020381 - old conjugated induced dipole -0.010164 -0.031452 -0.028358 - - Polarizability point coords 5.584419 1.596786 -8.356897 - polarizability tensor 5.399126 -5.564498 0.213556 -4.017191 5.082747 0.297192 1.393777 -0.829069 1.929016 - electric field 0.004061 -0.003580 -0.000890 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000003 -0.000112 -0.000089 - induced dipole 0.046956 -0.039177 0.007441 - conjugated induced dipole 0.039935 -0.045844 -0.002781 - old induced dipole 0.046956 -0.039177 0.007441 - old conjugated induced dipole 0.039935 -0.045844 -0.002781 - - Polarizability point coords 12.792784 1.357463 -8.922442 - polarizability tensor 10.702598 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841633 - electric field -0.004268 -0.000857 -0.004513 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000001 -0.000059 -0.000041 - induced dipole -0.068050 0.015625 -0.045166 - conjugated induced dipole -0.061942 -0.008873 -0.047523 - old induced dipole -0.068050 0.015625 -0.045166 - old conjugated induced dipole -0.061942 -0.008873 -0.047523 - - Polarizability point coords 15.050888 -4.288728 -9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field -0.002293 0.003677 -0.003470 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000022 -0.000046 -0.000015 - induced dipole -0.016570 0.009874 -0.021011 - conjugated induced dipole -0.018333 0.019256 -0.008873 - old induced dipole -0.016570 0.009874 -0.021011 - old conjugated induced dipole -0.018333 0.019256 -0.008873 - - Polarizability point coords 6.515774 -4.722878 -8.719786 - polarizability tensor 9.556647 3.699450 -1.931270 3.986422 6.261107 -1.285638 0.992071 0.390991 3.653714 - electric field -0.000536 -0.002973 0.001170 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000053 -0.000091 -0.000006 - induced dipole -0.024576 -0.025280 0.002707 - conjugated induced dipole -0.021953 -0.024514 0.010846 - old induced dipole -0.024576 -0.025280 0.002707 - old conjugated induced dipole -0.021953 -0.024514 0.010846 - - Polarizability point coords 10.358728 -4.885969 -8.339860 - polarizability tensor 4.541349 2.067478 1.036870 1.580946 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field -0.000486 0.002308 -0.002026 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000039 -0.000069 -0.000009 - induced dipole 0.002879 0.021657 0.001455 - conjugated induced dipole -0.001239 0.015466 -0.003342 - old induced dipole 0.002879 0.021657 0.001455 - old conjugated induced dipole -0.001239 0.015466 -0.003342 - - Polarizability point coords 16.153617 2.579264 -3.470143 - polarizability tensor 2.204025 0.653491 0.327503 1.701255 5.540977 4.544585 0.766864 3.846191 4.089134 - electric field 0.000242 -0.002270 -0.001640 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000024 -0.000060 -0.000042 - induced dipole -0.003843 -0.029042 -0.022595 - conjugated induced dipole -0.008031 -0.026943 -0.024571 - old induced dipole -0.003843 -0.029042 -0.022595 - old conjugated induced dipole -0.008031 -0.026943 -0.024571 - -Fragment 3 - Polarizability point coords 4.836760 1.601375 -2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444129 6.305470 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000003 -0.000007 -0.000004 - induced dipole -0.012761 0.031001 0.001118 - conjugated induced dipole -0.007779 0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.807344 2.488904 -7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821479 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000002 -0.000005 -0.000008 - induced dipole 0.011763 -0.007583 0.014002 - conjugated induced dipole 0.015109 -0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.634633 8.150570 -2.134465 - polarizability tensor 5.676900 5.144008 -0.727143 3.339388 4.987141 0.427749 -0.708036 0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000003 -0.000001 -0.000003 - induced dipole -0.063351 -0.043904 0.005722 - conjugated induced dipole -0.055846 -0.056805 0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.132670 9.413324 -7.939808 - polarizability tensor 2.014660 -1.411523 2.754674 -0.096191 2.864916 -1.368380 1.742511 -2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000006 - induced dipole 0.017229 -0.015360 0.023246 - conjugated induced dipole 0.008731 -0.020509 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.058720 3.698568 -6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000001 -0.000004 -0.000009 - induced dipole 0.008021 0.001430 0.006467 - conjugated induced dipole 0.006680 0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.403278 5.999427 -2.497182 - polarizability tensor 2.247827 1.783499 0.065362 1.149026 2.379898 -0.043699 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000003 -0.000002 -0.000004 - induced dipole -0.009459 -0.003713 0.000482 - conjugated induced dipole -0.009703 -0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.773082 1.203202 -2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000002 -0.000006 -0.000002 - induced dipole 0.004462 0.001746 0.000735 - conjugated induced dipole 0.002995 0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.054606 6.240882 -3.116452 - polarizability tensor 5.018070 -4.875224 1.088491 -1.811907 4.579783 -0.228245 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000004 -0.000003 -0.000007 - induced dipole 0.004785 0.002957 0.007603 - conjugated induced dipole 0.011858 -0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.426164 2.176641 -3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000004 -0.000008 -0.000006 - induced dipole 0.026692 0.007223 0.008401 - conjugated induced dipole 0.024722 0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.464819 7.395923 -6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000001 -0.000001 -0.000008 - induced dipole 0.007350 -0.008201 0.009724 - conjugated induced dipole 0.006616 -0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.363992 3.786974 -2.886817 - polarizability tensor 3.009104 0.265453 0.164854 0.392052 2.422903 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000004 -0.000005 -0.000006 - induced dipole -0.000502 0.006235 0.000930 - conjugated induced dipole 0.002419 0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.791868 5.123226 -5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522052 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000002 -0.000003 -0.000008 - induced dipole 0.013634 0.005736 0.010955 - conjugated induced dipole 0.012784 0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.300094 4.878029 -3.272272 - polarizability tensor 13.654114 2.638427 1.355101 2.419218 4.125882 -0.076557 2.653090 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000003 -0.000003 -0.000005 - induced dipole -0.021085 0.001460 0.001599 - conjugated induced dipole -0.016161 0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.039319 3.558495 -2.273651 - polarizability tensor 2.960546 -0.866100 0.523975 -1.061801 5.117295 -0.710667 0.733477 -0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000003 -0.000004 -0.000003 - induced dipole -0.009130 0.008630 -0.003112 - conjugated induced dipole -0.008989 0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.898992 7.023409 -4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000003 -0.000002 -0.000008 - induced dipole 0.033173 0.007600 0.027393 - conjugated induced dipole 0.028333 0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.097346 4.993632 -2.140523 - polarizability tensor 12.949895 2.646494 1.785361 2.381880 4.179640 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000004 -0.000004 -0.000005 - induced dipole -0.032580 0.005385 0.002398 - conjugated induced dipole -0.029267 0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.293561 3.037015 -4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000003 -0.000006 -0.000009 - induced dipole 0.007992 -0.001162 0.007068 - conjugated induced dipole 0.007504 -0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.106135 5.505998 -5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460098 13.263287 -0.923067 0.789240 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000003 -0.000003 -0.000010 - induced dipole 0.013189 0.004500 0.010285 - conjugated induced dipole 0.010329 0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.052107 9.234261 -2.597100 - polarizability tensor 2.586919 0.528104 -0.018359 0.362648 2.294263 0.043707 0.109841 0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000002 -0.000001 -0.000003 - induced dipole -0.008720 -0.015807 -0.002368 - conjugated induced dipole -0.007606 -0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.063655 2.543636 -9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000005 -0.000006 - induced dipole 0.001749 -0.004775 0.016411 - conjugated induced dipole -0.000061 -0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.709261 10.183897 -9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000001 -0.000000 -0.000005 - induced dipole 0.000865 -0.016467 0.014861 - conjugated induced dipole 0.000106 -0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.517012 1.856518 -1.175445 - polarizability tensor 8.609790 -3.161438 4.330874 -3.390209 5.869742 -2.969759 2.433190 -1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000002 -0.000005 -0.000002 - induced dipole -0.025817 0.011418 -0.033335 - conjugated induced dipole -0.014981 0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.655958 0.936228 -3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000003 -0.000009 -0.000007 - induced dipole 0.010155 0.041713 0.001546 - conjugated induced dipole 0.005860 0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.531703 -0.010413 -2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000001 -0.000007 -0.000002 - induced dipole 0.006347 0.016593 0.000811 - conjugated induced dipole 0.007353 0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.380395 7.536330 -2.417633 - polarizability tensor 3.548722 1.577098 0.269187 2.005619 4.318440 -0.319352 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000003 -0.000002 -0.000003 - induced dipole -0.020829 -0.022725 -0.000901 - conjugated induced dipole -0.022286 -0.021510 0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.140658 3.441768 -7.730563 - polarizability tensor 5.713597 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000002 -0.000004 -0.000008 - induced dipole 0.017774 0.011888 0.014683 - conjugated induced dipole 0.014358 0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.607697 8.332921 -3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225663 5.733018 -0.256666 1.271657 -0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000004 -0.000001 -0.000007 - induced dipole 0.031823 0.013065 0.031206 - conjugated induced dipole 0.032768 0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.437226 3.167268 -8.374362 - polarizability tensor 6.707221 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000002 -0.000004 -0.000007 - induced dipole 0.028024 0.017077 0.022943 - conjugated induced dipole 0.015224 0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.037867 8.641401 -8.572568 - polarizability tensor 1.169671 -1.724727 0.923947 -2.191905 7.141823 -4.969365 0.687892 -2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000001 -0.000006 - induced dipole 0.009280 -0.038168 0.020381 - conjugated induced dipole 0.010164 -0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.796542 7.983021 -3.100937 - polarizability tensor 5.399126 5.564498 0.213556 4.017191 5.082747 -0.297192 1.393777 0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000003 -0.000001 -0.000003 - induced dipole -0.046956 -0.039177 -0.007441 - conjugated induced dipole -0.039935 -0.045844 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.588177 7.743698 -2.535393 - polarizability tensor 10.702598 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000005 -0.000001 -0.000009 - induced dipole 0.068050 0.015625 0.045166 - conjugated induced dipole 0.061942 -0.008873 0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.330072 2.097506 -2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000007 -0.000010 -0.000010 - induced dipole 0.016570 0.009874 0.021011 - conjugated induced dipole 0.018333 0.019256 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.865186 1.663357 -2.738048 - polarizability tensor 9.556647 -3.699450 -1.931270 -3.986422 6.261107 1.285638 0.992071 -0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000001 -0.000004 -0.000002 - induced dipole 0.024576 -0.025280 -0.002707 - conjugated induced dipole 0.021953 -0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.022233 1.500266 -3.117975 - polarizability tensor 4.541349 -2.067478 1.036870 -1.580946 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000002 -0.000006 -0.000003 - induced dipole -0.002879 0.021657 -0.001455 - conjugated induced dipole 0.001239 0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.772656 8.965499 -7.987692 - polarizability tensor 2.204025 -0.653491 0.327503 -1.701255 5.540977 -4.544585 0.766864 -3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000001 -0.000007 - induced dipole 0.003843 -0.029042 0.022595 - conjugated induced dipole 0.008031 -0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 4 - Polarizability point coords -19.097640 2.599261 31.486687 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 -0.006235 0.000930 - conjugated induced dipole 0.002419 -0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -26.602290 2.944467 26.642941 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 -0.011888 0.014683 - conjugated induced dipole 0.014358 -0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.827080 -1.764403 32.238939 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063346 0.043899 0.005721 - conjugated induced dipole -0.055842 0.056799 0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.234289 -2.579263 26.385811 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 0.029042 0.022595 - conjugated induced dipole 0.008031 0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.567767 0.880237 29.220750 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 -0.004500 0.010285 - conjugated induced dipole 0.010329 -0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.439399 4.885969 31.255529 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 -0.021657 -0.001455 - conjugated induced dipole 0.001239 -0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.596446 4.722878 31.635455 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 0.025280 -0.002707 - conjugated induced dipole 0.021953 0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.407026 0.145353 31.257052 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 -0.002957 0.007603 - conjugated induced dipole 0.011858 0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -21.035468 4.209593 31.342289 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 -0.007223 0.008401 - conjugated induced dipole 0.024722 -0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.520352 2.687667 28.020022 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 -0.001430 0.006467 - conjugated induced dipole 0.006680 -0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.058354 0.386808 31.876322 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 0.003713 0.000482 - conjugated induced dipole -0.009703 0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.996813 -1.009688 27.916692 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 0.008201 0.009724 - conjugated induced dipole 0.006616 0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.364286 1.392603 32.232981 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 -0.005385 0.002398 - conjugated induced dipole -0.029267 -0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.422313 2.827740 32.099853 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 -0.008630 -0.003112 - conjugated induced dipole -0.008989 -0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.168071 3.349220 29.965816 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 0.001162 0.007068 - conjugated induced dipole 0.007504 0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.161538 1.508206 31.101232 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 -0.001460 0.001599 - conjugated induced dipole -0.016161 -0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -21.562640 -0.637174 29.886424 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 -0.007600 0.027393 - conjugated induced dipole 0.028333 -0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.669764 1.263009 28.521541 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 -0.005736 0.010955 - conjugated induced dipole 0.012784 -0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.409525 -2.848026 31.776405 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 0.015807 -0.002368 - conjugated induced dipole -0.007606 0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -27.525287 3.842599 25.335067 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 0.004775 0.016411 - conjugated induced dipole -0.000061 0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.170893 -3.797662 25.009608 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 0.016467 0.014862 - conjugated induced dipole 0.000106 0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.688550 5.183033 32.106919 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 -0.001746 0.000735 - conjugated induced dipole 0.002994 -0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.929929 6.396648 31.993285 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 -0.016593 0.000811 - conjugated induced dipole 0.007353 -0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.131560 4.288729 31.935679 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 -0.009874 0.021011 - conjugated induced dipole 0.018333 -0.019255 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.664985 -1.596696 31.272526 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046958 0.039179 -0.007441 - conjugated induced dipole -0.039937 0.045846 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -25.898858 3.218967 25.999142 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 -0.017077 0.022943 - conjugated induced dipole 0.015224 -0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -20.873455 -1.357463 31.838111 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 -0.015625 0.045166 - conjugated induced dipole 0.061942 0.008873 0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -26.268976 3.897331 26.657170 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 0.007583 0.014002 - conjugated induced dipole 0.015109 0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.328963 -3.027089 26.433697 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 0.015360 0.023246 - conjugated induced dipole 0.008731 0.020510 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.081261 -1.150117 31.956012 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020830 0.022726 -0.000901 - conjugated induced dipole -0.022286 0.021511 0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.853935 -1.946686 30.590634 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 -0.013065 0.031206 - conjugated induced dipole 0.032768 -0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.805674 5.450007 30.716646 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 -0.041713 0.001546 - conjugated induced dipole 0.005860 -0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.944619 4.529718 33.198059 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 -0.011418 -0.033335 - conjugated induced dipole -0.014981 -0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.624872 4.784860 32.281745 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 -0.031001 0.001118 - conjugated induced dipole -0.007779 -0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.499498 -2.255167 25.800936 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 0.038168 0.020381 - conjugated induced dipole 0.010164 0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 5 - Polarizability point coords -12.444663 -3.786974 25.802487 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000049 -0.000033 0.000003 - induced dipole 0.000502 -0.006235 -0.000930 - conjugated induced dipole -0.002419 -0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.940013 -3.441768 30.646232 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000028 -0.000038 -0.000013 - induced dipole -0.017774 -0.011888 -0.014683 - conjugated induced dipole -0.014358 -0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.715223 -8.150638 25.050235 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000064 -0.000017 0.000037 - induced dipole 0.063346 0.043899 -0.005721 - conjugated induced dipole 0.055842 0.056799 -0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.308014 -8.965498 30.903362 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000046 -0.000029 0.000006 - induced dipole -0.003843 0.029042 -0.022595 - conjugated induced dipole -0.008031 0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.974536 -5.505998 28.068423 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000039 -0.000032 -0.000002 - induced dipole -0.013189 -0.004500 -0.010285 - conjugated induced dipole -0.010329 -0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.102904 -1.500266 26.033644 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000050 -0.000038 -0.000004 - induced dipole 0.002879 -0.021657 0.001455 - conjugated induced dipole -0.001239 -0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.945857 -1.663357 25.653718 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000065 -0.000040 0.000010 - induced dipole -0.024576 0.025280 0.002707 - conjugated induced dipole -0.021953 0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.135277 -6.240882 26.032121 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000050 -0.000028 0.000010 - induced dipole -0.004785 -0.002957 -0.007603 - conjugated induced dipole -0.011858 0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.506836 -2.176641 25.946884 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000041 -0.000034 -0.000006 - induced dipole -0.026692 -0.007223 -0.008401 - conjugated induced dipole -0.024722 -0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.021951 -3.698568 29.269151 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000035 -0.000038 -0.000010 - induced dipole -0.008021 -0.001430 -0.006467 - conjugated induced dipole -0.006680 -0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.483949 -5.999427 25.412851 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000063 -0.000027 0.000025 - induced dipole 0.009459 0.003713 -0.000482 - conjugated induced dipole 0.009703 0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.545491 -7.395923 29.372481 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000046 -0.000031 0.000004 - induced dipole -0.007350 0.008201 -0.009724 - conjugated induced dipole -0.006616 0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.178017 -4.993632 25.056192 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000054 -0.000029 0.000013 - induced dipole 0.032580 -0.005385 -0.002398 - conjugated induced dipole 0.029267 -0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.119990 -3.558495 25.189320 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000061 -0.000034 0.000015 - induced dipole 0.009130 -0.008630 0.003112 - conjugated induced dipole 0.008989 -0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.374232 -3.037015 27.323358 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000036 -0.000034 -0.000008 - induced dipole -0.007992 0.001162 -0.007068 - conjugated induced dipole -0.007504 0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.380765 -4.878029 26.187941 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000058 -0.000033 0.000012 - induced dipole 0.021085 -0.001460 -0.001599 - conjugated induced dipole 0.016161 -0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.979663 -7.023409 27.402749 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000046 -0.000028 0.000006 - induced dipole -0.033173 -0.007600 -0.027393 - conjugated induced dipole -0.028333 -0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.872539 -5.123226 28.767632 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000043 -0.000036 -0.000003 - induced dipole -0.013634 -0.005736 -0.010955 - conjugated induced dipole -0.012784 -0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.132779 -9.234261 25.512769 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000069 -0.000011 0.000047 - induced dipole 0.008720 0.015807 0.002368 - conjugated induced dipole 0.007606 0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.017016 -2.543636 31.954106 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000024 -0.000041 -0.000018 - induced dipole -0.001749 0.004775 -0.016411 - conjugated induced dipole 0.000061 0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.371411 -10.183897 32.279566 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000050 -0.000027 0.000009 - induced dipole -0.000865 0.016467 -0.014862 - conjugated induced dipole -0.000106 0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.853753 -1.203202 25.182254 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000054 -0.000037 0.000002 - induced dipole -0.004462 -0.001746 -0.000735 - conjugated induced dipole -0.002994 -0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.612374 0.010413 25.295888 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000048 -0.000038 -0.000006 - induced dipole -0.006347 -0.016593 -0.000811 - conjugated induced dipole -0.007353 -0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.410744 -2.097506 25.353494 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000034 -0.000030 -0.000007 - induced dipole -0.016570 -0.009874 -0.021011 - conjugated induced dipole -0.018333 -0.019255 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.877318 -7.982931 26.016647 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000070 -0.000019 0.000038 - induced dipole 0.046958 0.039179 0.007441 - conjugated induced dipole 0.039937 0.045846 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.643445 -3.167268 31.290032 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000030 -0.000043 -0.000015 - induced dipole -0.028024 -0.017077 -0.022943 - conjugated induced dipole -0.015224 -0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.668848 -7.743698 25.451063 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000044 -0.000022 0.000011 - induced dipole -0.068050 -0.015625 -0.045166 - conjugated induced dipole -0.061942 0.008873 -0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.273328 -2.488904 30.632003 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000027 -0.000040 -0.000017 - induced dipole -0.011763 0.007583 -0.014002 - conjugated induced dipole -0.015109 0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.213340 -9.413324 30.855477 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000049 -0.000028 0.000009 - induced dipole -0.017229 0.015360 -0.023246 - conjugated induced dipole -0.008731 0.020510 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.461042 -7.536352 25.333161 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000068 -0.000019 0.000040 - induced dipole 0.020830 0.022726 0.000901 - conjugated induced dipole 0.022286 0.021511 -0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.688368 -8.332921 26.698539 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000051 -0.000023 0.000014 - induced dipole -0.031823 -0.013065 -0.031206 - conjugated induced dipole -0.032768 -0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.736629 -0.936228 26.572528 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000034 -0.000034 -0.000013 - induced dipole -0.010155 -0.041713 -0.001546 - conjugated induced dipole -0.005860 -0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.597684 -1.856517 24.091115 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000057 -0.000034 0.000013 - induced dipole 0.025817 -0.011418 0.033335 - conjugated induced dipole 0.014981 -0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.917431 -1.601375 25.007429 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000047 -0.000034 -0.000001 - induced dipole 0.012761 -0.031001 -0.001118 - conjugated induced dipole 0.007779 -0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.042805 -8.641402 31.488237 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000049 -0.000033 0.000006 - induced dipole -0.009280 0.038168 -0.020381 - conjugated induced dipole -0.010164 0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 6 - Polarizability point coords 2.463531 -4.784861 13.549594 - polarizability tensor 4.528424 1.917551 0.356759 1.444128 6.305472 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 0.031001 -0.001118 - conjugated induced dipole 0.007779 0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.107633 -3.897328 19.174170 - polarizability tensor 3.614271 -1.113333 2.917217 -0.029793 1.821479 0.641372 2.940226 -0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 -0.007583 -0.014002 - conjugated induced dipole -0.015109 -0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.334346 1.764332 13.592298 - polarizability tensor 5.676904 -5.144008 -0.727141 -3.339388 4.987137 -0.427750 -0.708035 -0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063351 -0.043904 -0.005722 - conjugated induced dipole 0.055846 -0.056805 -0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.167617 3.027091 19.397643 - polarizability tensor 2.014659 1.411522 2.754673 0.096191 2.864917 1.368381 1.742510 2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 -0.015360 -0.023246 - conjugated induced dipole -0.008731 -0.020509 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.359009 -2.687665 17.811318 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536299 1.326286 -0.648852 1.549497 -0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 0.001430 -0.006467 - conjugated induced dipole -0.006680 0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.102989 -0.386810 13.955016 - polarizability tensor 2.247828 -1.783499 0.065363 -1.149026 2.379896 0.043699 0.251241 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 -0.003713 -0.000482 - conjugated induced dipole 0.009703 -0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.527209 -5.183035 13.724420 - polarizability tensor 5.239487 -1.239561 0.807464 -0.101560 1.234380 0.089842 1.195631 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 0.001746 -0.000735 - conjugated induced dipole -0.002995 0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.245682 -0.145353 14.574286 - polarizability tensor 5.018067 4.875224 1.088491 1.811907 4.579786 0.228246 1.487331 1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 0.002957 -0.007603 - conjugated induced dipole -0.011858 -0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.874126 -4.209593 14.489050 - polarizability tensor 9.182809 -1.751286 0.995508 -0.084237 1.828484 0.387734 2.027093 0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 0.007223 -0.008401 - conjugated induced dipole -0.024722 0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.835468 1.009690 17.914647 - polarizability tensor 1.671051 0.572015 1.296469 0.542823 2.162529 1.769890 1.031019 1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 -0.008201 -0.009724 - conjugated induced dipole -0.006616 -0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.936298 -2.599261 14.344652 - polarizability tensor 3.009105 -0.265453 0.164855 -0.392052 2.422902 0.078852 0.571863 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 0.006235 -0.000930 - conjugated induced dipole -0.002419 0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.508421 -1.263007 17.309798 - polarizability tensor 5.263037 -4.454329 1.663069 -4.279634 13.403258 0.812801 1.522053 0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 0.005736 -0.010955 - conjugated induced dipole -0.012784 0.003817 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.000195 -1.508207 14.730106 - polarizability tensor 13.654116 -2.638423 1.355104 -2.419214 4.125879 0.076557 2.653092 -0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 0.001460 -0.001599 - conjugated induced dipole 0.016161 0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.739029 -2.827742 13.731485 - polarizability tensor 2.960545 0.866099 0.523975 1.061800 5.117296 0.710667 0.733477 0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 0.008630 0.003112 - conjugated induced dipole 0.008989 0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.401296 0.637175 15.944915 - polarizability tensor 5.617929 -1.381554 4.877276 -1.251780 2.735770 -1.290944 3.659516 -1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 0.007600 -0.027393 - conjugated induced dipole -0.028333 0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.202943 -1.392605 13.598357 - polarizability tensor 12.949896 -2.646490 1.785363 -2.381876 4.179637 -0.329227 2.420663 -0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 0.005385 -0.002398 - conjugated induced dipole 0.029267 0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.006729 -3.349219 15.865524 - polarizability tensor 3.040417 1.393146 2.596746 0.925311 4.759664 3.665080 1.764101 3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 -0.001162 -0.007068 - conjugated induced dipole -0.007504 -0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.406423 -0.880236 16.610589 - polarizability tensor 4.688607 -4.661428 1.698768 -4.460102 13.263283 0.923066 0.789241 0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 0.004500 -0.010285 - conjugated induced dipole -0.010329 0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.751820 2.848022 14.054933 - polarizability tensor 2.586920 -0.528103 -0.018359 -0.362647 2.294262 -0.043707 0.109841 -0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 -0.015807 0.002368 - conjugated induced dipole 0.007606 -0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.363944 -3.842595 20.496273 - polarizability tensor 2.625149 -0.213208 0.424935 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 -0.004775 -0.016411 - conjugated induced dipole 0.000061 -0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.009546 3.797665 20.821732 - polarizability tensor 2.080856 0.280706 0.149350 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 -0.016467 -0.014861 - conjugated induced dipole -0.000106 -0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.216721 -4.529720 12.633279 - polarizability tensor 8.609786 3.161439 4.330873 3.390210 5.869745 2.969762 2.433189 1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 0.011418 0.033335 - conjugated induced dipole 0.014981 0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.644333 -5.450006 15.114694 - polarizability tensor 5.800146 -0.752295 1.186095 0.172145 7.005037 0.548345 0.964192 0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 0.041713 -0.001546 - conjugated induced dipole -0.005860 0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.768589 -6.396649 13.838054 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321947 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 0.016593 -0.000811 - conjugated induced dipole -0.007353 0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.080107 1.150091 13.875466 - polarizability tensor 3.548724 -1.577098 0.269188 -2.005619 4.318439 0.319351 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020829 -0.022725 0.000901 - conjugated induced dipole 0.022286 -0.021510 -0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.440947 -2.944464 19.188399 - polarizability tensor 5.713598 -1.433755 3.432521 -2.871854 2.858065 -3.181668 3.126669 -2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 0.011888 -0.014683 - conjugated induced dipole -0.014358 0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.692591 1.946686 15.240704 - polarizability tensor 6.533271 0.444461 1.547291 -1.225663 5.733017 0.256666 1.271658 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 0.013065 -0.031206 - conjugated induced dipole -0.032768 0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.737515 -3.218964 19.832198 - polarizability tensor 6.707222 -2.929001 4.115173 -3.681834 2.332214 -2.837643 2.110817 -1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 0.017077 -0.022943 - conjugated induced dipole -0.015224 0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.338154 2.255168 20.030403 - polarizability tensor 1.169669 1.724724 0.923944 2.191901 7.141826 4.969366 0.687890 2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 -0.038168 -0.020381 - conjugated induced dipole -0.010164 -0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.496254 1.596783 14.558771 - polarizability tensor 5.399130 -5.564497 0.213557 -4.017191 5.082742 0.297191 1.393778 -0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046956 -0.039177 0.007441 - conjugated induced dipole 0.039935 -0.045844 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.712111 1.357463 13.993228 - polarizability tensor 10.702596 1.789313 3.005774 -0.514549 5.742470 -3.210321 2.108866 -0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 0.015625 -0.045166 - conjugated induced dipole -0.061942 -0.008873 -0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.970218 -4.288727 13.895660 - polarizability tensor 8.115953 0.753025 -0.167711 1.550833 6.978558 4.365403 0.764813 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 0.009874 -0.021011 - conjugated induced dipole -0.018333 0.019256 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.564896 -4.722881 14.195882 - polarizability tensor 9.556643 3.699452 -1.931269 3.986424 6.261110 -1.285638 0.992072 0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 -0.025280 0.002707 - conjugated induced dipole -0.021953 -0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.278058 -4.885970 14.575810 - polarizability tensor 4.541347 2.067477 1.036870 1.580945 6.187413 0.395977 1.497097 1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 0.021657 0.001455 - conjugated induced dipole -0.001239 0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.072943 2.579266 19.445527 - polarizability tensor 2.204024 0.653489 0.327501 1.701252 5.540979 4.544585 0.766862 3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 -0.029042 -0.022595 - conjugated induced dipole -0.008031 -0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 7 - Polarizability point coords -3.243914 1.601374 20.823910 - polarizability tensor 4.528424 -1.917551 0.356759 -1.444128 6.305472 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000468 -0.000326 0.000669 - induced dipole -0.012761 0.031001 0.001118 - conjugated induced dipole -0.007779 0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.888016 2.488907 15.199334 - polarizability tensor 3.614271 1.113333 2.917217 0.029793 1.821479 -0.641372 2.940226 0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000788 0.000385 0.004234 - induced dipole 0.011763 -0.007583 0.014002 - conjugated induced dipole 0.015109 -0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.553962 8.150567 20.781206 - polarizability tensor 5.676904 5.144008 -0.727141 3.339388 4.987137 0.427750 -0.708035 0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000341 0.000086 0.000352 - induced dipole -0.063351 -0.043904 0.005722 - conjugated induced dipole -0.055846 -0.056805 0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.948000 9.413326 14.975861 - polarizability tensor 2.014659 -1.411522 2.754673 -0.096191 2.864917 -1.368381 1.742510 -2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000803 0.001443 0.000523 - induced dipole 0.017229 -0.015360 0.023246 - conjugated induced dipole 0.008731 -0.020509 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.139393 3.698570 16.562186 - polarizability tensor 2.644773 0.420648 2.214495 0.536299 1.326286 0.648852 1.549497 0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000055 0.000795 0.002604 - induced dipole 0.008021 0.001430 0.006467 - conjugated induced dipole 0.006680 0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.322606 5.999425 20.418488 - polarizability tensor 2.247828 1.783499 0.065363 1.149026 2.379896 -0.043699 0.251241 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000433 0.000005 0.000485 - induced dipole -0.009459 -0.003713 0.000482 - conjugated induced dipole -0.009703 -0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.307592 1.203200 20.649084 - polarizability tensor 5.239487 1.239561 0.807464 0.101560 1.234380 -0.089842 1.195631 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000479 -0.000377 0.000450 - induced dipole 0.004462 0.001746 0.000735 - conjugated induced dipole 0.002995 0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.026065 6.240882 19.799218 - polarizability tensor 5.018067 -4.875224 1.088491 -1.811907 4.579786 -0.228246 1.487331 -1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000358 0.000227 0.000897 - induced dipole 0.004785 0.002957 0.007603 - conjugated induced dipole 0.011858 -0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.654509 2.176642 19.884454 - polarizability tensor 9.182809 1.751286 0.995508 0.084237 1.828484 -0.387734 2.027093 -0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000446 -0.000239 0.001138 - induced dipole 0.026692 0.007223 0.008401 - conjugated induced dipole 0.024722 0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.615851 7.395925 16.458857 - polarizability tensor 1.671051 -0.572015 1.296469 -0.542823 2.162529 -1.769890 1.031019 -1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000157 0.001141 0.001241 - induced dipole 0.007350 -0.008201 0.009724 - conjugated induced dipole 0.006616 -0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.716681 3.786974 20.028852 - polarizability tensor 3.009105 0.265453 0.164855 0.392052 2.422902 -0.078852 0.571863 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000480 -0.000080 0.000931 - induced dipole -0.000502 0.006235 0.000930 - conjugated induced dipole 0.002419 0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.288804 5.123228 17.063706 - polarizability tensor 5.263037 4.454329 1.663069 4.279634 13.403258 -0.812801 1.522053 -0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000210 0.000787 0.001796 - induced dipole 0.013634 0.005736 0.010955 - conjugated induced dipole 0.012784 0.003817 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.780578 4.878028 19.643398 - polarizability tensor 13.654116 2.638423 1.355104 2.419214 4.125879 -0.076557 2.653092 0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000539 -0.000023 0.000773 - induced dipole -0.021085 0.001460 0.001599 - conjugated induced dipole -0.016161 0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.041354 3.558492 20.642019 - polarizability tensor 2.960545 -0.866099 0.523975 -1.061800 5.117296 -0.710667 0.733477 -0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000460 -0.000180 0.000472 - induced dipole -0.009130 0.008630 -0.003112 - conjugated induced dipole -0.008989 0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.181679 7.023410 18.428589 - polarizability tensor 5.617929 1.381554 4.877276 1.251780 2.735770 1.290944 3.659516 1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000172 0.000579 0.001111 - induced dipole 0.033173 0.007600 0.027393 - conjugated induced dipole 0.028333 0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.983327 4.993630 20.775147 - polarizability tensor 12.949896 2.646490 1.785363 2.381876 4.179637 0.329227 2.420663 0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000420 -0.000013 0.000656 - induced dipole -0.032580 0.005385 0.002398 - conjugated induced dipole -0.029267 0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.787112 3.037016 18.507980 - polarizability tensor 3.040417 -1.393146 2.596746 -0.925311 4.759664 -3.665080 1.764101 -3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000258 0.000092 0.001743 - induced dipole 0.007992 -0.001162 0.007068 - conjugated induced dipole 0.007504 -0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.186806 5.505999 17.762915 - polarizability tensor 4.688607 4.661428 1.698768 4.460102 13.263283 -0.923066 0.789241 -0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000064 0.000730 0.001523 - induced dipole 0.013189 0.004500 0.010285 - conjugated induced dipole 0.010329 0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.971437 9.234257 20.318571 - polarizability tensor 2.586920 0.528103 -0.018359 0.362647 2.294262 0.043707 0.109841 0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000319 0.000096 0.000272 - induced dipole -0.008720 -0.015807 -0.002368 - conjugated induced dipole -0.007606 -0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.144327 2.543640 13.877231 - polarizability tensor 2.625149 0.213208 0.424935 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.002468 -0.000118 0.005909 - induced dipole 0.001749 -0.004775 0.016411 - conjugated induced dipole -0.000061 -0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.789929 10.183899 13.551772 - polarizability tensor 2.080856 -0.280706 0.149350 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.001548 0.001078 -0.000830 - induced dipole 0.000865 -0.016467 0.014861 - conjugated induced dipole 0.000106 -0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.436338 1.856515 21.740225 - polarizability tensor 8.609786 -3.161439 4.330873 -3.390210 5.869745 -2.969762 2.433189 -1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000361 -0.000244 0.000310 - induced dipole -0.025817 0.011418 -0.033335 - conjugated induced dipole -0.014981 0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.424716 0.936229 19.258810 - polarizability tensor 5.800146 0.752295 1.186095 -0.172145 7.005037 -0.548345 0.964192 -0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000380 -0.000421 0.001429 - induced dipole 0.010155 0.041713 0.001546 - conjugated induced dipole 0.005860 0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.548972 -0.010414 20.535450 - polarizability tensor 2.238895 0.092051 0.189597 0.321947 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000498 -0.000491 0.000458 - induced dipole 0.006347 0.016593 0.000811 - conjugated induced dipole 0.007353 0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.299723 7.536326 20.498038 - polarizability tensor 3.548724 1.577098 0.269188 2.005619 4.318439 -0.319351 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000363 0.000044 0.000329 - induced dipole -0.020829 -0.022725 -0.000901 - conjugated induced dipole -0.022286 -0.021510 0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.221331 3.441771 15.185105 - polarizability tensor 5.713598 1.433755 3.432521 2.871854 2.858065 3.181668 3.126669 2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000748 0.001066 0.003925 - induced dipole 0.017774 0.011888 0.014683 - conjugated induced dipole 0.014358 0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.472974 8.332921 19.132800 - polarizability tensor 6.533271 -0.444461 1.547291 1.225663 5.733017 -0.256666 1.271658 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000245 0.000455 0.000809 - induced dipole 0.031823 0.013065 0.031206 - conjugated induced dipole 0.032768 0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.517899 3.167271 14.541306 - polarizability tensor 6.707222 2.929001 4.115173 3.681834 2.332214 2.837643 2.110817 1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000497 0.001291 0.005160 - induced dipole 0.028024 0.017077 0.022943 - conjugated induced dipole 0.015224 0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.118537 8.641403 14.343101 - polarizability tensor 1.169669 -1.724724 0.923944 -2.191901 7.141826 -4.969366 0.687890 -2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.001408 0.001887 0.000627 - induced dipole 0.009280 -0.038168 0.020381 - conjugated induced dipole 0.010164 -0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.715871 7.983018 19.814733 - polarizability tensor 5.399130 5.564497 0.213557 4.017191 5.082742 -0.297191 1.393778 0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000402 0.000094 0.000379 - induced dipole -0.046956 -0.039177 -0.007441 - conjugated induced dipole -0.039935 -0.045844 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.492494 7.743698 20.380276 - polarizability tensor 10.702596 -1.789313 3.005774 0.514549 5.742470 3.210321 2.108866 0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000173 0.000347 0.000751 - induced dipole 0.068050 0.015625 0.045166 - conjugated induced dipole 0.061942 -0.008873 0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.750601 2.097508 20.477844 - polarizability tensor 8.115953 -0.753025 -0.167711 -1.550833 6.978558 -4.365403 0.764813 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000212 -0.000152 0.001146 - induced dipole 0.016570 0.009874 0.021011 - conjugated induced dipole 0.018333 0.019256 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.784513 1.663354 20.177622 - polarizability tensor 9.556643 -3.699452 -1.931269 -3.986424 6.261110 1.285638 0.992072 -0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000460 -0.000345 0.000316 - induced dipole 0.024576 -0.025280 -0.002707 - conjugated induced dipole 0.021953 -0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.058441 1.500265 19.797694 - polarizability tensor 4.541347 -2.067477 1.036870 -1.580945 6.187413 -0.395977 1.497097 -1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000598 -0.000432 0.000767 - induced dipole -0.002879 0.021657 -0.001455 - conjugated induced dipole 0.001239 0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.853326 8.965501 14.927977 - polarizability tensor 2.204024 -0.653489 0.327501 -1.701252 5.540979 -4.544585 0.766862 -3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000855 0.001484 0.000105 - induced dipole 0.003843 -0.029042 0.022595 - conjugated induced dipole 0.008031 -0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 8 - Polarizability point coords -11.016969 15.371730 8.571017 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000199 -0.000045 -0.000228 - induced dipole -0.000502 -0.006235 0.000930 - conjugated induced dipole 0.002419 -0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.521619 15.716937 3.727272 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000289 -0.000188 -0.000391 - induced dipole 0.017774 -0.011888 0.014683 - conjugated induced dipole 0.014358 -0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.746409 11.008067 9.323269 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.001254 0.003452 -0.000634 - induced dipole -0.063346 0.043899 0.005721 - conjugated induced dipole -0.055842 0.056799 0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.153618 10.193207 3.470142 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.001279 0.000237 -0.001147 - induced dipole 0.003843 0.029042 0.022595 - conjugated induced dipole 0.008031 0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.487096 13.652707 6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000114 0.000170 -0.000468 - induced dipole 0.013189 -0.004500 0.010285 - conjugated induced dipole 0.010329 -0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.358728 17.658439 8.339860 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000190 0.000143 -0.000168 - induced dipole -0.002879 -0.021657 -0.001455 - conjugated induced dipole 0.001239 -0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.515775 17.495348 8.719786 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000191 0.000352 -0.000143 - induced dipole 0.024576 0.025280 -0.002707 - conjugated induced dipole 0.021953 0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.326355 12.917822 8.341383 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000102 -0.000943 -0.000202 - induced dipole 0.004785 -0.002957 0.007603 - conjugated induced dipole 0.011858 0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.954796 16.982063 8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000127 0.000111 -0.000218 - induced dipole 0.026692 -0.007223 0.008401 - conjugated induced dipole 0.024722 -0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.439681 15.460137 5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000253 0.000013 -0.000379 - induced dipole 0.008021 -0.001430 0.006467 - conjugated induced dipole 0.006680 -0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.977683 13.159277 8.960653 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.001085 0.000695 -0.000337 - induced dipole -0.009459 0.003713 0.000482 - conjugated induced dipole -0.009703 0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.916141 11.762781 5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000190 0.000207 -0.000411 - induced dipole 0.007350 0.008201 0.009724 - conjugated induced dipole 0.006616 0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.283615 14.165073 9.317312 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000575 -0.000148 -0.000308 - induced dipole -0.032580 -0.005385 0.002398 - conjugated induced dipole -0.029267 -0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.341642 15.600210 9.184184 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000395 0.000375 -0.000194 - induced dipole -0.009130 -0.008630 -0.003112 - conjugated induced dipole -0.008989 -0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.087400 16.121690 7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000142 0.000113 -0.000297 - induced dipole 0.007992 0.001162 0.007068 - conjugated induced dipole 0.007504 0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.080867 14.280676 8.185563 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000587 -0.000107 -0.000193 - induced dipole -0.021085 -0.001460 0.001599 - conjugated induced dipole -0.016161 -0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.481969 12.135296 6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000505 -0.000165 -0.000232 - induced dipole 0.033173 -0.007600 0.027393 - conjugated induced dipole 0.028333 -0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.589093 14.035478 5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000153 0.000072 -0.000331 - induced dipole 0.013634 -0.005736 0.010955 - conjugated induced dipole 0.012784 -0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.328854 9.924444 8.860735 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.001225 0.004294 -0.001188 - induced dipole -0.008720 0.015807 -0.002368 - conjugated induced dipole -0.007606 0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.444616 16.615069 2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000231 -0.000263 -0.000288 - induced dipole 0.001749 0.004775 0.016411 - conjugated induced dipole -0.000061 0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.090221 8.974808 2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.002878 -0.000193 -0.001711 - induced dipole 0.000865 0.016467 0.014862 - conjugated induced dipole 0.000106 0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.607879 17.955503 9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000194 0.000234 -0.000146 - induced dipole 0.004462 -0.001746 0.000735 - conjugated induced dipole 0.002994 -0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.849258 19.169118 9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000148 0.000185 -0.000135 - induced dipole 0.006347 -0.016593 0.000811 - conjugated induced dipole 0.007353 -0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.050888 17.061198 9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000118 0.000176 -0.000244 - induced dipole 0.016570 -0.009874 0.021011 - conjugated induced dipole 0.018333 -0.019255 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.584314 11.175774 8.356857 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.001081 0.002759 -0.000908 - induced dipole -0.046958 0.039179 -0.007441 - conjugated induced dipole -0.039937 0.045846 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.818187 15.991437 3.083473 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000294 -0.000183 -0.000339 - induced dipole 0.028024 -0.017077 0.022943 - conjugated induced dipole 0.015224 -0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.792784 11.415007 8.922441 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.001815 -0.000645 -0.000730 - induced dipole 0.068050 -0.015625 0.045166 - conjugated induced dipole 0.061942 0.008873 0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.188304 16.669800 3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000248 -0.000133 -0.000320 - induced dipole 0.011763 0.007583 0.014002 - conjugated induced dipole 0.015109 0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.248292 9.745380 3.518027 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.001145 0.000900 -0.000781 - induced dipole 0.017229 0.015360 0.023246 - conjugated induced dipole 0.008731 0.020510 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.000590 11.622353 9.040343 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000463 0.002448 -0.000518 - induced dipole -0.020830 0.022726 -0.000901 - conjugated induced dipole -0.022286 0.021511 0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.773264 10.825784 7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.002098 -0.002687 0.000818 - induced dipole 0.031823 -0.013065 0.031206 - conjugated induced dipole 0.032768 -0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.725003 18.222477 7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000141 0.000113 -0.000210 - induced dipole 0.010155 -0.041713 0.001546 - conjugated induced dipole 0.005860 -0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.863948 17.302188 10.282389 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000195 0.000371 -0.000122 - induced dipole -0.025817 -0.011418 -0.033335 - conjugated induced dipole -0.014981 -0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.544201 17.557330 9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000177 0.000158 -0.000174 - induced dipole -0.012761 -0.031001 0.001118 - conjugated induced dipole -0.007779 -0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.418827 10.517303 2.885267 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.001162 0.000283 -0.000803 - induced dipole 0.009280 0.038168 0.020381 - conjugated induced dipole 0.010164 0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 9 - Polarizability point coords -4.363992 8.985495 2.886817 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000004 0.000027 -0.000028 - induced dipole 0.000502 -0.006235 -0.000930 - conjugated induced dipole -0.002419 -0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.140658 9.330702 7.730563 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000023 0.000009 -0.000007 - induced dipole -0.017774 -0.011888 -0.014683 - conjugated induced dipole -0.014358 -0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.634552 4.621832 2.134565 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000040 0.000072 -0.000114 - induced dipole 0.063346 0.043899 -0.005721 - conjugated induced dipole 0.055842 0.056799 -0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.772657 3.806972 7.987693 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000079 -0.000025 -0.000022 - induced dipole -0.003843 0.029042 -0.022595 - conjugated induced dipole -0.008031 0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.106135 7.266472 5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000034 0.000014 -0.000028 - induced dipole -0.013189 -0.004500 -0.010285 - conjugated induced dipole -0.010329 -0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.022233 11.272204 3.117975 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000005 0.000023 -0.000017 - induced dipole 0.002879 -0.021657 0.001455 - conjugated induced dipole -0.001239 -0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.865186 11.109113 2.738049 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000015 0.000020 -0.000001 - induced dipole -0.024576 0.025280 0.002707 - conjugated induced dipole -0.021953 0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.054606 6.531587 3.116452 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000020 0.000028 -0.000044 - induced dipole -0.004785 -0.002957 -0.007603 - conjugated induced dipole -0.011858 0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.426164 10.595828 3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000007 0.000019 -0.000020 - induced dipole -0.026692 -0.007223 -0.008401 - conjugated induced dipole -0.024722 -0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.058720 9.073902 6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000027 0.000016 -0.000016 - induced dipole -0.008021 -0.001430 -0.006467 - conjugated induced dipole -0.006680 -0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.403278 6.773043 2.497182 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000008 0.000070 -0.000041 - induced dipole 0.009459 0.003713 -0.000482 - conjugated induced dipole 0.009703 0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.464819 5.376546 6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000070 0.000012 -0.000045 - induced dipole -0.007350 0.008201 -0.009724 - conjugated induced dipole -0.006616 0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.097346 7.778838 2.140523 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000004 0.000035 -0.000032 - induced dipole 0.032580 -0.005385 -0.002398 - conjugated induced dipole 0.029267 -0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.039319 9.213975 2.273651 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000010 0.000036 -0.000013 - induced dipole 0.009130 -0.008630 0.003112 - conjugated induced dipole 0.008989 -0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.293561 9.735455 4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000018 0.000017 -0.000020 - induced dipole -0.007992 0.001162 -0.007068 - conjugated induced dipole -0.007504 0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.300094 7.894441 3.272272 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000002 0.000046 -0.000031 - induced dipole 0.021085 -0.001460 -0.001599 - conjugated induced dipole 0.016161 -0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.898992 5.749061 4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000041 0.000019 -0.000050 - induced dipole -0.033173 -0.007600 -0.027393 - conjugated induced dipole -0.028333 -0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.791868 7.649243 5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000038 0.000025 -0.000033 - induced dipole -0.013634 -0.005736 -0.010955 - conjugated induced dipole -0.012784 -0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.052107 3.538209 2.597099 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000073 0.000079 -0.000194 - induced dipole 0.008720 0.015807 0.002368 - conjugated induced dipole 0.007606 0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.063655 10.228834 9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000018 0.000008 -0.000003 - induced dipole -0.001749 0.004775 -0.016411 - conjugated induced dipole 0.000061 0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.709261 2.588573 9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000082 -0.000060 -0.000010 - induced dipole -0.000865 0.016467 -0.014862 - conjugated induced dipole -0.000106 0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.773082 11.569268 2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000009 0.000019 -0.000011 - induced dipole -0.004462 -0.001746 -0.000735 - conjugated induced dipole -0.002994 -0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.531703 12.782883 2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000006 0.000015 -0.000011 - induced dipole -0.006347 -0.016593 -0.000811 - conjugated induced dipole -0.007353 -0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.330072 10.674963 2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000010 0.000012 -0.000015 - induced dipole -0.016570 -0.009874 -0.021011 - conjugated induced dipole -0.018333 -0.019255 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.796647 4.789539 3.100978 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000056 0.000114 -0.000125 - induced dipole 0.046958 0.039179 0.007441 - conjugated induced dipole 0.039937 0.045846 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.437226 9.605202 8.374362 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000025 0.000013 -0.000006 - induced dipole -0.028024 -0.017077 -0.022943 - conjugated induced dipole -0.015224 -0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.588177 5.028772 2.535393 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000031 0.000007 -0.000044 - induced dipole -0.068050 -0.015625 -0.045166 - conjugated induced dipole -0.061942 0.008873 -0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.807343 10.283566 7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000020 0.000011 -0.000007 - induced dipole -0.011763 0.007583 -0.014002 - conjugated induced dipole -0.015109 0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.132669 3.359146 7.939807 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000114 -0.000039 -0.000035 - induced dipole -0.017229 0.015360 -0.023246 - conjugated induced dipole -0.008731 0.020510 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.380371 5.236118 2.417492 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000036 0.000103 -0.000109 - induced dipole 0.020830 0.022726 0.000901 - conjugated induced dipole 0.022286 0.021511 -0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.607697 4.439549 3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000046 0.000023 -0.000070 - induced dipole -0.031823 -0.013065 -0.031206 - conjugated induced dipole -0.032768 -0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.655958 11.836242 3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000009 0.000015 -0.000014 - induced dipole -0.010155 -0.041713 -0.001546 - conjugated induced dipole -0.005860 -0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.517013 10.915953 1.175445 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000010 0.000020 -0.000011 - induced dipole 0.025817 -0.011418 0.033335 - conjugated induced dipole 0.014981 -0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.836760 11.171095 2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000002 0.000019 -0.000017 - induced dipole 0.012761 -0.031001 -0.001118 - conjugated induced dipole 0.007779 -0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.037866 4.131068 8.572568 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000112 -0.000013 -0.000024 - induced dipole -0.009280 0.038168 -0.020381 - conjugated induced dipole -0.010164 0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 10 - Polarizability point coords 10.544201 7.987610 -9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444129 6.305470 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000024 -0.000037 -0.000076 - induced dipole 0.012761 0.031001 -0.001118 - conjugated induced dipole 0.007779 0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.188304 8.875139 -3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821479 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000039 -0.000025 -0.000045 - induced dipole -0.011763 -0.007583 -0.014002 - conjugated induced dipole -0.015109 -0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.746327 14.536805 -9.323370 - polarizability tensor 5.676900 -5.144008 -0.727143 -3.339388 4.987141 -0.427749 -0.708036 -0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000016 0.000005 -0.000104 - induced dipole 0.063351 -0.043904 -0.005722 - conjugated induced dipole 0.055846 -0.056805 -0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.248291 15.799559 -3.518027 - polarizability tensor 2.014660 1.411523 2.754674 0.096191 2.864916 1.368380 1.742511 2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000049 0.000006 -0.000056 - induced dipole -0.017229 -0.015360 -0.023246 - conjugated induced dipole -0.008731 -0.020509 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.439681 10.084803 -5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000041 -0.000022 -0.000053 - induced dipole -0.008021 0.001430 -0.006467 - conjugated induced dipole -0.006680 0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.977683 12.385662 -8.960653 - polarizability tensor 2.247827 -1.783499 0.065362 -1.149026 2.379898 0.043699 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000026 -0.000008 -0.000106 - induced dipole 0.009459 -0.003713 -0.000482 - conjugated induced dipole 0.009703 -0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.607879 7.589437 -9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000025 -0.000043 -0.000092 - induced dipole -0.004462 0.001746 -0.000735 - conjugated induced dipole -0.002995 0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.326355 12.627117 -8.341383 - polarizability tensor 5.018070 4.875224 1.088491 1.811907 4.579783 0.228245 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000033 -0.000010 -0.000075 - induced dipole -0.004785 0.002957 -0.007603 - conjugated induced dipole -0.011858 -0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.954796 8.562876 -8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000029 -0.000031 -0.000065 - induced dipole -0.026692 0.007223 -0.008401 - conjugated induced dipole -0.024722 0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.916141 13.782158 -5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000045 -0.000004 -0.000060 - induced dipole -0.007350 -0.008201 -0.009724 - conjugated induced dipole -0.006616 -0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.016969 10.173209 -8.571017 - polarizability tensor 3.009104 -0.265453 0.164854 -0.392052 2.422903 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000032 -0.000024 -0.000078 - induced dipole 0.000502 0.006235 -0.000930 - conjugated induced dipole -0.002419 0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.589093 11.509461 -5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522052 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000044 -0.000015 -0.000063 - induced dipole -0.013634 0.005736 -0.010955 - conjugated induced dipole -0.012784 0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.080866 11.264264 -8.185563 - polarizability tensor 13.654114 -2.638427 1.355101 -2.419218 4.125882 0.076557 2.653090 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000036 -0.000016 -0.000095 - induced dipole 0.021085 0.001460 -0.001599 - conjugated induced dipole 0.016161 0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.341642 9.944730 -9.184184 - polarizability tensor 2.960546 0.866100 0.523975 1.061801 5.117295 0.710667 0.733477 0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000027 -0.000026 -0.000105 - induced dipole 0.009130 0.008630 0.003112 - conjugated induced dipole 0.008989 0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.481969 13.409644 -6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000038 -0.000007 -0.000065 - induced dipole -0.033173 0.007600 -0.027393 - conjugated induced dipole -0.028333 0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.283615 11.379867 -9.317312 - polarizability tensor 12.949895 -2.646494 1.785361 -2.381880 4.179640 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000027 -0.000017 -0.000087 - induced dipole 0.032580 0.005385 -0.002398 - conjugated induced dipole 0.029267 0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.087400 9.423250 -7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000033 -0.000025 -0.000057 - induced dipole -0.007992 -0.001162 -0.007068 - conjugated induced dipole -0.007504 -0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.487096 11.892233 -6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460098 13.263287 0.923067 0.789240 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000038 -0.000014 -0.000056 - induced dipole -0.013189 0.004500 -0.010285 - conjugated induced dipole -0.010329 0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.328854 15.620496 -8.860735 - polarizability tensor 2.586919 -0.528104 -0.018359 -0.362648 2.294263 -0.043707 0.109841 -0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000011 0.000015 -0.000112 - induced dipole 0.008720 -0.015807 0.002368 - conjugated induced dipole 0.007606 -0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.444616 8.929871 -2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000040 -0.000024 -0.000041 - induced dipole -0.001749 -0.004775 -0.016411 - conjugated induced dipole 0.000061 -0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.090221 16.570132 -2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000051 0.000009 -0.000051 - induced dipole -0.000865 -0.016467 -0.014861 - conjugated induced dipole -0.000106 -0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.863949 8.242753 -10.282389 - polarizability tensor 8.609790 3.161438 4.330874 3.390209 5.869742 2.969759 2.433190 1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000015 -0.000039 -0.000099 - induced dipole 0.025817 0.011418 0.033335 - conjugated induced dipole 0.014981 0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.725003 7.322463 -7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000027 -0.000034 -0.000055 - induced dipole -0.010155 0.041713 -0.001546 - conjugated induced dipole -0.005860 0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.849258 6.375822 -9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000023 -0.000049 -0.000079 - induced dipole -0.006347 0.016593 -0.000811 - conjugated induced dipole -0.007353 0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.000566 13.922565 -9.040202 - polarizability tensor 3.548722 -1.577098 0.269187 -2.005619 4.318440 0.319352 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000017 0.000005 -0.000115 - induced dipole 0.020829 -0.022725 0.000901 - conjugated induced dipole 0.022286 -0.021510 -0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.521619 9.828003 -3.727272 - polarizability tensor 5.713597 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000040 -0.000021 -0.000044 - induced dipole -0.017774 0.011888 -0.014683 - conjugated induced dipole -0.014358 0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.773264 14.719156 -7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225663 5.733018 0.256666 1.271657 0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000034 -0.000000 -0.000071 - induced dipole -0.031823 0.013065 -0.031206 - conjugated induced dipole -0.032768 0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.818187 9.553503 -3.083473 - polarizability tensor 6.707221 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000045 -0.000023 -0.000048 - induced dipole -0.028024 0.017077 -0.022943 - conjugated induced dipole -0.015224 0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.418828 15.027636 -2.885267 - polarizability tensor 1.169671 1.724727 0.923947 2.191905 7.141823 4.969365 0.687892 2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000053 0.000003 -0.000057 - induced dipole -0.009280 -0.038168 -0.020381 - conjugated induced dipole -0.010164 -0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.584419 14.369256 -8.356897 - polarizability tensor 5.399126 -5.564498 0.213556 -4.017191 5.082747 0.297192 1.393777 -0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000023 0.000009 -0.000114 - induced dipole 0.046956 -0.039177 0.007441 - conjugated induced dipole 0.039935 -0.045844 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.792784 14.129933 -8.922442 - polarizability tensor 10.702598 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000027 -0.000006 -0.000062 - induced dipole -0.068050 0.015625 -0.045166 - conjugated induced dipole -0.061942 -0.008873 -0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.050888 8.483741 -9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000022 -0.000027 -0.000052 - induced dipole -0.016570 0.009874 -0.021011 - conjugated induced dipole -0.018333 0.019256 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.515774 8.049592 -8.719786 - polarizability tensor 9.556647 3.699450 -1.931270 3.986422 6.261107 -1.285638 0.992071 0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000030 -0.000043 -0.000119 - induced dipole -0.024576 -0.025280 0.002707 - conjugated induced dipole -0.021953 -0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.358728 7.886501 -8.339860 - polarizability tensor 4.541349 2.067478 1.036870 1.580946 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000032 -0.000039 -0.000083 - induced dipole 0.002879 0.021657 0.001455 - conjugated induced dipole -0.001239 0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.153617 15.351734 -3.470143 - polarizability tensor 2.204025 0.653491 0.327503 1.701255 5.540977 4.544585 0.766864 3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000047 0.000002 -0.000053 - induced dipole -0.003843 -0.029042 -0.022595 - conjugated induced dipole -0.008031 -0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 11 - Polarizability point coords 4.836760 14.373845 -2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444129 6.305470 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 0.031001 0.001118 - conjugated induced dipole -0.007779 0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.807344 15.261374 -7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821479 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 -0.007583 0.014002 - conjugated induced dipole 0.015109 -0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.634633 20.923040 -2.134465 - polarizability tensor 5.676900 5.144008 -0.727143 3.339388 4.987141 0.427749 -0.708036 0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063351 -0.043904 0.005722 - conjugated induced dipole -0.055846 -0.056805 0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.132670 22.185794 -7.939808 - polarizability tensor 2.014660 -1.411523 2.754674 -0.096191 2.864916 -1.368380 1.742511 -2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 -0.015360 0.023246 - conjugated induced dipole 0.008731 -0.020509 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.058720 16.471038 -6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 0.001430 0.006467 - conjugated induced dipole 0.006680 0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.403278 18.771897 -2.497182 - polarizability tensor 2.247827 1.783499 0.065362 1.149026 2.379898 -0.043699 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 -0.003713 0.000482 - conjugated induced dipole -0.009703 -0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.773082 13.975671 -2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 0.001746 0.000735 - conjugated induced dipole 0.002995 0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.054606 19.013352 -3.116452 - polarizability tensor 5.018070 -4.875224 1.088491 -1.811907 4.579783 -0.228245 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 0.002957 0.007603 - conjugated induced dipole 0.011858 -0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.426164 14.949111 -3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 0.007223 0.008401 - conjugated induced dipole 0.024722 0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.464819 20.168393 -6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 -0.008201 0.009724 - conjugated induced dipole 0.006616 -0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.363992 16.559444 -2.886817 - polarizability tensor 3.009104 0.265453 0.164854 0.392052 2.422903 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 0.006235 0.000930 - conjugated induced dipole 0.002419 0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.791868 17.895696 -5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522052 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 0.005736 0.010955 - conjugated induced dipole 0.012784 0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.300094 17.650499 -3.272272 - polarizability tensor 13.654114 2.638427 1.355101 2.419218 4.125882 -0.076557 2.653090 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 0.001460 0.001599 - conjugated induced dipole -0.016161 0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.039319 16.330965 -2.273651 - polarizability tensor 2.960546 -0.866100 0.523975 -1.061801 5.117295 -0.710667 0.733477 -0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 0.008630 -0.003112 - conjugated induced dipole -0.008989 0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.898992 19.795879 -4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 0.007600 0.027393 - conjugated induced dipole 0.028333 0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.097346 17.766102 -2.140523 - polarizability tensor 12.949895 2.646494 1.785361 2.381880 4.179640 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 0.005385 0.002398 - conjugated induced dipole -0.029267 0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.293561 15.809485 -4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 -0.001162 0.007068 - conjugated induced dipole 0.007504 -0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.106135 18.278468 -5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460098 13.263287 -0.923067 0.789240 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 0.004500 0.010285 - conjugated induced dipole 0.010329 0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.052107 22.006731 -2.597100 - polarizability tensor 2.586919 0.528104 -0.018359 0.362648 2.294263 0.043707 0.109841 0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 -0.015807 -0.002368 - conjugated induced dipole -0.007606 -0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.063655 15.316106 -9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 -0.004775 0.016411 - conjugated induced dipole -0.000061 -0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.709261 22.956367 -9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 -0.016467 0.014861 - conjugated induced dipole 0.000106 -0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.517012 14.628988 -1.175445 - polarizability tensor 8.609790 -3.161438 4.330874 -3.390209 5.869742 -2.969759 2.433190 -1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 0.011418 -0.033335 - conjugated induced dipole -0.014981 0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.655958 13.708698 -3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 0.041713 0.001546 - conjugated induced dipole 0.005860 0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.531703 12.762057 -2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 0.016593 0.000811 - conjugated induced dipole 0.007353 0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.380395 20.308800 -2.417633 - polarizability tensor 3.548722 1.577098 0.269187 2.005619 4.318440 -0.319352 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020829 -0.022725 -0.000901 - conjugated induced dipole -0.022286 -0.021510 0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.140658 16.214238 -7.730563 - polarizability tensor 5.713597 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 0.011888 0.014683 - conjugated induced dipole 0.014358 0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.607697 21.105391 -3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225663 5.733018 -0.256666 1.271657 -0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 0.013065 0.031206 - conjugated induced dipole 0.032768 0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.437226 15.939738 -8.374362 - polarizability tensor 6.707221 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 0.017077 0.022943 - conjugated induced dipole 0.015224 0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.037867 21.413871 -8.572568 - polarizability tensor 1.169671 -1.724727 0.923947 -2.191905 7.141823 -4.969365 0.687892 -2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 -0.038168 0.020381 - conjugated induced dipole 0.010164 -0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.796542 20.755491 -3.100937 - polarizability tensor 5.399126 5.564498 0.213556 4.017191 5.082747 -0.297192 1.393777 0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046956 -0.039177 -0.007441 - conjugated induced dipole -0.039935 -0.045844 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.588177 20.516167 -2.535393 - polarizability tensor 10.702598 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 0.015625 0.045166 - conjugated induced dipole 0.061942 -0.008873 0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.330072 14.869976 -2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 0.009874 0.021011 - conjugated induced dipole 0.018333 0.019256 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.865186 14.435827 -2.738048 - polarizability tensor 9.556647 -3.699450 -1.931270 -3.986422 6.261107 1.285638 0.992071 -0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 -0.025280 -0.002707 - conjugated induced dipole 0.021953 -0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.022233 14.272736 -3.117975 - polarizability tensor 4.541349 -2.067478 1.036870 -1.580946 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 0.021657 -0.001455 - conjugated induced dipole 0.001239 0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.772656 21.737969 -7.987692 - polarizability tensor 2.204025 -0.653491 0.327503 -1.701255 5.540977 -4.544585 0.766864 -3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 -0.029042 0.022595 - conjugated induced dipole 0.008031 -0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 12 - Polarizability point coords -19.097640 15.371730 31.486687 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 -0.006235 0.000930 - conjugated induced dipole 0.002419 -0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -26.602290 15.716937 26.642941 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 -0.011888 0.014683 - conjugated induced dipole 0.014358 -0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.827080 11.008067 32.238939 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063346 0.043899 0.005721 - conjugated induced dipole -0.055842 0.056799 0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.234289 10.193207 26.385811 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 0.029042 0.022595 - conjugated induced dipole 0.008031 0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.567767 13.652707 29.220750 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 -0.004500 0.010285 - conjugated induced dipole 0.010329 -0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.439399 17.658439 31.255529 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 -0.021657 -0.001455 - conjugated induced dipole 0.001239 -0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.596446 17.495348 31.635455 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 0.025280 -0.002707 - conjugated induced dipole 0.021953 0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.407026 12.917822 31.257052 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 -0.002957 0.007603 - conjugated induced dipole 0.011858 0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -21.035468 16.982063 31.342289 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 -0.007223 0.008401 - conjugated induced dipole 0.024722 -0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.520352 15.460137 28.020022 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 -0.001430 0.006467 - conjugated induced dipole 0.006680 -0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.058354 13.159277 31.876322 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 0.003713 0.000482 - conjugated induced dipole -0.009703 0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.996813 11.762781 27.916692 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 0.008201 0.009724 - conjugated induced dipole 0.006616 0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.364286 14.165073 32.232981 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 -0.005385 0.002398 - conjugated induced dipole -0.029267 -0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.422313 15.600210 32.099853 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 -0.008630 -0.003112 - conjugated induced dipole -0.008989 -0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.168071 16.121690 29.965816 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 0.001162 0.007068 - conjugated induced dipole 0.007504 0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.161538 14.280676 31.101232 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 -0.001460 0.001599 - conjugated induced dipole -0.016161 -0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -21.562640 12.135296 29.886424 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 -0.007600 0.027393 - conjugated induced dipole 0.028333 -0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.669764 14.035478 28.521541 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 -0.005736 0.010955 - conjugated induced dipole 0.012784 -0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.409525 9.924444 31.776405 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 0.015807 -0.002368 - conjugated induced dipole -0.007606 0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -27.525287 16.615069 25.335067 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 0.004775 0.016411 - conjugated induced dipole -0.000061 0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.170893 8.974808 25.009608 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 0.016467 0.014862 - conjugated induced dipole 0.000106 0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.688550 17.955503 32.106919 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 -0.001746 0.000735 - conjugated induced dipole 0.002994 -0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.929929 19.169118 31.993285 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 -0.016593 0.000811 - conjugated induced dipole 0.007353 -0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.131560 17.061198 31.935679 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 -0.009874 0.021011 - conjugated induced dipole 0.018333 -0.019255 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.664985 11.175774 31.272526 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046958 0.039179 -0.007441 - conjugated induced dipole -0.039937 0.045846 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -25.898858 15.991437 25.999142 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 -0.017077 0.022943 - conjugated induced dipole 0.015224 -0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -20.873455 11.415007 31.838111 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 -0.015625 0.045166 - conjugated induced dipole 0.061942 0.008873 0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -26.268976 16.669800 26.657170 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 0.007583 0.014002 - conjugated induced dipole 0.015109 0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.328963 9.745380 26.433697 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 0.015360 0.023246 - conjugated induced dipole 0.008731 0.020510 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.081261 11.622353 31.956012 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020830 0.022726 -0.000901 - conjugated induced dipole -0.022286 0.021511 0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.853935 10.825784 30.590634 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 -0.013065 0.031206 - conjugated induced dipole 0.032768 -0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.805674 18.222477 30.716646 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 -0.041713 0.001546 - conjugated induced dipole 0.005860 -0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.944619 17.302188 33.198059 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 -0.011418 -0.033335 - conjugated induced dipole -0.014981 -0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.624872 17.557330 32.281745 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 -0.031001 0.001118 - conjugated induced dipole -0.007779 -0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.499498 10.517303 25.800936 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 0.038168 0.020381 - conjugated induced dipole 0.010164 0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 13 - Polarizability point coords -12.444663 8.985495 25.802487 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000031 -0.000029 -0.000034 - induced dipole 0.000502 -0.006235 -0.000930 - conjugated induced dipole -0.002419 -0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.940013 9.330702 30.646232 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000002 -0.000024 -0.000046 - induced dipole -0.017774 -0.011888 -0.014683 - conjugated induced dipole -0.014358 -0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.715223 4.621832 25.050235 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000058 -0.000042 -0.000011 - induced dipole 0.063346 0.043899 -0.005721 - conjugated induced dipole 0.055842 0.056799 -0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.308014 3.806972 30.903362 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000015 -0.000043 -0.000044 - induced dipole -0.003843 0.029042 -0.022595 - conjugated induced dipole -0.008031 0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.974536 7.266472 28.068423 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000017 -0.000030 -0.000040 - induced dipole -0.013189 -0.004500 -0.010285 - conjugated induced dipole -0.010329 -0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.102904 11.272204 26.033644 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000030 -0.000026 -0.000038 - induced dipole 0.002879 -0.021657 0.001455 - conjugated induced dipole -0.001239 -0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.945857 11.109113 25.653718 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000044 -0.000032 -0.000032 - induced dipole -0.024576 0.025280 0.002707 - conjugated induced dipole -0.021953 0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.135277 6.531587 26.032121 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000033 -0.000034 -0.000031 - induced dipole -0.004785 -0.002957 -0.007603 - conjugated induced dipole -0.011858 0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.506836 10.595828 25.946884 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000022 -0.000024 -0.000036 - induced dipole -0.026692 -0.007223 -0.008401 - conjugated induced dipole -0.024722 -0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.021951 9.073902 29.269151 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000010 -0.000026 -0.000046 - induced dipole -0.008021 -0.001430 -0.006467 - conjugated induced dipole -0.006680 -0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.483949 6.773043 25.412851 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000050 -0.000039 -0.000023 - induced dipole 0.009459 0.003713 -0.000482 - conjugated induced dipole 0.009703 0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.545491 5.376546 29.372481 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000019 -0.000037 -0.000043 - induced dipole -0.007350 0.008201 -0.009724 - conjugated induced dipole -0.006616 0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.178017 7.778838 25.056192 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000038 -0.000033 -0.000027 - induced dipole 0.032580 -0.005385 -0.002398 - conjugated induced dipole 0.029267 -0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.119990 9.213975 25.189320 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000044 -0.000034 -0.000028 - induced dipole 0.009130 -0.008630 0.003112 - conjugated induced dipole 0.008989 -0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.374232 9.735455 27.323358 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000016 -0.000024 -0.000040 - induced dipole -0.007992 0.001162 -0.007068 - conjugated induced dipole -0.007504 0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.380765 7.894441 26.187941 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000040 -0.000035 -0.000034 - induced dipole 0.021085 -0.001460 -0.001599 - conjugated induced dipole 0.016161 -0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.979663 5.749061 27.402749 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000026 -0.000034 -0.000036 - induced dipole -0.033173 -0.007600 -0.027393 - conjugated induced dipole -0.028333 -0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.872539 7.649243 28.767632 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000018 -0.000031 -0.000045 - induced dipole -0.013634 -0.005736 -0.010955 - conjugated induced dipole -0.012784 -0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.132779 3.538209 25.512769 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000069 -0.000047 -0.000003 - induced dipole 0.008720 0.015807 0.002368 - conjugated induced dipole 0.007606 0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.017016 10.228834 31.954106 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000004 -0.000021 -0.000049 - induced dipole -0.001749 0.004775 -0.016411 - conjugated induced dipole 0.000061 0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.371411 2.588573 32.279566 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000015 -0.000051 -0.000046 - induced dipole -0.000865 0.016467 -0.014862 - conjugated induced dipole -0.000106 0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.853753 11.569268 25.182254 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000035 -0.000027 -0.000032 - induced dipole -0.004462 -0.001746 -0.000735 - conjugated induced dipole -0.002994 -0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.612374 12.782883 25.295888 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000029 -0.000023 -0.000034 - induced dipole -0.006347 -0.016593 -0.000811 - conjugated induced dipole -0.007353 -0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.410744 10.674963 25.353494 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000017 -0.000021 -0.000032 - induced dipole -0.016570 -0.009874 -0.021011 - conjugated induced dipole -0.018333 -0.019255 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.877318 4.789539 26.016647 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000062 -0.000046 -0.000016 - induced dipole 0.046958 0.039179 0.007441 - conjugated induced dipole 0.039937 0.045846 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.643445 9.605202 31.290032 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000001 -0.000024 -0.000052 - induced dipole -0.028024 -0.017077 -0.022943 - conjugated induced dipole -0.015224 -0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.668848 5.028772 25.451063 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000030 -0.000032 -0.000025 - induced dipole -0.068050 -0.015625 -0.045166 - conjugated induced dipole -0.061942 0.008873 -0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.273328 10.283566 30.632003 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000001 -0.000022 -0.000048 - induced dipole -0.011763 0.007583 -0.014002 - conjugated induced dipole -0.015109 0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.213340 3.359146 30.855477 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000019 -0.000046 -0.000044 - induced dipole -0.017229 0.015360 -0.023246 - conjugated induced dipole -0.008731 0.020510 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.461042 5.236118 25.333161 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000062 -0.000044 -0.000012 - induced dipole 0.020830 0.022726 0.000901 - conjugated induced dipole 0.022286 0.021511 -0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.688368 4.439549 26.698539 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000035 -0.000038 -0.000030 - induced dipole -0.031823 -0.013065 -0.031206 - conjugated induced dipole -0.032768 -0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.736629 11.836242 26.572528 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000016 -0.000020 -0.000038 - induced dipole -0.010155 -0.041713 -0.001546 - conjugated induced dipole -0.005860 -0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.597684 10.915953 24.091115 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000040 -0.000030 -0.000024 - induced dipole 0.025817 -0.011418 0.033335 - conjugated induced dipole 0.014981 -0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.917431 11.171095 25.007429 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000029 -0.000025 -0.000032 - induced dipole 0.012761 -0.031001 -0.001118 - conjugated induced dipole 0.007779 -0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.042805 4.131068 31.488237 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000015 -0.000046 -0.000050 - induced dipole -0.009280 0.038168 -0.020381 - conjugated induced dipole -0.010164 0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 14 - Polarizability point coords 2.463531 7.987609 13.549594 - polarizability tensor 4.528424 1.917551 0.356759 1.444128 6.305472 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 0.031001 -0.001118 - conjugated induced dipole 0.007779 0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.107633 8.875142 19.174170 - polarizability tensor 3.614271 -1.113333 2.917217 -0.029793 1.821479 0.641372 2.940226 -0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 -0.007583 -0.014002 - conjugated induced dipole -0.015109 -0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.334346 14.536802 13.592298 - polarizability tensor 5.676904 -5.144008 -0.727141 -3.339388 4.987137 -0.427750 -0.708035 -0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063351 -0.043904 -0.005722 - conjugated induced dipole 0.055846 -0.056805 -0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.167617 15.799561 19.397643 - polarizability tensor 2.014659 1.411522 2.754673 0.096191 2.864917 1.368381 1.742510 2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 -0.015360 -0.023246 - conjugated induced dipole -0.008731 -0.020509 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.359009 10.084805 17.811318 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536299 1.326286 -0.648852 1.549497 -0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 0.001430 -0.006467 - conjugated induced dipole -0.006680 0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.102989 12.385660 13.955016 - polarizability tensor 2.247828 -1.783499 0.065363 -1.149026 2.379896 0.043699 0.251241 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 -0.003713 -0.000482 - conjugated induced dipole 0.009703 -0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.527209 7.589435 13.724420 - polarizability tensor 5.239487 -1.239561 0.807464 -0.101560 1.234380 0.089842 1.195631 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 0.001746 -0.000735 - conjugated induced dipole -0.002995 0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.245682 12.627117 14.574286 - polarizability tensor 5.018067 4.875224 1.088491 1.811907 4.579786 0.228246 1.487331 1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 0.002957 -0.007603 - conjugated induced dipole -0.011858 -0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.874126 8.562877 14.489050 - polarizability tensor 9.182809 -1.751286 0.995508 -0.084237 1.828484 0.387734 2.027093 0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 0.007223 -0.008401 - conjugated induced dipole -0.024722 0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.835468 13.782160 17.914647 - polarizability tensor 1.671051 0.572015 1.296469 0.542823 2.162529 1.769890 1.031019 1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 -0.008201 -0.009724 - conjugated induced dipole -0.006616 -0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.936298 10.173209 14.344652 - polarizability tensor 3.009105 -0.265453 0.164855 -0.392052 2.422902 0.078852 0.571863 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 0.006235 -0.000930 - conjugated induced dipole -0.002419 0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.508421 11.509463 17.309798 - polarizability tensor 5.263037 -4.454329 1.663069 -4.279634 13.403258 0.812801 1.522053 0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 0.005736 -0.010955 - conjugated induced dipole -0.012784 0.003817 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.000195 11.264263 14.730106 - polarizability tensor 13.654116 -2.638423 1.355104 -2.419214 4.125879 0.076557 2.653092 -0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 0.001460 -0.001599 - conjugated induced dipole 0.016161 0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.739029 9.944727 13.731485 - polarizability tensor 2.960545 0.866099 0.523975 1.061800 5.117296 0.710667 0.733477 0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 0.008630 0.003112 - conjugated induced dipole 0.008989 0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.401296 13.409645 15.944915 - polarizability tensor 5.617929 -1.381554 4.877276 -1.251780 2.735770 -1.290944 3.659516 -1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 0.007600 -0.027393 - conjugated induced dipole -0.028333 0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.202943 11.379865 13.598357 - polarizability tensor 12.949896 -2.646490 1.785363 -2.381876 4.179637 -0.329227 2.420663 -0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 0.005385 -0.002398 - conjugated induced dipole 0.029267 0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.006729 9.423251 15.865524 - polarizability tensor 3.040417 1.393146 2.596746 0.925311 4.759664 3.665080 1.764101 3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 -0.001162 -0.007068 - conjugated induced dipole -0.007504 -0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.406423 11.892234 16.610589 - polarizability tensor 4.688607 -4.661428 1.698768 -4.460102 13.263283 0.923066 0.789241 0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 0.004500 -0.010285 - conjugated induced dipole -0.010329 0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.751820 15.620492 14.054933 - polarizability tensor 2.586920 -0.528103 -0.018359 -0.362647 2.294262 -0.043707 0.109841 -0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 -0.015807 0.002368 - conjugated induced dipole 0.007606 -0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.363944 8.929875 20.496273 - polarizability tensor 2.625149 -0.213208 0.424935 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 -0.004775 -0.016411 - conjugated induced dipole 0.000061 -0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.009546 16.570134 20.821732 - polarizability tensor 2.080856 0.280706 0.149350 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 -0.016467 -0.014861 - conjugated induced dipole -0.000106 -0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.216721 8.242750 12.633279 - polarizability tensor 8.609786 3.161439 4.330873 3.390210 5.869745 2.969762 2.433189 1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 0.011418 0.033335 - conjugated induced dipole 0.014981 0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.644333 7.322464 15.114694 - polarizability tensor 5.800146 -0.752295 1.186095 0.172145 7.005037 0.548345 0.964192 0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 0.041713 -0.001546 - conjugated induced dipole -0.005860 0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.768589 6.375821 13.838054 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321947 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 0.016593 -0.000811 - conjugated induced dipole -0.007353 0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.080107 13.922561 13.875466 - polarizability tensor 3.548724 -1.577098 0.269188 -2.005619 4.318439 0.319351 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020829 -0.022725 0.000901 - conjugated induced dipole 0.022286 -0.021510 -0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.440947 9.828006 19.188399 - polarizability tensor 5.713598 -1.433755 3.432521 -2.871854 2.858065 -3.181668 3.126669 -2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 0.011888 -0.014683 - conjugated induced dipole -0.014358 0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.692591 14.719156 15.240704 - polarizability tensor 6.533271 0.444461 1.547291 -1.225663 5.733017 0.256666 1.271658 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 0.013065 -0.031206 - conjugated induced dipole -0.032768 0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.737515 9.553506 19.832198 - polarizability tensor 6.707222 -2.929001 4.115173 -3.681834 2.332214 -2.837643 2.110817 -1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 0.017077 -0.022943 - conjugated induced dipole -0.015224 0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.338154 15.027638 20.030403 - polarizability tensor 1.169669 1.724724 0.923944 2.191901 7.141826 4.969366 0.687890 2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 -0.038168 -0.020381 - conjugated induced dipole -0.010164 -0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.496254 14.369253 14.558771 - polarizability tensor 5.399130 -5.564497 0.213557 -4.017191 5.082742 0.297191 1.393778 -0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046956 -0.039177 0.007441 - conjugated induced dipole 0.039935 -0.045844 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.712111 14.129933 13.993228 - polarizability tensor 10.702596 1.789313 3.005774 -0.514549 5.742470 -3.210321 2.108866 -0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 0.015625 -0.045166 - conjugated induced dipole -0.061942 -0.008873 -0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.970218 8.483743 13.895660 - polarizability tensor 8.115953 0.753025 -0.167711 1.550833 6.978558 4.365403 0.764813 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 0.009874 -0.021011 - conjugated induced dipole -0.018333 0.019256 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.564896 8.049589 14.195882 - polarizability tensor 9.556643 3.699452 -1.931269 3.986424 6.261110 -1.285638 0.992072 0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 -0.025280 0.002707 - conjugated induced dipole -0.021953 -0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.278058 7.886500 14.575810 - polarizability tensor 4.541347 2.067477 1.036870 1.580945 6.187413 0.395977 1.497097 1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 0.021657 0.001455 - conjugated induced dipole -0.001239 0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.072943 15.351736 19.445527 - polarizability tensor 2.204024 0.653489 0.327501 1.701252 5.540979 4.544585 0.766862 3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 -0.029042 -0.022595 - conjugated induced dipole -0.008031 -0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 15 - Polarizability point coords -3.243914 14.373844 20.823910 - polarizability tensor 4.528424 -1.917551 0.356759 -1.444128 6.305472 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 0.031001 0.001118 - conjugated induced dipole -0.007779 0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.888016 15.261377 15.199334 - polarizability tensor 3.614271 1.113333 2.917217 0.029793 1.821479 -0.641372 2.940226 0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 -0.007583 0.014002 - conjugated induced dipole 0.015109 -0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.553962 20.923037 20.781206 - polarizability tensor 5.676904 5.144008 -0.727141 3.339388 4.987137 0.427750 -0.708035 0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063351 -0.043904 0.005722 - conjugated induced dipole -0.055846 -0.056805 0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.948000 22.185796 14.975861 - polarizability tensor 2.014659 -1.411522 2.754673 -0.096191 2.864917 -1.368381 1.742510 -2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 -0.015360 0.023246 - conjugated induced dipole 0.008731 -0.020509 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.139393 16.471040 16.562186 - polarizability tensor 2.644773 0.420648 2.214495 0.536299 1.326286 0.648852 1.549497 0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 0.001430 0.006467 - conjugated induced dipole 0.006680 0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.322606 18.771895 20.418488 - polarizability tensor 2.247828 1.783499 0.065363 1.149026 2.379896 -0.043699 0.251241 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 -0.003713 0.000482 - conjugated induced dipole -0.009703 -0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.307592 13.975670 20.649084 - polarizability tensor 5.239487 1.239561 0.807464 0.101560 1.234380 -0.089842 1.195631 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 0.001746 0.000735 - conjugated induced dipole 0.002995 0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.026065 19.013352 19.799218 - polarizability tensor 5.018067 -4.875224 1.088491 -1.811907 4.579786 -0.228246 1.487331 -1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 0.002957 0.007603 - conjugated induced dipole 0.011858 -0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.654509 14.949112 19.884454 - polarizability tensor 9.182809 1.751286 0.995508 0.084237 1.828484 -0.387734 2.027093 -0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 0.007223 0.008401 - conjugated induced dipole 0.024722 0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.615851 20.168395 16.458857 - polarizability tensor 1.671051 -0.572015 1.296469 -0.542823 2.162529 -1.769890 1.031019 -1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 -0.008201 0.009724 - conjugated induced dipole 0.006616 -0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.716681 16.559444 20.028852 - polarizability tensor 3.009105 0.265453 0.164855 0.392052 2.422902 -0.078852 0.571863 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 0.006235 0.000930 - conjugated induced dipole 0.002419 0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.288804 17.895698 17.063706 - polarizability tensor 5.263037 4.454329 1.663069 4.279634 13.403258 -0.812801 1.522053 -0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 0.005736 0.010955 - conjugated induced dipole 0.012784 0.003817 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.780578 17.650498 19.643398 - polarizability tensor 13.654116 2.638423 1.355104 2.419214 4.125879 -0.076557 2.653092 0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 0.001460 0.001599 - conjugated induced dipole -0.016161 0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.041354 16.330962 20.642019 - polarizability tensor 2.960545 -0.866099 0.523975 -1.061800 5.117296 -0.710667 0.733477 -0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 0.008630 -0.003112 - conjugated induced dipole -0.008989 0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.181679 19.795880 18.428589 - polarizability tensor 5.617929 1.381554 4.877276 1.251780 2.735770 1.290944 3.659516 1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 0.007600 0.027393 - conjugated induced dipole 0.028333 0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.983327 17.766100 20.775147 - polarizability tensor 12.949896 2.646490 1.785363 2.381876 4.179637 0.329227 2.420663 0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 0.005385 0.002398 - conjugated induced dipole -0.029267 0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.787112 15.809486 18.507980 - polarizability tensor 3.040417 -1.393146 2.596746 -0.925311 4.759664 -3.665080 1.764101 -3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 -0.001162 0.007068 - conjugated induced dipole 0.007504 -0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.186806 18.278469 17.762915 - polarizability tensor 4.688607 4.661428 1.698768 4.460102 13.263283 -0.923066 0.789241 -0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 0.004500 0.010285 - conjugated induced dipole 0.010329 0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.971437 22.006727 20.318571 - polarizability tensor 2.586920 0.528103 -0.018359 0.362647 2.294262 0.043707 0.109841 0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 -0.015807 -0.002368 - conjugated induced dipole -0.007606 -0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.144327 15.316110 13.877231 - polarizability tensor 2.625149 0.213208 0.424935 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 -0.004775 0.016411 - conjugated induced dipole -0.000061 -0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.789929 22.956369 13.551772 - polarizability tensor 2.080856 -0.280706 0.149350 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 -0.016467 0.014861 - conjugated induced dipole 0.000106 -0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.436338 14.628985 21.740225 - polarizability tensor 8.609786 -3.161439 4.330873 -3.390210 5.869745 -2.969762 2.433189 -1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 0.011418 -0.033335 - conjugated induced dipole -0.014981 0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.424716 13.708699 19.258810 - polarizability tensor 5.800146 0.752295 1.186095 -0.172145 7.005037 -0.548345 0.964192 -0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 0.041713 0.001546 - conjugated induced dipole 0.005860 0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.548972 12.762056 20.535450 - polarizability tensor 2.238895 0.092051 0.189597 0.321947 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 0.016593 0.000811 - conjugated induced dipole 0.007353 0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.299723 20.308796 20.498038 - polarizability tensor 3.548724 1.577098 0.269188 2.005619 4.318439 -0.319351 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020829 -0.022725 -0.000901 - conjugated induced dipole -0.022286 -0.021510 0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.221331 16.214241 15.185105 - polarizability tensor 5.713598 1.433755 3.432521 2.871854 2.858065 3.181668 3.126669 2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 0.011888 0.014683 - conjugated induced dipole 0.014358 0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.472974 21.105391 19.132800 - polarizability tensor 6.533271 -0.444461 1.547291 1.225663 5.733017 -0.256666 1.271658 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 0.013065 0.031206 - conjugated induced dipole 0.032768 0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.517899 15.939741 14.541306 - polarizability tensor 6.707222 2.929001 4.115173 3.681834 2.332214 2.837643 2.110817 1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 0.017077 0.022943 - conjugated induced dipole 0.015224 0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.118537 21.413873 14.343101 - polarizability tensor 1.169669 -1.724724 0.923944 -2.191901 7.141826 -4.969366 0.687890 -2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 -0.038168 0.020381 - conjugated induced dipole 0.010164 -0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.715871 20.755488 19.814733 - polarizability tensor 5.399130 5.564497 0.213557 4.017191 5.082742 -0.297191 1.393778 0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046956 -0.039177 -0.007441 - conjugated induced dipole -0.039935 -0.045844 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.492494 20.516168 20.380276 - polarizability tensor 10.702596 -1.789313 3.005774 0.514549 5.742470 3.210321 2.108866 0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 0.015625 0.045166 - conjugated induced dipole 0.061942 -0.008873 0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.750601 14.869978 20.477844 - polarizability tensor 8.115953 -0.753025 -0.167711 -1.550833 6.978558 -4.365403 0.764813 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 0.009874 0.021011 - conjugated induced dipole 0.018333 0.019256 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.784513 14.435824 20.177622 - polarizability tensor 9.556643 -3.699452 -1.931269 -3.986424 6.261110 1.285638 0.992072 -0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 -0.025280 -0.002707 - conjugated induced dipole 0.021953 -0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.058441 14.272735 19.797694 - polarizability tensor 4.541347 -2.067477 1.036870 -1.580945 6.187413 -0.395977 1.497097 -1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 0.021657 -0.001455 - conjugated induced dipole 0.001239 0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.853326 21.737971 14.927977 - polarizability tensor 2.204024 -0.653489 0.327501 -1.701252 5.540979 -4.544585 0.766862 -3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 -0.029042 0.022595 - conjugated induced dipole 0.008031 -0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 16 - Polarizability point coords -11.016969 28.144200 8.571017 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 -0.006235 0.000930 - conjugated induced dipole 0.002419 -0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.521619 28.489407 3.727272 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 -0.011888 0.014683 - conjugated induced dipole 0.014358 -0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.746409 23.780537 9.323269 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063346 0.043899 0.005721 - conjugated induced dipole -0.055842 0.056799 0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.153618 22.965676 3.470142 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 0.029042 0.022595 - conjugated induced dipole 0.008031 0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.487096 26.425177 6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 -0.004500 0.010285 - conjugated induced dipole 0.010329 -0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.358728 30.430909 8.339860 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 -0.021657 -0.001455 - conjugated induced dipole 0.001239 -0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.515775 30.267818 8.719786 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 0.025280 -0.002707 - conjugated induced dipole 0.021953 0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.326355 25.690292 8.341383 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 -0.002957 0.007603 - conjugated induced dipole 0.011858 0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.954796 29.754533 8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 -0.007223 0.008401 - conjugated induced dipole 0.024722 -0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.439681 28.232607 5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 -0.001430 0.006467 - conjugated induced dipole 0.006680 -0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.977683 25.931747 8.960653 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 0.003713 0.000482 - conjugated induced dipole -0.009703 0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.916141 24.535251 5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 0.008201 0.009724 - conjugated induced dipole 0.006616 0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.283615 26.937543 9.317312 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 -0.005385 0.002398 - conjugated induced dipole -0.029267 -0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.341642 28.372680 9.184184 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 -0.008630 -0.003112 - conjugated induced dipole -0.008989 -0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.087400 28.894160 7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 0.001162 0.007068 - conjugated induced dipole 0.007504 0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.080867 27.053146 8.185563 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 -0.001460 0.001599 - conjugated induced dipole -0.016161 -0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.481969 24.907766 6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 -0.007600 0.027393 - conjugated induced dipole 0.028333 -0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.589093 26.807948 5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 -0.005736 0.010955 - conjugated induced dipole 0.012784 -0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.328854 22.696914 8.860735 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 0.015807 -0.002368 - conjugated induced dipole -0.007606 0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.444616 29.387539 2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 0.004775 0.016411 - conjugated induced dipole -0.000061 0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.090221 21.747277 2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 0.016467 0.014862 - conjugated induced dipole 0.000106 0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.607879 30.727973 9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 -0.001746 0.000735 - conjugated induced dipole 0.002994 -0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.849258 31.941587 9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 -0.016593 0.000811 - conjugated induced dipole 0.007353 -0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.050888 29.833668 9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 -0.009874 0.021011 - conjugated induced dipole 0.018333 -0.019255 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.584314 23.948244 8.356857 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046958 0.039179 -0.007441 - conjugated induced dipole -0.039937 0.045846 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.818187 28.763906 3.083473 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 -0.017077 0.022943 - conjugated induced dipole 0.015224 -0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.792784 24.187477 8.922441 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 -0.015625 0.045166 - conjugated induced dipole 0.061942 0.008873 0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.188304 29.442270 3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 0.007583 0.014002 - conjugated induced dipole 0.015109 0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.248292 22.517850 3.518027 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 0.015360 0.023246 - conjugated induced dipole 0.008731 0.020510 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.000590 24.394823 9.040343 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020830 0.022726 -0.000901 - conjugated induced dipole -0.022286 0.021511 0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.773264 23.598254 7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 -0.013065 0.031206 - conjugated induced dipole 0.032768 -0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.725003 30.994947 7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 -0.041713 0.001546 - conjugated induced dipole 0.005860 -0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.863948 30.074657 10.282389 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 -0.011418 -0.033335 - conjugated induced dipole -0.014981 -0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.544201 30.329800 9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 -0.031001 0.001118 - conjugated induced dipole -0.007779 -0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.418827 23.289773 2.885267 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 0.038168 0.020381 - conjugated induced dipole 0.010164 0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 17 - Polarizability point coords -4.363992 21.757965 2.886817 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 -0.006235 -0.000930 - conjugated induced dipole -0.002419 -0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.140658 22.103172 7.730563 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 -0.011888 -0.014683 - conjugated induced dipole -0.014358 -0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.634552 17.394302 2.134565 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063346 0.043899 -0.005721 - conjugated induced dipole 0.055842 0.056799 -0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.772657 16.579441 7.987693 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 0.029042 -0.022595 - conjugated induced dipole -0.008031 0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.106135 20.038942 5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 -0.004500 -0.010285 - conjugated induced dipole -0.010329 -0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.022233 24.044674 3.117975 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 -0.021657 0.001455 - conjugated induced dipole -0.001239 -0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.865186 23.881583 2.738049 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 0.025280 0.002707 - conjugated induced dipole -0.021953 0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.054606 19.304057 3.116452 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 -0.002957 -0.007603 - conjugated induced dipole -0.011858 0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.426164 23.368298 3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 -0.007223 -0.008401 - conjugated induced dipole -0.024722 -0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.058720 21.846372 6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 -0.001430 -0.006467 - conjugated induced dipole -0.006680 -0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.403278 19.545512 2.497182 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 0.003713 -0.000482 - conjugated induced dipole 0.009703 0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.464819 18.149016 6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 0.008201 -0.009724 - conjugated induced dipole -0.006616 0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.097346 20.551308 2.140523 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 -0.005385 -0.002398 - conjugated induced dipole 0.029267 -0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.039319 21.986445 2.273651 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 -0.008630 0.003112 - conjugated induced dipole 0.008989 -0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.293561 22.507925 4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 0.001162 -0.007068 - conjugated induced dipole -0.007504 0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.300094 20.666911 3.272272 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 -0.001460 -0.001599 - conjugated induced dipole 0.016161 -0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.898992 18.521531 4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 -0.007600 -0.027393 - conjugated induced dipole -0.028333 -0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.791868 20.421713 5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 -0.005736 -0.010955 - conjugated induced dipole -0.012784 -0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.052107 16.310679 2.597099 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 0.015807 0.002368 - conjugated induced dipole 0.007606 0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.063655 23.001304 9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 0.004775 -0.016411 - conjugated induced dipole 0.000061 0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.709261 15.361042 9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 0.016467 -0.014862 - conjugated induced dipole -0.000106 0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.773082 24.341738 2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 -0.001746 -0.000735 - conjugated induced dipole -0.002994 -0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.531703 25.555353 2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 -0.016593 -0.000811 - conjugated induced dipole -0.007353 -0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.330072 23.447433 2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 -0.009874 -0.021011 - conjugated induced dipole -0.018333 -0.019255 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.796647 17.562009 3.100978 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046958 0.039179 0.007441 - conjugated induced dipole 0.039937 0.045846 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.437226 22.377672 8.374362 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 -0.017077 -0.022943 - conjugated induced dipole -0.015224 -0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.588177 17.801242 2.535393 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 -0.015625 -0.045166 - conjugated induced dipole -0.061942 0.008873 -0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.807343 23.056035 7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 0.007583 -0.014002 - conjugated induced dipole -0.015109 0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.132669 16.131615 7.939807 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 0.015360 -0.023246 - conjugated induced dipole -0.008731 0.020510 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.380371 18.008588 2.417492 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020830 0.022726 0.000901 - conjugated induced dipole 0.022286 0.021511 -0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.607697 17.212019 3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 -0.013065 -0.031206 - conjugated induced dipole -0.032768 -0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.655958 24.608712 3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 -0.041713 -0.001546 - conjugated induced dipole -0.005860 -0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.517013 23.688423 1.175445 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 -0.011418 0.033335 - conjugated induced dipole 0.014981 -0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.836760 23.943565 2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 -0.031001 -0.001118 - conjugated induced dipole 0.007779 -0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.037866 16.903538 8.572568 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 0.038168 -0.020381 - conjugated induced dipole -0.010164 0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 18 - Polarizability point coords 10.544201 20.760080 -9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444129 6.305470 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 0.031001 -0.001118 - conjugated induced dipole 0.007779 0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.188304 21.647609 -3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821479 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 -0.007583 -0.014002 - conjugated induced dipole -0.015109 -0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.746327 27.309275 -9.323370 - polarizability tensor 5.676900 -5.144008 -0.727143 -3.339388 4.987141 -0.427749 -0.708036 -0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063351 -0.043904 -0.005722 - conjugated induced dipole 0.055846 -0.056805 -0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.248291 28.572029 -3.518027 - polarizability tensor 2.014660 1.411523 2.754674 0.096191 2.864916 1.368380 1.742511 2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 -0.015360 -0.023246 - conjugated induced dipole -0.008731 -0.020509 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.439681 22.857273 -5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 0.001430 -0.006467 - conjugated induced dipole -0.006680 0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.977683 25.158132 -8.960653 - polarizability tensor 2.247827 -1.783499 0.065362 -1.149026 2.379898 0.043699 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 -0.003713 -0.000482 - conjugated induced dipole 0.009703 -0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.607879 20.361906 -9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 0.001746 -0.000735 - conjugated induced dipole -0.002995 0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.326355 25.399587 -8.341383 - polarizability tensor 5.018070 4.875224 1.088491 1.811907 4.579783 0.228245 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 0.002957 -0.007603 - conjugated induced dipole -0.011858 -0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.954796 21.335346 -8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 0.007223 -0.008401 - conjugated induced dipole -0.024722 0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.916141 26.554628 -5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 -0.008201 -0.009724 - conjugated induced dipole -0.006616 -0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.016969 22.945679 -8.571017 - polarizability tensor 3.009104 -0.265453 0.164854 -0.392052 2.422903 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 0.006235 -0.000930 - conjugated induced dipole -0.002419 0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.589093 24.281931 -5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522052 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 0.005736 -0.010955 - conjugated induced dipole -0.012784 0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.080866 24.036734 -8.185563 - polarizability tensor 13.654114 -2.638427 1.355101 -2.419218 4.125882 0.076557 2.653090 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 0.001460 -0.001599 - conjugated induced dipole 0.016161 0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.341642 22.717200 -9.184184 - polarizability tensor 2.960546 0.866100 0.523975 1.061801 5.117295 0.710667 0.733477 0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 0.008630 0.003112 - conjugated induced dipole 0.008989 0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.481969 26.182114 -6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 0.007600 -0.027393 - conjugated induced dipole -0.028333 0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.283615 24.152337 -9.317312 - polarizability tensor 12.949895 -2.646494 1.785361 -2.381880 4.179640 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 0.005385 -0.002398 - conjugated induced dipole 0.029267 0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.087400 22.195720 -7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 -0.001162 -0.007068 - conjugated induced dipole -0.007504 -0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.487096 24.664703 -6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460098 13.263287 0.923067 0.789240 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 0.004500 -0.010285 - conjugated induced dipole -0.010329 0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.328854 28.392966 -8.860735 - polarizability tensor 2.586919 -0.528104 -0.018359 -0.362648 2.294263 -0.043707 0.109841 -0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 -0.015807 0.002368 - conjugated induced dipole 0.007606 -0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.444616 21.702341 -2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 -0.004775 -0.016411 - conjugated induced dipole 0.000061 -0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.090221 29.342602 -2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 -0.016467 -0.014861 - conjugated induced dipole -0.000106 -0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.863949 21.015222 -10.282389 - polarizability tensor 8.609790 3.161438 4.330874 3.390209 5.869742 2.969759 2.433190 1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 0.011418 0.033335 - conjugated induced dipole 0.014981 0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.725003 20.094933 -7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 0.041713 -0.001546 - conjugated induced dipole -0.005860 0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.849258 19.148292 -9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 0.016593 -0.000811 - conjugated induced dipole -0.007353 0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.000566 26.695035 -9.040202 - polarizability tensor 3.548722 -1.577098 0.269187 -2.005619 4.318440 0.319352 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020829 -0.022725 0.000901 - conjugated induced dipole 0.022286 -0.021510 -0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.521619 22.600473 -3.727272 - polarizability tensor 5.713597 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 0.011888 -0.014683 - conjugated induced dipole -0.014358 0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.773264 27.491626 -7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225663 5.733018 0.256666 1.271657 0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 0.013065 -0.031206 - conjugated induced dipole -0.032768 0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.818187 22.325973 -3.083473 - polarizability tensor 6.707221 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 0.017077 -0.022943 - conjugated induced dipole -0.015224 0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.418828 27.800106 -2.885267 - polarizability tensor 1.169671 1.724727 0.923947 2.191905 7.141823 4.969365 0.687892 2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 -0.038168 -0.020381 - conjugated induced dipole -0.010164 -0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.584419 27.141726 -8.356897 - polarizability tensor 5.399126 -5.564498 0.213556 -4.017191 5.082747 0.297192 1.393777 -0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046956 -0.039177 0.007441 - conjugated induced dipole 0.039935 -0.045844 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.792784 26.902402 -8.922442 - polarizability tensor 10.702598 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 0.015625 -0.045166 - conjugated induced dipole -0.061942 -0.008873 -0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.050888 21.256211 -9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 0.009874 -0.021011 - conjugated induced dipole -0.018333 0.019256 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.515774 20.822062 -8.719786 - polarizability tensor 9.556647 3.699450 -1.931270 3.986422 6.261107 -1.285638 0.992071 0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 -0.025280 0.002707 - conjugated induced dipole -0.021953 -0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.358728 20.658971 -8.339860 - polarizability tensor 4.541349 2.067478 1.036870 1.580946 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 0.021657 0.001455 - conjugated induced dipole -0.001239 0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.153617 28.124204 -3.470143 - polarizability tensor 2.204025 0.653491 0.327503 1.701255 5.540977 4.544585 0.766864 3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 -0.029042 -0.022595 - conjugated induced dipole -0.008031 -0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 19 - Polarizability point coords 4.836760 27.146314 -2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444129 6.305470 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 0.031001 0.001118 - conjugated induced dipole -0.007779 0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.807344 28.033844 -7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821479 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 -0.007583 0.014002 - conjugated induced dipole 0.015109 -0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.634633 33.695510 -2.134465 - polarizability tensor 5.676900 5.144008 -0.727143 3.339388 4.987141 0.427749 -0.708036 0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063351 -0.043904 0.005722 - conjugated induced dipole -0.055846 -0.056805 0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.132670 34.958264 -7.939808 - polarizability tensor 2.014660 -1.411523 2.754674 -0.096191 2.864916 -1.368380 1.742511 -2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 -0.015360 0.023246 - conjugated induced dipole 0.008731 -0.020509 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.058720 29.243508 -6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 0.001430 0.006467 - conjugated induced dipole 0.006680 0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.403278 31.544367 -2.497182 - polarizability tensor 2.247827 1.783499 0.065362 1.149026 2.379898 -0.043699 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 -0.003713 0.000482 - conjugated induced dipole -0.009703 -0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.773082 26.748141 -2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 0.001746 0.000735 - conjugated induced dipole 0.002995 0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.054606 31.785822 -3.116452 - polarizability tensor 5.018070 -4.875224 1.088491 -1.811907 4.579783 -0.228245 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 0.002957 0.007603 - conjugated induced dipole 0.011858 -0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.426164 27.721581 -3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 0.007223 0.008401 - conjugated induced dipole 0.024722 0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.464819 32.940863 -6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 -0.008201 0.009724 - conjugated induced dipole 0.006616 -0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.363992 29.331914 -2.886817 - polarizability tensor 3.009104 0.265453 0.164854 0.392052 2.422903 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 0.006235 0.000930 - conjugated induced dipole 0.002419 0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.791868 30.668166 -5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522052 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 0.005736 0.010955 - conjugated induced dipole 0.012784 0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.300094 30.422969 -3.272272 - polarizability tensor 13.654114 2.638427 1.355101 2.419218 4.125882 -0.076557 2.653090 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 0.001460 0.001599 - conjugated induced dipole -0.016161 0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.039319 29.103435 -2.273651 - polarizability tensor 2.960546 -0.866100 0.523975 -1.061801 5.117295 -0.710667 0.733477 -0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 0.008630 -0.003112 - conjugated induced dipole -0.008989 0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.898992 32.568349 -4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 0.007600 0.027393 - conjugated induced dipole 0.028333 0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.097346 30.538571 -2.140523 - polarizability tensor 12.949895 2.646494 1.785361 2.381880 4.179640 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 0.005385 0.002398 - conjugated induced dipole -0.029267 0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.293561 28.581955 -4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 -0.001162 0.007068 - conjugated induced dipole 0.007504 -0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.106135 31.050938 -5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460098 13.263287 -0.923067 0.789240 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 0.004500 0.010285 - conjugated induced dipole 0.010329 0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.052107 34.779201 -2.597100 - polarizability tensor 2.586919 0.528104 -0.018359 0.362648 2.294263 0.043707 0.109841 0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 -0.015807 -0.002368 - conjugated induced dipole -0.007606 -0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.063655 28.088576 -9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 -0.004775 0.016411 - conjugated induced dipole -0.000061 -0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.709261 35.728837 -9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 -0.016467 0.014861 - conjugated induced dipole 0.000106 -0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.517012 27.401457 -1.175445 - polarizability tensor 8.609790 -3.161438 4.330874 -3.390209 5.869742 -2.969759 2.433190 -1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 0.011418 -0.033335 - conjugated induced dipole -0.014981 0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.655958 26.481168 -3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 0.041713 0.001546 - conjugated induced dipole 0.005860 0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.531703 25.534527 -2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 0.016593 0.000811 - conjugated induced dipole 0.007353 0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.380395 33.081270 -2.417633 - polarizability tensor 3.548722 1.577098 0.269187 2.005619 4.318440 -0.319352 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020829 -0.022725 -0.000901 - conjugated induced dipole -0.022286 -0.021510 0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.140658 28.986707 -7.730563 - polarizability tensor 5.713597 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 0.011888 0.014683 - conjugated induced dipole 0.014358 0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.607697 33.877861 -3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225663 5.733018 -0.256666 1.271657 -0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 0.013065 0.031206 - conjugated induced dipole 0.032768 0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.437226 28.712208 -8.374362 - polarizability tensor 6.707221 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 0.017077 0.022943 - conjugated induced dipole 0.015224 0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.037867 34.186341 -8.572568 - polarizability tensor 1.169671 -1.724727 0.923947 -2.191905 7.141823 -4.969365 0.687892 -2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 -0.038168 0.020381 - conjugated induced dipole 0.010164 -0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.796542 33.527961 -3.100937 - polarizability tensor 5.399126 5.564498 0.213556 4.017191 5.082747 -0.297192 1.393777 0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046956 -0.039177 -0.007441 - conjugated induced dipole -0.039935 -0.045844 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.588177 33.288637 -2.535393 - polarizability tensor 10.702598 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 0.015625 0.045166 - conjugated induced dipole 0.061942 -0.008873 0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.330072 27.642446 -2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 0.009874 0.021011 - conjugated induced dipole 0.018333 0.019256 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.865186 27.208297 -2.738048 - polarizability tensor 9.556647 -3.699450 -1.931270 -3.986422 6.261107 1.285638 0.992071 -0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 -0.025280 -0.002707 - conjugated induced dipole 0.021953 -0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.022233 27.045206 -3.117975 - polarizability tensor 4.541349 -2.067478 1.036870 -1.580946 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 0.021657 -0.001455 - conjugated induced dipole 0.001239 0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.772656 34.510439 -7.987692 - polarizability tensor 2.204025 -0.653491 0.327503 -1.701255 5.540977 -4.544585 0.766864 -3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 -0.029042 0.022595 - conjugated induced dipole 0.008031 -0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 20 - Polarizability point coords -19.097640 28.144200 31.486687 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 -0.006235 0.000930 - conjugated induced dipole 0.002419 -0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -26.602290 28.489407 26.642941 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 -0.011888 0.014683 - conjugated induced dipole 0.014358 -0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.827080 23.780537 32.238939 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063346 0.043899 0.005721 - conjugated induced dipole -0.055842 0.056799 0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.234289 22.965676 26.385811 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 0.029042 0.022595 - conjugated induced dipole 0.008031 0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.567767 26.425177 29.220750 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 -0.004500 0.010285 - conjugated induced dipole 0.010329 -0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.439399 30.430909 31.255529 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 -0.021657 -0.001455 - conjugated induced dipole 0.001239 -0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.596446 30.267818 31.635455 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 0.025280 -0.002707 - conjugated induced dipole 0.021953 0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.407026 25.690292 31.257052 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 -0.002957 0.007603 - conjugated induced dipole 0.011858 0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -21.035468 29.754533 31.342289 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 -0.007223 0.008401 - conjugated induced dipole 0.024722 -0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.520352 28.232607 28.020022 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 -0.001430 0.006467 - conjugated induced dipole 0.006680 -0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.058354 25.931747 31.876322 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 0.003713 0.000482 - conjugated induced dipole -0.009703 0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.996813 24.535251 27.916692 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 0.008201 0.009724 - conjugated induced dipole 0.006616 0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.364286 26.937543 32.232981 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 -0.005385 0.002398 - conjugated induced dipole -0.029267 -0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.422313 28.372680 32.099853 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 -0.008630 -0.003112 - conjugated induced dipole -0.008989 -0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.168071 28.894160 29.965816 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 0.001162 0.007068 - conjugated induced dipole 0.007504 0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.161538 27.053146 31.101232 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 -0.001460 0.001599 - conjugated induced dipole -0.016161 -0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -21.562640 24.907766 29.886424 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 -0.007600 0.027393 - conjugated induced dipole 0.028333 -0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.669764 26.807948 28.521541 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 -0.005736 0.010955 - conjugated induced dipole 0.012784 -0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.409525 22.696914 31.776405 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 0.015807 -0.002368 - conjugated induced dipole -0.007606 0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -27.525287 29.387539 25.335067 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 0.004775 0.016411 - conjugated induced dipole -0.000061 0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.170893 21.747277 25.009608 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 0.016467 0.014862 - conjugated induced dipole 0.000106 0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.688550 30.727973 32.106919 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 -0.001746 0.000735 - conjugated induced dipole 0.002994 -0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.929929 31.941587 31.993285 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 -0.016593 0.000811 - conjugated induced dipole 0.007353 -0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.131560 29.833668 31.935679 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 -0.009874 0.021011 - conjugated induced dipole 0.018333 -0.019255 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.664985 23.948244 31.272526 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046958 0.039179 -0.007441 - conjugated induced dipole -0.039937 0.045846 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -25.898858 28.763906 25.999142 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 -0.017077 0.022943 - conjugated induced dipole 0.015224 -0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -20.873455 24.187477 31.838111 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 -0.015625 0.045166 - conjugated induced dipole 0.061942 0.008873 0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -26.268976 29.442270 26.657170 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 0.007583 0.014002 - conjugated induced dipole 0.015109 0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.328963 22.517850 26.433697 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 0.015360 0.023246 - conjugated induced dipole 0.008731 0.020510 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.081261 24.394823 31.956012 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020830 0.022726 -0.000901 - conjugated induced dipole -0.022286 0.021511 0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.853935 23.598254 30.590634 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 -0.013065 0.031206 - conjugated induced dipole 0.032768 -0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.805674 30.994947 30.716646 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 -0.041713 0.001546 - conjugated induced dipole 0.005860 -0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.944619 30.074657 33.198059 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 -0.011418 -0.033335 - conjugated induced dipole -0.014981 -0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.624872 30.329800 32.281745 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 -0.031001 0.001118 - conjugated induced dipole -0.007779 -0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.499498 23.289773 25.800936 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 0.038168 0.020381 - conjugated induced dipole 0.010164 0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 21 - Polarizability point coords -12.444663 21.757965 25.802487 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 -0.006235 -0.000930 - conjugated induced dipole -0.002419 -0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.940013 22.103172 30.646232 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 -0.011888 -0.014683 - conjugated induced dipole -0.014358 -0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.715223 17.394302 25.050235 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063346 0.043899 -0.005721 - conjugated induced dipole 0.055842 0.056799 -0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.308014 16.579441 30.903362 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 0.029042 -0.022595 - conjugated induced dipole -0.008031 0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.974536 20.038942 28.068423 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 -0.004500 -0.010285 - conjugated induced dipole -0.010329 -0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.102904 24.044674 26.033644 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 -0.021657 0.001455 - conjugated induced dipole -0.001239 -0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.945857 23.881583 25.653718 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 0.025280 0.002707 - conjugated induced dipole -0.021953 0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.135277 19.304057 26.032121 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 -0.002957 -0.007603 - conjugated induced dipole -0.011858 0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.506836 23.368298 25.946884 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 -0.007223 -0.008401 - conjugated induced dipole -0.024722 -0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.021951 21.846372 29.269151 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 -0.001430 -0.006467 - conjugated induced dipole -0.006680 -0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.483949 19.545512 25.412851 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 0.003713 -0.000482 - conjugated induced dipole 0.009703 0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.545491 18.149016 29.372481 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 0.008201 -0.009724 - conjugated induced dipole -0.006616 0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.178017 20.551308 25.056192 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 -0.005385 -0.002398 - conjugated induced dipole 0.029267 -0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.119990 21.986445 25.189320 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 -0.008630 0.003112 - conjugated induced dipole 0.008989 -0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.374232 22.507925 27.323358 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 0.001162 -0.007068 - conjugated induced dipole -0.007504 0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.380765 20.666911 26.187941 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 -0.001460 -0.001599 - conjugated induced dipole 0.016161 -0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.979663 18.521531 27.402749 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 -0.007600 -0.027393 - conjugated induced dipole -0.028333 -0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.872539 20.421713 28.767632 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 -0.005736 -0.010955 - conjugated induced dipole -0.012784 -0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.132779 16.310679 25.512769 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 0.015807 0.002368 - conjugated induced dipole 0.007606 0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.017016 23.001304 31.954106 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 0.004775 -0.016411 - conjugated induced dipole 0.000061 0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.371411 15.361042 32.279566 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 0.016467 -0.014862 - conjugated induced dipole -0.000106 0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.853753 24.341738 25.182254 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 -0.001746 -0.000735 - conjugated induced dipole -0.002994 -0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.612374 25.555353 25.295888 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 -0.016593 -0.000811 - conjugated induced dipole -0.007353 -0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.410744 23.447433 25.353494 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 -0.009874 -0.021011 - conjugated induced dipole -0.018333 -0.019255 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.877318 17.562009 26.016647 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046958 0.039179 0.007441 - conjugated induced dipole 0.039937 0.045846 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.643445 22.377672 31.290032 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 -0.017077 -0.022943 - conjugated induced dipole -0.015224 -0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.668848 17.801242 25.451063 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 -0.015625 -0.045166 - conjugated induced dipole -0.061942 0.008873 -0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.273328 23.056035 30.632003 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 0.007583 -0.014002 - conjugated induced dipole -0.015109 0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.213340 16.131615 30.855477 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 0.015360 -0.023246 - conjugated induced dipole -0.008731 0.020510 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.461042 18.008588 25.333161 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020830 0.022726 0.000901 - conjugated induced dipole 0.022286 0.021511 -0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.688368 17.212019 26.698539 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 -0.013065 -0.031206 - conjugated induced dipole -0.032768 -0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.736629 24.608712 26.572528 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 -0.041713 -0.001546 - conjugated induced dipole -0.005860 -0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.597684 23.688423 24.091115 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 -0.011418 0.033335 - conjugated induced dipole 0.014981 -0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.917431 23.943565 25.007429 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 -0.031001 -0.001118 - conjugated induced dipole 0.007779 -0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.042805 16.903538 31.488237 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 0.038168 -0.020381 - conjugated induced dipole -0.010164 0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 22 - Polarizability point coords 2.463531 20.760079 13.549594 - polarizability tensor 4.528424 1.917551 0.356759 1.444128 6.305472 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 0.031001 -0.001118 - conjugated induced dipole 0.007779 0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.107633 21.647612 19.174170 - polarizability tensor 3.614271 -1.113333 2.917217 -0.029793 1.821479 0.641372 2.940226 -0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 -0.007583 -0.014002 - conjugated induced dipole -0.015109 -0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.334346 27.309272 13.592298 - polarizability tensor 5.676904 -5.144008 -0.727141 -3.339388 4.987137 -0.427750 -0.708035 -0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063351 -0.043904 -0.005722 - conjugated induced dipole 0.055846 -0.056805 -0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.167617 28.572031 19.397643 - polarizability tensor 2.014659 1.411522 2.754673 0.096191 2.864917 1.368381 1.742510 2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 -0.015360 -0.023246 - conjugated induced dipole -0.008731 -0.020509 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.359009 22.857275 17.811318 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536299 1.326286 -0.648852 1.549497 -0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 0.001430 -0.006467 - conjugated induced dipole -0.006680 0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.102989 25.158130 13.955016 - polarizability tensor 2.247828 -1.783499 0.065363 -1.149026 2.379896 0.043699 0.251241 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 -0.003713 -0.000482 - conjugated induced dipole 0.009703 -0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.527209 20.361905 13.724420 - polarizability tensor 5.239487 -1.239561 0.807464 -0.101560 1.234380 0.089842 1.195631 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 0.001746 -0.000735 - conjugated induced dipole -0.002995 0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.245682 25.399587 14.574286 - polarizability tensor 5.018067 4.875224 1.088491 1.811907 4.579786 0.228246 1.487331 1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 0.002957 -0.007603 - conjugated induced dipole -0.011858 -0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.874126 21.335347 14.489050 - polarizability tensor 9.182809 -1.751286 0.995508 -0.084237 1.828484 0.387734 2.027093 0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 0.007223 -0.008401 - conjugated induced dipole -0.024722 0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.835468 26.554630 17.914647 - polarizability tensor 1.671051 0.572015 1.296469 0.542823 2.162529 1.769890 1.031019 1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 -0.008201 -0.009724 - conjugated induced dipole -0.006616 -0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.936298 22.945679 14.344652 - polarizability tensor 3.009105 -0.265453 0.164855 -0.392052 2.422902 0.078852 0.571863 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 0.006235 -0.000930 - conjugated induced dipole -0.002419 0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.508421 24.281933 17.309798 - polarizability tensor 5.263037 -4.454329 1.663069 -4.279634 13.403258 0.812801 1.522053 0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 0.005736 -0.010955 - conjugated induced dipole -0.012784 0.003817 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.000195 24.036733 14.730106 - polarizability tensor 13.654116 -2.638423 1.355104 -2.419214 4.125879 0.076557 2.653092 -0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 0.001460 -0.001599 - conjugated induced dipole 0.016161 0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.739029 22.717197 13.731485 - polarizability tensor 2.960545 0.866099 0.523975 1.061800 5.117296 0.710667 0.733477 0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 0.008630 0.003112 - conjugated induced dipole 0.008989 0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.401296 26.182115 15.944915 - polarizability tensor 5.617929 -1.381554 4.877276 -1.251780 2.735770 -1.290944 3.659516 -1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 0.007600 -0.027393 - conjugated induced dipole -0.028333 0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.202943 24.152335 13.598357 - polarizability tensor 12.949896 -2.646490 1.785363 -2.381876 4.179637 -0.329227 2.420663 -0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 0.005385 -0.002398 - conjugated induced dipole 0.029267 0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.006729 22.195721 15.865524 - polarizability tensor 3.040417 1.393146 2.596746 0.925311 4.759664 3.665080 1.764101 3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 -0.001162 -0.007068 - conjugated induced dipole -0.007504 -0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.406423 24.664704 16.610589 - polarizability tensor 4.688607 -4.661428 1.698768 -4.460102 13.263283 0.923066 0.789241 0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 0.004500 -0.010285 - conjugated induced dipole -0.010329 0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.751820 28.392962 14.054933 - polarizability tensor 2.586920 -0.528103 -0.018359 -0.362647 2.294262 -0.043707 0.109841 -0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 -0.015807 0.002368 - conjugated induced dipole 0.007606 -0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.363944 21.702344 20.496273 - polarizability tensor 2.625149 -0.213208 0.424935 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 -0.004775 -0.016411 - conjugated induced dipole 0.000061 -0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.009546 29.342604 20.821732 - polarizability tensor 2.080856 0.280706 0.149350 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 -0.016467 -0.014861 - conjugated induced dipole -0.000106 -0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.216721 21.015220 12.633279 - polarizability tensor 8.609786 3.161439 4.330873 3.390210 5.869745 2.969762 2.433189 1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 0.011418 0.033335 - conjugated induced dipole 0.014981 0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.644333 20.094934 15.114694 - polarizability tensor 5.800146 -0.752295 1.186095 0.172145 7.005037 0.548345 0.964192 0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 0.041713 -0.001546 - conjugated induced dipole -0.005860 0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.768589 19.148291 13.838054 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321947 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 0.016593 -0.000811 - conjugated induced dipole -0.007353 0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.080107 26.695031 13.875466 - polarizability tensor 3.548724 -1.577098 0.269188 -2.005619 4.318439 0.319351 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020829 -0.022725 0.000901 - conjugated induced dipole 0.022286 -0.021510 -0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.440947 22.600476 19.188399 - polarizability tensor 5.713598 -1.433755 3.432521 -2.871854 2.858065 -3.181668 3.126669 -2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 0.011888 -0.014683 - conjugated induced dipole -0.014358 0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.692591 27.491626 15.240704 - polarizability tensor 6.533271 0.444461 1.547291 -1.225663 5.733017 0.256666 1.271658 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 0.013065 -0.031206 - conjugated induced dipole -0.032768 0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.737515 22.325976 19.832198 - polarizability tensor 6.707222 -2.929001 4.115173 -3.681834 2.332214 -2.837643 2.110817 -1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 0.017077 -0.022943 - conjugated induced dipole -0.015224 0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.338154 27.800108 20.030403 - polarizability tensor 1.169669 1.724724 0.923944 2.191901 7.141826 4.969366 0.687890 2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 -0.038168 -0.020381 - conjugated induced dipole -0.010164 -0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.496254 27.141723 14.558771 - polarizability tensor 5.399130 -5.564497 0.213557 -4.017191 5.082742 0.297191 1.393778 -0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046956 -0.039177 0.007441 - conjugated induced dipole 0.039935 -0.045844 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.712111 26.902403 13.993228 - polarizability tensor 10.702596 1.789313 3.005774 -0.514549 5.742470 -3.210321 2.108866 -0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 0.015625 -0.045166 - conjugated induced dipole -0.061942 -0.008873 -0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.970218 21.256212 13.895660 - polarizability tensor 8.115953 0.753025 -0.167711 1.550833 6.978558 4.365403 0.764813 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 0.009874 -0.021011 - conjugated induced dipole -0.018333 0.019256 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.564896 20.822059 14.195882 - polarizability tensor 9.556643 3.699452 -1.931269 3.986424 6.261110 -1.285638 0.992072 0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 -0.025280 0.002707 - conjugated induced dipole -0.021953 -0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.278058 20.658970 14.575810 - polarizability tensor 4.541347 2.067477 1.036870 1.580945 6.187413 0.395977 1.497097 1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 0.021657 0.001455 - conjugated induced dipole -0.001239 0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.072943 28.124206 19.445527 - polarizability tensor 2.204024 0.653489 0.327501 1.701252 5.540979 4.544585 0.766862 3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 -0.029042 -0.022595 - conjugated induced dipole -0.008031 -0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 23 - Polarizability point coords -3.243914 27.146314 20.823910 - polarizability tensor 4.528424 -1.917551 0.356759 -1.444128 6.305472 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 0.031001 0.001118 - conjugated induced dipole -0.007779 0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.888016 28.033847 15.199334 - polarizability tensor 3.614271 1.113333 2.917217 0.029793 1.821479 -0.641372 2.940226 0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 -0.007583 0.014002 - conjugated induced dipole 0.015109 -0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.553962 33.695507 20.781206 - polarizability tensor 5.676904 5.144008 -0.727141 3.339388 4.987137 0.427750 -0.708035 0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063351 -0.043904 0.005722 - conjugated induced dipole -0.055846 -0.056805 0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.948000 34.958265 14.975861 - polarizability tensor 2.014659 -1.411522 2.754673 -0.096191 2.864917 -1.368381 1.742510 -2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 -0.015360 0.023246 - conjugated induced dipole 0.008731 -0.020509 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.139393 29.243510 16.562186 - polarizability tensor 2.644773 0.420648 2.214495 0.536299 1.326286 0.648852 1.549497 0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 0.001430 0.006467 - conjugated induced dipole 0.006680 0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.322606 31.544365 20.418488 - polarizability tensor 2.247828 1.783499 0.065363 1.149026 2.379896 -0.043699 0.251241 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 -0.003713 0.000482 - conjugated induced dipole -0.009703 -0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.307592 26.748140 20.649084 - polarizability tensor 5.239487 1.239561 0.807464 0.101560 1.234380 -0.089842 1.195631 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 0.001746 0.000735 - conjugated induced dipole 0.002995 0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.026065 31.785822 19.799218 - polarizability tensor 5.018067 -4.875224 1.088491 -1.811907 4.579786 -0.228246 1.487331 -1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 0.002957 0.007603 - conjugated induced dipole 0.011858 -0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.654509 27.721582 19.884454 - polarizability tensor 9.182809 1.751286 0.995508 0.084237 1.828484 -0.387734 2.027093 -0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 0.007223 0.008401 - conjugated induced dipole 0.024722 0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.615851 32.940865 16.458857 - polarizability tensor 1.671051 -0.572015 1.296469 -0.542823 2.162529 -1.769890 1.031019 -1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 -0.008201 0.009724 - conjugated induced dipole 0.006616 -0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.716681 29.331914 20.028852 - polarizability tensor 3.009105 0.265453 0.164855 0.392052 2.422902 -0.078852 0.571863 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 0.006235 0.000930 - conjugated induced dipole 0.002419 0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.288804 30.668167 17.063706 - polarizability tensor 5.263037 4.454329 1.663069 4.279634 13.403258 -0.812801 1.522053 -0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 0.005736 0.010955 - conjugated induced dipole 0.012784 0.003817 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.780578 30.422967 19.643398 - polarizability tensor 13.654116 2.638423 1.355104 2.419214 4.125879 -0.076557 2.653092 0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 0.001460 0.001599 - conjugated induced dipole -0.016161 0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.041354 29.103432 20.642019 - polarizability tensor 2.960545 -0.866099 0.523975 -1.061800 5.117296 -0.710667 0.733477 -0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 0.008630 -0.003112 - conjugated induced dipole -0.008989 0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.181679 32.568350 18.428589 - polarizability tensor 5.617929 1.381554 4.877276 1.251780 2.735770 1.290944 3.659516 1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 0.007600 0.027393 - conjugated induced dipole 0.028333 0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.983327 30.538570 20.775147 - polarizability tensor 12.949896 2.646490 1.785363 2.381876 4.179637 0.329227 2.420663 0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 0.005385 0.002398 - conjugated induced dipole -0.029267 0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.787112 28.581956 18.507980 - polarizability tensor 3.040417 -1.393146 2.596746 -0.925311 4.759664 -3.665080 1.764101 -3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 -0.001162 0.007068 - conjugated induced dipole 0.007504 -0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.186806 31.050939 17.762915 - polarizability tensor 4.688607 4.661428 1.698768 4.460102 13.263283 -0.923066 0.789241 -0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 0.004500 0.010285 - conjugated induced dipole 0.010329 0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.971437 34.779197 20.318571 - polarizability tensor 2.586920 0.528103 -0.018359 0.362647 2.294262 0.043707 0.109841 0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 -0.015807 -0.002368 - conjugated induced dipole -0.007606 -0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.144327 28.088579 13.877231 - polarizability tensor 2.625149 0.213208 0.424935 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 -0.004775 0.016411 - conjugated induced dipole -0.000061 -0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.789929 35.728839 13.551772 - polarizability tensor 2.080856 -0.280706 0.149350 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 -0.016467 0.014861 - conjugated induced dipole 0.000106 -0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.436338 27.401455 21.740225 - polarizability tensor 8.609786 -3.161439 4.330873 -3.390210 5.869745 -2.969762 2.433189 -1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 0.011418 -0.033335 - conjugated induced dipole -0.014981 0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.424716 26.481169 19.258810 - polarizability tensor 5.800146 0.752295 1.186095 -0.172145 7.005037 -0.548345 0.964192 -0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 0.041713 0.001546 - conjugated induced dipole 0.005860 0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.548972 25.534526 20.535450 - polarizability tensor 2.238895 0.092051 0.189597 0.321947 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 0.016593 0.000811 - conjugated induced dipole 0.007353 0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.299723 33.081266 20.498038 - polarizability tensor 3.548724 1.577098 0.269188 2.005619 4.318439 -0.319351 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020829 -0.022725 -0.000901 - conjugated induced dipole -0.022286 -0.021510 0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.221331 28.986711 15.185105 - polarizability tensor 5.713598 1.433755 3.432521 2.871854 2.858065 3.181668 3.126669 2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 0.011888 0.014683 - conjugated induced dipole 0.014358 0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.472974 33.877861 19.132800 - polarizability tensor 6.533271 -0.444461 1.547291 1.225663 5.733017 -0.256666 1.271658 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 0.013065 0.031206 - conjugated induced dipole 0.032768 0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.517899 28.712211 14.541306 - polarizability tensor 6.707222 2.929001 4.115173 3.681834 2.332214 2.837643 2.110817 1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 0.017077 0.022943 - conjugated induced dipole 0.015224 0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.118537 34.186343 14.343101 - polarizability tensor 1.169669 -1.724724 0.923944 -2.191901 7.141826 -4.969366 0.687890 -2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 -0.038168 0.020381 - conjugated induced dipole 0.010164 -0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.715871 33.527958 19.814733 - polarizability tensor 5.399130 5.564497 0.213557 4.017191 5.082742 -0.297191 1.393778 0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046956 -0.039177 -0.007441 - conjugated induced dipole -0.039935 -0.045844 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.492494 33.288638 20.380276 - polarizability tensor 10.702596 -1.789313 3.005774 0.514549 5.742470 3.210321 2.108866 0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 0.015625 0.045166 - conjugated induced dipole 0.061942 -0.008873 0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.750601 27.642447 20.477844 - polarizability tensor 8.115953 -0.753025 -0.167711 -1.550833 6.978558 -4.365403 0.764813 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 0.009874 0.021011 - conjugated induced dipole 0.018333 0.019256 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.784513 27.208294 20.177622 - polarizability tensor 9.556643 -3.699452 -1.931269 -3.986424 6.261110 1.285638 0.992072 -0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 -0.025280 -0.002707 - conjugated induced dipole 0.021953 -0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.058441 27.045205 19.797694 - polarizability tensor 4.541347 -2.067477 1.036870 -1.580945 6.187413 -0.395977 1.497097 -1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 0.021657 -0.001455 - conjugated induced dipole 0.001239 0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.853326 34.510441 14.927977 - polarizability tensor 2.204024 -0.653489 0.327501 -1.701252 5.540979 -4.544585 0.766862 -3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 -0.029042 0.022595 - conjugated induced dipole 0.008031 -0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 24 - Polarizability point coords -11.016969 40.916670 8.571017 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000705 -0.000989 -0.000771 - induced dipole -0.000502 -0.006235 0.000930 - conjugated induced dipole 0.002419 -0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.521619 41.261877 3.727272 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000588 0.001925 -0.001948 - induced dipole 0.017774 -0.011888 0.014683 - conjugated induced dipole 0.014358 -0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.746409 36.553007 9.323269 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000214 0.000286 -0.000247 - induced dipole -0.063346 0.043899 0.005721 - conjugated induced dipole -0.055842 0.056799 0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.153618 35.738146 3.470142 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000052 0.000451 -0.000420 - induced dipole 0.003843 0.029042 0.022595 - conjugated induced dipole 0.008031 0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.487096 39.197647 6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000208 0.000015 -0.001195 - induced dipole 0.013189 -0.004500 0.010285 - conjugated induced dipole 0.010329 -0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.358728 43.203379 8.339860 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.001955 -0.001982 -0.001144 - induced dipole -0.002879 -0.021657 -0.001455 - conjugated induced dipole 0.001239 -0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.515775 43.040288 8.719786 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.003119 0.002230 -0.000480 - induced dipole 0.024576 0.025280 -0.002707 - conjugated induced dipole 0.021953 0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.326355 38.462762 8.341383 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000246 -0.000327 -0.000563 - induced dipole 0.004785 -0.002957 0.007603 - conjugated induced dipole 0.011858 0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.954796 42.527003 8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000402 -0.002646 -0.001142 - induced dipole 0.026692 -0.007223 0.008401 - conjugated induced dipole 0.024722 -0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.439681 41.005076 5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000352 0.000844 -0.002339 - induced dipole 0.008021 -0.001430 0.006467 - conjugated induced dipole 0.006680 -0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.977683 38.704217 8.960653 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000539 0.000333 -0.000349 - induced dipole -0.009459 0.003713 0.000482 - conjugated induced dipole -0.009703 0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.916141 37.307721 5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000127 0.000323 -0.000704 - induced dipole 0.007350 0.008201 0.009724 - conjugated induced dipole 0.006616 0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.283615 39.710013 9.317312 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000734 -0.000261 -0.000502 - induced dipole -0.032580 -0.005385 0.002398 - conjugated induced dipole -0.029267 -0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.341642 41.145150 9.184184 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.001437 0.000513 -0.000543 - induced dipole -0.009130 -0.008630 -0.003112 - conjugated induced dipole -0.008989 -0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.087400 41.666630 7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000534 -0.001227 -0.002129 - induced dipole 0.007992 0.001162 0.007068 - conjugated induced dipole 0.007504 0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.080867 39.825616 8.185563 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000715 -0.000139 -0.000516 - induced dipole -0.021085 -0.001460 0.001599 - conjugated induced dipole -0.016161 -0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.481969 37.680236 6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000033 -0.000100 -0.000683 - induced dipole 0.033173 -0.007600 0.027393 - conjugated induced dipole 0.028333 -0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.589093 39.580418 5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000297 0.000155 -0.001343 - induced dipole 0.013634 -0.005736 0.010955 - conjugated induced dipole 0.012784 -0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.328854 35.469384 8.860735 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000087 0.000288 -0.000177 - induced dipole -0.008720 0.015807 -0.002368 - conjugated induced dipole -0.007606 0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.444616 42.160009 2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.001698 0.002785 -0.001462 - induced dipole 0.001749 0.004775 0.016411 - conjugated induced dipole -0.000061 0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.090221 34.519747 2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000040 0.000428 -0.000248 - induced dipole 0.000865 0.016467 0.014862 - conjugated induced dipole 0.000106 0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.607879 43.500443 9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.003306 -0.000876 -0.000965 - induced dipole 0.004462 -0.001746 0.000735 - conjugated induced dipole 0.002994 -0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.849258 44.714057 9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.003477 -0.003626 -0.001627 - induced dipole 0.006347 -0.016593 0.000811 - conjugated induced dipole 0.007353 -0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.050888 42.606138 9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000520 -0.002636 -0.000881 - induced dipole 0.016570 -0.009874 0.021011 - conjugated induced dipole 0.018333 -0.019255 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.584314 36.720714 8.356857 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000195 0.000336 -0.000210 - induced dipole -0.046958 0.039179 -0.007441 - conjugated induced dipole -0.039937 0.045846 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.818187 41.536376 3.083473 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000599 0.002918 -0.002007 - induced dipole 0.028024 -0.017077 0.022943 - conjugated induced dipole 0.015224 -0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.792784 36.959947 8.922441 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000082 -0.000235 -0.000462 - induced dipole 0.068050 -0.015625 0.045166 - conjugated induced dipole 0.061942 0.008873 0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.188304 42.214740 3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000917 0.002831 -0.002943 - induced dipole 0.011763 0.007583 0.014002 - conjugated induced dipole 0.015109 0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.248292 35.290320 3.518027 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000070 0.000386 -0.000375 - induced dipole 0.017229 0.015360 0.023246 - conjugated induced dipole 0.008731 0.020510 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.000590 37.167293 9.040343 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000213 0.000412 -0.000237 - induced dipole -0.020830 0.022726 -0.000901 - conjugated induced dipole -0.022286 0.021511 0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.773264 36.370723 7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000076 -0.000059 -0.000430 - induced dipole 0.031823 -0.013065 0.031206 - conjugated induced dipole 0.032768 -0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.725003 43.767417 7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000958 -0.005015 -0.002137 - induced dipole 0.010155 -0.041713 0.001546 - conjugated induced dipole 0.005860 -0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.863948 42.847127 10.282389 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.002820 0.001162 -0.001202 - induced dipole -0.025817 -0.011418 -0.033335 - conjugated induced dipole -0.014981 -0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.544201 43.102270 9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.001794 -0.002233 -0.000784 - induced dipole -0.012761 -0.031001 0.001118 - conjugated induced dipole -0.007779 -0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.418827 36.062243 2.885267 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000094 0.000524 -0.000404 - induced dipole 0.009280 0.038168 0.020381 - conjugated induced dipole 0.010164 0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 25 - Polarizability point coords -4.363992 34.530435 2.886817 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 -0.006235 -0.000930 - conjugated induced dipole -0.002419 -0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.140658 34.875642 7.730563 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 -0.011888 -0.014683 - conjugated induced dipole -0.014358 -0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.634552 30.166772 2.134565 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063346 0.043899 -0.005721 - conjugated induced dipole 0.055842 0.056799 -0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.772657 29.351911 7.987693 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 0.029042 -0.022595 - conjugated induced dipole -0.008031 0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.106135 32.811412 5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 -0.004500 -0.010285 - conjugated induced dipole -0.010329 -0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.022233 36.817144 3.117975 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 -0.021657 0.001455 - conjugated induced dipole -0.001239 -0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.865186 36.654053 2.738049 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 0.025280 0.002707 - conjugated induced dipole -0.021953 0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.054606 32.076527 3.116452 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 -0.002957 -0.007603 - conjugated induced dipole -0.011858 0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.426164 36.140768 3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 -0.007223 -0.008401 - conjugated induced dipole -0.024722 -0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.058720 34.618841 6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 -0.001430 -0.006467 - conjugated induced dipole -0.006680 -0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.403278 32.317982 2.497182 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 0.003713 -0.000482 - conjugated induced dipole 0.009703 0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.464819 30.921486 6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 0.008201 -0.009724 - conjugated induced dipole -0.006616 0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.097346 33.323778 2.140523 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 -0.005385 -0.002398 - conjugated induced dipole 0.029267 -0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.039319 34.758915 2.273651 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 -0.008630 0.003112 - conjugated induced dipole 0.008989 -0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.293561 35.280395 4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 0.001162 -0.007068 - conjugated induced dipole -0.007504 0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.300094 33.439381 3.272272 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 -0.001460 -0.001599 - conjugated induced dipole 0.016161 -0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.898992 31.294001 4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 -0.007600 -0.027393 - conjugated induced dipole -0.028333 -0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.791868 33.194183 5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 -0.005736 -0.010955 - conjugated induced dipole -0.012784 -0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.052107 29.083149 2.597099 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 0.015807 0.002368 - conjugated induced dipole 0.007606 0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.063655 35.773774 9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 0.004775 -0.016411 - conjugated induced dipole 0.000061 0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.709261 28.133512 9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 0.016467 -0.014862 - conjugated induced dipole -0.000106 0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.773082 37.114208 2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 -0.001746 -0.000735 - conjugated induced dipole -0.002994 -0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.531703 38.327822 2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 -0.016593 -0.000811 - conjugated induced dipole -0.007353 -0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.330072 36.219903 2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 -0.009874 -0.021011 - conjugated induced dipole -0.018333 -0.019255 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.796647 30.334479 3.100978 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046958 0.039179 0.007441 - conjugated induced dipole 0.039937 0.045846 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.437226 35.150141 8.374362 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 -0.017077 -0.022943 - conjugated induced dipole -0.015224 -0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.588177 30.573712 2.535393 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 -0.015625 -0.045166 - conjugated induced dipole -0.061942 0.008873 -0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.807343 35.828505 7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 0.007583 -0.014002 - conjugated induced dipole -0.015109 0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.132669 28.904085 7.939807 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 0.015360 -0.023246 - conjugated induced dipole -0.008731 0.020510 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.380371 30.781058 2.417492 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020830 0.022726 0.000901 - conjugated induced dipole 0.022286 0.021511 -0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.607697 29.984488 3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 -0.013065 -0.031206 - conjugated induced dipole -0.032768 -0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.655958 37.381182 3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 -0.041713 -0.001546 - conjugated induced dipole -0.005860 -0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.517013 36.460892 1.175445 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 -0.011418 0.033335 - conjugated induced dipole 0.014981 -0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.836760 36.716035 2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 -0.031001 -0.001118 - conjugated induced dipole 0.007779 -0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.037866 29.676008 8.572568 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 0.038168 -0.020381 - conjugated induced dipole -0.010164 0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 26 - Polarizability point coords 10.544201 33.532549 -9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444129 6.305470 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000050 -0.000001 0.000012 - induced dipole 0.012761 0.031001 -0.001118 - conjugated induced dipole 0.007779 0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.188304 34.420079 -3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821479 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000036 -0.000010 -0.000003 - induced dipole -0.011763 -0.007583 -0.014002 - conjugated induced dipole -0.015109 -0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.746327 40.081745 -9.323370 - polarizability tensor 5.676900 -5.144008 -0.727143 -3.339388 4.987141 -0.427749 -0.708036 -0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000078 -0.000033 0.000029 - induced dipole 0.063351 -0.043904 -0.005722 - conjugated induced dipole 0.055846 -0.056805 -0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.248291 41.344499 -3.518027 - polarizability tensor 2.014660 1.411523 2.754674 0.096191 2.864916 1.368380 1.742511 2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000047 -0.000038 -0.000002 - induced dipole -0.017229 -0.015360 -0.023246 - conjugated induced dipole -0.008731 -0.020509 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.439681 35.629743 -5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000041 -0.000013 -0.000000 - induced dipole -0.008021 0.001430 -0.006467 - conjugated induced dipole -0.006680 0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.977683 37.930602 -8.960653 - polarizability tensor 2.247827 -1.783499 0.065362 -1.149026 2.379898 0.043699 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000072 -0.000016 0.000026 - induced dipole 0.009459 -0.003713 -0.000482 - conjugated induced dipole 0.009703 -0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.607879 33.134376 -9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000056 0.000005 0.000016 - induced dipole -0.004462 0.001746 -0.000735 - conjugated induced dipole -0.002995 0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.326355 38.172057 -8.341383 - polarizability tensor 5.018070 4.875224 1.088491 1.811907 4.579783 0.228245 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000055 -0.000020 0.000011 - induced dipole -0.004785 0.002957 -0.007603 - conjugated induced dipole -0.011858 -0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.954796 34.107816 -8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000046 -0.000005 0.000007 - induced dipole -0.026692 0.007223 -0.008401 - conjugated induced dipole -0.024722 0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.916141 39.327098 -5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000048 -0.000027 0.000002 - induced dipole -0.007350 -0.008201 -0.009724 - conjugated induced dipole -0.006616 -0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.016969 35.718149 -8.571017 - polarizability tensor 3.009104 -0.265453 0.164854 -0.392052 2.422903 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000054 -0.000009 0.000012 - induced dipole 0.000502 0.006235 -0.000930 - conjugated induced dipole -0.002419 0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.589093 37.054401 -5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522052 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000048 -0.000017 0.000003 - induced dipole -0.013634 0.005736 -0.010955 - conjugated induced dipole -0.012784 0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.080866 36.809204 -8.185563 - polarizability tensor 13.654114 -2.638427 1.355101 -2.419218 4.125882 0.076557 2.653090 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000064 -0.000011 0.000019 - induced dipole 0.021085 0.001460 -0.001599 - conjugated induced dipole 0.016161 0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.341642 35.489670 -9.184184 - polarizability tensor 2.960546 0.866100 0.523975 1.061801 5.117295 0.710667 0.733477 0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000065 -0.000002 0.000022 - induced dipole 0.009130 0.008630 0.003112 - conjugated induced dipole 0.008989 0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.481969 38.954584 -6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000049 -0.000024 0.000005 - induced dipole -0.033173 0.007600 -0.027393 - conjugated induced dipole -0.028333 0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.283615 36.924806 -9.317312 - polarizability tensor 12.949895 -2.646494 1.785361 -2.381880 4.179640 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000060 -0.000013 0.000017 - induced dipole 0.032580 0.005385 -0.002398 - conjugated induced dipole 0.029267 0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.087400 34.968190 -7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000042 -0.000010 0.000003 - induced dipole -0.007992 -0.001162 -0.007068 - conjugated induced dipole -0.007504 -0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.487096 37.437172 -6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460098 13.263287 0.923067 0.789240 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000043 -0.000018 0.000001 - induced dipole -0.013189 0.004500 -0.010285 - conjugated induced dipole -0.010329 0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.328854 41.165436 -8.860735 - polarizability tensor 2.586919 -0.528104 -0.018359 -0.362648 2.294263 -0.043707 0.109841 -0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000088 -0.000046 0.000035 - induced dipole 0.008720 -0.015807 0.002368 - conjugated induced dipole 0.007606 -0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.444616 34.474811 -2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000033 -0.000011 -0.000006 - induced dipole -0.001749 -0.004775 -0.016411 - conjugated induced dipole 0.000061 -0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.090221 42.115072 -2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000044 -0.000042 -0.000005 - induced dipole -0.000865 -0.016467 -0.014861 - conjugated induced dipole -0.000106 -0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.863949 33.787692 -10.282389 - polarizability tensor 8.609790 3.161438 4.330874 3.390209 5.869742 2.969759 2.433190 1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000060 0.000005 0.000021 - induced dipole 0.025817 0.011418 0.033335 - conjugated induced dipole 0.014981 0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.725003 32.867403 -7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000040 -0.000004 0.000003 - induced dipole -0.010155 0.041713 -0.001546 - conjugated induced dipole -0.005860 0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.849258 31.920762 -9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000050 0.000006 0.000012 - induced dipole -0.006347 0.016593 -0.000811 - conjugated induced dipole -0.007353 0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.000566 39.467504 -9.040202 - polarizability tensor 3.548722 -1.577098 0.269187 -2.005619 4.318440 0.319352 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000083 -0.000027 0.000034 - induced dipole 0.020829 -0.022725 0.000901 - conjugated induced dipole 0.022286 -0.021510 -0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.521619 35.372942 -3.727272 - polarizability tensor 5.713597 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000035 -0.000013 -0.000004 - induced dipole -0.017774 0.011888 -0.014683 - conjugated induced dipole -0.014358 0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.773264 40.264096 -7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225663 5.733018 0.256666 1.271657 0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000054 -0.000032 0.000009 - induced dipole -0.031823 0.013065 -0.031206 - conjugated induced dipole -0.032768 0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.818187 35.098443 -3.083473 - polarizability tensor 6.707221 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000039 -0.000012 -0.000004 - induced dipole -0.028024 0.017077 -0.022943 - conjugated induced dipole -0.015224 0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.418828 40.572576 -2.885267 - polarizability tensor 1.169671 1.724727 0.923947 2.191905 7.141823 4.969365 0.687892 2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000049 -0.000034 -0.000001 - induced dipole -0.009280 -0.038168 -0.020381 - conjugated induced dipole -0.010164 -0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.584419 39.914196 -8.356897 - polarizability tensor 5.399126 -5.564498 0.213556 -4.017191 5.082747 0.297192 1.393777 -0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000083 -0.000032 0.000033 - induced dipole 0.046956 -0.039177 0.007441 - conjugated induced dipole 0.039935 -0.045844 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.792784 39.674872 -8.922442 - polarizability tensor 10.702598 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000047 -0.000026 0.000005 - induced dipole -0.068050 0.015625 -0.045166 - conjugated induced dipole -0.061942 -0.008873 -0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.050888 34.028681 -9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000038 -0.000007 0.000003 - induced dipole -0.016570 0.009874 -0.021011 - conjugated induced dipole -0.018333 0.019256 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.515774 33.594532 -8.719786 - polarizability tensor 9.556647 3.699450 -1.931270 3.986422 6.261107 -1.285638 0.992071 0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000065 0.000009 0.000022 - induced dipole -0.024576 -0.025280 0.002707 - conjugated induced dipole -0.021953 -0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.358728 33.431441 -8.339860 - polarizability tensor 4.541349 2.067478 1.036870 1.580946 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000053 0.000001 0.000012 - induced dipole 0.002879 0.021657 0.001455 - conjugated induced dipole -0.001239 0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.153617 40.896674 -3.470143 - polarizability tensor 2.204025 0.653491 0.327503 1.701255 5.540977 4.544585 0.766864 3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000043 -0.000034 -0.000003 - induced dipole -0.003843 -0.029042 -0.022595 - conjugated induced dipole -0.008031 -0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 27 - Polarizability point coords 4.836760 39.918784 -2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444129 6.305470 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000000 0.000002 - induced dipole -0.012761 0.031001 0.001118 - conjugated induced dipole -0.007779 0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.807344 40.806314 -7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821479 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000005 -0.000001 0.000002 - induced dipole 0.011763 -0.007583 0.014002 - conjugated induced dipole 0.015109 -0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.634633 46.467980 -2.134465 - polarizability tensor 5.676900 5.144008 -0.727143 3.339388 4.987141 0.427749 -0.708036 0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000002 -0.000003 0.000000 - induced dipole -0.063351 -0.043904 0.005722 - conjugated induced dipole -0.055846 -0.056805 0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.132670 47.730734 -7.939808 - polarizability tensor 2.014660 -1.411523 2.754674 -0.096191 2.864916 -1.368380 1.742511 -2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000002 -0.000005 -0.000001 - induced dipole 0.017229 -0.015360 0.023246 - conjugated induced dipole 0.008731 -0.020509 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.058720 42.015978 -6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000002 0.000002 - induced dipole 0.008021 0.001430 0.006467 - conjugated induced dipole 0.006680 0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.403278 44.316837 -2.497182 - polarizability tensor 2.247827 1.783499 0.065362 1.149026 2.379898 -0.043699 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000003 0.000001 - induced dipole -0.009459 -0.003713 0.000482 - conjugated induced dipole -0.009703 -0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.773082 39.520611 -2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000000 0.000002 - induced dipole 0.004462 0.001746 0.000735 - conjugated induced dipole 0.002995 0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.054606 44.558292 -3.116452 - polarizability tensor 5.018070 -4.875224 1.088491 -1.811907 4.579783 -0.228245 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000004 0.000003 - induced dipole 0.004785 0.002957 0.007603 - conjugated induced dipole 0.011858 -0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.426164 40.494051 -3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000001 0.000003 - induced dipole 0.026692 0.007223 0.008401 - conjugated induced dipole 0.024722 0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.464819 45.713333 -6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000005 0.000001 - induced dipole 0.007350 -0.008201 0.009724 - conjugated induced dipole 0.006616 -0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.363992 42.104384 -2.886817 - polarizability tensor 3.009104 0.265453 0.164854 0.392052 2.422903 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000002 0.000003 - induced dipole -0.000502 0.006235 0.000930 - conjugated induced dipole 0.002419 0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.791868 43.440636 -5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522052 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000003 0.000002 - induced dipole 0.013634 0.005736 0.010955 - conjugated induced dipole 0.012784 0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.300094 43.195439 -3.272272 - polarizability tensor 13.654114 2.638427 1.355101 2.419218 4.125882 -0.076557 2.653090 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000002 0.000002 - induced dipole -0.021085 0.001460 0.001599 - conjugated induced dipole -0.016161 0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.039319 41.875905 -2.273651 - polarizability tensor 2.960546 -0.866100 0.523975 -1.061801 5.117295 -0.710667 0.733477 -0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000002 0.000001 - induced dipole -0.009130 0.008630 -0.003112 - conjugated induced dipole -0.008989 0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.898992 45.340819 -4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000005 0.000002 - induced dipole 0.033173 0.007600 0.027393 - conjugated induced dipole 0.028333 0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.097346 43.311041 -2.140523 - polarizability tensor 12.949895 2.646494 1.785361 2.381880 4.179640 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000003 0.000002 - induced dipole -0.032580 0.005385 0.002398 - conjugated induced dipole -0.029267 0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.293561 41.354425 -4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000002 0.000003 - induced dipole 0.007992 -0.001162 0.007068 - conjugated induced dipole 0.007504 -0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.106135 43.823407 -5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460098 13.263287 -0.923067 0.789240 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000004 0.000002 - induced dipole 0.013189 0.004500 0.010285 - conjugated induced dipole 0.010329 0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.052107 47.551671 -2.597100 - polarizability tensor 2.586919 0.528104 -0.018359 0.362648 2.294263 0.043707 0.109841 0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000001 -0.000003 -0.000000 - induced dipole -0.008720 -0.015807 -0.002368 - conjugated induced dipole -0.007606 -0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.063655 40.861046 -9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000005 -0.000000 0.000003 - induced dipole 0.001749 -0.004775 0.016411 - conjugated induced dipole -0.000061 -0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.709261 48.501307 -9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000004 -0.000001 - induced dipole 0.000865 -0.016467 0.014861 - conjugated induced dipole 0.000106 -0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.517012 40.173927 -1.175445 - polarizability tensor 8.609790 -3.161438 4.330874 -3.390209 5.869742 -2.969759 2.433190 -1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000001 0.000001 - induced dipole -0.025817 0.011418 -0.033335 - conjugated induced dipole -0.014981 0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.655958 39.253638 -3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 0.000000 0.000003 - induced dipole 0.010155 0.041713 0.001546 - conjugated induced dipole 0.005860 0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.531703 38.306997 -2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 0.000000 0.000002 - induced dipole 0.006347 0.016593 0.000811 - conjugated induced dipole 0.007353 0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.380395 45.853739 -2.417633 - polarizability tensor 3.548722 1.577098 0.269187 2.005619 4.318440 -0.319352 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000002 -0.000003 0.000000 - induced dipole -0.020829 -0.022725 -0.000901 - conjugated induced dipole -0.022286 -0.021510 0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.140658 41.759177 -7.730563 - polarizability tensor 5.713597 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000005 -0.000002 0.000002 - induced dipole 0.017774 0.011888 0.014683 - conjugated induced dipole 0.014358 0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.607697 46.650331 -3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225663 5.733018 -0.256666 1.271657 -0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000002 -0.000006 0.000001 - induced dipole 0.031823 0.013065 0.031206 - conjugated induced dipole 0.032768 0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.437226 41.484678 -8.374362 - polarizability tensor 6.707221 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000001 0.000002 - induced dipole 0.028024 0.017077 0.022943 - conjugated induced dipole 0.015224 0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.037867 46.958811 -8.572568 - polarizability tensor 1.169671 -1.724727 0.923947 -2.191905 7.141823 -4.969365 0.687892 -2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000004 -0.000001 - induced dipole 0.009280 -0.038168 0.020381 - conjugated induced dipole 0.010164 -0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.796542 46.300431 -3.100937 - polarizability tensor 5.399126 5.564498 0.213556 4.017191 5.082747 -0.297192 1.393777 0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000002 -0.000003 0.000000 - induced dipole -0.046956 -0.039177 -0.007441 - conjugated induced dipole -0.039935 -0.045844 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.588177 46.061107 -2.535393 - polarizability tensor 10.702598 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000007 0.000003 - induced dipole 0.068050 0.015625 0.045166 - conjugated induced dipole 0.061942 -0.008873 0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.330072 40.414916 -2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000000 0.000004 - induced dipole 0.016570 0.009874 0.021011 - conjugated induced dipole 0.018333 0.019256 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.865186 39.980766 -2.738048 - polarizability tensor 9.556647 -3.699450 -1.931270 -3.986422 6.261107 1.285638 0.992071 -0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000001 0.000001 - induced dipole 0.024576 -0.025280 -0.002707 - conjugated induced dipole 0.021953 -0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.022233 39.817676 -3.117975 - polarizability tensor 4.541349 -2.067478 1.036870 -1.580946 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000001 0.000002 - induced dipole -0.002879 0.021657 -0.001455 - conjugated induced dipole 0.001239 0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.772656 47.282909 -7.987692 - polarizability tensor 2.204025 -0.653491 0.327503 -1.701255 5.540977 -4.544585 0.766864 -3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000005 -0.000001 - induced dipole 0.003843 -0.029042 0.022595 - conjugated induced dipole 0.008031 -0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 28 - Polarizability point coords -19.097640 40.916670 31.486687 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 -0.006235 0.000930 - conjugated induced dipole 0.002419 -0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -26.602290 41.261877 26.642941 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 -0.011888 0.014683 - conjugated induced dipole 0.014358 -0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.827080 36.553007 32.238939 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063346 0.043899 0.005721 - conjugated induced dipole -0.055842 0.056799 0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.234289 35.738146 26.385811 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 0.029042 0.022595 - conjugated induced dipole 0.008031 0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.567767 39.197647 29.220750 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 -0.004500 0.010285 - conjugated induced dipole 0.010329 -0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.439399 43.203379 31.255529 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 -0.021657 -0.001455 - conjugated induced dipole 0.001239 -0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.596446 43.040288 31.635455 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 0.025280 -0.002707 - conjugated induced dipole 0.021953 0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.407026 38.462762 31.257052 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 -0.002957 0.007603 - conjugated induced dipole 0.011858 0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -21.035468 42.527003 31.342289 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 -0.007223 0.008401 - conjugated induced dipole 0.024722 -0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.520352 41.005076 28.020022 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 -0.001430 0.006467 - conjugated induced dipole 0.006680 -0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.058354 38.704217 31.876322 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 0.003713 0.000482 - conjugated induced dipole -0.009703 0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.996813 37.307721 27.916692 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 0.008201 0.009724 - conjugated induced dipole 0.006616 0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.364286 39.710013 32.232981 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 -0.005385 0.002398 - conjugated induced dipole -0.029267 -0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -15.422313 41.145150 32.099853 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 -0.008630 -0.003112 - conjugated induced dipole -0.008989 -0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.168071 41.666630 29.965816 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 0.001162 0.007068 - conjugated induced dipole 0.007504 0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.161538 39.825616 31.101232 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 -0.001460 0.001599 - conjugated induced dipole -0.016161 -0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -21.562640 37.680236 29.886424 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 -0.007600 0.027393 - conjugated induced dipole 0.028333 -0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.669764 39.580418 28.521541 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 -0.005736 0.010955 - conjugated induced dipole 0.012784 -0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.409525 35.469384 31.776405 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 0.015807 -0.002368 - conjugated induced dipole -0.007606 0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -27.525287 42.160009 25.335067 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 0.004775 0.016411 - conjugated induced dipole -0.000061 0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -24.170893 34.519747 25.009608 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 0.016467 0.014862 - conjugated induced dipole 0.000106 0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.688550 43.500443 32.106919 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 -0.001746 0.000735 - conjugated induced dipole 0.002994 -0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.929929 44.714057 31.993285 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 -0.016593 0.000811 - conjugated induced dipole 0.007353 -0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.131560 42.606138 31.935679 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 -0.009874 0.021011 - conjugated induced dipole 0.018333 -0.019255 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.664985 36.720714 31.272526 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046958 0.039179 -0.007441 - conjugated induced dipole -0.039937 0.045846 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -25.898858 41.536376 25.999142 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 -0.017077 0.022943 - conjugated induced dipole 0.015224 -0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -20.873455 36.959947 31.838111 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 -0.015625 0.045166 - conjugated induced dipole 0.061942 0.008873 0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -26.268976 42.214740 26.657170 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 0.007583 0.014002 - conjugated induced dipole 0.015109 0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.328963 35.290320 26.433697 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 0.015360 0.023246 - conjugated induced dipole 0.008731 0.020510 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.081261 37.167293 31.956012 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020830 0.022726 -0.000901 - conjugated induced dipole -0.022286 0.021511 0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.853935 36.370723 30.590634 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 -0.013065 0.031206 - conjugated induced dipole 0.032768 -0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -22.805674 43.767417 30.716646 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 -0.041713 0.001546 - conjugated induced dipole 0.005860 -0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.944619 42.847127 33.198059 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 -0.011418 -0.033335 - conjugated induced dipole -0.014981 -0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.624872 43.102270 32.281745 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 -0.031001 0.001118 - conjugated induced dipole -0.007779 -0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -23.499498 36.062243 25.800936 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 0.038168 0.020381 - conjugated induced dipole 0.010164 0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 29 - Polarizability point coords -12.444663 34.530435 25.802487 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 -0.006235 -0.000930 - conjugated induced dipole -0.002419 -0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.940013 34.875642 30.646232 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 -0.011888 -0.014683 - conjugated induced dipole -0.014358 -0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.715223 30.166772 25.050235 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063346 0.043899 -0.005721 - conjugated induced dipole 0.055842 0.056799 -0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.308014 29.351911 30.903362 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 0.029042 -0.022595 - conjugated induced dipole -0.008031 0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.974536 32.811412 28.068423 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 -0.004500 -0.010285 - conjugated induced dipole -0.010329 -0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.102904 36.817144 26.033644 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 -0.021657 0.001455 - conjugated induced dipole -0.001239 -0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.945857 36.654053 25.653718 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 0.025280 0.002707 - conjugated induced dipole -0.021953 0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.135277 32.076527 26.032121 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 -0.002957 -0.007603 - conjugated induced dipole -0.011858 0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.506836 36.140768 25.946884 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 -0.007223 -0.008401 - conjugated induced dipole -0.024722 -0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.021951 34.618841 29.269151 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 -0.001430 -0.006467 - conjugated induced dipole -0.006680 -0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.483949 32.317982 25.412851 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 0.003713 -0.000482 - conjugated induced dipole 0.009703 0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.545491 30.921486 29.372481 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 0.008201 -0.009724 - conjugated induced dipole -0.006616 0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.178017 33.323778 25.056192 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 -0.005385 -0.002398 - conjugated induced dipole 0.029267 -0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.119990 34.758915 25.189320 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 -0.008630 0.003112 - conjugated induced dipole 0.008989 -0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.374232 35.280395 27.323358 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 0.001162 -0.007068 - conjugated induced dipole -0.007504 0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.380765 33.439381 26.187941 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 -0.001460 -0.001599 - conjugated induced dipole 0.016161 -0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.979663 31.294001 27.402749 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 -0.007600 -0.027393 - conjugated induced dipole -0.028333 -0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.872539 33.194183 28.767632 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 -0.005736 -0.010955 - conjugated induced dipole -0.012784 -0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -19.132779 29.083149 25.512769 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 0.015807 0.002368 - conjugated induced dipole 0.007606 0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.017016 35.773774 31.954106 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 0.004775 -0.016411 - conjugated induced dipole 0.000061 0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.371411 28.133512 32.279566 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 0.016467 -0.014862 - conjugated induced dipole -0.000106 0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -14.853753 37.114208 25.182254 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 -0.001746 -0.000735 - conjugated induced dipole -0.002994 -0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -13.612374 38.327822 25.295888 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 -0.016593 -0.000811 - conjugated induced dipole -0.007353 -0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.410744 36.219903 25.353494 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 -0.009874 -0.021011 - conjugated induced dipole -0.018333 -0.019255 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -17.877318 30.334479 26.016647 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046958 0.039179 0.007441 - conjugated induced dipole 0.039937 0.045846 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.643445 35.150141 31.290032 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 -0.017077 -0.022943 - conjugated induced dipole -0.015224 -0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.668848 30.573712 25.451063 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 -0.015625 -0.045166 - conjugated induced dipole -0.061942 0.008873 -0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.273328 35.828505 30.632003 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 0.007583 -0.014002 - conjugated induced dipole -0.015109 0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.213340 28.904085 30.855477 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 0.015360 -0.023246 - conjugated induced dipole -0.008731 0.020510 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -18.461042 30.781058 25.333161 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020830 0.022726 0.000901 - conjugated induced dipole 0.022286 0.021511 -0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.688368 29.984488 26.698539 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 -0.013065 -0.031206 - conjugated induced dipole -0.032768 -0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.736629 37.381182 26.572528 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 -0.041713 -0.001546 - conjugated induced dipole -0.005860 -0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -16.597684 36.460892 24.091115 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 -0.011418 0.033335 - conjugated induced dipole 0.014981 -0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.917431 36.716035 25.007429 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 -0.031001 -0.001118 - conjugated induced dipole 0.007779 -0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.042805 29.676008 31.488237 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 0.038168 -0.020381 - conjugated induced dipole -0.010164 0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 30 - Polarizability point coords 2.463531 33.532549 13.549594 - polarizability tensor 4.528424 1.917551 0.356759 1.444128 6.305472 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 0.031001 -0.001118 - conjugated induced dipole 0.007779 0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.107633 34.420082 19.174170 - polarizability tensor 3.614271 -1.113333 2.917217 -0.029793 1.821479 0.641372 2.940226 -0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 -0.007583 -0.014002 - conjugated induced dipole -0.015109 -0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.334346 40.081742 13.592298 - polarizability tensor 5.676904 -5.144008 -0.727141 -3.339388 4.987137 -0.427750 -0.708035 -0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063351 -0.043904 -0.005722 - conjugated induced dipole 0.055846 -0.056805 -0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.167617 41.344500 19.397643 - polarizability tensor 2.014659 1.411522 2.754673 0.096191 2.864917 1.368381 1.742510 2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 -0.015360 -0.023246 - conjugated induced dipole -0.008731 -0.020509 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.359009 35.629745 17.811318 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536299 1.326286 -0.648852 1.549497 -0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 0.001430 -0.006467 - conjugated induced dipole -0.006680 0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.102989 37.930600 13.955016 - polarizability tensor 2.247828 -1.783499 0.065363 -1.149026 2.379896 0.043699 0.251241 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 -0.003713 -0.000482 - conjugated induced dipole 0.009703 -0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.527209 33.134375 13.724420 - polarizability tensor 5.239487 -1.239561 0.807464 -0.101560 1.234380 0.089842 1.195631 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 0.001746 -0.000735 - conjugated induced dipole -0.002995 0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.245682 38.172057 14.574286 - polarizability tensor 5.018067 4.875224 1.088491 1.811907 4.579786 0.228246 1.487331 1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 0.002957 -0.007603 - conjugated induced dipole -0.011858 -0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.874126 34.107816 14.489050 - polarizability tensor 9.182809 -1.751286 0.995508 -0.084237 1.828484 0.387734 2.027093 0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 0.007223 -0.008401 - conjugated induced dipole -0.024722 0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.835468 39.327100 17.914647 - polarizability tensor 1.671051 0.572015 1.296469 0.542823 2.162529 1.769890 1.031019 1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 -0.008201 -0.009724 - conjugated induced dipole -0.006616 -0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.936298 35.718149 14.344652 - polarizability tensor 3.009105 -0.265453 0.164855 -0.392052 2.422902 0.078852 0.571863 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 0.006235 -0.000930 - conjugated induced dipole -0.002419 0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.508421 37.054402 17.309798 - polarizability tensor 5.263037 -4.454329 1.663069 -4.279634 13.403258 0.812801 1.522053 0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 0.005736 -0.010955 - conjugated induced dipole -0.012784 0.003817 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.000195 36.809202 14.730106 - polarizability tensor 13.654116 -2.638423 1.355104 -2.419214 4.125879 0.076557 2.653092 -0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 0.001460 -0.001599 - conjugated induced dipole 0.016161 0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.739029 35.489667 13.731485 - polarizability tensor 2.960545 0.866099 0.523975 1.061800 5.117296 0.710667 0.733477 0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 0.008630 0.003112 - conjugated induced dipole 0.008989 0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.401296 38.954584 15.944915 - polarizability tensor 5.617929 -1.381554 4.877276 -1.251780 2.735770 -1.290944 3.659516 -1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 0.007600 -0.027393 - conjugated induced dipole -0.028333 0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.202943 36.924805 13.598357 - polarizability tensor 12.949896 -2.646490 1.785363 -2.381876 4.179637 -0.329227 2.420663 -0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 0.005385 -0.002398 - conjugated induced dipole 0.029267 0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.006729 34.968191 15.865524 - polarizability tensor 3.040417 1.393146 2.596746 0.925311 4.759664 3.665080 1.764101 3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 -0.001162 -0.007068 - conjugated induced dipole -0.007504 -0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.406423 37.437174 16.610589 - polarizability tensor 4.688607 -4.661428 1.698768 -4.460102 13.263283 0.923066 0.789241 0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 0.004500 -0.010285 - conjugated induced dipole -0.010329 0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.751820 41.165432 14.054933 - polarizability tensor 2.586920 -0.528103 -0.018359 -0.362647 2.294262 -0.043707 0.109841 -0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 -0.015807 0.002368 - conjugated induced dipole 0.007606 -0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.363944 34.474814 20.496273 - polarizability tensor 2.625149 -0.213208 0.424935 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 -0.004775 -0.016411 - conjugated induced dipole 0.000061 -0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.009546 42.115074 20.821732 - polarizability tensor 2.080856 0.280706 0.149350 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 -0.016467 -0.014861 - conjugated induced dipole -0.000106 -0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.216721 33.787690 12.633279 - polarizability tensor 8.609786 3.161439 4.330873 3.390210 5.869745 2.969762 2.433189 1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 0.011418 0.033335 - conjugated induced dipole 0.014981 0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.644333 32.867404 15.114694 - polarizability tensor 5.800146 -0.752295 1.186095 0.172145 7.005037 0.548345 0.964192 0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 0.041713 -0.001546 - conjugated induced dipole -0.005860 0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.768589 31.920761 13.838054 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321947 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 0.016593 -0.000811 - conjugated induced dipole -0.007353 0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.080107 39.467501 13.875466 - polarizability tensor 3.548724 -1.577098 0.269188 -2.005619 4.318439 0.319351 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020829 -0.022725 0.000901 - conjugated induced dipole 0.022286 -0.021510 -0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.440947 35.372946 19.188399 - polarizability tensor 5.713598 -1.433755 3.432521 -2.871854 2.858065 -3.181668 3.126669 -2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 0.011888 -0.014683 - conjugated induced dipole -0.014358 0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.692591 40.264096 15.240704 - polarizability tensor 6.533271 0.444461 1.547291 -1.225663 5.733017 0.256666 1.271658 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 0.013065 -0.031206 - conjugated induced dipole -0.032768 0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.737515 35.098446 19.832198 - polarizability tensor 6.707222 -2.929001 4.115173 -3.681834 2.332214 -2.837643 2.110817 -1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 0.017077 -0.022943 - conjugated induced dipole -0.015224 0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.338154 40.572578 20.030403 - polarizability tensor 1.169669 1.724724 0.923944 2.191901 7.141826 4.969366 0.687890 2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 -0.038168 -0.020381 - conjugated induced dipole -0.010164 -0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.496254 39.914193 14.558771 - polarizability tensor 5.399130 -5.564497 0.213557 -4.017191 5.082742 0.297191 1.393778 -0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046956 -0.039177 0.007441 - conjugated induced dipole 0.039935 -0.045844 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.712111 39.674873 13.993228 - polarizability tensor 10.702596 1.789313 3.005774 -0.514549 5.742470 -3.210321 2.108866 -0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 0.015625 -0.045166 - conjugated induced dipole -0.061942 -0.008873 -0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.970218 34.028682 13.895660 - polarizability tensor 8.115953 0.753025 -0.167711 1.550833 6.978558 4.365403 0.764813 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 0.009874 -0.021011 - conjugated induced dipole -0.018333 0.019256 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.564896 33.594529 14.195882 - polarizability tensor 9.556643 3.699452 -1.931269 3.986424 6.261110 -1.285638 0.992072 0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 -0.025280 0.002707 - conjugated induced dipole -0.021953 -0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.278058 33.431440 14.575810 - polarizability tensor 4.541347 2.067477 1.036870 1.580945 6.187413 0.395977 1.497097 1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 0.021657 0.001455 - conjugated induced dipole -0.001239 0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.072943 40.896676 19.445527 - polarizability tensor 2.204024 0.653489 0.327501 1.701252 5.540979 4.544585 0.766862 3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 -0.029042 -0.022595 - conjugated induced dipole -0.008031 -0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 31 - Polarizability point coords -3.243914 39.918783 20.823910 - polarizability tensor 4.528424 -1.917551 0.356759 -1.444128 6.305472 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000152 -0.000165 -0.000171 - induced dipole -0.012761 0.031001 0.001118 - conjugated induced dipole -0.007779 0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.888016 40.806317 15.199334 - polarizability tensor 3.614271 1.113333 2.917217 0.029793 1.821479 -0.641372 2.940226 0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000382 -0.000729 -0.000039 - induced dipole 0.011763 -0.007583 0.014002 - conjugated induced dipole 0.015109 -0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.553962 46.467977 20.781206 - polarizability tensor 5.676904 5.144008 -0.727141 3.339388 4.987137 0.427750 -0.708035 0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000167 -0.000314 -0.000142 - induced dipole -0.063351 -0.043904 0.005722 - conjugated induced dipole -0.055846 -0.056805 0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.948000 47.730735 14.975861 - polarizability tensor 2.014659 -1.411522 2.754673 -0.096191 2.864917 -1.368381 1.742510 -2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.002138 -0.002998 0.001487 - induced dipole 0.017229 -0.015360 0.023246 - conjugated induced dipole 0.008731 -0.020509 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -9.139393 42.015980 16.562186 - polarizability tensor 2.644773 0.420648 2.214495 0.536299 1.326286 0.648852 1.549497 0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000527 -0.000690 -0.000058 - induced dipole 0.008021 0.001430 0.006467 - conjugated induced dipole 0.006680 0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.322606 44.316835 20.418488 - polarizability tensor 2.247828 1.783499 0.065363 1.149026 2.379896 -0.043699 0.251241 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000145 -0.000264 -0.000237 - induced dipole -0.009459 -0.003713 0.000482 - conjugated induced dipole -0.009703 -0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.307592 39.520610 20.649084 - polarizability tensor 5.239487 1.239561 0.807464 0.101560 1.234380 -0.089842 1.195631 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000102 -0.000114 -0.000194 - induced dipole 0.004462 0.001746 0.000735 - conjugated induced dipole 0.002995 0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.026065 44.558292 19.799218 - polarizability tensor 5.018067 -4.875224 1.088491 -1.811907 4.579786 -0.228246 1.487331 -1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000377 -0.000458 -0.000190 - induced dipole 0.004785 0.002957 0.007603 - conjugated induced dipole 0.011858 -0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.654509 40.494051 19.884454 - polarizability tensor 9.182809 1.751286 0.995508 0.084237 1.828484 -0.387734 2.027093 -0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000238 -0.000256 -0.000158 - induced dipole 0.026692 0.007223 0.008401 - conjugated induced dipole 0.024722 0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.615851 45.713335 16.458857 - polarizability tensor 1.671051 -0.572015 1.296469 -0.542823 2.162529 -1.769890 1.031019 -1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.001145 -0.001366 0.000125 - induced dipole 0.007350 -0.008201 0.009724 - conjugated induced dipole 0.006616 -0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.716681 42.104384 20.028852 - polarizability tensor 3.009105 0.265453 0.164855 0.392052 2.422902 -0.078852 0.571863 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000249 -0.000267 -0.000227 - induced dipole -0.000502 0.006235 0.000930 - conjugated induced dipole 0.002419 0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.288804 43.440637 17.063706 - polarizability tensor 5.263037 4.454329 1.663069 4.279634 13.403258 -0.812801 1.522053 -0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000720 -0.000702 -0.000218 - induced dipole 0.013634 0.005736 0.010955 - conjugated induced dipole 0.012784 0.003817 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.780578 43.195437 19.643398 - polarizability tensor 13.654116 2.638423 1.355104 2.419214 4.125879 -0.076557 2.653092 0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000211 -0.000264 -0.000322 - induced dipole -0.021085 0.001460 0.001599 - conjugated induced dipole -0.016161 0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.041354 41.875902 20.642019 - polarizability tensor 2.960545 -0.866099 0.523975 -1.061800 5.117296 -0.710667 0.733477 -0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000107 -0.000165 -0.000224 - induced dipole -0.009130 0.008630 -0.003112 - conjugated induced dipole -0.008989 0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -6.181679 45.340819 18.428589 - polarizability tensor 5.617929 1.381554 4.877276 1.251780 2.735770 1.290944 3.659516 1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000651 -0.000781 -0.000055 - induced dipole 0.033173 0.007600 0.027393 - conjugated induced dipole 0.028333 0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.983327 43.311040 20.775147 - polarizability tensor 12.949896 2.646490 1.785363 2.381876 4.179637 0.329227 2.420663 0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000205 -0.000273 -0.000203 - induced dipole -0.032580 0.005385 0.002398 - conjugated induced dipole -0.029267 0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.787112 41.354426 18.507980 - polarizability tensor 3.040417 -1.393146 2.596746 -0.925311 4.759664 -3.665080 1.764101 -3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000353 -0.000428 -0.000106 - induced dipole 0.007992 -0.001162 0.007068 - conjugated induced dipole 0.007504 -0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.186806 43.823409 17.762915 - polarizability tensor 4.688607 4.661428 1.698768 4.460102 13.263283 -0.923066 0.789241 -0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000576 -0.000783 0.000049 - induced dipole 0.013189 0.004500 0.010285 - conjugated induced dipole 0.010329 0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.971437 47.551667 20.318571 - polarizability tensor 2.586920 0.528103 -0.018359 0.362647 2.294262 0.043707 0.109841 0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000157 -0.000317 -0.000118 - induced dipole -0.008720 -0.015807 -0.002368 - conjugated induced dipole -0.007606 -0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -12.144327 40.861049 13.877231 - polarizability tensor 2.625149 0.213208 0.424935 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000295 -0.000923 -0.000020 - induced dipole 0.001749 -0.004775 0.016411 - conjugated induced dipole -0.000061 -0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.789929 48.501309 13.551772 - polarizability tensor 2.080856 -0.280706 0.149350 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.002530 -0.005261 0.005055 - induced dipole 0.000865 -0.016467 0.014861 - conjugated induced dipole 0.000106 -0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.436338 40.173925 21.740225 - polarizability tensor 8.609786 -3.161439 4.330873 -3.390210 5.869745 -2.969762 2.433189 -1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000076 -0.000119 -0.000153 - induced dipole -0.025817 0.011418 -0.033335 - conjugated induced dipole -0.014981 0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.424716 39.253639 19.258810 - polarizability tensor 5.800146 0.752295 1.186095 -0.172145 7.005037 -0.548345 0.964192 -0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000219 -0.000264 -0.000120 - induced dipole 0.010155 0.041713 0.001546 - conjugated induced dipole 0.005860 0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -2.548972 38.306996 20.535450 - polarizability tensor 2.238895 0.092051 0.189597 0.321947 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000109 -0.000106 -0.000172 - induced dipole 0.006347 0.016593 0.000811 - conjugated induced dipole 0.007353 0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.299723 45.853736 20.498038 - polarizability tensor 3.548724 1.577098 0.269188 2.005619 4.318439 -0.319351 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000122 -0.000277 -0.000176 - induced dipole -0.020829 -0.022725 -0.000901 - conjugated induced dipole -0.022286 -0.021510 0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -11.221331 41.759181 15.185105 - polarizability tensor 5.713598 1.433755 3.432521 2.871854 2.858065 3.181668 3.126669 2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000386 -0.000919 0.000083 - induced dipole 0.017774 0.011888 0.014683 - conjugated induced dipole 0.014358 0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.472974 46.650331 19.132800 - polarizability tensor 6.533271 -0.444461 1.547291 1.225663 5.733017 -0.256666 1.271658 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000576 -0.000737 -0.000052 - induced dipole 0.031823 0.013065 0.031206 - conjugated induced dipole 0.032768 0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -10.517899 41.484681 14.541306 - polarizability tensor 6.707222 2.929001 4.115173 3.681834 2.332214 2.837643 2.110817 1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000547 -0.000888 -0.000048 - induced dipole 0.028024 0.017077 0.022943 - conjugated induced dipole 0.015224 0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.118537 46.958813 14.343101 - polarizability tensor 1.169669 -1.724724 0.923944 -2.191901 7.141826 -4.969366 0.687890 -2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.002622 -0.003224 0.000958 - induced dipole 0.009280 -0.038168 0.020381 - conjugated induced dipole 0.010164 -0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.715871 46.300428 19.814733 - polarizability tensor 5.399130 5.564497 0.213557 4.017191 5.082742 -0.297191 1.393778 0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000146 -0.000338 -0.000223 - induced dipole -0.046956 -0.039177 -0.007441 - conjugated induced dipole -0.039935 -0.045844 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -5.492494 46.061107 20.380276 - polarizability tensor 10.702596 -1.789313 3.005774 0.514549 5.742470 3.210321 2.108866 0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000420 -0.000583 0.000114 - induced dipole 0.068050 0.015625 0.045166 - conjugated induced dipole 0.061942 -0.008873 0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -7.750601 40.414917 20.477844 - polarizability tensor 8.115953 -0.753025 -0.167711 -1.550833 6.978558 -4.365403 0.764813 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000204 -0.000314 -0.000042 - induced dipole 0.016570 0.009874 0.021011 - conjugated induced dipole 0.018333 0.019256 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.784513 39.980764 20.177622 - polarizability tensor 9.556643 -3.699452 -1.931269 -3.986424 6.261110 1.285638 0.992072 -0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000057 -0.000091 -0.000216 - induced dipole 0.024576 -0.025280 -0.002707 - conjugated induced dipole 0.021953 -0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.058441 39.817675 19.797694 - polarizability tensor 4.541347 -2.067477 1.036870 -1.580945 6.187413 -0.395977 1.497097 -1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000162 -0.000143 -0.000231 - induced dipole -0.002879 0.021657 -0.001455 - conjugated induced dipole 0.001239 0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -8.853326 47.282911 14.927977 - polarizability tensor 2.204024 -0.653489 0.327501 -1.701252 5.540979 -4.544585 0.766862 -3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.001529 -0.002840 0.001771 - induced dipole 0.003843 -0.029042 0.022595 - conjugated induced dipole 0.008031 -0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 32 - Polarizability point coords 11.664279 2.599261 8.571017 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 -0.006235 0.000930 - conjugated induced dipole 0.002419 -0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.159630 2.944467 3.727272 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 -0.011888 0.014683 - conjugated induced dipole 0.014358 -0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.934840 -1.764403 9.323269 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063346 0.043899 0.005721 - conjugated induced dipole -0.055842 0.056799 0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.527631 -2.579263 3.470142 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 0.029042 0.022595 - conjugated induced dipole 0.008031 0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.194153 0.880237 6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 -0.004500 0.010285 - conjugated induced dipole 0.010329 -0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.322521 4.885969 8.339860 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 -0.021657 -0.001455 - conjugated induced dipole 0.001239 -0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.165474 4.722878 8.719786 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 0.025280 -0.002707 - conjugated induced dipole 0.021953 0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.354894 0.145353 8.341383 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 -0.002957 0.007603 - conjugated induced dipole 0.011858 0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.726452 4.209593 8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 -0.007223 0.008401 - conjugated induced dipole 0.024722 -0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.241568 2.687667 5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 -0.001430 0.006467 - conjugated induced dipole 0.006680 -0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.703566 0.386808 8.960653 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 0.003713 0.000482 - conjugated induced dipole -0.009703 0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.765107 -1.009688 5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 0.008201 0.009724 - conjugated induced dipole 0.006616 0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.397634 1.392603 9.317312 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 -0.005385 0.002398 - conjugated induced dipole -0.029267 -0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.339607 2.827740 9.184184 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 -0.008630 -0.003112 - conjugated induced dipole -0.008989 -0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.593849 3.349220 7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 0.001162 0.007068 - conjugated induced dipole 0.007504 0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.600382 1.508206 8.185563 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 -0.001460 0.001599 - conjugated induced dipole -0.016161 -0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.199280 -0.637174 6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 -0.007600 0.027393 - conjugated induced dipole 0.028333 -0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.092155 1.263009 5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 -0.005736 0.010955 - conjugated induced dipole 0.012784 -0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.352395 -2.848026 8.860735 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 0.015807 -0.002368 - conjugated induced dipole -0.007606 0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.236633 3.842599 2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 0.004775 0.016411 - conjugated induced dipole -0.000061 0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.591027 -3.797662 2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 0.016467 0.014862 - conjugated induced dipole 0.000106 0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.073370 5.183033 9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 -0.001746 0.000735 - conjugated induced dipole 0.002994 -0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.831991 6.396648 9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 -0.016593 0.000811 - conjugated induced dipole 0.007353 -0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.630360 4.288729 9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 -0.009874 0.021011 - conjugated induced dipole 0.018333 -0.019255 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.096935 -1.596696 8.356857 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046958 0.039179 -0.007441 - conjugated induced dipole -0.039937 0.045846 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.863062 3.218967 3.083473 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 -0.017077 0.022943 - conjugated induced dipole 0.015224 -0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.888465 -1.357463 8.922441 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 -0.015625 0.045166 - conjugated induced dipole 0.061942 0.008873 0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.492944 3.897331 3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 0.007583 0.014002 - conjugated induced dipole 0.015109 0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.432957 -3.027089 3.518027 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 0.015360 0.023246 - conjugated induced dipole 0.008731 0.020510 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.680659 -1.150117 9.040343 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020830 0.022726 -0.000901 - conjugated induced dipole -0.022286 0.021511 0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.907985 -1.946686 7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 -0.013065 0.031206 - conjugated induced dipole 0.032768 -0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.956246 5.450007 7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 -0.041713 0.001546 - conjugated induced dipole 0.005860 -0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.817300 4.529718 10.282389 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 -0.011418 -0.033335 - conjugated induced dipole -0.014981 -0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.137048 4.784860 9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 -0.031001 0.001118 - conjugated induced dipole -0.007779 -0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.262422 -2.255167 2.885267 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 0.038168 0.020381 - conjugated induced dipole 0.010164 0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 33 - Polarizability point coords 18.317257 -3.786974 2.886817 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000012 -0.000064 -0.000023 - induced dipole 0.000502 -0.006235 -0.000930 - conjugated induced dipole -0.002419 -0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.821907 -3.441768 7.730563 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000008 -0.000032 -0.000017 - induced dipole -0.017774 -0.011888 -0.014683 - conjugated induced dipole -0.014358 -0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.046697 -8.150638 2.134565 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000087 -0.000065 -0.000001 - induced dipole 0.063346 0.043899 -0.005721 - conjugated induced dipole 0.055842 0.056799 -0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.453906 -8.965498 7.987693 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000011 -0.000032 -0.000018 - induced dipole -0.003843 0.029042 -0.022595 - conjugated induced dipole -0.008031 0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.787384 -5.505998 5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000005 -0.000039 -0.000019 - induced dipole -0.013189 -0.004500 -0.010285 - conjugated induced dipole -0.010329 -0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.659016 -1.500266 3.117975 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000005 -0.000074 -0.000028 - induced dipole 0.002879 -0.021657 0.001455 - conjugated induced dipole -0.001239 -0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.816063 -1.663357 2.738049 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000008 -0.000120 -0.000030 - induced dipole -0.024576 0.025280 0.002707 - conjugated induced dipole -0.021953 0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.626643 -6.240882 3.116452 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000025 -0.000053 -0.000019 - induced dipole -0.004785 -0.002957 -0.007603 - conjugated induced dipole -0.011858 0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.255084 -2.176641 3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000004 -0.000054 -0.000024 - induced dipole -0.026692 -0.007223 -0.008401 - conjugated induced dipole -0.024722 -0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.739969 -3.698568 6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000004 -0.000039 -0.000019 - induced dipole -0.008021 -0.001430 -0.006467 - conjugated induced dipole -0.006680 -0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.277971 -5.999427 2.497182 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000059 -0.000082 -0.000013 - induced dipole 0.009459 0.003713 -0.000482 - conjugated induced dipole 0.009703 0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.216429 -7.395923 6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000012 -0.000038 -0.000019 - induced dipole -0.007350 0.008201 -0.009724 - conjugated induced dipole -0.006616 0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.583903 -4.993632 2.140523 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000029 -0.000070 -0.000019 - induced dipole 0.032580 -0.005385 -0.002398 - conjugated induced dipole 0.029267 -0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.641930 -3.558495 2.273651 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000030 -0.000097 -0.000021 - induced dipole 0.009130 -0.008630 0.003112 - conjugated induced dipole 0.008989 -0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.387688 -3.037015 4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000003 -0.000044 -0.000021 - induced dipole -0.007992 0.001162 -0.007068 - conjugated induced dipole -0.007504 0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.381154 -4.878029 3.272272 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000031 -0.000075 -0.000021 - induced dipole 0.021085 -0.001460 -0.001599 - conjugated induced dipole 0.016161 -0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.782257 -7.023409 4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000018 -0.000043 -0.000019 - induced dipole -0.033173 -0.007600 -0.027393 - conjugated induced dipole -0.028333 -0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.889381 -5.123226 5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000005 -0.000044 -0.000020 - induced dipole -0.013634 -0.005736 -0.010955 - conjugated induced dipole -0.012784 -0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.629141 -9.234261 2.597099 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000117 -0.000053 0.000007 - induced dipole 0.008720 0.015807 0.002368 - conjugated induced dipole 0.007606 0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.744904 -2.543636 9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000012 -0.000030 -0.000015 - induced dipole -0.001749 0.004775 -0.016411 - conjugated induced dipole 0.000061 0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.390509 -10.183897 9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000012 -0.000029 -0.000019 - induced dipole -0.000865 0.016467 -0.014862 - conjugated induced dipole -0.000106 0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.908167 -1.203202 2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000004 -0.000090 -0.000031 - induced dipole -0.004462 -0.001746 -0.000735 - conjugated induced dipole -0.002994 -0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.149546 0.010413 2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000018 -0.000077 -0.000033 - induced dipole -0.006347 -0.016593 -0.000811 - conjugated induced dipole -0.007353 -0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.351176 -2.097506 2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000005 -0.000043 -0.000021 - induced dipole -0.016570 -0.009874 -0.021011 - conjugated induced dipole -0.018333 -0.019255 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.884602 -7.982931 3.100978 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000095 -0.000069 -0.000004 - induced dipole 0.046958 0.039179 0.007441 - conjugated induced dipole 0.039937 0.045846 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.118475 -3.167268 8.374362 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000009 -0.000035 -0.000017 - induced dipole -0.028024 -0.017077 -0.022943 - conjugated induced dipole -0.015224 -0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.093072 -7.743698 2.535393 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000024 -0.000041 -0.000016 - induced dipole -0.068050 -0.015625 -0.045166 - conjugated induced dipole -0.061942 0.008873 -0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.488592 -2.488904 7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000011 -0.000033 -0.000017 - induced dipole -0.011763 0.007583 -0.014002 - conjugated induced dipole -0.015109 0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.548580 -9.413324 7.939807 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000015 -0.000033 -0.000019 - induced dipole -0.017229 0.015360 -0.023246 - conjugated induced dipole -0.008731 0.020510 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.300878 -7.536352 2.417492 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000099 -0.000077 0.000002 - induced dipole 0.020830 0.022726 0.000901 - conjugated induced dipole 0.022286 0.021511 -0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.073552 -8.332921 3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000031 -0.000043 -0.000017 - induced dipole -0.031823 -0.013065 -0.031206 - conjugated induced dipole -0.032768 -0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.025291 -0.936228 3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000012 -0.000045 -0.000023 - induced dipole -0.010155 -0.041713 -0.001546 - conjugated induced dipole -0.005860 -0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.164236 -1.856517 1.175445 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000009 -0.000106 -0.000027 - induced dipole 0.025817 -0.011418 0.033335 - conjugated induced dipole 0.014981 -0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.844488 -1.601375 2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000003 -0.000070 -0.000027 - induced dipole 0.012761 -0.031001 -0.001118 - conjugated induced dipole 0.007779 -0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.719115 -8.641402 8.572568 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000012 -0.000034 -0.000019 - induced dipole -0.009280 0.038168 -0.020381 - conjugated induced dipole -0.010164 0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 34 - Polarizability point coords 33.225449 -4.784860 -9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444129 6.305470 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 0.031001 -0.001118 - conjugated induced dipole 0.007779 0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 40.869553 -3.897331 -3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821479 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 -0.007583 -0.014002 - conjugated induced dipole -0.015109 -0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.427576 1.764335 -9.323370 - polarizability tensor 5.676900 -5.144008 -0.727143 -3.339388 4.987141 -0.427749 -0.708036 -0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063351 -0.043904 -0.005722 - conjugated induced dipole 0.055846 -0.056805 -0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.929540 3.027089 -3.518027 - polarizability tensor 2.014660 1.411523 2.754674 0.096191 2.864916 1.368380 1.742511 2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 -0.015360 -0.023246 - conjugated induced dipole -0.008731 -0.020509 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 39.120930 -2.687667 -5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 0.001430 -0.006467 - conjugated induced dipole -0.006680 0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.658932 -0.386808 -8.960653 - polarizability tensor 2.247827 -1.783499 0.065362 -1.149026 2.379898 0.043699 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 -0.003713 -0.000482 - conjugated induced dipole 0.009703 -0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.289127 -5.183033 -9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 0.001746 -0.000735 - conjugated induced dipole -0.002995 0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.007603 -0.145353 -8.341383 - polarizability tensor 5.018070 4.875224 1.088491 1.811907 4.579783 0.228245 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 0.002957 -0.007603 - conjugated induced dipole -0.011858 -0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 35.636045 -4.209593 -8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 0.007223 -0.008401 - conjugated induced dipole -0.024722 0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.597390 1.009688 -5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 -0.008201 -0.009724 - conjugated induced dipole -0.006616 -0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.698218 -2.599261 -8.571017 - polarizability tensor 3.009104 -0.265453 0.164854 -0.392052 2.422903 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 0.006235 -0.000930 - conjugated induced dipole -0.002419 0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.270342 -1.263009 -5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522052 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 0.005736 -0.010955 - conjugated induced dipole -0.012784 0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.762115 -1.508206 -8.185563 - polarizability tensor 13.654114 -2.638427 1.355101 -2.419218 4.125882 0.076557 2.653090 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 0.001460 -0.001599 - conjugated induced dipole 0.016161 0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.022891 -2.827740 -9.184184 - polarizability tensor 2.960546 0.866100 0.523975 1.061801 5.117295 0.710667 0.733477 0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 0.008630 0.003112 - conjugated induced dipole 0.008989 0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 36.163218 0.637174 -6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 0.007600 -0.027393 - conjugated induced dipole -0.028333 0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.964864 -1.392603 -9.317312 - polarizability tensor 12.949895 -2.646494 1.785361 -2.381880 4.179640 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 0.005385 -0.002398 - conjugated induced dipole 0.029267 0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.768649 -3.349220 -7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 -0.001162 -0.007068 - conjugated induced dipole -0.007504 -0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.168344 -0.880237 -6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460098 13.263287 0.923067 0.789240 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 0.004500 -0.010285 - conjugated induced dipole -0.010329 0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.010102 2.848026 -8.860735 - polarizability tensor 2.586919 -0.528104 -0.018359 -0.362648 2.294263 -0.043707 0.109841 -0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 -0.015807 0.002368 - conjugated induced dipole 0.007606 -0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 42.125865 -3.842599 -2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 -0.004775 -0.016411 - conjugated induced dipole 0.000061 -0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.771470 3.797662 -2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 -0.016467 -0.014861 - conjugated induced dipole -0.000106 -0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.545198 -4.529717 -10.282389 - polarizability tensor 8.609790 3.161438 4.330874 3.390209 5.869742 2.969759 2.433190 1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 0.011418 0.033335 - conjugated induced dipole 0.014981 0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.406252 -5.450007 -7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 0.041713 -0.001546 - conjugated induced dipole -0.005860 0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.530507 -6.396648 -9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 0.016593 -0.000811 - conjugated induced dipole -0.007353 0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.681815 1.150095 -9.040202 - polarizability tensor 3.548722 -1.577098 0.269187 -2.005619 4.318440 0.319352 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020829 -0.022725 0.000901 - conjugated induced dipole 0.022286 -0.021510 -0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 41.202868 -2.944467 -3.727272 - polarizability tensor 5.713597 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 0.011888 -0.014683 - conjugated induced dipole -0.014358 0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.454513 1.946686 -7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225663 5.733018 0.256666 1.271657 0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 0.013065 -0.031206 - conjugated induced dipole -0.032768 0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 40.499436 -3.218967 -3.083473 - polarizability tensor 6.707221 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 0.017077 -0.022943 - conjugated induced dipole -0.015224 0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.100077 2.255166 -2.885267 - polarizability tensor 1.169671 1.724727 0.923947 2.191905 7.141823 4.969365 0.687892 2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 -0.038168 -0.020381 - conjugated induced dipole -0.010164 -0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.265668 1.596786 -8.356897 - polarizability tensor 5.399126 -5.564498 0.213556 -4.017191 5.082747 0.297192 1.393777 -0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046956 -0.039177 0.007441 - conjugated induced dipole 0.039935 -0.045844 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 35.474033 1.357463 -8.922442 - polarizability tensor 10.702598 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 0.015625 -0.045166 - conjugated induced dipole -0.061942 -0.008873 -0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.732137 -4.288728 -9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 0.009874 -0.021011 - conjugated induced dipole -0.018333 0.019256 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.197023 -4.722878 -8.719786 - polarizability tensor 9.556647 3.699450 -1.931270 3.986422 6.261107 -1.285638 0.992071 0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 -0.025280 0.002707 - conjugated induced dipole -0.021953 -0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.039977 -4.885969 -8.339860 - polarizability tensor 4.541349 2.067478 1.036870 1.580946 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 0.021657 0.001455 - conjugated induced dipole -0.001239 0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.834866 2.579264 -3.470143 - polarizability tensor 2.204025 0.653491 0.327503 1.701255 5.540977 4.544585 0.766864 3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 -0.029042 -0.022595 - conjugated induced dipole -0.008031 -0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 35 - Polarizability point coords 27.518009 1.601375 -2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444129 6.305470 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.003200 0.000376 0.002562 - induced dipole -0.012761 0.031001 0.001118 - conjugated induced dipole -0.007779 0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.873905 2.488904 -7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821479 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000423 -0.000098 0.000661 - induced dipole 0.011763 -0.007583 0.014002 - conjugated induced dipole 0.015109 -0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.315882 8.150570 -2.134465 - polarizability tensor 5.676900 5.144008 -0.727143 3.339388 4.987141 0.427749 -0.708036 0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.001331 0.000187 -0.000865 - induced dipole -0.063351 -0.043904 0.005722 - conjugated induced dipole -0.055846 -0.056805 0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.813919 9.413324 -7.939808 - polarizability tensor 2.014660 -1.411523 2.754674 -0.096191 2.864916 -1.368380 1.742511 -2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000025 -0.000462 0.000477 - induced dipole 0.017229 -0.015360 0.023246 - conjugated induced dipole 0.008731 -0.020509 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.622529 3.698568 -6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000493 -0.000240 0.001085 - induced dipole 0.008021 0.001430 0.006467 - conjugated induced dipole 0.006680 0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.084527 5.999427 -2.497182 - polarizability tensor 2.247827 1.783499 0.065362 1.149026 2.379898 -0.043699 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.002341 -0.000133 -0.000817 - induced dipole -0.009459 -0.003713 0.000482 - conjugated induced dipole -0.009703 -0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.454331 1.203202 -2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.003384 -0.001356 -0.000138 - induced dipole 0.004462 0.001746 0.000735 - conjugated induced dipole 0.002995 0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.735855 6.240882 -3.116452 - polarizability tensor 5.018070 -4.875224 1.088491 -1.811907 4.579783 -0.228245 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.001612 -0.001712 0.002693 - induced dipole 0.004785 0.002957 0.007603 - conjugated induced dipole 0.011858 -0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.107413 2.176641 -3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000050 0.000577 0.003733 - induced dipole 0.026692 0.007223 0.008401 - conjugated induced dipole 0.024722 0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.146068 7.395923 -6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000114 -0.000632 0.000908 - induced dipole 0.007350 -0.008201 0.009724 - conjugated induced dipole 0.006616 -0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.045240 3.786974 -2.886817 - polarizability tensor 3.009104 0.265453 0.164854 0.392052 2.422903 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.002486 -0.000428 0.003742 - induced dipole -0.000502 0.006235 0.000930 - conjugated induced dipole 0.002419 0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.473116 5.123226 -5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522052 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000219 -0.000536 0.001441 - induced dipole 0.013634 0.005736 0.010955 - conjugated induced dipole 0.012784 0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.981343 4.878029 -3.272272 - polarizability tensor 13.654114 2.638427 1.355101 2.419218 4.125882 -0.076557 2.653090 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.002698 -0.000663 0.001079 - induced dipole -0.021085 0.001460 0.001599 - conjugated induced dipole -0.016161 0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.720568 3.558495 -2.273651 - polarizability tensor 2.960546 -0.866100 0.523975 -1.061801 5.117295 -0.710667 0.733477 -0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.003229 -0.000264 -0.001341 - induced dipole -0.009130 0.008630 -0.003112 - conjugated induced dipole -0.008989 0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.580241 7.023409 -4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000080 -0.001176 0.001678 - induced dipole 0.033173 0.007600 0.027393 - conjugated induced dipole 0.028333 0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.778595 4.993632 -2.140523 - polarizability tensor 12.949895 2.646494 1.785361 2.381880 4.179640 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.004227 -0.000880 0.001632 - induced dipole -0.032580 0.005385 0.002398 - conjugated induced dipole -0.029267 0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.974810 3.037015 -4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000780 -0.000120 0.002088 - induced dipole 0.007992 -0.001162 0.007068 - conjugated induced dipole 0.007504 -0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.575114 5.505998 -5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460098 13.263287 -0.923067 0.789240 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000512 -0.000635 0.001483 - induced dipole 0.013189 0.004500 0.010285 - conjugated induced dipole 0.010329 0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.733356 9.234261 -2.597100 - polarizability tensor 2.586919 0.528104 -0.018359 0.362648 2.294263 0.043707 0.109841 0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000770 0.000236 -0.000685 - induced dipole -0.008720 -0.015807 -0.002368 - conjugated induced dipole -0.007606 -0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.617594 2.543636 -9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000325 -0.000086 0.000463 - induced dipole 0.001749 -0.004775 0.016411 - conjugated induced dipole -0.000061 -0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.971988 10.183897 -9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000034 -0.000336 0.000330 - induced dipole 0.000865 -0.016467 0.014861 - conjugated induced dipole 0.000106 -0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.198261 1.856518 -1.175445 - polarizability tensor 8.609790 -3.161438 4.330874 -3.390209 5.869742 -2.969759 2.433190 -1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.003443 -0.001261 -0.004082 - induced dipole -0.025817 0.011418 -0.033335 - conjugated induced dipole -0.014981 0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.337207 0.936228 -3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000925 0.000450 0.002080 - induced dipole 0.010155 0.041713 0.001546 - conjugated induced dipole 0.005860 0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.212952 -0.010413 -2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.002021 -0.001699 0.001769 - induced dipole 0.006347 0.016593 0.000811 - conjugated induced dipole 0.007353 0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.061644 7.536330 -2.417633 - polarizability tensor 3.548722 1.577098 0.269187 2.005619 4.318440 -0.319352 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.001148 0.000275 -0.001036 - induced dipole -0.020829 -0.022725 -0.000901 - conjugated induced dipole -0.022286 -0.021510 0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.540590 3.441768 -7.730563 - polarizability tensor 5.713597 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000414 -0.000150 0.000621 - induced dipole 0.017774 0.011888 0.014683 - conjugated induced dipole 0.014358 0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.288946 8.332921 -3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225663 5.733018 -0.256666 1.271657 -0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000759 -0.001406 0.001231 - induced dipole 0.031823 0.013065 0.031206 - conjugated induced dipole 0.032768 0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.244023 3.167268 -8.374362 - polarizability tensor 6.707221 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000336 -0.000141 0.000638 - induced dipole 0.028024 0.017077 0.022943 - conjugated induced dipole 0.015224 0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.643382 8.641401 -8.572568 - polarizability tensor 1.169671 -1.724727 0.923947 -2.191905 7.141823 -4.969365 0.687892 -2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000040 -0.000404 0.000493 - induced dipole 0.009280 -0.038168 0.020381 - conjugated induced dipole 0.010164 -0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.477790 7.983021 -3.100937 - polarizability tensor 5.399126 5.564498 0.213556 4.017191 5.082747 -0.297192 1.393777 0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.001159 0.000034 -0.000679 - induced dipole -0.046956 -0.039177 -0.007441 - conjugated induced dipole -0.039935 -0.045844 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.269426 7.743698 -2.535393 - polarizability tensor 10.702598 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000431 -0.002430 0.002200 - induced dipole 0.068050 0.015625 0.045166 - conjugated induced dipole 0.061942 -0.008873 0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.011321 2.097506 -2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.001886 0.000831 0.003123 - induced dipole 0.016570 0.009874 0.021011 - conjugated induced dipole 0.018333 0.019256 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.546435 1.663357 -2.738048 - polarizability tensor 9.556647 -3.699450 -1.931270 -3.986422 6.261107 1.285638 0.992071 -0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.002363 -0.001206 -0.001470 - induced dipole 0.024576 -0.025280 -0.002707 - conjugated induced dipole 0.021953 -0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.703482 1.500266 -3.117975 - polarizability tensor 4.541349 -2.067478 1.036870 -1.580946 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.002110 -0.000284 0.002013 - induced dipole -0.002879 0.021657 -0.001455 - conjugated induced dipole 0.001239 0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.908592 8.965499 -7.987692 - polarizability tensor 2.204025 -0.653491 0.327503 -1.701255 5.540977 -4.544585 0.766864 -3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000100 -0.000434 0.000486 - induced dipole 0.003843 -0.029042 0.022595 - conjugated induced dipole 0.008031 -0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 36 - Polarizability point coords 3.583608 2.599261 31.486687 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 -0.006235 0.000930 - conjugated induced dipole 0.002419 -0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.921042 2.944467 26.642941 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 -0.011888 0.014683 - conjugated induced dipole 0.014358 -0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.854169 -1.764403 32.238939 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063346 0.043899 0.005721 - conjugated induced dipole -0.055842 0.056799 0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.553040 -2.579263 26.385811 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 0.029042 0.022595 - conjugated induced dipole 0.008031 0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.886518 0.880237 29.220750 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 -0.004500 0.010285 - conjugated induced dipole 0.010329 -0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.241850 4.885969 31.255529 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 -0.021657 -0.001455 - conjugated induced dipole 0.001239 -0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.084803 4.722878 31.635455 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 0.025280 -0.002707 - conjugated induced dipole 0.021953 0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.274223 0.145353 31.257052 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 -0.002957 0.007603 - conjugated induced dipole 0.011858 0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.645781 4.209593 31.342289 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 -0.007223 0.008401 - conjugated induced dipole 0.024722 -0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.839103 2.687667 28.020022 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 -0.001430 0.006467 - conjugated induced dipole 0.006680 -0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.622894 0.386808 31.876322 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 0.003713 0.000482 - conjugated induced dipole -0.009703 0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.315564 -1.009688 27.916692 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 0.008201 0.009724 - conjugated induced dipole 0.006616 0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.316963 1.392603 32.232981 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 -0.005385 0.002398 - conjugated induced dipole -0.029267 -0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.258936 2.827740 32.099853 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 -0.008630 -0.003112 - conjugated induced dipole -0.008989 -0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.486822 3.349220 29.965816 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 0.001162 0.007068 - conjugated induced dipole 0.007504 0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.519711 1.508206 31.101232 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 -0.001460 0.001599 - conjugated induced dipole -0.016161 -0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.118609 -0.637174 29.886424 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 -0.007600 0.027393 - conjugated induced dipole 0.028333 -0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.011484 1.263009 28.521541 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 -0.005736 0.010955 - conjugated induced dipole 0.012784 -0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.271724 -2.848026 31.776405 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 0.015807 -0.002368 - conjugated induced dipole -0.007606 0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.844038 3.842599 25.335067 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 0.004775 0.016411 - conjugated induced dipole -0.000061 0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.489644 -3.797662 25.009608 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 0.016467 0.014862 - conjugated induced dipole 0.000106 0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.992699 5.183033 32.106919 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 -0.001746 0.000735 - conjugated induced dipole 0.002994 -0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.751320 6.396648 31.993285 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 -0.016593 0.000811 - conjugated induced dipole 0.007353 -0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.450311 4.288729 31.935679 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 -0.009874 0.021011 - conjugated induced dipole 0.018333 -0.019255 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.016264 -1.596696 31.272526 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046958 0.039179 -0.007441 - conjugated induced dipole -0.039937 0.045846 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.217610 3.218967 25.999142 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 -0.017077 0.022943 - conjugated induced dipole 0.015224 -0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.807794 -1.357463 31.838111 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 -0.015625 0.045166 - conjugated induced dipole 0.061942 0.008873 0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.587727 3.897331 26.657170 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 0.007583 0.014002 - conjugated induced dipole 0.015109 0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.647714 -3.027089 26.433697 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 0.015360 0.023246 - conjugated induced dipole 0.008731 0.020510 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.599988 -1.150117 31.956012 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020830 0.022726 -0.000901 - conjugated induced dipole -0.022286 0.021511 0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.827314 -1.946686 30.590634 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 -0.013065 0.031206 - conjugated induced dipole 0.032768 -0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.124425 5.450007 30.716646 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 -0.041713 0.001546 - conjugated induced dipole 0.005860 -0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.736629 4.529718 33.198059 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 -0.011418 -0.033335 - conjugated induced dipole -0.014981 -0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.056377 4.784860 32.281745 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 -0.031001 0.001118 - conjugated induced dipole -0.007779 -0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.818249 -2.255167 25.800936 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 0.038168 0.020381 - conjugated induced dipole 0.010164 0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 37 - Polarizability point coords 10.236586 -3.786974 25.802487 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.000502 -0.006235 -0.000930 - conjugated induced dipole -0.002419 -0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.741236 -3.441768 30.646232 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.017774 -0.011888 -0.014683 - conjugated induced dipole -0.014358 -0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.966026 -8.150638 25.050235 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.063346 0.043899 -0.005721 - conjugated induced dipole 0.055842 0.056799 -0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.373234 -8.965498 30.903362 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.003843 0.029042 -0.022595 - conjugated induced dipole -0.008031 0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.706712 -5.505998 28.068423 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.013189 -0.004500 -0.010285 - conjugated induced dipole -0.010329 -0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.578345 -1.500266 26.033644 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.002879 -0.021657 0.001455 - conjugated induced dipole -0.001239 -0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.735392 -1.663357 25.653718 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.024576 0.025280 0.002707 - conjugated induced dipole -0.021953 0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.545971 -6.240882 26.032121 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.004785 -0.002957 -0.007603 - conjugated induced dipole -0.011858 0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.174413 -2.176641 25.946884 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.026692 -0.007223 -0.008401 - conjugated induced dipole -0.024722 -0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.659298 -3.698568 29.269151 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.008021 -0.001430 -0.006467 - conjugated induced dipole -0.006680 -0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.197300 -5.999427 25.412851 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.009459 0.003713 -0.000482 - conjugated induced dipole 0.009703 0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.135758 -7.395923 29.372481 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.007350 0.008201 -0.009724 - conjugated induced dipole -0.006616 0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.503232 -4.993632 25.056192 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.032580 -0.005385 -0.002398 - conjugated induced dipole 0.029267 -0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.561259 -3.558495 25.189320 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.009130 -0.008630 0.003112 - conjugated induced dipole 0.008989 -0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.307017 -3.037015 27.323358 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.007992 0.001162 -0.007068 - conjugated induced dipole -0.007504 0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.300483 -4.878029 26.187941 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.021085 -0.001460 -0.001599 - conjugated induced dipole 0.016161 -0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.701586 -7.023409 27.402749 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.033173 -0.007600 -0.027393 - conjugated induced dipole -0.028333 -0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.808710 -5.123226 28.767632 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.013634 -0.005736 -0.010955 - conjugated induced dipole -0.012784 -0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.548470 -9.234261 25.512769 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.008720 0.015807 0.002368 - conjugated induced dipole 0.007606 0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.664233 -2.543636 31.954106 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.001749 0.004775 -0.016411 - conjugated induced dipole 0.000061 0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.309838 -10.183897 32.279566 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.000865 0.016467 -0.014862 - conjugated induced dipole -0.000106 0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.827495 -1.203202 25.182254 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.004462 -0.001746 -0.000735 - conjugated induced dipole -0.002994 -0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.068875 0.010413 25.295888 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.006347 -0.016593 -0.000811 - conjugated induced dipole -0.007353 -0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.270505 -2.097506 25.353494 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.016570 -0.009874 -0.021011 - conjugated induced dipole -0.018333 -0.019255 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.803931 -7.982931 26.016647 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.046958 0.039179 0.007441 - conjugated induced dipole 0.039937 0.045846 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.037804 -3.167268 31.290032 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.028024 -0.017077 -0.022943 - conjugated induced dipole -0.015224 -0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.012401 -7.743698 25.451063 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.068050 -0.015625 -0.045166 - conjugated induced dipole -0.061942 0.008873 -0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.407921 -2.488904 30.632003 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.011763 0.007583 -0.014002 - conjugated induced dipole -0.015109 0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.467909 -9.413324 30.855477 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.017229 0.015360 -0.023246 - conjugated induced dipole -0.008731 0.020510 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.220207 -7.536352 25.333161 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.020830 0.022726 0.000901 - conjugated induced dipole 0.022286 0.021511 -0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.992881 -8.332921 26.698539 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.031823 -0.013065 -0.031206 - conjugated induced dipole -0.032768 -0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.944620 -0.936228 26.572528 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.010155 -0.041713 -0.001546 - conjugated induced dipole -0.005860 -0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.083565 -1.856517 24.091115 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.025817 -0.011418 0.033335 - conjugated induced dipole 0.014981 -0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.763817 -1.601375 25.007429 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.012761 -0.031001 -0.001118 - conjugated induced dipole 0.007779 -0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.638444 -8.641402 31.488237 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.009280 0.038168 -0.020381 - conjugated induced dipole -0.010164 0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 38 - Polarizability point coords 25.144779 -4.784861 13.549594 - polarizability tensor 4.528424 1.917551 0.356759 1.444128 6.305472 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 0.031001 -0.001118 - conjugated induced dipole 0.007779 0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.788882 -3.897328 19.174170 - polarizability tensor 3.614271 -1.113333 2.917217 -0.029793 1.821479 0.641372 2.940226 -0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 -0.007583 -0.014002 - conjugated induced dipole -0.015109 -0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.346903 1.764332 13.592298 - polarizability tensor 5.676904 -5.144008 -0.727141 -3.339388 4.987137 -0.427750 -0.708035 -0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063351 -0.043904 -0.005722 - conjugated induced dipole 0.055846 -0.056805 -0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.848865 3.027091 19.397643 - polarizability tensor 2.014659 1.411522 2.754673 0.096191 2.864917 1.368381 1.742510 2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 -0.015360 -0.023246 - conjugated induced dipole -0.008731 -0.020509 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.040258 -2.687665 17.811318 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536299 1.326286 -0.648852 1.549497 -0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 0.001430 -0.006467 - conjugated induced dipole -0.006680 0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.578260 -0.386810 13.955016 - polarizability tensor 2.247828 -1.783499 0.065363 -1.149026 2.379896 0.043699 0.251241 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 -0.003713 -0.000482 - conjugated induced dipole 0.009703 -0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.208458 -5.183035 13.724420 - polarizability tensor 5.239487 -1.239561 0.807464 -0.101560 1.234380 0.089842 1.195631 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 0.001746 -0.000735 - conjugated induced dipole -0.002995 0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.926931 -0.145353 14.574286 - polarizability tensor 5.018067 4.875224 1.088491 1.811907 4.579786 0.228246 1.487331 1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 0.002957 -0.007603 - conjugated induced dipole -0.011858 -0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.555375 -4.209593 14.489050 - polarizability tensor 9.182809 -1.751286 0.995508 -0.084237 1.828484 0.387734 2.027093 0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 0.007223 -0.008401 - conjugated induced dipole -0.024722 0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.516717 1.009690 17.914647 - polarizability tensor 1.671051 0.572015 1.296469 0.542823 2.162529 1.769890 1.031019 1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 -0.008201 -0.009724 - conjugated induced dipole -0.006616 -0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.617547 -2.599261 14.344652 - polarizability tensor 3.009105 -0.265453 0.164855 -0.392052 2.422902 0.078852 0.571863 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 0.006235 -0.000930 - conjugated induced dipole -0.002419 0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.189670 -1.263007 17.309798 - polarizability tensor 5.263037 -4.454329 1.663069 -4.279634 13.403258 0.812801 1.522053 0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 0.005736 -0.010955 - conjugated induced dipole -0.012784 0.003817 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.681444 -1.508207 14.730106 - polarizability tensor 13.654116 -2.638423 1.355104 -2.419214 4.125879 0.076557 2.653092 -0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 0.001460 -0.001599 - conjugated induced dipole 0.016161 0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.942220 -2.827742 13.731485 - polarizability tensor 2.960545 0.866099 0.523975 1.061800 5.117296 0.710667 0.733477 0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 0.008630 0.003112 - conjugated induced dipole 0.008989 0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.082545 0.637175 15.944915 - polarizability tensor 5.617929 -1.381554 4.877276 -1.251780 2.735770 -1.290944 3.659516 -1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 0.007600 -0.027393 - conjugated induced dipole -0.028333 0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.884192 -1.392605 13.598357 - polarizability tensor 12.949896 -2.646490 1.785363 -2.381876 4.179637 -0.329227 2.420663 -0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 0.005385 -0.002398 - conjugated induced dipole 0.029267 0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.687978 -3.349219 15.865524 - polarizability tensor 3.040417 1.393146 2.596746 0.925311 4.759664 3.665080 1.764101 3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 -0.001162 -0.007068 - conjugated induced dipole -0.007504 -0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.087672 -0.880236 16.610589 - polarizability tensor 4.688607 -4.661428 1.698768 -4.460102 13.263283 0.923066 0.789241 0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 0.004500 -0.010285 - conjugated induced dipole -0.010329 0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.929429 2.848022 14.054933 - polarizability tensor 2.586920 -0.528103 -0.018359 -0.362647 2.294262 -0.043707 0.109841 -0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 -0.015807 0.002368 - conjugated induced dipole 0.007606 -0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.045193 -3.842595 20.496273 - polarizability tensor 2.625149 -0.213208 0.424935 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 -0.004775 -0.016411 - conjugated induced dipole 0.000061 -0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.690795 3.797665 20.821732 - polarizability tensor 2.080856 0.280706 0.149350 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 -0.016467 -0.014861 - conjugated induced dipole -0.000106 -0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.464528 -4.529720 12.633279 - polarizability tensor 8.609786 3.161439 4.330873 3.390210 5.869745 2.969762 2.433189 1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 0.011418 0.033335 - conjugated induced dipole 0.014981 0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.325582 -5.450006 15.114694 - polarizability tensor 5.800146 -0.752295 1.186095 0.172145 7.005037 0.548345 0.964192 0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 0.041713 -0.001546 - conjugated induced dipole -0.005860 0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.449837 -6.396649 13.838054 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321947 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 0.016593 -0.000811 - conjugated induced dipole -0.007353 0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.601142 1.150091 13.875466 - polarizability tensor 3.548724 -1.577098 0.269188 -2.005619 4.318439 0.319351 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020829 -0.022725 0.000901 - conjugated induced dipole 0.022286 -0.021510 -0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.122196 -2.944464 19.188399 - polarizability tensor 5.713598 -1.433755 3.432521 -2.871854 2.858065 -3.181668 3.126669 -2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 0.011888 -0.014683 - conjugated induced dipole -0.014358 0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.373840 1.946686 15.240704 - polarizability tensor 6.533271 0.444461 1.547291 -1.225663 5.733017 0.256666 1.271658 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 0.013065 -0.031206 - conjugated induced dipole -0.032768 0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.418764 -3.218964 19.832198 - polarizability tensor 6.707222 -2.929001 4.115173 -3.681834 2.332214 -2.837643 2.110817 -1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 0.017077 -0.022943 - conjugated induced dipole -0.015224 0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.019403 2.255168 20.030403 - polarizability tensor 1.169669 1.724724 0.923944 2.191901 7.141826 4.969366 0.687890 2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 -0.038168 -0.020381 - conjugated induced dipole -0.010164 -0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.184995 1.596783 14.558771 - polarizability tensor 5.399130 -5.564497 0.213557 -4.017191 5.082742 0.297191 1.393778 -0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046956 -0.039177 0.007441 - conjugated induced dipole 0.039935 -0.045844 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.393360 1.357463 13.993228 - polarizability tensor 10.702596 1.789313 3.005774 -0.514549 5.742470 -3.210321 2.108866 -0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 0.015625 -0.045166 - conjugated induced dipole -0.061942 -0.008873 -0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.651467 -4.288727 13.895660 - polarizability tensor 8.115953 0.753025 -0.167711 1.550833 6.978558 4.365403 0.764813 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 0.009874 -0.021011 - conjugated induced dipole -0.018333 0.019256 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.116353 -4.722881 14.195882 - polarizability tensor 9.556643 3.699452 -1.931269 3.986424 6.261110 -1.285638 0.992072 0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 -0.025280 0.002707 - conjugated induced dipole -0.021953 -0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.959306 -4.885970 14.575810 - polarizability tensor 4.541347 2.067477 1.036870 1.580945 6.187413 0.395977 1.497097 1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 0.021657 0.001455 - conjugated induced dipole -0.001239 0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.754192 2.579266 19.445527 - polarizability tensor 2.204024 0.653489 0.327501 1.701252 5.540979 4.544585 0.766862 3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 -0.029042 -0.022595 - conjugated induced dipole -0.008031 -0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 39 - Polarizability point coords 19.437335 1.601374 20.823910 - polarizability tensor 4.528424 -1.917551 0.356759 -1.444128 6.305472 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000008 -0.000001 0.000003 - induced dipole -0.012761 0.031001 0.001118 - conjugated induced dipole -0.007779 0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.793233 2.488907 15.199334 - polarizability tensor 3.614271 1.113333 2.917217 0.029793 1.821479 -0.641372 2.940226 0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000000 -0.000004 - induced dipole 0.011763 -0.007583 0.014002 - conjugated induced dipole 0.015109 -0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.235211 8.150567 20.781206 - polarizability tensor 5.676904 5.144008 -0.727141 3.339388 4.987137 0.427750 -0.708035 0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000009 0.000005 0.000007 - induced dipole -0.063351 -0.043904 0.005722 - conjugated induced dipole -0.055846 -0.056805 0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.733249 9.413326 14.975861 - polarizability tensor 2.014659 -1.411522 2.754673 -0.096191 2.864917 -1.368381 1.742510 -2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000005 0.000001 -0.000004 - induced dipole 0.017229 -0.015360 0.023246 - conjugated induced dipole 0.008731 -0.020509 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.541856 3.698570 16.562186 - polarizability tensor 2.644773 0.420648 2.214495 0.536299 1.326286 0.648852 1.549497 0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000005 -0.000000 -0.000003 - induced dipole 0.008021 0.001430 0.006467 - conjugated induced dipole 0.006680 0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.003855 5.999425 20.418488 - polarizability tensor 2.247828 1.783499 0.065363 1.149026 2.379896 -0.043699 0.251241 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000010 0.000003 0.000006 - induced dipole -0.009459 -0.003713 0.000482 - conjugated induced dipole -0.009703 -0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.373657 1.203200 20.649084 - polarizability tensor 5.239487 1.239561 0.807464 0.101560 1.234380 -0.089842 1.195631 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000010 -0.000001 0.000005 - induced dipole 0.004462 0.001746 0.000735 - conjugated induced dipole 0.002995 0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.655183 6.240882 19.799218 - polarizability tensor 5.018067 -4.875224 1.088491 -1.811907 4.579786 -0.228246 1.487331 -1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000008 0.000001 0.000001 - induced dipole 0.004785 0.002957 0.007603 - conjugated induced dipole 0.011858 -0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.026740 2.176642 19.884454 - polarizability tensor 9.182809 1.751286 0.995508 0.084237 1.828484 -0.387734 2.027093 -0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000007 -0.000000 0.000001 - induced dipole 0.026692 0.007223 0.008401 - conjugated induced dipole 0.024722 0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.065398 7.395925 16.458857 - polarizability tensor 1.671051 -0.572015 1.296469 -0.542823 2.162529 -1.769890 1.031019 -1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000006 0.000001 -0.000003 - induced dipole 0.007350 -0.008201 0.009724 - conjugated induced dipole 0.006616 -0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.964567 3.786974 20.028852 - polarizability tensor 3.009105 0.265453 0.164855 0.392052 2.422902 -0.078852 0.571863 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000009 0.000000 0.000002 - induced dipole -0.000502 0.006235 0.000930 - conjugated induced dipole 0.002419 0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.392445 5.123228 17.063706 - polarizability tensor 5.263037 4.454329 1.663069 4.279634 13.403258 -0.812801 1.522053 -0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000007 0.000000 -0.000002 - induced dipole 0.013634 0.005736 0.010955 - conjugated induced dipole 0.012784 0.003817 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.900671 4.878028 19.643398 - polarizability tensor 13.654116 2.638423 1.355104 2.419214 4.125879 -0.076557 2.653092 0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000010 0.000001 0.000004 - induced dipole -0.021085 0.001460 0.001599 - conjugated induced dipole -0.016161 0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.639895 3.558492 20.642019 - polarizability tensor 2.960545 -0.866099 0.523975 -1.061800 5.117296 -0.710667 0.733477 -0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000010 0.000001 0.000007 - induced dipole -0.009130 0.008630 -0.003112 - conjugated induced dipole -0.008989 0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.499570 7.023410 18.428589 - polarizability tensor 5.617929 1.381554 4.877276 1.251780 2.735770 1.290944 3.659516 1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000007 0.000001 -0.000001 - induced dipole 0.033173 0.007600 0.027393 - conjugated induced dipole 0.028333 0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.697922 4.993630 20.775147 - polarizability tensor 12.949896 2.646490 1.785363 2.381876 4.179637 0.329227 2.420663 0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000009 0.000001 0.000004 - induced dipole -0.032580 0.005385 0.002398 - conjugated induced dipole -0.029267 0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.894137 3.037016 18.507980 - polarizability tensor 3.040417 -1.393146 2.596746 -0.925311 4.759664 -3.665080 1.764101 -3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000006 -0.000000 -0.000001 - induced dipole 0.007992 -0.001162 0.007068 - conjugated induced dipole 0.007504 -0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.494442 5.505999 17.762915 - polarizability tensor 4.688607 4.661428 1.698768 4.460102 13.263283 -0.923066 0.789241 -0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000006 0.000000 -0.000002 - induced dipole 0.013189 0.004500 0.010285 - conjugated induced dipole 0.010329 0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.652686 9.234257 20.318571 - polarizability tensor 2.586920 0.528103 -0.018359 0.362647 2.294262 0.043707 0.109841 0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000009 0.000006 0.000007 - induced dipole -0.008720 -0.015807 -0.002368 - conjugated induced dipole -0.007606 -0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.536921 2.543640 13.877231 - polarizability tensor 2.625149 0.213208 0.424935 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000000 -0.000004 - induced dipole 0.001749 -0.004775 0.016411 - conjugated induced dipole -0.000061 -0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.891319 10.183899 13.551772 - polarizability tensor 2.080856 -0.280706 0.149350 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 0.000000 -0.000005 - induced dipole 0.000865 -0.016467 0.014861 - conjugated induced dipole 0.000106 -0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.117587 1.856515 21.740225 - polarizability tensor 8.609786 -3.161439 4.330873 -3.390210 5.869745 -2.969762 2.433189 -1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000009 -0.000001 0.000007 - induced dipole -0.025817 0.011418 -0.033335 - conjugated induced dipole -0.014981 0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.256533 0.936229 19.258810 - polarizability tensor 5.800146 0.752295 1.186095 -0.172145 7.005037 -0.548345 0.964192 -0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000006 -0.000001 -0.000001 - induced dipole 0.010155 0.041713 0.001546 - conjugated induced dipole 0.005860 0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.132277 -0.010414 20.535450 - polarizability tensor 2.238895 0.092051 0.189597 0.321947 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000009 -0.000002 0.000003 - induced dipole 0.006347 0.016593 0.000811 - conjugated induced dipole 0.007353 0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.980972 7.536326 20.498038 - polarizability tensor 3.548724 1.577098 0.269188 2.005619 4.318439 -0.319351 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000010 0.000005 0.000008 - induced dipole -0.020829 -0.022725 -0.000901 - conjugated induced dipole -0.022286 -0.021510 0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.459918 3.441771 15.185105 - polarizability tensor 5.713598 1.433755 3.432521 2.871854 2.858065 3.181668 3.126669 2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000000 -0.000004 - induced dipole 0.017774 0.011888 0.014683 - conjugated induced dipole 0.014358 0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.208275 8.332921 19.132800 - polarizability tensor 6.533271 -0.444461 1.547291 1.225663 5.733017 -0.256666 1.271658 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000007 0.000002 0.000000 - induced dipole 0.031823 0.013065 0.031206 - conjugated induced dipole 0.032768 0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.163350 3.167271 14.541306 - polarizability tensor 6.707222 2.929001 4.115173 3.681834 2.332214 2.837643 2.110817 1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000000 -0.000004 - induced dipole 0.028024 0.017077 0.022943 - conjugated induced dipole 0.015224 0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.562712 8.641403 14.343101 - polarizability tensor 1.169669 -1.724724 0.923944 -2.191901 7.141826 -4.969366 0.687890 -2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000005 0.000001 -0.000005 - induced dipole 0.009280 -0.038168 0.020381 - conjugated induced dipole 0.010164 -0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.397119 7.983018 19.814733 - polarizability tensor 5.399130 5.564497 0.213557 4.017191 5.082742 -0.297191 1.393778 0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000010 0.000005 0.000007 - induced dipole -0.046956 -0.039177 -0.007441 - conjugated induced dipole -0.039935 -0.045844 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.188755 7.743698 20.380276 - polarizability tensor 10.702596 -1.789313 3.005774 0.514549 5.742470 3.210321 2.108866 0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000006 0.000001 0.000000 - induced dipole 0.068050 0.015625 0.045166 - conjugated induced dipole 0.061942 -0.008873 0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.930648 2.097508 20.477844 - polarizability tensor 8.115953 -0.753025 -0.167711 -1.550833 6.978558 -4.365403 0.764813 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000006 -0.000000 -0.000000 - induced dipole 0.016570 0.009874 0.021011 - conjugated induced dipole 0.018333 0.019256 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.465761 1.663354 20.177622 - polarizability tensor 9.556643 -3.699452 -1.931269 -3.986424 6.261110 1.285638 0.992072 -0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000011 -0.000001 0.000008 - induced dipole 0.024576 -0.025280 -0.002707 - conjugated induced dipole 0.021953 -0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.622808 1.500265 19.797694 - polarizability tensor 4.541347 -2.067477 1.036870 -1.580945 6.187413 -0.395977 1.497097 -1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000010 -0.000001 0.000003 - induced dipole -0.002879 0.021657 -0.001455 - conjugated induced dipole 0.001239 0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.827923 8.965501 14.927977 - polarizability tensor 2.204024 -0.653489 0.327501 -1.701252 5.540979 -4.544585 0.766862 -3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000005 0.000000 -0.000004 - induced dipole 0.003843 -0.029042 0.022595 - conjugated induced dipole 0.008031 -0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 40 - Polarizability point coords 11.664279 15.371730 8.571017 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 -0.006235 0.000930 - conjugated induced dipole 0.002419 -0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.159630 15.716937 3.727272 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 -0.011888 0.014683 - conjugated induced dipole 0.014358 -0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.934840 11.008067 9.323269 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063346 0.043899 0.005721 - conjugated induced dipole -0.055842 0.056799 0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.527631 10.193207 3.470142 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 0.029042 0.022595 - conjugated induced dipole 0.008031 0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.194153 13.652707 6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 -0.004500 0.010285 - conjugated induced dipole 0.010329 -0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.322521 17.658439 8.339860 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 -0.021657 -0.001455 - conjugated induced dipole 0.001239 -0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.165474 17.495348 8.719786 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 0.025280 -0.002707 - conjugated induced dipole 0.021953 0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.354894 12.917822 8.341383 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 -0.002957 0.007603 - conjugated induced dipole 0.011858 0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.726452 16.982063 8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 -0.007223 0.008401 - conjugated induced dipole 0.024722 -0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.241568 15.460137 5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 -0.001430 0.006467 - conjugated induced dipole 0.006680 -0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.703566 13.159277 8.960653 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 0.003713 0.000482 - conjugated induced dipole -0.009703 0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.765107 11.762781 5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 0.008201 0.009724 - conjugated induced dipole 0.006616 0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.397634 14.165073 9.317312 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 -0.005385 0.002398 - conjugated induced dipole -0.029267 -0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.339607 15.600210 9.184184 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 -0.008630 -0.003112 - conjugated induced dipole -0.008989 -0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.593849 16.121690 7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 0.001162 0.007068 - conjugated induced dipole 0.007504 0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.600382 14.280676 8.185563 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 -0.001460 0.001599 - conjugated induced dipole -0.016161 -0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.199280 12.135296 6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 -0.007600 0.027393 - conjugated induced dipole 0.028333 -0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.092155 14.035478 5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 -0.005736 0.010955 - conjugated induced dipole 0.012784 -0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.352395 9.924444 8.860735 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 0.015807 -0.002368 - conjugated induced dipole -0.007606 0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.236633 16.615069 2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 0.004775 0.016411 - conjugated induced dipole -0.000061 0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.591027 8.974808 2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 0.016467 0.014862 - conjugated induced dipole 0.000106 0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.073370 17.955503 9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 -0.001746 0.000735 - conjugated induced dipole 0.002994 -0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.831991 19.169118 9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 -0.016593 0.000811 - conjugated induced dipole 0.007353 -0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.630360 17.061198 9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 -0.009874 0.021011 - conjugated induced dipole 0.018333 -0.019255 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.096935 11.175774 8.356857 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046958 0.039179 -0.007441 - conjugated induced dipole -0.039937 0.045846 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.863062 15.991437 3.083473 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 -0.017077 0.022943 - conjugated induced dipole 0.015224 -0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.888465 11.415007 8.922441 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 -0.015625 0.045166 - conjugated induced dipole 0.061942 0.008873 0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.492944 16.669800 3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 0.007583 0.014002 - conjugated induced dipole 0.015109 0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.432957 9.745380 3.518027 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 0.015360 0.023246 - conjugated induced dipole 0.008731 0.020510 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.680659 11.622353 9.040343 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020830 0.022726 -0.000901 - conjugated induced dipole -0.022286 0.021511 0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.907985 10.825784 7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 -0.013065 0.031206 - conjugated induced dipole 0.032768 -0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.956246 18.222477 7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 -0.041713 0.001546 - conjugated induced dipole 0.005860 -0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.817300 17.302188 10.282389 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 -0.011418 -0.033335 - conjugated induced dipole -0.014981 -0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.137048 17.557330 9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 -0.031001 0.001118 - conjugated induced dipole -0.007779 -0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.262422 10.517303 2.885267 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 0.038168 0.020381 - conjugated induced dipole 0.010164 0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 41 - Polarizability point coords 18.317257 8.985495 2.886817 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000069 -0.000028 -0.000042 - induced dipole 0.000502 -0.006235 -0.000930 - conjugated induced dipole -0.002419 -0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.821907 9.330702 7.730563 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000040 -0.000015 -0.000017 - induced dipole -0.017774 -0.011888 -0.014683 - conjugated induced dipole -0.014358 -0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.046697 4.621832 2.134565 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000097 -0.000097 -0.000070 - induced dipole 0.063346 0.043899 -0.005721 - conjugated induced dipole 0.055842 0.056799 -0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.453906 3.806972 7.987693 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000037 -0.000034 -0.000020 - induced dipole -0.003843 0.029042 -0.022595 - conjugated induced dipole -0.008031 0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.787384 7.266472 5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000045 -0.000026 -0.000025 - induced dipole -0.013189 -0.004500 -0.010285 - conjugated induced dipole -0.010329 -0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.659016 11.272204 3.117975 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000077 -0.000014 -0.000044 - induced dipole 0.002879 -0.021657 0.001455 - conjugated induced dipole -0.001239 -0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.816063 11.109113 2.738049 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000116 -0.000010 -0.000069 - induced dipole -0.024576 0.025280 0.002707 - conjugated induced dipole -0.021953 0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.626643 6.531587 3.116452 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000061 -0.000042 -0.000039 - induced dipole -0.004785 -0.002957 -0.007603 - conjugated induced dipole -0.011858 0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.255084 10.595828 3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000058 -0.000017 -0.000034 - induced dipole -0.026692 -0.007223 -0.008401 - conjugated induced dipole -0.024722 -0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.739969 9.073902 6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000046 -0.000019 -0.000021 - induced dipole -0.008021 -0.001430 -0.006467 - conjugated induced dipole -0.006680 -0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.277971 6.773043 2.497182 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000101 -0.000060 -0.000065 - induced dipole 0.009459 0.003713 -0.000482 - conjugated induced dipole 0.009703 0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.216429 5.376546 6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000045 -0.000034 -0.000024 - induced dipole -0.007350 0.008201 -0.009724 - conjugated induced dipole -0.006616 0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.583903 7.778838 2.140523 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000077 -0.000040 -0.000051 - induced dipole 0.032580 -0.005385 -0.002398 - conjugated induced dipole 0.029267 -0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.641930 9.213975 2.273651 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000103 -0.000031 -0.000065 - induced dipole 0.009130 -0.008630 0.003112 - conjugated induced dipole 0.008989 -0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.387688 9.735455 4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000050 -0.000018 -0.000027 - induced dipole -0.007992 0.001162 -0.007068 - conjugated induced dipole -0.007504 0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.381154 7.894441 3.272272 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000086 -0.000040 -0.000051 - induced dipole 0.021085 -0.001460 -0.001599 - conjugated induced dipole 0.016161 -0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.782257 5.749061 4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000049 -0.000038 -0.000030 - induced dipole -0.033173 -0.007600 -0.027393 - conjugated induced dipole -0.028333 -0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.889381 7.649243 5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000052 -0.000027 -0.000026 - induced dipole -0.013634 -0.005736 -0.010955 - conjugated induced dipole -0.012784 -0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.629141 3.538209 2.597099 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000106 -0.000137 -0.000076 - induced dipole 0.008720 0.015807 0.002368 - conjugated induced dipole 0.007606 0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.744904 10.228834 9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000039 -0.000012 -0.000014 - induced dipole -0.001749 0.004775 -0.016411 - conjugated induced dipole 0.000061 0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.390509 2.588573 9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000035 -0.000037 -0.000019 - induced dipole -0.000865 0.016467 -0.014862 - conjugated induced dipole -0.000106 0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.908167 11.569268 2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000088 -0.000011 -0.000055 - induced dipole -0.004462 -0.001746 -0.000735 - conjugated induced dipole -0.002994 -0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.149546 12.782883 2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000076 -0.000004 -0.000047 - induced dipole -0.006347 -0.016593 -0.000811 - conjugated induced dipole -0.007353 -0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.351176 10.674963 2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000046 -0.000015 -0.000029 - induced dipole -0.016570 -0.009874 -0.021011 - conjugated induced dipole -0.018333 -0.019255 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.884602 4.789539 3.100978 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000110 -0.000101 -0.000071 - induced dipole 0.046958 0.039179 0.007441 - conjugated induced dipole 0.039937 0.045846 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.118475 9.605202 8.374362 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000044 -0.000015 -0.000017 - induced dipole -0.028024 -0.017077 -0.022943 - conjugated induced dipole -0.015224 -0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.093072 5.028772 2.535393 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000044 -0.000042 -0.000033 - induced dipole -0.068050 -0.015625 -0.045166 - conjugated induced dipole -0.061942 0.008873 -0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.488592 10.283566 7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000042 -0.000013 -0.000017 - induced dipole -0.011763 0.007583 -0.014002 - conjugated induced dipole -0.015109 0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.548580 3.359146 7.939807 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000039 -0.000039 -0.000022 - induced dipole -0.017229 0.015360 -0.023246 - conjugated induced dipole -0.008731 0.020510 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.300878 5.236118 2.417492 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000119 -0.000098 -0.000080 - induced dipole 0.020830 0.022726 0.000901 - conjugated induced dipole 0.022286 0.021511 -0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.073552 4.439549 3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000050 -0.000051 -0.000035 - induced dipole -0.031823 -0.013065 -0.031206 - conjugated induced dipole -0.032768 -0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.025291 11.836242 3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000051 -0.000011 -0.000028 - induced dipole -0.010155 -0.041713 -0.001546 - conjugated induced dipole -0.005860 -0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.164236 10.915953 1.175445 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000099 -0.000015 -0.000070 - induced dipole 0.025817 -0.011418 0.033335 - conjugated induced dipole 0.014981 -0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.844488 11.171095 2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000071 -0.000015 -0.000045 - induced dipole 0.012761 -0.031001 -0.001118 - conjugated induced dipole 0.007779 -0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.719115 4.131068 8.572568 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000042 -0.000036 -0.000021 - induced dipole -0.009280 0.038168 -0.020381 - conjugated induced dipole -0.010164 0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 42 - Polarizability point coords 33.225449 7.987610 -9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444129 6.305470 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 0.031001 -0.001118 - conjugated induced dipole 0.007779 0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 40.869553 8.875139 -3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821479 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 -0.007583 -0.014002 - conjugated induced dipole -0.015109 -0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.427576 14.536805 -9.323370 - polarizability tensor 5.676900 -5.144008 -0.727143 -3.339388 4.987141 -0.427749 -0.708036 -0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063351 -0.043904 -0.005722 - conjugated induced dipole 0.055846 -0.056805 -0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.929540 15.799559 -3.518027 - polarizability tensor 2.014660 1.411523 2.754674 0.096191 2.864916 1.368380 1.742511 2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 -0.015360 -0.023246 - conjugated induced dipole -0.008731 -0.020509 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 39.120930 10.084803 -5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 0.001430 -0.006467 - conjugated induced dipole -0.006680 0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.658932 12.385662 -8.960653 - polarizability tensor 2.247827 -1.783499 0.065362 -1.149026 2.379898 0.043699 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 -0.003713 -0.000482 - conjugated induced dipole 0.009703 -0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.289127 7.589437 -9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 0.001746 -0.000735 - conjugated induced dipole -0.002995 0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.007603 12.627117 -8.341383 - polarizability tensor 5.018070 4.875224 1.088491 1.811907 4.579783 0.228245 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 0.002957 -0.007603 - conjugated induced dipole -0.011858 -0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 35.636045 8.562876 -8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 0.007223 -0.008401 - conjugated induced dipole -0.024722 0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.597390 13.782158 -5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 -0.008201 -0.009724 - conjugated induced dipole -0.006616 -0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.698218 10.173209 -8.571017 - polarizability tensor 3.009104 -0.265453 0.164854 -0.392052 2.422903 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 0.006235 -0.000930 - conjugated induced dipole -0.002419 0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.270342 11.509461 -5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522052 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 0.005736 -0.010955 - conjugated induced dipole -0.012784 0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.762115 11.264264 -8.185563 - polarizability tensor 13.654114 -2.638427 1.355101 -2.419218 4.125882 0.076557 2.653090 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 0.001460 -0.001599 - conjugated induced dipole 0.016161 0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.022891 9.944730 -9.184184 - polarizability tensor 2.960546 0.866100 0.523975 1.061801 5.117295 0.710667 0.733477 0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 0.008630 0.003112 - conjugated induced dipole 0.008989 0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 36.163218 13.409644 -6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 0.007600 -0.027393 - conjugated induced dipole -0.028333 0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.964864 11.379867 -9.317312 - polarizability tensor 12.949895 -2.646494 1.785361 -2.381880 4.179640 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 0.005385 -0.002398 - conjugated induced dipole 0.029267 0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.768649 9.423250 -7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 -0.001162 -0.007068 - conjugated induced dipole -0.007504 -0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.168344 11.892233 -6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460098 13.263287 0.923067 0.789240 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 0.004500 -0.010285 - conjugated induced dipole -0.010329 0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.010102 15.620496 -8.860735 - polarizability tensor 2.586919 -0.528104 -0.018359 -0.362648 2.294263 -0.043707 0.109841 -0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 -0.015807 0.002368 - conjugated induced dipole 0.007606 -0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 42.125865 8.929871 -2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 -0.004775 -0.016411 - conjugated induced dipole 0.000061 -0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.771470 16.570132 -2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 -0.016467 -0.014861 - conjugated induced dipole -0.000106 -0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.545198 8.242753 -10.282389 - polarizability tensor 8.609790 3.161438 4.330874 3.390209 5.869742 2.969759 2.433190 1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 0.011418 0.033335 - conjugated induced dipole 0.014981 0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.406252 7.322463 -7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 0.041713 -0.001546 - conjugated induced dipole -0.005860 0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.530507 6.375822 -9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 0.016593 -0.000811 - conjugated induced dipole -0.007353 0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.681815 13.922565 -9.040202 - polarizability tensor 3.548722 -1.577098 0.269187 -2.005619 4.318440 0.319352 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020829 -0.022725 0.000901 - conjugated induced dipole 0.022286 -0.021510 -0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 41.202868 9.828003 -3.727272 - polarizability tensor 5.713597 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 0.011888 -0.014683 - conjugated induced dipole -0.014358 0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.454513 14.719156 -7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225663 5.733018 0.256666 1.271657 0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 0.013065 -0.031206 - conjugated induced dipole -0.032768 0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 40.499436 9.553503 -3.083473 - polarizability tensor 6.707221 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 0.017077 -0.022943 - conjugated induced dipole -0.015224 0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.100077 15.027636 -2.885267 - polarizability tensor 1.169671 1.724727 0.923947 2.191905 7.141823 4.969365 0.687892 2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 -0.038168 -0.020381 - conjugated induced dipole -0.010164 -0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.265668 14.369256 -8.356897 - polarizability tensor 5.399126 -5.564498 0.213556 -4.017191 5.082747 0.297192 1.393777 -0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046956 -0.039177 0.007441 - conjugated induced dipole 0.039935 -0.045844 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 35.474033 14.129933 -8.922442 - polarizability tensor 10.702598 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 0.015625 -0.045166 - conjugated induced dipole -0.061942 -0.008873 -0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.732137 8.483741 -9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 0.009874 -0.021011 - conjugated induced dipole -0.018333 0.019256 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.197023 8.049592 -8.719786 - polarizability tensor 9.556647 3.699450 -1.931270 3.986422 6.261107 -1.285638 0.992071 0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 -0.025280 0.002707 - conjugated induced dipole -0.021953 -0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.039977 7.886501 -8.339860 - polarizability tensor 4.541349 2.067478 1.036870 1.580946 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 0.021657 0.001455 - conjugated induced dipole -0.001239 0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.834866 15.351734 -3.470143 - polarizability tensor 2.204025 0.653491 0.327503 1.701255 5.540977 4.544585 0.766864 3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 -0.029042 -0.022595 - conjugated induced dipole -0.008031 -0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 43 - Polarizability point coords 27.518009 14.373845 -2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444129 6.305470 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 0.031001 0.001118 - conjugated induced dipole -0.007779 0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.873905 15.261374 -7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821479 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 -0.007583 0.014002 - conjugated induced dipole 0.015109 -0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.315882 20.923040 -2.134465 - polarizability tensor 5.676900 5.144008 -0.727143 3.339388 4.987141 0.427749 -0.708036 0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063351 -0.043904 0.005722 - conjugated induced dipole -0.055846 -0.056805 0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.813919 22.185794 -7.939808 - polarizability tensor 2.014660 -1.411523 2.754674 -0.096191 2.864916 -1.368380 1.742511 -2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 -0.015360 0.023246 - conjugated induced dipole 0.008731 -0.020509 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.622529 16.471038 -6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 0.001430 0.006467 - conjugated induced dipole 0.006680 0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.084527 18.771897 -2.497182 - polarizability tensor 2.247827 1.783499 0.065362 1.149026 2.379898 -0.043699 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 -0.003713 0.000482 - conjugated induced dipole -0.009703 -0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.454331 13.975671 -2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 0.001746 0.000735 - conjugated induced dipole 0.002995 0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.735855 19.013352 -3.116452 - polarizability tensor 5.018070 -4.875224 1.088491 -1.811907 4.579783 -0.228245 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 0.002957 0.007603 - conjugated induced dipole 0.011858 -0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.107413 14.949111 -3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 0.007223 0.008401 - conjugated induced dipole 0.024722 0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.146068 20.168393 -6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 -0.008201 0.009724 - conjugated induced dipole 0.006616 -0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.045240 16.559444 -2.886817 - polarizability tensor 3.009104 0.265453 0.164854 0.392052 2.422903 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 0.006235 0.000930 - conjugated induced dipole 0.002419 0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.473116 17.895696 -5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522052 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 0.005736 0.010955 - conjugated induced dipole 0.012784 0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.981343 17.650499 -3.272272 - polarizability tensor 13.654114 2.638427 1.355101 2.419218 4.125882 -0.076557 2.653090 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 0.001460 0.001599 - conjugated induced dipole -0.016161 0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.720568 16.330965 -2.273651 - polarizability tensor 2.960546 -0.866100 0.523975 -1.061801 5.117295 -0.710667 0.733477 -0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 0.008630 -0.003112 - conjugated induced dipole -0.008989 0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.580241 19.795879 -4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 0.007600 0.027393 - conjugated induced dipole 0.028333 0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.778595 17.766102 -2.140523 - polarizability tensor 12.949895 2.646494 1.785361 2.381880 4.179640 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 0.005385 0.002398 - conjugated induced dipole -0.029267 0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.974810 15.809485 -4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 -0.001162 0.007068 - conjugated induced dipole 0.007504 -0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.575114 18.278468 -5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460098 13.263287 -0.923067 0.789240 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 0.004500 0.010285 - conjugated induced dipole 0.010329 0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.733356 22.006731 -2.597100 - polarizability tensor 2.586919 0.528104 -0.018359 0.362648 2.294263 0.043707 0.109841 0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 -0.015807 -0.002368 - conjugated induced dipole -0.007606 -0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.617594 15.316106 -9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 -0.004775 0.016411 - conjugated induced dipole -0.000061 -0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.971988 22.956367 -9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 -0.016467 0.014861 - conjugated induced dipole 0.000106 -0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.198261 14.628988 -1.175445 - polarizability tensor 8.609790 -3.161438 4.330874 -3.390209 5.869742 -2.969759 2.433190 -1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 0.011418 -0.033335 - conjugated induced dipole -0.014981 0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.337207 13.708698 -3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 0.041713 0.001546 - conjugated induced dipole 0.005860 0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.212952 12.762057 -2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 0.016593 0.000811 - conjugated induced dipole 0.007353 0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.061644 20.308800 -2.417633 - polarizability tensor 3.548722 1.577098 0.269187 2.005619 4.318440 -0.319352 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020829 -0.022725 -0.000901 - conjugated induced dipole -0.022286 -0.021510 0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.540590 16.214238 -7.730563 - polarizability tensor 5.713597 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 0.011888 0.014683 - conjugated induced dipole 0.014358 0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.288946 21.105391 -3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225663 5.733018 -0.256666 1.271657 -0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 0.013065 0.031206 - conjugated induced dipole 0.032768 0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.244023 15.939738 -8.374362 - polarizability tensor 6.707221 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 0.017077 0.022943 - conjugated induced dipole 0.015224 0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.643382 21.413871 -8.572568 - polarizability tensor 1.169671 -1.724727 0.923947 -2.191905 7.141823 -4.969365 0.687892 -2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 -0.038168 0.020381 - conjugated induced dipole 0.010164 -0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.477790 20.755491 -3.100937 - polarizability tensor 5.399126 5.564498 0.213556 4.017191 5.082747 -0.297192 1.393777 0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046956 -0.039177 -0.007441 - conjugated induced dipole -0.039935 -0.045844 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.269426 20.516167 -2.535393 - polarizability tensor 10.702598 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 0.015625 0.045166 - conjugated induced dipole 0.061942 -0.008873 0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.011321 14.869976 -2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 0.009874 0.021011 - conjugated induced dipole 0.018333 0.019256 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.546435 14.435827 -2.738048 - polarizability tensor 9.556647 -3.699450 -1.931270 -3.986422 6.261107 1.285638 0.992071 -0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 -0.025280 -0.002707 - conjugated induced dipole 0.021953 -0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.703482 14.272736 -3.117975 - polarizability tensor 4.541349 -2.067478 1.036870 -1.580946 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 0.021657 -0.001455 - conjugated induced dipole 0.001239 0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.908592 21.737969 -7.987692 - polarizability tensor 2.204025 -0.653491 0.327503 -1.701255 5.540977 -4.544585 0.766864 -3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 -0.029042 0.022595 - conjugated induced dipole 0.008031 -0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 44 - Polarizability point coords 3.583608 15.371730 31.486687 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 -0.006235 0.000930 - conjugated induced dipole 0.002419 -0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.921042 15.716937 26.642941 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 -0.011888 0.014683 - conjugated induced dipole 0.014358 -0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.854169 11.008067 32.238939 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063346 0.043899 0.005721 - conjugated induced dipole -0.055842 0.056799 0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.553040 10.193207 26.385811 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 0.029042 0.022595 - conjugated induced dipole 0.008031 0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.886518 13.652707 29.220750 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 -0.004500 0.010285 - conjugated induced dipole 0.010329 -0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.241850 17.658439 31.255529 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 -0.021657 -0.001455 - conjugated induced dipole 0.001239 -0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.084803 17.495348 31.635455 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 0.025280 -0.002707 - conjugated induced dipole 0.021953 0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.274223 12.917822 31.257052 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 -0.002957 0.007603 - conjugated induced dipole 0.011858 0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.645781 16.982063 31.342289 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 -0.007223 0.008401 - conjugated induced dipole 0.024722 -0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.839103 15.460137 28.020022 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 -0.001430 0.006467 - conjugated induced dipole 0.006680 -0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.622894 13.159277 31.876322 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 0.003713 0.000482 - conjugated induced dipole -0.009703 0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.315564 11.762781 27.916692 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 0.008201 0.009724 - conjugated induced dipole 0.006616 0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.316963 14.165073 32.232981 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 -0.005385 0.002398 - conjugated induced dipole -0.029267 -0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.258936 15.600210 32.099853 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 -0.008630 -0.003112 - conjugated induced dipole -0.008989 -0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.486822 16.121690 29.965816 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 0.001162 0.007068 - conjugated induced dipole 0.007504 0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.519711 14.280676 31.101232 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 -0.001460 0.001599 - conjugated induced dipole -0.016161 -0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.118609 12.135296 29.886424 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 -0.007600 0.027393 - conjugated induced dipole 0.028333 -0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.011484 14.035478 28.521541 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 -0.005736 0.010955 - conjugated induced dipole 0.012784 -0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.271724 9.924444 31.776405 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 0.015807 -0.002368 - conjugated induced dipole -0.007606 0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.844038 16.615069 25.335067 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 0.004775 0.016411 - conjugated induced dipole -0.000061 0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.489644 8.974808 25.009608 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 0.016467 0.014862 - conjugated induced dipole 0.000106 0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.992699 17.955503 32.106919 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 -0.001746 0.000735 - conjugated induced dipole 0.002994 -0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.751320 19.169118 31.993285 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 -0.016593 0.000811 - conjugated induced dipole 0.007353 -0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.450311 17.061198 31.935679 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 -0.009874 0.021011 - conjugated induced dipole 0.018333 -0.019255 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.016264 11.175774 31.272526 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046958 0.039179 -0.007441 - conjugated induced dipole -0.039937 0.045846 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.217610 15.991437 25.999142 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 -0.017077 0.022943 - conjugated induced dipole 0.015224 -0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.807794 11.415007 31.838111 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 -0.015625 0.045166 - conjugated induced dipole 0.061942 0.008873 0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.587727 16.669800 26.657170 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 0.007583 0.014002 - conjugated induced dipole 0.015109 0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.647714 9.745380 26.433697 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 0.015360 0.023246 - conjugated induced dipole 0.008731 0.020510 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.599988 11.622353 31.956012 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020830 0.022726 -0.000901 - conjugated induced dipole -0.022286 0.021511 0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.827314 10.825784 30.590634 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 -0.013065 0.031206 - conjugated induced dipole 0.032768 -0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.124425 18.222477 30.716646 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 -0.041713 0.001546 - conjugated induced dipole 0.005860 -0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.736629 17.302188 33.198059 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 -0.011418 -0.033335 - conjugated induced dipole -0.014981 -0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.056377 17.557330 32.281745 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 -0.031001 0.001118 - conjugated induced dipole -0.007779 -0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.818249 10.517303 25.800936 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 0.038168 0.020381 - conjugated induced dipole 0.010164 0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 45 - Polarizability point coords 10.236586 8.985495 25.802487 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.000502 -0.006235 -0.000930 - conjugated induced dipole -0.002419 -0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.741236 9.330702 30.646232 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole -0.017774 -0.011888 -0.014683 - conjugated induced dipole -0.014358 -0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.966026 4.621832 25.050235 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.063346 0.043899 -0.005721 - conjugated induced dipole 0.055842 0.056799 -0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.373234 3.806972 30.903362 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole -0.003843 0.029042 -0.022595 - conjugated induced dipole -0.008031 0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.706712 7.266472 28.068423 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole -0.013189 -0.004500 -0.010285 - conjugated induced dipole -0.010329 -0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.578345 11.272204 26.033644 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole 0.002879 -0.021657 0.001455 - conjugated induced dipole -0.001239 -0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.735392 11.109113 25.653718 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.024576 0.025280 0.002707 - conjugated induced dipole -0.021953 0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.545971 6.531587 26.032121 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.004785 -0.002957 -0.007603 - conjugated induced dipole -0.011858 0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.174413 10.595828 25.946884 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole -0.026692 -0.007223 -0.008401 - conjugated induced dipole -0.024722 -0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.659298 9.073902 29.269151 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole -0.008021 -0.001430 -0.006467 - conjugated induced dipole -0.006680 -0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.197300 6.773043 25.412851 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.009459 0.003713 -0.000482 - conjugated induced dipole 0.009703 0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.135758 5.376546 29.372481 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole -0.007350 0.008201 -0.009724 - conjugated induced dipole -0.006616 0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.503232 7.778838 25.056192 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.032580 -0.005385 -0.002398 - conjugated induced dipole 0.029267 -0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.561259 9.213975 25.189320 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.009130 -0.008630 0.003112 - conjugated induced dipole 0.008989 -0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.307017 9.735455 27.323358 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole -0.007992 0.001162 -0.007068 - conjugated induced dipole -0.007504 0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.300483 7.894441 26.187941 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.021085 -0.001460 -0.001599 - conjugated induced dipole 0.016161 -0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.701586 5.749061 27.402749 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.033173 -0.007600 -0.027393 - conjugated induced dipole -0.028333 -0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.808710 7.649243 28.767632 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole -0.013634 -0.005736 -0.010955 - conjugated induced dipole -0.012784 -0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.548470 3.538209 25.512769 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.008720 0.015807 0.002368 - conjugated induced dipole 0.007606 0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.664233 10.228834 31.954106 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole -0.001749 0.004775 -0.016411 - conjugated induced dipole 0.000061 0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.309838 2.588573 32.279566 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole -0.000865 0.016467 -0.014862 - conjugated induced dipole -0.000106 0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.827495 11.569268 25.182254 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.004462 -0.001746 -0.000735 - conjugated induced dipole -0.002994 -0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.068875 12.782883 25.295888 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole -0.006347 -0.016593 -0.000811 - conjugated induced dipole -0.007353 -0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.270505 10.674963 25.353494 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole -0.016570 -0.009874 -0.021011 - conjugated induced dipole -0.018333 -0.019255 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.803931 4.789539 26.016647 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.046958 0.039179 0.007441 - conjugated induced dipole 0.039937 0.045846 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.037804 9.605202 31.290032 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole -0.028024 -0.017077 -0.022943 - conjugated induced dipole -0.015224 -0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.012401 5.028772 25.451063 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.068050 -0.015625 -0.045166 - conjugated induced dipole -0.061942 0.008873 -0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.407921 10.283566 30.632003 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole -0.011763 0.007583 -0.014002 - conjugated induced dipole -0.015109 0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.467909 3.359146 30.855477 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole -0.017229 0.015360 -0.023246 - conjugated induced dipole -0.008731 0.020510 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.220207 5.236118 25.333161 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.020830 0.022726 0.000901 - conjugated induced dipole 0.022286 0.021511 -0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.992881 4.439549 26.698539 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole -0.031823 -0.013065 -0.031206 - conjugated induced dipole -0.032768 -0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.944620 11.836242 26.572528 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole -0.010155 -0.041713 -0.001546 - conjugated induced dipole -0.005860 -0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.083565 10.915953 24.091115 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.025817 -0.011418 0.033335 - conjugated induced dipole 0.014981 -0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.763817 11.171095 25.007429 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000000 -0.000000 -0.000000 - induced dipole 0.012761 -0.031001 -0.001118 - conjugated induced dipole 0.007779 -0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.638444 4.131068 31.488237 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 -0.000000 -0.000000 - induced dipole -0.009280 0.038168 -0.020381 - conjugated induced dipole -0.010164 0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 46 - Polarizability point coords 25.144779 7.987609 13.549594 - polarizability tensor 4.528424 1.917551 0.356759 1.444128 6.305472 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 0.031001 -0.001118 - conjugated induced dipole 0.007779 0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.788882 8.875142 19.174170 - polarizability tensor 3.614271 -1.113333 2.917217 -0.029793 1.821479 0.641372 2.940226 -0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 -0.007583 -0.014002 - conjugated induced dipole -0.015109 -0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.346903 14.536802 13.592298 - polarizability tensor 5.676904 -5.144008 -0.727141 -3.339388 4.987137 -0.427750 -0.708035 -0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063351 -0.043904 -0.005722 - conjugated induced dipole 0.055846 -0.056805 -0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.848865 15.799561 19.397643 - polarizability tensor 2.014659 1.411522 2.754673 0.096191 2.864917 1.368381 1.742510 2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 -0.015360 -0.023246 - conjugated induced dipole -0.008731 -0.020509 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.040258 10.084805 17.811318 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536299 1.326286 -0.648852 1.549497 -0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 0.001430 -0.006467 - conjugated induced dipole -0.006680 0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.578260 12.385660 13.955016 - polarizability tensor 2.247828 -1.783499 0.065363 -1.149026 2.379896 0.043699 0.251241 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 -0.003713 -0.000482 - conjugated induced dipole 0.009703 -0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.208458 7.589435 13.724420 - polarizability tensor 5.239487 -1.239561 0.807464 -0.101560 1.234380 0.089842 1.195631 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 0.001746 -0.000735 - conjugated induced dipole -0.002995 0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.926931 12.627117 14.574286 - polarizability tensor 5.018067 4.875224 1.088491 1.811907 4.579786 0.228246 1.487331 1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 0.002957 -0.007603 - conjugated induced dipole -0.011858 -0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.555375 8.562877 14.489050 - polarizability tensor 9.182809 -1.751286 0.995508 -0.084237 1.828484 0.387734 2.027093 0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 0.007223 -0.008401 - conjugated induced dipole -0.024722 0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.516717 13.782160 17.914647 - polarizability tensor 1.671051 0.572015 1.296469 0.542823 2.162529 1.769890 1.031019 1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 -0.008201 -0.009724 - conjugated induced dipole -0.006616 -0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.617547 10.173209 14.344652 - polarizability tensor 3.009105 -0.265453 0.164855 -0.392052 2.422902 0.078852 0.571863 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 0.006235 -0.000930 - conjugated induced dipole -0.002419 0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.189670 11.509463 17.309798 - polarizability tensor 5.263037 -4.454329 1.663069 -4.279634 13.403258 0.812801 1.522053 0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 0.005736 -0.010955 - conjugated induced dipole -0.012784 0.003817 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.681444 11.264263 14.730106 - polarizability tensor 13.654116 -2.638423 1.355104 -2.419214 4.125879 0.076557 2.653092 -0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 0.001460 -0.001599 - conjugated induced dipole 0.016161 0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.942220 9.944727 13.731485 - polarizability tensor 2.960545 0.866099 0.523975 1.061800 5.117296 0.710667 0.733477 0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 0.008630 0.003112 - conjugated induced dipole 0.008989 0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.082545 13.409645 15.944915 - polarizability tensor 5.617929 -1.381554 4.877276 -1.251780 2.735770 -1.290944 3.659516 -1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 0.007600 -0.027393 - conjugated induced dipole -0.028333 0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.884192 11.379865 13.598357 - polarizability tensor 12.949896 -2.646490 1.785363 -2.381876 4.179637 -0.329227 2.420663 -0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 0.005385 -0.002398 - conjugated induced dipole 0.029267 0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.687978 9.423251 15.865524 - polarizability tensor 3.040417 1.393146 2.596746 0.925311 4.759664 3.665080 1.764101 3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 -0.001162 -0.007068 - conjugated induced dipole -0.007504 -0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.087672 11.892234 16.610589 - polarizability tensor 4.688607 -4.661428 1.698768 -4.460102 13.263283 0.923066 0.789241 0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 0.004500 -0.010285 - conjugated induced dipole -0.010329 0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.929429 15.620492 14.054933 - polarizability tensor 2.586920 -0.528103 -0.018359 -0.362647 2.294262 -0.043707 0.109841 -0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 -0.015807 0.002368 - conjugated induced dipole 0.007606 -0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.045193 8.929875 20.496273 - polarizability tensor 2.625149 -0.213208 0.424935 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 -0.004775 -0.016411 - conjugated induced dipole 0.000061 -0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.690795 16.570134 20.821732 - polarizability tensor 2.080856 0.280706 0.149350 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 -0.016467 -0.014861 - conjugated induced dipole -0.000106 -0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.464528 8.242750 12.633279 - polarizability tensor 8.609786 3.161439 4.330873 3.390210 5.869745 2.969762 2.433189 1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 0.011418 0.033335 - conjugated induced dipole 0.014981 0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.325582 7.322464 15.114694 - polarizability tensor 5.800146 -0.752295 1.186095 0.172145 7.005037 0.548345 0.964192 0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 0.041713 -0.001546 - conjugated induced dipole -0.005860 0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.449837 6.375821 13.838054 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321947 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 0.016593 -0.000811 - conjugated induced dipole -0.007353 0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.601142 13.922561 13.875466 - polarizability tensor 3.548724 -1.577098 0.269188 -2.005619 4.318439 0.319351 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020829 -0.022725 0.000901 - conjugated induced dipole 0.022286 -0.021510 -0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.122196 9.828006 19.188399 - polarizability tensor 5.713598 -1.433755 3.432521 -2.871854 2.858065 -3.181668 3.126669 -2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 0.011888 -0.014683 - conjugated induced dipole -0.014358 0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.373840 14.719156 15.240704 - polarizability tensor 6.533271 0.444461 1.547291 -1.225663 5.733017 0.256666 1.271658 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 0.013065 -0.031206 - conjugated induced dipole -0.032768 0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.418764 9.553506 19.832198 - polarizability tensor 6.707222 -2.929001 4.115173 -3.681834 2.332214 -2.837643 2.110817 -1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 0.017077 -0.022943 - conjugated induced dipole -0.015224 0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.019403 15.027638 20.030403 - polarizability tensor 1.169669 1.724724 0.923944 2.191901 7.141826 4.969366 0.687890 2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 -0.038168 -0.020381 - conjugated induced dipole -0.010164 -0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.184995 14.369253 14.558771 - polarizability tensor 5.399130 -5.564497 0.213557 -4.017191 5.082742 0.297191 1.393778 -0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046956 -0.039177 0.007441 - conjugated induced dipole 0.039935 -0.045844 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.393360 14.129933 13.993228 - polarizability tensor 10.702596 1.789313 3.005774 -0.514549 5.742470 -3.210321 2.108866 -0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 0.015625 -0.045166 - conjugated induced dipole -0.061942 -0.008873 -0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.651467 8.483743 13.895660 - polarizability tensor 8.115953 0.753025 -0.167711 1.550833 6.978558 4.365403 0.764813 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 0.009874 -0.021011 - conjugated induced dipole -0.018333 0.019256 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.116353 8.049589 14.195882 - polarizability tensor 9.556643 3.699452 -1.931269 3.986424 6.261110 -1.285638 0.992072 0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 -0.025280 0.002707 - conjugated induced dipole -0.021953 -0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.959306 7.886500 14.575810 - polarizability tensor 4.541347 2.067477 1.036870 1.580945 6.187413 0.395977 1.497097 1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 0.021657 0.001455 - conjugated induced dipole -0.001239 0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.754192 15.351736 19.445527 - polarizability tensor 2.204024 0.653489 0.327501 1.701252 5.540979 4.544585 0.766862 3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 -0.029042 -0.022595 - conjugated induced dipole -0.008031 -0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 47 - Polarizability point coords 19.437335 14.373844 20.823910 - polarizability tensor 4.528424 -1.917551 0.356759 -1.444128 6.305472 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 0.031001 0.001118 - conjugated induced dipole -0.007779 0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.793233 15.261377 15.199334 - polarizability tensor 3.614271 1.113333 2.917217 0.029793 1.821479 -0.641372 2.940226 0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 -0.007583 0.014002 - conjugated induced dipole 0.015109 -0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.235211 20.923037 20.781206 - polarizability tensor 5.676904 5.144008 -0.727141 3.339388 4.987137 0.427750 -0.708035 0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063351 -0.043904 0.005722 - conjugated induced dipole -0.055846 -0.056805 0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.733249 22.185796 14.975861 - polarizability tensor 2.014659 -1.411522 2.754673 -0.096191 2.864917 -1.368381 1.742510 -2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 -0.015360 0.023246 - conjugated induced dipole 0.008731 -0.020509 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.541856 16.471040 16.562186 - polarizability tensor 2.644773 0.420648 2.214495 0.536299 1.326286 0.648852 1.549497 0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 0.001430 0.006467 - conjugated induced dipole 0.006680 0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.003855 18.771895 20.418488 - polarizability tensor 2.247828 1.783499 0.065363 1.149026 2.379896 -0.043699 0.251241 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 -0.003713 0.000482 - conjugated induced dipole -0.009703 -0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.373657 13.975670 20.649084 - polarizability tensor 5.239487 1.239561 0.807464 0.101560 1.234380 -0.089842 1.195631 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 0.001746 0.000735 - conjugated induced dipole 0.002995 0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.655183 19.013352 19.799218 - polarizability tensor 5.018067 -4.875224 1.088491 -1.811907 4.579786 -0.228246 1.487331 -1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 0.002957 0.007603 - conjugated induced dipole 0.011858 -0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.026740 14.949112 19.884454 - polarizability tensor 9.182809 1.751286 0.995508 0.084237 1.828484 -0.387734 2.027093 -0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 0.007223 0.008401 - conjugated induced dipole 0.024722 0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.065398 20.168395 16.458857 - polarizability tensor 1.671051 -0.572015 1.296469 -0.542823 2.162529 -1.769890 1.031019 -1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 -0.008201 0.009724 - conjugated induced dipole 0.006616 -0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.964567 16.559444 20.028852 - polarizability tensor 3.009105 0.265453 0.164855 0.392052 2.422902 -0.078852 0.571863 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 0.006235 0.000930 - conjugated induced dipole 0.002419 0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.392445 17.895698 17.063706 - polarizability tensor 5.263037 4.454329 1.663069 4.279634 13.403258 -0.812801 1.522053 -0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 0.005736 0.010955 - conjugated induced dipole 0.012784 0.003817 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.900671 17.650498 19.643398 - polarizability tensor 13.654116 2.638423 1.355104 2.419214 4.125879 -0.076557 2.653092 0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 0.001460 0.001599 - conjugated induced dipole -0.016161 0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.639895 16.330962 20.642019 - polarizability tensor 2.960545 -0.866099 0.523975 -1.061800 5.117296 -0.710667 0.733477 -0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 0.008630 -0.003112 - conjugated induced dipole -0.008989 0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.499570 19.795880 18.428589 - polarizability tensor 5.617929 1.381554 4.877276 1.251780 2.735770 1.290944 3.659516 1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 0.007600 0.027393 - conjugated induced dipole 0.028333 0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.697922 17.766100 20.775147 - polarizability tensor 12.949896 2.646490 1.785363 2.381876 4.179637 0.329227 2.420663 0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 0.005385 0.002398 - conjugated induced dipole -0.029267 0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.894137 15.809486 18.507980 - polarizability tensor 3.040417 -1.393146 2.596746 -0.925311 4.759664 -3.665080 1.764101 -3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 -0.001162 0.007068 - conjugated induced dipole 0.007504 -0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.494442 18.278469 17.762915 - polarizability tensor 4.688607 4.661428 1.698768 4.460102 13.263283 -0.923066 0.789241 -0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 0.004500 0.010285 - conjugated induced dipole 0.010329 0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.652686 22.006727 20.318571 - polarizability tensor 2.586920 0.528103 -0.018359 0.362647 2.294262 0.043707 0.109841 0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 -0.015807 -0.002368 - conjugated induced dipole -0.007606 -0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.536921 15.316110 13.877231 - polarizability tensor 2.625149 0.213208 0.424935 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 -0.004775 0.016411 - conjugated induced dipole -0.000061 -0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.891319 22.956369 13.551772 - polarizability tensor 2.080856 -0.280706 0.149350 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 -0.016467 0.014861 - conjugated induced dipole 0.000106 -0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.117587 14.628985 21.740225 - polarizability tensor 8.609786 -3.161439 4.330873 -3.390210 5.869745 -2.969762 2.433189 -1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 0.011418 -0.033335 - conjugated induced dipole -0.014981 0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.256533 13.708699 19.258810 - polarizability tensor 5.800146 0.752295 1.186095 -0.172145 7.005037 -0.548345 0.964192 -0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 0.041713 0.001546 - conjugated induced dipole 0.005860 0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.132277 12.762056 20.535450 - polarizability tensor 2.238895 0.092051 0.189597 0.321947 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 0.016593 0.000811 - conjugated induced dipole 0.007353 0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.980972 20.308796 20.498038 - polarizability tensor 3.548724 1.577098 0.269188 2.005619 4.318439 -0.319351 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020829 -0.022725 -0.000901 - conjugated induced dipole -0.022286 -0.021510 0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.459918 16.214241 15.185105 - polarizability tensor 5.713598 1.433755 3.432521 2.871854 2.858065 3.181668 3.126669 2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 0.011888 0.014683 - conjugated induced dipole 0.014358 0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.208275 21.105391 19.132800 - polarizability tensor 6.533271 -0.444461 1.547291 1.225663 5.733017 -0.256666 1.271658 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 0.013065 0.031206 - conjugated induced dipole 0.032768 0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.163350 15.939741 14.541306 - polarizability tensor 6.707222 2.929001 4.115173 3.681834 2.332214 2.837643 2.110817 1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 0.017077 0.022943 - conjugated induced dipole 0.015224 0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.562712 21.413873 14.343101 - polarizability tensor 1.169669 -1.724724 0.923944 -2.191901 7.141826 -4.969366 0.687890 -2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 -0.038168 0.020381 - conjugated induced dipole 0.010164 -0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.397119 20.755488 19.814733 - polarizability tensor 5.399130 5.564497 0.213557 4.017191 5.082742 -0.297191 1.393778 0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046956 -0.039177 -0.007441 - conjugated induced dipole -0.039935 -0.045844 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.188755 20.516168 20.380276 - polarizability tensor 10.702596 -1.789313 3.005774 0.514549 5.742470 3.210321 2.108866 0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 0.015625 0.045166 - conjugated induced dipole 0.061942 -0.008873 0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.930648 14.869978 20.477844 - polarizability tensor 8.115953 -0.753025 -0.167711 -1.550833 6.978558 -4.365403 0.764813 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 0.009874 0.021011 - conjugated induced dipole 0.018333 0.019256 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.465761 14.435824 20.177622 - polarizability tensor 9.556643 -3.699452 -1.931269 -3.986424 6.261110 1.285638 0.992072 -0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 -0.025280 -0.002707 - conjugated induced dipole 0.021953 -0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.622808 14.272735 19.797694 - polarizability tensor 4.541347 -2.067477 1.036870 -1.580945 6.187413 -0.395977 1.497097 -1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 0.021657 -0.001455 - conjugated induced dipole 0.001239 0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.827923 21.737971 14.927977 - polarizability tensor 2.204024 -0.653489 0.327501 -1.701252 5.540979 -4.544585 0.766862 -3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 -0.029042 0.022595 - conjugated induced dipole 0.008031 -0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 48 - Polarizability point coords 11.664279 28.144200 8.571017 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 -0.006235 0.000930 - conjugated induced dipole 0.002419 -0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.159630 28.489407 3.727272 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 -0.011888 0.014683 - conjugated induced dipole 0.014358 -0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.934840 23.780537 9.323269 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063346 0.043899 0.005721 - conjugated induced dipole -0.055842 0.056799 0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.527631 22.965676 3.470142 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 0.029042 0.022595 - conjugated induced dipole 0.008031 0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.194153 26.425177 6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 -0.004500 0.010285 - conjugated induced dipole 0.010329 -0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.322521 30.430909 8.339860 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 -0.021657 -0.001455 - conjugated induced dipole 0.001239 -0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.165474 30.267818 8.719786 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 0.025280 -0.002707 - conjugated induced dipole 0.021953 0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.354894 25.690292 8.341383 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 -0.002957 0.007603 - conjugated induced dipole 0.011858 0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.726452 29.754533 8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 -0.007223 0.008401 - conjugated induced dipole 0.024722 -0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.241568 28.232607 5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 -0.001430 0.006467 - conjugated induced dipole 0.006680 -0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.703566 25.931747 8.960653 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 0.003713 0.000482 - conjugated induced dipole -0.009703 0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.765107 24.535251 5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 0.008201 0.009724 - conjugated induced dipole 0.006616 0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.397634 26.937543 9.317312 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 -0.005385 0.002398 - conjugated induced dipole -0.029267 -0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.339607 28.372680 9.184184 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 -0.008630 -0.003112 - conjugated induced dipole -0.008989 -0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.593849 28.894160 7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 0.001162 0.007068 - conjugated induced dipole 0.007504 0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.600382 27.053146 8.185563 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 -0.001460 0.001599 - conjugated induced dipole -0.016161 -0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.199280 24.907766 6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 -0.007600 0.027393 - conjugated induced dipole 0.028333 -0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.092155 26.807948 5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 -0.005736 0.010955 - conjugated induced dipole 0.012784 -0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.352395 22.696914 8.860735 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 0.015807 -0.002368 - conjugated induced dipole -0.007606 0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.236633 29.387539 2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 0.004775 0.016411 - conjugated induced dipole -0.000061 0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.591027 21.747277 2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 0.016467 0.014862 - conjugated induced dipole 0.000106 0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.073370 30.727973 9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 -0.001746 0.000735 - conjugated induced dipole 0.002994 -0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.831991 31.941587 9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 -0.016593 0.000811 - conjugated induced dipole 0.007353 -0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.630360 29.833668 9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 -0.009874 0.021011 - conjugated induced dipole 0.018333 -0.019255 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.096935 23.948244 8.356857 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046958 0.039179 -0.007441 - conjugated induced dipole -0.039937 0.045846 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.863062 28.763906 3.083473 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 -0.017077 0.022943 - conjugated induced dipole 0.015224 -0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.888465 24.187477 8.922441 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 -0.015625 0.045166 - conjugated induced dipole 0.061942 0.008873 0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.492944 29.442270 3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 0.007583 0.014002 - conjugated induced dipole 0.015109 0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.432957 22.517850 3.518027 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 0.015360 0.023246 - conjugated induced dipole 0.008731 0.020510 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.680659 24.394823 9.040343 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020830 0.022726 -0.000901 - conjugated induced dipole -0.022286 0.021511 0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.907985 23.598254 7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 -0.013065 0.031206 - conjugated induced dipole 0.032768 -0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.956246 30.994947 7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 -0.041713 0.001546 - conjugated induced dipole 0.005860 -0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.817300 30.074657 10.282389 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 -0.011418 -0.033335 - conjugated induced dipole -0.014981 -0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.137048 30.329800 9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 -0.031001 0.001118 - conjugated induced dipole -0.007779 -0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.262422 23.289773 2.885267 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 0.038168 0.020381 - conjugated induced dipole 0.010164 0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 49 - Polarizability point coords 18.317257 21.757965 2.886817 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 -0.006235 -0.000930 - conjugated induced dipole -0.002419 -0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.821907 22.103172 7.730563 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 -0.011888 -0.014683 - conjugated induced dipole -0.014358 -0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.046697 17.394302 2.134565 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063346 0.043899 -0.005721 - conjugated induced dipole 0.055842 0.056799 -0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.453906 16.579441 7.987693 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 0.029042 -0.022595 - conjugated induced dipole -0.008031 0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.787384 20.038942 5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 -0.004500 -0.010285 - conjugated induced dipole -0.010329 -0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.659016 24.044674 3.117975 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 -0.021657 0.001455 - conjugated induced dipole -0.001239 -0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.816063 23.881583 2.738049 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 0.025280 0.002707 - conjugated induced dipole -0.021953 0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.626643 19.304057 3.116452 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 -0.002957 -0.007603 - conjugated induced dipole -0.011858 0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.255084 23.368298 3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 -0.007223 -0.008401 - conjugated induced dipole -0.024722 -0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.739969 21.846372 6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 -0.001430 -0.006467 - conjugated induced dipole -0.006680 -0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.277971 19.545512 2.497182 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 0.003713 -0.000482 - conjugated induced dipole 0.009703 0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.216429 18.149016 6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 0.008201 -0.009724 - conjugated induced dipole -0.006616 0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.583903 20.551308 2.140523 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 -0.005385 -0.002398 - conjugated induced dipole 0.029267 -0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.641930 21.986445 2.273651 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 -0.008630 0.003112 - conjugated induced dipole 0.008989 -0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.387688 22.507925 4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 0.001162 -0.007068 - conjugated induced dipole -0.007504 0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.381154 20.666911 3.272272 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 -0.001460 -0.001599 - conjugated induced dipole 0.016161 -0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.782257 18.521531 4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 -0.007600 -0.027393 - conjugated induced dipole -0.028333 -0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.889381 20.421713 5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 -0.005736 -0.010955 - conjugated induced dipole -0.012784 -0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.629141 16.310679 2.597099 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 0.015807 0.002368 - conjugated induced dipole 0.007606 0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.744904 23.001304 9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 0.004775 -0.016411 - conjugated induced dipole 0.000061 0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.390509 15.361042 9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 0.016467 -0.014862 - conjugated induced dipole -0.000106 0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.908167 24.341738 2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 -0.001746 -0.000735 - conjugated induced dipole -0.002994 -0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.149546 25.555353 2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 -0.016593 -0.000811 - conjugated induced dipole -0.007353 -0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.351176 23.447433 2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 -0.009874 -0.021011 - conjugated induced dipole -0.018333 -0.019255 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.884602 17.562009 3.100978 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046958 0.039179 0.007441 - conjugated induced dipole 0.039937 0.045846 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.118475 22.377672 8.374362 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 -0.017077 -0.022943 - conjugated induced dipole -0.015224 -0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.093072 17.801242 2.535393 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 -0.015625 -0.045166 - conjugated induced dipole -0.061942 0.008873 -0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.488592 23.056035 7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 0.007583 -0.014002 - conjugated induced dipole -0.015109 0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.548580 16.131615 7.939807 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 0.015360 -0.023246 - conjugated induced dipole -0.008731 0.020510 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.300878 18.008588 2.417492 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020830 0.022726 0.000901 - conjugated induced dipole 0.022286 0.021511 -0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.073552 17.212019 3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 -0.013065 -0.031206 - conjugated induced dipole -0.032768 -0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.025291 24.608712 3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 -0.041713 -0.001546 - conjugated induced dipole -0.005860 -0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.164236 23.688423 1.175445 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 -0.011418 0.033335 - conjugated induced dipole 0.014981 -0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.844488 23.943565 2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 -0.031001 -0.001118 - conjugated induced dipole 0.007779 -0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.719115 16.903538 8.572568 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 0.038168 -0.020381 - conjugated induced dipole -0.010164 0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 50 - Polarizability point coords 33.225449 20.760080 -9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444129 6.305470 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 0.031001 -0.001118 - conjugated induced dipole 0.007779 0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 40.869553 21.647609 -3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821479 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 -0.007583 -0.014002 - conjugated induced dipole -0.015109 -0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.427576 27.309275 -9.323370 - polarizability tensor 5.676900 -5.144008 -0.727143 -3.339388 4.987141 -0.427749 -0.708036 -0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063351 -0.043904 -0.005722 - conjugated induced dipole 0.055846 -0.056805 -0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.929540 28.572029 -3.518027 - polarizability tensor 2.014660 1.411523 2.754674 0.096191 2.864916 1.368380 1.742511 2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 -0.015360 -0.023246 - conjugated induced dipole -0.008731 -0.020509 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 39.120930 22.857273 -5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 0.001430 -0.006467 - conjugated induced dipole -0.006680 0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.658932 25.158132 -8.960653 - polarizability tensor 2.247827 -1.783499 0.065362 -1.149026 2.379898 0.043699 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 -0.003713 -0.000482 - conjugated induced dipole 0.009703 -0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.289127 20.361906 -9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 0.001746 -0.000735 - conjugated induced dipole -0.002995 0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.007603 25.399587 -8.341383 - polarizability tensor 5.018070 4.875224 1.088491 1.811907 4.579783 0.228245 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 0.002957 -0.007603 - conjugated induced dipole -0.011858 -0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 35.636045 21.335346 -8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 0.007223 -0.008401 - conjugated induced dipole -0.024722 0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.597390 26.554628 -5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 -0.008201 -0.009724 - conjugated induced dipole -0.006616 -0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.698218 22.945679 -8.571017 - polarizability tensor 3.009104 -0.265453 0.164854 -0.392052 2.422903 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 0.006235 -0.000930 - conjugated induced dipole -0.002419 0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.270342 24.281931 -5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522052 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 0.005736 -0.010955 - conjugated induced dipole -0.012784 0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.762115 24.036734 -8.185563 - polarizability tensor 13.654114 -2.638427 1.355101 -2.419218 4.125882 0.076557 2.653090 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 0.001460 -0.001599 - conjugated induced dipole 0.016161 0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.022891 22.717200 -9.184184 - polarizability tensor 2.960546 0.866100 0.523975 1.061801 5.117295 0.710667 0.733477 0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 0.008630 0.003112 - conjugated induced dipole 0.008989 0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 36.163218 26.182114 -6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 0.007600 -0.027393 - conjugated induced dipole -0.028333 0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.964864 24.152337 -9.317312 - polarizability tensor 12.949895 -2.646494 1.785361 -2.381880 4.179640 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 0.005385 -0.002398 - conjugated induced dipole 0.029267 0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.768649 22.195720 -7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 -0.001162 -0.007068 - conjugated induced dipole -0.007504 -0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.168344 24.664703 -6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460098 13.263287 0.923067 0.789240 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 0.004500 -0.010285 - conjugated induced dipole -0.010329 0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.010102 28.392966 -8.860735 - polarizability tensor 2.586919 -0.528104 -0.018359 -0.362648 2.294263 -0.043707 0.109841 -0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 -0.015807 0.002368 - conjugated induced dipole 0.007606 -0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 42.125865 21.702341 -2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 -0.004775 -0.016411 - conjugated induced dipole 0.000061 -0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.771470 29.342602 -2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 -0.016467 -0.014861 - conjugated induced dipole -0.000106 -0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.545198 21.015222 -10.282389 - polarizability tensor 8.609790 3.161438 4.330874 3.390209 5.869742 2.969759 2.433190 1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 0.011418 0.033335 - conjugated induced dipole 0.014981 0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.406252 20.094933 -7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 0.041713 -0.001546 - conjugated induced dipole -0.005860 0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.530507 19.148292 -9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 0.016593 -0.000811 - conjugated induced dipole -0.007353 0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.681815 26.695035 -9.040202 - polarizability tensor 3.548722 -1.577098 0.269187 -2.005619 4.318440 0.319352 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020829 -0.022725 0.000901 - conjugated induced dipole 0.022286 -0.021510 -0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 41.202868 22.600473 -3.727272 - polarizability tensor 5.713597 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 0.011888 -0.014683 - conjugated induced dipole -0.014358 0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.454513 27.491626 -7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225663 5.733018 0.256666 1.271657 0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 0.013065 -0.031206 - conjugated induced dipole -0.032768 0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 40.499436 22.325973 -3.083473 - polarizability tensor 6.707221 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 0.017077 -0.022943 - conjugated induced dipole -0.015224 0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.100077 27.800106 -2.885267 - polarizability tensor 1.169671 1.724727 0.923947 2.191905 7.141823 4.969365 0.687892 2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 -0.038168 -0.020381 - conjugated induced dipole -0.010164 -0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.265668 27.141726 -8.356897 - polarizability tensor 5.399126 -5.564498 0.213556 -4.017191 5.082747 0.297192 1.393777 -0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046956 -0.039177 0.007441 - conjugated induced dipole 0.039935 -0.045844 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 35.474033 26.902402 -8.922442 - polarizability tensor 10.702598 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 0.015625 -0.045166 - conjugated induced dipole -0.061942 -0.008873 -0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.732137 21.256211 -9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 0.009874 -0.021011 - conjugated induced dipole -0.018333 0.019256 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.197023 20.822062 -8.719786 - polarizability tensor 9.556647 3.699450 -1.931270 3.986422 6.261107 -1.285638 0.992071 0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 -0.025280 0.002707 - conjugated induced dipole -0.021953 -0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.039977 20.658971 -8.339860 - polarizability tensor 4.541349 2.067478 1.036870 1.580946 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 0.021657 0.001455 - conjugated induced dipole -0.001239 0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.834866 28.124204 -3.470143 - polarizability tensor 2.204025 0.653491 0.327503 1.701255 5.540977 4.544585 0.766864 3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 -0.029042 -0.022595 - conjugated induced dipole -0.008031 -0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 51 - Polarizability point coords 27.518009 27.146314 -2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444129 6.305470 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 0.031001 0.001118 - conjugated induced dipole -0.007779 0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.873905 28.033844 -7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821479 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 -0.007583 0.014002 - conjugated induced dipole 0.015109 -0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.315882 33.695510 -2.134465 - polarizability tensor 5.676900 5.144008 -0.727143 3.339388 4.987141 0.427749 -0.708036 0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063351 -0.043904 0.005722 - conjugated induced dipole -0.055846 -0.056805 0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.813919 34.958264 -7.939808 - polarizability tensor 2.014660 -1.411523 2.754674 -0.096191 2.864916 -1.368380 1.742511 -2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 -0.015360 0.023246 - conjugated induced dipole 0.008731 -0.020509 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.622529 29.243508 -6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 0.001430 0.006467 - conjugated induced dipole 0.006680 0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.084527 31.544367 -2.497182 - polarizability tensor 2.247827 1.783499 0.065362 1.149026 2.379898 -0.043699 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 -0.003713 0.000482 - conjugated induced dipole -0.009703 -0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.454331 26.748141 -2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 0.001746 0.000735 - conjugated induced dipole 0.002995 0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.735855 31.785822 -3.116452 - polarizability tensor 5.018070 -4.875224 1.088491 -1.811907 4.579783 -0.228245 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 0.002957 0.007603 - conjugated induced dipole 0.011858 -0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.107413 27.721581 -3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 0.007223 0.008401 - conjugated induced dipole 0.024722 0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.146068 32.940863 -6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 -0.008201 0.009724 - conjugated induced dipole 0.006616 -0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.045240 29.331914 -2.886817 - polarizability tensor 3.009104 0.265453 0.164854 0.392052 2.422903 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 0.006235 0.000930 - conjugated induced dipole 0.002419 0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.473116 30.668166 -5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522052 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 0.005736 0.010955 - conjugated induced dipole 0.012784 0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.981343 30.422969 -3.272272 - polarizability tensor 13.654114 2.638427 1.355101 2.419218 4.125882 -0.076557 2.653090 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 0.001460 0.001599 - conjugated induced dipole -0.016161 0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.720568 29.103435 -2.273651 - polarizability tensor 2.960546 -0.866100 0.523975 -1.061801 5.117295 -0.710667 0.733477 -0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 0.008630 -0.003112 - conjugated induced dipole -0.008989 0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.580241 32.568349 -4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 0.007600 0.027393 - conjugated induced dipole 0.028333 0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.778595 30.538571 -2.140523 - polarizability tensor 12.949895 2.646494 1.785361 2.381880 4.179640 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 0.005385 0.002398 - conjugated induced dipole -0.029267 0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.974810 28.581955 -4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 -0.001162 0.007068 - conjugated induced dipole 0.007504 -0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.575114 31.050938 -5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460098 13.263287 -0.923067 0.789240 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 0.004500 0.010285 - conjugated induced dipole 0.010329 0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.733356 34.779201 -2.597100 - polarizability tensor 2.586919 0.528104 -0.018359 0.362648 2.294263 0.043707 0.109841 0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 -0.015807 -0.002368 - conjugated induced dipole -0.007606 -0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.617594 28.088576 -9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 -0.004775 0.016411 - conjugated induced dipole -0.000061 -0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.971988 35.728837 -9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 -0.016467 0.014861 - conjugated induced dipole 0.000106 -0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.198261 27.401457 -1.175445 - polarizability tensor 8.609790 -3.161438 4.330874 -3.390209 5.869742 -2.969759 2.433190 -1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 0.011418 -0.033335 - conjugated induced dipole -0.014981 0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.337207 26.481168 -3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 0.041713 0.001546 - conjugated induced dipole 0.005860 0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.212952 25.534527 -2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 0.016593 0.000811 - conjugated induced dipole 0.007353 0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.061644 33.081270 -2.417633 - polarizability tensor 3.548722 1.577098 0.269187 2.005619 4.318440 -0.319352 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020829 -0.022725 -0.000901 - conjugated induced dipole -0.022286 -0.021510 0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.540590 28.986707 -7.730563 - polarizability tensor 5.713597 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 0.011888 0.014683 - conjugated induced dipole 0.014358 0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.288946 33.877861 -3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225663 5.733018 -0.256666 1.271657 -0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 0.013065 0.031206 - conjugated induced dipole 0.032768 0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.244023 28.712208 -8.374362 - polarizability tensor 6.707221 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 0.017077 0.022943 - conjugated induced dipole 0.015224 0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.643382 34.186341 -8.572568 - polarizability tensor 1.169671 -1.724727 0.923947 -2.191905 7.141823 -4.969365 0.687892 -2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 -0.038168 0.020381 - conjugated induced dipole 0.010164 -0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.477790 33.527961 -3.100937 - polarizability tensor 5.399126 5.564498 0.213556 4.017191 5.082747 -0.297192 1.393777 0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046956 -0.039177 -0.007441 - conjugated induced dipole -0.039935 -0.045844 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.269426 33.288637 -2.535393 - polarizability tensor 10.702598 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 0.015625 0.045166 - conjugated induced dipole 0.061942 -0.008873 0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.011321 27.642446 -2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 0.009874 0.021011 - conjugated induced dipole 0.018333 0.019256 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.546435 27.208297 -2.738048 - polarizability tensor 9.556647 -3.699450 -1.931270 -3.986422 6.261107 1.285638 0.992071 -0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 -0.025280 -0.002707 - conjugated induced dipole 0.021953 -0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.703482 27.045206 -3.117975 - polarizability tensor 4.541349 -2.067478 1.036870 -1.580946 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 0.021657 -0.001455 - conjugated induced dipole 0.001239 0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.908592 34.510439 -7.987692 - polarizability tensor 2.204025 -0.653491 0.327503 -1.701255 5.540977 -4.544585 0.766864 -3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 -0.029042 0.022595 - conjugated induced dipole 0.008031 -0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 52 - Polarizability point coords 3.583608 28.144200 31.486687 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 -0.006235 0.000930 - conjugated induced dipole 0.002419 -0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.921042 28.489407 26.642941 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 -0.011888 0.014683 - conjugated induced dipole 0.014358 -0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.854169 23.780537 32.238939 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063346 0.043899 0.005721 - conjugated induced dipole -0.055842 0.056799 0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.553040 22.965676 26.385811 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 0.029042 0.022595 - conjugated induced dipole 0.008031 0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.886518 26.425177 29.220750 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 -0.004500 0.010285 - conjugated induced dipole 0.010329 -0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.241850 30.430909 31.255529 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 -0.021657 -0.001455 - conjugated induced dipole 0.001239 -0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.084803 30.267818 31.635455 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 0.025280 -0.002707 - conjugated induced dipole 0.021953 0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.274223 25.690292 31.257052 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 -0.002957 0.007603 - conjugated induced dipole 0.011858 0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.645781 29.754533 31.342289 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 -0.007223 0.008401 - conjugated induced dipole 0.024722 -0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.839103 28.232607 28.020022 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 -0.001430 0.006467 - conjugated induced dipole 0.006680 -0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.622894 25.931747 31.876322 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 0.003713 0.000482 - conjugated induced dipole -0.009703 0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.315564 24.535251 27.916692 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 0.008201 0.009724 - conjugated induced dipole 0.006616 0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.316963 26.937543 32.232981 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 -0.005385 0.002398 - conjugated induced dipole -0.029267 -0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.258936 28.372680 32.099853 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 -0.008630 -0.003112 - conjugated induced dipole -0.008989 -0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.486822 28.894160 29.965816 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 0.001162 0.007068 - conjugated induced dipole 0.007504 0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.519711 27.053146 31.101232 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 -0.001460 0.001599 - conjugated induced dipole -0.016161 -0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.118609 24.907766 29.886424 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 -0.007600 0.027393 - conjugated induced dipole 0.028333 -0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.011484 26.807948 28.521541 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 -0.005736 0.010955 - conjugated induced dipole 0.012784 -0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.271724 22.696914 31.776405 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 0.015807 -0.002368 - conjugated induced dipole -0.007606 0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.844038 29.387539 25.335067 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 0.004775 0.016411 - conjugated induced dipole -0.000061 0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.489644 21.747277 25.009608 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 0.016467 0.014862 - conjugated induced dipole 0.000106 0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.992699 30.727973 32.106919 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 -0.001746 0.000735 - conjugated induced dipole 0.002994 -0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.751320 31.941587 31.993285 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 -0.016593 0.000811 - conjugated induced dipole 0.007353 -0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.450311 29.833668 31.935679 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 -0.009874 0.021011 - conjugated induced dipole 0.018333 -0.019255 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.016264 23.948244 31.272526 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046958 0.039179 -0.007441 - conjugated induced dipole -0.039937 0.045846 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.217610 28.763906 25.999142 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 -0.017077 0.022943 - conjugated induced dipole 0.015224 -0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.807794 24.187477 31.838111 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 -0.015625 0.045166 - conjugated induced dipole 0.061942 0.008873 0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.587727 29.442270 26.657170 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 0.007583 0.014002 - conjugated induced dipole 0.015109 0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.647714 22.517850 26.433697 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 0.015360 0.023246 - conjugated induced dipole 0.008731 0.020510 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.599988 24.394823 31.956012 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020830 0.022726 -0.000901 - conjugated induced dipole -0.022286 0.021511 0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.827314 23.598254 30.590634 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 -0.013065 0.031206 - conjugated induced dipole 0.032768 -0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.124425 30.994947 30.716646 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 -0.041713 0.001546 - conjugated induced dipole 0.005860 -0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.736629 30.074657 33.198059 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 -0.011418 -0.033335 - conjugated induced dipole -0.014981 -0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.056377 30.329800 32.281745 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 -0.031001 0.001118 - conjugated induced dipole -0.007779 -0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.818249 23.289773 25.800936 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 0.038168 0.020381 - conjugated induced dipole 0.010164 0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 53 - Polarizability point coords 10.236586 21.757965 25.802487 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 -0.006235 -0.000930 - conjugated induced dipole -0.002419 -0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.741236 22.103172 30.646232 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 -0.011888 -0.014683 - conjugated induced dipole -0.014358 -0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.966026 17.394302 25.050235 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063346 0.043899 -0.005721 - conjugated induced dipole 0.055842 0.056799 -0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.373234 16.579441 30.903362 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 0.029042 -0.022595 - conjugated induced dipole -0.008031 0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.706712 20.038942 28.068423 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 -0.004500 -0.010285 - conjugated induced dipole -0.010329 -0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.578345 24.044674 26.033644 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 -0.021657 0.001455 - conjugated induced dipole -0.001239 -0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.735392 23.881583 25.653718 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 0.025280 0.002707 - conjugated induced dipole -0.021953 0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.545971 19.304057 26.032121 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 -0.002957 -0.007603 - conjugated induced dipole -0.011858 0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.174413 23.368298 25.946884 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 -0.007223 -0.008401 - conjugated induced dipole -0.024722 -0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.659298 21.846372 29.269151 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 -0.001430 -0.006467 - conjugated induced dipole -0.006680 -0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.197300 19.545512 25.412851 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 0.003713 -0.000482 - conjugated induced dipole 0.009703 0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.135758 18.149016 29.372481 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 0.008201 -0.009724 - conjugated induced dipole -0.006616 0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.503232 20.551308 25.056192 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 -0.005385 -0.002398 - conjugated induced dipole 0.029267 -0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.561259 21.986445 25.189320 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 -0.008630 0.003112 - conjugated induced dipole 0.008989 -0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.307017 22.507925 27.323358 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 0.001162 -0.007068 - conjugated induced dipole -0.007504 0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.300483 20.666911 26.187941 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 -0.001460 -0.001599 - conjugated induced dipole 0.016161 -0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.701586 18.521531 27.402749 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 -0.007600 -0.027393 - conjugated induced dipole -0.028333 -0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.808710 20.421713 28.767632 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 -0.005736 -0.010955 - conjugated induced dipole -0.012784 -0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.548470 16.310679 25.512769 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 0.015807 0.002368 - conjugated induced dipole 0.007606 0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.664233 23.001304 31.954106 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 0.004775 -0.016411 - conjugated induced dipole 0.000061 0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.309838 15.361042 32.279566 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 0.016467 -0.014862 - conjugated induced dipole -0.000106 0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.827495 24.341738 25.182254 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 -0.001746 -0.000735 - conjugated induced dipole -0.002994 -0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.068875 25.555353 25.295888 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 -0.016593 -0.000811 - conjugated induced dipole -0.007353 -0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.270505 23.447433 25.353494 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 -0.009874 -0.021011 - conjugated induced dipole -0.018333 -0.019255 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.803931 17.562009 26.016647 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046958 0.039179 0.007441 - conjugated induced dipole 0.039937 0.045846 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.037804 22.377672 31.290032 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 -0.017077 -0.022943 - conjugated induced dipole -0.015224 -0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.012401 17.801242 25.451063 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 -0.015625 -0.045166 - conjugated induced dipole -0.061942 0.008873 -0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.407921 23.056035 30.632003 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 0.007583 -0.014002 - conjugated induced dipole -0.015109 0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.467909 16.131615 30.855477 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 0.015360 -0.023246 - conjugated induced dipole -0.008731 0.020510 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.220207 18.008588 25.333161 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020830 0.022726 0.000901 - conjugated induced dipole 0.022286 0.021511 -0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.992881 17.212019 26.698539 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 -0.013065 -0.031206 - conjugated induced dipole -0.032768 -0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.944620 24.608712 26.572528 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 -0.041713 -0.001546 - conjugated induced dipole -0.005860 -0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.083565 23.688423 24.091115 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 -0.011418 0.033335 - conjugated induced dipole 0.014981 -0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.763817 23.943565 25.007429 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 -0.031001 -0.001118 - conjugated induced dipole 0.007779 -0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.638444 16.903538 31.488237 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 0.038168 -0.020381 - conjugated induced dipole -0.010164 0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 54 - Polarizability point coords 25.144779 20.760079 13.549594 - polarizability tensor 4.528424 1.917551 0.356759 1.444128 6.305472 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 0.031001 -0.001118 - conjugated induced dipole 0.007779 0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.788882 21.647612 19.174170 - polarizability tensor 3.614271 -1.113333 2.917217 -0.029793 1.821479 0.641372 2.940226 -0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 -0.007583 -0.014002 - conjugated induced dipole -0.015109 -0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.346903 27.309272 13.592298 - polarizability tensor 5.676904 -5.144008 -0.727141 -3.339388 4.987137 -0.427750 -0.708035 -0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063351 -0.043904 -0.005722 - conjugated induced dipole 0.055846 -0.056805 -0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.848865 28.572031 19.397643 - polarizability tensor 2.014659 1.411522 2.754673 0.096191 2.864917 1.368381 1.742510 2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 -0.015360 -0.023246 - conjugated induced dipole -0.008731 -0.020509 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.040258 22.857275 17.811318 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536299 1.326286 -0.648852 1.549497 -0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 0.001430 -0.006467 - conjugated induced dipole -0.006680 0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.578260 25.158130 13.955016 - polarizability tensor 2.247828 -1.783499 0.065363 -1.149026 2.379896 0.043699 0.251241 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 -0.003713 -0.000482 - conjugated induced dipole 0.009703 -0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.208458 20.361905 13.724420 - polarizability tensor 5.239487 -1.239561 0.807464 -0.101560 1.234380 0.089842 1.195631 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 0.001746 -0.000735 - conjugated induced dipole -0.002995 0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.926931 25.399587 14.574286 - polarizability tensor 5.018067 4.875224 1.088491 1.811907 4.579786 0.228246 1.487331 1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 0.002957 -0.007603 - conjugated induced dipole -0.011858 -0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.555375 21.335347 14.489050 - polarizability tensor 9.182809 -1.751286 0.995508 -0.084237 1.828484 0.387734 2.027093 0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 0.007223 -0.008401 - conjugated induced dipole -0.024722 0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.516717 26.554630 17.914647 - polarizability tensor 1.671051 0.572015 1.296469 0.542823 2.162529 1.769890 1.031019 1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 -0.008201 -0.009724 - conjugated induced dipole -0.006616 -0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.617547 22.945679 14.344652 - polarizability tensor 3.009105 -0.265453 0.164855 -0.392052 2.422902 0.078852 0.571863 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 0.006235 -0.000930 - conjugated induced dipole -0.002419 0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.189670 24.281933 17.309798 - polarizability tensor 5.263037 -4.454329 1.663069 -4.279634 13.403258 0.812801 1.522053 0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 0.005736 -0.010955 - conjugated induced dipole -0.012784 0.003817 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.681444 24.036733 14.730106 - polarizability tensor 13.654116 -2.638423 1.355104 -2.419214 4.125879 0.076557 2.653092 -0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 0.001460 -0.001599 - conjugated induced dipole 0.016161 0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.942220 22.717197 13.731485 - polarizability tensor 2.960545 0.866099 0.523975 1.061800 5.117296 0.710667 0.733477 0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 0.008630 0.003112 - conjugated induced dipole 0.008989 0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.082545 26.182115 15.944915 - polarizability tensor 5.617929 -1.381554 4.877276 -1.251780 2.735770 -1.290944 3.659516 -1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 0.007600 -0.027393 - conjugated induced dipole -0.028333 0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.884192 24.152335 13.598357 - polarizability tensor 12.949896 -2.646490 1.785363 -2.381876 4.179637 -0.329227 2.420663 -0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 0.005385 -0.002398 - conjugated induced dipole 0.029267 0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.687978 22.195721 15.865524 - polarizability tensor 3.040417 1.393146 2.596746 0.925311 4.759664 3.665080 1.764101 3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 -0.001162 -0.007068 - conjugated induced dipole -0.007504 -0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.087672 24.664704 16.610589 - polarizability tensor 4.688607 -4.661428 1.698768 -4.460102 13.263283 0.923066 0.789241 0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 0.004500 -0.010285 - conjugated induced dipole -0.010329 0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.929429 28.392962 14.054933 - polarizability tensor 2.586920 -0.528103 -0.018359 -0.362647 2.294262 -0.043707 0.109841 -0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 -0.015807 0.002368 - conjugated induced dipole 0.007606 -0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.045193 21.702344 20.496273 - polarizability tensor 2.625149 -0.213208 0.424935 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 -0.004775 -0.016411 - conjugated induced dipole 0.000061 -0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.690795 29.342604 20.821732 - polarizability tensor 2.080856 0.280706 0.149350 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 -0.016467 -0.014861 - conjugated induced dipole -0.000106 -0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.464528 21.015220 12.633279 - polarizability tensor 8.609786 3.161439 4.330873 3.390210 5.869745 2.969762 2.433189 1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 0.011418 0.033335 - conjugated induced dipole 0.014981 0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.325582 20.094934 15.114694 - polarizability tensor 5.800146 -0.752295 1.186095 0.172145 7.005037 0.548345 0.964192 0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 0.041713 -0.001546 - conjugated induced dipole -0.005860 0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.449837 19.148291 13.838054 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321947 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 0.016593 -0.000811 - conjugated induced dipole -0.007353 0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.601142 26.695031 13.875466 - polarizability tensor 3.548724 -1.577098 0.269188 -2.005619 4.318439 0.319351 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020829 -0.022725 0.000901 - conjugated induced dipole 0.022286 -0.021510 -0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.122196 22.600476 19.188399 - polarizability tensor 5.713598 -1.433755 3.432521 -2.871854 2.858065 -3.181668 3.126669 -2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 0.011888 -0.014683 - conjugated induced dipole -0.014358 0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.373840 27.491626 15.240704 - polarizability tensor 6.533271 0.444461 1.547291 -1.225663 5.733017 0.256666 1.271658 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 0.013065 -0.031206 - conjugated induced dipole -0.032768 0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.418764 22.325976 19.832198 - polarizability tensor 6.707222 -2.929001 4.115173 -3.681834 2.332214 -2.837643 2.110817 -1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 0.017077 -0.022943 - conjugated induced dipole -0.015224 0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.019403 27.800108 20.030403 - polarizability tensor 1.169669 1.724724 0.923944 2.191901 7.141826 4.969366 0.687890 2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 -0.038168 -0.020381 - conjugated induced dipole -0.010164 -0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.184995 27.141723 14.558771 - polarizability tensor 5.399130 -5.564497 0.213557 -4.017191 5.082742 0.297191 1.393778 -0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046956 -0.039177 0.007441 - conjugated induced dipole 0.039935 -0.045844 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.393360 26.902403 13.993228 - polarizability tensor 10.702596 1.789313 3.005774 -0.514549 5.742470 -3.210321 2.108866 -0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 0.015625 -0.045166 - conjugated induced dipole -0.061942 -0.008873 -0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.651467 21.256212 13.895660 - polarizability tensor 8.115953 0.753025 -0.167711 1.550833 6.978558 4.365403 0.764813 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 0.009874 -0.021011 - conjugated induced dipole -0.018333 0.019256 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.116353 20.822059 14.195882 - polarizability tensor 9.556643 3.699452 -1.931269 3.986424 6.261110 -1.285638 0.992072 0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 -0.025280 0.002707 - conjugated induced dipole -0.021953 -0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.959306 20.658970 14.575810 - polarizability tensor 4.541347 2.067477 1.036870 1.580945 6.187413 0.395977 1.497097 1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 0.021657 0.001455 - conjugated induced dipole -0.001239 0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.754192 28.124206 19.445527 - polarizability tensor 2.204024 0.653489 0.327501 1.701252 5.540979 4.544585 0.766862 3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 -0.029042 -0.022595 - conjugated induced dipole -0.008031 -0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 55 - Polarizability point coords 19.437335 27.146314 20.823910 - polarizability tensor 4.528424 -1.917551 0.356759 -1.444128 6.305472 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 0.031001 0.001118 - conjugated induced dipole -0.007779 0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.793233 28.033847 15.199334 - polarizability tensor 3.614271 1.113333 2.917217 0.029793 1.821479 -0.641372 2.940226 0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 -0.007583 0.014002 - conjugated induced dipole 0.015109 -0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.235211 33.695507 20.781206 - polarizability tensor 5.676904 5.144008 -0.727141 3.339388 4.987137 0.427750 -0.708035 0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063351 -0.043904 0.005722 - conjugated induced dipole -0.055846 -0.056805 0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.733249 34.958265 14.975861 - polarizability tensor 2.014659 -1.411522 2.754673 -0.096191 2.864917 -1.368381 1.742510 -2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 -0.015360 0.023246 - conjugated induced dipole 0.008731 -0.020509 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.541856 29.243510 16.562186 - polarizability tensor 2.644773 0.420648 2.214495 0.536299 1.326286 0.648852 1.549497 0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 0.001430 0.006467 - conjugated induced dipole 0.006680 0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.003855 31.544365 20.418488 - polarizability tensor 2.247828 1.783499 0.065363 1.149026 2.379896 -0.043699 0.251241 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 -0.003713 0.000482 - conjugated induced dipole -0.009703 -0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.373657 26.748140 20.649084 - polarizability tensor 5.239487 1.239561 0.807464 0.101560 1.234380 -0.089842 1.195631 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 0.001746 0.000735 - conjugated induced dipole 0.002995 0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.655183 31.785822 19.799218 - polarizability tensor 5.018067 -4.875224 1.088491 -1.811907 4.579786 -0.228246 1.487331 -1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 0.002957 0.007603 - conjugated induced dipole 0.011858 -0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.026740 27.721582 19.884454 - polarizability tensor 9.182809 1.751286 0.995508 0.084237 1.828484 -0.387734 2.027093 -0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 0.007223 0.008401 - conjugated induced dipole 0.024722 0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.065398 32.940865 16.458857 - polarizability tensor 1.671051 -0.572015 1.296469 -0.542823 2.162529 -1.769890 1.031019 -1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 -0.008201 0.009724 - conjugated induced dipole 0.006616 -0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.964567 29.331914 20.028852 - polarizability tensor 3.009105 0.265453 0.164855 0.392052 2.422902 -0.078852 0.571863 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 0.006235 0.000930 - conjugated induced dipole 0.002419 0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.392445 30.668167 17.063706 - polarizability tensor 5.263037 4.454329 1.663069 4.279634 13.403258 -0.812801 1.522053 -0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 0.005736 0.010955 - conjugated induced dipole 0.012784 0.003817 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.900671 30.422967 19.643398 - polarizability tensor 13.654116 2.638423 1.355104 2.419214 4.125879 -0.076557 2.653092 0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 0.001460 0.001599 - conjugated induced dipole -0.016161 0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.639895 29.103432 20.642019 - polarizability tensor 2.960545 -0.866099 0.523975 -1.061800 5.117296 -0.710667 0.733477 -0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 0.008630 -0.003112 - conjugated induced dipole -0.008989 0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.499570 32.568350 18.428589 - polarizability tensor 5.617929 1.381554 4.877276 1.251780 2.735770 1.290944 3.659516 1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 0.007600 0.027393 - conjugated induced dipole 0.028333 0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.697922 30.538570 20.775147 - polarizability tensor 12.949896 2.646490 1.785363 2.381876 4.179637 0.329227 2.420663 0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 0.005385 0.002398 - conjugated induced dipole -0.029267 0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.894137 28.581956 18.507980 - polarizability tensor 3.040417 -1.393146 2.596746 -0.925311 4.759664 -3.665080 1.764101 -3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 -0.001162 0.007068 - conjugated induced dipole 0.007504 -0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.494442 31.050939 17.762915 - polarizability tensor 4.688607 4.661428 1.698768 4.460102 13.263283 -0.923066 0.789241 -0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 0.004500 0.010285 - conjugated induced dipole 0.010329 0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.652686 34.779197 20.318571 - polarizability tensor 2.586920 0.528103 -0.018359 0.362647 2.294262 0.043707 0.109841 0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 -0.015807 -0.002368 - conjugated induced dipole -0.007606 -0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.536921 28.088579 13.877231 - polarizability tensor 2.625149 0.213208 0.424935 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 -0.004775 0.016411 - conjugated induced dipole -0.000061 -0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.891319 35.728839 13.551772 - polarizability tensor 2.080856 -0.280706 0.149350 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 -0.016467 0.014861 - conjugated induced dipole 0.000106 -0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.117587 27.401455 21.740225 - polarizability tensor 8.609786 -3.161439 4.330873 -3.390210 5.869745 -2.969762 2.433189 -1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 0.011418 -0.033335 - conjugated induced dipole -0.014981 0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.256533 26.481169 19.258810 - polarizability tensor 5.800146 0.752295 1.186095 -0.172145 7.005037 -0.548345 0.964192 -0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 0.041713 0.001546 - conjugated induced dipole 0.005860 0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.132277 25.534526 20.535450 - polarizability tensor 2.238895 0.092051 0.189597 0.321947 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 0.016593 0.000811 - conjugated induced dipole 0.007353 0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.980972 33.081266 20.498038 - polarizability tensor 3.548724 1.577098 0.269188 2.005619 4.318439 -0.319351 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020829 -0.022725 -0.000901 - conjugated induced dipole -0.022286 -0.021510 0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.459918 28.986711 15.185105 - polarizability tensor 5.713598 1.433755 3.432521 2.871854 2.858065 3.181668 3.126669 2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 0.011888 0.014683 - conjugated induced dipole 0.014358 0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.208275 33.877861 19.132800 - polarizability tensor 6.533271 -0.444461 1.547291 1.225663 5.733017 -0.256666 1.271658 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 0.013065 0.031206 - conjugated induced dipole 0.032768 0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.163350 28.712211 14.541306 - polarizability tensor 6.707222 2.929001 4.115173 3.681834 2.332214 2.837643 2.110817 1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 0.017077 0.022943 - conjugated induced dipole 0.015224 0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.562712 34.186343 14.343101 - polarizability tensor 1.169669 -1.724724 0.923944 -2.191901 7.141826 -4.969366 0.687890 -2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 -0.038168 0.020381 - conjugated induced dipole 0.010164 -0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.397119 33.527958 19.814733 - polarizability tensor 5.399130 5.564497 0.213557 4.017191 5.082742 -0.297191 1.393778 0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046956 -0.039177 -0.007441 - conjugated induced dipole -0.039935 -0.045844 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.188755 33.288638 20.380276 - polarizability tensor 10.702596 -1.789313 3.005774 0.514549 5.742470 3.210321 2.108866 0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 0.015625 0.045166 - conjugated induced dipole 0.061942 -0.008873 0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.930648 27.642447 20.477844 - polarizability tensor 8.115953 -0.753025 -0.167711 -1.550833 6.978558 -4.365403 0.764813 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 0.009874 0.021011 - conjugated induced dipole 0.018333 0.019256 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.465761 27.208294 20.177622 - polarizability tensor 9.556643 -3.699452 -1.931269 -3.986424 6.261110 1.285638 0.992072 -0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 -0.025280 -0.002707 - conjugated induced dipole 0.021953 -0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.622808 27.045205 19.797694 - polarizability tensor 4.541347 -2.067477 1.036870 -1.580945 6.187413 -0.395977 1.497097 -1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 0.021657 -0.001455 - conjugated induced dipole 0.001239 0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.827923 34.510441 14.927977 - polarizability tensor 2.204024 -0.653489 0.327501 -1.701252 5.540979 -4.544585 0.766862 -3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 -0.029042 0.022595 - conjugated induced dipole 0.008031 -0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 56 - Polarizability point coords 11.664279 40.916670 8.571017 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 -0.006235 0.000930 - conjugated induced dipole 0.002419 -0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.159630 41.261877 3.727272 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 -0.011888 0.014683 - conjugated induced dipole 0.014358 -0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.934840 36.553007 9.323269 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063346 0.043899 0.005721 - conjugated induced dipole -0.055842 0.056799 0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.527631 35.738146 3.470142 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 0.029042 0.022595 - conjugated induced dipole 0.008031 0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.194153 39.197647 6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 -0.004500 0.010285 - conjugated induced dipole 0.010329 -0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.322521 43.203379 8.339860 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 -0.021657 -0.001455 - conjugated induced dipole 0.001239 -0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.165474 43.040288 8.719786 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 0.025280 -0.002707 - conjugated induced dipole 0.021953 0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.354894 38.462762 8.341383 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 -0.002957 0.007603 - conjugated induced dipole 0.011858 0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.726452 42.527003 8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 -0.007223 0.008401 - conjugated induced dipole 0.024722 -0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.241568 41.005076 5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 -0.001430 0.006467 - conjugated induced dipole 0.006680 -0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.703566 38.704217 8.960653 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 0.003713 0.000482 - conjugated induced dipole -0.009703 0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.765107 37.307721 5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 0.008201 0.009724 - conjugated induced dipole 0.006616 0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.397634 39.710013 9.317312 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 -0.005385 0.002398 - conjugated induced dipole -0.029267 -0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.339607 41.145150 9.184184 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 -0.008630 -0.003112 - conjugated induced dipole -0.008989 -0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.593849 41.666630 7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 0.001162 0.007068 - conjugated induced dipole 0.007504 0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.600382 39.825616 8.185563 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 -0.001460 0.001599 - conjugated induced dipole -0.016161 -0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.199280 37.680236 6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 -0.007600 0.027393 - conjugated induced dipole 0.028333 -0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.092155 39.580418 5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 -0.005736 0.010955 - conjugated induced dipole 0.012784 -0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.352395 35.469384 8.860735 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 0.015807 -0.002368 - conjugated induced dipole -0.007606 0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.236633 42.160009 2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 0.004775 0.016411 - conjugated induced dipole -0.000061 0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.591027 34.519747 2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 0.016467 0.014862 - conjugated induced dipole 0.000106 0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.073370 43.500443 9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 -0.001746 0.000735 - conjugated induced dipole 0.002994 -0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.831991 44.714057 9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 -0.016593 0.000811 - conjugated induced dipole 0.007353 -0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.630360 42.606138 9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 -0.009874 0.021011 - conjugated induced dipole 0.018333 -0.019255 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.096935 36.720714 8.356857 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046958 0.039179 -0.007441 - conjugated induced dipole -0.039937 0.045846 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.863062 41.536376 3.083473 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 -0.017077 0.022943 - conjugated induced dipole 0.015224 -0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.888465 36.959947 8.922441 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 -0.015625 0.045166 - conjugated induced dipole 0.061942 0.008873 0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.492944 42.214740 3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 0.007583 0.014002 - conjugated induced dipole 0.015109 0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.432957 35.290320 3.518027 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 0.015360 0.023246 - conjugated induced dipole 0.008731 0.020510 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.680659 37.167293 9.040343 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020830 0.022726 -0.000901 - conjugated induced dipole -0.022286 0.021511 0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.907985 36.370723 7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 -0.013065 0.031206 - conjugated induced dipole 0.032768 -0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.956246 43.767417 7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 -0.041713 0.001546 - conjugated induced dipole 0.005860 -0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.817300 42.847127 10.282389 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 -0.011418 -0.033335 - conjugated induced dipole -0.014981 -0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.137048 43.102270 9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 -0.031001 0.001118 - conjugated induced dipole -0.007779 -0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.262422 36.062243 2.885267 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 0.038168 0.020381 - conjugated induced dipole 0.010164 0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 57 - Polarizability point coords 18.317257 34.530435 2.886817 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 -0.006235 -0.000930 - conjugated induced dipole -0.002419 -0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.821907 34.875642 7.730563 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 -0.011888 -0.014683 - conjugated induced dipole -0.014358 -0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.046697 30.166772 2.134565 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063346 0.043899 -0.005721 - conjugated induced dipole 0.055842 0.056799 -0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.453906 29.351911 7.987693 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 0.029042 -0.022595 - conjugated induced dipole -0.008031 0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.787384 32.811412 5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 -0.004500 -0.010285 - conjugated induced dipole -0.010329 -0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.659016 36.817144 3.117975 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 -0.021657 0.001455 - conjugated induced dipole -0.001239 -0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.816063 36.654053 2.738049 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 0.025280 0.002707 - conjugated induced dipole -0.021953 0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.626643 32.076527 3.116452 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 -0.002957 -0.007603 - conjugated induced dipole -0.011858 0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.255084 36.140768 3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 -0.007223 -0.008401 - conjugated induced dipole -0.024722 -0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.739969 34.618841 6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 -0.001430 -0.006467 - conjugated induced dipole -0.006680 -0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.277971 32.317982 2.497182 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 0.003713 -0.000482 - conjugated induced dipole 0.009703 0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.216429 30.921486 6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 0.008201 -0.009724 - conjugated induced dipole -0.006616 0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.583903 33.323778 2.140523 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 -0.005385 -0.002398 - conjugated induced dipole 0.029267 -0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.641930 34.758915 2.273651 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 -0.008630 0.003112 - conjugated induced dipole 0.008989 -0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.387688 35.280395 4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 0.001162 -0.007068 - conjugated induced dipole -0.007504 0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.381154 33.439381 3.272272 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 -0.001460 -0.001599 - conjugated induced dipole 0.016161 -0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.782257 31.294001 4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 -0.007600 -0.027393 - conjugated induced dipole -0.028333 -0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.889381 33.194183 5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 -0.005736 -0.010955 - conjugated induced dipole -0.012784 -0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.629141 29.083149 2.597099 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 0.015807 0.002368 - conjugated induced dipole 0.007606 0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.744904 35.773774 9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 0.004775 -0.016411 - conjugated induced dipole 0.000061 0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.390509 28.133512 9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 0.016467 -0.014862 - conjugated induced dipole -0.000106 0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.908167 37.114208 2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 -0.001746 -0.000735 - conjugated induced dipole -0.002994 -0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.149546 38.327822 2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 -0.016593 -0.000811 - conjugated induced dipole -0.007353 -0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.351176 36.219903 2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 -0.009874 -0.021011 - conjugated induced dipole -0.018333 -0.019255 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.884602 30.334479 3.100978 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046958 0.039179 0.007441 - conjugated induced dipole 0.039937 0.045846 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.118475 35.150141 8.374362 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 -0.017077 -0.022943 - conjugated induced dipole -0.015224 -0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.093072 30.573712 2.535393 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 -0.015625 -0.045166 - conjugated induced dipole -0.061942 0.008873 -0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.488592 35.828505 7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 0.007583 -0.014002 - conjugated induced dipole -0.015109 0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.548580 28.904085 7.939807 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 0.015360 -0.023246 - conjugated induced dipole -0.008731 0.020510 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.300878 30.781058 2.417492 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020830 0.022726 0.000901 - conjugated induced dipole 0.022286 0.021511 -0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.073552 29.984488 3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 -0.013065 -0.031206 - conjugated induced dipole -0.032768 -0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.025291 37.381182 3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 -0.041713 -0.001546 - conjugated induced dipole -0.005860 -0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.164236 36.460892 1.175445 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 -0.011418 0.033335 - conjugated induced dipole 0.014981 -0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.844488 36.716035 2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 -0.031001 -0.001118 - conjugated induced dipole 0.007779 -0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.719115 29.676008 8.572568 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 0.038168 -0.020381 - conjugated induced dipole -0.010164 0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 58 - Polarizability point coords 33.225449 33.532549 -9.366076 - polarizability tensor 4.528425 1.917552 0.356759 1.444129 6.305470 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 0.031001 -0.001118 - conjugated induced dipole 0.007779 0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 40.869553 34.420079 -3.741501 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821479 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 -0.007583 -0.014002 - conjugated induced dipole -0.015109 -0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.427576 40.081745 -9.323370 - polarizability tensor 5.676900 -5.144008 -0.727143 -3.339388 4.987141 -0.427749 -0.708036 -0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063351 -0.043904 -0.005722 - conjugated induced dipole 0.055846 -0.056805 -0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.929540 41.344499 -3.518027 - polarizability tensor 2.014660 1.411523 2.754674 0.096191 2.864916 1.368380 1.742511 2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 -0.015360 -0.023246 - conjugated induced dipole -0.008731 -0.020509 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 39.120930 35.629743 -5.104353 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 0.001430 -0.006467 - conjugated induced dipole -0.006680 0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.658932 37.930602 -8.960653 - polarizability tensor 2.247827 -1.783499 0.065362 -1.149026 2.379898 0.043699 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 -0.003713 -0.000482 - conjugated induced dipole 0.009703 -0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.289127 33.134376 -9.191250 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 0.001746 -0.000735 - conjugated induced dipole -0.002995 0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.007603 38.172057 -8.341383 - polarizability tensor 5.018070 4.875224 1.088491 1.811907 4.579783 0.228245 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 0.002957 -0.007603 - conjugated induced dipole -0.011858 -0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 35.636045 34.107816 -8.426620 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 0.007223 -0.008401 - conjugated induced dipole -0.024722 0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.597390 39.327098 -5.001023 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 -0.008201 -0.009724 - conjugated induced dipole -0.006616 -0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.698218 35.718149 -8.571017 - polarizability tensor 3.009104 -0.265453 0.164854 -0.392052 2.422903 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 0.006235 -0.000930 - conjugated induced dipole -0.002419 0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.270342 37.054401 -5.605872 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522052 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 0.005736 -0.010955 - conjugated induced dipole -0.012784 0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.762115 36.809204 -8.185563 - polarizability tensor 13.654114 -2.638427 1.355101 -2.419218 4.125882 0.076557 2.653090 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 0.001460 -0.001599 - conjugated induced dipole 0.016161 0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.022891 35.489670 -9.184184 - polarizability tensor 2.960546 0.866100 0.523975 1.061801 5.117295 0.710667 0.733477 0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 0.008630 0.003112 - conjugated induced dipole 0.008989 0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 36.163218 38.954584 -6.970755 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 0.007600 -0.027393 - conjugated induced dipole -0.028333 0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.964864 36.924806 -9.317312 - polarizability tensor 12.949895 -2.646494 1.785361 -2.381880 4.179640 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 0.005385 -0.002398 - conjugated induced dipole 0.029267 0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.768649 34.968190 -7.050146 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 -0.001162 -0.007068 - conjugated induced dipole -0.007504 -0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.168344 37.437172 -6.305081 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460098 13.263287 0.923067 0.789240 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 0.004500 -0.010285 - conjugated induced dipole -0.010329 0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.010102 41.165436 -8.860735 - polarizability tensor 2.586919 -0.528104 -0.018359 -0.362648 2.294263 -0.043707 0.109841 -0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 -0.015807 0.002368 - conjugated induced dipole 0.007606 -0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 42.125865 34.474811 -2.419398 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 -0.004775 -0.016411 - conjugated induced dipole 0.000061 -0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.771470 42.115072 -2.093938 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 -0.016467 -0.014861 - conjugated induced dipole -0.000106 -0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.545198 33.787692 -10.282389 - polarizability tensor 8.609790 3.161438 4.330874 3.390209 5.869742 2.969759 2.433190 1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 0.011418 0.033335 - conjugated induced dipole 0.014981 0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.406252 32.867403 -7.800976 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 0.041713 -0.001546 - conjugated induced dipole -0.005860 0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.530507 31.920762 -9.077616 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 0.016593 -0.000811 - conjugated induced dipole -0.007353 0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.681815 39.467504 -9.040202 - polarizability tensor 3.548722 -1.577098 0.269187 -2.005619 4.318440 0.319352 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020829 -0.022725 0.000901 - conjugated induced dipole 0.022286 -0.021510 -0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 41.202868 35.372942 -3.727272 - polarizability tensor 5.713597 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 0.011888 -0.014683 - conjugated induced dipole -0.014358 0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.454513 40.264096 -7.674965 - polarizability tensor 6.533271 0.444460 1.547290 -1.225663 5.733018 0.256666 1.271657 0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 0.013065 -0.031206 - conjugated induced dipole -0.032768 0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 40.499436 35.098443 -3.083473 - polarizability tensor 6.707221 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 0.017077 -0.022943 - conjugated induced dipole -0.015224 0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.100077 40.572576 -2.885267 - polarizability tensor 1.169671 1.724727 0.923947 2.191905 7.141823 4.969365 0.687892 2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 -0.038168 -0.020381 - conjugated induced dipole -0.010164 -0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.265668 39.914196 -8.356897 - polarizability tensor 5.399126 -5.564498 0.213556 -4.017191 5.082747 0.297192 1.393777 -0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046956 -0.039177 0.007441 - conjugated induced dipole 0.039935 -0.045844 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 35.474033 39.674872 -8.922442 - polarizability tensor 10.702598 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 0.015625 -0.045166 - conjugated induced dipole -0.061942 -0.008873 -0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 37.732137 34.028681 -9.020010 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 0.009874 -0.021011 - conjugated induced dipole -0.018333 0.019256 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.197023 33.594532 -8.719786 - polarizability tensor 9.556647 3.699450 -1.931270 3.986422 6.261107 -1.285638 0.992071 0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 -0.025280 0.002707 - conjugated induced dipole -0.021953 -0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.039977 33.431441 -8.339860 - polarizability tensor 4.541349 2.067478 1.036870 1.580946 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 0.021657 0.001455 - conjugated induced dipole -0.001239 0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 38.834866 40.896674 -3.470143 - polarizability tensor 2.204025 0.653491 0.327503 1.701255 5.540977 4.544585 0.766864 3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 -0.029042 -0.022595 - conjugated induced dipole -0.008031 -0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 59 - Polarizability point coords 27.518009 39.918784 -2.091759 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444129 6.305470 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000190 0.001478 0.000503 - induced dipole -0.012761 0.031001 0.001118 - conjugated induced dipole -0.007779 0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.873905 40.806314 -7.716334 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821479 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000264 0.000270 0.000245 - induced dipole 0.011763 -0.007583 0.014002 - conjugated induced dipole 0.015109 -0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.315882 46.467980 -2.134465 - polarizability tensor 5.676900 5.144008 -0.727143 3.339388 4.987141 0.427749 -0.708036 0.509155 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.004129 -0.000390 0.003012 - induced dipole -0.063351 -0.043904 0.005722 - conjugated induced dipole -0.055846 -0.056805 0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.813919 47.730734 -7.939808 - polarizability tensor 2.014660 -1.411523 2.754674 -0.096191 2.864916 -1.368380 1.742511 -2.324061 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000336 0.000150 0.000777 - induced dipole 0.017229 -0.015360 0.023246 - conjugated induced dipole 0.008731 -0.020509 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.622529 42.015978 -6.353482 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000392 0.000402 0.000401 - induced dipole 0.008021 0.001430 0.006467 - conjugated induced dipole 0.006680 0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.084527 44.316837 -2.497182 - polarizability tensor 2.247827 1.783499 0.065362 1.149026 2.379898 -0.043699 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.002166 0.001921 0.003073 - induced dipole -0.009459 -0.003713 0.000482 - conjugated induced dipole -0.009703 -0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.454331 39.520611 -2.266585 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000212 0.001329 0.000455 - induced dipole 0.004462 0.001746 0.000735 - conjugated induced dipole 0.002995 0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.735855 44.558292 -3.116452 - polarizability tensor 5.018070 -4.875224 1.088491 -1.811907 4.579783 -0.228245 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.001156 0.001597 0.002707 - induced dipole 0.004785 0.002957 0.007603 - conjugated induced dipole 0.011858 -0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.107413 40.494051 -3.031215 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000512 0.001069 0.000509 - induced dipole 0.026692 0.007223 0.008401 - conjugated induced dipole 0.024722 0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.146068 45.713333 -6.456812 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000511 0.000340 0.000852 - induced dipole 0.007350 -0.008201 0.009724 - conjugated induced dipole 0.006616 -0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.045240 42.104384 -2.886817 - polarizability tensor 3.009104 0.265453 0.164854 0.392052 2.422903 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000529 0.001763 0.001340 - induced dipole -0.000502 0.006235 0.000930 - conjugated induced dipole 0.002419 0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.473116 43.440636 -5.851963 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522052 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000508 0.000526 0.000735 - induced dipole 0.013634 0.005736 0.010955 - conjugated induced dipole 0.012784 0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.981343 43.195439 -3.272272 - polarizability tensor 13.654114 2.638427 1.355101 2.419218 4.125882 -0.076557 2.653090 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000247 0.001879 0.002248 - induced dipole -0.021085 0.001460 0.001599 - conjugated induced dipole -0.016161 0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.720568 41.875905 -2.273651 - polarizability tensor 2.960546 -0.866100 0.523975 -1.061801 5.117295 -0.710667 0.733477 -0.805591 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000940 0.001945 0.001259 - induced dipole -0.009130 0.008630 -0.003112 - conjugated induced dipole -0.008989 0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.580241 45.340819 -4.487080 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000910 0.000637 0.001405 - induced dipole 0.033173 0.007600 0.027393 - conjugated induced dipole 0.028333 0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.778595 43.311041 -2.140523 - polarizability tensor 12.949895 2.646494 1.785361 2.381880 4.179640 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000054 0.003081 0.002904 - induced dipole -0.032580 0.005385 0.002398 - conjugated induced dipole -0.029267 0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.974810 41.354425 -4.407688 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000527 0.000657 0.000452 - induced dipole 0.007992 -0.001162 0.007068 - conjugated induced dipole 0.007504 -0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.575114 43.823407 -5.152754 - polarizability tensor 4.688603 4.661424 1.698768 4.460098 13.263287 -0.923067 0.789240 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000644 0.000528 0.000665 - induced dipole 0.013189 0.004500 0.010285 - conjugated induced dipole 0.010329 0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.733356 47.551671 -2.597100 - polarizability tensor 2.586919 0.528104 -0.018359 0.362648 2.294263 0.043707 0.109841 0.127145 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.002728 -0.001346 0.000673 - induced dipole -0.008720 -0.015807 -0.002368 - conjugated induced dipole -0.007606 -0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.617594 40.861046 -9.038437 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000215 0.000199 0.000204 - induced dipole 0.001749 -0.004775 0.016411 - conjugated induced dipole -0.000061 -0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.971988 48.501307 -9.363896 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000252 0.000081 0.000609 - induced dipole 0.000865 -0.016467 0.014861 - conjugated induced dipole 0.000106 -0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.198261 40.173927 -1.175445 - polarizability tensor 8.609790 -3.161438 4.330874 -3.390209 5.869742 -2.969759 2.433190 -1.740004 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000705 0.001554 0.000336 - induced dipole -0.025817 0.011418 -0.033335 - conjugated induced dipole -0.014981 0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.337207 39.253638 -3.656858 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000380 0.000657 0.000250 - induced dipole 0.010155 0.041713 0.001546 - conjugated induced dipole 0.005860 0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.212952 38.306997 -2.380219 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000002 0.001016 0.000255 - induced dipole 0.006347 0.016593 0.000811 - conjugated induced dipole 0.007353 0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.061644 45.853739 -2.417633 - polarizability tensor 3.548722 1.577098 0.269187 2.005619 4.318440 -0.319352 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.003104 -0.000093 0.001768 - induced dipole -0.020829 -0.022725 -0.000901 - conjugated induced dipole -0.022286 -0.021510 0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.540590 41.759177 -7.730563 - polarizability tensor 5.713597 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000291 0.000258 0.000264 - induced dipole 0.017774 0.011888 0.014683 - conjugated induced dipole 0.014358 0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.288946 46.650331 -3.782870 - polarizability tensor 6.533271 -0.444460 1.547290 1.225663 5.733018 -0.256666 1.271657 -0.143979 4.406063 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.001053 0.000407 0.002736 - induced dipole 0.031823 0.013065 0.031206 - conjugated induced dipole 0.032768 0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.244023 41.484678 -8.374362 - polarizability tensor 6.707221 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000255 0.000255 0.000285 - induced dipole 0.028024 0.017077 0.022943 - conjugated induced dipole 0.015224 0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.643382 46.958811 -8.572568 - polarizability tensor 1.169671 -1.724727 0.923947 -2.191905 7.141823 -4.969365 0.687892 -2.528024 4.381745 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000292 0.000161 0.000674 - induced dipole 0.009280 -0.038168 0.020381 - conjugated induced dipole 0.010164 -0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.477790 46.300431 -3.100937 - polarizability tensor 5.399126 5.564498 0.213556 4.017191 5.082747 -0.297192 1.393777 0.829069 1.929016 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.002679 -0.000265 0.002145 - induced dipole -0.046956 -0.039177 -0.007441 - conjugated induced dipole -0.039935 -0.045844 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.269426 46.061107 -2.535393 - polarizability tensor 10.702598 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841633 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.002173 0.000907 0.002467 - induced dipole 0.068050 0.015625 0.045166 - conjugated induced dipole 0.061942 -0.008873 0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.011321 40.414916 -2.437825 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000604 0.000812 0.000234 - induced dipole 0.016570 0.009874 0.021011 - conjugated induced dipole 0.018333 0.019256 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.546435 39.980766 -2.738048 - polarizability tensor 9.556647 -3.699450 -1.931270 -3.986422 6.261107 1.285638 0.992071 -0.390991 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000572 0.001075 0.000490 - induced dipole 0.024576 -0.025280 -0.002707 - conjugated induced dipole 0.021953 -0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.703482 39.817676 -3.117975 - polarizability tensor 4.541349 -2.067478 1.036870 -1.580946 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000101 0.001208 0.000579 - induced dipole -0.002879 0.021657 -0.001455 - conjugated induced dipole 0.001239 0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.908592 47.282909 -7.987692 - polarizability tensor 2.204025 -0.653491 0.327503 -1.701255 5.540977 -4.544585 0.766864 -3.846191 4.089134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000370 0.000173 0.000665 - induced dipole 0.003843 -0.029042 0.022595 - conjugated induced dipole 0.008031 -0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 60 - Polarizability point coords 3.583608 40.916670 31.486687 - polarizability tensor 3.009105 -0.265453 0.164853 -0.392052 2.422902 0.078853 0.571862 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000502 -0.006235 0.000930 - conjugated induced dipole 0.002419 -0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.921042 41.261877 26.642941 - polarizability tensor 5.713598 -1.433757 3.432519 -2.871856 2.858068 -3.181669 3.126667 -2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017774 -0.011888 0.014683 - conjugated induced dipole 0.014358 -0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.854169 36.553007 32.238939 - polarizability tensor 5.676609 -5.143128 -0.727177 -3.338725 4.986789 -0.427733 -0.708051 -0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.063346 0.043899 0.005721 - conjugated induced dipole -0.055842 0.056799 0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.553040 35.738146 26.385811 - polarizability tensor 2.204027 0.653491 0.327508 1.701250 5.540969 4.544579 0.766866 3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.003843 0.029042 0.022595 - conjugated induced dipole 0.008031 0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.886518 39.197647 29.220750 - polarizability tensor 4.688603 -4.661424 1.698768 -4.460099 13.263287 0.923067 0.789241 0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013189 -0.004500 0.010285 - conjugated induced dipole 0.010329 -0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.241850 43.203379 31.255529 - polarizability tensor 4.541349 2.067479 1.036870 1.580947 6.187412 0.395977 1.497097 1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.002879 -0.021657 -0.001455 - conjugated induced dipole 0.001239 -0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.084803 43.040288 31.635455 - polarizability tensor 9.556651 3.699453 -1.931270 3.986424 6.261104 -1.285638 0.992072 0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.024576 0.025280 -0.002707 - conjugated induced dipole 0.021953 0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.274223 38.462762 31.257052 - polarizability tensor 5.018070 4.875224 1.088490 1.811907 4.579783 0.228246 1.487331 1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004785 -0.002957 0.007603 - conjugated induced dipole 0.011858 0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.645781 42.527003 31.342289 - polarizability tensor 9.182809 -1.751289 0.995507 -0.084241 1.828485 0.387734 2.027091 0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.026692 -0.007223 0.008401 - conjugated induced dipole 0.024722 -0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.839103 41.005076 28.020022 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536300 1.326287 -0.648853 1.549497 -0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008021 -0.001430 0.006467 - conjugated induced dipole 0.006680 -0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.622894 38.704217 31.876322 - polarizability tensor 2.247827 -1.783499 0.065361 -1.149027 2.379897 0.043700 0.251240 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009459 0.003713 0.000482 - conjugated induced dipole -0.009703 0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.315564 37.307721 27.916692 - polarizability tensor 1.671052 0.572015 1.296470 0.542823 2.162528 1.769889 1.031020 1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007350 0.008201 0.009724 - conjugated induced dipole 0.006616 0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.316963 39.710013 32.232981 - polarizability tensor 12.949892 -2.646493 1.785361 -2.381878 4.179639 -0.329227 2.420661 -0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.032580 -0.005385 0.002398 - conjugated induced dipole -0.029267 -0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.258936 41.145150 32.099853 - polarizability tensor 2.960547 0.866099 0.523974 1.061800 5.117296 0.710667 0.733476 0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009130 -0.008630 -0.003112 - conjugated induced dipole -0.008989 -0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.486822 41.666630 29.965816 - polarizability tensor 3.040419 1.393147 2.596748 0.925312 4.759663 3.665079 1.764103 3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.007992 0.001162 0.007068 - conjugated induced dipole 0.007504 0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.519711 39.825616 31.101232 - polarizability tensor 13.654121 -2.638432 1.355102 -2.419222 4.125885 0.076557 2.653091 -0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.021085 -0.001460 0.001599 - conjugated induced dipole -0.016161 -0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.118609 37.680236 29.886424 - polarizability tensor 5.617929 -1.381556 4.877275 -1.251782 2.735771 -1.290946 3.659515 -1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.033173 -0.007600 0.027393 - conjugated induced dipole 0.028333 -0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 0.011484 39.580418 28.521541 - polarizability tensor 5.263033 -4.454326 1.663068 -4.279630 13.403262 0.812802 1.522053 0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.013634 -0.005736 0.010955 - conjugated induced dipole 0.012784 -0.003818 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.271724 35.469384 31.776405 - polarizability tensor 2.586920 -0.528104 -0.018356 -0.362648 2.294262 -0.043710 0.109842 -0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008720 0.015807 -0.002368 - conjugated induced dipole -0.007606 0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -4.844038 42.160009 25.335067 - polarizability tensor 2.625149 -0.213208 0.424934 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.001749 0.004775 0.016411 - conjugated induced dipole -0.000061 0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -1.489644 34.519747 25.009608 - polarizability tensor 2.080856 0.280706 0.149351 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000865 0.016467 0.014862 - conjugated induced dipole 0.000106 0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.992699 43.500443 32.106919 - polarizability tensor 5.239487 -1.239562 0.807463 -0.101562 1.234381 0.089842 1.195630 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.004462 -0.001746 0.000735 - conjugated induced dipole 0.002994 -0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.751320 44.714057 31.993285 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321946 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.006347 -0.016593 0.000811 - conjugated induced dipole 0.007353 -0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.450311 42.606138 31.935679 - polarizability tensor 8.115954 0.753025 -0.167709 1.550834 6.978557 4.365403 0.764814 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.016570 -0.009874 0.021011 - conjugated induced dipole 0.018333 -0.019255 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.016264 36.720714 31.272526 - polarizability tensor 5.399445 -5.565178 0.213249 -4.017735 5.083162 0.297002 1.393566 -0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.046958 0.039179 -0.007441 - conjugated induced dipole -0.039937 0.045846 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.217610 41.536376 25.999142 - polarizability tensor 6.707220 -2.929003 4.115171 -3.681836 2.332217 -2.837644 2.110815 -1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.028024 -0.017077 0.022943 - conjugated induced dipole 0.015224 -0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 1.807794 36.959947 31.838111 - polarizability tensor 10.702599 1.789310 3.005772 -0.514552 5.742470 -3.210322 2.108865 -0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.068050 -0.015625 0.045166 - conjugated induced dipole 0.061942 0.008873 0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -3.587727 42.214740 26.657170 - polarizability tensor 3.614272 -1.113334 2.917217 -0.029794 1.821480 0.641371 2.940226 -0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.011763 0.007583 0.014002 - conjugated induced dipole 0.015109 0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.647714 35.290320 26.433697 - polarizability tensor 2.014656 1.411523 2.754673 0.096192 2.864919 1.368379 1.742512 2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.017229 0.015360 0.023246 - conjugated induced dipole 0.008731 0.020510 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.599988 37.167293 31.956012 - polarizability tensor 3.548688 -1.577294 0.269528 -2.005736 4.318376 0.319527 0.418353 0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.020830 0.022726 -0.000901 - conjugated induced dipole -0.022286 0.021511 0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 2.827314 36.370723 30.590634 - polarizability tensor 6.533271 0.444460 1.547290 -1.225664 5.733018 0.256666 1.271657 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.031823 -0.013065 0.031206 - conjugated induced dipole 0.032768 -0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.124425 43.767417 30.716646 - polarizability tensor 5.800146 -0.752294 1.186095 0.172146 7.005037 0.548344 0.964192 0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.010155 -0.041713 0.001546 - conjugated induced dipole 0.005860 -0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.736629 42.847127 33.198059 - polarizability tensor 8.609786 3.161435 4.330874 3.390207 5.869744 2.969760 2.433189 1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.025817 -0.011418 -0.033335 - conjugated induced dipole -0.014981 -0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.056377 43.102270 32.281745 - polarizability tensor 4.528425 1.917552 0.356759 1.444128 6.305469 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.012761 -0.031001 0.001118 - conjugated induced dipole -0.007779 -0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords -0.818249 36.062243 25.800936 - polarizability tensor 1.169672 1.724727 0.923943 2.191908 7.141829 4.969372 0.687890 2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009280 0.038168 0.020381 - conjugated induced dipole 0.010164 0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 61 - Polarizability point coords 10.236586 34.530435 25.802487 - polarizability tensor 3.009105 0.265453 0.164853 0.392052 2.422902 -0.078853 0.571862 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 -0.006235 -0.000930 - conjugated induced dipole -0.002419 -0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.741236 34.875642 30.646232 - polarizability tensor 5.713598 1.433757 3.432519 2.871856 2.858068 3.181669 3.126667 2.101011 3.557632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 -0.011888 -0.014683 - conjugated induced dipole -0.014358 -0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.966026 30.166772 25.050235 - polarizability tensor 5.676609 5.143128 -0.727177 3.338725 4.986789 0.427733 -0.708051 0.509177 1.316187 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063346 0.043899 -0.005721 - conjugated induced dipole 0.055842 0.056799 -0.006258 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.373234 29.351911 30.903362 - polarizability tensor 2.204027 -0.653491 0.327508 -1.701250 5.540969 -4.544579 0.766866 -3.846188 4.089130 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 0.029042 -0.022595 - conjugated induced dipole -0.008031 0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.706712 32.811412 28.068423 - polarizability tensor 4.688603 4.661424 1.698768 4.460099 13.263287 -0.923067 0.789241 -0.637256 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 -0.004500 -0.010285 - conjugated induced dipole -0.010329 -0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.578345 36.817144 26.033644 - polarizability tensor 4.541349 -2.067479 1.036870 -1.580947 6.187412 -0.395977 1.497097 -1.619860 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 -0.021657 0.001455 - conjugated induced dipole -0.001239 -0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 5.735392 36.654053 25.653718 - polarizability tensor 9.556651 -3.699453 -1.931270 -3.986424 6.261104 1.285638 0.992072 -0.390991 3.653717 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 0.025280 0.002707 - conjugated induced dipole -0.021953 0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.545971 32.076527 26.032121 - polarizability tensor 5.018070 -4.875224 1.088490 -1.811907 4.579783 -0.228246 1.487331 -1.273638 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 -0.002957 -0.007603 - conjugated induced dipole -0.011858 0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.174413 36.140768 25.946884 - polarizability tensor 9.182809 1.751289 0.995507 0.084241 1.828485 -0.387734 2.027091 -0.151003 1.358652 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 -0.007223 -0.008401 - conjugated induced dipole -0.024722 -0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.659298 34.618841 29.269151 - polarizability tensor 2.644773 0.420648 2.214495 0.536300 1.326287 0.648853 1.549497 0.193715 2.182353 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 -0.001430 -0.006467 - conjugated induced dipole -0.006680 -0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.197300 32.317982 25.412851 - polarizability tensor 2.247827 1.783499 0.065361 1.149027 2.379897 -0.043700 0.251240 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 0.003713 -0.000482 - conjugated induced dipole 0.009703 0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.135758 30.921486 29.372481 - polarizability tensor 1.671052 -0.572015 1.296470 -0.542823 2.162528 -1.769889 1.031020 -1.217469 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 0.008201 -0.009724 - conjugated induced dipole -0.006616 0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.503232 33.323778 25.056192 - polarizability tensor 12.949892 2.646493 1.785361 2.381878 4.179639 0.329227 2.420661 0.349589 2.038970 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 -0.005385 -0.002398 - conjugated induced dipole 0.029267 -0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.561259 34.758915 25.189320 - polarizability tensor 2.960547 -0.866099 0.523974 -1.061800 5.117296 -0.710667 0.733476 -0.805592 0.872851 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 -0.008630 0.003112 - conjugated induced dipole 0.008989 -0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.307017 35.280395 27.323358 - polarizability tensor 3.040419 -1.393147 2.596748 -0.925312 4.759663 -3.665079 1.764103 -3.380562 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 0.001162 -0.007068 - conjugated induced dipole -0.007504 0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 8.300483 33.439381 26.187941 - polarizability tensor 13.654121 2.638432 1.355102 2.419222 4.125885 -0.076557 2.653091 0.028380 1.982134 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 -0.001460 -0.001599 - conjugated induced dipole 0.016161 -0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.701586 31.294001 27.402749 - polarizability tensor 5.617929 1.381556 4.877275 1.251782 2.735771 1.290946 3.659515 1.340506 4.675346 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 -0.007600 -0.027393 - conjugated induced dipole -0.028333 -0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.808710 33.194183 28.767632 - polarizability tensor 5.263033 4.454326 1.663068 4.279630 13.403262 -0.812802 1.522053 -0.962357 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 -0.005736 -0.010955 - conjugated induced dipole -0.012784 -0.003818 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 3.548470 29.083149 25.512769 - polarizability tensor 2.586920 0.528104 -0.018356 0.362648 2.294262 0.043710 0.109842 0.127147 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 0.015807 0.002368 - conjugated induced dipole 0.007606 0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.664233 35.773774 31.954106 - polarizability tensor 2.625149 0.213208 0.424934 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 0.004775 -0.016411 - conjugated induced dipole 0.000061 0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.309838 28.133512 32.279566 - polarizability tensor 2.080856 -0.280706 0.149351 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 0.016467 -0.014862 - conjugated induced dipole -0.000106 0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 7.827495 37.114208 25.182254 - polarizability tensor 5.239487 1.239562 0.807463 0.101562 1.234381 -0.089842 1.195630 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 -0.001746 -0.000735 - conjugated induced dipole -0.002994 -0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.068875 38.327822 25.295888 - polarizability tensor 2.238895 0.092051 0.189597 0.321946 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 -0.016593 -0.000811 - conjugated induced dipole -0.007353 -0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.270505 36.219903 25.353494 - polarizability tensor 8.115954 -0.753025 -0.167709 -1.550834 6.978557 -4.365403 0.764814 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 -0.009874 -0.021011 - conjugated induced dipole -0.018333 -0.019255 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.803931 30.334479 26.016647 - polarizability tensor 5.399445 5.565178 0.213249 4.017735 5.083162 -0.297002 1.393566 0.829409 1.929269 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046958 0.039179 0.007441 - conjugated induced dipole 0.039937 0.045846 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.037804 35.150141 31.290032 - polarizability tensor 6.707220 2.929003 4.115171 3.681836 2.332217 2.837644 2.110815 1.078365 3.917898 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 -0.017077 -0.022943 - conjugated induced dipole -0.015224 -0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.012401 30.573712 25.451063 - polarizability tensor 10.702599 -1.789310 3.005772 0.514552 5.742470 3.210322 2.108865 0.722699 6.841632 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 -0.015625 -0.045166 - conjugated induced dipole -0.061942 0.008873 -0.047522 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.407921 35.828505 30.632003 - polarizability tensor 3.614272 1.113334 2.917217 0.029794 1.821480 -0.641371 2.940226 0.379588 3.227902 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 0.007583 -0.014002 - conjugated induced dipole -0.015109 0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.467909 28.904085 30.855477 - polarizability tensor 2.014656 -1.411523 2.754673 -0.096192 2.864919 -1.368379 1.742512 -2.324060 3.622595 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 0.015360 -0.023246 - conjugated induced dipole -0.008731 0.020510 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 4.220207 30.781058 25.333161 - polarizability tensor 3.548688 1.577294 0.269528 2.005736 4.318376 -0.319527 0.418353 -0.222258 0.439519 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020830 0.022726 0.000901 - conjugated induced dipole 0.022286 0.021511 -0.000192 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.992881 29.984488 26.698539 - polarizability tensor 6.533271 -0.444460 1.547290 1.225664 5.733018 -0.256666 1.271657 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 -0.013065 -0.031206 - conjugated induced dipole -0.032768 -0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.944620 37.381182 26.572528 - polarizability tensor 5.800146 0.752294 1.186095 -0.172146 7.005037 -0.548344 0.964192 -0.894649 4.417055 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 -0.041713 -0.001546 - conjugated induced dipole -0.005860 -0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 6.083565 36.460892 24.091115 - polarizability tensor 8.609786 -3.161435 4.330874 -3.390207 5.869744 -2.969760 2.433189 -1.740004 6.358298 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 -0.011418 0.033335 - conjugated induced dipole 0.014981 -0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 9.763817 36.716035 25.007429 - polarizability tensor 4.528425 -1.917552 0.356759 -1.444128 6.305469 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 -0.031001 -0.001118 - conjugated induced dipole 0.007779 -0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.638444 29.676008 31.488237 - polarizability tensor 1.169672 -1.724727 0.923943 -2.191908 7.141829 -4.969372 0.687890 -2.528027 4.381746 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 0.038168 -0.020381 - conjugated induced dipole -0.010164 0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 62 - Polarizability point coords 25.144779 33.532549 13.549594 - polarizability tensor 4.528424 1.917551 0.356759 1.444128 6.305472 0.945064 0.689806 0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.012761 0.031001 -0.001118 - conjugated induced dipole 0.007779 0.029252 -0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.788882 34.420082 19.174170 - polarizability tensor 3.614271 -1.113333 2.917217 -0.029793 1.821479 0.641372 2.940226 -0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.011763 -0.007583 -0.014002 - conjugated induced dipole -0.015109 -0.002583 -0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.346903 40.081742 13.592298 - polarizability tensor 5.676904 -5.144008 -0.727141 -3.339388 4.987137 -0.427750 -0.708035 -0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.063351 -0.043904 -0.005722 - conjugated induced dipole 0.055846 -0.056805 -0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.848865 41.344500 19.397643 - polarizability tensor 2.014659 1.411522 2.754673 0.096191 2.864917 1.368381 1.742510 2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017229 -0.015360 -0.023246 - conjugated induced dipole -0.008731 -0.020509 -0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 31.040258 35.629745 17.811318 - polarizability tensor 2.644773 -0.420648 2.214495 -0.536299 1.326286 -0.648852 1.549497 -0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.008021 0.001430 -0.006467 - conjugated induced dipole -0.006680 0.000245 -0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.578260 37.930600 13.955016 - polarizability tensor 2.247828 -1.783499 0.065363 -1.149026 2.379896 0.043699 0.251241 -0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009459 -0.003713 -0.000482 - conjugated induced dipole 0.009703 -0.006827 -0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.208458 33.134375 13.724420 - polarizability tensor 5.239487 -1.239561 0.807464 -0.101560 1.234380 0.089842 1.195631 -0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004462 0.001746 -0.000735 - conjugated induced dipole -0.002995 0.001829 -0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.926931 38.172057 14.574286 - polarizability tensor 5.018067 4.875224 1.088491 1.811907 4.579786 0.228246 1.487331 1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.004785 0.002957 -0.007603 - conjugated induced dipole -0.011858 -0.007327 -0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.555375 34.107816 14.489050 - polarizability tensor 9.182809 -1.751286 0.995508 -0.084237 1.828484 0.387734 2.027093 0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.026692 0.007223 -0.008401 - conjugated induced dipole -0.024722 0.010399 -0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.516717 39.327100 17.914647 - polarizability tensor 1.671051 0.572015 1.296469 0.542823 2.162529 1.769890 1.031019 1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007350 -0.008201 -0.009724 - conjugated induced dipole -0.006616 -0.006977 -0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.617547 35.718149 14.344652 - polarizability tensor 3.009105 -0.265453 0.164855 -0.392052 2.422902 0.078852 0.571863 0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.000502 0.006235 -0.000930 - conjugated induced dipole -0.002419 0.004872 -0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.189670 37.054402 17.309798 - polarizability tensor 5.263037 -4.454329 1.663069 -4.279634 13.403258 0.812801 1.522053 0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013634 0.005736 -0.010955 - conjugated induced dipole -0.012784 0.003817 -0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.681444 36.809202 14.730106 - polarizability tensor 13.654116 -2.638423 1.355104 -2.419214 4.125879 0.076557 2.653092 -0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.021085 0.001460 -0.001599 - conjugated induced dipole 0.016161 0.000422 -0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.942220 35.489667 13.731485 - polarizability tensor 2.960545 0.866099 0.523975 1.061800 5.117296 0.710667 0.733477 0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.009130 0.008630 0.003112 - conjugated induced dipole 0.008989 0.006449 0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 28.082545 38.954584 15.944915 - polarizability tensor 5.617929 -1.381554 4.877276 -1.251780 2.735770 -1.290944 3.659516 -1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.033173 0.007600 -0.027393 - conjugated induced dipole -0.028333 0.007801 -0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.884192 36.924805 13.598357 - polarizability tensor 12.949896 -2.646490 1.785363 -2.381876 4.179637 -0.329227 2.420663 -0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.032580 0.005385 -0.002398 - conjugated induced dipole 0.029267 0.003579 -0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.687978 34.968191 15.865524 - polarizability tensor 3.040417 1.393146 2.596746 0.925311 4.759664 3.665080 1.764101 3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.007992 -0.001162 -0.007068 - conjugated induced dipole -0.007504 -0.002361 -0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.087672 37.437174 16.610589 - polarizability tensor 4.688607 -4.661428 1.698768 -4.460102 13.263283 0.923066 0.789241 0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.013189 0.004500 -0.010285 - conjugated induced dipole -0.010329 0.004071 -0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.929429 41.165432 14.054933 - polarizability tensor 2.586920 -0.528103 -0.018359 -0.362647 2.294262 -0.043707 0.109841 -0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.008720 -0.015807 0.002368 - conjugated induced dipole 0.007606 -0.016649 0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 34.045193 34.474814 20.496273 - polarizability tensor 2.625149 -0.213208 0.424935 -0.290491 2.062088 -0.300099 0.213958 -0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.001749 -0.004775 -0.016411 - conjugated induced dipole 0.000061 -0.005522 -0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.690795 42.115074 20.821732 - polarizability tensor 2.080856 0.280706 0.149350 0.281580 2.472366 0.452260 0.036613 0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.000865 -0.016467 -0.014861 - conjugated induced dipole -0.000106 -0.015979 -0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.464528 33.787690 12.633279 - polarizability tensor 8.609786 3.161439 4.330873 3.390210 5.869745 2.969762 2.433189 1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.025817 0.011418 0.033335 - conjugated induced dipole 0.014981 0.002807 0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.325582 32.867404 15.114694 - polarizability tensor 5.800146 -0.752295 1.186095 0.172145 7.005037 0.548345 0.964192 0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.010155 0.041713 -0.001546 - conjugated induced dipole -0.005860 0.039807 -0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.449837 31.920761 13.838054 - polarizability tensor 2.238895 -0.092051 0.189597 -0.321947 3.412539 0.098788 0.254757 0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.006347 0.016593 -0.000811 - conjugated induced dipole -0.007353 0.013869 -0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.601142 39.467501 13.875466 - polarizability tensor 3.548724 -1.577098 0.269188 -2.005619 4.318439 0.319351 0.418130 0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.020829 -0.022725 0.000901 - conjugated induced dipole 0.022286 -0.021510 -0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 33.122196 35.372946 19.188399 - polarizability tensor 5.713598 -1.433755 3.432521 -2.871854 2.858065 -3.181668 3.126669 -2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.017774 0.011888 -0.014683 - conjugated induced dipole -0.014358 0.005896 -0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 26.373840 40.264096 15.240704 - polarizability tensor 6.533271 0.444461 1.547291 -1.225663 5.733017 0.256666 1.271658 0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.031823 0.013065 -0.031206 - conjugated induced dipole -0.032768 0.007049 -0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 32.418764 35.098446 19.832198 - polarizability tensor 6.707222 -2.929001 4.115173 -3.681834 2.332214 -2.837643 2.110817 -1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.028024 0.017077 -0.022943 - conjugated induced dipole -0.015224 0.006010 -0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.019403 40.572578 20.030403 - polarizability tensor 1.169669 1.724724 0.923944 2.191901 7.141826 4.969366 0.687890 2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.009280 -0.038168 -0.020381 - conjugated induced dipole -0.010164 -0.031452 -0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.184995 39.914193 14.558771 - polarizability tensor 5.399130 -5.564497 0.213557 -4.017191 5.082742 0.297191 1.393778 -0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.046956 -0.039177 0.007441 - conjugated induced dipole 0.039935 -0.045844 -0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 27.393360 39.674873 13.993228 - polarizability tensor 10.702596 1.789313 3.005774 -0.514549 5.742470 -3.210321 2.108866 -0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.068050 0.015625 -0.045166 - conjugated induced dipole -0.061942 -0.008873 -0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 29.651467 34.028682 13.895660 - polarizability tensor 8.115953 0.753025 -0.167711 1.550833 6.978558 4.365403 0.764813 2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.016570 0.009874 -0.021011 - conjugated induced dipole -0.018333 0.019256 -0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.116353 33.594529 14.195882 - polarizability tensor 9.556643 3.699452 -1.931269 3.986424 6.261110 -1.285638 0.992072 0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.024576 -0.025280 0.002707 - conjugated induced dipole -0.021953 -0.024514 0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.959306 33.431440 14.575810 - polarizability tensor 4.541347 2.067477 1.036870 1.580945 6.187413 0.395977 1.497097 1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole 0.002879 0.021657 0.001455 - conjugated induced dipole -0.001239 0.015466 -0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 30.754192 40.896676 19.445527 - polarizability tensor 2.204024 0.653489 0.327501 1.701252 5.540979 4.544585 0.766862 3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field 0.000000 0.000000 0.000000 - induced dipole -0.003843 -0.029042 -0.022595 - conjugated induced dipole -0.008031 -0.026943 -0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - -Fragment 63 - Polarizability point coords 19.437335 39.918783 20.823910 - polarizability tensor 4.528424 -1.917551 0.356759 -1.444128 6.305472 -0.945064 0.689806 -0.619686 1.472952 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000004 -0.000000 - induced dipole -0.012761 0.031001 0.001118 - conjugated induced dipole -0.007779 0.029252 0.000281 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.793233 40.806317 15.199334 - polarizability tensor 3.614271 1.113333 2.917217 0.029793 1.821479 -0.641372 2.940226 0.379587 3.227903 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000002 -0.000001 -0.000003 - induced dipole 0.011763 -0.007583 0.014002 - conjugated induced dipole 0.015109 -0.002583 0.017046 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.235211 46.467977 20.781206 - polarizability tensor 5.676904 5.144008 -0.727141 3.339388 4.987137 0.427750 -0.708035 0.509157 1.316657 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000008 -0.000006 0.000006 - induced dipole -0.063351 -0.043904 0.005722 - conjugated induced dipole -0.055846 -0.056805 0.006259 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.733249 47.730735 14.975861 - polarizability tensor 2.014659 -1.411522 2.754673 -0.096191 2.864917 -1.368381 1.742510 -2.324062 3.622593 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000006 -0.000002 -0.000004 - induced dipole 0.017229 -0.015360 0.023246 - conjugated induced dipole 0.008731 -0.020509 0.020878 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.541856 42.015980 16.562186 - polarizability tensor 2.644773 0.420648 2.214495 0.536299 1.326286 0.648852 1.549497 0.193714 2.182354 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000002 -0.000003 - induced dipole 0.008021 0.001430 0.006467 - conjugated induced dipole 0.006680 0.000245 0.007225 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.003855 44.316835 20.418488 - polarizability tensor 2.247828 1.783499 0.065363 1.149026 2.379896 -0.043699 0.251241 0.157820 0.623217 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000007 -0.000006 0.000003 - induced dipole -0.009459 -0.003713 0.000482 - conjugated induced dipole -0.009703 -0.006827 0.001297 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 21.373657 39.520610 20.649084 - polarizability tensor 5.239487 1.239561 0.807464 0.101560 1.234380 -0.089842 1.195631 0.143640 0.549530 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000004 -0.000000 - induced dipole 0.004462 0.001746 0.000735 - conjugated induced dipole 0.002995 0.001829 0.000320 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.655183 44.558292 19.799218 - polarizability tensor 5.018067 -4.875224 1.088491 -1.811907 4.579786 -0.228246 1.487331 -1.273639 1.260418 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000006 -0.000004 0.000000 - induced dipole 0.004785 0.002957 0.007603 - conjugated induced dipole 0.011858 -0.007327 0.008705 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.026740 40.494051 19.884454 - polarizability tensor 9.182809 1.751286 0.995508 0.084237 1.828484 -0.387734 2.027093 -0.151004 1.358653 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000003 -0.000001 - induced dipole 0.026692 0.007223 0.008401 - conjugated induced dipole 0.024722 0.010399 0.005993 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.065398 45.713335 16.458857 - polarizability tensor 1.671051 -0.572015 1.296469 -0.542823 2.162529 -1.769890 1.031019 -1.217470 2.355788 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000005 -0.000002 -0.000003 - induced dipole 0.007350 -0.008201 0.009724 - conjugated induced dipole 0.006616 -0.006977 0.011000 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.964567 42.104384 20.028852 - polarizability tensor 3.009105 0.265453 0.164855 0.392052 2.422902 -0.078852 0.571863 -0.205879 0.338965 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000004 -0.000000 - induced dipole -0.000502 0.006235 0.000930 - conjugated induced dipole 0.002419 0.004872 0.001639 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.392445 43.440637 17.063706 - polarizability tensor 5.263037 4.454329 1.663069 4.279634 13.403258 -0.812801 1.522053 -0.962356 3.293630 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000003 -0.000003 - induced dipole 0.013634 0.005736 0.010955 - conjugated induced dipole 0.012784 0.003817 0.011435 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.900671 43.195437 19.643398 - polarizability tensor 13.654116 2.638423 1.355104 2.419214 4.125879 -0.076557 2.653092 0.028379 1.982135 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000006 -0.000005 0.000001 - induced dipole -0.021085 0.001460 0.001599 - conjugated induced dipole -0.016161 0.000422 0.004574 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 22.639895 41.875902 20.642019 - polarizability tensor 2.960545 -0.866099 0.523975 -1.061800 5.117296 -0.710667 0.733477 -0.805592 0.872852 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000005 -0.000006 0.000001 - induced dipole -0.009130 0.008630 -0.003112 - conjugated induced dipole -0.008989 0.006449 -0.002117 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 16.499570 45.340819 18.428589 - polarizability tensor 5.617929 1.381554 4.877276 1.251780 2.735770 1.290944 3.659516 1.340505 4.675348 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000006 -0.000003 -0.000001 - induced dipole 0.033173 0.007600 0.027393 - conjugated induced dipole 0.028333 0.007801 0.030425 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.697922 43.311040 20.775147 - polarizability tensor 12.949896 2.646490 1.785363 2.381876 4.179637 0.329227 2.420663 0.349589 2.038971 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000005 -0.000005 0.000001 - induced dipole -0.032580 0.005385 0.002398 - conjugated induced dipole -0.029267 0.003579 0.004952 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.894137 41.354426 18.507980 - polarizability tensor 3.040417 -1.393146 2.596746 -0.925311 4.759664 -3.665080 1.764101 -3.380563 4.695597 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000002 -0.000002 - induced dipole 0.007992 -0.001162 0.007068 - conjugated induced dipole 0.007504 -0.002361 0.008889 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.494442 43.823409 17.762915 - polarizability tensor 4.688607 4.661428 1.698768 4.460102 13.263283 -0.923066 0.789241 -0.637255 3.260995 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000002 -0.000002 - induced dipole 0.013189 0.004500 0.010285 - conjugated induced dipole 0.010329 0.004071 0.012280 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 25.652686 47.551667 20.318571 - polarizability tensor 2.586920 0.528103 -0.018359 0.362647 2.294262 0.043707 0.109841 0.127146 2.115097 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000009 -0.000007 0.000009 - induced dipole -0.008720 -0.015807 -0.002368 - conjugated induced dipole -0.007606 -0.016649 -0.001351 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 10.536921 40.861049 13.877231 - polarizability tensor 2.625149 0.213208 0.424935 0.290491 2.062088 0.300099 0.213958 0.174819 2.321326 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000001 -0.000001 -0.000003 - induced dipole 0.001749 -0.004775 0.016411 - conjugated induced dipole -0.000061 -0.005522 0.015883 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.891319 48.501309 13.551772 - polarizability tensor 2.080856 -0.280706 0.149350 -0.281580 2.472366 -0.452260 0.036613 -0.284988 2.367319 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000005 -0.000001 -0.000005 - induced dipole 0.000865 -0.016467 0.014861 - conjugated induced dipole 0.000106 -0.015979 0.015390 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.117587 40.173925 21.740225 - polarizability tensor 8.609786 -3.161439 4.330873 -3.390210 5.869745 -2.969762 2.433189 -1.740006 6.358301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000005 0.000001 - induced dipole -0.025817 0.011418 -0.033335 - conjugated induced dipole -0.014981 0.002807 -0.031806 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 15.256533 39.253639 19.258810 - polarizability tensor 5.800146 0.752295 1.186095 -0.172145 7.005037 -0.548345 0.964192 -0.894649 4.417056 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000002 -0.000002 -0.000002 - induced dipole 0.010155 0.041713 0.001546 - conjugated induced dipole 0.005860 0.039807 0.004393 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 20.132277 38.306996 20.535450 - polarizability tensor 2.238895 0.092051 0.189597 0.321947 3.412539 -0.098788 0.254757 -0.275937 1.413877 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000004 -0.000001 - induced dipole 0.006347 0.016593 0.000811 - conjugated induced dipole 0.007353 0.013869 0.001598 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.980972 45.853736 20.498038 - polarizability tensor 3.548724 1.577098 0.269188 2.005619 4.318439 -0.319351 0.418130 -0.221895 0.439301 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000008 -0.000007 0.000006 - induced dipole -0.020829 -0.022725 -0.000901 - conjugated induced dipole -0.022286 -0.021510 0.000193 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 11.459918 41.759181 15.185105 - polarizability tensor 5.713598 1.433755 3.432521 2.871854 2.858065 3.181668 3.126669 2.101010 3.557634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000002 -0.000001 -0.000003 - induced dipole 0.017774 0.011888 0.014683 - conjugated induced dipole 0.014358 0.005896 0.013284 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 18.208275 46.650331 19.132800 - polarizability tensor 6.533271 -0.444461 1.547291 1.225663 5.733017 -0.256666 1.271658 -0.143979 4.406064 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000007 -0.000003 0.000000 - induced dipole 0.031823 0.013065 0.031206 - conjugated induced dipole 0.032768 0.007049 0.032022 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 12.163350 41.484681 14.541306 - polarizability tensor 6.707222 2.929001 4.115173 3.681834 2.332214 2.837643 2.110817 1.078365 3.917899 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000002 -0.000001 -0.000003 - induced dipole 0.028024 0.017077 0.022943 - conjugated induced dipole 0.015224 0.006010 0.022514 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.562712 46.958813 14.343101 - polarizability tensor 1.169669 -1.724724 0.923944 -2.191901 7.141826 -4.969366 0.687890 -2.528024 4.381744 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000005 -0.000002 -0.000005 - induced dipole 0.009280 -0.038168 0.020381 - conjugated induced dipole 0.010164 -0.031452 0.028358 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 24.397119 46.300428 19.814733 - polarizability tensor 5.399130 5.564497 0.213557 4.017191 5.082742 -0.297191 1.393778 0.829070 1.929017 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000009 -0.000007 0.000006 - induced dipole -0.046956 -0.039177 -0.007441 - conjugated induced dipole -0.039935 -0.045844 0.002781 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 17.188755 46.061107 20.380276 - polarizability tensor 10.702596 -1.789313 3.005774 0.514549 5.742470 3.210321 2.108866 0.722698 6.841634 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000005 -0.000003 0.000000 - induced dipole 0.068050 0.015625 0.045166 - conjugated induced dipole 0.061942 -0.008873 0.047523 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 14.930648 40.414917 20.477844 - polarizability tensor 8.115953 -0.753025 -0.167711 -1.550833 6.978558 -4.365403 0.764813 -2.023455 7.211682 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000003 -0.000002 -0.000001 - induced dipole 0.016570 0.009874 0.021011 - conjugated induced dipole 0.018333 0.019256 0.008873 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 23.465761 39.980764 20.177622 - polarizability tensor 9.556643 -3.699452 -1.931269 -3.986424 6.261110 1.285638 0.992072 -0.390992 3.653714 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000006 0.000001 - induced dipole 0.024576 -0.025280 -0.002707 - conjugated induced dipole 0.021953 -0.024514 -0.010846 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 19.622808 39.817675 19.797694 - polarizability tensor 4.541347 -2.067477 1.036870 -1.580945 6.187413 -0.395977 1.497097 -1.619861 1.715235 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000004 -0.000004 -0.000001 - induced dipole -0.002879 0.021657 -0.001455 - conjugated induced dipole 0.001239 0.015466 0.003342 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - Polarizability point coords 13.827923 47.282911 14.927977 - polarizability tensor 2.204024 -0.653489 0.327501 -1.701252 5.540979 -4.544585 0.766862 -3.846191 4.089133 - electric field 0.000000 0.000000 0.000000 - wf electric field 0.000000 0.000000 0.000000 - ligand electric field -0.000005 -0.000002 -0.000004 - induced dipole 0.003843 -0.029042 0.022595 - conjugated induced dipole 0.008031 -0.026943 0.024571 - old induced dipole 0.000000 0.000000 0.000000 - old conjugated induced dipole 0.000000 0.000000 0.000000 - - ------ PAIRWISE ENERGY ANALYSIS FOLLOWS ------------------ - - PAIRWISE ENERGY BETWEEN FRAGMENT 0 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 1 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S -1.630227 -4.083322 1.747300 - A02C -2.612029 -2.640229 1.532541 - A03C -2.101745 -1.315079 1.494585 - A04S -0.375367 -0.925226 1.688730 - A05C 0.065186 -2.169539 2.877122 - A06C -0.448850 -3.437171 2.907680 - A07C -0.051087 -4.362802 3.904959 - A08N 0.275814 -5.148727 4.708701 - A09C 1.041864 -1.768939 3.819832 - A10N 1.891240 -1.445864 4.556150 - A11N -2.962164 -0.337877 1.285161 - A12S -4.485666 -0.969226 1.063005 - A13C -3.984638 -2.621777 1.326998 - A14C -4.874936 -3.709014 1.334031 - A15N -5.619803 -4.610043 1.365681 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY -0.0001876888 - PAIRWISE POLARIZATION ENERGY -0.0000071418 - PAIRWISE DISPERSION ENERGY -0.0003825748 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000707698 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY -0.0005066355 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 2 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 6.509027 0.703872 -4.315925 - A02C 5.527225 -0.739221 -4.530684 - A03C 6.037509 -2.064371 -4.568640 - A04S 7.763887 -2.454224 -4.374495 - A05C 8.204440 -1.209911 -3.186103 - A06C 7.690404 0.057721 -3.155545 - A07C 8.088167 0.983352 -2.158266 - A08N 8.415068 1.769277 -1.354524 - A09C 9.181118 -1.610511 -2.243393 - A10N 10.030494 -1.933586 -1.507075 - A11N 5.177090 -3.041573 -4.778064 - A12S 3.653588 -2.410224 -5.000220 - A13C 4.154616 -0.757673 -4.736227 - A14C 3.264318 0.329564 -4.729194 - A15N 2.519451 1.230593 -4.697544 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY -0.0001519675 - PAIRWISE POLARIZATION ENERGY -0.0000179945 - PAIRWISE DISPERSION ENERGY -0.0000258013 - PAIRWISE EXCHANGE REPULSION ENERGY -0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY -0.0001957633 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 3 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 1.630227 4.083322 -1.747300 - A02C 2.612029 2.640229 -1.532541 - A03C 2.101745 1.315079 -1.494585 - A04S 0.375367 0.925226 -1.688730 - A05C -0.065186 2.169539 -2.877122 - A06C 0.448850 3.437171 -2.907680 - A07C 0.051087 4.362802 -3.904959 - A08N -0.275814 5.148727 -4.708701 - A09C -1.041864 1.768939 -3.819832 - A10N -1.891240 1.445864 -4.556150 - A11N 2.962164 0.337877 -1.285161 - A12S 4.485666 0.969226 -1.063005 - A13C 3.984638 2.621777 -1.326998 - A14C 4.874936 3.709014 -1.334031 - A15N 5.619803 4.610043 -1.365681 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000107808 - PAIRWISE POLARIZATION ENERGY 0.0000024710 - PAIRWISE DISPERSION ENERGY -0.0000064007 - PAIRWISE EXCHANGE REPULSION ENERGY -0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000068511 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 4 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S -10.785134 -0.703872 16.442375 - A02C -9.803332 0.739221 16.657134 - A03C -10.313616 2.064371 16.695090 - A04S -12.039994 2.454224 16.500945 - A05C -12.480547 1.209911 15.312553 - A06C -11.966511 -0.057721 15.281995 - A07C -12.364274 -0.983352 14.284716 - A08N -12.691175 -1.769277 13.480974 - A09C -13.457225 1.610511 14.369843 - A10N -14.306601 1.933586 13.633525 - A11N -9.453197 3.041573 16.904514 - A12S -7.929695 2.410224 17.126670 - A13C -8.430723 0.757673 16.862677 - A14C -7.540425 -0.329564 16.855644 - A15N -6.795558 -1.230593 16.823994 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 5 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S -5.906334 -4.083322 13.873750 - A02C -6.888136 -2.640229 13.658991 - A03C -6.377852 -1.315079 13.621035 - A04S -4.651474 -0.925226 13.815180 - A05C -4.210921 -2.169539 15.003572 - A06C -4.724957 -3.437171 15.034130 - A07C -4.327194 -4.362802 16.031409 - A08N -4.000293 -5.148727 16.835151 - A09C -3.234243 -1.768939 15.946282 - A10N -2.384867 -1.445864 16.682600 - A11N -7.238271 -0.337877 13.411611 - A12S -8.761773 -0.969226 13.189455 - A13C -8.260745 -2.621777 13.453448 - A14C -9.151043 -3.709014 13.460481 - A15N -9.895910 -4.610043 13.492131 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY -0.0000059620 - PAIRWISE POLARIZATION ENERGY -0.0000019679 - PAIRWISE DISPERSION ENERGY -0.0000102120 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY -0.0000181419 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 6 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 2.232919 0.703872 7.810525 - A02C 1.251118 -0.739221 7.595766 - A03C 1.761402 -2.064371 7.557810 - A04S 3.487780 -2.454223 7.751955 - A05C 3.928333 -1.209910 8.940347 - A06C 3.414296 0.057722 8.970905 - A07C 3.812058 0.983353 9.968184 - A08N 4.138959 1.769278 10.771926 - A09C 4.905010 -1.610509 9.883058 - A10N 5.754386 -1.933584 10.619376 - A11N 0.900984 -3.041573 7.348386 - A12S -0.622518 -2.410225 7.126230 - A13C -0.121491 -0.757674 7.390223 - A14C -1.011790 0.329563 7.397255 - A15N -1.756657 1.230591 7.428905 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 7 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S -2.645880 4.083322 10.379150 - A02C -1.664079 2.640229 10.593909 - A03C -2.174363 1.315079 10.631865 - A04S -3.900741 0.925227 10.437720 - A05C -4.341294 2.169540 9.249328 - A06C -3.827257 3.437172 9.218770 - A07C -4.225019 4.362803 8.221491 - A08N -4.551920 5.148728 7.417749 - A09C -5.317971 1.768941 8.306617 - A10N -6.167347 1.445866 7.570299 - A11N -1.313945 0.337877 10.841289 - A12S 0.209557 0.969225 11.063445 - A13C -0.291470 2.621776 10.799452 - A14C 0.598829 3.709013 10.792420 - A15N 1.343696 4.610041 10.760770 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY -0.0053861477 - PAIRWISE POLARIZATION ENERGY -0.0006619368 - PAIRWISE DISPERSION ENERGY -0.0102862849 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0012961487 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY -0.0150382206 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 8 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S -6.509027 6.055028 4.315925 - A02C -5.527225 7.498121 4.530684 - A03C -6.037509 8.823271 4.568640 - A04S -7.763887 9.213124 4.374495 - A05C -8.204440 7.968811 3.186103 - A06C -7.690404 6.701179 3.155545 - A07C -8.088167 5.775548 2.158266 - A08N -8.415068 4.989623 1.354524 - A09C -9.181118 8.369411 2.243393 - A10N -10.030494 8.692486 1.507075 - A11N -5.177090 9.800473 4.778064 - A12S -3.653588 9.169124 5.000220 - A13C -4.154616 7.516573 4.736227 - A14C -3.264318 6.429336 4.729194 - A15N -2.519451 5.528307 4.697544 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY -0.0052997977 - PAIRWISE POLARIZATION ENERGY -0.0004115679 - PAIRWISE DISPERSION ENERGY -0.0090620393 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0018995793 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY -0.0128738257 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 9 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S -1.630227 2.675578 1.747300 - A02C -2.612029 4.118671 1.532541 - A03C -2.101745 5.443821 1.494585 - A04S -0.375367 5.833674 1.688730 - A05C 0.065186 4.589361 2.877122 - A06C -0.448850 3.321729 2.907680 - A07C -0.051087 2.396098 3.904959 - A08N 0.275814 1.610173 4.708701 - A09C 1.041864 4.989961 3.819832 - A10N 1.891240 5.313036 4.556150 - A11N -2.962164 6.421023 1.285161 - A12S -4.485666 5.789674 1.063005 - A13C -3.984638 4.137123 1.326998 - A14C -4.874936 3.049886 1.334031 - A15N -5.619803 2.148857 1.365681 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY -0.0001876888 - PAIRWISE POLARIZATION ENERGY -0.0000071418 - PAIRWISE DISPERSION ENERGY -0.0003825748 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000707698 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY -0.0005066355 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 10 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 6.509027 7.462772 -4.315925 - A02C 5.527225 6.019679 -4.530684 - A03C 6.037509 4.694529 -4.568640 - A04S 7.763887 4.304676 -4.374495 - A05C 8.204440 5.548989 -3.186103 - A06C 7.690404 6.816621 -3.155545 - A07C 8.088167 7.742252 -2.158266 - A08N 8.415068 8.528177 -1.354524 - A09C 9.181118 5.148389 -2.243393 - A10N 10.030494 4.825314 -1.507075 - A11N 5.177090 3.717327 -4.778064 - A12S 3.653588 4.348676 -5.000220 - A13C 4.154616 6.001227 -4.736227 - A14C 3.264318 7.088464 -4.729194 - A15N 2.519451 7.989493 -4.697544 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY -0.0000244590 - PAIRWISE POLARIZATION ENERGY -0.0000012778 - PAIRWISE DISPERSION ENERGY -0.0000182021 - PAIRWISE EXCHANGE REPULSION ENERGY -0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY -0.0000439388 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 11 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 1.630227 10.842222 -1.747300 - A02C 2.612029 9.399129 -1.532541 - A03C 2.101745 8.073979 -1.494585 - A04S 0.375367 7.684126 -1.688730 - A05C -0.065186 8.928439 -2.877122 - A06C 0.448850 10.196071 -2.907680 - A07C 0.051087 11.121702 -3.904959 - A08N -0.275814 11.907627 -4.708701 - A09C -1.041864 8.527839 -3.819832 - A10N -1.891240 8.204764 -4.556150 - A11N 2.962164 7.096777 -1.285161 - A12S 4.485666 7.728126 -1.063005 - A13C 3.984638 9.380677 -1.326998 - A14C 4.874936 10.467914 -1.334031 - A15N 5.619803 11.368943 -1.365681 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 12 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S -10.785134 6.055028 16.442375 - A02C -9.803332 7.498121 16.657134 - A03C -10.313616 8.823271 16.695090 - A04S -12.039994 9.213124 16.500945 - A05C -12.480547 7.968811 15.312553 - A06C -11.966511 6.701179 15.281995 - A07C -12.364274 5.775548 14.284716 - A08N -12.691175 4.989623 13.480974 - A09C -13.457225 8.369411 14.369843 - A10N -14.306601 8.692486 13.633525 - A11N -9.453197 9.800473 16.904514 - A12S -7.929695 9.169124 17.126670 - A13C -8.430723 7.516573 16.862677 - A14C -7.540425 6.429336 16.855644 - A15N -6.795558 5.528307 16.823994 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 13 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S -5.906334 2.675578 13.873750 - A02C -6.888136 4.118671 13.658991 - A03C -6.377852 5.443821 13.621035 - A04S -4.651474 5.833674 13.815180 - A05C -4.210921 4.589361 15.003572 - A06C -4.724957 3.321729 15.034130 - A07C -4.327194 2.396098 16.031409 - A08N -4.000293 1.610173 16.835151 - A09C -3.234243 4.989961 15.946282 - A10N -2.384867 5.313036 16.682600 - A11N -7.238271 6.421023 13.411611 - A12S -8.761773 5.789674 13.189455 - A13C -8.260745 4.137123 13.453448 - A14C -9.151043 3.049886 13.460481 - A15N -9.895910 2.148857 13.492131 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY -0.0000059620 - PAIRWISE POLARIZATION ENERGY -0.0000019679 - PAIRWISE DISPERSION ENERGY -0.0000102120 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY -0.0000181419 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 14 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 2.232919 7.462772 7.810525 - A02C 1.251118 6.019679 7.595766 - A03C 1.761402 4.694529 7.557810 - A04S 3.487780 4.304677 7.751955 - A05C 3.928333 5.548990 8.940347 - A06C 3.414296 6.816622 8.970905 - A07C 3.812058 7.742253 9.968184 - A08N 4.138959 8.528178 10.771926 - A09C 4.905010 5.148391 9.883058 - A10N 5.754386 4.825316 10.619376 - A11N 0.900984 3.717327 7.348386 - A12S -0.622518 4.348675 7.126230 - A13C -0.121491 6.001226 7.390223 - A14C -1.011790 7.088463 7.397255 - A15N -1.756657 7.989491 7.428905 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 15 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S -2.645880 10.842222 10.379150 - A02C -1.664079 9.399129 10.593909 - A03C -2.174363 8.073979 10.631865 - A04S -3.900741 7.684127 10.437720 - A05C -4.341294 8.928440 9.249328 - A06C -3.827257 10.196072 9.218770 - A07C -4.225019 11.121703 8.221491 - A08N -4.551920 11.907628 7.417749 - A09C -5.317971 8.527841 8.306617 - A10N -6.167347 8.204766 7.570299 - A11N -1.313945 7.096777 10.841289 - A12S 0.209557 7.728125 11.063445 - A13C -0.291470 9.380676 10.799452 - A14C 0.598829 10.467913 10.792420 - A15N 1.343696 11.368941 10.760770 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 16 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S -6.509027 12.813928 4.315925 - A02C -5.527225 14.257021 4.530684 - A03C -6.037509 15.582171 4.568640 - A04S -7.763887 15.972024 4.374495 - A05C -8.204440 14.727711 3.186103 - A06C -7.690404 13.460079 3.155545 - A07C -8.088167 12.534448 2.158266 - A08N -8.415068 11.748523 1.354524 - A09C -9.181118 15.128311 2.243393 - A10N -10.030494 15.451386 1.507075 - A11N -5.177090 16.559373 4.778064 - A12S -3.653588 15.928024 5.000220 - A13C -4.154616 14.275473 4.736227 - A14C -3.264318 13.188236 4.729194 - A15N -2.519451 12.287207 4.697544 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 17 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S -1.630227 9.434478 1.747300 - A02C -2.612029 10.877571 1.532541 - A03C -2.101745 12.202721 1.494585 - A04S -0.375367 12.592574 1.688730 - A05C 0.065186 11.348261 2.877122 - A06C -0.448850 10.080629 2.907680 - A07C -0.051087 9.154998 3.904959 - A08N 0.275814 8.369073 4.708701 - A09C 1.041864 11.748861 3.819832 - A10N 1.891240 12.071936 4.556150 - A11N -2.962164 13.179923 1.285161 - A12S -4.485666 12.548574 1.063005 - A13C -3.984638 10.896023 1.326998 - A14C -4.874936 9.808786 1.334031 - A15N -5.619803 8.907757 1.365681 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 18 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 6.509027 14.221672 -4.315925 - A02C 5.527225 12.778579 -4.530684 - A03C 6.037509 11.453429 -4.568640 - A04S 7.763887 11.063576 -4.374495 - A05C 8.204440 12.307889 -3.186103 - A06C 7.690404 13.575521 -3.155545 - A07C 8.088167 14.501152 -2.158266 - A08N 8.415068 15.287077 -1.354524 - A09C 9.181118 11.907289 -2.243393 - A10N 10.030494 11.584214 -1.507075 - A11N 5.177090 10.476227 -4.778064 - A12S 3.653588 11.107576 -5.000220 - A13C 4.154616 12.760127 -4.736227 - A14C 3.264318 13.847364 -4.729194 - A15N 2.519451 14.748393 -4.697544 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 19 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 1.630227 17.601122 -1.747300 - A02C 2.612029 16.158029 -1.532541 - A03C 2.101745 14.832879 -1.494585 - A04S 0.375367 14.443026 -1.688730 - A05C -0.065186 15.687339 -2.877122 - A06C 0.448850 16.954971 -2.907680 - A07C 0.051087 17.880602 -3.904959 - A08N -0.275814 18.666527 -4.708701 - A09C -1.041864 15.286739 -3.819832 - A10N -1.891240 14.963664 -4.556150 - A11N 2.962164 13.855677 -1.285161 - A12S 4.485666 14.487026 -1.063005 - A13C 3.984638 16.139577 -1.326998 - A14C 4.874936 17.226814 -1.334031 - A15N 5.619803 18.127843 -1.365681 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 20 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S -10.785134 12.813928 16.442375 - A02C -9.803332 14.257021 16.657134 - A03C -10.313616 15.582171 16.695090 - A04S -12.039994 15.972024 16.500945 - A05C -12.480547 14.727711 15.312553 - A06C -11.966511 13.460079 15.281995 - A07C -12.364274 12.534448 14.284716 - A08N -12.691175 11.748523 13.480974 - A09C -13.457225 15.128311 14.369843 - A10N -14.306601 15.451386 13.633525 - A11N -9.453197 16.559373 16.904514 - A12S -7.929695 15.928024 17.126670 - A13C -8.430723 14.275473 16.862677 - A14C -7.540425 13.188236 16.855644 - A15N -6.795558 12.287207 16.823994 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 21 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S -5.906334 9.434478 13.873750 - A02C -6.888136 10.877571 13.658991 - A03C -6.377852 12.202721 13.621035 - A04S -4.651474 12.592574 13.815180 - A05C -4.210921 11.348261 15.003572 - A06C -4.724957 10.080629 15.034130 - A07C -4.327194 9.154998 16.031409 - A08N -4.000293 8.369073 16.835151 - A09C -3.234243 11.748861 15.946282 - A10N -2.384867 12.071936 16.682600 - A11N -7.238271 13.179923 13.411611 - A12S -8.761773 12.548574 13.189455 - A13C -8.260745 10.896023 13.453448 - A14C -9.151043 9.808786 13.460481 - A15N -9.895910 8.907757 13.492131 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 22 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 2.232919 14.221672 7.810525 - A02C 1.251118 12.778579 7.595766 - A03C 1.761402 11.453429 7.557810 - A04S 3.487780 11.063577 7.751955 - A05C 3.928333 12.307890 8.940347 - A06C 3.414296 13.575522 8.970905 - A07C 3.812058 14.501153 9.968184 - A08N 4.138959 15.287078 10.771926 - A09C 4.905010 11.907291 9.883058 - A10N 5.754386 11.584216 10.619376 - A11N 0.900984 10.476227 7.348386 - A12S -0.622518 11.107575 7.126230 - A13C -0.121491 12.760126 7.390223 - A14C -1.011790 13.847363 7.397255 - A15N -1.756657 14.748391 7.428905 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 23 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S -2.645880 17.601122 10.379150 - A02C -1.664079 16.158029 10.593909 - A03C -2.174363 14.832879 10.631865 - A04S -3.900741 14.443027 10.437720 - A05C -4.341294 15.687340 9.249328 - A06C -3.827257 16.954972 9.218770 - A07C -4.225019 17.880603 8.221491 - A08N -4.551920 18.666528 7.417749 - A09C -5.317971 15.286741 8.306617 - A10N -6.167347 14.963666 7.570299 - A11N -1.313945 13.855677 10.841289 - A12S 0.209557 14.487025 11.063445 - A13C -0.291470 16.139576 10.799452 - A14C 0.598829 17.226813 10.792420 - A15N 1.343696 18.127841 10.760770 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 24 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S -6.509027 19.572828 4.315925 - A02C -5.527225 21.015921 4.530684 - A03C -6.037509 22.341071 4.568640 - A04S -7.763887 22.730924 4.374495 - A05C -8.204440 21.486611 3.186103 - A06C -7.690404 20.218979 3.155545 - A07C -8.088167 19.293348 2.158266 - A08N -8.415068 18.507423 1.354524 - A09C -9.181118 21.887211 2.243393 - A10N -10.030494 22.210286 1.507075 - A11N -5.177090 23.318273 4.778064 - A12S -3.653588 22.686924 5.000220 - A13C -4.154616 21.034373 4.736227 - A14C -3.264318 19.947136 4.729194 - A15N -2.519451 19.046107 4.697544 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY -0.0052997977 - PAIRWISE POLARIZATION ENERGY -0.0004115679 - PAIRWISE DISPERSION ENERGY -0.0090620393 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0018995793 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY -0.0128738257 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 25 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S -1.630227 16.193378 1.747300 - A02C -2.612029 17.636471 1.532541 - A03C -2.101745 18.961621 1.494585 - A04S -0.375367 19.351474 1.688730 - A05C 0.065186 18.107161 2.877122 - A06C -0.448850 16.839529 2.907680 - A07C -0.051087 15.913898 3.904959 - A08N 0.275814 15.127973 4.708701 - A09C 1.041864 18.507761 3.819832 - A10N 1.891240 18.830836 4.556150 - A11N -2.962164 19.938823 1.285161 - A12S -4.485666 19.307474 1.063005 - A13C -3.984638 17.654923 1.326998 - A14C -4.874936 16.567686 1.334031 - A15N -5.619803 15.666657 1.365681 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 26 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 6.509027 20.980572 -4.315925 - A02C 5.527225 19.537479 -4.530684 - A03C 6.037509 18.212329 -4.568640 - A04S 7.763887 17.822476 -4.374495 - A05C 8.204440 19.066789 -3.186103 - A06C 7.690404 20.334421 -3.155545 - A07C 8.088167 21.260052 -2.158266 - A08N 8.415068 22.045977 -1.354524 - A09C 9.181118 18.666189 -2.243393 - A10N 10.030494 18.343114 -1.507075 - A11N 5.177090 17.235127 -4.778064 - A12S 3.653588 17.866476 -5.000220 - A13C 4.154616 19.519027 -4.736227 - A14C 3.264318 20.606264 -4.729194 - A15N 2.519451 21.507293 -4.697544 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY -0.0000558284 - PAIRWISE POLARIZATION ENERGY -0.0000052238 - PAIRWISE DISPERSION ENERGY -0.0000119700 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY -0.0000730222 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 27 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 1.630227 24.360022 -1.747300 - A02C 2.612029 22.916929 -1.532541 - A03C 2.101745 21.591779 -1.494585 - A04S 0.375367 21.201926 -1.688730 - A05C -0.065186 22.446239 -2.877122 - A06C 0.448850 23.713871 -2.907680 - A07C 0.051087 24.639502 -3.904959 - A08N -0.275814 25.425427 -4.708701 - A09C -1.041864 22.045639 -3.819832 - A10N -1.891240 21.722564 -4.556150 - A11N 2.962164 20.614577 -1.285161 - A12S 4.485666 21.245926 -1.063005 - A13C 3.984638 22.898477 -1.326998 - A14C 4.874936 23.985714 -1.334031 - A15N 5.619803 24.886743 -1.365681 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY -0.0000011294 - PAIRWISE POLARIZATION ENERGY -0.0000001393 - PAIRWISE DISPERSION ENERGY -0.0000036522 - PAIRWISE EXCHANGE REPULSION ENERGY -0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY -0.0000049209 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 28 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S -10.785134 19.572828 16.442375 - A02C -9.803332 21.015921 16.657134 - A03C -10.313616 22.341071 16.695090 - A04S -12.039994 22.730924 16.500945 - A05C -12.480547 21.486611 15.312553 - A06C -11.966511 20.218979 15.281995 - A07C -12.364274 19.293348 14.284716 - A08N -12.691175 18.507423 13.480974 - A09C -13.457225 21.887211 14.369843 - A10N -14.306601 22.210286 13.633525 - A11N -9.453197 23.318273 16.904514 - A12S -7.929695 22.686924 17.126670 - A13C -8.430723 21.034373 16.862677 - A14C -7.540425 19.947136 16.855644 - A15N -6.795558 19.046107 16.823994 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 29 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S -5.906334 16.193378 13.873750 - A02C -6.888136 17.636471 13.658991 - A03C -6.377852 18.961621 13.621035 - A04S -4.651474 19.351474 13.815180 - A05C -4.210921 18.107161 15.003572 - A06C -4.724957 16.839529 15.034130 - A07C -4.327194 15.913898 16.031409 - A08N -4.000293 15.127973 16.835151 - A09C -3.234243 18.507761 15.946282 - A10N -2.384867 18.830836 16.682600 - A11N -7.238271 19.938823 13.411611 - A12S -8.761773 19.307474 13.189455 - A13C -8.260745 17.654923 13.453448 - A14C -9.151043 16.567686 13.460481 - A15N -9.895910 15.666657 13.492131 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 30 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 2.232919 20.980572 7.810525 - A02C 1.251118 19.537479 7.595766 - A03C 1.761402 18.212329 7.557810 - A04S 3.487780 17.822477 7.751955 - A05C 3.928333 19.066790 8.940347 - A06C 3.414296 20.334422 8.970905 - A07C 3.812058 21.260053 9.968184 - A08N 4.138959 22.045978 10.771926 - A09C 4.905010 18.666191 9.883058 - A10N 5.754386 18.343116 10.619376 - A11N 0.900984 17.235127 7.348386 - A12S -0.622518 17.866475 7.126230 - A13C -0.121491 19.519026 7.390223 - A14C -1.011790 20.606263 7.397255 - A15N -1.756657 21.507291 7.428905 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 31 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S -2.645880 24.360022 10.379150 - A02C -1.664079 22.916929 10.593909 - A03C -2.174363 21.591779 10.631865 - A04S -3.900741 21.201927 10.437720 - A05C -4.341294 22.446240 9.249328 - A06C -3.827257 23.713872 9.218770 - A07C -4.225019 24.639503 8.221491 - A08N -4.551920 25.425428 7.417749 - A09C -5.317971 22.045641 8.306617 - A10N -6.167347 21.722566 7.570299 - A11N -1.313945 20.614577 10.841289 - A12S 0.209557 21.245925 11.063445 - A13C -0.291470 22.898476 10.799452 - A14C 0.598829 23.985713 10.792420 - A15N 1.343696 24.886741 10.760770 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY -0.0048287014 - PAIRWISE POLARIZATION ENERGY -0.0010313923 - PAIRWISE DISPERSION ENERGY -0.0036105593 - PAIRWISE EXCHANGE REPULSION ENERGY -0.0005780584 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY -0.0100487114 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 32 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S 5.493373 -0.703872 4.315925 - A02C 6.475175 0.739221 4.530684 - A03C 5.964891 2.064371 4.568640 - A04S 4.238513 2.454224 4.374495 - A05C 3.797960 1.209911 3.186103 - A06C 4.311996 -0.057721 3.155545 - A07C 3.914233 -0.983352 2.158266 - A08N 3.587332 -1.769277 1.354524 - A09C 2.821282 1.610511 2.243393 - A10N 1.971906 1.933586 1.507075 - A11N 6.825310 3.041573 4.778064 - A12S 8.348812 2.410224 5.000220 - A13C 7.847784 0.757673 4.736227 - A14C 8.738082 -0.329564 4.729194 - A15N 9.482949 -1.230593 4.697544 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 33 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S 10.372173 -4.083322 1.747300 - A02C 9.390371 -2.640229 1.532541 - A03C 9.900655 -1.315079 1.494585 - A04S 11.627033 -0.925226 1.688730 - A05C 12.067586 -2.169539 2.877122 - A06C 11.553550 -3.437171 2.907680 - A07C 11.951313 -4.362802 3.904959 - A08N 12.278214 -5.148727 4.708701 - A09C 13.044264 -1.768939 3.819832 - A10N 13.893640 -1.445864 4.556150 - A11N 9.040236 -0.337877 1.285161 - A12S 7.516734 -0.969226 1.063005 - A13C 8.017762 -2.621777 1.326998 - A14C 7.127464 -3.709014 1.334031 - A15N 6.382597 -4.610043 1.365681 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000682193 - PAIRWISE POLARIZATION ENERGY 0.0000049121 - PAIRWISE DISPERSION ENERGY -0.0000178991 - PAIRWISE EXCHANGE REPULSION ENERGY -0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000552323 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 34 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 18.511427 0.703872 -4.315925 - A02C 17.529625 -0.739221 -4.530684 - A03C 18.039909 -2.064371 -4.568640 - A04S 19.766287 -2.454224 -4.374495 - A05C 20.206840 -1.209911 -3.186103 - A06C 19.692804 0.057721 -3.155545 - A07C 20.090567 0.983352 -2.158266 - A08N 20.417468 1.769277 -1.354524 - A09C 21.183518 -1.610511 -2.243393 - A10N 22.032894 -1.933586 -1.507075 - A11N 17.179490 -3.041573 -4.778064 - A12S 15.655988 -2.410224 -5.000220 - A13C 16.157016 -0.757673 -4.736227 - A14C 15.266718 0.329564 -4.729194 - A15N 14.521851 1.230593 -4.697544 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 35 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 13.632627 4.083322 -1.747300 - A02C 14.614429 2.640229 -1.532541 - A03C 14.104145 1.315079 -1.494585 - A04S 12.377767 0.925226 -1.688730 - A05C 11.937214 2.169539 -2.877122 - A06C 12.451250 3.437171 -2.907680 - A07C 12.053487 4.362802 -3.904959 - A08N 11.726586 5.148727 -4.708701 - A09C 10.960536 1.768939 -3.819832 - A10N 10.111160 1.445864 -4.556150 - A11N 14.964564 0.337877 -1.285161 - A12S 16.488066 0.969226 -1.063005 - A13C 15.987038 2.621777 -1.326998 - A14C 16.877336 3.709014 -1.334031 - A15N 17.622203 4.610043 -1.365681 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY -0.0053861361 - PAIRWISE POLARIZATION ENERGY -0.0006619356 - PAIRWISE DISPERSION ENERGY -0.0102862817 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0012961354 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY -0.0150382180 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 36 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S 1.217266 -0.703872 16.442375 - A02C 2.199068 0.739221 16.657134 - A03C 1.688784 2.064371 16.695090 - A04S -0.037594 2.454224 16.500945 - A05C -0.478147 1.209911 15.312553 - A06C 0.035889 -0.057721 15.281995 - A07C -0.361874 -0.983352 14.284716 - A08N -0.688775 -1.769277 13.480974 - A09C -1.454825 1.610511 14.369843 - A10N -2.304201 1.933586 13.633525 - A11N 2.549203 3.041573 16.904514 - A12S 4.072705 2.410224 17.126670 - A13C 3.571677 0.757673 16.862677 - A14C 4.461975 -0.329564 16.855644 - A15N 5.206842 -1.230593 16.823994 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 37 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S 6.096066 -4.083322 13.873750 - A02C 5.114264 -2.640229 13.658991 - A03C 5.624548 -1.315079 13.621035 - A04S 7.350926 -0.925226 13.815180 - A05C 7.791479 -2.169539 15.003572 - A06C 7.277443 -3.437171 15.034130 - A07C 7.675206 -4.362802 16.031409 - A08N 8.002107 -5.148727 16.835151 - A09C 8.768157 -1.768939 15.946282 - A10N 9.617533 -1.445864 16.682600 - A11N 4.764129 -0.337877 13.411611 - A12S 3.240627 -0.969226 13.189455 - A13C 3.741655 -2.621777 13.453448 - A14C 2.851357 -3.709014 13.460481 - A15N 2.106490 -4.610043 13.492131 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000066 - PAIRWISE POLARIZATION ENERGY -0.0000000235 - PAIRWISE DISPERSION ENERGY -0.0000000269 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY -0.0000000438 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 38 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 14.235319 0.703872 7.810525 - A02C 13.253518 -0.739221 7.595766 - A03C 13.763802 -2.064371 7.557810 - A04S 15.490180 -2.454223 7.751955 - A05C 15.930733 -1.209910 8.940347 - A06C 15.416696 0.057722 8.970905 - A07C 15.814458 0.983353 9.968184 - A08N 16.141359 1.769278 10.771926 - A09C 16.907410 -1.610509 9.883058 - A10N 17.756786 -1.933584 10.619376 - A11N 12.903384 -3.041573 7.348386 - A12S 11.379882 -2.410225 7.126230 - A13C 11.880909 -0.757674 7.390223 - A14C 10.990610 0.329563 7.397255 - A15N 10.245743 1.230591 7.428905 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 39 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 9.356520 4.083322 10.379150 - A02C 10.338321 2.640229 10.593909 - A03C 9.828037 1.315079 10.631865 - A04S 8.101659 0.925227 10.437720 - A05C 7.661106 2.169540 9.249328 - A06C 8.175143 3.437172 9.218770 - A07C 7.777381 4.362803 8.221491 - A08N 7.450480 5.148728 7.417749 - A09C 6.684429 1.768941 8.306617 - A10N 5.835053 1.445866 7.570299 - A11N 10.688455 0.337877 10.841289 - A12S 12.211957 0.969225 11.063445 - A13C 11.710930 2.621776 10.799452 - A14C 12.601229 3.709013 10.792420 - A15N 13.346096 4.610041 10.760770 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000107809 - PAIRWISE POLARIZATION ENERGY 0.0000024710 - PAIRWISE DISPERSION ENERGY -0.0000064008 - PAIRWISE EXCHANGE REPULSION ENERGY -0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000068512 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 40 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S 5.493373 6.055028 4.315925 - A02C 6.475175 7.498121 4.530684 - A03C 5.964891 8.823271 4.568640 - A04S 4.238513 9.213124 4.374495 - A05C 3.797960 7.968811 3.186103 - A06C 4.311996 6.701179 3.155545 - A07C 3.914233 5.775548 2.158266 - A08N 3.587332 4.989623 1.354524 - A09C 2.821282 8.369411 2.243393 - A10N 1.971906 8.692486 1.507075 - A11N 6.825310 9.800473 4.778064 - A12S 8.348812 9.169124 5.000220 - A13C 7.847784 7.516573 4.736227 - A14C 8.738082 6.429336 4.729194 - A15N 9.482949 5.528307 4.697544 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 41 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S 10.372173 2.675578 1.747300 - A02C 9.390371 4.118671 1.532541 - A03C 9.900655 5.443821 1.494585 - A04S 11.627033 5.833674 1.688730 - A05C 12.067586 4.589361 2.877122 - A06C 11.553550 3.321729 2.907680 - A07C 11.951313 2.396098 3.904959 - A08N 12.278214 1.610173 4.708701 - A09C 13.044264 4.989961 3.819832 - A10N 13.893640 5.313036 4.556150 - A11N 9.040236 6.421023 1.285161 - A12S 7.516734 5.789674 1.063005 - A13C 8.017762 4.137123 1.326998 - A14C 7.127464 3.049886 1.334031 - A15N 6.382597 2.148857 1.365681 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000682193 - PAIRWISE POLARIZATION ENERGY 0.0000049121 - PAIRWISE DISPERSION ENERGY -0.0000178991 - PAIRWISE EXCHANGE REPULSION ENERGY -0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000552323 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 42 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 18.511427 7.462772 -4.315925 - A02C 17.529625 6.019679 -4.530684 - A03C 18.039909 4.694529 -4.568640 - A04S 19.766287 4.304676 -4.374495 - A05C 20.206840 5.548989 -3.186103 - A06C 19.692804 6.816621 -3.155545 - A07C 20.090567 7.742252 -2.158266 - A08N 20.417468 8.528177 -1.354524 - A09C 21.183518 5.148389 -2.243393 - A10N 22.032894 4.825314 -1.507075 - A11N 17.179490 3.717327 -4.778064 - A12S 15.655988 4.348676 -5.000220 - A13C 16.157016 6.001227 -4.736227 - A14C 15.266718 7.088464 -4.729194 - A15N 14.521851 7.989493 -4.697544 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 43 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 13.632627 10.842222 -1.747300 - A02C 14.614429 9.399129 -1.532541 - A03C 14.104145 8.073979 -1.494585 - A04S 12.377767 7.684126 -1.688730 - A05C 11.937214 8.928439 -2.877122 - A06C 12.451250 10.196071 -2.907680 - A07C 12.053487 11.121702 -3.904959 - A08N 11.726586 11.907627 -4.708701 - A09C 10.960536 8.527839 -3.819832 - A10N 10.111160 8.204764 -4.556150 - A11N 14.964564 7.096777 -1.285161 - A12S 16.488066 7.728126 -1.063005 - A13C 15.987038 9.380677 -1.326998 - A14C 16.877336 10.467914 -1.334031 - A15N 17.622203 11.368943 -1.365681 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 44 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S 1.217266 6.055028 16.442375 - A02C 2.199068 7.498121 16.657134 - A03C 1.688784 8.823271 16.695090 - A04S -0.037594 9.213124 16.500945 - A05C -0.478147 7.968811 15.312553 - A06C 0.035889 6.701179 15.281995 - A07C -0.361874 5.775548 14.284716 - A08N -0.688775 4.989623 13.480974 - A09C -1.454825 8.369411 14.369843 - A10N -2.304201 8.692486 13.633525 - A11N 2.549203 9.800473 16.904514 - A12S 4.072705 9.169124 17.126670 - A13C 3.571677 7.516573 16.862677 - A14C 4.461975 6.429336 16.855644 - A15N 5.206842 5.528307 16.823994 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 45 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S 6.096066 2.675578 13.873750 - A02C 5.114264 4.118671 13.658991 - A03C 5.624548 5.443821 13.621035 - A04S 7.350926 5.833674 13.815180 - A05C 7.791479 4.589361 15.003572 - A06C 7.277443 3.321729 15.034130 - A07C 7.675206 2.396098 16.031409 - A08N 8.002107 1.610173 16.835151 - A09C 8.768157 4.989961 15.946282 - A10N 9.617533 5.313036 16.682600 - A11N 4.764129 6.421023 13.411611 - A12S 3.240627 5.789674 13.189455 - A13C 3.741655 4.137123 13.453448 - A14C 2.851357 3.049886 13.460481 - A15N 2.106490 2.148857 13.492131 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000066 - PAIRWISE POLARIZATION ENERGY -0.0000000235 - PAIRWISE DISPERSION ENERGY -0.0000000269 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY -0.0000000438 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 46 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 14.235319 7.462772 7.810525 - A02C 13.253518 6.019679 7.595766 - A03C 13.763802 4.694529 7.557810 - A04S 15.490180 4.304677 7.751955 - A05C 15.930733 5.548990 8.940347 - A06C 15.416696 6.816622 8.970905 - A07C 15.814458 7.742253 9.968184 - A08N 16.141359 8.528178 10.771926 - A09C 16.907410 5.148391 9.883058 - A10N 17.756786 4.825316 10.619376 - A11N 12.903384 3.717327 7.348386 - A12S 11.379882 4.348675 7.126230 - A13C 11.880909 6.001226 7.390223 - A14C 10.990610 7.088463 7.397255 - A15N 10.245743 7.989491 7.428905 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 47 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 9.356520 10.842222 10.379150 - A02C 10.338321 9.399129 10.593909 - A03C 9.828037 8.073979 10.631865 - A04S 8.101659 7.684127 10.437720 - A05C 7.661106 8.928440 9.249328 - A06C 8.175143 10.196072 9.218770 - A07C 7.777381 11.121703 8.221491 - A08N 7.450480 11.907628 7.417749 - A09C 6.684429 8.527841 8.306617 - A10N 5.835053 8.204766 7.570299 - A11N 10.688455 7.096777 10.841289 - A12S 12.211957 7.728125 11.063445 - A13C 11.710930 9.380676 10.799452 - A14C 12.601229 10.467913 10.792420 - A15N 13.346096 11.368941 10.760770 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 48 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S 5.493373 12.813928 4.315925 - A02C 6.475175 14.257021 4.530684 - A03C 5.964891 15.582171 4.568640 - A04S 4.238513 15.972024 4.374495 - A05C 3.797960 14.727711 3.186103 - A06C 4.311996 13.460079 3.155545 - A07C 3.914233 12.534448 2.158266 - A08N 3.587332 11.748523 1.354524 - A09C 2.821282 15.128311 2.243393 - A10N 1.971906 15.451386 1.507075 - A11N 6.825310 16.559373 4.778064 - A12S 8.348812 15.928024 5.000220 - A13C 7.847784 14.275473 4.736227 - A14C 8.738082 13.188236 4.729194 - A15N 9.482949 12.287207 4.697544 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 49 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S 10.372173 9.434478 1.747300 - A02C 9.390371 10.877571 1.532541 - A03C 9.900655 12.202721 1.494585 - A04S 11.627033 12.592574 1.688730 - A05C 12.067586 11.348261 2.877122 - A06C 11.553550 10.080629 2.907680 - A07C 11.951313 9.154998 3.904959 - A08N 12.278214 8.369073 4.708701 - A09C 13.044264 11.748861 3.819832 - A10N 13.893640 12.071936 4.556150 - A11N 9.040236 13.179923 1.285161 - A12S 7.516734 12.548574 1.063005 - A13C 8.017762 10.896023 1.326998 - A14C 7.127464 9.808786 1.334031 - A15N 6.382597 8.907757 1.365681 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 50 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 18.511427 14.221672 -4.315925 - A02C 17.529625 12.778579 -4.530684 - A03C 18.039909 11.453429 -4.568640 - A04S 19.766287 11.063576 -4.374495 - A05C 20.206840 12.307889 -3.186103 - A06C 19.692804 13.575521 -3.155545 - A07C 20.090567 14.501152 -2.158266 - A08N 20.417468 15.287077 -1.354524 - A09C 21.183518 11.907289 -2.243393 - A10N 22.032894 11.584214 -1.507075 - A11N 17.179490 10.476227 -4.778064 - A12S 15.655988 11.107576 -5.000220 - A13C 16.157016 12.760127 -4.736227 - A14C 15.266718 13.847364 -4.729194 - A15N 14.521851 14.748393 -4.697544 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 51 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 13.632627 17.601122 -1.747300 - A02C 14.614429 16.158029 -1.532541 - A03C 14.104145 14.832879 -1.494585 - A04S 12.377767 14.443026 -1.688730 - A05C 11.937214 15.687339 -2.877122 - A06C 12.451250 16.954971 -2.907680 - A07C 12.053487 17.880602 -3.904959 - A08N 11.726586 18.666527 -4.708701 - A09C 10.960536 15.286739 -3.819832 - A10N 10.111160 14.963664 -4.556150 - A11N 14.964564 13.855677 -1.285161 - A12S 16.488066 14.487026 -1.063005 - A13C 15.987038 16.139577 -1.326998 - A14C 16.877336 17.226814 -1.334031 - A15N 17.622203 18.127843 -1.365681 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 52 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S 1.217266 12.813928 16.442375 - A02C 2.199068 14.257021 16.657134 - A03C 1.688784 15.582171 16.695090 - A04S -0.037594 15.972024 16.500945 - A05C -0.478147 14.727711 15.312553 - A06C 0.035889 13.460079 15.281995 - A07C -0.361874 12.534448 14.284716 - A08N -0.688775 11.748523 13.480974 - A09C -1.454825 15.128311 14.369843 - A10N -2.304201 15.451386 13.633525 - A11N 2.549203 16.559373 16.904514 - A12S 4.072705 15.928024 17.126670 - A13C 3.571677 14.275473 16.862677 - A14C 4.461975 13.188236 16.855644 - A15N 5.206842 12.287207 16.823994 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 53 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S 6.096066 9.434478 13.873750 - A02C 5.114264 10.877571 13.658991 - A03C 5.624548 12.202721 13.621035 - A04S 7.350926 12.592574 13.815180 - A05C 7.791479 11.348261 15.003572 - A06C 7.277443 10.080629 15.034130 - A07C 7.675206 9.154998 16.031409 - A08N 8.002107 8.369073 16.835151 - A09C 8.768157 11.748861 15.946282 - A10N 9.617533 12.071936 16.682600 - A11N 4.764129 13.179923 13.411611 - A12S 3.240627 12.548574 13.189455 - A13C 3.741655 10.896023 13.453448 - A14C 2.851357 9.808786 13.460481 - A15N 2.106490 8.907757 13.492131 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 54 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 14.235319 14.221672 7.810525 - A02C 13.253518 12.778579 7.595766 - A03C 13.763802 11.453429 7.557810 - A04S 15.490180 11.063577 7.751955 - A05C 15.930733 12.307890 8.940347 - A06C 15.416696 13.575522 8.970905 - A07C 15.814458 14.501153 9.968184 - A08N 16.141359 15.287078 10.771926 - A09C 16.907410 11.907291 9.883058 - A10N 17.756786 11.584216 10.619376 - A11N 12.903384 10.476227 7.348386 - A12S 11.379882 11.107575 7.126230 - A13C 11.880909 12.760126 7.390223 - A14C 10.990610 13.847363 7.397255 - A15N 10.245743 14.748391 7.428905 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 55 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 9.356520 17.601122 10.379150 - A02C 10.338321 16.158029 10.593909 - A03C 9.828037 14.832879 10.631865 - A04S 8.101659 14.443027 10.437720 - A05C 7.661106 15.687340 9.249328 - A06C 8.175143 16.954972 9.218770 - A07C 7.777381 17.880603 8.221491 - A08N 7.450480 18.666528 7.417749 - A09C 6.684429 15.286741 8.306617 - A10N 5.835053 14.963666 7.570299 - A11N 10.688455 13.855677 10.841289 - A12S 12.211957 14.487025 11.063445 - A13C 11.710930 16.139576 10.799452 - A14C 12.601229 17.226813 10.792420 - A15N 13.346096 18.127841 10.760770 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 56 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S 5.493373 19.572828 4.315925 - A02C 6.475175 21.015921 4.530684 - A03C 5.964891 22.341071 4.568640 - A04S 4.238513 22.730924 4.374495 - A05C 3.797960 21.486611 3.186103 - A06C 4.311996 20.218979 3.155545 - A07C 3.914233 19.293348 2.158266 - A08N 3.587332 18.507423 1.354524 - A09C 2.821282 21.887211 2.243393 - A10N 1.971906 22.210286 1.507075 - A11N 6.825310 23.318273 4.778064 - A12S 8.348812 22.686924 5.000220 - A13C 7.847784 21.034373 4.736227 - A14C 8.738082 19.947136 4.729194 - A15N 9.482949 19.046107 4.697544 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 57 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S 10.372173 16.193378 1.747300 - A02C 9.390371 17.636471 1.532541 - A03C 9.900655 18.961621 1.494585 - A04S 11.627033 19.351474 1.688730 - A05C 12.067586 18.107161 2.877122 - A06C 11.553550 16.839529 2.907680 - A07C 11.951313 15.913898 3.904959 - A08N 12.278214 15.127973 4.708701 - A09C 13.044264 18.507761 3.819832 - A10N 13.893640 18.830836 4.556150 - A11N 9.040236 19.938823 1.285161 - A12S 7.516734 19.307474 1.063005 - A13C 8.017762 17.654923 1.326998 - A14C 7.127464 16.567686 1.334031 - A15N 6.382597 15.666657 1.365681 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 58 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 18.511427 20.980572 -4.315925 - A02C 17.529625 19.537479 -4.530684 - A03C 18.039909 18.212329 -4.568640 - A04S 19.766287 17.822476 -4.374495 - A05C 20.206840 19.066789 -3.186103 - A06C 19.692804 20.334421 -3.155545 - A07C 20.090567 21.260052 -2.158266 - A08N 20.417468 22.045977 -1.354524 - A09C 21.183518 18.666189 -2.243393 - A10N 22.032894 18.343114 -1.507075 - A11N 17.179490 17.235127 -4.778064 - A12S 15.655988 17.866476 -5.000220 - A13C 16.157016 19.519027 -4.736227 - A14C 15.266718 20.606264 -4.729194 - A15N 14.521851 21.507293 -4.697544 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 59 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 13.632627 24.360022 -1.747300 - A02C 14.614429 22.916929 -1.532541 - A03C 14.104145 21.591779 -1.494585 - A04S 12.377767 21.201926 -1.688730 - A05C 11.937214 22.446239 -2.877122 - A06C 12.451250 23.713871 -2.907680 - A07C 12.053487 24.639502 -3.904959 - A08N 11.726586 25.425427 -4.708701 - A09C 10.960536 22.045639 -3.819832 - A10N 10.111160 21.722564 -4.556150 - A11N 14.964564 20.614577 -1.285161 - A12S 16.488066 21.245926 -1.063005 - A13C 15.987038 22.898477 -1.326998 - A14C 16.877336 23.985714 -1.334031 - A15N 17.622203 24.886743 -1.365681 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY -0.0048286961 - PAIRWISE POLARIZATION ENERGY -0.0010314033 - PAIRWISE DISPERSION ENERGY -0.0036105715 - PAIRWISE EXCHANGE REPULSION ENERGY -0.0005780855 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY -0.0100487565 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 60 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S 1.217266 19.572828 16.442375 - A02C 2.199068 21.015921 16.657134 - A03C 1.688784 22.341071 16.695090 - A04S -0.037594 22.730924 16.500945 - A05C -0.478147 21.486611 15.312553 - A06C 0.035889 20.218979 15.281995 - A07C -0.361874 19.293348 14.284716 - A08N -0.688775 18.507423 13.480974 - A09C -1.454825 21.887211 14.369843 - A10N -2.304201 22.210286 13.633525 - A11N 2.549203 23.318273 16.904514 - A12S 4.072705 22.686924 17.126670 - A13C 3.571677 21.034373 16.862677 - A14C 4.461975 19.947136 16.855644 - A15N 5.206842 19.046107 16.823994 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 61 (XXII_exp_N2_1_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_1_L - A01S 6.096066 16.193378 13.873750 - A02C 5.114264 17.636471 13.658991 - A03C 5.624548 18.961621 13.621035 - A04S 7.350926 19.351474 13.815180 - A05C 7.791479 18.107161 15.003572 - A06C 7.277443 16.839529 15.034130 - A07C 7.675206 15.913898 16.031409 - A08N 8.002107 15.127973 16.835151 - A09C 8.768157 18.507761 15.946282 - A10N 9.617533 18.830836 16.682600 - A11N 4.764129 19.938823 13.411611 - A12S 3.240627 19.307474 13.189455 - A13C 3.741655 17.654923 13.453448 - A14C 2.851357 16.567686 13.460481 - A15N 2.106490 15.666657 13.492131 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 62 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 14.235319 20.980572 7.810525 - A02C 13.253518 19.537479 7.595766 - A03C 13.763802 18.212329 7.557810 - A04S 15.490180 17.822477 7.751955 - A05C 15.930733 19.066790 8.940347 - A06C 15.416696 20.334422 8.970905 - A07C 15.814458 21.260053 9.968184 - A08N 16.141359 22.045978 10.771926 - A09C 16.907410 18.666191 9.883058 - A10N 17.756786 18.343116 10.619376 - A11N 12.903384 17.235127 7.348386 - A12S 11.379882 17.866475 7.126230 - A13C 11.880909 19.519026 7.390223 - A14C 10.990610 20.606263 7.397255 - A15N 10.245743 21.507291 7.428905 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY 0.0000000000 - PAIRWISE POLARIZATION ENERGY 0.0000000000 - PAIRWISE DISPERSION ENERGY 0.0000000000 - PAIRWISE EXCHANGE REPULSION ENERGY 0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY 0.0000000000 - - --------------------------------------------------------- - PAIRWISE ENERGY BETWEEN FRAGMENT 63 (XXII_exp_N2_2_L) AND LIGAND 0 (XXII_exp_N2_1_L) -fragment XXII_exp_N2_2_L - A01S 9.356520 24.360022 10.379150 - A02C 10.338321 22.916929 10.593909 - A03C 9.828037 21.591779 10.631865 - A04S 8.101659 21.201927 10.437720 - A05C 7.661106 22.446240 9.249328 - A06C 8.175143 23.713872 9.218770 - A07C 7.777381 24.639503 8.221491 - A08N 7.450480 25.425428 7.417749 - A09C 6.684429 22.045641 8.306617 - A10N 5.835053 21.722566 7.570299 - A11N 10.688455 20.614577 10.841289 - A12S 12.211957 21.245925 11.063445 - A13C 11.710930 22.898476 10.799452 - A14C 12.601229 23.985713 10.792420 - A15N 13.346096 24.886741 10.760770 - -fragment XXII_exp_N2_1_L - A01S -6.509027 -0.703872 4.315925 - A02C -5.527225 0.739221 4.530684 - A03C -6.037509 2.064371 4.568640 - A04S -7.763887 2.454224 4.374495 - A05C -8.204440 1.209911 3.186103 - A06C -7.690404 -0.057721 3.155545 - A07C -8.088167 -0.983352 2.158266 - A08N -8.415068 -1.769277 1.354524 - A09C -9.181118 1.610511 2.243393 - A10N -10.030494 1.933586 1.507075 - A11N -5.177090 3.041573 4.778064 - A12S -3.653588 2.410224 5.000220 - A13C -4.154616 0.757673 4.736227 - A14C -3.264318 -0.329564 4.729194 - A15N -2.519451 -1.230593 4.697544 - - PAIRWISE ENERGY COMPONENTS (ATOMIC UNITS) - PAIRWISE ELECTROSTATIC ENERGY -0.0000011294 - PAIRWISE POLARIZATION ENERGY -0.0000001393 - PAIRWISE DISPERSION ENERGY -0.0000036522 - PAIRWISE EXCHANGE REPULSION ENERGY -0.0000000000 - PAIRWISE CHARGE PENETRATION ENERGY 0.0000000000 - PAIRWISE TOTAL ENERGY -0.0000049209 - - --------------------------------------------------------- - LATTICE ENERGY COMPONENTS (ATOMIC UNITS) - LATTICE ELECTROSTATIC ENERGY -0.0314930783 - LATTICE POLARIZATION ENERGY -0.0042380789 - LATTICE DISPERSION ENERGY -0.0468152806 - LATTICE EXCHANGE REPULSION ENERGY 0.0053768383 - LATTICE CHARGE PENETRATION ENERGY 0.0000000000 - LATTICE TOTAL ENERGY -0.0771695994 - - - ------ PAIRWISE ENERGY ANALYSIS COMPLETED -------------- - - ENERGY COMPONENTS (ATOMIC UNITS) - - ELECTROSTATIC ENERGY -1.0077783658 - POLARIZATION ENERGY -0.1356187024 - DISPERSION ENERGY -1.4980889525 - EXCHANGE REPULSION ENERGY 0.1720592008 - POINT CHARGES ENERGY 0.0000000000 - CHARGE PENETRATION ENERGY 0.0000000000 - - TOTAL ENERGY -2.4694268199 - - -SINGLE POINT ENERGY JOB COMPLETED SUCCESSFULLY -WALL CLOCK TIME IS Thu Jun 16 15:17:14 2022 -TOTAL RUN TIME IS 0 SECONDS From 5d98aa5ee4073305228f234356a0af77f6a745a9 Mon Sep 17 00:00:00 2001 From: "Slipchenko, Lyudmila V" Date: Sun, 21 Sep 2025 00:35:03 -0400 Subject: [PATCH 08/12] bug fix --- efpmd/src/main.c | 3 +- .../__pycache__/__init__.cpython-312.pyc | Bin 761 -> 761 bytes .../__pycache__/wrapper.cpython-312.pyc | Bin 78536 -> 78633 bytes lib/pylibefp/tests/test_efpefp_new.py | 58 ++++++++++++++++++ lib/pylibefp/wrapper.py | 2 +- python/py.sh | 2 +- .../__pycache__/libefp2py.cpython-312.pyc | Bin 0 -> 5023 bytes .../__pycache__/systems.cpython-312.pyc | Bin 0 -> 11315 bytes tests/torch_efp_2.in | 1 - 9 files changed, 62 insertions(+), 4 deletions(-) create mode 100644 lib/pylibefp/tests/test_efpefp_new.py create mode 100644 tests/pytests/__pycache__/libefp2py.cpython-312.pyc create mode 100644 tests/pytests/__pycache__/systems.cpython-312.pyc diff --git a/efpmd/src/main.c b/efpmd/src/main.c index d08a10e0..60323a71 100644 --- a/efpmd/src/main.c +++ b/efpmd/src/main.c @@ -442,7 +442,7 @@ static void state_init(struct state *state, const struct cfg *cfg, const struct state->energy = 0; state->grad = xcalloc(sys->n_frags * 6 + sys->n_charges * 3, sizeof(double)); state->ff = NULL; - state->torch = NULL; + state->torch = NULL; state->torch_grad = NULL; if (cfg_get_bool(cfg, "enable_ff")) { @@ -469,6 +469,7 @@ static void state_init(struct state *state, const struct cfg *cfg, const struct // initiate torch state #ifdef TORCH_SWITCH if (cfg_get_bool(cfg, "enable_torch")) { + check_fail(efp_get_frag_count(state->efp, &nfrag)); if (cfg_get_int(cfg, "special_fragment") < 0 || cfg_get_int(cfg, "special_fragment") > nfrag-1) error("do not know for which fragment to compute torch: set special_fragment"); diff --git a/lib/pylibefp/__pycache__/__init__.cpython-312.pyc b/lib/pylibefp/__pycache__/__init__.cpython-312.pyc index 2c667ac3e0a4603e41c1bb013590ad6c22dea38c..0b4b72999f0ae22041022be5b6ec6ea6b2e1e164 100644 GIT binary patch delta 19 Zcmey#`jeIGG%qg~0}xnNZ{&K<1OPds1y%q6 delta 19 Zcmey#`jeIGG%qg~0}!0{-^lfz2>?7Z1-t+N diff --git a/lib/pylibefp/__pycache__/wrapper.cpython-312.pyc b/lib/pylibefp/__pycache__/wrapper.cpython-312.pyc index b47c816cec938de5670e32ea0e7ed11c0160c698..917af6bc46f15cdcbed4611f7c927181156c322c 100644 GIT binary patch delta 380 zcmX@{lx5{J7QWNGyj%=GU|D@WSZ;E+a1!I=$?t?aC!ZDJoZKMd z%g8nPoQNkgcM8vBDN%Wl=w>I;Rz_yNEW^o(0>YE;iYYL1PyQ#SJo&ho>|{G}QAzGv z!8*Yn{}eD?&REV+!5qm@&Zx=1IY&H;)vU@uzc{%lu_QS|KRq)isVKE1L%$%gG^aRQ zKc_gppfV>jNgs$)(+c#{iW1X-%v%gqx|924)HgHA$}lnZOqP=`=6@g{Je_MI*9B?c zD*}EW_%=_L7iJRE=J%3jIwj5N&BuC5MZues^)x4|H{axUD&ozT6}MkjWc(@s0Ij`o AH~;_u delta 299 zcmZ4ajOD~r7QWNGyj%=GaN7TT2B+Xgz8iv!4U?Y>rpRAlV5nuQVM}4k)?i>Ls;gnC zVNGLlVTdgQinFIMPrm3NI=NoRoGFDB%zQ6oBgnRz5o8ntLkfEpHv>Zr$K-pW8e%X( zMur}17KWY*Aa1K+ncV0jGWme8{N%O5NsN~!3y5?wa!j5j5;{3rlymYA5l3dO6z<73 zqVkL!n`1167)>Fa?UKXsUELgp4C;O|4H=8JJH&J5zDgXcyXHh=@ diff --git a/lib/pylibefp/tests/test_efpefp_new.py b/lib/pylibefp/tests/test_efpefp_new.py new file mode 100644 index 00000000..850ae8e0 --- /dev/null +++ b/lib/pylibefp/tests/test_efpefp_new.py @@ -0,0 +1,58 @@ +import libefp2py +import pylibefp +from qcelemental.testing import compare, compare_values +import pprint + + +b2a = 0.529177 +a2b = 1.0 / b2a + +def frag_setup(test_name): + # coordinates in Bohr + coord_type, frags, frag_coords, efp_options, if_gradient, ref_energy, periodic_box = libefp2py.read_libefp_input(test_name) + #print(frag_coords) + + efp = pylibefp.core.efp() + efp.add_potential(frags) + efp.add_fragment(frags) + for i in range(len(frags)): + efp.set_frag_coordinates(i, coord_type, frag_coords[i]) + efp.prepare() + + efp.set_opts(efp_options) + if periodic_box: + #print('box1', periodic_box) + efp.set_periodic_box(periodic_box) + #print('box2', efp.get_periodic_box()) + + + + #print(frag_coords) + #pprint.pprint(efp_options) + efp.compute(do_gradient = if_gradient) + ene = efp.get_energy() + + if 'enable_pairwise' in efp_options.keys(): + if efp_options['enable_pairwise'] in [True, 'true', 1]: + efp.print_pairwise_energies() + + print(efp.energy_summary()) + if if_gradient: + print(efp.gradient_summary()) + if ref_energy != 0.0: + assert compare_values(ref_energy, ene['total'], atol=1.e-5, return_message=True), 'FAILED' + +##### +if __name__ == '__main__': + files = ['atom_coord.in', 'atom_coord_2.in', 'grad_1.in', 'lj_1.in', 'lj_2.in', + 'pairwise_0.in', 'pairwise_1.in', 'pairwise_2.in', 'pairwise_x.in', 'pbc_1.in', 'pbc_2.in', + 'reduced.in', 'spec_frag_0.in', 'spec_frag_1.in', 'spec_frag_2.in', 'spec_frag_base.in', 'spec_frag_ref.in', + 'symm_1.in', 'symm_2.in', 'symm_2full.in', 'symm_2pw.in'] + + # running for all tests in files list + #for f in files: + # print(f'\nComputing {f}...') + # frag_setup('../'+f) + + # single test execution + frag_setup('../symm_2pw.in') diff --git a/lib/pylibefp/wrapper.py b/lib/pylibefp/wrapper.py index 26401f0c..754839c8 100644 --- a/lib/pylibefp/wrapper.py +++ b/lib/pylibefp/wrapper.py @@ -143,7 +143,7 @@ def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): for lst in [paths, library_paths]: for spth in '/Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib;/Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases'.split(';'): lst.append(spth) - #lst.append('/scratch/gilbreth/paulsk/backup/branch_pylib/libefp/fraglib') + lst.append('/scratch/gilbreth/paulsk/ls_pylib/libefp/fraglib') #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib') #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib/databases') #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') diff --git a/python/py.sh b/python/py.sh index a1f4ce40..e515b664 100755 --- a/python/py.sh +++ b/python/py.sh @@ -2,7 +2,7 @@ rm -rf build mkdir build cd build -cmake -DCMAKE_INSTALL_PREFIX=$LIBEFP_DIR/installed -DCMAKE_PREFIX_PATH="$CONDA_PREFIX;$LIBEFP_DIR/installed" .. +cmake -DCMAKE_INSTALL_PREFIX=$LIBEFP_DIR -DCMAKE_PREFIX_PATH="$CONDA_PREFIX;$LIBEFP_DIR" .. make VERBOSE=1 make install diff --git a/tests/pytests/__pycache__/libefp2py.cpython-312.pyc b/tests/pytests/__pycache__/libefp2py.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..77b386f0cb676591ea0123f7c60f94d01fcfde41 GIT binary patch literal 5023 zcmb_fT~Hg>6~2pBLej1*305Eh5)u;sHUx^}B*b=!MQVecX(ptO>v2_~yAT;6DZ3&z zWR)<}Jm8KWWc$IQo~h+YW?}}<6uRi3k!BqUjW1vwtfp;vk7Sf=Z-ax2Ca_Yi#oD^F zmBP*dw_^@)CD}i*j5*C}&2#j%d`U*kX&A^bsm(4i4h;j^fN7E{QiO5ZwHtgXlQU3J z@L!|Zs{Oy%s?}^cUuZ8*4dc=C_cZoC!B*+Knm8?sinb zl{^9i8ng0s|vW2N^scNMz58a(Q z18;?NwZux*S_kGN?yS9JV{mw^vO{*+mOw@(}ZTWkv6%!LbgNY)bfD748{+*-oGd%Oww=y-lU zCC5&+xfp;RT|NshXCJqc^Rv}UDN5+GU|*uQ==i+=!{ zX2BwvAq(VtqelDQ(B81*dn3+~IquZ@2a)!crF~_oi%61Aq9r|ia~LF(R5@1p0rI0B zBvR+#w4Oo~{DHS8=XIyhIjX(;y>V5X{~i6W^~2+ZGHo1I4ar0_o)X_JK0!#OgvVr6 zH40PlP-;5KtMs@K#;PunOsVw8yeO&_lUUV{r+6_nqUs}wgn%ED&n{J;;)O|3HH%3; z5-P|v4o@akb21SNVIle{FQ^ti9v+SHp~zG!F*XLu=f+C1>AX-9%|)%`Xhda`ybw*` zXe2b6IRBU?p3DM27UJW)Fg~psV$tz%9IMt6BpemaMMYjUiqn&md`g&BZ6u;-I2IZc z!sC;CJf)h*nl@GSNdZ!znzSKA92(1N`fw@%J2HOC#}bifYWgwx(0)w5uT{hO>6!3o z@BQ#wai50;S}!`c*r2l$M}eFOQsF4n^dVh~jC=FzZZJ246U=aL%j4 zmxiyLm>X1Fp6n;{&bgrt17fSmVphuc$&ClL>Nx7MJ=xwXr!tgcbFJFEvdx>bKeYKb zbf~5g!eO1+KACCU9ETMeVB0$c017-q&sqFAOi9Sn|nx-<})J($|@J z=9(oJmYr=f+rG}!7L2y-z0E8zi(8W}1}F?%Vwf{fh^e>~d#6 zELvr@O(`QgZ}Iuyx5Iaa@1D5llly`zU4wGlV9|!c)MNuP<55~WZhe^V`?mj1|J{T4 z?D9{Jtn3TQtwB&@WHzvAZJRh0#+4nB8K2^CT|Is2^p!KYp4|H@j#iSWhEyJt<8$deZ79Z{+c`YNlsXCbz}w< z&b!LB%3SL${mt;A@gdg(*t$+qrDC!-A+oD|ZfKpU&ZK0fel5^?lirfCmB5>@6Qj)f z6s93Z%S=Go*K_;y!s*2`OFikSop<-$qvYOqR=SQ5e22_-Zl<&Io6l~1_EkFnzTA4CoJ5Ux+0XI; zx$*Tie@ia4MQO!P>RKtYUb4NKEO(!AFE{lq1@AZgbStNv?reD8ICo5O)z1wnR#*1q zeQV&RIsfrW+o3h!v2=4_{_|U6e*faks_QMtVF5q{*Y(Qz%4?>~z+dYd=6R*omwW%x z7Yq7Lp}~Fq=={-ZLzzMH?BxC0y^6DG6*A*&ztx=A=fii5i``3px#Qpi=b@Ke0>dAz z)b4vp^pAw|7w4f3H>&I3@E}`V_9H?j&XwJp`((aL=GuXXuy^CU@tQfKU#qUkOkH^^ zXTN-SjdLy69lqyy!2RqI=>WfX63Tg2xn`Mb{+hoznD;Fl{VI`<$SrR^fu=$~UU@5;t{#q9%WP&U>bv!EhWS*~g>?2Cs#{V+P3}89NNk2FcWH zl+0n{rUHYZ*(3>f8=B3M1*jldfm$RRP^)AIYLgs5?UECyLn;93>@n83G6>vA(y=F= z6uvwr_AB)ah#@7QP;8eO-oaKQ)*c_uTbFIuaEigO&N3>Z2KT7nEzoYsL`++Zn+@x1 zzHYY9anRBG=E#>26+Ias?kZHv-yG)Tj}rnEWM6H8mLP%MTmt*ZK3^xqT< z)0n@br&|j8uUm2TvgJ4UmC9RUKZ~|>2779MP`lU5y5s?C`}2aJHm&A zN*42`1n-WU4hd6PtTH83KECQ{`|i5ECA~{u2)$DOV!K>&Ahv(<2n=f0yVY#@tTPl=_bYOb`dlFZ+n2VQiaj#S=mFd7P2W&f6wt|aK=HgSN zsZym5Y#(4xM*mAgbsXNc2DX1U~M7 z8aOKUzk3j$(+P?jQe~_RP@HQu@9&BJR`#4osQI33`5{rwGRYaNjnuK{j7U+|6Q!6l zpe7Gy%Nt~(R9g|qpu|)2i?WOb+5FR@$~Y|b>~coHroju3OD0N>EV9}oOMn(a1}z7o zN-jDD!o$+1mii%DirF z5YGX4&I!aT06f%U7 ztZ|G|F-*@ON!vngb&)o(WJk2lLP%Gls0`B9Xr#R>9;#TVL;n!TpMO2Y|KTpL+`lV&h4b)lWRa|UB@WP^ zi)81rKMtO4Dv`m`LX-nDc-C%P*gM1Nt}B z|KV)wwm&2klt~_$bh9phn^56C5>=i;nH+!isRLCnyq{3@;4zUveIH%_kVmGMD7e2x z1_~-wsqizAApE2CeF^f;GuTs`Oa`9Ao~9BcQhb;E_A?(R$giL+D=!^P5EvUAAd%eg z&|_W2cO}IP&L@mP6RTQIkk0-yy(ix{%EbG-hL1OSKTi;)NS{cs&qv=g%jAI$WZEf` z`>(B}p=76}{Yj1b7!6kKI#fyMAOPSPXLD7Lg-EY1$%36Z?K0;dU<)+{!a zu<9DudTw62*BBtUevUs2bHHY_Ws;mhg9zHohP%96Ry%tpJBVLoC(tXC+t@;c!pf5U zDxvi0Sn2Q@OOPH|=Jw|w6q$WeW2O}VPbULO8{1>3N2{u;#+oX1bSWfX1aIuKbDAna zour+08oN=Br(&vk&{E-pPNXn;;+1=;ckn(qraCWDB8xV6Nj~Vatb*KFC z5zctZ*NvQaoyXN9 ztGuxtl2ZpZvy1Y?#sjdP!!@&M^28RTNs^$W-Nj&!@Z-rJrulrYQO=fV~MThBU~0@xmIymMnu)rDQDG2T9|E`GcVq1}4sa+=0?=fa*O zd8I-f<2_wtymMjWcSZ4ib}M=gG&P$zOooiTLa3T==$$|N3kvnVbU#lCq>z6$oF2&)cS;44i^I+>L*0$%6nYfrLlJS5%zH=dM0=5nC#@+>@rG!6m&CO>kkKde4Ij#Kh`gg77nP9@U zTkQpNhsiBVe!KCS3OpY=?MU-DJ93;R;_3z~QgZ9qZiN~ewTQ#wx0?t2Sj9T9@m`I$ zcfA}opAWx?NaZ@PD*&7S353Tg=jyUa@SBJZZ1e~5z7GDUk?9<^TdIn;>49{uqn1L&Y^1 zV#f$3+b+f^J4>v_5Oa*ogOF;yz-1al;F%dvq$OUgFf%5bo@Mw-RL&*nIZ;F`N=%h& zPJk}Qbo8I7NtLob`B_WXK%u+gjokw(Tw8wLnveX<@6 Date: Sun, 21 Sep 2025 00:35:53 -0400 Subject: [PATCH 09/12] fix --- comp.log.May28 | 407 ------------------------------------------------- 1 file changed, 407 deletions(-) delete mode 100644 comp.log.May28 diff --git a/comp.log.May28 b/comp.log.May28 deleted file mode 100644 index 72c57bfe..00000000 --- a/comp.log.May28 +++ /dev/null @@ -1,407 +0,0 @@ -Building with Torch integration... -TORCH_DIR = /Users/lyuda/LIBEFP/LIBTORCH/libtorch --- The C compiler identification is AppleClang 14.0.3.14030022 --- The CXX compiler identification is AppleClang 14.0.3.14030022 --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working C compiler: /Library/Developer/CommandLineTools/usr/bin/cc - skipped --- Detecting C compile features --- Detecting C compile features - done --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Check for working CXX compiler: /Library/Developer/CommandLineTools/usr/bin/c++ - skipped --- Detecting CXX compile features --- Detecting CXX compile features - done --- Setting (unspecified) option CMAKE_BUILD_TYPE: Release --- Setting (unspecified) option BUILD_SHARED_LIBS: OFF --- Setting (unspecified) option BUILD_FPIC: ON --- Setting (unspecified) option LIBEFP_ENABLE_OPENMP: OFF --- Setting (unspecified) option ENABLE_GENERIC: OFF --- Setting (unspecified) option ENABLE_XHOST: ON --- Performing Test CMAKE_C_FLAGS [-march=native] - Success, Appending --- Performing Test CMAKE_CXX_FLAGS [-march=native] - Success, Appending --- Setting (unspecified) option FRAGLIB_UNDERSCORE_L: ON --- Setting (unspecified) option FRAGLIB_DEEP: ON --- Setting (unspecified) option INSTALL_DEVEL_HEADERS: OFF --- Setting (unspecified) option LIBEFP_CMAKECONFIG_INSTALL_DIR: share/cmake/libefp --- Setting (unspecified) option LIBEFP_ENABLE_EFPMD: ON --- Setting (unspecified) option PYMOD_INSTALL_LIBDIR: / --- Setting (unspecified) option LIBEFP_ENABLE_PYTHON: OFF --- Performing Test CMAKE_HAVE_LIBC_PTHREAD --- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success --- Found Threads: TRUE --- LAPACK detected. --- Found TargetLAPACK: Found LAPACK: /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/Accelerate.framework;-lm;-ldl --- The Fortran compiler identification is GNU 14.2.0 --- Checking whether Fortran compiler has -isysroot --- Checking whether Fortran compiler has -isysroot - yes --- Checking whether Fortran compiler supports OSX deployment target flag --- Checking whether Fortran compiler supports OSX deployment target flag - yes --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Check for working Fortran compiler: /opt/homebrew/bin/gfortran - skipped --- Found Torch: /Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib/libtorch.dylib --- Torch integration enabled. -TORCH_INSTALL_PREFIX = /Users/lyuda/LIBEFP/LIBTORCH/libtorch -TORCH_LIBRARIES = torch;torch_library;/Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib/libc10.dylib;/Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib/libkineto.a -TORCH_INCLUDE_DIRS = /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include;/Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include --- Configuring done (1.4s) --- Generating done (0.0s) --- Build files have been written to: /Users/lyuda/LIBEFP/libefp_skp_may2025/build -/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -S/Users/lyuda/LIBEFP/libefp_skp_may2025 -B/Users/lyuda/LIBEFP/libefp_skp_may2025/build --check-build-system CMakeFiles/Makefile.cmake 0 -/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_progress_start /Users/lyuda/LIBEFP/libefp_skp_may2025/build/CMakeFiles /Users/lyuda/LIBEFP/libefp_skp_may2025/build//CMakeFiles/progress.marks -/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/Makefile2 all -/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/efp.dir/build.make CMakeFiles/efp.dir/depend -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/CMakeFiles/efp.dir/DependInfo.cmake "--color=" -/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/efp.dir/build.make CMakeFiles/efp.dir/build -[ 2%] Building C object CMakeFiles/efp.dir/src/aidisp.c.o -/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/aidisp.c.o -MF CMakeFiles/efp.dir/src/aidisp.c.o.d -o CMakeFiles/efp.dir/src/aidisp.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/aidisp.c -[ 5%] Building C object CMakeFiles/efp.dir/src/balance.c.o -/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/balance.c.o -MF CMakeFiles/efp.dir/src/balance.c.o.d -o CMakeFiles/efp.dir/src/balance.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/balance.c -[ 7%] Building C object CMakeFiles/efp.dir/src/clapack.c.o -/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/clapack.c.o -MF CMakeFiles/efp.dir/src/clapack.c.o.d -o CMakeFiles/efp.dir/src/clapack.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/clapack.c -[ 10%] Building C object CMakeFiles/efp.dir/src/disp.c.o -/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/disp.c.o -MF CMakeFiles/efp.dir/src/disp.c.o.d -o CMakeFiles/efp.dir/src/disp.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/disp.c -[ 12%] Building C object CMakeFiles/efp.dir/src/efp.c.o -/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/efp.c.o -MF CMakeFiles/efp.dir/src/efp.c.o.d -o CMakeFiles/efp.dir/src/efp.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/efp.c -[ 15%] Building C object CMakeFiles/efp.dir/src/elec.c.o -/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/elec.c.o -MF CMakeFiles/efp.dir/src/elec.c.o.d -o CMakeFiles/efp.dir/src/elec.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/elec.c -[ 17%] Building C object CMakeFiles/efp.dir/src/electerms.c.o -/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/electerms.c.o -MF CMakeFiles/efp.dir/src/electerms.c.o.d -o CMakeFiles/efp.dir/src/electerms.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/electerms.c -[ 20%] Building C object CMakeFiles/efp.dir/src/int.c.o -/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/int.c.o -MF CMakeFiles/efp.dir/src/int.c.o.d -o CMakeFiles/efp.dir/src/int.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/int.c -[ 22%] Building C object CMakeFiles/efp.dir/src/log.c.o -/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/log.c.o -MF CMakeFiles/efp.dir/src/log.c.o.d -o CMakeFiles/efp.dir/src/log.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/log.c -[ 25%] Building C object CMakeFiles/efp.dir/src/parse.c.o -/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/parse.c.o -MF CMakeFiles/efp.dir/src/parse.c.o.d -o CMakeFiles/efp.dir/src/parse.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/parse.c -[ 27%] Building C object CMakeFiles/efp.dir/src/pol.c.o -/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/pol.c.o -MF CMakeFiles/efp.dir/src/pol.c.o.d -o CMakeFiles/efp.dir/src/pol.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/pol.c -[ 30%] Building C object CMakeFiles/efp.dir/src/poldirect.c.o -/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/poldirect.c.o -MF CMakeFiles/efp.dir/src/poldirect.c.o.d -o CMakeFiles/efp.dir/src/poldirect.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/poldirect.c -[ 32%] Building C object CMakeFiles/efp.dir/src/stream.c.o -/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/stream.c.o -MF CMakeFiles/efp.dir/src/stream.c.o.d -o CMakeFiles/efp.dir/src/stream.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/stream.c -[ 35%] Building C object CMakeFiles/efp.dir/src/swf.c.o -/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/swf.c.o -MF CMakeFiles/efp.dir/src/swf.c.o.d -o CMakeFiles/efp.dir/src/swf.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/swf.c -[ 37%] Building C object CMakeFiles/efp.dir/src/util.c.o -/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/util.c.o -MF CMakeFiles/efp.dir/src/util.c.o.d -o CMakeFiles/efp.dir/src/util.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/util.c -[ 40%] Building C object CMakeFiles/efp.dir/src/xr.c.o -/Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT CMakeFiles/efp.dir/src/xr.c.o -MF CMakeFiles/efp.dir/src/xr.c.o.d -o CMakeFiles/efp.dir/src/xr.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/src/xr.c -[ 42%] Linking C static library libefp.a -/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -P CMakeFiles/efp.dir/cmake_clean_target.cmake -/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_link_script CMakeFiles/efp.dir/link.txt --verbose=1 -/Library/Developer/CommandLineTools/usr/bin/ar qc libefp.a CMakeFiles/efp.dir/src/aidisp.c.o CMakeFiles/efp.dir/src/balance.c.o CMakeFiles/efp.dir/src/clapack.c.o CMakeFiles/efp.dir/src/disp.c.o CMakeFiles/efp.dir/src/efp.c.o CMakeFiles/efp.dir/src/elec.c.o CMakeFiles/efp.dir/src/electerms.c.o CMakeFiles/efp.dir/src/int.c.o CMakeFiles/efp.dir/src/log.c.o CMakeFiles/efp.dir/src/parse.c.o CMakeFiles/efp.dir/src/pol.c.o CMakeFiles/efp.dir/src/poldirect.c.o CMakeFiles/efp.dir/src/stream.c.o CMakeFiles/efp.dir/src/swf.c.o CMakeFiles/efp.dir/src/util.c.o CMakeFiles/efp.dir/src/xr.c.o -/Library/Developer/CommandLineTools/usr/bin/ranlib libefp.a -[ 42%] Built target efp -/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/libff.dir/build.make efpmd/CMakeFiles/libff.dir/depend -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/libff.dir/DependInfo.cmake "--color=" -/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/libff.dir/build.make efpmd/CMakeFiles/libff.dir/build -[ 45%] Building C object efpmd/CMakeFiles/libff.dir/libff/ff.c.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT efpmd/CMakeFiles/libff.dir/libff/ff.c.o -MF CMakeFiles/libff.dir/libff/ff.c.o.d -o CMakeFiles/libff.dir/libff/ff.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff/ff.c -[ 45%] Built target libff -/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/libopt.dir/build.make efpmd/CMakeFiles/libopt.dir/depend -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/libopt.dir/DependInfo.cmake "--color=" -Dependee "/Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/libopt.dir/DependInfo.cmake" is newer than depender "/Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/libopt.dir/depend.internal". -Dependee "/Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/libopt.dir/depend.internal". -Scanning dependencies of target libopt -/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/libopt.dir/build.make efpmd/CMakeFiles/libopt.dir/build -[ 47%] Building C object efpmd/CMakeFiles/libopt.dir/libopt/opt.c.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DTORCH_SWITCH -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -MD -MT efpmd/CMakeFiles/libopt.dir/libopt/opt.c.o -MF CMakeFiles/libopt.dir/libopt/opt.c.o.d -o CMakeFiles/libopt.dir/libopt/opt.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt/opt.c -[ 50%] Building Fortran object efpmd/CMakeFiles/libopt.dir/libopt/blas.f.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /opt/homebrew/bin/gfortran -DTORCH_SWITCH -O3 -DNDEBUG -O3 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt/blas.f -o CMakeFiles/libopt.dir/libopt/blas.f.o -[ 52%] Building Fortran object efpmd/CMakeFiles/libopt.dir/libopt/lbfgsb.f.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /opt/homebrew/bin/gfortran -DTORCH_SWITCH -O3 -DNDEBUG -O3 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt/lbfgsb.f -o CMakeFiles/libopt.dir/libopt/lbfgsb.f.o -[ 55%] Building Fortran object efpmd/CMakeFiles/libopt.dir/libopt/linpack.f.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /opt/homebrew/bin/gfortran -DTORCH_SWITCH -O3 -DNDEBUG -O3 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt/linpack.f -o CMakeFiles/libopt.dir/libopt/linpack.f.o -[ 57%] Building Fortran object efpmd/CMakeFiles/libopt.dir/libopt/timer.f.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /opt/homebrew/bin/gfortran -DTORCH_SWITCH -O3 -DNDEBUG -O3 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIC -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt/timer.f -o CMakeFiles/libopt.dir/libopt/timer.f.o -[ 57%] Built target libopt -/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/ctorch.dir/build.make efpmd/CMakeFiles/ctorch.dir/depend -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/ctorch.dir/DependInfo.cmake "--color=" -/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/ctorch.dir/build.make efpmd/CMakeFiles/ctorch.dir/build -[ 60%] Building CXX object efpmd/CMakeFiles/ctorch.dir/torch/c_libtorch.cc.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/c++ -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -std=gnu++17 -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -MD -MT efpmd/CMakeFiles/ctorch.dir/torch/c_libtorch.cc.o -MF CMakeFiles/ctorch.dir/torch/c_libtorch.cc.o.d -o CMakeFiles/ctorch.dir/torch/c_libtorch.cc.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/torch/c_libtorch.cc -[ 60%] Built target ctorch -/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/efpmd.dir/build.make efpmd/CMakeFiles/efpmd.dir/depend -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/efpmd.dir/DependInfo.cmake "--color=" -Dependee "/Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/efpmd.dir/DependInfo.cmake" is newer than depender "/Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/efpmd.dir/depend.internal". -Dependee "/Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/efpmd.dir/depend.internal". -Scanning dependencies of target efpmd -/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/efpmd.dir/build.make efpmd/CMakeFiles/efpmd.dir/build -[ 62%] Building C object efpmd/CMakeFiles/efpmd.dir/src/cfg.c.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/cfg.c.o -MF CMakeFiles/efpmd.dir/src/cfg.c.o.d -o CMakeFiles/efpmd.dir/src/cfg.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/cfg.c -[ 65%] Building C object efpmd/CMakeFiles/efpmd.dir/src/common.c.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/common.c.o -MF CMakeFiles/efpmd.dir/src/common.c.o.d -o CMakeFiles/efpmd.dir/src/common.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/common.c -[ 67%] Building C object efpmd/CMakeFiles/efpmd.dir/src/efield.c.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/efield.c.o -MF CMakeFiles/efpmd.dir/src/efield.c.o.d -o CMakeFiles/efpmd.dir/src/efield.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/efield.c -[ 70%] Building C object efpmd/CMakeFiles/efpmd.dir/src/energy.c.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/energy.c.o -MF CMakeFiles/efpmd.dir/src/energy.c.o.d -o CMakeFiles/efpmd.dir/src/energy.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/energy.c -[ 72%] Building C object efpmd/CMakeFiles/efpmd.dir/src/grad.c.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/grad.c.o -MF CMakeFiles/efpmd.dir/src/grad.c.o.d -o CMakeFiles/efpmd.dir/src/grad.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/grad.c -[ 75%] Building C object efpmd/CMakeFiles/efpmd.dir/src/gtest.c.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/gtest.c.o -MF CMakeFiles/efpmd.dir/src/gtest.c.o.d -o CMakeFiles/efpmd.dir/src/gtest.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/gtest.c -[ 77%] Building C object efpmd/CMakeFiles/efpmd.dir/src/hess.c.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/hess.c.o -MF CMakeFiles/efpmd.dir/src/hess.c.o.d -o CMakeFiles/efpmd.dir/src/hess.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/hess.c -[ 80%] Building C object efpmd/CMakeFiles/efpmd.dir/src/main.c.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/main.c.o -MF CMakeFiles/efpmd.dir/src/main.c.o.d -o CMakeFiles/efpmd.dir/src/main.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/main.c -[ 82%] Building C object efpmd/CMakeFiles/efpmd.dir/src/md.c.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/md.c.o -MF CMakeFiles/efpmd.dir/src/md.c.o.d -o CMakeFiles/efpmd.dir/src/md.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/md.c -[ 85%] Building C object efpmd/CMakeFiles/efpmd.dir/src/msg.c.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/msg.c.o -MF CMakeFiles/efpmd.dir/src/msg.c.o.d -o CMakeFiles/efpmd.dir/src/msg.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/msg.c -[ 87%] Building C object efpmd/CMakeFiles/efpmd.dir/src/opt.c.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/opt.c.o -MF CMakeFiles/efpmd.dir/src/opt.c.o.d -o CMakeFiles/efpmd.dir/src/opt.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/opt.c -[ 90%] Building C object efpmd/CMakeFiles/efpmd.dir/src/parse.c.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/parse.c.o -MF CMakeFiles/efpmd.dir/src/parse.c.o.d -o CMakeFiles/efpmd.dir/src/parse.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/parse.c -[ 92%] Building C object efpmd/CMakeFiles/efpmd.dir/src/rand.c.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/rand.c.o -MF CMakeFiles/efpmd.dir/src/rand.c.o.d -o CMakeFiles/efpmd.dir/src/rand.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/rand.c -[ 95%] Building C object efpmd/CMakeFiles/efpmd.dir/src/sp.c.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/sp.c.o -MF CMakeFiles/efpmd.dir/src/sp.c.o.d -o CMakeFiles/efpmd.dir/src/sp.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/sp.c -[ 97%] Building C object efpmd/CMakeFiles/efpmd.dir/src/torch.c.o -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /Library/Developer/CommandLineTools/usr/bin/cc -DFRAGLIB_PATH=\"/../fraglib\" -DML_PATH=\"../nnlib/\" -DTORCH_SWITCH -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -DUSING_libefp -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libff -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/libopt -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/../src -I/Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/ctorch -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include -isystem /Users/lyuda/LIBEFP/LIBTORCH/libtorch/include/torch/csrc/api/include -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -fPIE -MD -MT efpmd/CMakeFiles/efpmd.dir/src/torch.c.o -MF CMakeFiles/efpmd.dir/src/torch.c.o.d -o CMakeFiles/efpmd.dir/src/torch.c.o -c /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd/src/torch.c -[100%] Linking CXX executable efpmd -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_link_script CMakeFiles/efpmd.dir/link.txt --verbose=1 -/Library/Developer/CommandLineTools/usr/bin/c++ -march=native -O3 -DNDEBUG -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk -mmacosx-version-min=13.2 -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/efpmd.dir/src/cfg.c.o CMakeFiles/efpmd.dir/src/common.c.o CMakeFiles/efpmd.dir/src/efield.c.o CMakeFiles/efpmd.dir/src/energy.c.o CMakeFiles/efpmd.dir/src/grad.c.o CMakeFiles/efpmd.dir/src/gtest.c.o CMakeFiles/efpmd.dir/src/hess.c.o CMakeFiles/efpmd.dir/src/main.c.o CMakeFiles/efpmd.dir/src/md.c.o CMakeFiles/efpmd.dir/src/msg.c.o CMakeFiles/efpmd.dir/src/opt.c.o CMakeFiles/efpmd.dir/src/parse.c.o CMakeFiles/efpmd.dir/src/rand.c.o CMakeFiles/efpmd.dir/src/sp.c.o CMakeFiles/efpmd.dir/src/torch.c.o CMakeFiles/ctorch.dir/torch/c_libtorch.cc.o CMakeFiles/libff.dir/libff/ff.c.o CMakeFiles/libopt.dir/libopt/opt.c.o CMakeFiles/libopt.dir/libopt/blas.f.o CMakeFiles/libopt.dir/libopt/lbfgsb.f.o CMakeFiles/libopt.dir/libopt/linpack.f.o CMakeFiles/libopt.dir/libopt/timer.f.o -o efpmd -L/opt/homebrew/Cellar/gcc/14.2.0_1/lib/gcc/current/gcc/aarch64-apple-darwin22/14 -L/opt/homebrew/Cellar/gcc/14.2.0_1/lib/gcc/current/gcc -L/opt/homebrew/Cellar/gcc/14.2.0_1/lib/gcc/current -Wl,-rpath,/Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib ../libefp.a /Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib/libc10.dylib /Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib/libkineto.a -framework Accelerate -lm -ldl /Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib/libtorch.dylib /Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib/libtorch_cpu.dylib /Users/lyuda/LIBEFP/LIBTORCH/libtorch/lib/libc10.dylib -lemutls_w -lheapt_w -lgfortran -lgcc -lquadmath -ld: warning: could not create compact unwind for _dcopy_: does not use standard frame -ld: warning: ld: warning: could not create compact unwind for _prn1lb_.part.0: does not use standard frame -ld: warning: could not create compact unwind for _prn3lb_: does not use standard frame -ld: warning: could not create compact unwind for _matupd_: does not use standard frame -ld: warning: could not create compact unwind for _prn2lb_: does not use standard frame -ld: warning: could not create compact unwind for _dcsrch_: does not use standard frame -could not create compact unwind for _dtrsl_: does not use standard frame -ld: warning: could not create compact unwind for _lnsrlb_: does not use standard frame -ld: warning: could not create compact unwind for _subsm_: does not use standard frame -ld: warning: could not create compact unwind for _bmv_: does not use standard frame -ld: warning: could not create compact unwind for _formk_: does not use standard frame -ld: warning: could not create compact unwind for _freev_: does not use standard frame -ld: warning: could not create compact unwind for _cauchy_: does not use standard frame -ld: warning: could not create compact unwind for _lbacti_: does not use standard frame -ld: warning: could not create compact unwind for _mainlb_: does not use standard frame -ld: warning: could not create compact unwind for _setulb_: does not use standard frame -ld: warning: could not create compact unwind for _allocate_tramp_ctrl: does not use standard frame -ld: warning: could not create compact unwind for ___gcc_nested_func_ptr_created: does not use standard frame -ld: warning: could not create compact unwind for ___gcc_nested_func_ptr_deleted: does not use standard frame -ld: warning: could not create compact unwind for ___emutls_get_address: does not use standard frame -ld: warning: could not create compact unwind for ___powitf2: does not use standard frame -ld: warning: could not create compact unwind for ___multc3: does not use standard frame -ld: warning: could not create compact unwind for ___divtc3: does not use standard frame -ld: warning: could not create compact unwind for ___mulbitint3: registers 27 and 28 not saved contiguously in frame -ld: warning: could not create compact unwind for ___eprintf: does not use standard frame -ld: warning: could not create compact unwind for ___floattisf: does not use standard frame -ld: warning: could not create compact unwind for ___floattidf: does not use standard frame -ld: warning: could not create compact unwind for ___divmodbitint4: does not use standard frame -ld: warning: could not create compact unwind for ___bid32_to_binary32: register 20 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid64_to_binary32: register 26 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_to_binary32: register 26 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid64_to_binary64: register 20 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_to_binary64: register 26 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid64_to_binary80: registers 23 and 24 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid128_to_binary80: registers 23 and 24 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid128_to_binary128: register 26 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___binary64_to_bid32: registers 25 and 26 not saved contiguously in frame -ld: warning: could not create compact unwind for ___binary80_to_bid32: registers 25 and 26 not saved contiguously in frame -ld: warning: could not create compact unwind for ___binary80_to_bid64: registers 23 and 24 not saved contiguously in frame -ld: warning: could not create compact unwind for ___binary128_to_bid64: registers 23 and 24 not saved contiguously in frame -ld: warning: could not create compact unwind for ___binary32_to_bid128: registers 21 and 22 not saved contiguously in frame -ld: warning: could not create compact unwind for ___binary64_to_bid128: registers 27 and 28 not saved contiguously in frame -ld: warning: could not create compact unwind for ___binary80_to_bid128: registers 27 and 28 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid128_totalOrder: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for _add_and_round.constprop.0: does not use standard frame -ld: warning: could not create compact unwind for _bid128_ext_fma: does not use standard frame -ld: warning: could not create compact unwind for ___bid64qqq_fma: does not use standard frame -ld: warning: could not create compact unwind for ___bid_round128_19_38: registers 23 and 24 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid_round192_39_57: registers 27 and 28 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid_round256_58_76: registers 27 and 28 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid64_from_int64: does not use standard frame -ld: warning: could not create compact unwind for ___bid64_from_uint64: does not use standard frame -ld: warning: could not create compact unwind for ___bid128_add: registers 27 and 28 not saved contiguously in frame -ld: warning: could not create compact unwind for ___div_256_by_128: register 20 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid64dq_div: does not use standard frame -ld: warning: could not create compact unwind for ___bid64qd_div: does not use standard frame -ld: warning: could not create compact unwind for ___bid64qq_div: does not use standard frame -ld: warning: could not create compact unwind for ___div_256_by_128: register 20 saved somewhere other than in frame -ld: warning: could not create compact unwind for _handle_UF_128_rem.constprop.0.isra.0: register 26 saved somewhere other than in frame -ld: warning: could not create compact unwind for _handle_UF_128.constprop.0.isra.0: registers 25 and 26 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid128_div: does not use standard frame -ld: warning: could not create compact unwind for ___bid128dd_div: does not use standard frame -ld: warning: could not create compact unwind for ___bid128dq_div: does not use standard frame -ld: warning: could not create compact unwind for ___bid128qd_div: does not use standard frame -ld: warning: could not create compact unwind for ___bid128_quiet_greater: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_quiet_greater_equal: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_quiet_greater_unordered: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_quiet_less: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_quiet_less_equal: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_quiet_less_unordered: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_quiet_not_greater: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_quiet_not_less: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_signaling_greater: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_signaling_greater_equal: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_signaling_greater_unordered: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_signaling_less: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_signaling_less_equal: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_signaling_less_unordered: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_signaling_not_greater: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_signaling_not_less: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_to_bid32: registers 25 and 26 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid128_to_bid64: registers 25 and 26 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid128_to_int32_rnint: registers 21 and 22 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid128_to_int32_xrnint: registers 21 and 22 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid128_to_int32_floor: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_to_int32_xfloor: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_to_int32_ceil: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_to_int32_xceil: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_to_int32_int: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_to_int32_xint: registers 21 and 22 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid128_to_int32_xrninta: registers 21 and 22 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid128_to_int64_xrnint: registers 21 and 22 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid128_to_int64_xrninta: registers 21 and 22 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid128_to_uint32_rnint: registers 19 and 20 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid128_to_uint32_xrnint: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_to_uint32_floor: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_to_uint32_xfloor: registers 19 and 20 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid128_to_uint32_ceil: registers 19 and 20 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid128_to_uint32_xceil: registers 19 and 20 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid128_to_uint32_int: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_to_uint32_xint: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_to_uint32_xrninta: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_to_uint64_rnint: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_to_uint64_xrnint: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___bid128_to_uint64_xfloor: registers 19 and 20 not saved contiguously in frame -ld: warning: could not create compact unwind for ___bid128_to_uint64_xrninta: register 22 saved somewhere other than in frame -ld: warning: could not create compact unwind for ___divtf3: does not use standard frame -ld: warning: could not create compact unwind for ___multf3: does not use standard frame -ld: warning: could not create compact unwind for ___fixtfsi: does not use standard frame -ld: warning: could not create compact unwind for ___fixunstfsi: does not use standard frame -ld: warning: could not create compact unwind for ___fixtfdi: does not use standard frame -ld: warning: could not create compact unwind for ___fixunstfdi: does not use standard frame -ld: warning: could not create compact unwind for ___fixtfti: does not use standard frame -ld: warning: could not create compact unwind for ___fixunstfti: does not use standard frame -ld: warning: could not create compact unwind for ___floattitf: does not use standard frame -ld: warning: could not create compact unwind for ___floatuntitf: does not use standard frame -ld: warning: could not create compact unwind for ___fixsfbitint: does not use standard frame -ld: warning: could not create compact unwind for ___fixdfbitint: does not use standard frame -ld: warning: could not create compact unwind for ___trunctfsf2: does not use standard frame -ld: warning: could not create compact unwind for ___trunctfhf2: does not use standard frame -ld: warning: could not create compact unwind for ___trunctfbf2: does not use standard frame -ld: warning: could not create compact unwind for ___truncdfbf2: does not use standard frame -ld: warning: could not create compact unwind for ___truncsfbf2: does not use standard frame -ld: warning: could not create compact unwind for ___trunchfbf2: does not use standard frame -ld: warning: could not create compact unwind for ___fixhfti: does not use standard frame -ld: warning: could not create compact unwind for ___fixunshfti: does not use standard frame -ld: warning: could not create compact unwind for ___floatdibf: does not use standard frame -ld: warning: could not create compact unwind for ___floatundibf: does not use standard frame -ld: warning: could not create compact unwind for ___floattibf: does not use standard frame -ld: warning: could not create compact unwind for ___fixtfbitint: does not use standard frame -ld: warning: could not create compact unwind for ___enable_execute_stack: does not use standard frame -ld: warning: could not create compact unwind for ___bid_fixsdbitint: does not use standard frame -ld: warning: could not create compact unwind for ___bid_floatbitintsd: does not use standard frame -ld: warning: could not create compact unwind for ___bid_fixddbitint: does not use standard frame -ld: warning: could not create compact unwind for ___bid_floatbitintdd: does not use standard frame -ld: warning: could not create compact unwind for ___bid_fixtdbitint: does not use standard frame -ld: warning: could not create compact unwind for ___bid_floatbitinttd: does not use standard frame -[100%] Built target efpmd -/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_progress_start /Users/lyuda/LIBEFP/libefp_skp_may2025/build/CMakeFiles 0 -/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -S/Users/lyuda/LIBEFP/libefp_skp_may2025 -B/Users/lyuda/LIBEFP/libefp_skp_may2025/build --check-build-system CMakeFiles/Makefile.cmake 0 -/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_progress_start /Users/lyuda/LIBEFP/libefp_skp_may2025/build/CMakeFiles /Users/lyuda/LIBEFP/libefp_skp_may2025/build//CMakeFiles/progress.marks -/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/Makefile2 all -/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/efp.dir/build.make CMakeFiles/efp.dir/depend -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/CMakeFiles/efp.dir/DependInfo.cmake "--color=" -/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/efp.dir/build.make CMakeFiles/efp.dir/build -make[2]: Nothing to be done for `CMakeFiles/efp.dir/build'. -[ 42%] Built target efp -/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/libff.dir/build.make efpmd/CMakeFiles/libff.dir/depend -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/libff.dir/DependInfo.cmake "--color=" -/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/libff.dir/build.make efpmd/CMakeFiles/libff.dir/build -make[2]: Nothing to be done for `efpmd/CMakeFiles/libff.dir/build'. -[ 45%] Built target libff -/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/libopt.dir/build.make efpmd/CMakeFiles/libopt.dir/depend -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/libopt.dir/DependInfo.cmake "--color=" -/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/libopt.dir/build.make efpmd/CMakeFiles/libopt.dir/build -make[2]: Nothing to be done for `efpmd/CMakeFiles/libopt.dir/build'. -[ 57%] Built target libopt -/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/ctorch.dir/build.make efpmd/CMakeFiles/ctorch.dir/depend -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/ctorch.dir/DependInfo.cmake "--color=" -/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/ctorch.dir/build.make efpmd/CMakeFiles/ctorch.dir/build -make[2]: Nothing to be done for `efpmd/CMakeFiles/ctorch.dir/build'. -[ 60%] Built target ctorch -/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/efpmd.dir/build.make efpmd/CMakeFiles/efpmd.dir/depend -cd /Users/lyuda/LIBEFP/libefp_skp_may2025/build && /opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/lyuda/LIBEFP/libefp_skp_may2025 /Users/lyuda/LIBEFP/libefp_skp_may2025/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd /Users/lyuda/LIBEFP/libefp_skp_may2025/build/efpmd/CMakeFiles/efpmd.dir/DependInfo.cmake "--color=" -/Library/Developer/CommandLineTools/usr/bin/make -f efpmd/CMakeFiles/efpmd.dir/build.make efpmd/CMakeFiles/efpmd.dir/build -make[2]: Nothing to be done for `efpmd/CMakeFiles/efpmd.dir/build'. -[100%] Built target efpmd -/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -E cmake_progress_start /Users/lyuda/LIBEFP/libefp_skp_may2025/build/CMakeFiles 0 -/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/Makefile2 preinstall -make[1]: Nothing to be done for `preinstall'. -Install the project... -/opt/homebrew/Cellar/cmake/3.28.0/bin/cmake -P cmake_install.cmake --- Install configuration: "Release" --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/bin/efpmd -[cctools-port]: generating fake signature for '/Users/lyuda/LIBEFP/libefp_skp_may2025/bin/efpmd' --- Old export file "/Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpTargets-exe.cmake" will be replaced. Removing files [/Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpTargets-exe-release.cmake]. --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpTargets-exe.cmake --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpTargets-exe-release.cmake --- Up-to-date: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/makefp.inp --- Up-to-date: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/ch2o_lj.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/c6h6.efp --- Up-to-date: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/pyrazine.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/methanol.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/phenol.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/indole.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/benzene.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/cyclopentane.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/aceticacid-gp.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/thymine-stack.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/pentane.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/pyridone.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/ammonia.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/methane.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/pyridine.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/acetamide-hb.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/adenine-wc.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/neopentane.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/ethyne.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/2aminopyridine.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/methylamine.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/uracil-gp.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/water.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/nmethylacetamide.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/thymine-wc.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/acetamide-gp.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/formicacid.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/uracil.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/hydrogencyanide.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/formamide.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/aceticacid-hb.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/ethene.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases/adenine-stack.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/acetone.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/ch4.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/xxii_exp_n2_1.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/ccl4.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/xxii_exp_n2_2.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/h2o.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/tip3p_mm.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/h2o_reduced.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/tetracene.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/cl2.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/ch3oh.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/nh3.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/h2.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/c2h5oh.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/dcm.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/ethane.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/oxalicb.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/dmso.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/nh3-mm.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/tba_mm.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/h2o-mm.efp --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/pentacene.efp --- Up-to-date: /Users/lyuda/LIBEFP/libefp_skp_may2025/include/efp.h --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/lib/libefp.a --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpConfig.cmake --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpConfigVersion.cmake --- Up-to-date: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/FindTargetLAPACK.cmake --- Old export file "/Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpTargets-C.cmake" will be replaced. Removing files [/Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpTargets-C-release.cmake]. --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpTargets-C.cmake --- Installing: /Users/lyuda/LIBEFP/libefp_skp_may2025/share/cmake/libefp/libefpTargets-C-release.cmake -Compilation complete. You can now run test jobs as '/Users/lyuda/LIBEFP/libefp_skp_may2025/bin/efpmd input.in' from the tests directory. From 1bf9894135f488563a21fea0b11ea3cdce177cd9 Mon Sep 17 00:00:00 2001 From: "Slipchenko, Lyudmila V" Date: Sun, 21 Sep 2025 01:00:46 -0400 Subject: [PATCH 10/12] cleaning --- python/wrapper.py | 1 - tests/pytests/pairwise_1.py | 38 ------------------------------------- tests/pytests/sp_2.py | 33 -------------------------------- 3 files changed, 72 deletions(-) delete mode 100644 tests/pytests/pairwise_1.py delete mode 100644 tests/pytests/sp_2.py diff --git a/python/wrapper.py b/python/wrapper.py index 9489ac26..9a1183d7 100644 --- a/python/wrapper.py +++ b/python/wrapper.py @@ -143,7 +143,6 @@ def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): for lst in [paths, library_paths]: for spth in '@libefp_FRAGLIB_DIRS@'.split(';'): lst.append(spth) - lst.append('/scratch/gilbreth/paulsk/ls_pylib/libefp/fraglib') #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib') #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib/databases') #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') diff --git a/tests/pytests/pairwise_1.py b/tests/pytests/pairwise_1.py deleted file mode 100644 index daf77af6..00000000 --- a/tests/pytests/pairwise_1.py +++ /dev/null @@ -1,38 +0,0 @@ -import pylibefp - -b2a = 0.529177 -a2b = 1/b2a -efp = pylibefp.core.efp() - -frags = ["h2o_l", "h2o_l", "nh3_l"] -efp.add_potential(frags) -efp.add_fragment(frags) - -efp.set_frag_coordinates(0, 'points', - [i * a2b for i in [0.000000, 0.063030, 0.000000, -0.752652, -0.500166, 0.000000, 0.752652, -0.500166, 0.000000]]) -efp.set_frag_coordinates(1, 'points', - [i * a2b for i in [5.047701, -0.041199, 0.000000, 5.113439, 0.896539, 0.000000, 4.129507, -0.242679, 0.000000]]) -efp.set_frag_coordinates(2, 'points', - [i * a2b for i in [0.000000, 5.000000, -0.063177, 0.929426, 4.912005, 0.292603, -0.540919, 4.239091, 0.292603, -0.388507, 5.848904, 0.292603]]) - -efp.prepare() - -efp.set_opts({ - "elec": True, - "disp_damp": "overlap", - "xr": True, - "pol": True, - "disp": True, - "enable_pairwise": True, - "ligand": 1, - "print": 0, -}) - -efp.compute() -#gra = efp.get_gradient() -ene = efp.get_energy() -ene2 = efp.energy_summary() -geo = efp.geometry_summary(units_to_bohr=b2a) -print(ene) -print(geo) -#print(gra) diff --git a/tests/pytests/sp_2.py b/tests/pytests/sp_2.py deleted file mode 100644 index 586c0045..00000000 --- a/tests/pytests/sp_2.py +++ /dev/null @@ -1,33 +0,0 @@ -import pylibefp - - ## SKP -b2a = 0.529177 -a2b = 1.0 / b2a - -efp = pylibefp.core.efp() - -frags = ["tip3p_mm_l", "tip3p_mm_l"] -efp.add_potential(frags) -efp.add_fragment(frags) - -efp.set_frag_coordinates(0, 'points', - [i * a2b for i in [-0.028105, 0.006327, -0.059145, 0.589971, 0.606511, 0.368712, -0.143923, -0.706920, 0.569954]]) -efp.set_frag_coordinates(1, 'points', - [i * a2b for i in [2.985103, 0.063555, -0.008178, 3.448387, -0.518118, -0.618363, 2.788040, -0.490539, 0.748159]]) - -efp.prepare() - -efp.set_opts({ - "elec": False, - "xr": False, - "pol": False, - "disp": False, - "qq": True, - "lj":True, -}) - -efp.compute() -ene = efp.get_energy() -geo = efp.geometry_summary(units_to_bohr=b2a) -print(ene) -print(geo) From 8ad4ca48dfac7f917cad767dd80848b8576ab8b9 Mon Sep 17 00:00:00 2001 From: "Slipchenko, Lyudmila V" Date: Sun, 21 Sep 2025 01:08:48 -0400 Subject: [PATCH 11/12] cleaning --- .gitignore | 5 +++-- EFP2.C => qchem/EFP2.C | 0 EFP2.h => qchem/EFP2.h | 0 setup.csh | 31 ------------------------------- 4 files changed, 3 insertions(+), 33 deletions(-) rename EFP2.C => qchem/EFP2.C (100%) rename EFP2.h => qchem/EFP2.h (100%) delete mode 100644 setup.csh diff --git a/.gitignore b/.gitignore index 8497b234..2bdde15d 100644 --- a/.gitignore +++ b/.gitignore @@ -24,7 +24,8 @@ /include/ tags build*/ -/installed/ +/install*/ /cmake-build-debug/ -compilation.log +comp*.log +/lib diff --git a/EFP2.C b/qchem/EFP2.C similarity index 100% rename from EFP2.C rename to qchem/EFP2.C diff --git a/EFP2.h b/qchem/EFP2.h similarity index 100% rename from EFP2.h rename to qchem/EFP2.h diff --git a/setup.csh b/setup.csh deleted file mode 100644 index 2dbdfc50..00000000 --- a/setup.csh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/csh - -setenv TORCH_SWITCH OFF - -setenv LIBEFP_DIR "./" -setenv INSTALLATION_DIR "$LIBEFP_DIR" - -if ("$TORCH_SWITCH" == "ON") then - # Set the installation directory for LibTorch - setenv TORCH_INSTALLED_DIR "" - setenv LIBTORCH_INCLUDE_DIRS "$TORCH_INSTALLED_DIR/include/;$TORCH_INSTALLED_DIR/include/torch/csrc/api/include" - setenv TORCHANI_DIR "$LIBEFP_DIR/efpmd/torch" - - echo "Environment variables set for Torch integration:" - echo "LIBEFP_DIR=$LIBEFP_DIR" - echo "INSTALLATION_DIR=$INSTALLATION_DIR" - echo "TORCH_INSTALLED_DIR=$TORCH_INSTALLED_DIR" - echo "LIBTORCH_INCLUDE_DIRS=$LIBTORCH_INCLUDE_DIRS" - echo "TORCHANI_DIR=$TORCHANI_DIR" -else - unsetenv LIBTORCH_INCLUDE_DIRS - unsetenv TORCH_INSTALLED_DIR - unsetenv TORCHANI_DIR - - echo "Torch integration is disabled. Only basic environment variables are set:" - echo "LIBEFP_DIR=$LIBEFP_DIR" - echo "INSTALLATION_DIR=$INSTALLATION_DIR" -endif - -echo "TORCH_SWITCH=$TORCH_SWITCH" - From 793d9777013a3b23c3ff119e7b2ac16baecc5c97 Mon Sep 17 00:00:00 2001 From: "Slipchenko, Lyudmila V" Date: Wed, 24 Sep 2025 00:10:31 -0400 Subject: [PATCH 12/12] merging pylibefp to qchem versions --- .gitignore | 3 + .../__pycache__/__init__.cpython-312.pyc | Bin 761 -> 761 bytes .../__pycache__/wrapper.cpython-312.pyc | Bin 78633 -> 75301 bytes lib/pylibefp/tests/test_efpefp.py | 8 +- lib/pylibefp/tests/test_efpefp_new.py | 15 +- lib/pylibefp/wrapper.py | 238 ++++++++++-------- python/core.cc | 16 +- python/wrapper.py | 237 +++++++++-------- src/efp.c | 35 ++- src/parse.c | 5 +- src/pol.c | 4 +- .../__pycache__/libefp2py.cpython-312.pyc | Bin 5023 -> 0 bytes .../__pycache__/systems.cpython-312.pyc | Bin 11315 -> 0 bytes tests/pytests/test_efpefp.py | 8 +- tests/pytests/test_efpefp_new.py | 15 +- tests/pytests/test_opts.py | 37 ++- 16 files changed, 365 insertions(+), 256 deletions(-) delete mode 100644 tests/pytests/__pycache__/libefp2py.cpython-312.pyc delete mode 100644 tests/pytests/__pycache__/systems.cpython-312.pyc diff --git a/.gitignore b/.gitignore index ea9fc5e5..a54a63cd 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,6 @@ build*/ comp*.log /lib .DS_Store +__pycache__/ +*.pyc +*.pyo \ No newline at end of file diff --git a/lib/pylibefp/__pycache__/__init__.cpython-312.pyc b/lib/pylibefp/__pycache__/__init__.cpython-312.pyc index 0b4b72999f0ae22041022be5b6ec6ea6b2e1e164..9cdbc4718183347620e371d1e8d5bfb7bb30722a 100644 GIT binary patch delta 20 acmey#`jeIWG%qg~0}#wfy1bG59TNaUoCb6N delta 20 acmey#`jeIWG%qg~0}xnNpWn#+jtKxkX$B?$ diff --git a/lib/pylibefp/__pycache__/wrapper.cpython-312.pyc b/lib/pylibefp/__pycache__/wrapper.cpython-312.pyc index 917af6bc46f15cdcbed4611f7c927181156c322c..d4eec3682192d2e8d6be28ca06936c44d399483b 100644 GIT binary patch delta 7546 zcmai33tUvyx}UXY?+pwOLEevn8Q#NVcqjtO!x2zHMdVQm76N-f5E;&9H07e$$&*&x z6jwEtT4`E7vaGFqdrsUsR=@7eu8&H~W3TglYZx9THNPMK^{wywf8Sc` zThIMt-&g#ew|K9AczSA7@Y`O0c4>%zuU8QFtJoWVuzQviyq;7CN+Ii2)j`s1DHLkK zQn3^UWr(B&ZKzZtg+nb&nj=L(sg>qRIw->>Jy;{a8VNO>6a_WC6b%?D#Q;W0^Q2g? zL_-+|Wek+@P{v9Iu*N|xVLj=tjt3zT)CMUD)Cp2DV4`FMOp;OnlciEA73@Z7zLW-K zic}`0LzyZ~0&AKy88BVS0GuRE0h}x?kTSuZA!R{ric~ITLoE}uQ=!a)avGG`QVv+B zO5M3oOq22ebHJ1jrd+8)nhs^2WCCrzImqnMvJO)>_E#I^teb&IzBKg=+W!!QmrQpaJWB7-$$ z&KZZ2GaMuj88pmAD`YU~MP3`1IgVH6uvZr2dhy!gv~jp;!`#W^FeVQ((pj`T=))u? z?Nw`qI3}GJFx4I+qEXbwMU4|HYB*Lj^IOmSo@Dr@ppDBO$1i)>FM;{}%xi^kCOshP zqt-dCBV}!bQ#R)^-gQwcOl49kfAdM7HtdmtJZEjBtW9ys=Hzi0$xene1D3f-Dgc}z z6`BjABD1Txz+BMC;rjJx??3ye~Gw4~8GZ(sUbfD2s`=pU?Eq)o|D^nv66p^KM7b7+5ZZ~#bQqnO|WQOhZ*_N51s zHNM*4*(#kjmvClN(VdlA_Xw+F8USgT(a%-VHFFTCnx-0q-SkL=+G6ai8!tsV>QsNL zpC7az<%r`9(6WS@N_{<}M!&1%52N@9ePPPynm0ha1b-cGD7!M> z;-+2pP({XmsLveGXRa$ctcyEL^Ptny?b zt9a4Xxmwz5@THsb-RZ~izBJF^PdDd@o)e&B?AN7PMd)UO-!NnMpE5KFe-@+N!5|Y@ zXa1;{-q2;Qar?6Dw$MN5X-*>R2ecA3{hOPO5-bC=ZydiLO_}Qk7SqffRGJY##&2ls zH}TsI85;5XykM-~P)2Uzr%4#?x1?yS-$}UHZzY}Bnm^mx-ChcU-8r{y~*<;&@ zD2DmXbGeCMM6njMm79>{RVD#$+RKP!Z}V(1Pz-Dt7=Tl?h@374RJr1JHkz! z7c#1CT9dRwR=&7Hs80KjxLrywaJMK{C+gi$aq(Dqeo}83>y=>Jh!Q&q%Ktp60{_lCN9cX z8zmz&qcx2*;`Jwuq;z?0Q|;iKSLt6#m)B6tn>3n=@!SRQvRcI2@W4}UU+jalx^lO)kH_vHD?(ffGo=oB19v^AjBfDOYjkt zwjw-CKWt7S4=H@hK@!r78UX<>U3m+_5bNZ!DWb!ba;^2`A!=@2sHaF6Y3UZMVsi#g z-iGpa`e|!g_ht~ACb8ca`J;N0fRr6bFOu z`2~bXgrf-fT$gtu>_T_~VRtv;9)u?mUPU;L@EF1@1W$xqgc%5X5%wV*KzI(}d4#7C z4kA2@@C?FXgd+fUq1AGSS+={*F|RI?Ws5BLq3K0<8LQ-D2rRuLNqq@*|AoL_BQ_e@ zmXU}lwF`}{mOAUG%)X4QR}k22Vn*fH>6*4oPkg-?CdehIIZ6B5^2rHGEc4wz1H~+O zX?G+}q&1fNT;FrmUeTyR!f91|q;S92M{X08i(&N@>hv26-}lgd zeo(HHm!a_Z9J__J)K^3)??~sAxgLm;xEd+4Xr%cK?8b{>Aap`@kg{@qxC(d z!Y?3ZC`Wn@^5hZP&|5>kqp$XcR9ywNT~kb@hE zK6^L-`C=sKy?N!-0e4?nsz&9xL$zucjL%`C z=jfIk<7qtX7x9O!$T9T(14({uEsl?j4mlBmmh+HI8-3?MfO6^Z2_mF`u3b6$!rPd& z4M)>lhZ;(u$B(9Y-xwd#<{!a&ZN&aMGKP~8fz?rCm~$*#NC#cF(sry%O;YGLFUO^h zO@hH?R1!wQ#g2+J;}xTj0refqidQ}$LNy`lH}u`s4mYAs5tdD{g;3 zMgrNw5TNc{{J3`HpQ-(|SRo(8PZi~rFP~^mM?bj^dw;_)ah?o4iaTcZGwt zQ(Q1FrD$fE{2NlP(%(+|yBA{*N)Uda5d#_I8m$`GC9)0i3;ksvQuh;b=OQ5trMnO? zn4NEKlNz8y`DapuTfrWnbeyrcv8ger?W9fq8d+-ix|EloJ67d$lne$2*J1s0G<&pL zn%k_k4NL3fCbMj!X@dzB?;sHug^bfDWA<;FBb-ZvC(DuDb46RTwWHQ*sjasxmDw_| zyDo>1+~&4Mi(EjT8Eh3Sz;96^{-;*#W(laqz#KMKi_$ri1O)7vfwz-tc`+JpL%1E` zF9>6G28~@bud%irFNeF@E!eC#AXb558ZG+L)Zf12TK2WGj7JXi}CI(FuQcWqSY6($k&u! z%n`N%?V9r5#Y0@s1L*u9K&e4=WOInU{o6@m8yao2_i7;h|8IlEZBU&kD(>HDF}&ew z0{MzoUd?pSdV!W8JO-3R<@nX}gf!CwKSqaQ=Q=QZ&J$6>mz#1&?Y|xYQBGagkplY7^=Qp*bVXRG1pkz+Havy(T?jZ)u#p&{0~B_? zv97+uxigySfBc#*90mPK<@sN~A>R9j9iKpH&w~d^obVEey+=MKy~KO(4R%{6M`DDR zLHk7CZjK!018b16AHd-5IOEYMi#Cf3nHR+-Na>>u(M|)+Lxh@Uv8;yq53_( z{$5RHYi*-k*Hl|)wJh(D-vINGJ{MPF;lz89zsc66A$KI=3N*NmZU>EQxuA4P%%O`C=KrGP?vdX0|)QcSEyf0u( zHhWJXWsmJMZ=x3mLH2g(6Me|ryyq;azzg?9v@f>()1OQx2Ah8XNtpc^suls*1-7Lt z<^M*_DFn7*$8JA6-(7Lku5Ni z%ohWJD=)IOMiMho+0I0gsUd1qp&xUztLxM2?CQGodO5%r8%1UcIEa_%fE`D;z7ZLECEaPKX_CYe6UVP)pkqGe!;QG6J zG8=Wd2>A$w2zWWm7KHT(EL(U{$aw6_c(B8AnGd)d#gPThPCj-HvGV};xXcz8E=n0! zk8D6-^Md)5Yp}m8KeKFWQb>>{2eja(>L{~4mO}m-b}J#}Hn^upGpS*3hz9<;=91D{^9aIudOME1{R1B_mIXgG4dW+W4O3b zi~=q~tQ4bRj1+YsjS{QG7~rDCYEciPPOK3H7-Pg((CR@O2b>_r0~aeM0LF=lfbn9j zm;{;x7?WX46jMN&1e^i5WEfNLAp?ymK%{}dAf|&l6}SxG(qPPlF086tF}r1Dpw(S)eHumx!}rEECH?I?EJp^6j{nenVo( zy);^mSR#+DxEE7A_Fq$!n>R(HkDD7Eo1)#cNynn@XYqc^@RD3NKXVelOpjmIBocs zyh)$&~T$}?~A<0h+T?)|VAG})=ij4j zoZCwbw>nb2N>$`Z+8HG3FUn-=_(!>4Aey&YkE?agV$h|}b4Jr$vir@ly zzZX4Tsr47RgTyr>k%>IhE()FzZj-Gch5*NKXa|?umz`y8m5jF56WQ;Z7LZHU3+Nv6i zs`^7<^{_t;)6e8XWZ{{^k#wm(jn~TpQ->2AKiBUhp=kjNqU7&H`7HG3-boM^`f%_1 za0~q%rLnu^F3{_Ax)3NXf9d-1`e2t&ZHY!<+60ewc zIn1$ymSslx=tpL3VDk$jTqAM;v18-W;~83|7-y4FeM7Xj7|)_KV-%7=W0Pjnq)ZJB zNC_Z`$PtkmQ)5XIquY>nypcJLL|NRcfr2B?ryZ2L_N2*NO-KkHscNx><3$XC9yDE$uG?tw=K&O~Od zuh^76qzrRZ6#WO0=NTM{GYBDpw6ipt9xo1|bq{Lj>6vOOCTZwvPAxrM;^pVs7Kqrd zT1)7n2SGYwk(C@m2TS-Lv9QnlS22tRW&!1Y5jHE*pi%a#ngSW~c^PAZ8S`nmCJ;1Q zSO@#}gT?&wj;J45NK-0XDooQ_dU>M91WnL<-48UDN*~Z{n6s1apOrF3JM!=o_+=$) z>8M{^`B=Y^luY1FV5@Y=Ub?VGk$Rf$wmuBvY1TEmL!rK`cZ=p5bN&O4O;rbZN6nDPv!gB+T67Jkg)pO+TAkI z(C_!SY^U7)CfP{({rY7cop2gPMt3fSgF>*a^cbh2v6$vIPy&-qYZ_-NGQACAL5;ps{lk$212V7&jNt$eH%f zJ8o`{eBchx(~j{QJxYGiAgMR`DhkEI@pH;M`su2wh#yXiijNlHdN#~i3nyTQ4c|xV zICcXOfbT+{X1A({gfD*orXu$aLW&32UEpA;fSxTQmOOo-HI8fm)l_mf?0pnHS{kMV z>z~oBv0C}_MYLYDE4(&eqgTWSVY~q2t@Hy^9?)+f4R0u8+Y|-A`CZ24Bj=~wT<5t? zOm}20|3pDzsJ3&OJ^|JvB_iO}Q`(NO1K|+_JMHOAC)*rPb{--jTTsFw;498;(7rOC zcX`pLR<@9B)Vr%8b}JhE0)ZkdLBN>|a_Lc|AEO((azaL@#jCUQI2z2Rf9%qSJb^r0 z#x|sOBkZ9%OZdPMBx4bdBE%saLx@NCH-y&^b|TD0@Ixp@n1%2(!ZQd55Ppep7~wgD zg9wKZo=5ljpLQ`*rBv~ZsMb!No;Uxr?9hS70k$nY$z23LebC#(| zm=Pz}X0{k@HznpbX!R-r+lM#lwC)1GlfWASqy;EGLHoOBlDFuq-8JeDK`;ldtk%XL z8oKI1?>~9#hE+0Epkr{=ULU%!FMvkc{2brkd7pwdu1=&`Hr{b*AX4trqmqS`lfQq} zK-C*xAtm(fjrR;x<|?nq%6!Ty3uIT5i^{4>WM9k#wuY14P!*Nc`pS-%!njByJ6>5( zCM&C&t~g#*L|kJD2x{bt<28i1Mh*nEK8oYD-o!Qff?!dg;`pKf;uTegJ4pM6Gsb|x%nU15}#!-E>TL_u^tbf%D7Bp5}p9iPx>HunnM zQhS$8Sk+?`r5=_S_SE>~=w@lPp_FdenVHqxJVoeYDQIpMQraL(2Eiyv#$I=V*%X4= z(#rBjEr(<1=EHFVE+3&-fGk>CIx;6nQHp`hT2fLXtnKY%bAWwUcc#(GW=NUD)&02E z6oVmCGFev`yG<#s`O<|c2DXDb!F7;+1j+A9fq9CHO9Y`}POVUdMd7!rRD&Djj2W}b z)U+!-RS9yb6RQhPRf9Kc7pK>1lhk6dnj|f%S@V2Gf3quTUc~q(^DIviz;rv70G?V< z0+}*D%~{{1A>X7kzA5V~&IN^?4ay%1%0Jw5Ca9QZ?k-Tx*rYrk9JYgdB%NAzrw~0Y zej$eL-tQyl<@EUOPIAh=HykcauRYfUZ|MfkglX(XkBFr&CwrRvMPvnXF&CkQnE<>Y~C>0^i?UBEzinoJmIG}rDJB_lC}JBxC1 zGxOWl{Uk#5R~62etP%z$p3uEb?&(_oU(@}_+6Fv2l|jYcIL?SM2O7&|lWRv@mo+2i zD+153NQ5Ya2~RvJ8daXt&Z)#EcJhe1*-{KD^#g!bZ-~f>9Du!=o!YTS;>h&LVEh|A z4d(#?r(xc>(=a&vY;f*SaPHx$XMzhiEQA+ig69S4<-a9%WB>V}kZr9`B`=G9UBO)SP>QS!SHqe#R#|?0eemxI;I*dKS1TNmkMV?0gPdMbIFcSeB_|)z>pOFOq%aUcRix4CUAgmq z!j`9k-^dFNYek2wYrBD>@9&zzX9DpLg~MyNS_zYB_N4^7=K{sZE0vz!7a7Su4~!F4 z9Nn-lB#u>>XF8`63dQQ=5T}gHNMG8Q!{tHLNXONEO$wN;`k72`_iXTFdb;l!ZQPI6 zvy=n=ux>*@SBJY53P4oi2zvGc;idz*)baI!_vAdgETqwEhr?;`E{!LH)9H85=am2G z93!^`SI-nd#EBC~r9*jK38*_A2M_ft$aI==B$+5_?U9g3mW)x?Tnyq$I~_QZ$&~?r zzvEX&{zSM6AfI#m+#wP&NWVN9Pk0*oVj4Fe#4kJMy!Z+U8^n|=fOlW^@%k)%L&J_G zaSMTb$1&^JF+wiVZ(eH8ML)?n!6xAy$iTV27O-cX+;Yh%=1Vbj`^yHt79>}djuS6m z^d?dC={E;R6-|0;wc7RVfZ@KR&%BjDZl$N*YM6Ed1#th6_3?|Uvfv&jeTNeKgphOy z?Bf_eHsK5Q7F^L1gsgEx3uVFobcc1(SQcgNZpNq!JW$XF0mCB z*ncvMYX!aBarmUgM~}HRD4e8A`V6fUP-2o9-I0|(q9v!pB32@Q0oA_jiqPbG|4UW0 z>vXE&6dGcwNVt6x?#6^Uga5oZ9T|xG=JZ}^F*mh$wOOPZdik`OyAy;<97_kA_yP9p zZ5Tt2aXXR1;&a_uF92mwI!U9n0u}8D9SG|X#>xyTCvRG7Gj)lQ1+}BAV~09haU({? zU%}uEH`-P>m9*&W0@6o+cGkpg0jGx?Uz~kjNiNeT&Y$MlgT6;seOSf!V8HG4#D`P4 zT|mC+`2Ir^wxD=1Ma=@U5C2c7{o*w886CVhgWC^gpE!a(J}eL4gU)*astvp=aU<4$ z{$vW@hsu5Q{Yzog@Rtbw8DPKX9P|F7!|-jFQpqQD>!kvh*-kJ^LnB%)kpA*tU zFMXa6g^ROd_T1lt-53)gmtMS~bxgnfJK}!`SSLTSk(X)El}6|o^OZhmxzDcXA(Gcs zfz;5Hs|l*Z=#EhCSaP*cVQ?V-0s?Lp^bs?_7oJnuW^A##8>5H5bS;-V3Gx=l7uPP6 zz!yD^zeMT?{rq||_coC0*t$}`T1Ntpj<-2>Ba!<(2p@J_ym3?+wjA}p1~8~4*2}1q zl=S&;sv_C0yb8Qi0pEPCb7mW=*HF#3>D(D0_d3eIwaEELQ2IE1`MWh~SZi=b-4qLT ztT50)x(fjxLVBCt{(Wk64U()taXNTn_+K%nvbz^1l<3~?!&R)<5Z-pY^}R|?+P1$> z^aJmr+f*z!_5`e6F_Dlg=I|cs-$yu&Fo-Ip>wvk4f;9*q09ci5XWbVHwawDBy1lPS zY=_VGPeK1T9&FZv&3f4db1wxG7fXLc$)6BdLdN!=Q@Pw^ zS?N^52fLB=CnNi$<@OUkq>%r2bUSZXs7N)bx7Vr2EhN+atcvuJ%l3FRN#K|@o7PDk(l~_qA+n^?#iZ;nA z4S}K4$7r*xTxslpU(>FlBTFzl^uD!c`;rt+3n2oJE%PNO6}Y58k~8~pbi~8U1V4(H z3|_A5AzLUb7)&Hf*fG6fk<7DWVjze zB|$5}PYn_VWap&oYTS>TumJ&2KiAq9G9RZm{xsAM<>9Jb&myHf48b~71C&#~!se7O zUm<15?R*T0;|f9e`mu}{QX!vK1T_52IRk0r6;^P~n`J8L;_w8pbbQp)X%Vo4h0cwH=M9$@d(577>P zDwM7w;IDmB02;GB4?zll$&iu}(hxEc@LDF}MQZ$eu>xi6RT|2Kj>sth5g!HCpxT;A2M=>kjOFi4`Cgu7njPO+{dPhv}7W$K|thVUtVKk;NYj zo!&E6T12Sm5@{aTflg*68}0AKk&V#}gw&BQSIfgm%Jl|PPe{^rv%H@J?k=^xGoI*z zV|+=_^_X}PaJ`abk-#rSa_oV4@;*sEr_Wulyw7`s_a9`@=MqcYblf>1&rR#jCCsod IOC-PhA0KE?sQ>@~ diff --git a/lib/pylibefp/tests/test_efpefp.py b/lib/pylibefp/tests/test_efpefp.py index b06654ba..ab87085c 100644 --- a/lib/pylibefp/tests/test_efpefp.py +++ b/lib/pylibefp/tests/test_efpefp.py @@ -45,7 +45,7 @@ def test_elec_1b(): def test_pol_1a(): asdf = system_1() - opts = {'elec': True, 'pol': True, 'elec_damp': 'screen'} + opts = {'elec': True, 'pol': True, 'elec_damp': 'screen', 'print': 0} asdf.set_opts(opts) asdf.compute() ene = asdf.get_energy() @@ -56,7 +56,7 @@ def test_pol_1a(): expected_ene['elec'] = expected_ene['electrostatic'] = elec expected_ene['pol'] = expected_ene['polarization'] = pol expected_ene['total'] = elec + pol - pprint.pprint(opts) + #pprint.pprint(opts) assert compare_recursive(expected_ene, ene, atol=1.e-6, return_message=True), 'FAILED' @@ -363,7 +363,9 @@ def test_total_4d(): test_disp_1a, test_disp_1b, test_disp_2a, test_disp_2b, test_disp_3a, test_disp_3b, test_xr_1, test_xr_2, test_xr_3, test_total_1a, test_total_2a, test_total_3a, test_total_4a, test_total_4b, test_total_4c, test_total_4d] - for f in function_list: + tests = function_list + #tests = [item for item in function_list if 'pol' in str(item)] + for f in tests: print(f'\nComputing {f.__name__}') f() diff --git a/lib/pylibefp/tests/test_efpefp_new.py b/lib/pylibefp/tests/test_efpefp_new.py index 850ae8e0..44284c98 100644 --- a/lib/pylibefp/tests/test_efpefp_new.py +++ b/lib/pylibefp/tests/test_efpefp_new.py @@ -25,16 +25,15 @@ def frag_setup(test_name): efp.set_periodic_box(periodic_box) #print('box2', efp.get_periodic_box()) - - #print(frag_coords) #pprint.pprint(efp_options) efp.compute(do_gradient = if_gradient) ene = efp.get_energy() - if 'enable_pairwise' in efp_options.keys(): - if efp_options['enable_pairwise'] in [True, 'true', 1]: - efp.print_pairwise_energies() + # print pairwise components + #if 'enable_pairwise' in efp_options.keys(): + # if efp_options['enable_pairwise'] in [True, 'true', 1]: + # efp.print_pairwise_energies() print(efp.energy_summary()) if if_gradient: @@ -50,9 +49,9 @@ def frag_setup(test_name): 'symm_1.in', 'symm_2.in', 'symm_2full.in', 'symm_2pw.in'] # running for all tests in files list - #for f in files: - # print(f'\nComputing {f}...') - # frag_setup('../'+f) + for f in files: + print(f'\nComputing {f}...') + frag_setup('../'+f) # single test execution frag_setup('../symm_2pw.in') diff --git a/lib/pylibefp/wrapper.py b/lib/pylibefp/wrapper.py index 754839c8..7325a5c9 100644 --- a/lib/pylibefp/wrapper.py +++ b/lib/pylibefp/wrapper.py @@ -143,7 +143,6 @@ def add_potential(efpobj, potential, fragpath='LIBRARY', duplicates_ok=False): for lst in [paths, library_paths]: for spth in '/Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib;/Users/lyuda/LIBEFP/libefp_skp_may2025/share/libefp/fraglib/databases'.split(';'): lst.append(spth) - lst.append('/scratch/gilbreth/paulsk/ls_pylib/libefp/fraglib') #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib') #lst.append('/opt/anaconda1anaconda2anaconda3/share/libefp/fraglib/databases') #lst.append('/opt/anaconda1anaconda2anaconda3/Library/share/libefp/fraglib') @@ -292,7 +291,9 @@ def get_opts(efpobj, label='libefp'): core.EFP_DISP_DAMP_OFF: 'off', }[opts.disp_damp] + dopts['pol_damp_tt_value'] = opts.pol_damp_tt_value dopts['enable_pbc'] = bool(opts.enable_pbc) + dopts['enable_elpot'] = bool(opts.enable_elpot) dopts['enable_cutoff'] = bool(opts.enable_cutoff) dopts['swf_cutoff'] = opts.swf_cutoff dopts['xr_cutoff'] = opts.xr_cutoff @@ -351,8 +352,8 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): """ # warn on stray dopts keys allowed = [ - 'elec', 'pol', 'disp', 'xr', 'elec_damp', 'pol_damp', 'disp_damp', 'enable_pbc', 'enable_cutoff', 'swf_cutoff', - 'xr_cutoff', + 'elec', 'pol', 'disp', 'xr', 'elec_damp', 'pol_damp', 'disp_damp', + 'pol_damp_tt_value', 'enable_pbc', 'enable_elpot', 'enable_cutoff', 'swf_cutoff', 'xr_cutoff', 'pol_driver', 'ai_elec', 'ai_pol', 'enable_pairwise', 'ligand', 'symmetry', 'symm_frag', 'spec_elec', 'spec_pol', 'spec_disp', 'spec_xr', 'spec_chtr', 'ai_qq', 'qq', 'lj', 'special_fragment', 'spec_qq', 'spec_lj', 'print' @@ -374,6 +375,9 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): #opts.terms |= core.efp_term.EFP_TERM_POL #opts.terms |= core.efp_term.EFP_TERM_DISP #opts.terms |= core.efp_term.EFP_TERM_XR + opts.elec_damp = core.EFP_ELEC_DAMP_SCREEN + opts.pol_damp = core.EFP_POL_DAMP_TT + opts.disp_damp = core.EFP_DISP_DAMP_OVERLAP elif append == 'psi': opts.terms |= core.efp_term.EFP_TERM_ELEC opts.terms |= core.efp_term.EFP_TERM_POL @@ -566,6 +570,16 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + topic = _lbtl[label].get('enable_elpot', 'enable_elpot') + if topic in dopts: + if dopts[topic] in trues: + opts.enable_elpot = 1 + elif dopts[topic] in falses: + opts.enable_elpot = 0 + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + topic = _lbtl[label].get('symmetry', 'symmetry') if topic in dopts: if dopts[topic] in trues: @@ -650,6 +664,12 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, 'invalid value for [iterative/direct] {}: {}'.format(topic, dopts[topic])) + topic = _lbtl[label].get('pol_damp_tt_value', 'pol_damp_tt_value') + if topic in dopts: + opts.pol_damp_tt_value = float(dopts[topic]) + else: + opts.pol_damp_tt_value = 0.6 # libefp default set in efpmd + topic = _lbtl[label].get('ai_elec', 'ai_elec') if topic in dopts: if dopts[topic] in trues: @@ -898,109 +918,109 @@ def get_frag_count(efpobj): return nfrag - -def get_multipole_count(efpobj): - """Gets the number of multipoles in `efpobj` computation. - - Returns - ------- - int - Total number of multipoles from electrostatics calculation. - - """ - (res, nmult) = efpobj._efp_get_multipole_count() - _result_to_error(res) - - return nmult - - -def get_multipole_coordinates(efpobj, verbose=1): - """Gets the coordinates of `efpobj` electrostatics multipoles. - - Parameters - ---------- - verbose : int, optional - Whether to print out the multipole coordinates. 0: no printing. 1: - print charges and dipoles. 2: additionally print quadrupoles - and octupoles. - - Returns - ------- - list - ``3 n_mult`` (flat) array of multipole locations. - - Examples - -------- - - >>> # Use with NumPy - >>> n_mult = efpobj.get_multipole_count() - >>> xyz_mult = np.asarray(efpobj.get_multipole_coordinates()).reshape(n_mult, 3) - - """ - nmult = efpobj.get_multipole_count() - (res, xyz) = efpobj._efp_get_multipole_coordinates(nmult) - _result_to_error(res) - - if verbose >= 1: - xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) - - text = '\n ==> EFP Multipole Coordinates <==\n\n' - for mu in range(nmult): - text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) - print(text) - - return xyz - - -def get_multipole_values(efpobj, verbose=1): - """Gets the computed per-point multipoles of `efpobj`. - - Parameters - ---------- - verbose : int, optional - Whether to print out the multipole arrays. 0: no printing. 1: - print charges and dipoles. ``2``: additionally print quadrupoles - and octupoles. - - Returns - ------- - list - ``20 n_mult`` (flat) array of per-point multipole values including - charges + dipoles + quadrupoles + octupoles. - Dipoles stored as x, y, z. - Quadrupoles stored as xx, yy, zz, xy, xz, yz. - Octupoles stored as xxx, yyy, zzz, xxy, xxz, xyy, yyz, xzz, yzz, xyz. - - Examples - -------- - >>> # Use with NumPy - >>> n_mult = efpobj.get_multipole_count() - >>> val_mult = np.asarray(efpobj.get_multipole_values()).reshape(n_mult, 20) - - """ - nmult = efpobj.get_multipole_count() - (res, mult) = efpobj._efp_get_multipole_values(nmult) - _result_to_error(res) - - if verbose >= 1: - mult20 = list(map(list, zip(*[iter(mult)] * 20))) - - text = '\n ==> EFP Multipoles: Charge & Dipole <==\n\n' - for mu in range(nmult): - text += '{:6d} {:14.8f} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *mult20[mu][:4]) - - if verbose >= 2: - text += '\n ==> EFP Multipoles: Quadrupole <==\n\n' - for mu in range(nmult): - text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format(mu, *mult20[mu][4:10]) - text += '\n ==> EFP Multipoles: Octupole <==\n\n' - for mu in range(nmult): - text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format( - mu, *mult20[mu][10:]) - print(text) - - return mult - +# # +# # def get_multipole_count(efpobj): +# # """Gets the number of multipoles in `efpobj` computation. +# # +# # Returns +# # ------- +# # int +# # Total number of multipoles from electrostatics calculation. +# # +# # """ +# # (res, nmult) = efpobj._efp_get_multipole_count() +# # _result_to_error(res) +# # +# # return nmult +# # +# +# def get_multipole_coordinates(efpobj, verbose=1): +# """Gets the coordinates of `efpobj` electrostatics multipoles. +# +# Parameters +# ---------- +# verbose : int, optional +# Whether to print out the multipole coordinates. 0: no printing. 1: +# print charges and dipoles. 2: additionally print quadrupoles +# and octupoles. +# +# Returns +# ------- +# list +# ``3 n_mult`` (flat) array of multipole locations. +# +# Examples +# -------- +# +# >>> # Use with NumPy +# >>> n_mult = efpobj.get_multipole_count() +# >>> xyz_mult = np.asarray(efpobj.get_multipole_coordinates()).reshape(n_mult, 3) +# +# """ +# nmult = efpobj.get_multipole_count() +# (res, xyz) = efpobj._efp_get_multipole_coordinates(nmult) +# _result_to_error(res) +# +# if verbose >= 1: +# xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) +# +# text = '\n ==> EFP Multipole Coordinates <==\n\n' +# for mu in range(nmult): +# text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) +# print(text) +# +# return xyz +# +# +# def get_multipole_values(efpobj, verbose=1): +# """Gets the computed per-point multipoles of `efpobj`. +# +# Parameters +# ---------- +# verbose : int, optional +# Whether to print out the multipole arrays. 0: no printing. 1: +# print charges and dipoles. ``2``: additionally print quadrupoles +# and octupoles. +# +# Returns +# ------- +# list +# ``20 n_mult`` (flat) array of per-point multipole values including +# charges + dipoles + quadrupoles + octupoles. +# Dipoles stored as x, y, z. +# Quadrupoles stored as xx, yy, zz, xy, xz, yz. +# Octupoles stored as xxx, yyy, zzz, xxy, xxz, xyy, yyz, xzz, yzz, xyz. +# +# Examples +# -------- +# >>> # Use with NumPy +# >>> n_mult = efpobj.get_multipole_count() +# >>> val_mult = np.asarray(efpobj.get_multipole_values()).reshape(n_mult, 20) +# +# """ +# nmult = efpobj.get_multipole_count() +# (res, mult) = efpobj._efp_get_multipole_values(nmult) +# _result_to_error(res) +# +# if verbose >= 1: +# mult20 = list(map(list, zip(*[iter(mult)] * 20))) +# +# text = '\n ==> EFP Multipoles: Charge & Dipole <==\n\n' +# for mu in range(nmult): +# text += '{:6d} {:14.8f} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *mult20[mu][:4]) +# +# if verbose >= 2: +# text += '\n ==> EFP Multipoles: Quadrupole <==\n\n' +# for mu in range(nmult): +# text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format(mu, *mult20[mu][4:10]) +# text += '\n ==> EFP Multipoles: Octupole <==\n\n' +# for mu in range(nmult): +# text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format( +# mu, *mult20[mu][10:]) +# print(text) +# +# return mult +# def get_induced_dipole_count(efpobj): """Gets the number of polarization induced dipoles in `efpobj` computation. @@ -1910,9 +1930,9 @@ def old_to_dict(efpobj): core.efp.get_point_charge_count = get_point_charge_count core.efp.get_point_charge_coordinates = get_point_charge_coordinates core.efp.get_point_charge_values = get_point_charge_values -core.efp.get_multipole_count = get_multipole_count -core.efp.get_multipole_coordinates = get_multipole_coordinates -core.efp.get_multipole_values = get_multipole_values +#core.efp.get_multipole_count = get_multipole_count +#core.efp.get_multipole_coordinates = get_multipole_coordinates +#core.efp.get_multipole_values = get_multipole_values core.efp.get_induced_dipole_count = get_induced_dipole_count core.efp.get_induced_dipole_coordinates = get_induced_dipole_coordinates core.efp.get_induced_dipole_values = get_induced_dipole_values diff --git a/python/core.cc b/python/core.cc index 572d62cc..1cb806b9 100644 --- a/python/core.cc +++ b/python/core.cc @@ -227,6 +227,7 @@ py::tuple _efp_get_periodic_box(efp* efp) { return rets; } +/* py::tuple _efp_get_multipole_count(efp* efp) { enum efp_result res; size_t n_mult = 0; @@ -268,7 +269,7 @@ py::tuple _efp_get_multipole_values(efp* efp, size_t n_mult) { py::tuple rets = py::make_tuple(res, mult); return rets; } - +*/ py::tuple _efp_get_induced_dipole_count(efp* efp) { enum efp_result res; size_t n_dip = 0; @@ -628,6 +629,7 @@ PYBIND11_MODULE(core, m) { .def_readwrite("disp_damp", &efp_opts::disp_damp, "Dispersion damping type (see #efp_disp_damp).") .def_readwrite("elec_damp", &efp_opts::elec_damp, "Electrostatic damping type (see #efp_elec_damp).") .def_readwrite("pol_damp", &efp_opts::pol_damp, "Polarization damping type (see #efp_pol_damp).") + .def_readwrite("pol_damp_tt_value", &efp_opts::pol_damp_tt_value, "Polarization damping tt parameter value.") .def_readwrite("pol_driver", &efp_opts::pol_driver, "Driver used to find polarization induced dipoles.") .def_readwrite("enable_pbc", &efp_opts::enable_pbc, "Enable periodic boundary conditions if nonzero.") .def_readwrite("enable_elpot", &efp_opts::enable_elpot, "Enable switching off elpot contribution for custom torch gradient.") @@ -761,12 +763,12 @@ PYBIND11_MODULE(core, m) { .def("_efp_get_frag_charge", &_efp_get_frag_charge, "Gets total charge on fragment", py::arg("frag_idx")) .def("_efp_get_frag_multiplicity", &_efp_get_frag_multiplicity, "Gets spin multiplicity on fragment") // Multipoles & Induced Dipoles - .def("_efp_get_multipole_count", &_efp_get_multipole_count, - "Wrapped gets total number of multipoles from EFP electrostatics") - .def("_efp_get_multipole_coordinates", &_efp_get_multipole_coordinates, - "Wrapped gets coordinates of electrostatics multipoles") - .def("_efp_get_multipole_values", &_efp_get_multipole_values, - "Wrapped gets electrostatics multipoles from EFP fragments") + //.def("_efp_get_multipole_count", &_efp_get_multipole_count, + // "Wrapped gets total number of multipoles from EFP electrostatics") + //.def("_efp_get_multipole_coordinates", &_efp_get_multipole_coordinates, + // "Wrapped gets coordinates of electrostatics multipoles") + //.def("_efp_get_multipole_values", &_efp_get_multipole_values, + // "Wrapped gets electrostatics multipoles from EFP fragments") .def("_efp_get_induced_dipole_count", &_efp_get_induced_dipole_count, "Wrapped gets the number of polarization induced dipoles") .def("_efp_get_induced_dipole_coordinates", &_efp_get_induced_dipole_coordinates, diff --git a/python/wrapper.py b/python/wrapper.py index 9a1183d7..b6aad04c 100644 --- a/python/wrapper.py +++ b/python/wrapper.py @@ -291,7 +291,9 @@ def get_opts(efpobj, label='libefp'): core.EFP_DISP_DAMP_OFF: 'off', }[opts.disp_damp] + dopts['pol_damp_tt_value'] = opts.pol_damp_tt_value dopts['enable_pbc'] = bool(opts.enable_pbc) + dopts['enable_elpot'] = bool(opts.enable_elpot) dopts['enable_cutoff'] = bool(opts.enable_cutoff) dopts['swf_cutoff'] = opts.swf_cutoff dopts['xr_cutoff'] = opts.xr_cutoff @@ -350,8 +352,8 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): """ # warn on stray dopts keys allowed = [ - 'elec', 'pol', 'disp', 'xr', 'elec_damp', 'pol_damp', 'disp_damp', 'enable_pbc', 'enable_cutoff', 'swf_cutoff', - 'xr_cutoff', + 'elec', 'pol', 'disp', 'xr', 'elec_damp', 'pol_damp', 'disp_damp', + 'pol_damp_tt_value', 'enable_pbc', 'enable_elpot', 'enable_cutoff', 'swf_cutoff', 'xr_cutoff', 'pol_driver', 'ai_elec', 'ai_pol', 'enable_pairwise', 'ligand', 'symmetry', 'symm_frag', 'spec_elec', 'spec_pol', 'spec_disp', 'spec_xr', 'spec_chtr', 'ai_qq', 'qq', 'lj', 'special_fragment', 'spec_qq', 'spec_lj', 'print' @@ -373,6 +375,9 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): #opts.terms |= core.efp_term.EFP_TERM_POL #opts.terms |= core.efp_term.EFP_TERM_DISP #opts.terms |= core.efp_term.EFP_TERM_XR + opts.elec_damp = core.EFP_ELEC_DAMP_SCREEN + opts.pol_damp = core.EFP_POL_DAMP_TT + opts.disp_damp = core.EFP_DISP_DAMP_OVERLAP elif append == 'psi': opts.terms |= core.efp_term.EFP_TERM_ELEC opts.terms |= core.efp_term.EFP_TERM_POL @@ -565,6 +570,16 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + topic = _lbtl[label].get('enable_elpot', 'enable_elpot') + if topic in dopts: + if dopts[topic] in trues: + opts.enable_elpot = 1 + elif dopts[topic] in falses: + opts.enable_elpot = 0 + else: + _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, + 'invalid value for [T/F] {}: {}'.format(topic, dopts[topic])) + topic = _lbtl[label].get('symmetry', 'symmetry') if topic in dopts: if dopts[topic] in trues: @@ -649,6 +664,12 @@ def set_opts(efpobj, dopts, label='libefp', append='libefp'): _result_to_error(core.efp_result.EFP_RESULT_SYNTAX_ERROR, 'invalid value for [iterative/direct] {}: {}'.format(topic, dopts[topic])) + topic = _lbtl[label].get('pol_damp_tt_value', 'pol_damp_tt_value') + if topic in dopts: + opts.pol_damp_tt_value = float(dopts[topic]) + else: + opts.pol_damp_tt_value = 0.6 # libefp default set in efpmd + topic = _lbtl[label].get('ai_elec', 'ai_elec') if topic in dopts: if dopts[topic] in trues: @@ -897,109 +918,109 @@ def get_frag_count(efpobj): return nfrag - -def get_multipole_count(efpobj): - """Gets the number of multipoles in `efpobj` computation. - - Returns - ------- - int - Total number of multipoles from electrostatics calculation. - - """ - (res, nmult) = efpobj._efp_get_multipole_count() - _result_to_error(res) - - return nmult - - -def get_multipole_coordinates(efpobj, verbose=1): - """Gets the coordinates of `efpobj` electrostatics multipoles. - - Parameters - ---------- - verbose : int, optional - Whether to print out the multipole coordinates. 0: no printing. 1: - print charges and dipoles. 2: additionally print quadrupoles - and octupoles. - - Returns - ------- - list - ``3 n_mult`` (flat) array of multipole locations. - - Examples - -------- - - >>> # Use with NumPy - >>> n_mult = efpobj.get_multipole_count() - >>> xyz_mult = np.asarray(efpobj.get_multipole_coordinates()).reshape(n_mult, 3) - - """ - nmult = efpobj.get_multipole_count() - (res, xyz) = efpobj._efp_get_multipole_coordinates(nmult) - _result_to_error(res) - - if verbose >= 1: - xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) - - text = '\n ==> EFP Multipole Coordinates <==\n\n' - for mu in range(nmult): - text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) - print(text) - - return xyz - - -def get_multipole_values(efpobj, verbose=1): - """Gets the computed per-point multipoles of `efpobj`. - - Parameters - ---------- - verbose : int, optional - Whether to print out the multipole arrays. 0: no printing. 1: - print charges and dipoles. ``2``: additionally print quadrupoles - and octupoles. - - Returns - ------- - list - ``20 n_mult`` (flat) array of per-point multipole values including - charges + dipoles + quadrupoles + octupoles. - Dipoles stored as x, y, z. - Quadrupoles stored as xx, yy, zz, xy, xz, yz. - Octupoles stored as xxx, yyy, zzz, xxy, xxz, xyy, yyz, xzz, yzz, xyz. - - Examples - -------- - >>> # Use with NumPy - >>> n_mult = efpobj.get_multipole_count() - >>> val_mult = np.asarray(efpobj.get_multipole_values()).reshape(n_mult, 20) - - """ - nmult = efpobj.get_multipole_count() - (res, mult) = efpobj._efp_get_multipole_values(nmult) - _result_to_error(res) - - if verbose >= 1: - mult20 = list(map(list, zip(*[iter(mult)] * 20))) - - text = '\n ==> EFP Multipoles: Charge & Dipole <==\n\n' - for mu in range(nmult): - text += '{:6d} {:14.8f} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *mult20[mu][:4]) - - if verbose >= 2: - text += '\n ==> EFP Multipoles: Quadrupole <==\n\n' - for mu in range(nmult): - text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format(mu, *mult20[mu][4:10]) - text += '\n ==> EFP Multipoles: Octupole <==\n\n' - for mu in range(nmult): - text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format( - mu, *mult20[mu][10:]) - print(text) - - return mult - +# # +# # def get_multipole_count(efpobj): +# # """Gets the number of multipoles in `efpobj` computation. +# # +# # Returns +# # ------- +# # int +# # Total number of multipoles from electrostatics calculation. +# # +# # """ +# # (res, nmult) = efpobj._efp_get_multipole_count() +# # _result_to_error(res) +# # +# # return nmult +# # +# +# def get_multipole_coordinates(efpobj, verbose=1): +# """Gets the coordinates of `efpobj` electrostatics multipoles. +# +# Parameters +# ---------- +# verbose : int, optional +# Whether to print out the multipole coordinates. 0: no printing. 1: +# print charges and dipoles. 2: additionally print quadrupoles +# and octupoles. +# +# Returns +# ------- +# list +# ``3 n_mult`` (flat) array of multipole locations. +# +# Examples +# -------- +# +# >>> # Use with NumPy +# >>> n_mult = efpobj.get_multipole_count() +# >>> xyz_mult = np.asarray(efpobj.get_multipole_coordinates()).reshape(n_mult, 3) +# +# """ +# nmult = efpobj.get_multipole_count() +# (res, xyz) = efpobj._efp_get_multipole_coordinates(nmult) +# _result_to_error(res) +# +# if verbose >= 1: +# xyz3 = list(map(list, zip(*[iter(xyz)] * 3))) +# +# text = '\n ==> EFP Multipole Coordinates <==\n\n' +# for mu in range(nmult): +# text += '{:6d} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *xyz3[mu]) +# print(text) +# +# return xyz +# +# +# def get_multipole_values(efpobj, verbose=1): +# """Gets the computed per-point multipoles of `efpobj`. +# +# Parameters +# ---------- +# verbose : int, optional +# Whether to print out the multipole arrays. 0: no printing. 1: +# print charges and dipoles. ``2``: additionally print quadrupoles +# and octupoles. +# +# Returns +# ------- +# list +# ``20 n_mult`` (flat) array of per-point multipole values including +# charges + dipoles + quadrupoles + octupoles. +# Dipoles stored as x, y, z. +# Quadrupoles stored as xx, yy, zz, xy, xz, yz. +# Octupoles stored as xxx, yyy, zzz, xxy, xxz, xyy, yyz, xzz, yzz, xyz. +# +# Examples +# -------- +# >>> # Use with NumPy +# >>> n_mult = efpobj.get_multipole_count() +# >>> val_mult = np.asarray(efpobj.get_multipole_values()).reshape(n_mult, 20) +# +# """ +# nmult = efpobj.get_multipole_count() +# (res, mult) = efpobj._efp_get_multipole_values(nmult) +# _result_to_error(res) +# +# if verbose >= 1: +# mult20 = list(map(list, zip(*[iter(mult)] * 20))) +# +# text = '\n ==> EFP Multipoles: Charge & Dipole <==\n\n' +# for mu in range(nmult): +# text += '{:6d} {:14.8f} {:14.8f} {:14.8f} {:14.8f}\n'.format(mu, *mult20[mu][:4]) +# +# if verbose >= 2: +# text += '\n ==> EFP Multipoles: Quadrupole <==\n\n' +# for mu in range(nmult): +# text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format(mu, *mult20[mu][4:10]) +# text += '\n ==> EFP Multipoles: Octupole <==\n\n' +# for mu in range(nmult): +# text += '{:6d} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f} {:12.6f}\n'.format( +# mu, *mult20[mu][10:]) +# print(text) +# +# return mult +# def get_induced_dipole_count(efpobj): """Gets the number of polarization induced dipoles in `efpobj` computation. @@ -1909,9 +1930,9 @@ def old_to_dict(efpobj): core.efp.get_point_charge_count = get_point_charge_count core.efp.get_point_charge_coordinates = get_point_charge_coordinates core.efp.get_point_charge_values = get_point_charge_values -core.efp.get_multipole_count = get_multipole_count -core.efp.get_multipole_coordinates = get_multipole_coordinates -core.efp.get_multipole_values = get_multipole_values +#core.efp.get_multipole_count = get_multipole_count +#core.efp.get_multipole_coordinates = get_multipole_coordinates +#core.efp.get_multipole_values = get_multipole_values core.efp.get_induced_dipole_count = get_induced_dipole_count core.efp.get_induced_dipole_coordinates = get_induced_dipole_coordinates core.efp.get_induced_dipole_values = get_induced_dipole_values diff --git a/src/efp.c b/src/efp.c index 30fbba6d..a3d95f35 100644 --- a/src/efp.c +++ b/src/efp.c @@ -1752,7 +1752,6 @@ efp_compute(struct efp *efp, int do_gradient) efp_log("zero_atomic_gradient(efp) failure"); return res; } - if (efp->opts.symmetry == 0) { // standard case efp_balance_work(efp, compute_two_body_range, NULL); } @@ -1764,7 +1763,7 @@ efp_compute(struct efp *efp, int do_gradient) efp_log("efp_compute_pol() failure"); return res; } - if ((res = efp_compute_ai_elec(efp))){ + if ((res = efp_compute_ai_elec(efp))){ efp_log("efp_compute_ai_elec() failure"); return res; } @@ -3206,7 +3205,39 @@ void print_opts(struct efp_opts *opts) { assert(opts); + /* + switch (opts->terms) { + case EFP_TERM_ELEC: + printf("ELEC"); + break; + case EFP_TERM_POL: + printf("POL"); + break; + case EFP_TERM_DISP: + printf("DISP"); + break; + case EFP_TERM_XR: + printf("XR"); + break; + case EFP_TERM_QQ: + printf("QQ"); + break; + case EFP_TERM_LJ: + printf("LJ"); + break; + default: + printf("Unknown"); + break; + } +*/ printf("\n--- some EFP opts parameters ---\n"); + printf("EFP terms: %d\n", opts->terms); + printf("EFP special terms: %d\n", opts->special_terms); + printf("disp damping: %d\n", opts->disp_damp); + printf("elec damping: %d\n", opts->elec_damp); + printf("pol damping: %d\n", opts->pol_damp); + + printf("pol damp tt value: %lf\n", opts->pol_damp_tt_value); printf("enable_pbc %d\n", opts->enable_pbc); printf("enable_elpot %d\n", opts->enable_elpot); diff --git a/src/parse.c b/src/parse.c index c0ff273c..1c1b3a90 100644 --- a/src/parse.c +++ b/src/parse.c @@ -1584,7 +1584,10 @@ parse_file(struct efp *efp, struct stream *stream) /* default value */ //frag->pol_damp = 0.6; //commented out for ticket 3416 - frag->pol_damp = efp->opts.pol_damp_tt_value; + if (efp->opts.pol_damp_tt_value > 0.0) { + frag->pol_damp = efp->opts.pol_damp_tt_value; + } + else frag->pol_damp = 0.6; // default frag->if_mm_frag = true; frag->if_qm_screen = false; diff --git a/src/pol.c b/src/pol.c index 9da0cd6c..f5b938ce 100644 --- a/src/pol.c +++ b/src/pol.c @@ -626,7 +626,7 @@ compute_id_range(struct efp *efp, size_t from, size_t to, void *data) struct polarizable_pt *pt = frag->polarizable_pts + j; vec_t field, field_conj; - /* electric field from other induced dipoles */ + /* electric field from other induced dipoles */ get_induced_dipole_field(efp, i, pt, &field, &field_conj); @@ -959,7 +959,7 @@ efp_compute_pol_energy(struct efp *efp, double *energy) assert(energy); - // counter to know when to zero out induced dipoles and static field + // counter to know when to zero out induced dipoles and static field // need to be explored further static int counter = 0; // think how to skip recomputing static field in qm scf iterations diff --git a/tests/pytests/__pycache__/libefp2py.cpython-312.pyc b/tests/pytests/__pycache__/libefp2py.cpython-312.pyc deleted file mode 100644 index 77b386f0cb676591ea0123f7c60f94d01fcfde41..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5023 zcmb_fT~Hg>6~2pBLej1*305Eh5)u;sHUx^}B*b=!MQVecX(ptO>v2_~yAT;6DZ3&z zWR)<}Jm8KWWc$IQo~h+YW?}}<6uRi3k!BqUjW1vwtfp;vk7Sf=Z-ax2Ca_Yi#oD^F zmBP*dw_^@)CD}i*j5*C}&2#j%d`U*kX&A^bsm(4i4h;j^fN7E{QiO5ZwHtgXlQU3J z@L!|Zs{Oy%s?}^cUuZ8*4dc=C_cZoC!B*+Knm8?sinb zl{^9i8ng0s|vW2N^scNMz58a(Q z18;?NwZux*S_kGN?yS9JV{mw^vO{*+mOw@(}ZTWkv6%!LbgNY)bfD748{+*-oGd%Oww=y-lU zCC5&+xfp;RT|NshXCJqc^Rv}UDN5+GU|*uQ==i+=!{ zX2BwvAq(VtqelDQ(B81*dn3+~IquZ@2a)!crF~_oi%61Aq9r|ia~LF(R5@1p0rI0B zBvR+#w4Oo~{DHS8=XIyhIjX(;y>V5X{~i6W^~2+ZGHo1I4ar0_o)X_JK0!#OgvVr6 zH40PlP-;5KtMs@K#;PunOsVw8yeO&_lUUV{r+6_nqUs}wgn%ED&n{J;;)O|3HH%3; z5-P|v4o@akb21SNVIle{FQ^ti9v+SHp~zG!F*XLu=f+C1>AX-9%|)%`Xhda`ybw*` zXe2b6IRBU?p3DM27UJW)Fg~psV$tz%9IMt6BpemaMMYjUiqn&md`g&BZ6u;-I2IZc z!sC;CJf)h*nl@GSNdZ!znzSKA92(1N`fw@%J2HOC#}bifYWgwx(0)w5uT{hO>6!3o z@BQ#wai50;S}!`c*r2l$M}eFOQsF4n^dVh~jC=FzZZJ246U=aL%j4 zmxiyLm>X1Fp6n;{&bgrt17fSmVphuc$&ClL>Nx7MJ=xwXr!tgcbFJFEvdx>bKeYKb zbf~5g!eO1+KACCU9ETMeVB0$c017-q&sqFAOi9Sn|nx-<})J($|@J z=9(oJmYr=f+rG}!7L2y-z0E8zi(8W}1}F?%Vwf{fh^e>~d#6 zELvr@O(`QgZ}Iuyx5Iaa@1D5llly`zU4wGlV9|!c)MNuP<55~WZhe^V`?mj1|J{T4 z?D9{Jtn3TQtwB&@WHzvAZJRh0#+4nB8K2^CT|Is2^p!KYp4|H@j#iSWhEyJt<8$deZ79Z{+c`YNlsXCbz}w< z&b!LB%3SL${mt;A@gdg(*t$+qrDC!-A+oD|ZfKpU&ZK0fel5^?lirfCmB5>@6Qj)f z6s93Z%S=Go*K_;y!s*2`OFikSop<-$qvYOqR=SQ5e22_-Zl<&Io6l~1_EkFnzTA4CoJ5Ux+0XI; zx$*Tie@ia4MQO!P>RKtYUb4NKEO(!AFE{lq1@AZgbStNv?reD8ICo5O)z1wnR#*1q zeQV&RIsfrW+o3h!v2=4_{_|U6e*faks_QMtVF5q{*Y(Qz%4?>~z+dYd=6R*omwW%x z7Yq7Lp}~Fq=={-ZLzzMH?BxC0y^6DG6*A*&ztx=A=fii5i``3px#Qpi=b@Ke0>dAz z)b4vp^pAw|7w4f3H>&I3@E}`V_9H?j&XwJp`((aL=GuXXuy^CU@tQfKU#qUkOkH^^ zXTN-SjdLy69lqyy!2RqI=>WfX63Tg2xn`Mb{+hoznD;Fl{VI`<$SrR^fu=$~UU@5;t{#q9%WP&U>bv!EhWS*~g>?2Cs#{V+P3}89NNk2FcWH zl+0n{rUHYZ*(3>f8=B3M1*jldfm$RRP^)AIYLgs5?UECyLn;93>@n83G6>vA(y=F= z6uvwr_AB)ah#@7QP;8eO-oaKQ)*c_uTbFIuaEigO&N3>Z2KT7nEzoYsL`++Zn+@x1 zzHYY9anRBG=E#>26+Ias?kZHv-yG)Tj}rnEWM6H8mLP%MTmt*ZK3^xqT< z)0n@br&|j8uUm2TvgJ4UmC9RUKZ~|>2779MP`lU5y5s?C`}2aJHm&A zN*42`1n-WU4hd6PtTH83KECQ{`|i5ECA~{u2)$DOV!K>&Ahv(<2n=f0yVY#@tTPl=_bYOb`dlFZ+n2VQiaj#S=mFd7P2W&f6wt|aK=HgSN zsZym5Y#(4xM*mAgbsXNc2DX1U~M7 z8aOKUzk3j$(+P?jQe~_RP@HQu@9&BJR`#4osQI33`5{rwGRYaNjnuK{j7U+|6Q!6l zpe7Gy%Nt~(R9g|qpu|)2i?WOb+5FR@$~Y|b>~coHroju3OD0N>EV9}oOMn(a1}z7o zN-jDD!o$+1mii%DirF z5YGX4&I!aT06f%U7 ztZ|G|F-*@ON!vngb&)o(WJk2lLP%Gls0`B9Xr#R>9;#TVL;n!TpMO2Y|KTpL+`lV&h4b)lWRa|UB@WP^ zi)81rKMtO4Dv`m`LX-nDc-C%P*gM1Nt}B z|KV)wwm&2klt~_$bh9phn^56C5>=i;nH+!isRLCnyq{3@;4zUveIH%_kVmGMD7e2x z1_~-wsqizAApE2CeF^f;GuTs`Oa`9Ao~9BcQhb;E_A?(R$giL+D=!^P5EvUAAd%eg z&|_W2cO}IP&L@mP6RTQIkk0-yy(ix{%EbG-hL1OSKTi;)NS{cs&qv=g%jAI$WZEf` z`>(B}p=76}{Yj1b7!6kKI#fyMAOPSPXLD7Lg-EY1$%36Z?K0;dU<)+{!a zu<9DudTw62*BBtUevUs2bHHY_Ws;mhg9zHohP%96Ry%tpJBVLoC(tXC+t@;c!pf5U zDxvi0Sn2Q@OOPH|=Jw|w6q$WeW2O}VPbULO8{1>3N2{u;#+oX1bSWfX1aIuKbDAna zour+08oN=Br(&vk&{E-pPNXn;;+1=;ckn(qraCWDB8xV6Nj~Vatb*KFC z5zctZ*NvQaoyXN9 ztGuxtl2ZpZvy1Y?#sjdP!!@&M^28RTNs^$W-Nj&!@Z-rJrulrYQO=fV~MThBU~0@xmIymMnu)rDQDG2T9|E`GcVq1}4sa+=0?=fa*O zd8I-f<2_wtymMjWcSZ4ib}M=gG&P$zOooiTLa3T==$$|N3kvnVbU#lCq>z6$oF2&)cS;44i^I+>L*0$%6nYfrLlJS5%zH=dM0=5nC#@+>@rG!6m&CO>kkKde4Ij#Kh`gg77nP9@U zTkQpNhsiBVe!KCS3OpY=?MU-DJ93;R;_3z~QgZ9qZiN~ewTQ#wx0?t2Sj9T9@m`I$ zcfA}opAWx?NaZ@PD*&7S353Tg=jyUa@SBJZZ1e~5z7GDUk?9<^TdIn;>49{uqn1L&Y^1 zV#f$3+b+f^J4>v_5Oa*ogOF;yz-1al;F%dvq$OUgFf%5bo@Mw-RL&*nIZ;F`N=%h& zPJk}Qbo8I7NtLob`B_WXK%u+gjokw(Tw8wLnveX<@6