lammps-20201029-bp154.1.24 >  A b|k՜!M@eee2,4/B[z8kpO@YSq5%#&k)kzHv^s R0DVUuZڴP*cFޠ)RaߖZ+dWkG_p@ʃ69v§:Q9'"1E %CnPb-O=H+8>p>?d   : "D^dl             R  D ( 8 9 \: FG8 H` I XY\ ] ^>bcpdeflu v w x y$ zClammps20201029bp154.1.24Molecular Dynamics SimulatorLAMMPS is a classical molecular dynamics code, and an acronym for Large-scale Atomic/Molecular Massively Parallel Simulator. LAMMPS has potentials for soft materials (biomolecules, polymers) and solid-state materials (metals, semiconductors) and coarse-grained or mesoscopic systems. It can be used to model atoms or, more generically, as a parallel particle simulator at the atomic, meso, or continuum scale. LAMMPS runs on single processors or in parallel using message-passing techniques and a spatial-decomposition of the simulation domain. The code is designed to be easy to modify or extend with new functionality.b|jobs-arm-11SUSE Linux Enterprise 15 SP4openSUSEGPL-2.0-only AND GPL-3.0-or-laterhttps://bugs.opensuse.orgProductivity/Scientific/Chemistryhttps://lammps.sandia.govlinuxaarch64 vEoA큤A큤b|jb|jb|jb|jb|j_b|j___acda356880322bf99f9d9215925de069190446ac4d105101d799d727cc970ddd0d9defc38a4ab3fc4035210a91e13f504443e9f454fa15fc3763b6876a3365fe4c20b47f0911fb4429cba5a09c6fb409b7dc106ebba4d554caa0c4f1a8223a735da31b5ebb2784d64e236db96cf32a88c85846a5703f5aad9beec69358221d8ddd00c6542e67de987f1f773411068a8b52040f9f172182cdbbf8b7a71a9bcf250ef768b019917e9b6e1c9c6b6120c3a21d782df58db624cbcbd489848267f0857da9631d3627ba27b1e9ff72b895b7070f7c245a8ceb713981fc845fef28a30c95aaf85ef3005b2308c0f7060453e8e429c29e7b6f0d70248345968c7de1eec8rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootlammps-20201029-bp154.1.24.src.rpmlammpslammps(aarch-64)@@@@@@@@@@@@@@@@@@    lammps-datald-linux-aarch64.so.1()(64bit)ld-linux-aarch64.so.1(GLIBC_2.17)(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libgcc_s.so.1()(64bit)libgcc_s.so.1(GCC_3.0)(64bit)libgfortran.so.4()(64bit)libgfortran.so.4(GFORTRAN_7)(64bit)liblammps.so.0()(64bit)libm.so.6()(64bit)libm.so.6(GLIBC_2.17)(64bit)libm.so.6(GLIBC_2.27)(64bit)libm.so.6(GLIBC_2.29)(64bit)libmpi.so.40()(64bit)libstdc++.so.6()(64bit)libstdc++.so.6(CXXABI_1.3)(64bit)libstdc++.so.6(CXXABI_1.3.8)(64bit)libstdc++.so.6(GLIBCXX_3.4)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3a`2aV@__gD@^@^@^^^_@]@]UI@\@\[}P@ZZ%Z1@ZliZaYY|Y|YzY@Y@Yu@YqGuillaume GARDET Nicolas Morey-Chaisemartin Christoph Junghans Christoph Junghans Christoph Junghans Christoph Junghans Christoph Junghans Christoph Junghans Christoph Junghans Christoph Junghans Christoph Junghans Christoph Junghans Christoph Junghans junghans@votca.orgjunghans@votca.orgjunghans@votca.orgjunghans@votca.orgjunghans@votca.orgjunghans@votca.orgjunghans@votca.orgjunghans@votca.orgjunghans@votca.orgjunghans@votca.orgjunghans@votca.orgjunghans@votca.orgjengelh@inai.dejunghans@votca.org- Disable kokkos on %{arm}- Use openmpi macros to always build with the default openmpi version.- dropped 9cdde97863825e4fdce449920d39b25414b2b0b3.patch merged upsteam - dropped 61ce73273b3290083c01e6a2fadfb3db0889b9ba.patch merged upstream - bump version to 20201029 (stable) - General changes: - Significant refactoring of the core LAMMPS code to increase code reuse, simplify new additions, improve thread safety, and benefit from C++11 features. In particular the following changes were incorporated: - Refactoring of the AtomVec classes to simplify adding new atom styles to the code. Also adding support for writing complete data files for atom styles ellipsoid, line, tri, and body, which had been previously missing. - Implementation of string tokenizer and potential file reader classes to improve parsing of text files and avoid the strtok() function. This has lead to substantial reduction in the lines of code used for those cases. - Transferring of utility function from class members to standalone functions in the utils namespace. Several new additions of such convenience functions - Using const std::string & instead char * or const char * as function argument in many places to simplify string processing and replacing C style string functions with their equivalent or expanded functionality of std::string member functions - Incorporation of fmtlib to replace and simplify many cases of output formatting. This avoids many complications with printf() style functions since no special treatment is required for processing bigint or tagint arguments. Since fmtlib has been accepted as a C++20 feature, this is also future proofing the code base. - Avoiding use of temporary local buffers for output formatting and thus lowering the risk of buffer overflows. This was enabled by the previous two changed. - Replacing NULL with nullptr where applicable for better detection of incorrect use. - Major reorganization and significant expansion of the manual: - The manual is now split into two parts: a User Guide and a Programmer Guide - Most of the content related to using the library interfaces, the Python module (and Python in general) have been moved to the Programmer Guide - The content of the external Developer Guide PDF has been incorporated into the Programmer Guide section and expanded - The documentation of the C-library interface and Python module has been expanded and the documentation of the individual APIs are now imported from the source code by means of using doxygen (for C/C++) and docstrings (for Python). - Redundancies have been reduced, cross-links added, and links to external websites checked, updated or removed. - Addition of a unit test facility which is integrated into building LAMMPS with CMake and using the ctest tool that comes with CMake. Tests for a variety of features and styles are included with a code coverage close to 40%. The added tests have exposed a significant number of previously unknown bugs and inconsistencies (e.g. between plain pair styles and suffixed versions or between Pair::compute() and Pair::single()) in the code base, which have been fixed. - Significant refactoring of the LAMMPS C-library interface and Python module: several new functions were added, especially for introspection, ad-hoc numerical constants were replaced by symbolic constants defined in enumerators and synchronized betwee C and Python, where possible and needed. Most modifications were done in a backward compatible way. - Add support for a "UNITS:" metadata tag to potential and tabulation files and code to error out if the value does not match with the current setting. For some potentials, mainly manybody potentials, support for on-the-fly conversion between "metal" and "real" units was added, so that a file with parameters for "metal" units can be used in a simulation with "real" units, if the pair style supports it. - Ordering of #include "" statements has been revised and the lists updated where possible after analyzing with the IWYU tool. - Significant refactoring of CMake scripts enabled by moving the minimum required CMake version from 2.8.x to 3.10.x. CMake build support is more reliable, portable to different host operating systems and efficient. - Conventional build system now always builds the LAMMPS library and the executable, so the available modes are reduced from 4 to 2: mode=static and mode=shared. The CMake build behaves equivalently. - Use pre-processor macros (requiring C++11) to provide compatibility with OpenMP 4.x and later semantics - Many small fixes and improvements. - Removal of outdated or obsolete makefiles. Removal of obsolete files and folder in the bench folder. - Updates and new commands or styles or packages: - New MLIAP package providing a generalized framework for machine-learning potentials. This currently includes an implementation of the SNAP potential - New USER-MESONT package for mesoscale modeling of nanotubes. - New command reset_mol_ids - New fix widom for modeling Widom insertions - New fix pafi to perform langevin or brownian dynamics time integration constrained to a potential hyperplane. Intended to be coupled to the PAFI C++ code. - Bugfixes, improved documentation, and new functionality for fix bond/react in particular RMSD based constraints. - New fix accelerate/cos and compute viscosity/cos in USER-MISC as yet another method to compute viscosity. - New fix momentum/chunk to remove per chunk momentum - New bond style special to provide a mechanism to implement special bond exclusions beyond 1-4. - Ports of more functionality to the KOKKOS package and several performance optimizations. Support for AMD GPUs via HIP. Update of the bundled Kokkos library to version 3.2. - Support for triclinic cells when using "tiled" communication style. - New pair style for charge-dipole damping with Tang-Toennies function in the USER-DRUDE package - Updates, bugfixes and adjustments to LAMMPS requiring C++11 in the USER-COLVARS package (now at version 2020-09-17). - Support for building triclinic neighbor lists on the GPU in the GPU package. Bugfixes and performance improvements for GPU styles. - Updates to writing binary dump files and binary2atom tool to become consistent with current text mode custom dumps - Updates to the user supported examples/COUPLE/fortran and examples/COUPLE/fortran2 wrappers to become compatible with updates to the C-library interface. Also work on a new, "object oriented" Fortran interface has started. - New LAMMPS shell command as alternative to the regular LAMMPS executable for improved interactive use. - Interface file for use with SWIG to create bindings to the LAMMPS library interface for a wide variety of (mostly scripted) programming languages (like Java, JavaScript, Lua, Perl, Ruby, Tcl and more). - Improved support for cross-compiling binaries for Windows on Linux. This enables building a liblammps.dll file and loading the LAMMPS Python module also on Windows. - Improved CMake support for building with "ninja" instead of "make".- dropped disable_noopt.patch, merged upstream - added 9cdde97863825e4fdce449920d39b25414b2b0b3.patch from https://github.com/lammps/lammps/pull/2381 fix a failing test - added 61ce73273b3290083c01e6a2fadfb3db0889b9ba.patch from https://github.com/lammps/lammps/pull/2381 fix another failing test - bump version to 20200918 (patch) - New fix pafi to perform langevin or brownian dynamics time integration constrained to a potential hyperplane. Intended to be coupled to the PAFI C++ code (Thomas Swinburne, CNRS /CINaM Marseille and Mihai-Cosmin Marinica, SRMP/CEA Saclay) PR [gh#lammps/lammps#1472] - Update of the Kokkos library to version 3.2 (Stand Moore, SNL and the Kokkos developers), PR [gh#lammps/lammps#2311] - Updates to KOKKOS package to improve usability with the HIP backend for AMD GPUs (Nick Curtis) PR [gh#lammps/lammps#2371] - Update of the USER-COLVARS package to version 2020-09-17 (Giacomo Fiorin, NIH and other Colvars developers) PR [gh#lammps/lammps#2356], PR [gh#lammps/lammps#2376] - Change behavior of fix bond/react to update all charges by default which is the more intuitive behavior. Keywords have been updated to be more intuitive as well (Jake Gissinger, U Colorado) PR [gh#lammps/lammps#2368] - Update of dump styles in the COMPRESS package to be consistent with recent changes elsewhere, added support for Zstd compression and the option to set the compression level (Richard Berger, Temple U), PR [gh#lammps/lammps#2331] - Use eigensolver contributed to USER-REACTION package to replace the old "jacobi" function to avoid licensing issues. Implement wrapper functions around templated implementation (Andrew Jewett, Scripps), PR [gh#lammps/lammps#2347] - Small refactor of fix qeq/reax and its USER-OMP and KOKKOS variants to reduce code replication and allow to add features (Stan Moore, SNL) PR [gh#lammps/lammps#2354] - Replace the use of the C-style NULL with the C++11 nullptr keyword, where meaningful. (E. Anne Gunn, Sheridan College) PR [gh#lammps/lammps#2358] - Replace numeric constants in Atom and AtomVec classes by symbolic ones via enumerators (Axel Kohlmeyer, Temple U) PR [gh#lammps/lammps#2360] - Bugfixes for the GPU package and related CMake/make files (Vsevolod Nikolskiy, HSE University Moscow and Trung Nguyen, Northwestern U), PR [gh#lammps/lammps#2307], PR [gh#lammps/lammps#2313], PR [gh#lammps/lammps#2322], PR [gh#lammps/lammps#2326] - Bugfix for Langevin thermostatting inside of multiple fix rigid variants (Trung Nguyen, Northwestern U) PR [gh#lammps/lammps#2367] - Refactoring of the C library interface and the Python wrapper for consistency and maintainability, unit test support for the interfaces, decoration of library functions with Doxygen comments for semi-automatic documentation in the manual (Axel Kohlmeyer and Richard Berger, Temple U) PR [gh#lammps/lammps#2310], PR [gh#lammps/lammps#2318], PR [gh#lammps/lammps#2320], PR [gh#lammps/lammps#2357], PR [gh#lammps/lammps#2359], PR [gh#lammps/lammps#2362] - Update of documentation build system to include Doxygen processing and integration of that output via the "breathe" Sphinx extension inclusion of the Developer Guide in the manual, update and corrections to the CMake support (Axel Kohlmeyer and Richard Berger, Temple U) PR [gh#lammps/lammps#2309], PR [gh#lammps/lammps#2312], PR [gh#lammps/lammps#2327] - Update headers in the documentation of LAMMPS style commands to be more compact and check for missing index entries (Richard Berger, Temple U) PR [gh#lammps/lammps#2335] - Update the compilation related documentation to use the sphinx-tabs extension (in HTML mode only) to make it more compact (Axel Kohlmeyer, Temple U) PR [gh#lammps/lammps#2348] - Revised internal and external links in the documentation (Matt Mansell and others) PR [gh#lammps/lammps#2341] - Move more convenience functions from classes to the utils namespace, update the code to consistently use the new versions and remove the old, update the manual to include the documentation of those APIs into the developer guide (Axel Kohlmeyer, Temple U) PR [gh#lammps/lammps#2319], PR [gh#lammps/lammps#2349] - Start of a new (and "official") Fortran library interface and corresponding sphinx API documentation in the programmer guide plus unit tests for implemented APIs (Axel Kohlmeyer, Temple U) PR [gh#lammps/lammps#2325] - Update include file conventions and update lists of include files accordingly, add make iwyu target to run the include-what-you-use tool (Axel Kohlmeyer, Temple U) PR [gh#lammps/lammps#2338] - Make internal memory usage reporting consistently use the same data type (Axel Kohlmeyer, Temple U) PR [gh#lammps/lammps#2363] - Add support to call reset_mol_ids internally from fix bond/react (Jake Gissinger, U Colorado), PR [gh#lammps/lammps#2240] - Add RMSD based constraint to fix bond/react (Jake Gissinger, U Collorado, and Andrew Jewett, Scripps, and Yuya Kurebayashi, Tohoku U) PR [gh#lammps/lammps#2314] - Refactor of USER-BOCS code to fix memory leaks and memory access issues (E. Anne Gunn, Sheridan College) PR [gh#lammps/lammps#2274] - Implementation of force history for Mindlin variants of the granular pair style (Jibril B. Coulibaly, Northwestern U), PR [gh#lammps/lammps#2196] - Updated singularity container description files to better support the upcoming stable release (Richard Berger, Temple U) PR [gh#lammps/lammps#2340] - Various small updates and corrections (multiple authors) PR [gh#lammps/lammps#2315], PR [gh#lammps/lammps#2317], PR [gh#lammps/lammps#2336], PR [gh#lammps/lammps#2344], PR [gh#lammps/lammps#2353], PR [gh#lammps/lammps#2364], PR [gh#lammps/lammps#2366], PR [gh#lammps/lammps#2373], PR [gh#lammps/lammps#2369], PR [gh#lammps/lammps#2375]- disable march=native optimization by setting empty CMAKE_TUNE_FLAGS- fix build on ppc64le by enabling gnu extensions, see [gh#lammps/lammps#2079], this is a bug in older version of the ocl package, compare [GCC#58241].- gcc flags an issue on leap 15.1 that is a false positive, see [gh#lammps/lammps#2078], so disabling lammps custom no optimzation flags, using disable_noopt.patch- bump version to 20200505 (patch) - update of the bundled Kokkos library to version 3.1 (Stan Moore and the Kokkos developers, SNL) [gh#lammps/lammps#2004], [gh#lammps/lammps#2054] - new Kokkos styles compute orientorder/atom and coord/atom and some related bugfixes/improvements (Stan Moore, SNL) [gh#lammps/lammps#1895], [gh#lammps/lammps#1902], [gh#lammps/lammps#1906], [gh#lammps/lammps#2033] - new fix accelerate/cos and compute viscosity/cos in USER-MISC as yet another method to compute viscosity (Zheng Gong, École normale supérieure de Lyon) [gh#lammps/lammps#2019] - update of the polymorphic pair style with bug fixes and a new feature (Xiaoweng Zhou, SNL) [gh#lammps/lammps#2000] - added option to create a dummy fix as a placeholder early in an input to guarantee placement at the top of the list of fixes. (Steve Plimpton, SNL) [gh#lammps/lammps#1760] - update to fix bond/react to allow using equal style variables a probability input (Wolfgang Verestek, U Stuttgart) [gh#lammps/lammps#2013] - small update to internal commands in kim_interactions to improve KIM simulator model handling (Ronald Miller Carleton U, Ryan S. Elliott U Minn), [gh#lammps/lammps#2014] - many small fixes and updates to source code (mainly for the KOKKOS package), cmake scripts, and documentation to address issues with recent changes and minor long-standing issues. (multiple authors) [gh#lammps/lammps#2003], [gh#lammps/lammps#2006], [gh#lammps/lammps#2010], [gh#lammps/lammps#2015], [gh#lammps/lammps#2022], [gh#lammps/lammps#2023], [gh#lammps/lammps#2026], [gh#lammps/lammps#2027], [gh#lammps/lammps#2030], [gh#lammps/lammps#2032], [gh#lammps/lammps#2035], [gh#lammps/lammps#2036], [gh#lammps/lammps#2041], [gh#lammps/lammps#2043], [gh#lammps/lammps#2044], [gh#lammps/lammps#2045], [gh#lammps/lammps#2046], [gh#lammps/lammps#2047], [gh#lammps/lammps#2048], [gh#lammps/lammps#2049], [gh#lammps/lammps#2051], [gh#lammps/lammps#2053], [gh#lammps/lammps#2055] - enable kokkos and OpenMP- bump versoin to 20200303 (stable) * General changes * The documentation file format has been changed from the custom txt2html markup to using reStructuredText (rst). * Many file read operations are now monitored for read errors and thus allowing to detect damaged or incomplete files like potential parameter files and restart files * Updates and improvements to the CMake build system to more closely match all the functionality provided by the conventional make based build system * Support for threaded FFTs from FFTW and MKL, support for cuFFT and KISSFFT on the GPU with KOKKOS * Expose neighbor lists to the library interface and the Python wrapper * Documentation of installing LAMMPS via conda * Many small improvements or bugfixes * Updates and new commands or styles * new dump_modify options to embed ITEM: UNITS and ITEM: TIME with information about units and accumulated simulation time * new pair styles cosine/squared, local/density, mesocnt * new fix styles wall/reflect/stochastic, propel/self, 'npt/cauchy` * new compute gyration/shape/chunk * new compute hma for fast, high-precision computation of certain thermodynamic properties of solids * new compute style centroid/stress/atom for computing per atom stress in a way allowing for more accurate heat flux computations with interactions involving more than two atoms * new third_order command, a companion command to dynamical_matrix, for computing the third order force tensor from finite differences * new options ratio and subset for create_atoms and similarly new options type/ratio and type/subset to the set command * new tool for post-processing parallel tempering trajectories * multiple updates, bugfixes, and improvements to fix bond/react * improved implementation of minimization style fire * support to run NWChem along with LAMMPS in client/server mode * Updates for packages * KOKKOS now supports minimization (limited to minimization styles cg and quadratic), updates to the KOKKOS library, general improvements and bugfixes, more styles ported to KOKKOS * several new SNAP potentials * tweaks to USER-INTEL to compile correctly with too aggressively optimizing compilers, corrections and improvements * bugfixes and improvements for the GRANULAR package * several new SNAP potentials and a new compute snap for training SNAP potentials * bugfixes and improvements to the KIM package, new command kim_param for accessing KIM model parameters * updates to the USER-COLVARS package with updates to the included Lepton library * updates to the USER-PLUMED package with bugfixes and support for recent releases * updates to the USER-CGDNA package including a new coarse grained RNA model (oxRNA2) * improvements and updates to the SPIN package, L-BFGS minimizer added * updates, extensions, and improvements to the USER-MEAMC package * memory leaks fixed when using styles from the GPU with multiple run commands, new pair style lj/cut/tip4p/long/gpu * updates to fix rigid variants to add gravity to rigid objects with overlapping (granular) particles * support for rerun and read_dump with USER-ADIOS * Backward compatibility notices * building the USER-COLVARS package with all features enabled now requires a C++-11 compatible compiler * due to changes in the random number generator initialization, results when using fix pour, fix deposit, fix evaporate or create_atoms random will not match with previous versions of LAMMPS. see PR #1569 * the gjf keyword for fix langevin no longer supports the option yes. Instead you have to use either vhalf or vfull * the FIRE minimizer has been replaced with an improved implementation. The previous implementation is available as fire/old. * new documentation has to be written in reStructuredText format- generify used mpi version- bump versoin to 20190807 (stable) * General changes: * further tweaks, refactoring, and improvements to building LAMMPS with CMake * refactoring of header file handling for improved consistency and removal of cross dependencies * refactoring of include keyword processing to lift some limitations and to enable KIM simulator models (see below) * Updates for packages: * major update of the KIM package to use KIM-API v2.1.x with support for Simulator models and new commands to generate variables for transparent unit conversion in input files * optimizations and corrections to the KOKKOS packages, especially when used with CUDA, update of KOKKOS library included in LAMMPS to version 2.9.0 * updates and bugfixes of the USER-COLVARS package bringing it up to version 2019-08-05 * new PPPM and Ewald solvers for electric dipoles and nuclear spins * optimizations and improvements to pair style and computes in the SNAP package * updates, bugfixes and portability improvements for USER-PLUMED package (supports plumed 2.5.2) * update to USER-CGDNA package in preparation of supporting an RNA coarse grain force field * new keyword hybrid/pair for compute pressure * new compute gyration/shape to compute eigenvalues and shape parameters from gyration radius tensor * new compute momentum command- bump version to 20190605 (stable) * General changes: + further tweaks and improvements to building LAMMPS with CMake. + improved error messages + refactoring of Install.py scripts in the lib folders to use the argparse module + better checking for style compatibility with suffixed styles * New packages: + USER-YAFF providing styles for force fields using QuickFF used for simulation of MOFs + USER-ADIOS package to provide Exascale compatible I/O support for dump files through the ADIOS v2.x library * Updates for packages: + consolidation of "soft" pair styles in USER-FEP package and addition of CLASS2 pair style variants. + KOKKOS package bugfixes and enhancements (Stan Moore, SNL) + new generalized pair style granular (Dan S. Bolintineanu, Ishan Srivastava, Jeremy B. Lechman, SNL) + new pair style drip for dihedral-angle-corrected registry-dependent interlayer potential (DRIP) + new pair style e3b for adding option to model the E3B water potential (Steven E. Strong, U Chicago) + new fix style electron/stopping for modeling energy loss through interactions high speed atoms with electrons + update to USER-COLVARS package to version 2019-04-26 + update of the KIM package to use KIM-API v2.0 (Ryan Elliot, UMN) + update to USER-INTEL package to enable use of the package with -DLAMMPS_BIGBIG + update to USER-PTM package. examples added, license info updated, documentation updates (Peter Larsen, MIT) + updates and additions to the SPIN package (Julien Tranchida, SNL) + updates to hyper-dynamics support (Steve Plimpton, SNL) + updates, improvements, and bugfixes to fix bond/react (Jake Gissinger, U Colorado) + bugfix/refactoring of REBO pair style to correctly implement what is advertised in the documentation. - enable support for kim through kim-api package- bump version to 20181212 (stable) * general: + major improvements to building LAMMPS with CMake. + significant consolidation and improved consistency of the manual after the refactoring for the last stable release + reduced risk of memory/buffer overflows by replacing most uses of sprintf() by snprintf() * new packages + USER-PLUMED package with a native interface (no more patching) + USER-SDPD package for smoothed dissipative particle dynamics (SDPD) + USER-PTM package for polyhedral template matching analysis to characterize local structure + new kspace style scafacos, which interfaces to the ScaFaCoS library of long-range coulomb solvers. * updates for packages: + USER-COLVARS: updates and bugfixes + REPLICA: added support for (local and global) hyperdynamics + KOKKOS: updated Kokkos library, added several KOKKOS versions of styles from the GRANULAR package + USER-INTEL: updates, bugfixes and improved support for using + USER-MISC: new styles, compute pressure/cylinder, fix ffl (fast forward langevin), bugfixes and improvements + Many small bugfixes, corrections for memory leaks and memory management inconsistencies and general improvements. * Backward compatibility notices: + the command line flags -restart and -r are no longer available. + the naming conventions for the group name of groups maintained by fix bond/react have changed. + pair styles in the USER-SPH package no longer support Pair::single(). + the meaning of the sign of mu in fix atom/swap has been reversed to be consistent with usual conventions. + the default installation prefix for CMake based compilation has been changed from /usr/local to $HOME/.local- bump version to 20180822 (stable) * New CMake option for building LAMMPS and all of its packages, as an alternative to traditional make * Restructured documentation * DEM polygonal and polyhedron particles * new compute entropy/atom command * New SPIN package for modeling the dynamics of magnetic atomic spins * New fix bond/react command to enable simulation of one or more complex heuristic reactions * New USER-BOCS package * Fixes memory leaks caused when using the GPU package and OpenCL * Various other small updates and bugfixes - drop 858.patch - merged upstream- bump version to 20180316 (stable) - many little bugfxes: http://lammps.sandia.gov/bug.html * A potentially harmful bug was found and fixed in the pair_style reax/c command - Added 858.patch to fix return value on ppc64- bump version to 20180308 - many little bugfxes: http://lammps.sandia.gov/bug.html * Various small changes and bug fixes in preparation for a new stable version release- bump version to 20180222 - many little bugfxes: http://lammps.sandia.gov/bug.html * added a pair lj/cut/coul/wolf command to enable Wolf treatment of Coulombic * added a new USER-MOFFF package which is an implementation of the MOF-FF (MOF force field) * added a new pair_style ufm command- bump version 20180117 - many little bugfxes: http://lammps.sandia.gov/bug.html * new pair yukawa/kk command * new fix python/move command for time integration in Python * new pair extep command * tools/doxygen directory to build a Doxygen style call graph and API lists for LAMMPS * new pair snap/kk and pair zbl/kk commands * update of Kokkos library * improvements to pair reax/c command * new info coeffs command option * much faster replicate command for large systems when using many processors * improved setup performance for large systems on many processors with molecules and pppm * more informative error messages when evaluating variables - dropped 30b482975a6a29db2265b44c4f27d6293eacb72f.patch, got merged- fix python install for openSUSE Factory- enable GPU support via OpenCL - added 30b482975a6a29db2265b44c4f27d6293eacb72f.patch- bump version 20171023 - many little bugfxes: http://lammps.sandia.gov/bug.html * added a new USER-UEF package * added a fix rhok command * added a bond_style gromos command compatible with the GROMOS force field. * added coreshell variants of the pair born/coul/wolf and pair coul/wolf potentials to the CORESHELL package.- adapt to new openlmi package - source mpivars.h during build- changes license to GPL-2.0 and GPL-3.0+ (#522368)- bump version to 20170901 - drop 573.diff, got merge upstream - many little bugfxes: http://lammps.sandia.gov/bug.html * added USER-MESO package * new compute aggregate/atom and compute fragment/atom commands- bump version to 20170811 - many little bugfxes: http://lammps.sandia.gov/bug.html- RPM group fix.- bump version of 20170706 and move to cmake (upstream 573.diff) - Notable new features in this release are: * refactoring of the neighbor list construction to be more modular and extensible from packages. active neighbor list modules are reported in the output * updates, performance improvements and new styles for the KOKKOS and USER-INTEL packages * bugfixes and refactoring of parts of AIREBO and AIREBO-M addressing some of the occasionally observed instabilities with the LAMMPS implementation * new interface to Multi-Scale Coarse-Graining tools of the Voth group via new MSCG package with fix mscg * new pair styles lj/charmmfsw/coul/charmmfsh and lj/charmmfsw/coul/long and dihedral style charmmfsh for improved compatibility with the CHARMM code using recent versions of the CHARMM force field * several new styles in the USER-MISC package * improved compatibility with Python 3 (now only the PYTHON package is still Python 2 only), improvements to PyLammps and its documentation * various updates and performance improvements for USER-DPD package * updates and bugfixes to USER-COLVARS * new package USER-CGDNA for coarse grained DNA simulations * new support for generalized replica exchange (gREM) via temper/grem and fix grem commands * support for treating spherical particles as 2d discs * improvements for load balancing via recursive bisectioning * new SNAP potential for tungsten and tungsten/helium systems * updated version of the bundled moltemplate tool * updated tutorial for submitting additions and changes to LAMMPS via GitHub * improvements to the documentation build tools * ambiguous hyperlinks in documentation are made unique * spellchecked documentation and comments * removed the obsolete xmovie software * many little cleanups, bug fixes and removal of dead or obsolete code, including in the tools folderobs-arm-11 1652320993 20201029-bp154.1.2420201029-bp154.1.24binary2txtchain.xlmpmsi2lmplammpsREADMElammpsLICENSElmp.1.gzmsi2lmp.1.gz/usr/bin//usr/share/doc/packages//usr/share/doc/packages/lammps//usr/share/licenses//usr/share/licenses/lammps//usr/share/man/man1/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP4/standard/d4c39e7c5cbeca40861ea9cf639a8a73-lammpscpioxz5aarch64-suse-linuxELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=a7cc889d59525adc30597a9f3591fc68a2e594f3, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=2f7816da1f6e1fa3689fe3737277a0468266778f, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=202a7217166ef716f5fb8fdc08ac24655b3cbe05, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=ed9d6f6549ffd06613ac561968cb4c2063ced81c, for GNU/Linux 3.7.0, strippeddirectoryASCII texttroff or preprocessor input, UTF-8 Unicode text (gzip compressed data, max compression, from Unix) RRRRRRRRRRR R RR RRRRRRR RRRRRR R RR RRAcXy4(utf-80d73dad7770fe3ebc042fc8ba49fc358ae88d8e9b8cd4705a1ee6757cdf5c71a? 7zXZ !t/卧] crv9w Ww՘64^5)Ànmeb^PoA Nw+b Án_%({Ծۢe[8Hd*oOCL~77d _c%Wl#bm *Jt"S.}٤} :pkqr@0pzwx2q<++jɵSEC1^5Hc]9ݘ|c._YxG|8 [JQ>\U}}m':s:}?-2 DCȞ`5%q ˜N4X2?׬? &ZF rR95~t{$sas:1.ܵ8%:eg~kq.yf&(L|\xѿbc&c|j'[oz֠붧`(k(}4?>\cfF\0-%_"Z(7^|ylԋvL ksQ4]zmg `(̧B.{\V'&3~_`|VZ3ߥZ5!c`_@s[8YfŸϏozrp>uۊ!DőܩbKˠ,ħY: 4WE%_f#lZ5ܾE ZqĔjn\ yX؜^$Ea ڽ D/`-VCݎĥ4F/TGȘWfRJv pU.R`[6>ư.y&/uqۖFWI$ &Cqz".xvA1^_fkm0CЛ,bouST$_<{#fw*kD 31Vlb4OT~`uAky5}D:QwWHCxve)JB{'߲R4XݦD#O%Ou&Od_eR#!&'ˏ 4Oov猀G9B_X^T0f\t8c(t裐E?n:x5WXH(u [-V"!H#S4Tx1ƽ!LjBϴTyMg0v#V 9=ѬIytW,,iS7MXTqVDbbJ, ػ3ww~8rDw.Yv~rbDµXStF^<]=,^`yT.0Im8 +yfqK@yypD}ˀF<5HVGdGk><τ`|=*}utݑ, ȂQR"7YpTlhau lt&DžPٸ؟dl #*C#Rͩyul#>uN$=a /􅝫|i^nŗ]gV,%VSאn z4#´v>1u3_Q"NO ٩-f sF2w 4g tiKwvjK(D)}>?,#x"͢C9bXm/cZ8AMO7O7mzt E T\ ʬ.X)'ӛOe̼ TmCA/'}#I\^;a/PP{%#3n(/ "tu1Իx񂌛q2nAq,q7-x]2%0Z^ X&#/VoAA%m/lUpv%!"\@Fح IA9YYwhcP헐vG@(_O/l;"N,ޑs^ò:"!'y*' j&,sRhl`jG #| #%fQqmO& >.R"mk,T[,f ,p:QZpkK@m&6FsFG_T3عmƦki^6}[wACx51r15ޏm0)]Nǡ>:H^xY!DY1Ybx^hItzې㷹e\Lݙ!;2lhʀƓU'i+˧HpdV f@mjx&[91Bӈ 6WEC}ƿЎ OI:7,Z6%QĢTrP;uy6I.7mgS0z;h8"!uS#ԖDVܣ.A`#mI.BI\9GeZClȣ3oZC ϠW f可wW:'E#dAL_vp T2pMĚ/=\,ebOIҶtzq}N!)#r+X^0EДˉ>(Rۚ??#oo8'UcIk= oBF| YIz֩:\?VEx KJ9&314jCRJ*qZ>Fs")̧r i+Iu"6uI(k_iJFOUl t!p0D FKofC wc n+r{QgjH}zXFt"0Vgj\$Bc1+c) ßl9$'euGt.W*e {U 9\?,o-ۭ)>sbV*mq/ 9at*JCFz6*G9iXGnY\*#H:JH+BzOw"  68dCT%2>նjmgu0Q/v=irЪ gR=RޗqH[eNUl,`rɳS Hg -9a:w] \M`t,hGVTګjq{Jɉ>,T+hZJcÿyd /$J|tU!{_TUs6IAŮ O׷]:&hs˲fŸO0 goP0)yʸ&#RLέN:.2d4lzB6mKO  RԇCSC"re@eeKWkRXxvX/n$DJ9 9cAK4pc3.kgl4 ._k1ፍ?P Se8z"SreT`KQ7G#wS:ٻ"q9ZyX|1&),Cc"dD ].^*?ޠˇ/G.zVf:9/Ss V_:dцhwС{pM0@bA`utmb0 خ?M˽X^/ɰ;YOFhMg~%:ᾴ0!% E2ъPFz! X+ݕCoID[qt~&/PeRq L\@<h4\-ztF'_OR akGowCޢп~_Nɕyt7Ù\ iZr@:Ces )v<]!XZW8]/r ֛nfi)L0 PIQOA<=s0m!JsB4 ]qEV sBZ39t4ܱzZDK'Df%gC=6/ ʴ~ IMCXq&'1Vq ыB Bn_. Eo! {1Q6YlWt!" Ksu!DDxim_52rȺ@HX ԕK):SsRɜrZ^!nRLxh.<ª4ssQ#WETu敼}{͑8bz7zcRV4h n ͺiBƭ]:T2ZH;fF n]J TD&#LBfV ur%X "FwU( O[ty"/KU,1اKZpiL;"8&^M׌o z-rd@54=dS,yn݆9M{Tt>^ Wx<⏏)IFzrl%6nǠ΍G oҗ$&]2"0M%\Ztl=_R$:[m&G|ɩ|ԩ ҭҟrķeL< ;jM*Fw)E Ͼ.^PEE/E\BL~өAD +w[R,txnjKht *fu^fIVt=y8 ]S@n>4d1 L"6O!UT^5IZ 9'cƸtX_BJ4'e m}4\T4!7LUU`[hk-p eġku kӯ]j& ak 煍!۱Fjӵ|1|^s%Y [2=QEcV:ւm)~Ijȿ)Vׁ[ez dMԝ934Lm($oi--iWVLlMB?1HEa. h"P:Lh_*"8VTDK4H9Bt2(t"f~Q/i.B-e|^ENk?o,>X&;3GI6{1uJ!*.ކW;0i2Dp r+}\qݲ6]Kc;)`Qbŀ> erpXl(ڨ`ZHr(&g^547QZ3Gq#!D^K#@5X8v~];pZ[eK.BT̤j:U.t@(d\wYoϙkDŞԘjT;RVKvҚy9QBB`kF! /Z+HG®~tv#g*(]~%2 Լl]O -$pV B"n%6D{?+a\UzP*mW66/, N-9'۽IdNmRBLDiG/}Ga4:HY$ NJog'CL5.c +8ݩ5r$x%:e";QJn6k#X\pVz&?C om o3ӔD]N[0P+e06V\kJ/Ν߻Eap/(ge|A0$>`2iQ͏HbpXNµXP[B7hkȤ(LfK2};e 5GY "G %궚,g2*5ӧnWj upP&ڑ?x/+ylof[P0#fx&Mo91ې) ˦2k 9PA.`S,Tb4?ڽj~  cU],ymP$#?\XVZǡϤJX$+9c_wF0q?&7 ,A=JI[7uNe`N:GX"@'簅P ӞV"] clBqicUagfim:<0$/ zݘ~v Q!nL+`n| a<0r萘RRpʷ#mR t vWc̵F1GܐT@/!G%51ݗZ|ߨP[Y/wlFq-k(, EK6M5d.:t&өJVʦAy1 *4 `?7īb: "oKn9yy1H/` :!J. 9`I*#ԡr%XSb{y̜Z#Waym_ɆV,AA3pG?Uea },c2sюԿ`I~7DiW@_l\:`a~R\Zx|-qhTM'S-Kby%OwJ.вHW;.yu)@3"jmꁄ(rT}-#*D,x 8 G4`&.1=ӳ|)n#-a/ioџ"%$3⩪QP"W0%p&RjJxIM̶wj6AkYEH@%Ad$߀>epk mkPГHa`t[2)aA$޿Pؽ|>twozO& h9ƍ%T-"^O(YZOpm^?vJJ:m0piqJzM h`%2aRؗ 0a#ygt/++pj0iPʼn~&F<: ԃFG[Ivdg`crA@|l< jByu4j 1 :KXvp].V$aNL9WNIkο‹f@_WBFW":Gk]&{]ÎGϐi}ٌ@%ZhySB<D0uu[8RIą9,>) ƯnLjPǩڧI4qwdW{C4#0v&.Z&EUyv>a3&16vYޓxg3_#ū2izRx/p6|õRrwjPF@:"YxrӐ%ApA C+ȸ5vXI6mT@Lo.L:xBv'NAݰb9τl"lӮyܜx@v^r/1&N¯=]ZL{C &;E/<$8O$_EE<)#Gݏ%-ZF U->)ދMA&x qsՑpAĤXH>Ql45,&#=C閃*ɽ*%+x:'C-uxiQJ)m0t3hW'aLaN?Q/R:AO-앉l=Űs`qpJ2&f"(i>ԚʯGeb63Q>8<_C:)P1d \]N{3zO|Է=Vk5pW*dym"\u {jUMy{umU/TD{ ]BSF 6 l$VLi=$O_df {Fp>r~e);̪ڴqAOfo)"Y!%p5CכSONsQf\Yis(45_@Ġ)܅En[M42Um,'iXPβ-xZ^UL.Fk/˥< Y5 n5\&,w 9&s[R(ΚpՑcXvӭ:ѽf)c7{Kd@S DړB[J+&/W2"o[yK̍_me 0GS"npw1;S`аjñ*WGGcW&.Z_kVECxCg7@$56m$Hz `75ߡۼ(XF,Kur6z ;>]eX4h>}OQ٦NUʲyּ*lVώ$[kZL\F'-1+-X@NLI] ~K>/[ƹJ{`fi.Sc+6=֤"9< 4gm%ꋿ̶6儒EpE7Aܟ.dFI%E'/⿜cgW=^0n UAb]M4k@BLe;WV_랒dX$Blu#j.D,̤b?̒&=VX}2jf ㄮVa;Sp:'^-dD'U5P2n{'P< |>$]qɫYHȯu\jUq&Dz $xҬݪ :c5Qd!{aQiQē2`Zq!3~o嵩ZH&(k $WprEYkS2ȓG@[-y+9 {N,r\pA n*-'3mmC-Hpk M"&8XVCp1lx1ҁۚϤ} 6r̀_ gfTȤ@YR4K]wH%m);Eu*hВVTʭ~۳WLjfĿV`: W#E9X`ΉGϺM"%ޚw-({nB8{T" %|L&~}]ᲓQhdHT79ttYX5ܷbQ@ƷȨ3AQ|tN*3!LJڍf1H:&Bgk(7ڃV^ζq1~ m TɹU×+OEY.IR브D{yΩ ;=ɩ:ka a:0Hazb :$T2g߈)[^XC$z+B)rO' QݭUVs,*2w ^MKG*g}xJP!F@,D&^e"f>9ܖuVWРiϻ|S.5 Hz-Vs/Os*8D׹\.>B<Ϧ*]vE/1PR)~6E͗Ơ,7:m?D1$ }i6Y_܁k1'?3 -y=䨤]b%hLXybG1y+Q~\~{M{:|Qٰ_:3'Z0js!˸_85x#LI0&Y*}MN^|ɾ5uSQ:* \FGޚ}O]6'Ѧ=O΂7&_3eCمFݕ)xq^@F 0d:ETÈ0wgR+;NR_Cz EBֲt5գYqG %ۗ gEgRw36WUPI6E״I^M4i/49E@3AC$Sw$7xu+'>!=ov:ΣӁn:g|OBǎ<@(o>vt8uSGF!U2xUQӼh"4)!O4fPejH;1Z'<]\iql+cw{ᬢT \܄ѱyT1KLY[E57or#+M-"iN=^m킵LPv}fTS2.{CDDn~O`IxvH:%wۃ'` +jߒ&I ]Mr{!![5n+uh*gPJ&qp eT`ЂϤOFb$"$g<m!YUqJ U~{ڨSź")BGdV &>R- E1s!/QY;P8f8_oyߪSԃbzb$q!3O OVWG|ؕZEu3MO*`)jlm39k31b*mYKU<.(HkF1S:{r@DuSy(ivq~n`R*21I3Fhl ѐ"5AӄEP0Dn3H#kZaC8'@+ȱXtb! B3bnzyQ k\Rn8iVl9M͛j'̟SU\bWUE1S5ƮgFl/#sLmM+)Į9K=:PAY1?>o[ʹ1d^N'A!S/ȳߊ!x,JIA6.4 ^kN sJh'VO?~o V5/&Sr [Oi Q$69BDgXUw%fD\ '|Rپ#$GzW%AO/\w&_۪. R( ):9(k~+Sp<^f9 6gF딋:f[d~ SI(MD6ܣ#*2iٍ=zOώȢTeYUibaZ*O7 Ԫp$hz`bt =iF OHUA{|SBqT v CԳ@Gxq3 IzC97?ڨNa ?,䚘x2E?oĄBY˽*lLH)XFhR4դg ֟ T9LBaE_T7l,XT*4o`H&>#>9 T23姕NZ\wVӛyA B{V%+ceᦛ&'=!n@ǔE D =,pqS[[ 4t,T6Je Xuw-RjjPr(M=ܛz8('DeX׼ fEQYތa=uƲvo&t5K#*ޒucW9.o<$.ooT @r24BNwd!j\N'JKRїIݟW_8Y\"Īq}?6e5ےa;jBj\cHΚ6*ŰRcܢHܲXET,; .ѱPVE[ކR%e|ng4wSK} e#R++j{~!5ΦbczYqOY^hE8r%TiI6Ʃ T1{K({\ϨO;87#Kڵ ĸ* <)Ww_mυM.Z] f!srݣbVƂ@P'Y#0xz2޾^XN֞A !OZ EuffP^VU˹wnq"6UZGMa|mekD'SmA9/ KSI٢ێ Rrpiqh۝qc(oۅ9|1Q}RY&A"w{FFroA#>gO<9HsJ@uU o$2~* #, e_.~}T>j))hU[/jw -LP:8I2H#Hހ}>_Aze (u#N2ۦBB3qLn۟?֞]m&Fd$(5U(Eϒ%m l.~kLW 0_Şo BEwzCoVl6aԘ4Ö, rӾeom } 884 Cir##xwj* sV@fM.󥌵jXwG_:ҴH+]WBKU$?Ysej;9qm}7E͛S#uC [QғL""\3 `Jދ]vf]L!i'jwn]'nّAi^/MB[e(!< Ch0@Ozr[TrӚ5"2#yS۰W6I |B{l 圭8݋kcY_B僑2)_8?/U&+>-f |Jm.U'(%b63vG>8뤥66xvU~F)O$v!fBP! m}ɗ_rLU,SFAnSΉM f\@o6E! 3ﴢwTc˝J^\U1z'`H<3G0xjQ•WGg^HA{0b 4I B/K7dk ?witɱ$D昹sSM0r<#2 9/u \s`a(N!k1U% xJI!u51 '@ՑQm_-g*:]л&X,d !}6O}gpqXqs{ kNĐQiSLR.O ȉ31.txĢ7!4¢ǔ'nIhk9 #3]^$R8S?#w\A@2>ŰL7p/E[. vZ!27("+Z3\~ =rfѰLϳd!e-EZj9njLo}vٵ|1S 8Tp!flwGtu4lɠ"UhL[{vAL=KK7%ClLU, 2Z Wp U IwX};KX#"uK 6 F{t"Z_^pPY곑ovO-vM'z!W=vujk%ԵB޷. t;7rπoZ>A8u@BAd-6Q6K^uKcfhLk>i:kd\ts>Aᘖ#unЍɷ\K!ԧPH%pkhLR?-"(mM~lt X `eGn2ҵ'V'54m+K^Hj( kڽ‚l/߂ /a,H4ԫ',; rScܰm" ؕ&78=ļcJ"lL.Q 4zT(]"/NV[J"1dQQKiC . Zן)݋K0m"+1PA?䪥f~!}x9N%;Cj+JU2?3%K~.:a-R+5`&dLů AOTN?w3VBJ%b d=!hS%.)8-V{Ϧ`HeP0EYD!xPIQݯ|(}kp'.W!,}9 t=GdA|sOܗ +rĢ^ߞNxfxA"q(7j(g7>Ӑ iX|uդzZlpӻ!UNuZ.<,ěM IU64$s \cLՑ@>4.޼U>sG74)Z"ڙ,T", #ar|KKN0e![j[q"D)LHbQ>sUO7*kP*lڬIvr/<{P ,_Ld^, 8m08QgBo濾QW!BI]s+*?Mz [&tr &s pw9{ʺKdEʀ2+X/C9:)S}숄ysrq5ݧ-IV,GQ8p ֥Duu_%_dT%~L( ]yeHfEIte1EJ{(Ʉ "w/]pZ x]i*nʖ") qAUbȎ;Ҷ`p-'9޼KqXDP2GaVvxb& #yZ~ "n<4%B+: X/1 cځ@BP~TЍv`s~_)eJ;F*nrS9'fc)CdyPVC=?JV$&V2B.[c3JhA瀏ip=߻L +َ0 fo$z$H*EpP+w;p.Ԯdln\WOs }w&υҁ9EZ D}y<],+r$wᖬ}Q ]|Z-E VFK3GߟK]V=lJK.n#N粴Hbe; 8(~Ix wip:XyMak,B_u* 鉵8 v#;U /E*(r\-{*"[d]tK,:ITߦ 08-pw@'P<dVM2N4e6 9|!mt"&oN=}ĻW_WJ [WC ]埏~ZǴy-l%A,lpÑHܔ vH0͈G0` ( o W,~ǃ8z7Pkٰ]f54u#cqߞn\*b e޹"5>$u3A/s5nAmf ۫6?Xִu֣-|f9ZS ۉm$dי^9Kz@DRu.{mq=(4uBk;а%ɳX^\7@{]H&BDfͯyH=.:Y4-_lO-a^N>6SyRZd̓Z mӻ.uL24wS8l:Y'}fqWJCnb@%Yf!N%Cgf.~x*Ig-1샱\U h0oNި8k: x1|dːZ<{UPi`t5hWsA6byf [}^e`h :\L6ܙ'X;RE ](qrecWn{Ф*Ki/ܔtw:tA-u6 Wϖ.#kDnVJD1%ʩLB[ReP_C=s)eWpQI],)Oڍ"Φ:Q A^ 9#1;†<(XnE*KB޻#AmW{ϟ,]= bZͫj-x؝ &Ha9a[8kOEAlMn}2V&ŨۉZܭjP]Lq[!+JؠN3vQ~GZ. js~GAvO<_`!?r>4x=\+WXS`,?*ư@/dܠ!F6/'l!AwKwVF VXUPe/̢[pKI¼A-<3SlxDy=gUng#K}Л>sաh D\Up &#mE hJP^,֠EF@w&ܯR8Q㧚u+F2AmMy16D:L`<2(%ȷR#k XΕ;5̡K--ojrU6|R1RSƕ[FGCP>$ޏ2jOobH*ӏd "a׿ 0 93J}dNAZzZQZ5+wD8ڣ@Ḓ}g^wonӽx1w \<%[Pw7'?[䦚94&{NW. 51!gZuX?mĈ$r7N7f" /Ȥ鐯#\I+Fpq}VYmMa|-f$ibZQn]2= &{|ڽ*/ήfX/\<Ã2"\vTWe]1fICDz@#]*ʺ{`l@Co{:-xH\Zv~[}ORi%?dD#fE< P*(XDQ?.Qco=7ٻl\8#~?W&`h!2T=];LŅz/T)V e;ga1ݟufv'npFNWc7v .+r\-S.pK(0H 'ȈQ{ ϰUt1%{@kSI0ե-$ZXfiB?E3Y4sn\>L.E)ZXL\7q_T.`N:W';ܸo"FQ$!*^#4?u2-Ab>XI&#kʣ8 2ԳacP6Ӑ=2H./#V7s,qTe5iY}Xu\ ~{3} zux9O0\疭3c\$;O j/ B Ph3.sO Si.$^E/YVmm_f9 8$hx\td)Tq08yk6#e({j̷OLSGq^Q~ 'x6S?,şZ<ÙRG(C{{`a ~AE&z jΣ,C1Y+.6޲A_̩[MXXt|TbuI+`p8Ǽ΂V TTR.{cԄj-d͌N2J@&4fKֈg7ڥ_m{T|ZwIۆhdeW/u;U=dŏ.x & dȽyr ̲A2I2E*ceBk&VV؞jR5kPĉLhOMX ۋJ Te"]ƙ̭ CÜ z1t z_cA7kuGi}?b{ $ΏjJ.WE.ZG3"gI״`u\?!" >Wڊ ?4&e%[8lGtþ~{&zݿRqKkRb` /~>A+:}¦uרMQ%msZK@o&BQ yaSL"siZbj>z[O$87XwW&ށk[P1%v8,up"2\%vLqKMRP!1/rGoINlD'm =:3U|k) G9i^Qơ%.[ꧺ{4[yn٣VifRW=!WrjL`5D{!dM"/mͫla:$pKrH3USPc~3Wz.m>9LoV[818gkz\?!g`^dyj fG g_+|WF,XORozo0Z"D ]-ifT= ́,0,^&V</,52.Y~]F a54*@$ZufqͣĂOXwazNOs t+@A6M걒z= g;.,?xl;Hw'37t sA#vml\nڊTlKƳ*C nEZc}So57tչ W?|te g,p<%u]VZ6N9o{A'e?&;0Xvr}?p'H FZ4v)Lnez\Tj71rbVI) h 5⢖:bٓ[b~7) VЇbܮg7Q1@b+B&CAInZw;B.:̳'c&|~sԝH"|qQb|w x5Năs8'zXgW98Hk=1EO-)_S" &m*ŕGSE 'P>qXټrPfY 9V.7ШO4 }v-jAj@~~Q!J+Bߥtc\T]I k#ʪ5џw5v^i yޚB WcqCTM6jim_"kc!D,z]B97R .*:i?z"X-H=صBUeex8{^=h`*e:'Rv2R(ލ:R؊S<4 ?4&|5vhzJ5t&8os LƊVM?O#ހMsg>T[ # ׎zE`!<}C|m؟2kHA dm@} e2]R[|>A7 +zA%wM f=npM {4İ9;J*4~ҵ 5:t${++'uTOg&\"D(`&ATz}sM3+X O01ͬ৮#.^\4);)_t=M v7RҐ5n21,klʤPd$NX}=B}\rOapYSstJ(yYZ6ITw»1 Ag<f:x!VךG60$æ.21,k vc֡Ecvj&[;<*c~xJI6A<>L/K Yŧ|ݑu eAhѐqzȱJ^[F'Qd%G #9Ԑ>vj\*&AV6f nxI[1 sr:~ho}üIbSr Ov+ˇTT*~|HZ@Bu7ܺϕ7ONHu} Wq⢸nNN%[ᨯAcEnĉh7S7GHX??_qv5=jkS#"&cb aA`~*cSTLFZOIujzTO> Ȅ)V=}EFJC*Rewy/sESs ^ wYBmdIBN;jcg;`}i%aN*'[o}>y]Τ˴h6>-^Ӗ?Mn]v$ˆ w%d-?-hf~h8u~jI4t"M{,u'Na"œ (oNʷ f 1k^_}r?.^Nȃ uX.5sMXYX>i}XǬ߮!2I RӖbᇕ,iʓwC}gܠjj҃{t :T!OPϙ ]#1>Cu~/orX4@S.8AY%i?L:R|MGvE}j^YŬSܧ'x%28 uhC[+9o/H6 gfgw-#5xBb.Ğ= lO$?ίOi*Xhwuբ /\FLp# m9Fw֮G(Q @hn isF)D)"xc|m .*w/h-w7R0(6tcϣ1L:`=/EU~>EtDS? :9M'vvV<3!8g+Ē-޷ RXrMܡ\gb]i`6 d.s0A7/ xE2Cf6ٛ\Ś;o^ ~%'@4!ܹ{實웠b'?Za|Qpm zp$݉~t[ZcF*%F'4kAFequRYhy/80:l {!<.?}D}QwÝQTyK 0_*L,q3قh_F >/Aij[abC+K:(oM kA%QqWAtI,u"~ƀ+}~,vD// .n'&FB*K9@v~z{4>k|9W4WE) 0E~;l@|A|++m4sب*@7qtޓӹ5g(%e"+Jd̓^ȾYųMAia5j"{~6v;q Vfc$?t*D/_$9HtG}ž=CU̐D8zu$YN۫EׁػZlK=7y{HdYQk pJIRz <[(4h:ɏ7a,ya t'Md>ٗFK{/BH`.eRyv#Ls`!`f Є|Ni/!drK"{V[-6 ^\ǘ%w|DHG>ycyFBd\; ӣ!h'+JrߌzxGKKu᪭Vàn){InOPޯ {&RY&/bAGhZqC_h9Nzr @I5~zlw+EPʥ; son; &tS߷0{}6?廞 =zq #SU um5H!2HvLg5Rڐ¿@޻|"Z lBrdE`d7ꥢIcImMkھ8 g& Bi:ed"e(-O( ٯO {}:ϵ&-Q GwcT⽓< Cydvʉ|I}/Ztmp<;(o|58okT1?;Zu@Hm`ѕ{}5/aj hTsgy>p/(&@kg}DžkcF2HXӟ*%z&3a=?o'^&x1P/" W"ܷ>MmTņP׎yڰCR[<[I.&tayBRFO8֗ o,W)-0)AT0Dp/P,JvUz4|޲G bbnH0;6So?>N5u'N'[WK'x"Dv8Lo%`Ǻ]I<5 oU,}Ά (@IJ$NYԔ  }y /ou>>4ٓ'Q\m#$W|E'yP* c9O,c vIw6//gvטr;߳X+u}f> ͢PבXs%L )GZEݯN'(*L îk`$3^~IF"~iMMKeh%V{ya919jX+͖.s^%/ըjx xms SʘOA׌)E_g?~!gͰp6Lw׉C[ݽJe\NE ̗20/9 ܛItIctūn]DK,,9я*h#יy|p]ol{C @b<( 6a x(BR'Wys&aY:luF[!eTT0YS73vt8E(!p0(PdꐆԲCGigvvos! ,OX9=;zXno(x lz{I3LO֚CRHdd轭D-xR83Ⱥ=l՛XCƟ.6wܵ avWqk0~(~i?J}U"^vHD= ]̮Xauk.oLZ^;0qatFr_ 9B CtՌgTT++:@ƄJմ&0tx ȝkV~Y4 a6̄ רߏYsҢ2'O8G 3fܾVtCO|->Ynm"[x\F.O ].P Lv=ӵ/sdf=:% _?с+/iM:Rۊɖ!ϕ'L+5-_[XdkDMC:7>&{Z<{_l.\f(,ؑ*Q9^5lk7,/4\r)^FĒ>}7T =OCW{(6h '!)qS`ac{Q'N2pH:=Yމ R :NkhK.Q:\yޥKy[ /qV 8F]aoNP ͏){lMXw)`BqHX=2dJ9'2?PEA^o \SQ Dx֞`/C( %0nj)\A}5w+.I<Gi D2-SViM\ 0$#3kn`ٲ0O}s c(U4Gu:# AXing2߀rL:FD$wD( iJS:K$ݾרA!\Ia%v$4Ӿ~Z!zczjrD+na{YRmakPUuTAwgmdu5z@0g7ۄy-H 5=y4vD8}ʜʝ0Z6h8 -ո9!g̕(|n`7ul?,3#h"§ 2 aMƬI?.ߖ\Pe/v.EA:T!cC"EC:$9I5ZTX]9cm6,Xu?5m+%uR+@ik d g 覮fL {e>d/]IKD ~AbPaIni:C%&_6Ƙ`~)wb+j)S u3 &fpl̿?eg^}R"P*@+ׯEr*Ns\&byZ}5ݬ X_˟#"z@2Q?3xQ3`)Zi#)c.rRUk*x4jQQz+fXt᪕`Tb*Er2j#l$#X6\KÝ|}x()FN :J|s(lXmzW { g_p#GNѤȟ'ހ; VsVc$OBTrYNM1 9F]S"KЦs'NKu< 8cT{5AZ7yL|Zw%1J|RðMw'SƷkD`j0]!FM}ix=b#F5prѽInq5_^k'蜀&֙&TʓbH+%"~W C T ?by,uS~?"Asn66g)f\NL#*^]-9;2U4-eru=. 5o)Ƃ\'20(ې:GiA0 GJ.OV k3HJF8dXߐp!"9X{6#nm0EfQ7 @ l蠝kM8)G [)ΤDĀm%cifUS"t(<[ct }=%j{yW ]Y&e^J 2o1QZ/K~Vu䝛=2DGtzq?5&?b]@lνG[z+P 8Ciȃ YSciʝɂ3nVϣx\l]WQ(˛UHlP\5@/0Gh Jб.^w1$K|>C&lg\pcp\/,w82K>oUQ6DsWykFF6d矚0)V[*TRLt#:m6-`'KWd|/"饸 e=\L`0aSN_Y͘:T9֚n%x"#ދDHϘ*:- lm67&׌L@01f#Dypc>jŷ;-dZ܇01^HjdTOo>Xwle;P-!_oc=67MdPu|MjPRփx&63CXеh6l7E~ Wo g5HNSf>.ɋC #s{"h›{q=ݹ!h4#=5vn3[/q2]ϔ-3?,J$Qް6Pe,q,)k Ηs{R4_%+$vvDw| jrvzN~b):/ftЋ6c.dcs@ |A@m/c=(DZS&q\ [x:z5\)]GoEDʞċs7 /$cA=5}$gusC#UQ},M] &c(‹@z7Xp5CtИ5TU2;:,Ʉ %je󧎏r'}K̟Ml 2ydcDNQS9 F B]DGi$ϪC_ӄ%V{uf9WDǏM(`W/xP xgARMeʊ ?$ +ҵ8m/ 0zJ\N5ț˫ 3HXx7tʉ {`ӲepS:",_yuU?qgƵSbG9;!-c~u 3 醡K u`>( 3BwYFZJ`(˗n˅|E$͚I޾;Z dxPx'ƝN_q(txkq!.μJ/89~3wY*4 w#$uSq 3rN;yXr@V9$9;΄a C)(}ス=D.0Ң瞜Ep eVI~ ttI~bG׌JF0Z-(xtfI8hJvfv~e@L Q!<ч"U5jَ?@h. )JkZ0*u/! SAF]39ϱ\5t;%zL ? 5m(7O tsP-K|>L!Z NEM9;ԛBN fiUr#XVkޢz1؞q+pP_R:-gNH֤ >vo5gߤ&qv֊}#'8yR㘣+Ύgr2H N";5 fۗy^Ntl4l8V$y>Ĵamn,&hJ9͌V4ﰥ#Fd_LRxNW>4Dve}rTFuTBdL 1. "⵺l[G+{5;ҔOa,P6S-UVqg1U5ȁǃ魾oX&נd)ǟdɱV U;0cYSL QS b S.W-VL3z7h֚ؕ-zDVF }syѡn[wFv.rTn}aW%94eMjު!){ 'N΅ƕ @4Ԍ^~p^~(!%H;8V5X5U!zf k%%fҗWUTH("&:+ `}EAR+^ [| zV#>J˨c! jjް;?~7av}jv4vvT.N&\ *L-Q4"b-Je]Ui˵P~kX4GŇfgط-IǷxϏ}z wWq{K f.l&3Ng@|mnQU>[Oxu*99di&Ԁ,WW,]˃=s;CǿtC>NLW79¦(}0z5jUjVQ@HW7/>c0XUdRʂ Ew9Pbpd:':K̤g't>>.K>*KT#g,޾hWXBŅ q{=f_E"nxi'tqAlH oCV{iֿ,2qFKL|*|24u- Ae~h|e3!S[9`T&wZ k>{EzxB>%_$Gc,fv^R81D^񌾆!~^pGthy:fL-|  5ĸNԽiC 'H9,Ts0ef=?b0*pJ~rBB[9ϸv4HKa8( ' "ڹ W> }s=U x|29RUԿZE/"}=3ؖձ TIh HjY'吸e5\vp?#3zB5 \ ^[cPモ)d Fi ? y1+oξ*P(PygudX@NEAVAю1_G6@g;ᤚ?.cwQfǠ(\HM!~&'0,,h}~fö=1v Q,q÷ֶ~&Z &I> כ:]dVG&ycTd^ڪT Hk=Iud N9`,-Hfl4ˁA^ NJ7p!`+ #v #>s> laʛO dZہ}3==zdTp'Sk)ԸF_k\R<#4ұ9>7pwV xe1"'b&r)"oVo!v6NJs8[ zayl ;1̜MuFIBtd*%n T]2p>v\53?}a#VIv2/BQB/Ao&+1s&f>NS-( Şkl?u]霴DR=$Y\dkFlE%Q_0SqCk̫VJc ݢM{N,^n0 @&)dP3",{%) Y:nDK%#bIuw֦%[ط`N=2eK~m-d{Ͻq>aTcZC_l3A1NXR)$q}XUi_h텋IlWCuo-,AX5 ҦMǃӎ$ʊTl&sn53ѡ(y`p) ,4E"}y"/ 9C`e\5\o_~㡉Og~@;Q/w>+`n'PƤIP%fؘn'i2V|$:) Z%#) ݳʰSP{9(_]A; $`r ɐyUͣӫjB;9RHӊn 0 jǓgۣGMAL>oFl> t*h49ܫҫx%>u䆂=0j ,-UHUy$xM **ղ Ω̮4=g7#z V1Q{/;Hӕ^RZ+NvkDgjVe0/GVj\WapަHEJv mc 1akgr+qw YrPJ3SrUF_2J>׵Nb I6k?dbA6^ /1M\" ZC{c*3ĝFZ{64I%B:jutF4eyzZײ|siwݶ`WsAAb Sh+z_}-So22 cҜ46L(p{VyQ)9O+TսI^F%#ln`b-jFʌ<`ąhAѷ_<j@bz-oDu?RT ĠY E?0K/uɄC41,H6(v5Àggx@3Ix0VfCP^Ҿ5 S]c1DZ[J9WN̈́#riY Vӎ@mUlSN:Mno<|jXGlAO1QffءwSTzJ'#`7i_y[o#)?ۀ 8?dhRA#1~CmPaE8m~(ʩlXȴԢMrX(inSv6RVrʝ]FǾؽlW6MR1@W5=>)O+^Z*E ~n{}?/ wH# r"Qs[â1.M[k'>gU;#J#\c;\<6 nl2"%}W*d /B {4؞2fˉ6sgo»@1҂vyaY:93PwD I`pE;ø)w`I(S䢂|hzo-t2.69ajB^KВX` ^ry6U߇/5jc;ZC̗8 3iN)+kAUr$m7"-<#.U^Gaj^sjF$CdB]<|~iQ6R|\Yӽ=~7d/4Qe af`-%!GDN/!+8%Wͻsv YZ