openmpi4-4.1.4-150500.3.2.1<>,flop9|97s:]7nbǣH[s^ Vs*Wwtٹ:gQ2Q'\GI7֜5y`(=Ǚ?_E?d   I  $=^k     8  l ( *,/2r2445L7!(7[87d 97 :8 >m?mFmGmHoIr XrYr\r]u$^bc+defluv w0xdy,zHX\lptzCopenmpi44.1.4150500.3.2.1An implementation of MPI/SHMEM (Version 4) OpenMPI is an implementation of the Message Passing Interface, a standardized API typically used for parallel and/or distributed computing. OpenMPI is the merged result of four prior implementations where the team found for them to excel in one or more areas, such as latency or throughput. OpenMPI also includes an implementation of the OpenSHMEM parallel programming API, which is a Partitioned Global Address Space (PGAS) abstraction layer providing inter-process communication using one-sided communication techniques. This package provides general tools (mpirun, mpiexec, etc.) and the Module Component Architecture (MCA) base and plugins necessary for running Open MPI/OpenSHMEM version 4 jobs.floibs-power9-187SUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/Development/Libraries/Parallelhttps://www.open-mpi.org/linuxppc64le# Always register. We might be already registered in the case of an udate # but mpi-selector handles it fine /usr/bin/mpi-selector \ --register openmpi4 \ --source-dir /usr/lib64/mpi/gcc/openmpi4/bin \ --yes# Only unregister when uninstalling if [ "$1" = "0" ]; then /usr/bin/mpi-selector --unregister openmpi4 --yes # Deregister the default if we are uninstalling it if [ "$(/usr/bin/mpi-selector --system --query)" = "openmpi4" ]; then /usr/bin/mpi-selector --system --unset --yes fi fi_ H ` p @@P n^ j*3  iWokc1},FE k PP j )72 p;go7N Y I r YR  Loq  K8N.W' 4 D PV^oAAAAAAAAA큤A큤A큤A큤A큤flflfl(flTfl9fl+flRflRfl+fl+flTflTflTflTflTflTflTflQfl9flQflUfl fl)flRflflflflfl" header file, which ends up including Open MPI's text VERSION file (which is not C code). Thanks to @srpgilles for reporting the issue. * Fix MPI_Op support for MPI_LONG. * Make the MPI C++ bindings library (libmpi_cxx) explicitly depend on the OPAL internal library (libopen-pal). Thanks to Ye Luo for reporting the issue. * Fix configure handling of "--with-libevent=/usr". * Fix memory leak when opening Lustre files. Thanks to Bert Wesarg for submitting the fix. * Fix MPI_SENDRECV_REPLACE to correctly process datatype errors. Thanks to Lisandro Dalcin for reporting the issue. * Fix MPI_SENDRECV_REPLACE to correctly handle large data. Thanks Jakub Benda for reporting this issue and suggesting a fix. * Add workaround for TCP "dropped connection" errors to drastically reduce the possibility of this happening. * OMPIO updates: - Fix handling when AMODE is not set. Thanks to Rainer Keller for reporting the issue and supplying the fix. - Fix FBTL "posix" component linking issue. Thanks for Honggang Li for reporting the issue. - Fixed segv with MPI_FILE_GET_BYTE_OFFSET on 0-sized file view. - Thanks to GitHub user @shanedsnyder for submitting the issue. * OFI updates: - Multi-plane / Multi-Nic nic selection cleanups - Add support for exporting Open MPI memory monitors into Libfabric. - Ensure that Cisco usNIC devices are never selected by the OFI MTL. - Fix buffer overflow in OFI networking setup. Thanks to Alexander Grund for reporting the issue and supplying the fix. * Fix SSEND on tag matching networks. * Fix error handling in several MPI collectives. * Fix the ordering of MPI_COMM_SPLIT_TYPE. Thanks to Wolfgang Bangerth for raising the issue. * No longer install the orted-mpir library (it's an internal / Libtool convenience library). Thanks to Andrew Hesford for the fix. * PSM2 updates: - Allow advanced users to disable PSM2 version checking. - Fix to allow non-default installation locations of psm2.h.- openmpi4 is now the default openmpi for releases > 15.3 - Add orted-mpir-add-version-to-shared-library.patch to fix unversionned library - Change RPM macros install path to %{_rpmmacrodir}- Update to version 4.1.1 - Fix a number of datatype issues, including an issue with improper handling of partial datatypes that could lead to an unexpected application failure. - Change UCX PML to not warn about MPI_Request leaks during MPI_FINALIZE by default. The old behavior can be restored with the mca_pml_ucx_request_leak_check MCA parameter. - Reverted temporary solution that worked around launch issues in SLURM v20.11.{0,1,2}. SchedMD encourages users to avoid these versions and to upgrade to v20.11.3 or newer. - Updated PMIx to v3.2.2. - Disabled gcc built-in atomics by default on aarch64 platforms. - Disabled UCX PML when UCX v1.8.0 is detected. UCX version 1.8.0 has a bug that may cause data corruption when its TCP transport is used in conjunction with the shared memory transport. UCX versions prior to v1.8.0 are not affected by this issue. Thanks to @ksiazekm for reporting the issue. - Fixed detection of available UCX transports/devices to better inform PML prioritization. - Fixed SLURM support to mark ORTE daemons as non-MPI tasks. - Improved AVX detection to more accurately detect supported platforms. Also improved the generated AVX code, and switched to using word-based MCA params for the op/avx component (vs. numeric big flags). - Improved OFI compatibility support and fixed memory leaks in error handling paths. - Improved HAN collectives with support for Barrier and Scatter. Thanks to @EmmanuelBRELLE for these changes and the relevant bug fixes. - Fixed MPI debugger support (i.e., the MPIR_Breakpoint() symbol). Thanks to @louisespellacy-arm for reporting the issue. - Fixed ORTE bug that prevented debuggers from reading MPIR_Proctable. - Removed PML uniformity check from the UCX PML to address performance regression. - Fixed MPI_Init_thread(3) statement about C++ binding and update references about MPI_THREAD_MULTIPLE. Thanks to Andreas Lösel for bringing the outdated docs to our attention. - Added fence_nb to Flux PMIx support to address segmentation faults. - Ensured progress of AIO requests in the POSIX FBTL component to prevent exceeding maximum number of pending requests on MacOS. - Used OPAL's mutli-thread support in the orted to leverage atomic operations for object refcounting. - Fixed segv when launching with static TCP ports. - Fixed --debug-daemons mpirun CLI option. - Fixed bug where mpirun did not honor --host in a managed job allocation. - Made a managed allocation filter a hostfile/hostlist. - Fixed bug to marked a generalized request as pending once initiated. - Fixed external PMIx v4.x check. - Fixed OSHMEM build with `--enable-mem-debug`. - Fixed a performance regression observed with older versions of GCC when __ATOMIC_SEQ_CST is used. Thanks to @BiplabRaut for reporting the issue. - Fixed buffer allocation bug in the binomial tree scatter algorithm when non-contiguous datatypes are used. Thanks to @sadcat11 for reporting the issue. - Fixed bugs related to the accumulate and atomics functionality in the osc/rdma component. - Fixed race condition in MPI group operations observed with MPI_THREAD_MULTIPLE threading level. - Fixed a deadlock in the TCP BTL's connection matching logic. - Fixed pml/ob1 compilation error when CUDA support is enabled. - Fixed a build issue with Lustre caused by unnecessary header includes. - Fixed a build issue with IMB LSF workload manager. - Fixed linker error with UCX SPML.- Update to version 4.1.0 * collectives: Add HAN and ADAPT adaptive collectives components. Both components are off by default and can be enabled by specifying "mpirun --mca coll_adapt_priority 100 --mca coll_han_priority 100 ...". We intend to enable both by default in Open MPI 5.0. * OMPIO is now the default for MPI-IO on all filesystems, including Lustre (prior to this, ROMIO was the default for Lustre). Many thanks to Mark Dixon for identifying MPI I/O issues and providing access to Lustre systems for testing. * Minor MPI one-sided RDMA performance improvements. * Fix hcoll MPI_SCATTERV with MPI_IN_PLACE. * Add AVX support for MPI collectives. * Updates to mpirun(1) about "slots" and PE=x values. * Fix buffer allocation for large environment variables. Thanks to @zrss for reporting the issue. * Upgrade the embedded OpenPMIx to v3.2.2. * Fix issue with extra-long values in MCA files. Thanks to GitHub user @zrss for bringing the issue to our attention. * UCX: Fix zero-sized datatype transfers. * Fix --cpu-list for non-uniform modes. * Fix issue in PMIx callback caused by missing memory barrier on Arm platforms. * OFI MTL: Various bug fixes. * Fixed issue where MPI_TYPE_CREATE_RESIZED would create a datatype with unexpected extent on oddly-aligned datatypes. * collectives: Adjust default tuning thresholds for many collective algorithms * runtime: fix situation where rank-by argument does not work * Portals4: Clean up error handling corner cases * runtime: Remove --enable-install-libpmix option, which has not worked since it was added * UCX: Allow UCX 1.8 to be used with the btl uct * UCX: Replace usage of the deprecated NB API of UCX with NBX * OMPIO: Add support for the IME file system * OFI/libfabric: Added support for multiple NICs * OFI/libfabric: Added support for Scalable Endpoints * OFI/libfabric: Added btl for one-sided support * OFI/libfabric: Multiple small bugfixes * libnbc: Adding numerous performance-improving algorithms - Removed: reproducible.patch - replaced by spec file settings.- Update to version 4.0.5 - See NEWS for the detailled changelog- Update to version 4.0.4 - See NEWS for the detailled changelog- Update to version 4.0.3 - See NEWS for the detailled changelog - Fixes compilation with UCX 1.8 - Drop memory-patcher-fix-compiler-warning.patch which was merged upstream- Drop different package string between SLES and Leap- Add memory-patcher-fix-compiler-warning.patch to fix 64bit portability issues- Link against libnuma (bsc#1155120)- Initial version (4.0.2) - Add reproducible.patch for reproducible builds./bin/sh/bin/shibs-power9-18 1718355823  !"#$%&'()*+,-./0123456789:;<=>>@ABCDEFGHHJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~4.1.44.1.4-150500.3.2.14.1.4-150500.3.2.1 mpigccopenmpi4binaggregate_profile.plmpirunmpivars.cshmpivars.shompi-cleanompi-serverompi_infoorte-cleanorte-infoorte-serverortedorterunoshmem_infooshrunprofile2mat.plshmemrunlib64sharemanopenmpiamca-param-setsbtl-openib-benchmarkexample.confhelp-btl-vader.txthelp-coll-sync.txthelp-common-ofi.txthelp-dash-host.txthelp-errmgr-base.txthelp-ess-base.txthelp-hostfile.txthelp-mca-base.txthelp-mca-bml-r2.txthelp-mca-coll-base.txthelp-mca-hook-base.txthelp-mca-var.txthelp-mpi-api.txthelp-mpi-btl-base.txthelp-mpi-btl-openib-cpc-base.txthelp-mpi-btl-openib-cpc-rdmacm.txthelp-mpi-btl-openib.txthelp-mpi-btl-sm.txthelp-mpi-btl-tcp.txthelp-mpi-btl-usnic.txthelp-mpi-coll-sm.txthelp-mpi-common-sm.txthelp-mpi-errors.txthelp-mpi-pml-ob1.txthelp-mpi-runtime.txthelp-mpool-base.txthelp-mtl-ofi.txthelp-oob-base.txthelp-oob-tcp.txthelp-opal-common-verbs.txthelp-opal-crs-none.txthelp-opal-hwloc-base.txthelp-opal-runtime.txthelp-opal-shmem-mmap.txthelp-opal-shmem-posix.txthelp-opal-shmem-sysv.txthelp-opal-timer-linux.txthelp-opal-util.txthelp-opal-wrapper.txthelp-opal_info.txthelp-orte-clean.txthelp-orte-filem-raw.txthelp-orte-info.txthelp-orte-odls-base.txthelp-orte-odls-default.txthelp-orte-odls-pspawn.txthelp-orte-rmaps-base.txthelp-orte-rmaps-md.txthelp-orte-rmaps-ppr.txthelp-orte-rmaps-resilient.txthelp-orte-rmaps-rr.txthelp-orte-rmaps-seq.txthelp-orte-rtc-base.txthelp-orte-rtc-hwloc.txthelp-orte-runtime.txthelp-orte-server.txthelp-orte-snapc-base.txthelp-orted.txthelp-orterun.txthelp-osc-pt2pt.txthelp-oshmem-info.txthelp-oshmem-memheap.txthelp-oshmem-scoll-mpi.txthelp-oshmem-sshmem-mmap.txthelp-oshmem-sshmem-sysv.txthelp-oshmem-sshmem.txthelp-plm-base.txthelp-plm-rsh.txthelp-plm-slurm.txthelp-pmix-base.txthelp-pmix-pmix3x.txthelp-ras-base.txthelp-ras-simulator.txthelp-ras-slurm.txthelp-rcache-base.txthelp-regex.txthelp-rmaps_rank_file.txthelp-shmem-api.txthelp-shmem-runtime.txthelp-state-base.txtmca-btl-openib-device-params.inimpiCC-wrapper-data.txtmpic++-wrapper-data.txtmpicc-wrapper-data.txtmpicxx-wrapper-data.txtmpif77-wrapper-data.txtmpif90-wrapper-data.txtmpifort-wrapper-data.txtortecc-wrapper-data.txtoshCC-wrapper-data.txtoshc++-wrapper-data.txtoshcc-wrapper-data.txtoshcxx-wrapper-data.txtoshfort-wrapper-data.txtshmemCC-wrapper-data.txtshmemc++-wrapper-data.txtshmemcc-wrapper-data.txtshmemcxx-wrapper-data.txtshmemfort-wrapper-data.txtpmixhelp-pmix-mca-base.txthelp-pmix-mca-var.txthelp-pmix-plog.txthelp-pmix-psensor-file.txthelp-pmix-psensor-heartbeat.txthelp-pmix-runtime.txthelp-pmix-server.txtopenmpi4NEWSREADMEopenmpi4LICENSEgnu-openmpi4.1.4/usr/lib64//usr/lib64/mpi//usr/lib64/mpi/gcc//usr/lib64/mpi/gcc/openmpi4//usr/lib64/mpi/gcc/openmpi4/bin//usr/lib64/mpi/gcc/openmpi4/share//usr/lib64/mpi/gcc/openmpi4/share/openmpi//usr/lib64/mpi/gcc/openmpi4/share/openmpi/amca-param-sets//usr/lib64/mpi/gcc/openmpi4/share/pmix//usr/share/doc/packages//usr/share/doc/packages/openmpi4//usr/share/licenses//usr/share/licenses/openmpi4//usr/share/modules//usr/share/modules/gnu-openmpi/-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.suse.de/SUSE:Maintenance:34207/SUSE_SLE-15-SP5_Update/26eb82da626b4b2a391e604d4c41cf41-openmpi4.SUSE_SLE-15-SP5_Update:standarddrpmxz5ppc64le-suse-linux  directoryPerl script text executableASCII textELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=cf2bd9fd050be34b8505f3d2a5447d3cbe241dce, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=d2f2d3d04890652d17ea8303f76d3a219110df72, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=374c74e859c37f1915f0d38917b46f2f5ef40945, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=9859b08c8c475bde69b609e14248da678d082138, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=2b4a7d74f6c1d58ce199aebbd4989fe80bc856c0, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=295ca1ba9ef3516e6c15c686e57f5c9d018adcba, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=06614037dc7dbc34e0817ef9f804817fefae86fe, for GNU/Linux 3.10.0, strippedUTF-8 Unicode text $+RR RRRRR RRRRR RR RRRR RRRRRR RR RRR RRRRRR RR RR RRR RR{ KL*[openmpi4-configutf-88cacfab0c544677366e462045c18d919535cc13d2f1b7e06dbc714a43e1cbd2d?7zXZ !t/ao ]"k%]. 0ƥMi޸1:\Q9HQl=)ݒd\ r"M{?ps$Kv܇Ń*y2>ՙ 58L `oU 8 >yC^`wXz{ ŅE@{NA{XݖCJ̮ v:h$p? 4; f[[}1C',7 w0PJ&5?>/ф1MA!~OՓ^0u '܃TvPv5<s<ϥ* xr@;ӫ7R/+L:Ϸd {$X Z5+҂IR9UBzFZ99xT佇DbqEBBЅ>ůeDwbg$zμѥ([IƊODzE=T1gDCႌhvܽLӗQ"T=4@!ɴaU!!M Pyv^2%-~Eݦɚ=t٣P s7l&p\IM:D@ WИݮԪ; ٪sNXT?P5\L|٦!f wSb?z\ 5IZ.XK(HխEh},P1ڨЛ QC]<,}LJ$f, ߮Pjv;{;;%pϳqHH ¤fq?C5DH;(yrZ\(2aїy\`iv6=E&rNHVwy?p)U`Rľ L};iq418r{4UcFQ{YC(g ZP DY̾xN94u/]E*~'›UsQMs DGzU$'SMF<ѝCXiHiw=T;q,t\[ЌDL p|Ihfqxkf8*@jŵ\Q-(C?am8$Sg"8yS?}O)Y 4LHYYclx϶L aJ$|u#b|EcccPJMRmqkؕ 0[{$&.)-/ :y_29[ 6qBxd 3KHN!OR-q_ HSBЭb%WpY7KGT(N##xTġ׷,ݜnW|>:,܆Pvc:j'L"O?l6W$[(cZ}AOY.Jl.{# Y֮[3ÖZ sޅ4H&C œ2l4R)4:.+!t }\3U,8?<吆]$߱3WjÚl䰈hA&[+Yjf! qrpVTP`z9 q Gȴ!a(ILqpիfaOwyX#>gVT`:̌OiEנ$s |8X&'=u9FN@2pInWKG_7rs\n٩ޕda=Wgys|Rwm.FN`P)?VR"j4zddzC{Rmix:VP D; g"F$6 \mT!opSpU9$(خ߲q7Yާa8SDBY-1seÚF_hAm=m|ɬM ̅wriJZyf^]-c?aG긦ҹГ߮}ZbX'†g i:lޏϋ,RU.XY滋d*C6!L[k%q>BhD_{:AiɲNX}>O 2Rty!4WY+\'sm^oxBj>ۯ+ÂI߇~2gF{<<)KO ~ll(=?'5pe7h9k2/u{[$D \ATX]\*i/SM],ȁc?1Xeyζzu9$B-sXrXu6S}tse]y{uҲMq /F%ʸи;2_ G_Ir'Ё̪9tȌu.7E 2DIݷL6[Dgmb(iy Y&we#H|YvMG%S++L9}1BC`eTغ!U<2pì'D &hV۔ 5Mq_Ib˄k_\ٓ[j,36?Ϛ|>i1P;<[{4*A$PD5Ȅx{֋Pv֠)@[=Yp:ҎfV~w->eP[r/j#*"couhz )qjKJ`DOesju~I-o)ufmkq&<ޥ&J> oeкp<haYn=VCs4!`P/?.Q7QKм,x]bW#E׎'C^ܜ` c<)Ts+]i?eY}d93r@\3Ñ)yv?kժ%(WMO“nee<6 xSO?J=@;m@MWyf_D04jU!M@`,x 335J. Z${yOosca뱰CIнf\s]ȭfGj8 ;tlĔx)yJ"imBD:Oq\JQSӂIϽ6Uʰ,GJTl/w{n"1gϾᗶ+(;?QKCDf<**X$UHO^R$C`[9WY/g_L^\4$'p`5K(Z%lR(8K*E6I >eZBt(㔶!\ J5%"RdBu G(0p5~njǎ**#A](aZK=X0[ɼ F_̧%-:fM1Wr6RILa$?;BLfo>P1Ac$gEh`@y~;Ōf˪Z2^ N9Y.U|[p7 ZekF4& U%ZT. L9~*';@eZ4w V a/C 7J5onz-q>]uht y\XB5;xoRBSj"6BFa=mH#IYOYw:^m0&8 ɻ2G=‡<5it^V):*N@B~nIۘ ov/.k4ǝ)PjGV0`Z꿛sXLrqBc\1x/9ͫuF8$VJ$۽hnn ǽC\bE頽sj1j,Co(dIa⡭3PH u ?|T6EټF{`%WU,TX*ˬ6NL0kR-ƺ^lBĐ]=zKQkNҫiOŞ>N7i{tFWMx(jy$;plҨ7 ٣^W`*Ug'jc9DdM^..װ %dEb" WEr\-AFvbAd9:ylaN =7$[JG+<{YlGV=zcsRk4JH\=?CxIټqLR( 8&xXZ1U& lb"06Y&dWI`+.n`(0ei$8^XXSo1}2a[ 83FeT{u7sYKFooNxǫMf|>alҢ(.T{̈́ xO~) a僆|>O[#DFuW7Wvn\Ko⨐@dֽ=6ƒQ[5h*[z4A{;N"WngE[ nر2y‚r %r}(vWL03_7}(H"( #Xc) Hȭ YV58mz2ltG:ݯa1_oko4YD/'.PBX(랈r5[ $Jn[u_jrVC%#wifԃᄡ_kjCsmWF `V-ioF9`f):-CېowZ^mf)RJPސa?л'́v.xI/xya  F||[/;EN_hOL~9ت #QlxA;̢cJ&J^p''8(Y>g㪐v0/Ew6З y>LQc4&1lSK|5n shU/9f*e#4d9< neb^-4O^Z"L7RGuP~BzӇE}DueIZ:FjAzsar%b\)@rnB})%oK7?&@NomPcA ٗ+%yUygSȣ@GwK@or1z\QkObs/%^ ;A[flɱ('h@-$Mk>[rt`(a|-W*"%VL5p&A' E=W(ݦ}sٸBF z*ȄȻ?HͻƨYCO%VXR)iQXdݐ( u#n@>@ߍs S֑~# Kli oxgVHj 4扭#@fmrJ/wqZ5o4ඌԬ dGGRu8; l q_(1yh]fX&Y`qUn*r㸰O3`4CRT0#Ag"TW-!SHD.j#OU(˄zWaP Tˬ{V=?9 :3`0N5Zi&!ѰEO?WKGq7:_cm3'}AD]s$$^)?MiъDG=$@y So .+#O"p =}#P)A{6AchxbP9+V` }kƘbz\V|Gu:7lU/jCj;Y[5*=[L$v&z(6 UHٗ-=p@F?Bum \8͉\6bOmǴ~dbJrxSU2-J,le,f UrQKGh,D5G>pNᰝqM71i;^B ķE̯2Qf6m5]ד5~Yk{iuDXϐzO7|v:%xC q]xɴ!jXs cNp FjB@]%G5<rdZ?q|PݚXV'Ґ֕[NN-5gz"cmnQĦ(vo(ʣB`elnFXpSĂ_;mn  )ځL+ Iu %& U_P_JJ ]Sk%g>|J2_1܊|=Od%U0+g:}Wn<MP9m+>c޳θjjpx%Pn1Yg]4E+[_6BV<ǒp ڼvٗWY~{OLЗ^P_mtS"c9x=Fs(X.ArWK2*[P#k^ZnݕЁdr>tQ>@:̲w .Hxr@8s' ͋X/CtJ11%sW!*~2&-Ec"B]g.L*xOmFv,W r]f(eh bO-^TDRZ46> =ಈіm{uD8AR C.Z,M_q:h?R&Xu]WFm%.l1A}K6`B۱gA>0O#ɪ{36c sz!W0|@ϏDNmG݉W>W}'Umga` #˳wH^RH=4<6Q #V8{;Bµ,a UhVPlx[-MK+f[lzb$:5=toƘ %j40:뉈AG~iZzk [5I=e xz^ۉg|zb3ߐ{,V .{;lak~E*J3_B C&z">g wVHqRFmW !-K[7š1`W^|F. %" ֧[[>)AyhĀ8yUV;(pj|عƿ ,ٖl  EM8/!jzAdQVC-r&VTiBoVMvn=o\HxX ׬JʖH 8ܷ{83?%oaS>H+HMe 0w̡@ƧF(‡c育Pq4bȞ,)QUk)\v°SS_o7ar]a5▁ @WBpLSHξ]H%JU.D=?1@pԸwsPGd੾VQMa3&u\fG,t&9,y$AŚY)hV{Ea=+`+-k!$wEAGce>ibLXptOd,BqVsDc1$4B,GXf;5faSjst;p2v%Bs0YN9Zf]NJdI[VEoIDS!e?}A-PH|X.9B8KEnݰH BJߢGA$kG-= ]He(-NM_ZH$*^:uqFmH IJ$-l~v_~5{uv^{~; E}B%v'dPhJh!S  U7厙4jC~>1/+5VB$o5YJ))?ʺ,o|V;lJ$cKpGLY%o,'G*A\~>N 3]zб}?$L5b:d>pM.е!ᡃŃek|ƎN!QKf ˏU6ĉΪzǞﶍh4\&>k}eX%g ZD  qAuMbPM UgIl0bǓn(NnU3u{9P wTdW:?o߆as$GhheuMZV)=~K;IFtg>8b;c}٘KXfD[~(8oYݾfj Z0{|{#1noHj_Ptf ]|_po`d:.k-~.B.8_(-B@@wY׬dãwqYs@[HcB>u]Vyta!拨VtF 4D9YoH蟪iyݪ F V%"V@˞m:VPH){99tܥOʂFȝb NgcCD^ ~JĎ~IOJBFj31q9P] iO5/+gQ@@$zst7k aꉘt6װQ׸30׈倊sEBaJ ޮW/bK35rTtT Wnn(<9f<JarjEJNLZHq3nvhpfjkhu&ɏcY:+I-C-ID0~GT1q3ipڻ4|ԭbn-^_&6q v1 s4UW G`v/0yDZB1 "cZf9IxW2`MҍJ|Qdp<\ VmbEb\q T+y#` =r vSw|ժ&tdUUO۳|9<`4?B[.SWΘn-vP6Ѯߐ5y }[l*E6:"+K}O7}Rof)TTA242jL%7`Wb~?C0ZJਥ~u-4m 91$9dByyW}@:]WE$;Ɉ@*5w4z&|t?"qGRE%=hO/Z%>Ԥ VYfIXQ9~zbiRv'n<.%WLҒS j`eډ8܎wb; VjGGWd[<S8 zP,x%n!ײyK~QJ~NQ}&Xu_"o$b̞RE/w"˜OW, i(AVq!_Iޭ:KFݎ){(s%F?/'-Mk"`%[hzu̙ BnO\B(ZHJ_G`kYw:2F1]N w)I-QK#kdYZ\*]$܊N7%Bs3⬇g,̱ϵF S9ϘҤb ;q9mbaWV=^Ty&3($򔷻]6f̔&D\!/C(whޠF4| ;MŇI40E)Wm ,Vu1*J{uW~b{'! (؟*GQtp kuQMlXj5n=G w@ÜcvȔB6d9 9%˽"k~0z5Fh%;Dn,5~EыQI\Mq0͢(%-/`o@֡rgϼgR=h J=AC꽓V%~<]SF S` ꏸjO'αGp%޹To2CΈͳvk{!#aÒ1aƩ&F|UЩ;+@Hk&qh,WZNE)q&RM<PP&N@.s}piLD9 !dž5罺xM#F^Nƿtd\ !Bi5#rd †E>J g9͟ dչ%CS}4+cRf4RſNdlzx>ǟh ќ@֙rVHN7rozU˨%״E'!:lTC8"=mO=LuSlȹ^"%.U]ɧnj7(1VGG%F1BP)øbw\Bdeߨ?nZ,;&3YK}$_kD|r@.w.}m* LSϣR:TscQ?"Ryzx^N~TO(H?sWEa v^Z{[ !в(&fKCdl u4/uFo;~Cb]tof<6 % ee(&-4c7%3zMKɥ]5=$fk|HyҸb}bMy݂?ȼxaF}: !rҘҋ-C NʘC&tlX1ؠ r{>aױg΂_C)ho=O44 uN[imfgDnzkWO;&?la?uVZqvs~!>v OD`2HQv$vCͮS:Ŕܳ4(+lX ٔf:] ssSIO<9vր}ķFu7?@*e j@fAǃ= MpH2XżT*$4/o\RfZlMب5s$5(a='1t L- e$\sc~Dm{' ??6qq@qiؑ v ]y7wl_-2W%PcZc]ଡ଼ȱuو|=8W WNg ţm6}*}C2vs8ҕ+1zڌH"B +m'9D,Jui$t1?;F}  O4Eg֠;f62&Q8 .॰, ={ұ\&ZbLkjϻ"8cT"͡8] C3f 96Ez~Tȯ~zJORJ C-U<+=F (5`>!J͡ eʻGљ4;y8M>|PP4~ SkNCdb%$n^iPƛ  @ fX|M1G[z)5e*b͢ӥB`'6&p֥&h' ʿlU/qxd^/+㊰3mjԎJCaLO!;Kݼzh9oX?3F,N7 |`i.5wBzk!Iz=mȮmfzXJ}+2!{iJҏhL+}+ǥ{r5ε~JX QH5oRwlA `"k [ EuvUюUOE+ Be]7c$- 9Q3hOFβc/SXXAX#h,̥E{O7#.K=TT?F#z}JP/RDvx5N҄`P 6x]xʱ]"oc8O\'}V5 .׈oqx_gz-,r?KmR/QD'xBg@"BlCQZDG.= MS ⼠Y^TLnm٧A2\ ,CD4a8]Gs%@?o?*w_ .ds 7]S͸JK&S9 T2yJi̝ % N][M~x(WƞWzt/0f+bO$uɕߡTa失w@B-7I/gtdya+=Rd Y4TJBiȯWb)j Ђ:eIaPMP>78%DNG׋L׿VR`} @\5. ZuZ'&}FD`P:*cP)g?IXM74`0]#&2=P4)OEu`i6cU!/a^4:*/ݬց)P!a!`6"!)0BÒOW)c n d^ZD]a(K*rr;Y߷&UMOz{Of)~{)]}-Oeރ)9۷ ݛ7 !%0H}߁*7Ў`Gpq_#jHDž.W3Z󖱆{Z[69dt_[@]E\_"0 H4%,7+WVaK!ڋ³iMQA([֤cxNc@B8`Wyh_cb3mćs#N"`K>RrZ'|&gbh:w0ڶ!u`!ຖĄw&'͉OlCq ^y=fqtHZHr B bl˶(v,<^}BZX7td @Rl p Y`\ gj$,<8R7w*wm>Xs[v"=KZAX-3 -&r<cU$tޯQ8{ qtBZ˅\/ݯuBYUT`X(,A>F 4^Vq1 ךtQ 1Xpn|ѱ*?(5ezPح}P],_uxczUޟ79F'Rs ݀_#;"׸Kެ"kwv. 쭲p ~[J?bb)zgُ?/J8b{bhVc;w)6 Y=0wۘ>Y`- >' |8ꐴ# >ַjP:! ߈@fͲLtI^YX>B f1Qd ˑEm5T#g8-NLCg0E CYhol_:W\#]lis yt(9㧹R*!p0w$/aDۉfoW2Cj\ ˆt EJcX:B2~Z<^N(]m7;sjBA~(D,6bmx^ +R" )~xyGN:>6C18 ?V[4u2`kCUF?UҶRFߦb UUO2 4Y!%L~բNEDF"AStix5+-^8\󲎻M9.Wա{)6. 6}dLX8Y΋ T'&Iʭ`.݅c#^ G nt\qXGNѦ;_ˁY dP;t{p*'#n N=seLrcmۀ5{XN".(w2j*#+F4.f P 5HB%:maaWQ͸ h*" Z+]ruT^]{?c5qQnBs )GwsPA{ ;>zҬb~a >BBNl C"DѱT:PdmlwAP86')l8@쳓2qڳD`KQϛ2#X},QsU ưipwI˽Lvmu'b7"CW/ U G]k:uLū^],ҪR\Bq_2d>.q8f |Zg)7:!%>'zGYy//-Y5q3&%ʑIqq hgc1֗N\)w]U;C r;yz' lc]ߠyF<>]+Fv5i0'Ơ%6"> ]BϚԝk5\xaDZ@~ˋ"׮5nmR97jl.nɭ9k+$"j)J+rZI٨#"e᭏NXB `ZޯeɸD//,Vѓ>yZ DL|N"!Yn*4E)vlm6` %>Ⱦ_a珘 lCh4QVo쇌[yYz أ9.mVʮI(3`)ZNGmW& Nq\t!nXU>!PޥSWJibV&gp3_,Ն;;D8 0kYocYŤxÝyQwEVx6PS[~ L|JB\! !@|Y:%;'OoպJ\[ݚFk-}F,wV9>|d/D׬/)C)+i@Y]^wh?J2gejp C@Y!#37 W)C&Zʥ6!j^򋞴fw\K&Xyu"\ڶ7L{t@g3qA6GK ]H)RȞfڽoV8 )M2R2 %L۵ި*yMaAɃD>W!2[!#[-iFpE^\ҁ`8T<|dDK}{co0Mb T=z\~jտQ(.ves[ t1nUXȉ6$W‹2+wqh/aWVܾ?i_!wk2 cZ5AVĂQNm(oM\;;h p\;-XF} S7g\}HrLрd#:gmtC0aBk*!0IL" >^"̖6 FD5@BB(zsxvˊʄVk& Ljq?_mWU:^h(;'e#p00imt0FyşK르-x3 fڡMjdHȽ HCwS)jȂ@IvL<#=?8ٜMsF8U&++qY~?w/@'V:QV'5f(@o ÞxREpTj^ 㸉LGʣ:zGxt"L!ؠF)h|eLgUUsƏ-ûP"15"Ȧ"E 0;a}-oBC*,yU)"nz,؞qqk|INr4B}kL;*bA-Òxu= }=D",SZؿR q T;U.V@B#e1|/^أ8$|~{%GvD2weBN Y`;r▅1*M&΀b;AG$͸沤F1^SBMK5Q r J,@/â֞"M2B}e(tSVLHƬ?Lx#G oz} [| dZNmZB)gVHpX O4HH\_[rF{-9#jlS'[6l ?+TGf6;^bFt4z}d@^muXVnG|"NE`(Pm\>[~|5Z,$0tKf+35`~z}B/Cj k*-prlk%ίZͷY~`tr7h!H>-g#ť;6ɡl! =iR0z@l~3ې0-ʬ-Wa,N#_JܳT|<.)X^Iw3G6Pu97GSvЁJ·*5;5G4YŚAyƤGdh^5I]+.a8Y]lOΜmXʻHg G*e^Z UoԃMBo;܊T6u5.*4xFϘhhov.,"(hts ꪑIxx,'T6%\W]к娘o 1Bj rK;@CmtNV+ﵲU^"d{ '0]1)(JǨnZAC@mW\5_ L^pxTDvَO# rȵHG 1ܷӹ5s95Ckˡ3 ;a!y%T)38F6fDw a>5^0卟nykImIҥ /vE}Mп.ue/")0!"P$nQmprcS+=Eӽfo 䢹 ʋhS9~%MznZ/U,Ky~"NXa]X?lC|xi/Z]3L0릿4muļ>U˚ξH?\Posy_9YcϾXGD~5=hR613 N%v;_QbR ) n6{4 vE sWaK#]rgs2_$_c9i`]~hky vK)*$=~<"^! J;:/}yk} }?`| B[Bb,7ј`*V߁vn-h'=Nve Ixq߂3BSQtn6]4nt·! =gUU}iysrXܛEǾ:RV2'J_¬lb =3NhA.pfh frEdݢqotQ\^E-{tE]`cs(Wp6KԷ1Og[/Dp-4sEW0Hrͺz?R鈮`KvgW8Ğ\Q\|˚R)J/̬l&,5a)?nQ.x?:=0WɇbEeqe~Qڅsx#)gbqFܙjyRmUclVrk&Ηػ;(