parallel-netcdf-mvapich2-devel-1.7.0-bp155.2.15 >  A dkI%z ܲCX<>!<|7!f.* )@TZ:CxHzHFiMe 9AC®x@Gy'_#B5vGX?a@,HtrˈaaLd !"5WZQh~"z^mL__zthuHzx}FҨh$C%R1XJrG-=l: mΌR7enSɨ|! bM7aA'$/UR4:Қ3֬>q0 (i[HPX;n?0ۨoP.bPHt͗hu \\2$dKX&_}Nͪ} 2~)b p]cc7pK)\ےz@`029@'O}Xp>4<q]Ua$d06624b039981245d11d7f15327149e405c18fae6a698f388e0222d5865f622dcff64a541b72fea24d2c3954dea6e9417a232a269DdkI%z Z"DeibO{{)owy,f [DƤf5֐`ka͓qդ07_$Vԭz9@j} U;gk&:+:mݚ2<gb_!F&H(HbTTIҮ66H78{} vw|WYG=l@G j0[-DZ,TmTl wWi2 Ql9,"s6B T:`濾A@6^ ?LuqnZIXRT J;okY['p+­sz?+ۀ~2|d+` :l '$(cu(ic4;UtA݆&p4Z[q\D`T0wue11&P`+?[,MP8T!'P&hkG.Qb4[or_{×#m] p;?d!' 2 jx| 06<T ` l   8l(8 9 : F5GLHdI|XY\]^ bc)defluvzL\`fCparallel-netcdf-mvapich2-devel1.7.0bp155.2.15Development files for parallel-netcdf-mvapich2-mvapich2NetCDF is a set of software libraries and data formats for array-oriented scientific data. Parallel netCDF (PnetCDF) maintains file-format compatibility with NetCDF. This package contains all files needed to create projects that use the mvapich2 version of PnetCDF.dks390zl23 SUSE Linux Enterprise 15 SP5openSUSENetCDFhttps://bugs.opensuse.orgDevelopment/Libraries/Parallelhttp://cucis.ece.northwestern.edu/projects/PnetCDF/index.htmllinuxs390x+kv kdkdkdkdkdkdk5c6c42b49161fdecdb0c58319a52dd4dff042aefe7a5a62193afc0674647d4c34b7f0c3777e5f75e4bb0e2cd6cb4b57f35530cf1dc84288599044a03f6b25b4884656549af62fb5b2451e399008a90235e03d2dbfa5083b4b26bf927f45148cf32405225bf2d69bc7ef3a72427fddde250e3b0df48c3e1fef6fc4ca749dd99a73055d47e5ef0c4517208ce269b5bccdb401c4a3ed6df862ce4b335167408c67blibpnetcdf.so.1.7.0rootrootrootrootrootrootrootrootrootrootrootrootparallel-netcdf-mvapich2-1.7.0-bp155.2.15.src.rpmparallel-netcdf-mvapich2-develparallel-netcdf-mvapich2-devel(s390-64)    libpnetcdf1-mvapich2mvapich2-develparallel-netcdf-devel-datarpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)1.7.03.0.4-14.6.0-14.0-15.2-14.14.3]Y]]w@Ws@W~UWUnU@UK@P:Stefan Brüns Stefan Brüns Christophe Giboudeaux jengelh@inai.detoddrme2178@gmail.comtoddrme2178@gmail.comtoddrme2178@gmail.comtoddrme2178@gmail.comtoddrme2178@gmail.comscorot@free.fr- Add convenience provides to allow e.g. netcdf-openmpi2 to pull in libpnetcdf-openmpi2. - Also build openmpi3 flavor.- Build MPI pacakges as multibuild flavors, add openmpi2 - Adapt to openmpi -> openmpi1 rename on Tumbleweed- Use -ffat-lto-objects when building static libraries.- Trim descriptions.- Update to 1.7.0 o New features * Nonblocking requests now can be posted while the program is in the define mode. This feature enables applications to add new variables and post the nonblocking write requests without separating the codes by ncmpi_enddef(). Note ncmpi_wait_all and ncmpi_wait must still be called in the data mode. * When using immutable write buffer in put APIs on a Little Endian machine, the in-place byte swap operation performed internally in PnetCDF can cause a fatal error (by trying to change the contents of an immutable memory space). The solution of copying user's write request to a temporary buffer and perform byte swap there conflicts with PnetCDF's design principle of avoiding internal memory allocation as much as possible. Since the size of immutable buffer in most cases is small, PnetCDF now compromise the two by making a copy of write requests that is less than 4KB. Users are warned that using immutable write buffer larger than 4KB will still cause the fatal error in the PnetCDF default configuration. The way to completely disable in-place byte swap is to build PnetCDF with --disable-in-place-swap option at the configure time. In this case, the internal memory allocation in PnetCDF will increase. o Syntax changes * In ncmpi_wait_all(), ncmpi_wait(), and ncmpi_cancel(), the API's third argument, array of requests IDs, is changed to INOUT. Upon successful completion or cancellation of individual nonblocking requests, the corresponding request IDs are set to NC_REQ_NULL. o New run-time environment variables * PNETCDF_VERBOSE_DEBUG_MODE environment variable can be used to print the location in the source code where the error code is originated, no matter the error is intended or not. This run-time environment variable only takes effect when PnetCDF is configure with debug mode, i.e. - -enable-debug is used at the configure command line. Set this variable to 1 to enable. Set it to 0 or keep it unset disables this mode. Default is 0, i.e. disabled. Users are warned that enabling this mode may result in a lot of debugging messages printed in stderr. o New example programs * examples/C/nonblocking_write_in_def.c shows an example of posting nonblocking write requests in the define mode. * examples/C/req_all.c shows an example of using NC_REQ_ALL to flush all pending nonblocking requests without providing the requests IDs. o New test program * test/cdf_format/dim_cdf12.c tests defining maximal dimension size for CDF-1 and CDF-2 file formats * test/testcases/test_erange.c tests if the error code NC_ERANGE can be correctly returned for two cases 1) get a NC_UBYTE value of 255 from a netCDF file to a memory buffer of type signed char and 2) put a value of -1 of signed char to a NC_UBYTE variable in a netCDF file * test/testcases/check_type.c tests if the error codes can be correctly returned when conflicted in-memory and extenal data types are used. * test/testcases/put_parameter.f tests the use of immutable write buffer (e.g. a buffer declared as PARAMETER). Note the buffer size must be smaller than 4KB. * test/nonblocking/i_varn_indef.c tests posting nonblocking requests in define mode. * test/nonblocking/req_all.c tests the use of NC_REQ_ALL for flushing all pending nonblocking requests without providing the requests IDs. * test/last_large_var.c tests the special case when there is no record variable, the last fixed-size variable can be larger than 2GiB in size if its starting file offset is less than 2GiB. * test/testcases/buftype_free.c and test/testcases/buftype_freef.f test the bug in r2160. * testcases/add_var.c checks the starting file offsets of newly added variables from re-entering the define mode. * testcases/attrf.f checks NF_ERANGE is returned instead of coredump. This is particularly for NAG Fortran compiler that may report "Arithmetics exception". * testcases/check_striping.c checks if the file striping unit and factor returned from MPI-IO hints are consistent among processes. * test/nonblocking/column_wise.c checks if PnetCDF detects interleaved fileviews from multiple nonblocking requests and correctly breaks and reconstructs the fileviews so the combined fileview is monotonic non-decreasing in file offsets. o New optimization * Filling variables at ncmpi_enddef() is now done by aggregating all write requests into one MPI collective write call. In v 1.6.1, this is done by filling one variable at a time. o New utility program * ncoffsets reports the file offset information, including the starting and ending file offsets, of variables stored in a netCDF file. ncoffsets is compiled with gcc if gcc is presented on the build system. Additional command-line options are: (-v) reports only for a selected list of variables in interest, (-s) prints the variable sizes, (-g) outputs the file space gap size from the end of previous variable, (-x) reports whether there is a gap between any two adjacent fixed-size variables. See the man page for descriptions of all command-line options and examples. o Semantics updates * All nonblocking APIs now take a NULL pointer for the request ID argument, meaning users do not wish to keep track of the request ID. If NULL request IDs are used, NC_REQ_ALL should be used when calling ncmpi_wait_all/ncmpi_wait to commit all the pending nonblocking requests. This feature relinquishes users from the responsibility of tracking the IDs of pending requests. * Using NC_REQ_ALL as the 2nd argument "num" in ncmpi_wait_all/ncmpi_wait APIs will flush all the pending nonblocking requests. In this case, the 3rd and 4th arguments "array_of_requests" and "array_of_statuses" will be ignored and thus these two arguments can be NULLs. * Using NC_REQ_ALL in ncmpi_cancel() will cancel all the pending nonblocking requests. * Using NC_GET_REQ_ALL or NC_PUT_REQ_ALL in ncmpi_wait_all(), ncmpi_wait(), and ncmpi_cancel() for all the pending get-only or put-only requests, respectively. o Other updates: * Conform with netCDF on the maximal dimension size for CDF-2 file format to be (2^32 - 4) * NC_ERANGE checks have been removed from nc_test for text APIs and variables that are defined as NC_CHAR type * Add README.K-Computer build recipe for using Fujitsu MPI compilers on the K computer at RIKEN in Japan * Add README.INTEL build recipe for using Intel MPI compilers 4.x * Build dependency rule is added for files configure and configure.in * PnetCDF checks MPICC/MPICXX/MPIF77/MPIF90 instead of CC/CXX/F77/F90/FC. If MPICC/MPICXX/MPIF77/MPIF90 are set, PnetCDF will ignore CC/CXX/F77/F90/FC. If CC/CXX/F77/F90/FC is set instead of MPICC/MPICXX/MPIF77/MPIF90, PnetCDF will now copy them to MPICC/MPICXX/MPIF77/MPIF90. * Enforce netCDF convention on error code priority: NC_ECHAR trumps NC_EINVALCOORDS, NC_EEDGE, and NC_ESTRIDE. * Return error code NC_EGLOBAL instead of NC_ENOTVAR for APIs where using NC_GLOBAL as the variable ID argument is prohibited. * All Fortran 77 test and example programs (files with .f and .F extensions) have been revised to conform with 77 standard, and was tested using pgf77. * Now provides a pkg-config file (http://www.freedesktop.org/wiki/Software/pkg-config/), making it slightly easier to set the correct pnetcdf include and library paths. o Bug fixes * Fix the bus error of invalid address alignment when build with Fujitsu compiler. See r2171 and r2180. * Fix the bug for the special case when there is no record variable, the last fixed-size variable can be larger than 2GiB in size if its starting file offset is less than 2GiB. See r2166. * Fix the nonblocking flexible APIs that fail to save (duplicate) the user MPI derived data type that later is needed to unpack read data to the user buffer (a call to MPI_Unpack). See r2160. * Fix Fortran 77 constants nf_fill_uint and nf_fill_int64 (thanks Jim Edwards) that pgf77-based MPI compiler does not like "_8" modifier. See r2045 and r2051. The same issue for NAG Fortran compiler is also resolved. See r2089 and r2093. * In the example program examples/tutorial/pnetcdf-write-nb.c, the write buffers used in two iput API calls should be different. See r2095. * Fix the error reporting mechanism for NC_ERANGE, for when an arithmetic overflow happens. Overflow checking is now performed before I/O.- Fix license- Fix building on non-x86_64 64-bit platforms- Update subpackage groups - Make subpackage summaries and descriptions more consistent - Provide rpm macros for version identification - Spec file cleanups- Update to version 1.6.1 o New features * PnetCDF now supports fill mode. ncmpi_set_fill() can be used to set the fill mode for the entire data set. Note the differences from netCDF: 1. The default mode in PnetCDF is NC_NOFILL. 2. Setting fill mode for the entire file or individual variables must be done in define mode. 3. For non-record variables, they are filled at the time ncmpi_enddef() is called. 4. For record variables, users must explicitly call ncmpi_fill_var_rec() to fill one record at a time before writing to the record of that variable. o New APIs * ncmpi_def_var_fill() sets fill mode for an individual variable. This API must be called in define mode. * ncmpi_inq_var_fill() inquires fill mode of a variable. * ncmpi_fill_var_rec() is a collective API that fills a record of a record variable. This API must be called at data mode. * ncmpi_inq_default_format() for inquiring the default file format for new file creation. Note the default format can be changed by ncmpi_set_default_format(). * The above new API are also available in Fortran and C++ versions. o New error code * NC_ENOTRECVAR when attempting operation only for record variables * NC_ENOTFILL when attempting to fill a variable when its fill mode is off * NC_EMULTIDEFINE_FILL_MODE when inconsistent dataset fill mode is detected * NC_EMULTIDEFINE_VAR_FILL_MODE when inconsistent variable fill mode is detected * NC_EMULTIDEFINE_VAR_FILL_VALUE when inconsistent variable fill value is detected * Fortran versions of the above error codes are also added. o New example programs * C/fill_mode.c shows the use of ncmpi_set_fill(), ncmpi_def_var_fill(), ncmpi_inq_var_fill() and ncmpi_fill_var_rec() F77/fill_mode.f is the Fortran version. F90/fill_mode.f90 is the Fortran 90 version. CXX/fill_mode.cpp is the C++ version. * C/ghost_cell.c shows how to use varm API for writing from a user buffer as a 2D array with ghost cells on both ends of every dimension. o New test programs * nc_test/tst_nofill.c borrowed from netCDF * testcases/ivarn.c tests bug fix r2023 when the request IDs stored in argument array_of_requests[] of ncmpi_wait_all() are not in an increasing order. o Other updates: * Change the chunk size used for moving variable data when the file header extent expands. The default is now 1MB. If the file's striping unit size is known (from MPI-IO hint striping_unit) then the chunk size is set to the striping unit size. o Bug fixes * Add missing F90 function overloading for f90mpi_put_var_all, f90mpi_get_var_all, f90mpi_put_vard_all, and f90mpi_get_vard_all, when the user buffer is a scalar. * Fix when the request IDs passed in argument array_of_requests[] of ncmpi_wait_all() are not in an increasing order. See r2023. * Fix C++ compile error for converting NULL to string. See r2039. - Update to version 1.6.0 o Format conformation updates: * Conform with netCDF4 on CDF-1 and CDF-2 formats. The only difference now between the two formats are the OFFSET item in the format spec (32 vs. 64 bit integers.) All names (variable, dimension, attribute) now allow extended characters (eg. special2 and MUTF8). o New APIs * Nonblocking buffered varn API family. For C, ncmpi_bput_varn_() For F77, nfmpi_bput_varn_() For F90, nf90mpi_bput_varn() For C++, NcmpiVar::bputVarn() * Nonblocking varn API family. For C, ncmpi_iput_varn_() and ncmpi_iget_varn_() For F77, nfmpi_iput_varn_() and nfmpi_iget_varn_() For F90, nf90mpi_iput_varn() and nf90mpi_iget_varn() For C++, NcmpiVar::iputVarn() and NcmpiVar::igetVarn() * Blocking vard API family takes an argument of MPI derived data type that describes the file access layout, as opposed to vara and vars APIs that use start[] and count[]. For C, ncmpi_put_vard() and ncmpi_get_vard() For F77, nfmpi_put_vard() and nfmpi_get_vard() For F90, nf90mpi_put_vard() and nf90mpi_get_vard() For C++, NcmpiVar::putVard() and NcmpiVar::getVard() * Collective var1 API family For C, ncmpi_put_var1_all() ncmpi_get_var1_all() ncmpi_put_var1__all() ncmpi_get_var1__all() For F77, nfmpi_put_var1_all() nfmpi_get_var1_all() nfmpi_put_var1__all() nfmpi_get_var1__all() For F90, nf90mpi_put_var_all() nf90mpi_get_var_all() For C++, NcmpiVar::putVar_all() NcmpiVar::getVar_all() * ncmpi_inq_buffer_size() returns the size of buffer previously attached for use of bput APIs. With ncmpi_inq_buffer_usage() one can calculate the space remaining for additional bput requests. For F77, nfmpi_inq_buffer_size() For F90, nf90mpi_inq_buffer_size() For C++, NcmpiFile::Inq_buffer_size() * ncmpi_inq_recsize() returns the size of record block, i.e. the sum of single records of all record variables. For F77, nfmpi_inq_recsize() For F90, nf90mpi_inq_recsize() For C++, NcmpiGroup::getRecSize() * ncmpi_inq_num_rec_vars() and ncmpi_inq_num_fix_vars() report the number of record and fixed-size variables, respectively. For F77, nfmpi_inq_num_rec_vars() and nfmpi_inq_num_fix_vars() For F90, nf90mpi_inq_num_rec_vars() and nf90mpi_inq_num_fix_vars() For C++, NcmpiGroup::getRecVarCount() and NcmpiGroup::getFixVarCount() o New PnetCDF hint * pnetcdf_subfiling -- it can be set in an MPI info object or in the environment variable PNETCDF_HINTS to enable/disable subfiling. The value is either "enable" or "disable". o PnetCDF hint priority * The alignment hints set in the environment variable "PNETCDF_HINTS" have the highest priority, which overwrite the alignment hints set in ncmpi__enddef(), which overwrite the alignment hints set in the MPI_Info object used in the call of ncmpi_create() and ncmpi_open(). o New error code * NC_ESTRICTCDF2 for attempting CDF-5 operation on CDF-2 file. For example, define a variable of type NC_INT64 in a CDF-2 file. * NC_ETYPESIZE when filetype size is bigger than the variable size * NC_ETYPE_MISMATCH when the element type of filetype mismatches the variable type * NC_ETYPESIZE_MISMATCH when filetype size mismatches buffer type size * NC_ENULLSTART when argument start is a NULL pointer * NC_ENULLCOUNT when argument count is a NULL pointer * NC_EINVAL_CMODE when invalid file create mode is set, (e.g. cannot have both NC_64BIT_OFFSET & NC_64BIT_DATA. In PnetCDF 1.5.0 and earlier versions, if both flags were set, then NC_64BIT_DATA triumphs NC_64BIT_OFFSET.) o New example programs * C/bput_varn_uint.c and F77/bput_varn_int8.f show the use of nonblocking bput_varn APIs * C/i_varn_int64.c and F77/i_varn_real.f show the use of nonblocking iput_varn and iget_varn APIs * C/vard_int.c F77/vard_int.f F90/vard_int.f90 CXX/vard_int.cpp show the use of vard API to write/read record and fixed-size variables. * C/transpose.c shows the use of ncmpi_put_vara_int_all to write a 3D array that is dimensional-transposed from the one stored in memory. Six transposed 3D arrays are saved whose dimensions are organized as ZYX, ZXY, YZX, YXZ, XZY, and XYZ. The C++, Fortran 77, and Fortran 90 versions are also provided. o New test program * nonblocking/wait_after_indep.c tests if ncmpi_end_indep_data() returns properly when nonblocking APIs are called in independent data mode and the wait call is made after exiting the independent mode. * nonblocking/flexible_bput.c tests flexible bput APIs that use noncontiguous buffer type, noncontiguous imap and require type conversion * testcases/flexible2.c tests flexible APIs that perform type conversion * testcases/flexible_varm.c tests flexible varm APIs * testcases/varn_contig.c tests the case when the fileview is actually a contiguous chunk. PnetCDF should be able to merge all. * nonblocking/bput_varn_uint.c tests nonblocking bput_varn APIs * nonblocking/i_varn_int64.c tests nonblocking iput_varn and iget_varn APIs * test/testcases/test_vard.c test/testcases/test_vardf.f test/testcases/test_vardf90.f90 test the new vard APIs. * test/testcases/inq_recsize.c tests if one can correctly inquire the size of record block from in a netCDF file. A similar program in F90, named inq_recsizef.f90, is also added. * In test/nc_test, the test programs below are borrowed from netCDF test programs: t_nc.c tst_misc.c tst_norm.c tst_small.c tst_names.c tst_atts3.c tst_atts.c * test/testcases/one_record.c tests the special case defined in CDF-1 and CDF-2 specification that "A special case: Where there is exactly one record variable, we drop the requirement that each record be four-byte aligned, so in this case there is no record padding." * test/testcases/modes.c tests if correct error codes are returned when various file create/open modes are used. * Under test/testcases, varn_int.c varn_intf.f varn_real.f90 test varn APIs * test/testcases/inq_num_vars.c test if one can correctly inquire the numbers of record and fixed-size variables defined in a netCDF file. A similar program in F90, named inq_num_varsf.f90, is also added. * test/nonblocking/interleaved.c tests a combination of interleaved file types. This is to test the bug fix in r1758. o New optimization * Prior to this release, PnetCDF wraps each MPI read/write call in put/get APIs with two MPI_File_set_view(). One is before the MPI read/write call to take advantage of MPI's fileview feature for accessing non-contiguous file locations. The other is after the MPI read/write call to make the whole file visible, as the root process may write to file header later in the data mode and it alone cannot make a call to MPI_File_set_view() because the function is collective. In this release, the second MPI_File_set_view() has been removed. The root process's fileview is changed to always keep the whole file header visible. Saving a collective call to MPI_File_set_view() is expected to improve some performance. o Semantics updates * Header consistency mechanism has been updated. See README.consistency for details. * The use of NC_SHARE is also revised. See README.consistency for details. o Other updates: * The subfiling feature is now disabled in ncmpidump and ncmpidiff until a bug fix to allow reading the master file with the number of processes that is smaller than the number of subfiles. * The attribute names reserved for subfiling feature are now changed to use a prefix of "_PnetCDF_SubFiling". The leading "_" underscore is a CDL convention. * The flexible APIs now allow argument buftype to be MPI_DATATYPE_NULL. In this case, argument bufcount is ignored and argument buf's data type must match the data type of variable defined in the file - no data conversion will be done. This extension makes the flexible APIs be able to correspond to the netCDF APIs whose names do not contain a data type, e.g. nc_put_vara(). * Type conversion between NC_BYTE and unsigned char no longer checks for out of range error (NC_ERANGE). CDF file format specification make a special case for this kind of data type conversion. See: "Note on byte data" in the format specification. * Conform with the CDF-2 and CDF-5 formats that names are normalized according to Unicode NFC normalization rules during encoding as UTF-8 for storing in the file header. * A new configure option, --enable-large-file-test, to enable testing I/O on large files and large variables. Note the testing prgrams will run very slowly. o Bug fixes * fix the bug for flexible get_varn API. When buftype is noncontiguous, the bug forgot to "unpacks" the temporary buffer that reads data from file to the user buffer using buftype. * fix the bug in blocking flexible get APIs when buftype is noncontiguous, swap is needed, type conversion is not. The bug sets a NULL pointer to the read buffer and passes it to MPI_File_read functions. See r1815. * fix the bug for the NetCDF special case when there is only one record variable and the record size is not four-byte aligned. In this case, NetCDF spec says the alignment must dropped (no padding). See r1791. * fix the bug in nonblocking APIs when requests are resorted into nonoverlapping groups and the first group of file types are interleaved, it was mistakenly identified as non-interleaved. See r1758. * fix the setting for PNETCDF_RELEASE_DATE in configure.in. Using read command together with IFS does not work as expected in bash 4.3.11. See http://lists.mcs.anl.gov/pipermail/parallel-netcdf/2014-July/001586.html for further detailed discussion. - Update to version 1.5.0 o New features * A new configure option "--disable-in-place-swap" is added. It disables the byte-swap operations running in-place on the user's write buffers. The purpose of providing this option is to deal with the problem when a Fortran program uses a immutable buffer for put APIs, e.g. the buffer is declared as a PARAMETER, and in-place byte swap on this buffer causes segmentation fault. See discussion threads of http://lists.mcs.anl.gov/pipermail/parallel-netcdf/2013-July/001498.html Impacts: 1. It takes effect only on Little Endian machines. 2. It only affects put/iput data APIs, but not attribute APIs. 3. The INTENT of buffer arguments in all Fortran 90 put/iput APIs will be declared as "IN". Without this setting, the default is "INOUT". 4. It has an impact on performance, as an extra internal temporary buffer will be allocated to copy data over from user's put buffer, so byte swap can be run on the temporary buffer. The default setting is to enable in-place byte swap. PnetCDF tries not to allocate additional memory space, due to performance concern. Users are discouraged to use Fortran PARAMETER buffers in put APIs. * A new configure option "--enable-debug" is added. It enables a memory allocation tracing mechanism internal in PnetCDF. In addition, it enables the PnetCDF safe mode. (Note that setting the environment variable PNETCDF_SAFE_MODE at the run time can still overwrite the safe mode.) Default debug mode is disabled. When enabled, a user program can call three new APIs below: ncmpi_inq_malloc_size, ncmpi_inq_malloc_max_size, and ncmpi_inq_malloc_list to obtain the size in bytes of current memory allocated internally. This feature uses a binary tree to manage all malloc buffers, e.g. tsearch() and tdelete(). * Add three Fortran parameters for PnetCDF library version numbers: PNETCDF_VERSION_MAJOR, PNETCDF_VERSION_MINOR, and PNETCDF_VERSION_SUB. Similarly in C programs, these are defined in pnetcdf.h as constants. o New APIs * C++ APIs are now available. They are developed based on netCDF-4 C++ library. However, users are encouraged to use C APIs, instead C++. * ncmpi_put_att, ncmpi_get_att, nfmpi_put_att, and nfmpi_get_att - these APIs correspond to nc_put_att, nc_get_att, nf_put_att, and nf_get_att. Note they are not the "flexible" APIs. Flexible APIs have an MPI derived datatype argument. * ncmpi__enddef, nfmpi__enddef, and nf90mpi_enddef - these APIs correspond to netCDF nc__enddef, nf__enddef, and nf90_enddef (with additional optional arguments). * ncmpi_inq_file_info - the naming for ncmpi_get_file_info may cause confusion, as "get" has a different meaning on PnetCDF. The correct name should use "inq". However, ncmpi_get_file_info is kept for backward compatibility. * ncmpi_inq_striping, nfmpi_inq_striping, nf90mpi_inq_striping report the file system striping settings of the opened file: striping size and striping count, if the underneath MPI-IO can find their values from the file system in use. * ncmpi_inq_malloc_size, ncmpi_inq_malloc_max_size, ncmpi_inq_malloc_list report the size in bytes of current memory allocated internally by PnetCDF. Similar APIs for Fortran 77 and 90 are also available. These APIs are enabled only when PnetCDF is configured with option - -enable-debug. When this option is not enabled, calling these APIs will return the error code NC_ENOTENABLED. These APIs are usefully for debugging. * ncmpi_inq_files_opened reports the number of files that are currently opened. Similar API for Fortran 77 and 90 are also available. The API takes 2 arguments: number of files and array of file IDs. If the second argument, array of IDs, is not NULL, then it will filled with the netCDF dataset IDs. This API is useful for debugging. o Syntax changes * For all Fortran put/iput APIs, the INTENT of write buffer arguments is changed to "INOUT" on Little Endian machines, if option "--disable-in-place-swap" is not used at configuration. Otherwise, i.e. on Big Endian machines or PnetCDF is configured with "--disable-in-place-swap" on Little Endian machines, the INTENT is "IN". o New PnetCDF hint * nc_record_align_size - aligns the starting file offset of the record variable section. Note this is for the entire section, not individual records. o New error code * NC_ENOTENABLED indicates the API is available only when the corresponding feature is enabled. For example, nfmpi_inq_malloc_size() returns this error code when "--enable-debug" is not used at configure. * NC_EBAD_FILE corresponds to MPI error code MPI_ERR_BAD_FILE, meaning "Invalid file name (e.g., path name too long)." * NC_ENO_SPACE corresponds to MPI error code MPI_ERR_NO_SPACE, meaning "Not enough space." * NC_EQUOTA corresponds to MPI error code MPI_ERR_QUOTA, meaning "Quota exceeded." * NC_EMULTIDEFINE_FNC_ARGS corresponds to MPI error code MPI_ERR_NOT_SAME, meaning "inconsistent function arguments used in collective API." o New run-time environment variables * none o New example programs * Example programs now report if there is any PnetCDF internal malloc residues yet to be freed, if --enable-debug option is used at configure. * Under examples/C, three examples are added: create_open.c, get_vara.c, and global_attributes.c. File examples/README contains their descriptions. * Under examples/CXX, several example programs corresponding to those in examples/C are added. o New programs for I/O benchmarks * none o New test program * Many test programs now report if there is any PnetCDF internal malloc residues yet to be freed, if --enable-debug option is used at configure. * add tests for flexible APIs. The tests borrow from nc_test/test_write.c that tests nc_put_var1, nc_put_vara, nc_put_vars, and nc_put_varm. Similarly for get APIs. * testcases/record.c checks if the number of records is updated correctly. It writes to a variable's 2nd record followed by the 1st record. A call to ncmpi_inq_dim() or ncmpi_inq_dimlen() should report 2 records after the writes complete. * testcases/noclobber.c checks if error code NC_EEXIST can be returned correctly when NC_NOCLOBBER modes is used in ncmpi_create and in the meantime the file exists. * Some test programs are developed to run in parallel. The test mechanism for parallel runs is command "make ptest". Two environment variables can be used to set the MPI run command and output file directory: TEST_MPIRUN and TEST_OUTDIR. Their defaults are mpiexec and "." (current directory), respectively. For example, make ptest TEST_MPIRUN="aprun -n NP" TEST_OUTDIR=/scratch Note the keyword "NP" will be replaced by the different numbers of processes used to run the tests. The testing uses up to 8 MPI processes. * A sample PBS script file is provided to test "make ptest" on machines with a batch queue system: pbs.script. This example script can be submitted from the build root directory (where you run "make" command to build PnetCDF library). * For cross compile environment (and batch queue system), the environment variable TEST_SEQRUN can be used to set the MPI run command. For example, the command for testing sequential programs: make check TEST_SEQRUN="aprun -n 1" TEST_OUTDIR=/scratch For non-cross compile environment, there is no need to set the environment variables, as long as one can run the MPI executable without mpirun or mpiexec. o New optimization * none o New utility program * pnetcdf_version prints the version information of the PnetCDF library and command-line arguments used at configure o Other updates: * Revise FLASH-IO benchmark to use nonblocking APIs for both checkpoint and plot writes. The control variable to switch between nonblocking and blocking API is "use_nonblocking_io". Set it to .FALSE. in flash_benchmark_io.F90 to switch to blocking APIs. Using nonblocking APIs is now the default. * To match ncdump, ncmpidump now only supports one input file. * Makefiles are revised for better recursive make and fixed some build target dependency for parallel make. * File creation was revised for handling NC_CLOBBER and NC_NOCLOBBER modes. On systems where Unix calls access() and unlink() are available, they are used to check if a file exits and to delete an existing file. * subfiling is now enabled by default. Users can use --disable-subfiling to disable it * man page of ncmpigen is updated to add the description for option "-v" which lets users to specify the desired output file formats, e.g. CDF-1, CDF-2, or CDF-5. * flex, lex, bison, or yacc are no longer needed for building ncmpigen. o Bug fixes * fix ncmpigen.y on parsing CDL file to get the number of records. The bug failed the command "make b-test", due to getting a wrong number of records (current value for the unlimited dimension). * fix the update for number of records when writing to a record that is not the last record. - Update to version 1.4.1 o Bug fix: * Improve pnetcdf.inc portability for fixed/free-form Fortran programs o Fortran API syntax changes * For nfmpi_put_att and nf90mpi_put_att family, the intent modifier for the put buffer arguments are now declared as INTENT(IN). * For nfmpi_put_var* and nf90mpi_put_var family + On Big Endian machines, the the intent modifier for the put buffer arguments are now declared as INTENT(IN). + On Little Endian machines, the the intent modifier for the put buffer arguments are still declared as INTENT(INOUT). This is because PnetCDF does in-place byte-swap on user's put buffer. If user's buffer is declared as parameter, then segment fault can happen when PnetCDF tries to byte-swap a read-only memory. o Subfiling * Subfiling is a new PnetCDF feature that divides a file transparently into several smaller subfiles, each of which stores subarrays in CDF file formats. The file name supplied by the users serves as a master file that contains all metadata about array partitioning information among the subfiles. Because data partitioning is made transparently from users, data accessing is kept the same through the conventional PnetCDF APIs and the master file. * To enable this feature at configure time, add configure option "--enable-subfiling". - Update to version 1.4.0 o New APIs * Fortran 90 APIs (adopted from netcdf-fortran-4.2). All F90 APIs have prefix name "nf90mpi_". The APIs support function overloading. * get/put_varn_ for reading/writing a list of subrequests (each is specified by starts[i][ndims] and counts[i][ndims] for subrequest i. ndims is the number of dimension of the variable) to a single variable. * multiple put/get requests with explicit buffer type names: ncmpi_mput_var_type(), ncmpi_mput_var1_type(), ncmpi_mput_vara_type(), ncmpi_mput_vars_type(), ncmpi_mput_varm_type(). Similar for get APIs. "type" is one of the followings: text, schar, uchar, short, ushort, int, uint, long, float, double, longlong, or ulonglong. * ncmpi_inq_nreqs() reports the number of pending nonblocking requests * ncmpi_inq_header_size() reports the size of the file header * ncmpi_inq_header_extent() reports the space currently allocated for the file header, (also the file offset of the first variable) * ncmpi_inq_put_size() reports the write amount committed by far * ncmpi_inq_get_size() reports the read amount committed by far * ncmpi_sync_numrecs() a collective API that can be called in independent data mode to synchronize the number of records in memory across all processes, and update to the file if NC_SHARE is set. o Syntax change for Fortran put APIs * intent of buffer argument in all Fortran APIs is changed to inout, as byte-swap might be performed directly on the buffer. This change is for performance consideration. For example, if the buffer is declared as Fortran parameter, then compile will fail. o New PnetCDF hint * nc_header_read_chunk_size: PnetCDF reads the file headers in chunks. This hint indicates the chunk size (in bytes). The default is 256 KB. o New error code * NC_EINTOVERFLOW reports the error of 4-byte integer overflow. This usually happens due to MPI-IO data type constructor APIs' arguments using 4-byte integers. * Error codes to report metadata defined inconsistently across processes. o New run-time environment variables * PNETCDF_SAFE_MODE environment variable can be used to enable/disable the internal checking for data/argument consistency across all processes (by calling collective MPI_Allreduce). Set it to 1 to enable the checking. Default is 0, i.e. disabled. * PNETCDF_HINTS environment variable can be used to pass the I/O hints to PnetCDF library. Hints include both PnetCDF and MPI-IO hints. PNETCDF_HINTS is a string of hints separated by ";" and each hint is in the form of hint=value. E.g. romio_ds_write=disable;nc_header_align_size=1048576 If this environment variable is set, it overrides any values that were set by using calls to MPI_Info_set in the application code. o New example programs * example programs are now categorized into C, F77, and F90 directories * nonblocking_write.f and nonblocking_write.f90 are the Fortran version of nonblocking_write.c * put_varn_float.c for using the new APIs ncmpi_put_varn_float_all() put_varn_real.f and put_varn_real.f90 are the Fortran versions * put_varn_int.c, put_varn_int.f, and put_varn_int.f90, for using the new APIs ncmpi_put_varn_int_all() and nfmpi_put_varn_int_all() * hints.c, hints.f, and hints.f90 for using PnetCDF hints * flexible_api.c, flexible_api.f, and flexible_api.f90, for using blocking and nonblocking flexible APIs * mput.c for using ncmpi_mput_vara_all() to write a series of arbitrary start[] and count[] * block_cyclic.c, block_cyclic.f, and block_cyclic.f90 are for a * -(block-cyclic) 2D partitioning pattern * column_wise.c, for a *-cyclic 2D partitioning pattern * put_vara.c, put_vara.f, and put_var.f90 for using for nfmpi_put_vara_int_all() o New programs for I/O benchmarks * benchmarks/C/aggregation.c -- evaluate PnetCDF's performance on I/O aggregation across multiple requests with different data access patterns. * benchmarks/C/write_block_read_column.c -- writes variables and reads back using different data partitioning patterns * benchmarks/FLASH-IO -- I/O kernel of FLASH, a reacting hydrodynamics code developed at University of Chicago. This benchmark can be built independently from PnetCDF release. o New test program * test/F90 contains test programs adopted from netcdf-fortran-4.2 * test/nf90_test contains test programs adopted from test/nf_test * testcases/alignment_test.c -- test for header and fixed variable file offset alignments when entering redef mode * testcases/nonblocking.c -- test nonblocking APIs ncmpi_iput_vara_int() and ncmpi_iget_vara_int() * testcases/flexible.c -- test flexible API ncmpi_get_vara_int_all() using an MPI derived data type created by MPI_Type_create_hindex() * test/header/header_consistency.c -- test header inconsistency and see if inconsistent metadata is overwritten by root's o New semantics for attribute APIs in data mode o New synchronization for number of records o New optimization: I/O request aggregation pointer). o Other updates: * configure.in and Makefile.in have been revised to detect MPI compilers and other compile options automatically. * A new configure option "--disable-file-sync" to disable calling file sync. This is to be used when the underlying file system provides data consistency control. * add build recipe for IBM BGQ (e.g. Vesta/Mira/Cetus @ANL) in README.IBM * add build recipe for CRAY-XE6, Hopper @NERSC in README.CRAY * add build recipe for CRAY-XC30, Edison @NERSC in README.CRAY * add build recipe for Endeavour @ NASA in README.SGI * add declaration of flexible APIs for Fortran90 * "make testing" now hides most of the stdout. Use "make verbose_testing" for verbose output. * ncmpidump: add the command-line option "-k" to report the format of netCDF file. * ncvalid is renamed to ncmpivalid, a tool to validate the structure of netCDF files for conforming with CDF formats. * Fortran type NFMPI_OFFSET is removed. It was merely a shortcut to integer(KIND=MPI_OFFSET_KIND). Some Fortran 77 compiler does not recognize keyword KIND. In that case, please set MPIF77 to the MPI Fortran 90 compiler, e.g. ./configure MPIF77=mpif90 * configure now automatically checks Fortran module compile flags * Support additional Fortran netCDF data types: nf_ubyte, nf_ushort, nf_uint, nf_uint64, nf90_ubyte, nf90_ushort, nf90_uint, nf90_uint64. * Error codes and messages conform with netCDF's o Bug fixes * Argument unlimdimid of nfmpi_inq() returns -1 when no unlimited length dimension has been defined (to conform nf_inq()). * Argument varid of nfmpi_inq_varoffset() is fixed to be the C's varid plus one. * For collective APIs, many places have been changed to prevent program from hanging if a subset of the processes got errors. The fix will allow all processes participating the MPI collective calls in the PnetCDF, even if errors are detected on a subset of processes. * set the nonblocking request ID to NULL when the request length is zero * report error when bogus request IDs are passed in ncmpi_wait * when entering redef with different alignment hints, fixed-size variables' file starting offsets will only be changed when it is bigger than the old ones * Fix some Fortran API intent in/out argument declarations * ncmpi_def_var is fixed to detect if CDF-5 data types is used on CDF-1 or CDF-2 files. Error code NC_ESTRICTNC3 will return. - Update to version 1.3.1 (September 24, 2012) This release is primarily a bug-fix release, tidying up a few issues and incorporating some early feedback on our "buffered put" interface (see http://trac.mcs.anl.gov/projects/parallel-netcdf/wiki/BufferedInterface for more information) - add a new API ncmpi_inq_buffer_usage/nfmpi_inq_buffer_usage for inquiring the current usage of the internal buffer allocated by the "buffered"-put APIs. - bug fix to make bput APIs properly return error code NC_EINSUFFBUF. - bug fixes for ncmpidump to avoid residue contents from a previous read when it read beyond EOF. - bug fixes in the the tutorial example codes. - add more in-line comments for the tutorial example codes. - add the error string for error code NC_ENOENT. - Replace parallel-netcdf-1.3.0-destdir.patch with parallel-netcdf-1.6.1-destdir.patch. The patch accomplishes the same thing but is created new for the substantially different makefiles.- fix shared library file names390zl23 16847687911.7.0-bp155.2.151.7.0-bp155.2.15pnetcdfpnetcdf.hpnetcdf.incpnetcdf.modlibpnetcdf.sopnetcdf.pc/usr/lib64/mpi/gcc/mvapich2/include//usr/lib64/mpi/gcc/mvapich2/lib64//usr/lib64/mpi/gcc/mvapich2/lib64/pkgconfig/-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-SP5/standard/802ea42c5be8a164224c366aee5aba7f-parallel-netcdf:mvapich2cpioxz5s390x-suse-linuxC++ source, ASCII textC source, ASCII textASCII textASCII text (gzip compressed data, from Unix)pkgconfig file#8$Futf-8826cd2e5588138380376c94326b880719514dd96ac5665af4ee6068453e73b96?P7zXZ !t/j] crv(vX0ٴo",1F,xm$N`+]F$:'a4X3jD:wǩIECݢ5chr1B*!+lF#!wfȡGeEGϸ>x)ˊvۯLYgIFQRS).%vs%SZ,#(_vVVxbC放k-6wF!5(Y>gQYtGRfD D08|k4cC^{Cq;nCg6 &.ͺ:mݟNnwUWc uW$ӜLĪ#鏓m^hQx6p4DcE;(UlI7WchoH[#؊dsj \~p!%Mvr(-y RDJ&ǀԓH7b* 69d,~ @ϟnkƜ7rh\)>ܹ%F_}* _co!ۖ/rqWmb"D``dGFx>x‹TDoֈw\ ׭حD;ҳPL1¨4s?4M$ϪFZsU#K;dASophXZk/phW-(+;%Xhh"BU1 qJ$*2I}L%H&l7%QQ-!eKb#C=#꽾KB oe S?L/S/wKPN䄴;)S3Zr rF3<]R !A_*JQp3&ʅ^38#,ZfX=ג\pr@Yr+gJ6٨0^=a ?R $t\&4*I2Z{ [Nmθ6MmmU-Ъ7Xsdql88(B4K^%҆K(ft/bzEVC+bL {c:"ցI DZQ_{'q. ӑ%؅ d_:O^%(ö)wQNro>m[t QOs;g2$ϩ~@-^Nmm`s XܑЪ"(?4)F/9r|4Af/BB?nC1{m_V)Orq5ip0닿k:ksGD`Dьkܟv7Vjױ⾌.Q1xރh.s<4;lLhd"HJ[ZAϜЗQD)W|/Ibd\&#_WK2N'PSUY~;mZ3\ _vi\H ?v{m&үk&#vX"˛p@RXA-cP F2$pwgf!ڸ%Hx4WG/-|]5sSAsj'm#,ՂI HARj _~〭S!>c@ӗTL;3*"0c>bAu>dt)X+(Z,~Jr2 ߤĘOCYbx^U":ˬCUS@n>! ы;˕q!t B FEO˶u3Μ׏tq*;>t&!8LWL:̖arɉNΥ+v2ѯgy"mh^,b#)M:Cʇ5R ,7/_{5{BFml{:day5/Tg٤bXb,Xےx* 6]RTr2Sʜ9I+nxmXzj%JBB3ֶ7 =G 6tShRE瘍Q)A9#wPk٬𲡚c&}WkfhiZP籋Qm}=}NG~AdX2/ʓڪRY;i@ #J™ZWiO['GP`Z6~!d=N vfO܈sSktR޶"UȲ"fZT?[rr-./ oAZ&=mVLLdԞ`#SW?] JmA%4M$i?:?f/,ow~.A'$!<šgϓ]5ӼB6ѽ}^wAI~r!T]HzîiReJjӹ W8$ı0X1^Eʎ1\_gAړ=h'b3[YFdKBo0'm̘O \i]ɍ+_v[Typ%ft4НBoS\oG=Ģ[ _T+Z [ ;G7|brj)2`~1x&ZGz4U~})eGL Liʣ3K2!Ũ&ރ@ "o=2sEF^T QHUf!F` фx1o$fDz܋gKM?ad[2}9jύF]RmTdp/&j)P$51Y!҆s2ӶrK#g/o $AO@L4uUMؖw jBLJ);#*1dc.߹ !Z>W%G5"qR%ֆ\is nr-Y9&w4Z˜p뇜bjsЭy;Iy|*u`bғLbgi=9F>%xK/<-ݦVXfDȴF=JOU&XhHpX%D$|KB.ϠoSAP}RhAhԙƳ%0WVCe%}˸C"kuolU})LSJytaY:>{ (@n(GkFj YJFF2SasRA @Ԝ 9_>hx|uM-+'DubAؕ8xWױ)Q҆t! 1q0/0e==k?t\ђZ #e! xA<*t6B+J \ UIRŊ#6ӭk_z<V)ֽ7?{CuvtIͦ]Yfx<\rƶuBXFxIZAW9TU'r5rY.~p[6L^\_4z̀9*b?ShUō] ۹ٱ܅'~;^Q3Li]u{u> 1G>\dw& 0JH|]KL[4=o5a:6xW(-0?^,9*H/{O}&l'0/X )n&Zn-A݌ܙCu㼓9?;%x9xc8E@ѯt?&6tV,>F)ED|b +f86U/J曔+[Ywr!֯띰 Dҍ#D{+ЕpO@@QƮ3t~c7ҩa11x:,b܃`+ld*D)Ku=Xs"YIMq? JIo]YVv2ؑ :ӿH%~!UԠ)cn6mN Ȧ69 ]AtSHi_aSwqAdߎ:>bZMTBSҧqh>6f1jPCN։JZ*WW;n~/.$tj)A>B{Zm x,9 YrH˹ 3"@PÕ] (I.; =Ԥ.jU3 E&;EW mqʀǒ=OV#"?.;7|z&ho+H7D\,!;zI'ˣ.F W;KpN&I^l6?x D:8%f|^CsUCG\/sT>j8r 'XO$ЉcH&}fZ '`O rX6?Nm6\XQ]Xr۴@']%mԷZhn!2]4V"y,= t.K`{k̛74/?3YuYnKPy*4ًG {Y{5w`xU~B|hӾ,P'vV;CW霜2JȲI ^`({ gU{N :CRt{Y/oQnv9ec8NZFwFTX5DUN~buzQAA ;77p?¬[/ǧG݁%(BNWyܶj$8L_o[#cA:h:ǐМA N\5]& t>a]~DHmpo%nNKpa}LӑҦ^vŪF'$2R>8TeY RLm(1Ro{=߂F/ jQwhyGj|s#4^L8 (O}#AQό) ڂ ˠJ_G2 8?[& c`|{x}"8nTƺ-}^ D.G @֓,wW"zrիH1#.[b h%|Htǁߚ-(N@)=W@ybø$qm5Ц݊tAЕAI팋1vfe噒q3 F2s1"ЦdZC̰ ȳ(1W|Ƿܰ8l-B^\^l jo`JͥUj@RlmñtE/=/^&;4o?$O9 RHv0eEܕ ՈBzY]G W6#tsm[zs֫ 1\ Н.=3 T ܑi^7(LJ&%t'ة{PaYC!lV|t 'Q-Y¿D V=8򐭫IdޮE⩈G8?LLRvC"d3?FMn>5kgvu}ZOR'htC\}PrD} g{/s&vmF%cSwVXY8~h}IRICi~]BH]HRF I5c%XW8tKyCr(H618({ &$$ARS@՗9ʥn>KsܷܦfuY đ};>N,exV\-S]2_@bjp\cE #Y t֝'H15VM 7pS2d'5AOmDgh+vYvC?8an~Q%]V"j]j?cJ#;~ƘŐYS ]*C]v=a(ە{$Ժ5̯~$j@?C^=(:zДqqR%? /iGL}bqN)L!KtBuuYNp xrգʓvkoɉ8s6퀓⾴Fͫ (|%+vPSyW\R>IZKę4k`Yc"wrA!KH&hUI6ӷu0p{NChx(cyMsQc6V% [jÂ@U: 8Lm`lRƫ$RCrLBU-Y ږP%.^žZdjs5wY](y+ hB/%A\"Za;/I9*KQ9)|ݡ˦4nUP2J$fwf.jR( p9ߙ%#ëtCӐ=]4aƮg%,rHKƘv6EC% "*s{?_J| S|װ Ec^%DHC4!ֹjzP鼘 ;j;Z`xN0v1ՄexvEmYڷe!29o8UXw=t~}@ˎyyޯ ?D؇7dp]cF͈N:Ǟ Ǩ t4~(^Ďݴ|RCfl g_bnª7Qjݚ]^Hٚ.\l̄&2JLL?=zmawn5o$GPҀ=?gT>R,E&dNn*¥ŧ.o`.GV37f wvH,Sy2 }jvdHG@$; .ƇN,i K8!oo_RFO5/. {kɓ2iQKŴ^PmZm@@sy)e3QRKȴ葵$\+U\}C&OSk=66J· #B-"aPRvLQLV,)4kz6fVKƵAYKH[RzI˸樆.%yNҴ p0Qtx8 aOb@>\ `% Q\/f2lMQ*KzY(~x[.b$K moFZDZEk[w() B[w \ͻ{hGP 9!>pDz˱fs6 v|TS6ͫ dDZxBNN]pn4cƔ xZ2 j9E߷11z=d"çjYqwVoDM,@&z?LeGj Me@f(j `c":xP6,C?%`h+cSOt5ūNbaq?L'O2NM=*RFDjvWI\HD'G^[ >-{n`uxиaGJ Xvv>'VFg/3WSKqf}aI* >q0kCkwr#ܖ&$q*̆EN:q y lB_TUZo(ʀ0bPDh6Q2@w,SwHiBrSsۓZL+02|ND3@k iD:D|t4UqC#ǿecbRoRR@̷^7a{WX0Z+-Q3×͇m8mi/ H@/ݮx6Ѕ'}/lgg6cN͇;_ڏgq\#p¦e;!5\qaE׀‰f ہ[VXfl[D{Ip,$fbKnƠғ\8cg⊩ nL(saF'zQPi0 ե@aV{z䮴0[[~0EN`AB8y\+([ә|L# l-vQAr"BcHKBCɧAzC@3 *ב$L,u.AF-h  zJw~NI5~"s%GPfDY߃(##{ʍpjox,Q HSKˮ3:cRʤȐiylL#(yKr`c=myZ}'"HQx&L;(߇NnI,)? k=r*ߝ49E>I B-z.uVd8hfa[~aekyzðtO?(Ż kLo\zДMI!:U7X8ށ`Dnsu{H1uI}*:Eɷ$xOkmp" *1Ɂ ܞZ/Ÿr7 xtZ_-# v4@?'Z `$ugJ1H VA•)H~l "Pd1e#DιW}&0ê&. #9!HCOfŬvw?ɨf>9hmUq4ta?iz/yۅZV#Vgjk/^ ˿4ZeK&O{MQ2/' ^9Sۯ!Y8{˩(XU= sm1hI_oc-8mgr$ OmtTB'Z0ѡEGib;MYg '7`@o36c8=TZC8rk:E"ڏM~~=Po. u{p Vʠi=3u%N01NGIڪM,tUkE*\fTSY6qP<68+>wh`֓y:p dT*[[߷cEc v(zѝ.e?@LKUnO$PH'L c|1gg=? H6Ù~CtJ<CC4 }FhEhvӹ7t8"75AuSGÓQZS9bCA:AQ"3>' T*1~U&7l2H_g5B/Ea eYoaFe ѵ D SJ-s3UՉ06wgNje4.dpRgUR첸561WU*3 hɖ3ajMMNgI>iHFT=Eŧu@Q]AtYZhc%r(sB"-^ynFLq#z,ZIkǸx:+F>+eY7b?*7ø<(bNH1՝pӷ};/M0gI?{jYÑYF 򩿹faycf*T2Y㹃tKP%YZTel7}OQ>9t[ ~(s9 Ap#UAPQ A4y9 _hVK^|+8Նg~^Y$hJ-C ȶ,6wnm75jfj:k--lNsֈCQo!H :Sq Dg)d` *L(ꌖ?{12nzņqA3c eq0:P9>hIM4=j/V'F4dW5[s0 `C.( 8 xL'Оrt|_zBE6C$ @ZV Ezc%As򾣋 &'R'| H 6[?)@ iyHnUݮw =JvaGvfׂ,^:QhAjȃ&. Fדq3^(4[4}l*m'8}s!7jOr]1G"NVnxD6HR]Am5ݨzjLrD( ɎՊg_F/=6B/n h1՗Md_|к_m4MMEu\Ox{Xt&8v$[W4:hzܨӅk9y #.**?7הS_ kʔt55Np]:8jENlH1cN ?Pzn3Qqap<_pzwAıRTa^thWB[ 0PY-Ud"6HoymS'(Jp51/xz5<~F/!}b \ula m>fU$TVFt} 1RslA}u1J^H;=RAފ( ǠQR{gn œD\Gͧע̑ȞKR߫<"7t\Sfh8`4GAcݽ" Zr艫 Qq)n}ή (|pW\g4GȂ;4c:CCH(3K =;& QnY"cu*oqS2eN%M!iG6{z"^fC^Ն l|yvi,J {S2m*v i{ҷz]dK]0Ei7S1B{8V-Sf, #Ɔxֽq=d@g()/P9S@~,.#]0%$ʢIJ6@ ,P`罵~_v*iuUĂ]t0;sF,\&Nbw*3glx~:{Uw6;C,8@SL֎ ,r$}GFaw"x{jɤgB59b{S)EE)Ǧ* A8QD"8M|6ATλWFO)s&=r4Fc(Vs]-6FL-tܭR+:F /r%˹w܅yc]#I?leӶ1oV ٲUgc-ߥp#Bɚ`;&U稼7q,~F`O=YU+jUU^y?Kt MOXj ;p'ktZYޓGrFbG ."X2RsEe復evLG^[!{uga?)zug/i<sJEdв ׺*Js j!}]U0t&K?͖Of_ <'_M(Yf|~OUCnPzL<|z_D m$ *brAJȒAc_"YNEw?PbKm9"s웂ޫJ 3v/ ZU2zSJуjd!,"`JdjF[{'j?|Y_'&"DىJ9hx}FߠCm9 $aw)P=Csw'+p^+q𖼄v6Gs7y #0Wv4( *LvckHqhZ9=A\K' ]#k \ƍ,gvU+~#heK7XE\|EWiJ-ڷ]$G.tW5 _3y0:#n o mL/or!)OT ƹTrc /nGQ"ǜBtjc~YIUGk>jrejWb\d°\&͠ce~uD }[w:䓑<5١j Ǝ2! ׹?UBóK>*DE¤kUFƹ |0މQBӇ4 0y ( !o }v/'_p 9?Oyd?w}3uz~+b?1!c0$>^!7%t^9gG*!55y!\u9_]e# Bjfߊz S^@e- AG+$HPA0sӶGaݶ"{NH 7HdyДfo,} R0m$PS+e71o ֞4 H @zL# 1Fztxg^uUUkv ݠHPwJqMe7A6Gϛ "+;Ք^'ύC@MIu݈&΃ZkFi" X\U1{a`5&P}أ)eˆY˷+EAf`/՞\4G. Cc/؛/RYLJG, U;a*'J0%kXZ;c*O89c =Kf{J?Mlr([ y%l/Ő@ږ"Kq4ņGCxMWnXئRܼl"쿽3u~4類a>4Tѝ οڏ`V{s% hѽBm*&ck#hoVҋ)GtbH1w7͵ӖPL;P۞[V^ B}>8[_O_W'ⱩQL 1a`I*// X-ٔ9JGR~"&?8;҄lG-~D2V-G ~CY:Y^G(?ԬEjWgGUo"oAw#G!6:<)_"~Ά7uw^%MZs݉YZ%&7Rh'>g|Ơ{-uM LUc<1|GɑwW6c745L4BD R Iձ|A/HǓ&*x0ꈀk{Ҙ> )̦@T0T5cmN{B-n$/zЇ.$^߰d1,φt\>kmȢ{ A!Ktƿ<ߋp*ue|{k )c| ⬱C6Z~.h 䴀 (!{lJNNVF7qAkPClۜ-\R~A{'YHh,P%Qa($a}ϫTI 8}PANYJ%/NS @f5&QMvˆ͛Uj5*7Jh$j?[22gEחCE)7 D2.kR%4u7n^(s妭\@`?}ݞ/?*lc8mMgYwvt_:2mut>)fl-[A:| QU'K=*x.寱0o15.Ž2˧>F׉DjޑamS[h5~QЪֽ%71+ \ra2 Oޅpkw&Zbz:{Jwe%%S+Okp2L:3~NcCe:bU--\Ί3v )ԁW5m8Ry/n+˿ `*CiPTK4ύGzYUuJ*A{11ZzR&b2hh!0ԕ,c#cXޖ" 3Ã෣ |4nGL )J5$L!}~{S*e`n?+$? *@hГ Gyr.r[ϛSq7K@ N CGcڠ 3W쎌4,3,鈓JJjC5eav:BrZQbdףm#&ڊ2j[\8K^q+[%"G<»Julqi #cfeX! {$س0h_́tZ S`f#4)SvBI^ٙpȷ[.sGt>$R.iR PDz=eĩ(+tCQR#8?.ϦoW jW;$eA>)V)w4Q}ZYJ4KZJ=Z2&^'VXHBHNf͙)Xoǣ2=~*lS/(-ĥ$dSMLXD^0L qsͩ0;kK%WWҙ_cQA:OS=fO>(LhFe'o௩4־P]Za+s6D洜uǓ Ik6knX 0D,TAH Q6K/쾽.fN^@̌Su=ft2ALzXǰ X9ݧ=~ k!|[]WqaJ&Ϙ `+Ǘfu1K<|Į'8NAJE jycw1> /U4}ڟ::rSךR"vq99i;m^φ0ίrM0oAuo(Eq1;fo<˞9s/0wCM a>@XL i! 5 s zEA{|/Ju jj+ U<9.ɩhZ[ W()'͌G~OmdzE&EL 7YVt1b'?,F&))c"1\4}#guB=%P_uQ uؒ9)E_Wg^l~d60}NT J Ya TsdIW .NI2Uى̸pZf4a,"`Co\eOVMވ-KMT5G. utESNꑛΚmQ:hj;P/ %Aј:1#i5:+n \A/徐6ꅋa&9Z&sh| R8 <_+);͐Dy΄<=}{˜~DR1x~XXn?nuoXhDT<"+IeH4!&f$ꭦBnm 20>O̥r;զiӈy?``o  &KŁdYnj'hhhUYѐ5)W~?F y֞&9f$)}/}y2j.e1ع `YH%Ҿ)bd\N Evo#HÁۻؘlFPN>;P1Ʈ\i^)h/sƻ+ݴx5-' ǏZyra)~0U&FyH,J k\ײbS(hxzAub"Fz^v.SV%,h:xT\7ؽᲲ߁~wH)HyAqEDX1QQ8׊2_(9[&C8Ed?rSr퐚.sN1iH-0UN d>SkOd:RuCZ5s4񆥛+@Mj\}d..;$#zT trZlWkCZG5ON1$Lbu{a"+ yqlȮ-Yk'5c6'C&^t ISkyW4. <:K_}ɦ57MsI_LFNUh$VO [OB-RRԴE'PXB^dݤ[.eIU ~nVg$6nPMh_If)ˎrTGah~>_-5J MHɆ5JcskqRԭazAZ~dR,fΪ =~F+=kxپR8mkDpdRa.~C:ojT  CwMP!CZiѻ1qV$>c2\e['̀o=bQK悢& -ed2K6rceWg Oo0 ˑ'Xm:AۏuN 4'iKpt3vZ`0GRTw-RiekċZIe%ti=!jX G1Ʋ!/1[;|a͔P<}u$ hiNL} "c]+־BFۛua#ԫms.OdF옞5%i~}/t_#~|E6I.s ..fg'gz'7v̠,d$n<I0rV-Nd;Ǒ7?W h7h3W&"hSB,#x EDZǶJ(h }UOW}.. o+"zQ# u`]xxWRBnGFPs8L uDW(({h f`2;t~ _@vp3eo֪H&KhMh`ajk/Y~|ig6Tu agི80z6,L#"*~$vVYdQ3  H|^&M'D I.Kޠv~3_X?Gm?>V4:C0-`Wf-٧",O/)\r"@z8PZJ`rn-rU|u /7f=\=fq=@-OOW{{4("cqs󠙧 0lyp+9;_y>I l&s:&4p^˔LgtV<>7Y0<۶$ &k߸OՀH(Gk>|ONԭƅ,Rrļ6@MGZH)!_g]j 7o%'wk9j0U{|$ըJV~_0̊^^ n@$w^֣ң`AX0""]aݝ U Po8-AĠ8$<}GJoh0?ToKHn6!a=wnHʘae;CbtffQ [9U\'KȤ8vZK:}sU- M\(H[gd:Fg᫬ c2u[(<#/ =(J6ql2E9yT kXN-TI>?񖎴Y6AeIMr$ʔvh과O5B R4#win]{_@pLUV'KZI!rӲIg1J *wG4tH?(*yG(C)]pC^ $b*o t@ݭblܜ)Y_^BŅЩW5.x^NĔ -Si6`G-QAZj$N3 kAȿ&A7T?ZH}w=p`·bIow_C:gT赗i~Xf{ 4U@g,Cn5uvM{,BQ,Q} ^}K''<,X>Rنi*?&6+rHς!T*UV*۠jCbmTȓ-#Y,6cggHauN!1=i9RP]W RX`ౖ!)9ea*c?WpZ-X:1 |5g9lÛ c8P-:l|c$HE0x沈+T8ʂYd>-(:9őv:jn-<πK2.M$ŵְQsSH4%o[G"JE=Q=K`\<3* t'(YJFt5'Di`WCHis}3V\ö;Nt4nf219 p P B^p42|e4xE,Eב1Mxkq">vv^$;y vRam%1|X`MW-уՄ+^07 .PE6k8;{6il#?n"aҨ/K YT@`7z5q3B휠1HQB]489N(I| (clRs{oyӰaN؏}P\4CkL8j8eu<1Qkhvo.Zn8rĺբ 77}Oգr|qbW+HoIoX -y.@Auc[  畑7z_^A@Iu|(wNHݣ(._hE^DaMǖ,̇մo7YT?-4]|LgCV옏rv洦D-p|48Ey"z;PY/,G,.4:XX~E@WAwoKN >jAgLBun KPۦA #kfv$GYT3M/%ĺk6{swX@?m2"S? {ᇖ>+thpd (uM8ւy7~A):k7zl-fpuJg?5qQX{G#JA3$fwOZh /^B mNF|=V~6\$m2 [6:-P[p-0{MOPVXQRkσ:Rw{ g)V8KۯDoVR$U/3{U/=sjah=\r? ~A||PGѐ+%uLrr8 /NrY9JL!7oъNK1wuL௏7WPjg.)]['luɣ8" SDF*SW OzQ/fR6"+L/ @ 'P*1'FS/5.~RjC|j)-])Փ(a5Hbur;4ղjZY/hGŦ;J(\&$huu9 1}p6[ɧVdg[t2 # Ӕ/c[PlRTT!2PC | k::{Gy#>^c ~j)%h# c.f9amqN$RXCyZrO:ЦHRkPk `-54o}F) {XKjЉ=#!xj5 Av{,?-Ti"1XD;W'(Rx" &9akQ6Q0TG_~eZw?{(=2mܗmo&8zxVP(zMQh;r%CFU벦['WC\PX|c֟%Yާg/q! T7ܡFR BfIAc 0 n8=ֳ#g6[mݏI+Zc7AݡQ:k578(!ߋct-Rd/c >l J( ֚#RK0! pI:G388+XY8dD#XḞDZtXЃlK0'% `Ȍ90ëW>!f?;x K@x'W@vʏIYUfpĴ V4foX _KF<&8ll{L-=Pwzoβ$&>Gk1Me.X$`\nI2fjg yD(/\v)] ti%%lu fgԵT@/.)C8 6\%9d.(Hw^D`N9f5,,N w]U!ef3.8AW_6 59vesBp”8Q؍Afz h\.}2(KiCb 3 KABPA=R'qفCdjO\%-蟙Q\CBq '2[M~Q'%J_ߤNfݏQ7Psk?P՟=CWs:aDL+iE& Ɲ6>Nl5Py!W*5jkUkaf/XMw9!×dxju_DyŏZӞgW8[(NƹI0[Wq2Baq s}ܛNc0ِ]Z۸J 4gjrOahF'FJ.:AFipҐmhuu+yy@XBPcue@'kn؎cKNi'[@b9Na*1]]1tB)f(h>(O5b٣?zSބ+Yzs䧆+ZsZ@JZ͑I36 vqw EkZ L /:Dۓ$,@jR84i}=z}#}Zxơw>r/_NGS8lNscI%̫)@džL#\Ttn`@NjU,9dr'4 K ɷQ{rJo6g.+^ f~ AOPzR"!-HD$kbJԢ) + GisފϻnRMTznX]DO[!Ea~+ߺ ސUB`4OXdta$sfƚKhhg{À`!o2y L~q{!&z,j X f%u5A? Ӕ]$C0ÝCW ¿Е\᠙NZOlk-d#-lM& ̶ݛXjD&[ 4\< ;łDuMh.UߜK>YA4sd9ifo3on%,u#ʹNs/p%1Qx3/%a>[ޙ< :(}3Wߖf[%n|u!гh:!TbLprq5M:Rh8q_2s86ݔ[q"2o-B ɲP~DX6.D wG]e_<>0P%$;ػlA#\]}a7/vU,4e5$R?AXߟSfdRAі?VzEFvȴP=v{sZ,D6LC:6_&c=L#Ÿx}< o+Pkf7o$IPݳm,;YTDܖv˦fOer_9$L"ƒ8Eͩɀne+4] 1l޺jtZ26,jhz}XEf%: p-D υc+ϺC '$<%w1#~~=pكop:$N<>~n=E[Dn 9uXq3\dZR  !\qLF3'&I342CXI`mqXhR'[+SEm'ٲkͺTr̎A8Yn4f[gtwTOX&t{\P4],PXuzz?c9!@ HxT >oZWum ]ǰFU-A$8 \$u#A/R2{z0+?^<Jܸ_Ih6vfIk4qRi4JJvliH00SeHeqxjӾRB!KD:88?pDI [(+wT*Oc4T%țcf3z]J^$J/~uDkܪXPh>1Q" VATe^lx0X>YV"82IQ#RЩb좵LǓ:mľ,0,Yd1JPXt i/lY]魰jEFp,$xUD„1.=whl-1~ 뙗01u)RV)uwTr+ /) |w?cd HTèC¤>~1.feo{ lae~6~Ac2B9i;{+6̆JU ᔂ|>`|HÐj,yJQ2(~kp 'ibFb rbv'cf/!~GZ4>#d58kM=IR\  WlE2ܥZƮ.?X&LH&2h̅],jߍ#Ƹ\4aXMD Օ&iSN˛9bbi/ߡjW-Z!|yC56\w6bI@~ ڴjhAD_Uښ'y2׏Rd9;"8;G7J0>i՞B+Em҉FWrJn? _ -5D~CUz垂z MEV@&V ~kiy 0 0)O.S+s$j m$>iQUQL?mǥ Jφ>HWQTKm =0=Qn»cVv-NY[2zQi;! ?xkB-kHfxp"ߺť&![S! ,M 6`P9NZTT@F8;@Zy# Ffa(\2Kp-Q8 gB⧑ *˟&-60Čr@|Bu#yFP|QkOIAC\QFu #ȟZ(96g[+r{EPԾsWy7ʄ9sQQRziE(Tc}qq C8КP΋_ㆄ-7 jM2|ZSߊ11 ơdr訫a^5|gd3j([(Z0} 0gi 3+&HAj{qn*xᆾ<։C\@ȝd|0Rꢘ=E1c ]j=Obk#YEw1z[3~ت}SbAzx$ix{d%ӕ)5ԜF-ENnV})h1qMq3cD?7W8o&2-xye{6η*D*|EKΙةpoJiK"2tv/KLIL+HJld5ŪXhBys j,S`it@, NkƤ@>jnL< |DzC0i'cNB7\8w;ςdB'VgsAQt7پas E;V >hK؎ ӆ|CJ QN%Fm^EOXl̿6Fiͭx9C^jUt5qÏq%Ѭj U~YP:cmPyrOV]ItƦJz8hcnVd!0ixEv(LП_=yr4 p?PdLLK̗\/ L%ϘSiEf beeD->B%4QMBaUVc €xx[3:7FϜtCG{i~1ژG Ic;~ixCpPb#Zs5&L}*ݤٶ: 'lP^:)ɄGIu< t %ZxoOdeO5pTd(@7R/~IY#rfdžlA 1_SJuYFfRC~ |C׬rMn< ^ B[ƍyBl8r -0un Jvg` <ՌtEw3Y:Wl^d)"6#!4rX5lFAnkm(B!vg:j_bO󡌢"/qAv/kep ;jnc=xd(s|֠`*-+ʻE}s\rppd_9k`)Fj=̋2̀*o$}2 H3KМ@B-6T882i\TP`[YZtFq΋+o#hD}Mny% bCQ[F KVd I:ϲx}" XIq=S_94$c_X{~F:JvH 3<)x 0$uUȩ 6Yj}q%X*LNeЍ"`1b;a[V*UH ew$.bRQŅ~`y*[!W ;d-Ciy\tsX9O9F&IR9mA?}ʁ>B(Uug\~ە%+P$f[ UOi<$:#N ׁ]V=?>z(n:=>dh O,&7 {&k7~g;҉)O,4+i8-1Mf:%AZtW,mDt -Գ Z>[O~/k>b QV̾9iO{$7EhI#1Al݊~OKVjyrsyMlY'UPOcHxgRGVEHTQ_PzEl `PpY-&`b-J6\I7=Nv( l$TnNwKH+j%j6Tx> 0 Y6B鸹K 0VfzMxo4Gƒ⯊R;e`|\wC]wշ1z6nmAnAuXkd{l^VkzfKkXl6e&Xy(Io2[AB< jt71IJJW?-S:hδ6tRNKp_DGgWPdug#>3"쁞HO2cSW(QeܐzI$!BkS.dDK΢Taa {}e"uuXrxD`ȩy5Ѫ-"Gv2BKA]g@rK{O Tjt Uqm:] mO+3t$4 >koس|#|)L |a b} AIgHvS 5a?֊3@_/Np@﷊[[8'JL,D'ƅ*?+ӒEzЂR{(>ج*AX]QU#t>0J<@k0d}9Ddv<ƀzޠ:Cˈ*e^D6uMX0yQXxְ0cJ s:2 z̖gt/ Zo_ya$%nu nB.K<:+e܄ otxuFFS8E6W0 eaxwUR.ݤ#үW>bc[2<(kLD15PZh)3dS0uR0E'?woa\ ".[ho)mf50.|*|=Wv(٨Wz#^8|tdAj}@aZ2c{?$/ *pYLA@~OvI ڷvˋ6b_ˮ;w МqMŔW$pu3{/n*6E6]ȎIS}MMZ5"KR5|,[yqϙ :~/C+"^o~AJ=sjlV@ZGU a_s?+WWo7\ٯg\"Π( E:~7^VzǪa5/+w{/PZtRE^L'uupsdYP  H{ ;jHK`CէDSKp=] Ǽ1wPSL%J#kB˫ѤE 8ӕ!ffiu]81eh'Of$G8nMȲ:P3O2]cȯ tDmwD4앲NZ]A?L{% PSc⃼'hcX!J_~\ѱcMHܵbu\[~CLCE=GĢrї '+/^jɘmmINW$ Ȅx]$!|W 1n"\ll8r Q][b"p"x/je)i){[9od>BWU4׌'*p:Unt=dh*/5#XVv V=f\L }xLhM4a'*i١"<9 t:Wȓ81C \>J%QsjvMF-K)UF@V 5[hvwP>Zg.%I]zhc~ MerX>#~ i~3[Fn,X 221<2z.`:6d2AќuB롟ZȨ!J{S‰z˭B-:2h6ʫZ-g3#=v U7kńt]|) 3FXtSMޞ;xެt__nq3Ĝ8̘7f3ܓ&1 gp& zh㔚/G[f#Bt!mH{whzsckF,0+IbM'@p8Dr҃lofP x!!Mv//ag{]Ð8o\:koN4'#0䗜0VZj*6Ax'w/wS]RM/Uje)ϛ룃&el ;6XTh/-)ff*ǡu>s+'*;x5W|DZ 0)E/ɝOW}K҇e[ F|/'lA&/,|q,\vDNtsG?[&Eu ZoAF W˗LM Q +hcyά }bM'$_ŝ-=J:]7 ۶ ^R ΐ,j@U0g^P0h\3.Ĝit,,r 8s?@%'nd`r`j sd V=[SfɄW-WE"PEjJ/H—(AD K-oF9V34*DQ6rN YSIr* #K^J|sw z&YR9ʟ k!}ח4hNݮ, m3H17[=cwUr8Z6=K,M.,X׏v9 rQk~iH¸LaF[ȚW/:IKjljMU>WŒn%pva> /!/|VE.2%X{tJ~krz7@ Gț4+EsRH, 'ŋR&Q܄n۹ ҁGcWT"k Џ3pVjjsJ`I2um\_omO֥_ܟ<>"Wax];҇&}5y9mm|56Ĵg9f̠s'CAP(Y6@':RRU<4Ƕr[]H@}&l-5풚re35$FJȄxCWJB=)nC+~ӧpxZ-~&q{AkK&sҚ(B+>\.sɷXdJ*zJc}Fۄ#3# ]LetTȡaiYW̾$C'nH}u) %e*>o`1JfU<jQUߑ4Dh9\ڴ3=W&)xufrp{65X_{ =99)  1"H- T7 '+0 !>J; )Z,_0Èp O2WVŦ?O#U(S[M j>tV] Ud\t>ju9MFC)GV8 2!3Tþ4oqS"-WßI_n_$|'f'i%Yui2$Hy!X7S*`rfu ȆxXem>PQ¾ cf_m'ܧiz+Aβ(,Gb8Y3oìv~)fFh\iZZ%nKļ9{\~C 35z1 Χ[s,No2Z-`mp<4+aߐgVimf?Wn9~T8.#"c e/ޮYzR4B,%\k揓4Dk6R,0| @LUE!yvgݡNѓӊ04G,AyAIZ MW#ݑtI_NVʶOlZpFC4V~v,J(Xjzm7^()xqXr-ޅ]m/1h$ϿEfBaRm6mO{iK2 )Y}(pN?x!ꓻeySɑ@7DK!DY]7cRQɉPw.!~JQD4)L5)-beIqH7H128]4ϯ1o5X DR-wf ;c3/Zd Nv>@ѭpJSf/EϞUc<Ħ~U@mpI/@zRR3 BK}U]I ڮMo2]N!(^*T.)lV?륬6FoaYi҃R{zʿcMAjs1kԎw%e=)y2Je7#bHbʊ0 vҌ3(`cRl7q>'=De^"X3lGbxxV9N{NҙA2H̗E7y"|'|<ۧ>4DjФFJ@R}b_dIɫ08܌ t &Ba@-0)? ]ϴD%n5-8}Nl 6 ^#{?z[Q0o{[Jik%6*) Ėi(\AD7&Sr{g#-~f>~<-9n !t?W:u^8ʌ-I$&i'?q!ϳHehkB6ǣT=n*ʩLr+]ާf^5lN̐j+dKWX+œ{ =Yԑ8pGU+MWRb/=ɚ:fk` .,|[-CKՄTǯgX Bγ]r@r /śip#4֚N?pvי o0 %eF{ sbFkؘaV|L+qkfTd-E2"Y.wz/؉)BIrǛ*^&VY8GGcj#y?<js @Cv' 3^i"02"g):ZߢNfdG U!9߬A3鞹rTBzҕ!_a)tf>Ṝܮ *gprIj%˹Tl|V {%6Es\TU=;(]}y$+䁫>TE ["XSIr+,74/ cn}s@{.PןYmSmt2XFTXsR-uPn]AD1 ٜM('U_zӝ脣OUbve碲2p 4>;mXR@]Hu?n4'2Z'uTΣΡEX 2ב;qVSR8B|*m,"j9v?\/,$YN x*f<%/&J󒒀"cBŇt'i}'ޥҳa) {v`OdnT;#I%D[.P.b%hW 酀}tl*LН֍)1 D@.O1|S}̀W55*uwax)43t9XphkW>U+}]^6U7@:3u[~ٚi/lT8}ƌF* GT Utlքpɨ|.CD0ݵ^RlQK ЄcWJWɘ Y#S`Uy3^~H|D'p`-Aef2HcSs gu%LAɧ>>uOxeßx:y] xЊPQkCAnyݫ pL<jmϣepBii(JrǦ9 dÄ$gы]j~([=ҬX#шѲ~a#r*S<cudM؟{\@㠎Л4$|Vv9w'J6SL4}Z^YlkA м^0.h-ZfwP;_@jx]|?@!qJMط &7K kCRl&F~+=~=SNd$T-,r+~ ߚD߷7]\\WR΄ϹէIbLi|pZS  sYq|\b25+Q5J)KTtd0ܧ:-9.C5<so2qW5ߝ),E!-6"G\d#joYau>lB-mAޘˍ<-&2xg DCNO^) \}n_]MTDf[O%ːt8#Fqoy )eUA+l @e;6{{ ߩڄUa az2_;lk s=nh1-)xhj>ݙ 0*/.* 2+m[MCwpDa-|%\EQmf#iD`8pe,PRQ؀oQߠnk8IF c?f\ʈRbrEs@M/AxXߝmtgÏ2Gקć}O?A?X\nt\}[^EarN"@ ږQQ|N{̛Q3N}m'@W>b^[ ~ԔlpqQZ1ѻqw < Ay&kne<3'B=GS8g9:0&l"KJqJC9} xAѣǷB|G>VE J \i򵻟iHtѱ[)CAI Qږu^R0V>%Yw2I"5gY (\V|'"vo\mS$ͦӏ8l:p2!X}]cf$$ɹhl})t3r-_ l9RR$mB.e\ޔg#r27.ksLnՀ|MpAw)߮a3;aV~ [brd㨕}|Qm "Ϯo5\]Y@{i*"am Ăc垮%> )(a%[*)C_]JXp١EJ>K緣h0qa؏lR)f' h1DtjJ+C?(n}X?sZ#@Yk5!gNGw5LQsmAcRP#@iJY? =^ yӨ-%kMjX \:Au ۜdf2S]S;2/lG:}i|Xg$! %_*}$Kp- 21eTre9iu1G^l7x[@jB2R 4-IX9i{05Zڟ7 MtVf63[0#{-m[^&G8>W$"_*-0 gZSp ?bÞ甛p`6F֩.zx.fU4I Q"JcCȨ5a8S_UߌQF`p#>RL#%CSଛG*9UTh.=J S!q\(W P|zga\BN=" >јOؽ*4e%W [޲\d5)?tCg9ؤ[O5Kem?eBڿ"٧%JDi#ァxڛE5lLoӚlZF0C.(n`U֘Z)b?&^ۺ}p.@@1DKH0FV~>ϼ|#Zo2~m?U5J<} IǹN6msT+=?|3v{]%z4R%HpĊ!NW$#˕(&T!`MP+M N\i@(?}hy=$8e\( Z9zR&8| bXe[J~ -X %8_{HҫL- 9`kh^o~bҕN;8;$Y07,*+PEYv-Ĝ |x3ߝx4tx̚z84"}k)%x'իP'12u=Ӡ_x,}[/7ԛbqEݫ]6zy.{yYYgHyvť~V' xQ\][B'Άajz9r!oH2IM'9)r 3ߛgԍFZ[e ~+F "&hB4D"S Y&L8)%&xP3ދ\ɍTJ>WO4St?Gh!Qhe+_A_ 5+7!DvciP+ )9Vx0Ojw6 (`_0($=L+0q|W6Ћ&^;qo 7 p3 *(Uq;kaZ*lKwje#c()aZ. "7b _|K{` Ɩ(%<&7X SƔ:HNmW_Ia>2[EZ;o0nNƿ/i}&܍ޚD,į3^qm"R7 *`D[l;kQg"9ܖګ6NUHG0Ǩ~mS0e9N im)越N4jʿEU}*Ӱ !ڿbD缵2j)՟݊9}}LUf"cBPߌiUr38-&FSG\T~S 5/}  |B2'f҄f@xzb}sa; 3?Y 곿oC;8W:k(:f:fO`(WJ/H?HQ Ld#=Z^@?'y4xY{+i[jhNDh>;$"5"lZn U"oxF_孰>Ɠf'։Ek*a>4ѪMY\Gfci?7WuM.Rz E_ޓ]ҰvXLC1C|JZ tJG ,y9nzz+Zv!6 }܍1$PKEK?s.z EFq8(r{V$!a#.08EQ;c 2ܻd8=YH'gKdCiNIIW.Q=3 Ǟl a[GU-vЂG7rE.>Ylxh_~< XO7DpSvZ?ǿq-I-g[$Ut?lSEcbpAtOYŔU&Jy;%,ik< Jm8R+foЦ̍HNT-3 *=$Zk]F&~QI,]l-㐄Œ^:;dl?v "7,+"¶:\ tNKE9{z396 Chl9R nC0B7C8}_OѬ/ b ![R^Xo;"[0DT=]_#wl_׃!ZοU獃>zx?60Y4iUE3H uWqx d! 蛒tSpL'ZڈV5/gh@j c#=Q-QV\e*e[_"1 ̓=؛2";^ip(g:L;ZĀߚ|׉~m ҅WB^KSpk.`H ۹w3N ΢{y/Fn!),4FP1&BS݅CX ME98;VƄxgaVs`E P|]K,,YcK%QlG] O1oC u/X5ed/idp?sqI-8_]O@1ԍ?i\\I9LԷ]]T9GȟpZY{M`L)%K73%Շ{8laR`^LyndY:5;wuqfV282W{,NUbl ""xcg uR#=}:#gk$yUÞ/H{8Kjaz0FԴ4<ӣ;r|̀M;LOs?ߛˑuzǃ>L-^'J6$1%N86Aw}H,,;#!T0F.s0[ ]P&S{hbNΞ] r%\qùH6vЦJL2?T .>v=7<0;yv]bfLXJrX0oQj UN_cC!65Y/+"#s8!{p]<."Æ'- Jq S%(k3U2&[Ҹp̜y!I=;-$)NP/Rcla_X#B.waT+5Or+?/ if(IKs9?Xj/4+ I{-w =3R|Y2m ,>O0qqxR#5pIS8/qCM2@B͖穹(;{ZKFTBEC'Qya) JϡKYhY)2T_2OkzgK:V"7O}Yh}Ǎ^($>ˏm| OB{ P4 ƧPrZU+.q쾶k TH6f%߹$i%+\d =|nh~iƒ{}"*-4R0je B>QmJ:3nQ`07dwúFq̜8^Gy#-^Y~UECWA^x/ELrwE% u{tr1'UmC |Oj p6F`G&fy=%:S+B1fru&Ge&*W2a2vmIt=oy>HdxzHsB6.AɆ?p|L/`ar|0VۢbBc> 1VwW9#6)ܞa?cS `o",캥(4N#HZ9 bXoBSanxJn=ɳbBe7 ٳrk}~^]nǹ}j..o٢ۚڣ8̐BFWб)ܰ1lW\+25bv.Iíz\| S-F0YTWE`xkGc&k{R,J)%T>gf,X# '"SVW< ㌬bW ͆>вt1HsJ;iӉ'v>_>uor <34*0zr4+@uR|n]l"1&԰V1ua՛/X#Ƈb [vHYpP*N2UÍBN(oďav0,  ޝ1FwZ'쪩<< @1_r( &tדMhO7FYWDaqE:-\:h~r)F"^cpmۢK=^0VH&35/LFb+YAd:tU HQn H!^k"%T>zs+J|#:]vEA98Z J?L\wb3#˚˯U}Gk ksT8llplH1VzOpuc7WQz1"M߼y(+6'BW)2P'M3͏(a;N !tP{H/-WKKYL7[\QVfS⋡SU6( $ш{{t\zԦ= )0Z)eg2,P#WTb^XuN;2ΰA j _R1ihs7gZ8I 4{E \'@C6C Ka`zpuh^ }+4`&K+>Tk%&u.[]J-)<^ܕ7fE .rKcp 4?v:hKZ:&לNsI%Pc/ދK@GkoiCMr@xS<蝗[2;\]ˤ=]ɞNH>I@\&j);4: 7yb.W_BzqAIx ,]Sd5nyOg~tD9,fqy5b`{Rk9Z"?R*|n'Mݹn8O:`ЀR!ʏƊFZYl+}< c E'[EjvJǙ X/yIXtP&ۚ]ԺW(wsmB!><;\(Fd>PMTr׆9 !.'4f>eS;gVT'i 1Fro uRVB7ݾwx$12'E_l!-;c58$l& N7ۣ0]ǔ^q* 8ej`K_.#ej}ȁrs>Qsr=8,f(C01\E[b4=M:^yG+f(V3Xojs~G8dH_LLG۟Ϟ+4TrfsqnPN.aTbMDմ ;Q#6᣼Nd?M9kyj]W19UuYSyddb ш.,V7CWt [GeA W_qRGVL姀=80r]2Eզ @TR#Qk O*ѣb"^=e!y^H#tB^Y: )G\)hMjpe6D:jJ+˵5M:~t- B4X:W/k"Kal2 +o@-fڣmDUc*s-f.{9󋘄(G0Ǝ1]jr#KQmO lX*Pw Bo`.خ^p+;SNX3wC=Gm@; .RДd& N,BױRŋNj/EK78lI5 ?6g[4ʿ@n.ż4y/oz1j @@n}I QF!R϶ 3wJzҼ8W?)A,9؆A/fnQ dTpel)`LseZشURIਕ^J2E7ܧEu.ũșƋXʍcX)4̬&RYȡI5.%Rqۑ\ :%H%ޕQ}rW`܅oŖ^"jHlg 'f 'r+ ,Җ@ *32@d9!miT 9; oZΫ+Ču G "nοZ{%uE#}6M7Ϊn9X\wT֝YȅYרC&^;Cy?aV.[ f\jMg5"ڌɛ}3ر{L lL.i4GՕFj K/+ BgzKl|6⹮l y'3?=ҞU^l-= ڳN~E.k~hVe!:zJX+M)q9[ ;-aF_ MMxްfu&-2f/zhb}YZ*+٬AP +옗/ s^2~NY"֨4 /'݈c\ ˰N4լ3Km|B8! LH0ev:p[av ZN=Sv )tߢW`lGz8&,뎇{ y37m'_EE7z@1V C5*WGh<9e;Ct/ޑIFYsvt辴y4+CmQI0l'߸/a,\ $UA[fM :ӌA8m3J@lz ω 3uʰĈhFZ3Tsm}[GAN׬TP Cesc?`4nB!QŐ#&nW17ٜ2C!C+ǔx3it*%hQVVVm$AY}kh^lsGqe:*<&3錴VT6HbI=fvo x ZM۹ !e`*^ ϨΖrj0dP(MT=ܚ,a)Be%8LF۔zG N ~#9w 1P4Pr7.a.W~F.ppzQ3 ">~ϑO&eN1"H^C6 Gpܧ  f)V{R=v2e6<>Owoɿެ0QqLV/+ pGxWZ2^^dWEkr{PԍMfCzޤU9DF mbe ,`A?`A ׏z0ή3(ؿұ͸PS~S\w̥BCnUDKd 1 ;* ">AJ >J! =hv @j퟾_AC9#kRoB׈%'װbw&޼1#;hD:5*=EEWr)ʿF{ۢ_D R{4e2Yҕ@(ЋC~ ~ )}H0H`1Qx14e D%Y:w?r4ӓt$ҭ~5m0%U)*5T̉[jcظ‹ܷ!?@d؂^H 9 ] 3zTeVKq2STB?G<0BW9E-L9tp0"婠4&bS{" SR`l jm @ص"ʊ׫P$2sl-B&5Ug(X# 5{nm[_dX\$F0q e,8}61/\wMmܙ_K=dJd+c /RHnNM] Ouٹ~K`+t jģ}ODۻ9.5HiL׊K\ԋ՜|LϪC|(&UB I.9R:}ؒ '%Q듣!D1{EZS) Z_K@Tպ Gb8P('&2\0Ai.mK_~;68|KwQT@A]R 91oغY']I*o_r-˶9JUX֖R 9G+ua ~X})jmD]QθzP %LTI^X$I~Y<g:m7$Jfiە+C#{84Cpp풋csՑ<9'Rwˤ:wᄟv9"02m/bdۿҪj 6n|'AĢ]>}If qٿ@.XUXƆ!Yiߪ\:Uw-~=O(J~lG[ ˴4#1#j[T1oCm=I2f~=,fv. Tt8(M(g5OQPט[oA{\qTE|No&KZ6Lq5;&PձkPaRzCD",.~'l/0yn"S< >yaUāZTO%)0.О^Hj [KN/ϓMK( ӉN"( \#4P DT+ +ۖ`M3pܒ$ t,6t^^`k+y^sQy GoF/&|?ޗ`jS h}w J6bB:4b1G4׊כ w{<#!ظ%[l-ӦS⺹PtX%5_P=A`DT&gX>sI|T霔l{>&(yQ6> k#D=܄T l盫; Lw*KMNPu'YjMa^>6/Rt">eT(/m|1ZJ?  Ąk磊c iKj~0[do2> ˳~6P3{Z^uS9QD8aEhK[x P}=(Pd*8rqsձJys~(GQ5PC)Hal% Z1q"~*7 "޵1d1^ wmt!qi8Ơm#Q4qOuG[y?+r t^GqiCѠuG9ˋp€v:O>!Fj*xRU+%wʕg,DOGTB eŐE[`tb D௠"Hd2juCAҫ%R/ҼC5x",2`D by[3?pQ\lmŚmK2J dxϭ퐊1qtmU~1e %asE ̲R0$ֺ-!x H@Bݿ\Xyqdڧ8-F Zaܛ0>s lč\QEOʉ(CuI4~}Dљ-9H8ɬ-8 ݞH5'zgVM#t142WG8boW߫BQKkƬ*te]>QGXZWQ+8Ewn-rgSrIr~9ah}B ScZFonp`m<e8,u=Oʽ>%_Z0,m s\u`PTp"*?sd. bcodզD\C XIf*7ȉ7T@<j9"0u9NCN@;i^fiYz s:p.lְmÈVl#JZm*pE(sii5ѫ*VRZfbM^XK]N06RE3:>TV 7יP-;}ԡҷx錎YT"Q!k;.k:_}TOHdd:~]3,2^|KeL>bKyn!`XZIҀ+ ty[C/|7YO  fi/SJ 0CW6Č͙Ǒ)=آ-@8J[GB/'i֯ ljb-XbP0WGig3c-#?:ДLd@J'W1۳{ӛ8G Ȉuɿ;"{>ujt>]u+/dJzױgo;;dvű ubq1iEow=Y'#P)gVYgw縘dFI[ okBOGӊT3g0 |poҨ~DC#yA"@١=Ŏ"w~r/VzYTc,]6鳽UQ=$ ݋˭5Hgt/mUb;66dpj2,UspE[?f ZW@]hrm‹CQ`uT/sJ[ٳ{ANrSjWi 9`YM'ŶV'~H^#4,OxY7>$PIeI?<8ᰰs^1ݣ謥 Ԍ~ >ze0{hUS7ﴩW/tͽ(]P'&ERzj.ZacbAAQ$B_ ]f2g9M:]A;*4]axj4b?|AK}k2OL!Ji,(\zfm?6Ȟjx8pPr&w:.'Yw guwȆB^5`(Rr幞hCW&KVVNO9ݓnɧZ$F0; 93ZϹ+o^€lShf1p)K]1 @#_v@-]$[jFz2SjOX556=^fSȧ2Nz4]62^ʛ T˅&eq:'@zy/,-`aa~UgҖ^xx.(#D}?#L61,;K5 82LbS^01‘%ÉピZ*xNUҾa#h~@*ZN"> /a- gZt0Ĉr6'{OA.pH(K>(3qP%KU.t읦a @,6w6獺c0͉dQGĶѠz(m:SGDz:C[".v/-7ʋ- LB אxRu\Q2 6ɼ'liJB7tCUō9%S3nc#"^[Lbu.SQ{-sZ)Ӗx/d)V fuQ.Ou\8~ TxefHNW:=8- /;!A2Po 8A,ʛ. F/b,cuڵA',asg Aw+bɺ(lEmH_jT䛸9@4sDXW?gTeGJKS1gɿҷKmN͟N=pZaĔNZ*if>7''%VO %Rtԫ ju|LJ^+I: }-Y^0Im\TŠHSI96A2Cy̋~HѦ 8`$-M%W6少pӄdM]_}XXVul<~ 2kHL$5-|YUH- _|+~iFK]1lTUC_XS ku}i,,բjGLl>%58gjȈB)`+IXe93M/ &>啭yopË8bKOG哰lcɠT4AP<67VrJW yY\wR{Ըu~j<"lm:/vj1eأ&# Ή麁rtcCFLF\AUSdW>,D:&z(3cQ'L4mc n&W jmGf/7cC"~H<;qo̥_;8}3](Heֵh[$#bSii?p}*h&]x@1T)64iVş˱"{ӰZ3@aP. 8\mu96Z%$C3#9#mv{Luhha9w%b"Wh[`[XެOeP憯uQW+HPҠeG퐾zF@,ޡJ((0`;{t!$M4Ů0hȾ>h>.2)ںQcuBG MY.}l DSnBDutV)*#ԁT0G"XRR9ftl.~iw^Eg]3D2?ظ:W>Ͻ]pLJAFsnI]nd, pC#p1>-7`VSJ)O <0hQ J#OdM,JOĊBIx~MGۍm>hSJ}CavOl}s쑬 lfD=C}{bt YԮvLkOY]c 3^X_Zaσֵb,fmGΐ GnF=]*b*ZmV>#s sѐYЩ”ytD`sANtŊzQjߝd bGߠP4 P1=$>W o҃z ο$[pCMoUͻ,v HPxP>* 5nZL~-RE{ f=YK}0cOVixCwt'wЅ%)]h H Q?dhN4(vg<ڿtXzZ9cZ#{L196JfMsAw)_}^*_YtJgcMv5g0 .+U/ %H%54OA ;3t7L1SXb&7K:$\cZ$#*V@]1 Kd(!>$3 FxUcƋB{ +&F1PܗK iIaVa*,.E%!7W$ ?\R^||H X>Bc;rm.ylj," x/&J)X PKу|;kD rMuB}ff/ZJ/%]ʡ$=OΠ(:}+N%87&,빷{!2L;ۏ pn'O6[ƑM PQz6k&J$ x!y'6NHsk?JXzhBPdLQ <ȏclL[^14@D SJ!޶s!3l|Uy1FOk̑iZ!ĞCesjO"R&$H@3GĶ>֧ڈ")+yiejkʗVoOE" + z zJ-IrRI;km7uhϚ09PWoI{؎ðلp 80BM؅1-Se/K%}D9lp #w7q~}1&OJsXXrk1,箉gKu>XwpL65>%o!H+ A ) #Su[uh0|G=<׃<98<;k#7- aTFUyMs:ɚV? ia8a%x\+@R"o6';n*逸Hrlon+E$+O+mKkkɑ9vB /v9lp^H!`jsI9^jXH#dГX_ zz?2\f=:ՈdN7[jøp38v9(s"-/e7xޅ*kiOV"EDo![Iosš020y0;8ie ?}bֲـhn}-K]ADhv,+r[y5<V|q< ,NINnJ4nC:Pf\%u.T6r@r Ok\T|ӣ&B%}ee]'כ5_Rb+n-4(+\UrCqqg߭G .u ǝ\ޒcBi}_R˱cp_?-UZ0 nl~כ9؈vOX\K4IJ j RAh59R.=]ܢb+\ 6sD'߬U{gV+m݉..Ag:.W5Zvb 5ҕ]J ornH&<9+: IjlP:h 'K{I,9zYGTP"r]S!ź#i Q'.?-}y;*Tsm 3qXd-Gy\$[)8O{HBfhK4 &W&JzT &Dwc^Am!Q*)cMs <̂S{ð S:m]Ŀ/BNbiQ=ie}!1l2l4YH5`ܢ(TڦHo,{g4IZJx>4k`Q}D#oqoA]o'4d7)_pjD\:,Ș|b#?~oƎώsޔe^ 49١Wg!Y&F,m6ZaQ @aHAןj 0;VxE SimuuVʞ>zB(P Ϳ $N}X_<w&9(a''zbRY2-q26 }â  sfEZY2 d&u6O`|RFa b $e=t-008bj끧V#1Iz>= q|$e;iMYj3• {~ ђ^+ ̬J$oNѫ~Ŵ,U?7v}qE3&&-PSN ZS1R`<,맢Y%ӰG+lח؂Mm~u WPQ"ۀuBGYpʓt'{E|)."nX_s@} hQ {:]_3 ItkU2M2O~[p/pX^< zB|q[Dx;;`XRK]v Xr3Hܰ?7 veiffc1'{=/#|]ㆫ.@"hNHb T MQ M$GT]f'"UimP/i<]%|32}EŅ)ɭO H~D646\|}.ł^ꊧQeWI(ƖRGR`as-<NAdw̪^5}n Mkt4@ fz@E!@编"1V8<[K?՝1&Bf1{hFPj{wu[ /`wP|?9SGGGo-|v W峂E[< 6Zs+[cnB5%ct ~_twܯ5SELе-(і7Q̀OɛWqG|ltt*mPH i2!Wzk Cu:{|ccJ:ǚRMkC,pKaz{NQ2:w&Z*caWLjҰ&*:0',E1*?tIٌb Lɬd67#hdᮦy~q%-X3RiPy8SӹEn?OF'!cE ̜y~nK 4VqrG0w$l]uBTovQ~} #Iڒhh|Piga$R[MH^Bk*-JXt}vI`F@ExLwĻ'/$aB}:gއ ۀfXt}rpNfle([H5Ͼq1a!Z7U92ڥ{}9b-V+ vQS$#*v!J[Qgr~36V+IjQMtw}?XV)Mkj}))˴=WILC? ay> <=`"fv_c3VVnV}MQ"X;B,FiDþ):_#;!+iu*b>NJ&C5FZdLٕh?)H^3CD\Yd(#gx,g3̋Yp ڠO~]`-(ʏ_Fx0HQ՝Ak4lE>&e/C$62O:.Kq{,gJhMvx6IXQj嬫SkoK?Bl*ϪRz5oTkACB ԏn@JCJ&6 ]`bӃCX֊ү wzSP {$[9n0 pi:@#']N| 2]9-4Ap(`Ǔ+QG<\uϯ8*gҕ'TA•G"j]pGJnŮNKq5$ Αك4@2U"SG~/03GQ"cb[/FuL9|C|$_O'(lZ>5v6Z2]u|!PNC5mr9 ~ /^jp+.*cUu2ce>t8_͵1lr/~RX,0]kA %i{ӧ~O]?^Fsփ,px6`bA&sX5oEw d'B1!j.Rq sYLt`n ?y=K'>wP1xRylBi8 $KG=[gt""] :_o9ղ@RZe-K b4"ϬSAd0x|fs7 :1w$o<*m bṔB=`SRϓZ/#&@>Ca}8#mn ](D^=X9Pal2E" z5=V{tNzl5-X R]!r'n^Aef~:Kމ`ܤځa8;E'uVKRnUI¶f)*"wZwĞ,ZTٍJ/`P,;C!%E*;N>VaL y4Y,dt1J&׸x]k5ר$i[#"V]WqKipVh("rx@.nzA2eGRtcnABsz4yIJLP Ŭ/;]f݌'C~6*3z\H<&hx|^ 8+-M$J[VOe<9ݾWY{8:BGxf=2p@dadԹtHC,$?Ri=##K8eI'Vh7Vh桉aFC:cExT(El02BK0A;mm!,^}!nDgf SFMW8x.;ߙ6)ïb|#ƣUiJe+sYv3 Dc 4p.ݥ=)87g]/`؄a1c~hWC[@)L)5 ڙͫ3Q~50^9j1*BqϠOa8>-6]vК|='ݸ nCy֤'X~Ү=SPwMRk'v k5y<`GIFu\=k3Jpg&Eyp dM_Cr8pXΈ3OG>VJxII u U Rbj؞ޫWBM,lF3;N(AY7ݤ7.u+(|jP+W<#PTD:3[;5cP$v>z56b02er˙vb+mT{yG–}pJ%S_LFOT c1 sjMuROXv1Xիy)U@^eךj&%T Z~+ynOJ0k"fг˜{99F{\)qKXR@0Q^ h֧(T^1#k $(wܶk$ "S$az59E辻h*x$U$5@ D%@jDمXg~}: dS#4cj nj:6/pq8!NYmFY1=}[?jB!{oqoB8#I,ֻ|ʎ`xqD|y?%0I :+Xm56=[v|Wq-wa\gc#Rh[?FmbEN++ᝆ ƆaU*W;ͩݿ}uL9P@(&x\Ża2ܐ立`;/sBb<^l4.I_eWF[z1ӇMS[^:t?ynCVln5fѝ\ǯwWN4@UW2/ I5JgB=`O. &\M PzVWۍ{jU8 ~Gaज़`'^@͍ "O.uOg^.`O#B(z{N:R&B>4hTbW{>$,^qV~-K?J{1/p7 VKssMf|_(I Y$'rh1 68q(pWi˽#}eXZlc*YLb  >!XG10EEm&[FfN&Go`(^ݝ6ܜ6{; Rxw'w7ab Q+a+goVqhK>9%fR'@yG\[_$ܦ*G1Xn0R1-|\S"6JvXOlo \:[W|v'er(i{ =g-kڰ\,v( ==Ap~9UF(QM741)'giEm EوR~o'#I`S$eۧ,\b+vUVG=~ڻ##cۢq5c^hR$[J]F9LF[Zn4aW9'y\Po<jV4`ðC6pJ1E 6ZVBz13o+)ȷŽsGһL j7~kiP =c MAOL ]8gXE2uǶ*6zXl.Q]EY|F'?ZwT ;}} G_"|'QbMf(o)&ٰ]9qVJ +-^jʰ-eſ6vKk: OdXB=N~ pб}lEK&&L~LwI-cbUy֮5iW)e;>ȥfI˵եr$|;s 聦 AB2LDAmĈ딠B"lKa1PUȞom !<òxMYw4Q&5de{%PN\=j.2VT]r/@cg[{эXCa\H \9:\HT77GѸ a:_u 򘮙Wq7;sfuhb.6Nʂ8Eu}'} k }'pw;6^ۖ>_0cL0Om/dT%S(ؑIX4G!~Z~\lZe|-Ia$TebH +w݇ڊIN{ؒ>.' /j粒 0\dپ:LiŀՆ(Sc>4[ta w#Nlf!!fz GN2, =ܼN=Daͬ@? sMaS+kZl>A8jsj7^яWh*G!zk4d-\ZYtjY?b2gYmQۨRՆpt]'HK1ΉDH#Kf2? %8fkK k~&1ES |L":ﳹ닅u 鲾H4s-⒮ {,1F xװB9KZH:02Z…0:]Х h[}=c_MBU^4 Zj=PkX vdti } GoyM`U 1M;Bqe%XT˗2+Rg HR۠1_sԲvy)=;L\`: 3VMfY)"2 ыϋ*v8]wJn'&b˜,r;H>JN[9^*Cd I- lRT_}N<703 %ˆA] fBc@~927 0Bwdf?Vy/luB ju &kDߣl(jqcdt7jyeϬ&,U3Pdg>%t$Jq?!b|S"oA" ^Z Lww xjEOФWƑ!>Ke^T];h%4;|/. ssr|8rAILa'i'{)e*qhtRZG,md^PVm61R'0DjQ1;2EYNJ']V}? M~-GZXTiY}yP(]%%!MA*#<=%F]kT w(X.Y,VsMiZW $b-NLv6 jT T^Ja9Oe#kB/RFa_l@`Gb`;m4K= SO;#Tfs`r)w/\sn $vC Z)ʩ'}R`&wu'}ۤ0|nKsR($v+qK'5>/sH#0wIٺUk뵇 'Bzũw;5G8[}߸2W.p ս\sRfT2`$-$fe ྐly\ҕizcpMuĠ@.{ŸtHz+jxDC rB7NV>585$UҰA;GiSfTQhNONς䇂NmLǩ-`bE"> Q &Nd;1L4,kvpeʙC[ILC4FQO 7l]jAvxh[+rW)N(l#_@@D֭銟mr~{^ߜs5B/> 2!H˖g5ǫrq)V =VrSBTܴ-,N!]rtsCå~w~U%5 TQngfdn%n r,叴 ;ԑsQ eE4Nb,X(&`Z>k ;򄄕'.__eq)t(y|IYd"CC'1f,MYU`cK,me2*( 4ޒ 8v5`}߸.su+gϮCag0^43}HqSZ:t?,1ݿjR*xnAS 4~#@vcIi(ƴV.u{ҵJxS~&6:ټh* -`[ޝ[\tA,tRa:ڍ^T6_2ZB%z.گq;\ΧX3-4&3x)N-Wv'͌gt$BA +ϦHm  ʰ7+0 `8 GwF>y`4{+7{_Yd+Tt^h1$7AiDz)M5XԚr DF9PD {|sK 2VEu{Sk.-у6:93vˢ}^)ktkueתcH kӻ&h6 l hg& #i^}"LlɺQNoՕo~3&O8MJg 5X$;>x{JW/Y1 h'ڕ;ng1zGv$`to& L i]/3`=NOOҁL._+*RȜWc:PBleRM<2.;Qe/pGӟ~ (Ijd2F2'Pϕn/pc1:*>& eS۽"Q=\oޅ 7A|}0:1d+`.|h:Mp\Xwo!'ͦ@@c#D4|K9k[p1gPO],ߪ)*ܽl!&ec&hϘ6gyɂeo, Kbd;e:|j_1!'Ņܖ7ctʜS4~id@M}~׭t֕=UJb6樾CE)m)TSr6 L1| P5,9.܊NZbGEgV%:Bj{磝]k: q7L7ir`u }e> P4'ظݻbTxCZٔAsEC6T)mܿsٰՅ'v+3`vn(Hm3K|)@ߋ'sLNN/f]$$K* i-L+ڌw`iisͩ|]ʾjgꍥjw6Ԉk4ª3) m0e>޳'m>E>tb5Z'"Ȏ8#3j&O{9JP!$̭zMcC'_/.saT^aDyw237Q43 `W4G.C :K:SI5&v+ ާʠ1Eһfzc`傒(SqTK%9DυB ^Gsgoԑh 5 %qmyE~Xh\!K?Sy*h_[ \\$,ο]*HF+qBHv!K9 z-N!$f$b0]uA'ay,B4s\RJ}<0;hF^S`vOI]p- jEyR#pS'`3J^|!Emae˚H_zj{;̳a1Ov,J'#@XG$8-w 4[FP W(ycَߘedVD+4?4X=ZouO7'|ܾOO,.,#V=A<\Du5|OA0U@eu2"bђ7k4&iVaQU[q PR1=HjQ[ Kl1|Z>|zz@=1BpMs v`4;زzC@v2g~{s_\~|y {Elw% ;9v*j뚚\:q||~8B_H-?/\zH[Yq:1Wy\7` ̋3yDxXds^!p29`b!!! u] A *CF{K+2ÀGE-iGq@g?jī:+wpO{ɐ:ڝ֯8U,AhoB` gdCG 9:bjoEݾs~mZ͋fWȇ_-'z^e[yUKK!t '3{BiS459¸U|US)P&Nh06(`7MW!N%,h3x[ b)0'n!灹B)q*MU3C("RU{yNӑq{iῡ\2e;x1j7m4aajv1Q&{Ԙ(S7gE-P%g]RNVQ񷟖TVYt\0c:Ľ<0cףT,^ @W/F JTM98$uɻNM  ~'@etzkJnRq.VeĿlPDZUE#MqK 4IrMW<9uNlݏ'˱[xD&mplUz'\20kެZ1l,XItC)Q 7"L\ JnU\9:'V[/PR%Ph`q- ZcѶmo@ z*T32hW&H4Qn=vvDD M A5A;4W"~;dv%Qk `sX"h6rq|1-"-3gvXds*Q]Y[b|7PQ/0Spr)vt^bK(2S\inf/U{( bUՅGOౢ=JI5yJϳnB5әB9Wg8E>11Jp =kMFvwY7 nWxBVN)SP- Jq&vx j;a>!gc=*)mlYo{Z)?B)s,ZNsm" +: ?=  28NBc%1#(|-/+arCX]gƪf 7ߒ?8F06d/ t"!R1#MN(x7u8M5f ͷM.;C,+8Y3}vA Nh2zI^ yFD]-2_i9hnyv ,tU&7'q26`J6`λWoDnn=KrbM{NkM+yԎmBpB pgRKpGb6k/ B{2PrGQF$8UJg>&Et~b)+f=nVCa;Ӂ1&9!`L1I#?]:yyDP?b7oX2ӂؒGowNx:Z1p0ׂ3s 6RѦ_t$;P¬;&鲧}W~c߳ΐq湡(y{]re*dC1_0jD0τPD6qOI(GT))$IsmF ,?E醧!;"Jb yom@aRfZS :{rT$L1=:}:#긧$K3z7hgI:M˥iwXp+V))(BqO\~a1>CI@ ^Y="I+'{k񀐐o(m߲fXr/c"KHjacoXNB3ibzb!{N.*E/IaKjO]I8jW7B_= ,9(Wwez؃}mFG!|<TTZO.wB LM$#ke4pWF}fpG$`ufI3NE 2:M:]BC([Қ$ gU9.iQ6#6=r+ +cMh^婐 !F ~[m%aqS-;m@(\gstyب2$mqH -Lʎ-$#()TR=nKNv$,N@ (80UX⁖V75aL0e{˺/q&%2ɧOT/S, W9+q J&:e w(zAcZX'/FE;LG"".|qH} -o}OM Gy@4n{1"Ls#KF7ӛ5P{gwfV 'GBFBǡr7/T%d0ҵjIwz%W4Ob,Ϳ7Tn4%~Y#18?=#!Vw4_Z_1 l 7I; a(`I٫e;]FfM*OQFmdHgz[}d>%$h'u' qJ$@3u#df.'h!4<~; \ia{о1,PDuL|"DBxkRbMç*s@od_ϺLWʐv|%S{R4`bQ#lB R40}TM&,8?1e]3¨a{) F` }5|,? ¯`Bs7-k0 @)x=ɖcnw[MZ֭{c&dO8zJ9BNX@1¬@ϸHN?K?XJ(Kcl? (E)a+6n*c֗>uSRqUgRy] YG7 ;΂(7%}ta:x (ϘKEul>&1\( %i.qa%0Ŗ`AOqZlhUP_24j%3#W9L؉ NTY.]z8ZM@\7=y;3C(lp4&ծ745*#5dLMhT+Jtp0tF(kToˍ#lkEGU"9"tV܉ACNf9(StfR !w;TkVv5BFMTp6bl_%0ܺ5;{ZW?Ls}^pRրuZ/ve/|=ݎN!8ɜ;)DZ==FHJs@$[SQV P K'/yO#^i ӣ2M JBDd6:qBM0=p*ݴbȥr2CcѠI~,^'lJ]%dw;g.+ cV-% /kx޺?=%hAG_Xǎ $#/AnEOLXrHX=֍DM0h`/(Otʶ7' hoh&OuOa,<7/!t#"bbTdD#2 R5lS2N%<-t8MmT@ JĹAѰ:8kWF@[` 0w?q \D&΢,':x/Lm)͋}7frHD+Jd.ἐjG)h N34z߮X*4&qINo}" ;5bmt{8z-z_r!"˗#4RFX`}D%) 'UQxl \b\*N92\4T)wUeG@_<!M/T н^6-3ݣs4ʇ՗?yQ/c@88ɝL"n!HE݇`/BnAS|!e&ot1{Uq?N{g)ѷ(A /,= Uo˘Ft(8$~gOMܜqNmp%ڧ*lXm+m# Y]{ù]V}M>Ch%&^ Oɠ̼ZgČv8?n I5xZaYxcc[2SpލLջ|ᘼ_.&F@OԥGFjQGm:&,^L4!PQ(b2`edd l^1Se_uBXd'8]Ԧ̱~"b=wh㊼#~^q~pԋ.ߦiO|$d^@bU垘JR:_޼׬߃@o/<z#А5814CHĎ.fs2X5fŵ:c}b7ZR/9KI=1@oO^] bZ!<9~ R4r[zP:(A3]xmf-G tŨU\{ǐe&3D 6;aX3:n h{LڙDCnRҳU`vIuʾjU^՚.Tn.vmӠQ&{l>0φl ކXGLMw hLK~mkajScϿ 1%U,< QS_:L t~0<o m6 ë Cs+龰H ϟ (RyxtprF:Q-tmrFn6+ !f,g)Nl5ԇxvk(50)2f* 2qj;]1mve c|@)}$OoER+rR0Nh:[@ ر)9t|{А sx7j=Z]wBL\FDF{P$N0 ^mzaP"إ I$`5~Y.ˇe~CMHw` lRyTӒY 6|G"=c.iI^ϜwNJB집Lp䎎tf 6ͣܔf6rq W@Z䄠 e'/#zW,;Ov!thѱӀ;j0c;[Q >Fo)\}$b$θ_iAܙ]W L1 @Y_u#mcg}Ǔ5B *-(S63,R[#B;M e9'|hv7A߽jŹnޤׇ5,X|RٺF2a eWM]ӟŶCw߅y/Lz&_&J$*bЉZË<*`:iޣa?^)W n9`;ڡ;G&IfrfG LJfR/ {qzo-FXu0P@o1qNԟğ2F GW,=&4u԰}?q6H}M|IޥPht@I zCRJKԺmWs>]99eeYG2ұmrJ-0.LjBIy6v(IyzoGXz-V+]QΣ.m5ۑ*r%Ê#%\p՚*[@a}Ⱦ]A#w 3x7V4qG'eh' t(@Cm(7פO P(kP6QleiSck9w h--}|5?8; Ŋ7d%1"iUx-m΃'?"1p 4(<.;w*SN H+#2hJY$3t hg7pVal.fahݼy#OR]%pUawr >:X߫]CS6Ph| g7qɆЖB xyƱ@9". Ϣ行hlχcm,5uӃwi.J .gINjnɒPefU*V@ahXˮxaaeI: M2x-$k=rK+Y#)X֔Ȼqݴ]מ~ZZG8!~NyNmSmdS"b[f;RΊcV%U9e?Q3}ѧ]GFC*\Fit'lVjLո ɦke{>C2XZɀ#ܵ; k 9 KLҥF[kEyO\>4Q S6p*qsI5`ғ\vc/>7$gdhҩwHT1P)4Qk_iAx5匼f'n`ƐIN^&8QQY޼tkUKEWB4(]C";AL%Et-I˗U+vbT+:+>կx N߳1S{X?`8T/&N!ˮ ))cJ>^=t&SO% +eAQ<-h̊.]UJYSY>\~KxD0q" 2Y#쯢uϿni@Ź`q(:'E:ćG\B1&l!uE|;T(N69# -8ՙwnu7VNu"1#4:F?&~cIg6Y eB:I mzeYAg0tFF=0᰺{#J$%ŻHVmL)ĭRj:|7nsQf)ay$eZZYx^6.lJv -aS(X !gY>BX̄L_ZWXg-o{!<D rBmI*!hSK=܍U3e0332'sE$d'J|yf0#w9'^-8>[lf"щ-tr|uy"W63R7h!b!QvԒ*)Kj.kʓ=?w$'N6 >3\ , ؾ d4C@ @ݏ;8 2kC8!̥QR` ^lTyyD{^R)=4cgl;rRkSP46M+`E('?0QG[Z8DSw8:cv dAjAcH}w=|.WcM*LqN&k^$Sje Mba;IJtE 7d諥!]DOs%Œ_g_d6Vи6NK8ƙj&T4Oa2nDFVILr$BkShL{MWW-n3F3B Ͳ ?] ŵ0"۴9R=zˏp#8`≴'B: `\X WhF)hٕ@1*\0}#27v.N s!f`?9r>b\%\whM}u@2ޗ63'ZvVCPm>2N9&F:#׉q+DzדHȖK>eEӆGݼ,zÀeXe9R@9΅18/ꜽwxS_{IHq~jӴbRmJ_aA^ ۇ{$c\!xK;x?3#/xAnD -oci#qKl 8Rg!56{0q҅$ 5nv+z:/yMf9ҼE32×BWM)iN}d#A9Kkr &_;ׇJk :R}!QvNhmXȢ#He ";D?#& lK;ydJ>!ڌ:^;=pz`WeR*N y MKSe3 D/N9lD7 =6IB¿"W v˖.uQB~UzXyBe,@/٪;I-)fB۸Anv&Bd%Y'T*bifE[pBr#VZwnKcA3ذ`Ph}A`k5רjj7LF'`o̓FQLd O=Rq}mH-N9n1o*N@5dqiT!{rl./;E==dNIaClcPmj*1?JI>RG>jz׍dOu^0Q )vq" Tȧ~~R^f;C!"YڵD|ٵ`@iS:BdN쇀qJwٖF {&6U 4F{*dAJ1Orp{t#aJe.Qx]]Rl Q1Eu'~lwZ) ,oKl01Ciw^;Y,% 9 k/Cā=:-:>- ގc?6 $7UdGVo30`lK/^jk]쯗:~9V҈OGdku_DD=j2u6]x3YG3 ΛЉ + <!3TMiXw{HiȜ= n*j"US6_W0gFIq)ʗ UG@~5G C:\K 3E=+gQ[61:]T8K;vo>#W` b)nM O.C "a3H6LrDEF;H= ˍu9|b/ xM.u(Cх5I/Z3ցi<|!ꥋp:^kپ3?}3{쑛'ߨ\c:Ɨ"sac2 N"X!2PO, du}ow]_ (RpuMLfQkaД@c#%dEU!4rwzsW@bwHOKc\#>|L LU-=G@٨ #=7  UMp |Q*D 4/%%;/fK%Y_a9}ieVZӁG.}}Ra&H:8X/FtsNZ&.?zy<=tqgmkHN!ˍo;+M l>gZ)}T4n&WRuv9gR ?\" ed{Z<]pKi ae@L`L;Oz̯C8 # 0EhGiPA20;NKOpVPp9w]]^zZ׆'=pcG -q`+ foUYo0Z$^١OC$ƭf"?}!M0@IԵ8agGU2fSpζJq`ɉILMy}nn[֤ Pb1iz)h e EJD<.ř"a/8碻>$ypN {H21ll]ʣ(bMF$/N`*L@²OQ몶jȀ䝫2IVaTk |Yoj=ypB&ų2d3dܜ^fK>+pi~U:OtVNƃw$ ^%$4#yZhU{b6y֖wEw-j Q8H8{v IGS诸\,Wl‡;䓎EnVFkUcNscm$*jhnUyg*,9\}@ yQxq?+o[xsGv;!m{ș-h1}6n->+W)-H0jc~c,XX@6/A; aIr4S(b`X: B8 „p#̍,:c̚<wgOےʸM= .g,X/VP.}U^KSfD[@WwDRɏHci( ٱb>=9)`qAC)+% mZ Ӌٵ$ ̦q~˝KߵU2y; )y!/BFCYawm?ч6/p6Vϥk:=::c~e>RMBBUwMHuި.(- *^&[0UjW>Eow!LeDkZ:)ʕ!b+$;n ͓V?A/9u}gcIzHU5u3o-ck C}p+#^smHxNQp\36|bƊXz<,қv(' $oje`FBr_Ý 9zpR kl*A3H: M&`YdypCT =p#+4!:ĢjY%"eZU&~r!C4_uxeQg$Z#QYz(Jdw[^^ ́׈S|@<:Z& 9 ~]D4[T^9˒W) W(~"J4zGW͚&Upn\wUaJ&"/h5☴_\7^reDZ;,_ Q|5K? <Yׁyi! #_QiŠ'=ZP;vM8q1 Ϯ$ !IPi '|Epk˲dtܺBI iIw:DWO\;=gl~tώ̳Ҥ%+i-{N$$I5qτpF| +3HMYs.eFM=n?nO?; HFK:aL^w*g0vpIN1:|5,(vW#+*6,)~F{J<@t䨮 \^{MQi5iwIS_ʟ=S]]'!Þeyp f~hT5lH13iF#3qdqM -Z w15`t>!\a@"*:1 q視GZI2>^˰jDrֳ_D m%W*Gi΁ƕ2Ojp R'9 )#p[""ˢxI^ w·~0VKrhe{VAnaA26`b޹i`$l}?]WFřCuNՃo\eZ˴@́v0Av]iD߉K`wǵt֞ 脢{ę 2H'R*7+yC*@6jZfa$yWaeW^ąl-!)\џg<5Q׷ z_cz9Ƹ p @̋Βsc*8yTNHk0rUI7iNPV3Luf5x$.ѼZRTV/cԑ2Q^EԨ(QjޞRַ{wϒH43E))]/Od$2stYRR*;5XH}u v4 Ka"LW+)vG[HŮ\GA>!_%6Ç,E4FA-5?4 zֳAYD,@|IGKj1#=J9,<#A}]|{HPnR~pMfN ˊWljH* yC@IC"*;kXv?EDIiI+M@Yeȓ=!=S *S@8ЍNt3]-frYMI}>XpЈ bd}iIULŔQj`N?Ր$-ӚQ.1Us,ԇ>ހƯ'iý< s$7 w0>'v+5ߴ@GI8-kC-ciͽ˭yp$vǀJ8VC찒Ͻq ЍZL*~>&ڱdƽV%R:uhB \T(#wˌT =px)?Pњ>C ɮrY!PH47c  bb&aMbySIBf te!'؊J[2"":;~Tn05YA8'5b_[,hw!2 [UO؁Z\_:x>X &OLJ  &H!sQrg x!z j2P!/)B3K ΃ӈbV^_i-PeS I> cʠml2I v9R.v >&{|}36HvX>m+iv!yuUSa H[^j +hlPNybIa-q3ɈӃdannp-$`;›o)0o.F1n|6NѢ"ۦ `Q2N v],ppKB;6Ehٿ!kl"w7]4|@Sp1dG%s϶qޤO!!&? G%s3V#LuiRr-r&rgNp(+oq%?֜o»!˭(vݓ%cv3ᤓ/,5v_8)XVLȒϵ] b (R%LL΅k쓣Ά>dzƲl0*i{xkBgucfFPͪ'? ,i+9;TrxVK}._-kUT4|sWy@:_/U[G`yuBY[5Ȳ_>_~ #QH ;,KE -rvAa)J@<;6lȲ.NZ o=z,X7 $- H/`oeMjTFt_Lj &$xh׋=4>^hU3#QEQm#z l7YT=-I!'8R0˙w*uxCԜs 9*ggp HJ'O$\t!dAe'vC1߻JR f!hWVaZ•zA) *Kg xIH˕YѽcF"in!0; 2%Z&uHKiKлb 8 *Jv qb ,;\ *%~%͆if/o!/oXMb#=(QzoC9/⾷J𞡟H %2P<_8hJZ,G~iXlS. ʊEĸu,F1gдowB=M<_@5>=ѝ-bk5C|X`ҏ$Z ʚ~ S,t݌%pR 컎i}9o) zg7ь&Gp 1_Z8fR˵gˑt$#ĻF3k ˦Ip:"7=H1/X`2=39/gO`i&aw՗&}f  ŭ^d7 56BG~ّe^r,INj1x}W4&7,WiH6dmfGw4j8qyƉ:il˅iUui[ᵋ̈́Ao+.U2=X{X<y!rq[#bSՂ;f+MіͺIʵq(Ĵѥ͛ 2bNL<;{ǃ@C(7i9EKx1S|gKeW7&As KK5 whbv"$7f" x;4O`;4DjOTM&*y,h(t#yeuptK1>g2[.g?>Nr!i8- h{7|)tqyhyIJ"N-GGҋj*wqc 32* K7JT!cRF\[Ν؜2.EtoL Dk Q >H0yO}>͈?Ɗ%xHs/IW7;p;r6$M\ mR[F[X>".a6 Ȁ!ZI}aS #D$rDRv\ =YS &&O0QRt[ `l6 Ɖ&􃒏D8#ޢnbɠ5 %l1ހpC,QH,%&&%1<"SJ6K|[ tAQﴦ))2ixTa)/@sl钴^O7X@ӚЅٳ1ȂI{2?* .$W-,dr`;1d)6,Ji4-S|SnQ$SLZ@%kBƛ,آvs(cEyGWun[ iy m ӆyQǜqI? TU|EB>o6'`./~Z+biO]{_|sa& <{!DMwkZ teW/VaTiKJ@ مȴG9ȸBCv! 19nL K4I8d] %zJԀl-DylA":tA̋g|JQ&/J۟v.bd \=;udm2Yd|zy.|(jW8{(azϾxnP?*5[ bz7ҫΔx*2VoLM^U8YO8/[ab,LOQWJA#t[(;4Zb?"hx&T͞ૢ Ithsk~U=_38-5)\1ct!B1+٧{pPof&k`Ӆ'p،.܉Ǣ+tboغtp 2VުYZIAѕL/mPۿ8F}Acb"? R.㺉S}@m]H:8ܧu;UTN+eI[&Tw )>$AQ#@3IGK>x!lW9 q*yrIxǞ,ɶ?:k#,BYUTEH亃}+ Vo@h&Ӂ }Xđ[硎;|-UR^uĥtꭈi$Wv`j7Z&ҳ~sq'GW%69߭f~_',#f\D^?a/35[5pHCqOqkTw;/ū)\bdsD%*|Eͷ`9!7(f^i5`dIk;.x  َ(]%4\z8>OcWj5yi s`ގ)M$]9Zڇ<hs& }~3AC"*!/S ھWo#h1>ёu:MdPoƓfB{|A=uF#eɧl5LL@+"gß%dLAȼաN!F\I* E5SH8D9@q$Px|FjEL;tG^f&8fXgOdyjV\o&Hqѣ󸱈^=ҹk@$"- ϾU_ҵ_X|_2$F$/$$m8Xْ pmYUl6ƍ~NF6y#1*1&WO]o*n"6_֖ykQńM8ul/JtaPH",5b{R wx3uiB>K?ȧo~.S%Ұx @-WwvP]êvxO'ݼS%"#FWo c(ky1%Les>Q$n0 g OwjoʥȃZd٢ZOcM:p)⻝VnӼkb۪sJq,3>|uHmΚte%ꦁ+KXg+ё%.A sX2 $pU#._ߔ& k>4㮾5G3oF(ZAfK)/f=%\l ĭ ob`7ّ<:.JDCӹ.s uvaJ$?<+@|L%CAOeqM1S[վ*c pKb]3Ia8!<7ң/#%6T3É2ӭEnJ!ft܄E@9V~ēpQhEnmbiH3A@ ӄ?mI Lq% O[$c 7B17ĸCDUJyʤpp~+,m [FYM XFpwrW\\32U'Xcd&S~dAv'|қ]sRNrp\4fc;<6ti}홦i-]`/6b-[(vR:f+Xj a,ݒk$;gMp1QWI:ޛR%{M17^t퍰C2DvqѡTQ\pL9,X<Nj;A~cL$* \p+,3!bZOԓ[+ɠX'NYɁ Cȇk ^ *&/ e?J?V#1(@ b <9ۮlʹkiҐ2xOLj3iaYtÈ%@oXe2xĮ:} C {{6FI#v]aV| ,A%gIC|t5Bq?{,_tOCBӾt (5q]cѨ2{H)5@J?!C?Pc:粴(A *CFx|_"5YPHsX.6Gi\;MǼSz!YcP_0884-wL-NJG46tu-p N)b\Q%w1oDy_G#K.< 7,HO@D۰B!E&:~OC- q$)4B(s}D-omH'dG@䛉:XCz )FN'w).a܀?-] -=ɷ*kWɶ 9ߙwcNmv'P݃ϧG ԫMRnrDEFĉxl+CjFQHjFO&dSFV8I߲63M` s:yxcx9K&Ijgu eK`b3 I`F *Y-S(e˶4pW ols!9Yh .Q#7!]{hw pgkBIqknfYEfy[0<bb~i0B ]$5=~~}|w@pu6Pʅ6y<\i-Q&x-,&prMFEHK ź z)kxt<>1XxR&*冕}@փSЇBVMqœ] v5bT̹8anVۧbfqx/1X;4E=(i]S]_Nf/^0vrQR%?X uY$&E "!uggCȻ.ef^ hE0?מ 3ŧp&"mPY+CR95@C0(?̸,_Qp,TBU#zV)X5Kh-̢s a^$30 1\yE{W%Wx2iȆ %~9';uyI߹˯GxTׯ'xm\,zSP<DFёNSFd˽ rkgӤzNh&o9HUӌz)w=wܯOݦ,|WL)h&1zexrW>.ГE4;6w+~=uf?\O23Zq4owA-u8jHK+ R, I #uj8͔OzD+YSHLNS؝Lrd-xF gi  4 "0jH$z#97W]nQGnDfiƫoZ>ȌB$V-:|\b={Yf*730E+

q$;U ~hX8ig;k^CW{=|o`6%S(y,ڊH*/򹉁0Q'}≮ }},ǸΑM9Eppu73”;+xeZ W  4$i s?]UJ)Lm!NQ&ܒx҉ 73c㰰l$Ϫ0HiSw!'cr4HNyrM9H|QR^8!S/wO)ELΒScBS"`B*/ܭ4%v1VM'oj~F} Sm./iCVc:r_?I1a홶ra |SWVP@ W Rs.֤_$Ɲ9R2Fj7$`Ϝ[2FXUplj_~VNHM P!aSxBAA7=5aU1㟻WM/!!5ttT?n.QO8Js9&B'U:gJqCv0&,ImL9[uU8 ~cHAe\)SF9|jq xIyvU[E0ujAcWmy 3(]2=0w482Bx40a!LPw<=si‡,5K:62PS^~ ~_+U`|7X9&A"IL©Z?u%RҼt]q@#_M5SeMx8?Ν>8pRȷbA&s ŀo։ƭ`&y"oztҝ}FBo0N T{'g*3M WBM{V+'y'9qQ+x;.>eշР/q3c2nюM*K6<ҝ_(2Mi?KfʄCzab3XFR5ۣ3brsvwfqarhni3<)` z7f B%+4DNi ^_ssTx2+n0#ZX-2R4ˀN'%2a.t7%va`в6E>ƦYN{ibVv,[2kfl(G!ٞ<'>=wwU^.Qg/_ `SDo?Վ* b:g˶EHE% ~GZ0(ppR:-smR`F@{wWBHf'ͦHCe'pM6MnFmd+XUTd!_nv tX+#{FR5tkV ю][sji-@܎ibUzkUe 1]P~bqSƅ=ZuL, 7W$S鈂CEQRDxK4U N447\4]WүWDr_FpH;ycRs@iA5}vIƴMrnRonU92`D%M\\Qs9`Z/mאPhDq(;AdNa|i;N/j0,~\XUB@1.[Ze p%mp!cNgGmHQP6h3Yqq` 0TPO`u򴉚/UVC0vJT?w ;Y*d t&"HVlڈx劾-B'JmY:hx >q< Pxq~wPk'UsC#f٥@{g&FĴ7E[|ui3,%GSuVp|z)F y#rx4._&N; *꘏JͬGڻB*z\ GDR[Z^$eL`3[TWq&  pخU FZ}I^Z[udkt8aF끁 /1VJN)h5[,d~4Mzoυ|1lhl({57"y]$鉕@`bR¨w:z4 ~s_Fako A3pMK`0ɠ}4~?%qԻϺ^@I;0'!󤓂5/}LIWQsY L:h(-#ExB3|E1և0҅C^]Zf!jx:5(.|`Wk O!ݫ 3͆Β鉦Ѩ߼kQ"uф\H-<T8՘v߾( ]qNNv Ki?d̜h!$is+.BF㰌虔ڑ~ HVjLdd~ z.f9t>4/ 8DH|&s!`Vd20m L# qkDWh@10! 6wS~7.Wp%n[2[; fҡNZ C7ݢtik%c_p>v2DgOyb̟ Pnu|"$M&z4lthVcK]=xs4F0w|[̷7yHHAd<6LtfiL682U7P٥>/YC6Lո"<(ko>j0A˰`' pח^x{8c.  I\&nCSwoePT0.H~oJVi &Uc7*7<68 k(wAQ0̶rȣM<&n@}7LQBKIx U+]2]OdCO,F<ڀ)gwI6vSVZJDwj'otDOBy\V0cݠ5ʤ;וca`sM,`TZpo"nE &6 Ǖ#%JKa|װ5rK!@$0=xZ]*FRY< ; Dҷ0wRi!՟ƫ4۰@䩏fɋ (AFؠKSEX: *RQq~MQ[mqs[2d7!͜T(N`]^=OC7* H7K@7Q ` sRN;Y T TOT!dV8\ViHq;) qx<9g[ip zCy-uL)nҙ:ↆ7}ANU~\ i!>l8}5~dln^ØmVH\衏::3ڔAO ?_G|ւi>DȲ/ܼDc:&0'{ϫ)[ۋ ZFaʁ:٬y)?8shb"D)o!Pb7}rGe,Q*|VseM+pTVsPӽ]Ň-DSΧb4+<)[P 5G⁥ v\*r|R^[蠐8fJs6 9+U`s^^XlA^&{LA)8ɨUA讔6mDvTL1nk5WI1jAqGaUGeM1JASZu{eI7;;5L|ě4C`3#rz{ܛe. <{։Df=ϬgbQn{fŦ{)闫껳i{[2Jt@}lU281_Ѽ qw([Xq.JQCm3rZPD>ˊvK)T wXpW WObŲqB.YKܞMb]s67FDaVKU؃XY(v5ş4F< 2R!~dj8;XZ| tϰ(XH:I^عeà*@_IrƓKF6i -MBƚ pb>mI^o4ciKbcߛNt+Cf鸄bƽ~pS|ۙ رAI1<[ql1.ے=ũp'J!Mեl26K^yEx#4Γ(uv!߄ 4P,\3e+P8_} AW/FF8k\̾h$ǧ4nsP `` GT%4p5R:I q<ē=ü*L CI'> G)ȕ?NʁE1`_1@Z(OY`ZNVdq"]`$r4W-\8K,Q@඘Ev0QcdT;`2~<>d~w jU"xl'[>/ae;)Oݏ7s苭4Ep{PY)-bb9"Ikѵ1N"tHЅꎹMg}hNx7'Jss6,ig`[$ ˆ%|kN/Gf3_eeBi= O7^`5nz(47(iD¡twY$l|:>6Q|HFU)ZxⅴV08—55Nag%Gp/u%QPm]+R*NԹPtcVvPLJ u=T/5^:ESwۭ=U&ݰ\F #R:%k/Bw$ G j>8!P'd~?97$)wvtU?ƀPZu 0ʺx;*7R݋|A(.@A`#s8L@IBM,HB pTP ͿU ݕ=75*,j4gjzLrKM邦Jzt3їy9Ske,?Biv7ң\,:*}}y=ýY`N4լ-\!ә^P9ls=resM{p DPZN&!k%L;U?\{Jrnx?`.?+ɾTrWO2n[$dȳ oN~*2^ 03X& wbh"AVQ&p}7Јo¨2d#%MIYǞm=P-|M>H+g b0 wD?C'TYuʷ>#8~ye]ǽr <lV'I1'$ap,CX:<7)*LI5oRIV&2*N__OeuW ÿE1+48]_+o[ 67Z@WQI ZG@Bϧ7g}BnD:xSZktf. p8J0u^xF;C~][ߋwiQILfe~3&]թC<,Mڢq%QKMJmS*Ii6dDi'%{WeGmj'aQC[ pT殴k8JJg9=KCzbٟ $$ֳQḎ(^7k v)X/IQr(B۸5[Ske$ _wGL'T'A3ĐaI_74-{`"; ?@=$Z *Wꜚ`k > Vo5CHrl mt@O ϙZr%h_x-WlCqjޏ vRLerJG[rꬴZ*+'M܋n%,}C2q hLV"IO66 lj}fbo9-3`iLOlh1&};ܥd1ТH)lHE(F~m(0yW)29cwu1n׊M"hpH싀^S_B̒fRڥw!2h 27wTf}XH@l dBq)g@z{1UYl*<ÊВa9H< 5aunhhN$䏄ָK Z^R]Y1b MKVJR;U 5QHG.lNz d-ݝ32U9w_sçS&Yr$ڲ T4_B,th tΈVr&)\%!WlRolh9RѼfS ۯ\1*: C|KFD㍥>`,p3Ȁ@Vxdý18/zsw}aJOQ>k p;Jh,%hj{3J[!$_Hg_PTEQEeΎc<ot'+:>\( A K;;!kF>`q䋨E*L}PԏRO˻⑻ؗzov6Yuw5%[:!;(ᙻgO.JqoPu2>C>]6f[tP]z0{j4݌e ަzn׮sS?iW (sݐĝ^CQ3&9*7%q|c􋣤W(vmu3#^etuovnz(LA  ub't)nx 8C6߬Ǝ 9vhD9xp1_ߺ@b`2«:5{[ pCf0;@ɥ Ox ')MjY2"xC2F0BW~(^U/>D'V3yMh9lcՑO aڊ"&=FHw!pStYYvVx蜽ILEbP9! *L ,8kpPwY٭&y֘>He>LNRO$i:r}ҧDD09h4آbPŨ*t1ϲ"L&tCDHBb$ `k)QaȪ")kN,6\Zk-&Wt\1T _|lb%*2ρ3Jr[ G"eU6!ͫ^!騞,T.d^GΦ=$}Ox>%{U*VR$t% N w_3'vHʝRDR ,(-^q+se,C\9+9~F] ƶ"fh]l9,a/M4z 95$@8癷AqW*l6ě5PAU3n8q5PP͆Bqivč~V2ƱO8o!y),/CK)>WLZUa;%S;4ڏQ_GPޕMczTZ`YM0#َKF?!!bXA)nk OF~[Q6d6*:~IdJTN7: :o| Oȉ Fw]SgK'\eAVcI n&~lhWLH[lK f\f?V?TBN_DB [Fij^ qQ(cc0[&\rF{ EL" v!4v&Y:7=Z ϶>)=Wsi6cHN/ -]@ ͖rd@ M"ur\4.TB7Jm-K6p"f%_2b6}2vLӣ?a48l9qƆ xfAM50[U?UdД(C*V#Tlڤ; 0䉱gX6bUAŚm?ͬɉz]Ľn|㟥`Pt!%7[TY)CDުP+IULKb OڦLyp1kP8T|!An\f7{vY":L;`D)&;N!Px5\ȣwK`׵Oe@HW ov[t㌄SlY!QK$`GsL*jW_2+I`Q槢:fAjrs{b]1uRSP\R}gJ-<Zꦣe= 2IT+q{ Tp-=ʾM1?>,=j =(ά L?#Y Lo(iU8Mγ`w_IE>>@[Gz5@f'P5N89]ӏ{ӏ/A֌ E⯅[(?[Ą00^s=KBNq̞0nns8ju7L#wl=qM@̺bF+}xxͺA+*xʡ YW._WWۘ]U^ۋ5Q|.#o9۔oF5S)*]" KA8r 5?XljE6ǸN:sWQ:7= Zc=# 61zONQlަP#kڋZTr"WJj& D.G3Yl I-rߩp-nfݭȝЊ%gc\EwV|1!s 0ۺOYP7M. ɄquzI櫫\DNJ堨k1)]1;IB*`^z=bƅ!:7ޫp DxRPQ;isX{q@wxڬoycU)F}Bܯ"TS__2Ҥuk;|hay _L#& o^qvP/˭Fb Ji;!_&YͅIJ7b1+]Rڳd:K@spfYyGxiC4rSjXbZVܟ Laʐfّ ;bL`Z-'ʱ/|n1|D К_JLdcw~u+=IU[$}  5~?|Z}E$^*%1akl~rؑý7NM=p?l${׎,SH~ͻtg t#q}S sj`y3]iR P5HdžVb#.|%=ī|G$lp(~gv,[Dýy%_Hyx4_Oċ搕tͱ3?֩4Mw]gUD,!/P`ܘ뇘pBN'9 tdLn;Aux/8 {.KC;rX)h;ûS#_`T 8b˃<`Byao:ݠCY_ڡ+nFY~Cx^/@ir%v#T(,6xleƜhc/n00PgFVS m+5n'4r5(zCb˺+UmF.C B~cf^ChXs]iP**N?6mx vSdywJI0cbN, _UMb-psYD#I((9È%Hπtv :xg$ h[eY50L+>l&XmѵN~!Cnq:isDc-e%۞W`t̄oC_ <| ǸxI2ꢲ֮1'g;B@|GIT/j ePxCP _iӣTIQx.v$ Ll"S=]Z:@0PFܒ>t Ebwπ8:;8z]^Yx4P9r7 -|gY>|$fMbjKyh9>w%gqq@$qo"s P=e>QVGX;.Nw@S|Sܼ{[*LepQc :Sꂸx0LZ'EsqPf9Oˏ.Lf Pdd]j<|`@XǴ${~:[c2Xd~|aa{C~+ǤǢ}`]MKhmwn:xRZ@ABvUZ7P P.>ӡ7@۶Be rTSA+/U2yCgQ-YoDMHʮF:k~$-R}qh3p3(mejf7b%#?rJcHg՗$G+:ȳ4ܜBC L0wg"15cg*wQaK:y( ľB;,5n6wjh SXuJ٪ӷ{;ųN'!hPڋ܁,i$\UgRJsb ͟7}Xć FFg/hj])Ԯ&f M$+[#dGlяA|o g uU[-rR|klmd|+l#{XAhK~OG%VcjK|AI<@D<ՂL{cm.M3 #3ߤ %s_L=η䭵ɚyy$!Nmt;dpugO|ދuA2Oё>z (zbeGl$}OwS7A ϯJ .9tD&1UA1g.Vv-R,%Q#/Ƨ)fG$UQ3p|埶B\/ L)N.uE W e=ӘbjXFI>_,z h +WI?Ejcu!)gcx8YnkUQ t) A߲fjeNDwt]ֈ}m!9b`#q]p#5ϻxSGp̐@k}*'I  @W5ŒFt`ABA2Kejjл=t_ϐ<$5Eף3DX+a>6LqaC; ksj'ٛ8_D_kdԹo7O>noo" I,+{e$I^:!H| */LEQ= v2-q0V/1%ٚ4,{xŸ.?g-x]þ[3ɮ_!>g'@0\}+9AR~Ap%ZK'mg68m'Z {ĩ(5r^>uVާPA > Uͦzpgvf510E1vScgNUVw?`z5HȔ#vrtnV1a,YpQ>n` "Ybd&zېׅ Cr1E'Fft& ĢK(?( ,E&5ESIHឤWplYK6;jUҘVrkq!_JMy %Q\b\j0co +,OaP/tXJHT HbW5$N4X1өީW mG5kr;?,#e#QG*le˨K=]R:_)JU@@6'VqSqt-SCW yM٢> UҥzB ޥgw ưt,,:.7^[o<X@!Q/G[+ t=DG -|Wԟj%J"33v+c79W֘6Ztv3B7Sp*.Cc3oxkr_m(: 0 #. !H0Yx)&s1daqm+:3;Awos.-KYmw:dL߬peh"8lv!}.RR{j35:rCzHt$|۷{fjrLѷE3םhȗPMFqr\lU%;LBu6{G'~5M]gfFSqDT d;:eM#mDZ?^$GC| Da"Re-RFWGKB-Un]Ln2P~ok/!Kqn92,GvXJt r.n",&lFc_Xt:d5,"O.@E<;, Wǭ_PŹ{e*S\O&g?ғhPaoe%[W鰞a<^}G/\ĴH 翯B27 ί=041CȜ-yq>'U@B4!GF.OiKgv $f58X I} Ʊ VcqH{~Yd|nTͰ3z1g[ #rT/ ZC fޗy&{ʮ/v-d7$`NP4"WQYvnȅn [UdNAl+CiI=Re !9Y+$@]rWJ<~\i&k ޝ㬖dowFLhߴlԙ3Ob֔e0l8Qz #Цvy,9܄aעXWZESH/6C#:#< \^3 a>07u8<8L@ mw wQ1౯q =s:fP.^]O*fP)Xi{ݝ]\.Ce^"GWq>Q351S=d. 36;XboqcY*"[C\qJ&9N5I[Ta~~'/(Թ 7s]FMxAzT@}4y˃TKu(B/c2>ֈ`9֯wu9&gv^i#&0 ,CfAN(Pa,.1oHxi]^|\86+uXF`޽| {b{=F^{`Qoiv!43]u6,(ZY4JMnJSA%I݅v&I$_NVftRFf!_*i=bZpZj^$ҶFIu 'HK5tDۦ@Rć!h4 x{*pp`AݲbaqUzc.R&ȷ˕DFQCR wX~'f܋O*{8eSt1d]/v ųAĠ}\kv#}74 +>c-NDFc&#?@lNp<,v)\;[{crFw@xo,j1M/*fx*6owJl-9DsPi4 $%~/+*R9!!ErmBtVԥH-3p-#e/d[OUEsb, ̳K"N=y1c'*fcNKA#Q6;F!)u]僆(n.7 xl*~Vz=̜LboI¨!us!YAk1i9~DS50%R6o5^`8νAy h<=[@kHqza-+i',$Mr^oF7Kt+kˣ.E CȼFu{[-Pyy"-q0Ȋ*^'WLh=oar|db Q+<@fYVν2hz'ƛ \Ibb`JVb=y>q N7égcw#;&l?AX@7jE[o7 nu,uDznWfȝOUye<>qx 9owE0$6w(hQ&6g\%ȫKGE\ NkA/f9٩v*`F,ƓfU{-`gc-BIasJGx蜤#^; }!tW<4iztX oLN&D p F!j9\ 5JEsb2d6vp-:{ ,ЊWe |vP X!'6Epi U2ο e!{Kw^Ahw #   .Z܌ +<%^WfX@;}#9P~ M 0*5d~qsf ' dt̖ -BQ* =MfNtLA</Q8vhe:/ZFS9Aů==V9e>F.S*[7ow3#pMm blFܴQjmO};Z $aHQ8c5䜷Y!YL ?Pe;'ϊ%ƋJ'3UԠPSJמ`k49Ȁ Z,N5[%,^xV7!z" Uw<=G Zt~1Qh$}NL^Gyοn!&QÜB3ƈ\$Mg3#O\KQ}fXq1f7YCG!}v,_~z.Bq(ӞP js?km kѵ|tc$2CB̦5ۛŎ3>[M D_U}ZҔɶ̃3afO&PL]py!\MAcHc Y[_ }n,&h@I^qG;Ҏ)ji Q@B(gBn|m/ܬB1Lz41);¶url+g#˧~/%yH&>ȥʓ@f6hp.d_[Zu݃3̘^:8"c\x!IG1Dz1r$,&00=UoU21)fr֞!ZQqe:c%HNS Y<5? 0qltW߰0Ox^V4_rǎ](#-m8I7hZ>m(" .j09pc#iY]gx@9mE6;89ݡ!]x/np;KqL[!;b$FwY'El QAUb~WAv{mZcr?YM((nygOsq/s4=x٦P:@5 >,F83`cq6)^u74Gcv#؇>:G4yfo5Ű;׻$*D^")Cm5AΘͿٹ?lV"捠wVt,%HԴ>uT5PVL-M j=R_EyzEg}@"_,Lm*4̰:q fAvإ ۘ#HtЖC0;'Y6Q&#NIfJM7\YjЉuGݍPAd^RҊ FtXHxkt}]0``Y1L*޲R.+< 7c|/(`kZ^:8鵰q@ulRdɵځ=fmn6 %|U\sT6{a흶cDNe"!Yip=cܓBhM#-c/f\PV8>}L3HslrZt2a?\'}ӒP35QMFT]xcaT b eꌃ;7@6NX5YAKw9C Lv #,e0S@iPZQtCf?!7 Y/$~Nzv5ճdrP͒Q N⛡V⢴7 1@O .pKe$p hj+: x__zy{T|h|  l&܅Wv@f8 ZЍp)K'S~\u<M'hԜ D膈Z40NN <.r_"|J2rº{S狞Nh>$,P[/^G}2&x_mzlr)ϩeF_Խ\2U`O!{Ĭ"0X}"7y?"L}>ő#Rp|IŝȽvn >Pzt)OX" :m 'I4̮IEֱwA'Lnyx:ctSh`P 3/єJ2$. "j4罐GIEon$qڤ{ͼ"[]Yp7]w= "JVzusDrtx5*zKI;Ahʇ`TD!=8m4-P=ߠ/%Wݖ=6/"HfB4Q;j 'N'"^V+M޼Wo{*+s7!jU|-\؊渍,*HyE"B 5}>=@l: 3JX"b@x֣f2C5KM6[t [Ԣ8&C^yܬxJmHw0,CJzP%_[yw4^Zwt}lH50tFo^0f"Ʒ_bHi&7}877j`j?1ɼ#pLc. vuO2e61?61YTz"- aк2rf Y*jcl'X,h kkdWʣw6;%%RXy+Zȼby#&a)T24xa۷\ *(%#F~FW/drx\@Jp^,'ۚ/gi /;&"RWO nf$1YdLa`o.[)A$)P*}AA|'ٱ a `XEΨM0Eh̊o X?8;&C]rfO&暋wQzKXw F1 wFo_ⴅ}%V_N^KJ!3HVBWb){3p8^\VP4Zu‘➥sP_\m}5b[c~pbIxzȲܶ^Ųm"TxtPh$b4Bsd5bԷ إ|DLJm@feI8MJyP[%uk_c(<}"pvdHCz]Ӆ+748M0Ղ@~u໮nS;-#LZCqTyYyNFMrQZzUs~r=dL("Yg_O"b'꾣>2CrqG\lf讗yG8=z1V侓ivNR}b-cDG3Qi`R ΃sI23{@T7&qټE"8MbPӄV |l\6tW[:awEm; @N\{}7o^'T 7gwl j|BG,v̋EyDqNBg.>cF^犧 }NZz>\Sѐգ7Ь(5 ] 7b\&"w^ Wmh/ALH; y&9\&'U|vhz\vL) c[0/K ]s‘yP. @ oԤʤ+QŤ5ˮ0)ru/>YW#um>#=].l~svWq@{bFp?qnn2x5^Û$8 <1͡؂-Z][iA*B"}" ~*vvMࡶ7|= o :5FZMej]Ru,ħo@d@lA@|ף7h/RZV)gBI8{˜1GL.&BάqL|??}N7h·E k:>`J=^ =Q+N \ɭմ!kbKn"c듀1Hvӛ%)&p}Z8*-l$|Yyc=$jp Oe /qW.Vة5EoϵܪlT -L,R undm :eL@׏s2FrOsN@klY'aL^sx}Yӆ^ Q1R]/$! @J)%)w#) 0msАw ]T uä}պ>>׷mV0D~3p^ѨCr1HpT9cb*- : 8%3TcꄣSNӲ `D=2nܔ"w9/F""{[o[N0>Vگ{už>/;Ꮝ5Fs~qi p R=" T[ӷ帇0{u<7q}<`?Wl!BK ΄buPr3m<klp3XQ >^LXj0W͞&s?̸&:^d0 Ic7wà` S0R$i$i7&}]vDc >*L7Ǖ bT(@Jw*=,&uc6Uʈ &uT&ODN z^jR#䎋NA&p_KzSBabcţB~F 7N ǡO;`)?(MjG~•d-Gqt_{X/ZӾ= M !_,i=^KbxovWCvUN$@昚hrGs"1!7LHDŽyÓދ(.CS U y9ҕrI+*5P^Pb kxaC߿b7P-ۃg"Sn$2'% ʯDHXf0B0;|naTe.d6Atmc ajZiZ.i~?Κzz="9eCS9C/ԛi;&* |³d' G⢢8/!ݳ'o.Ugzo];e! %;s<${{N70FB+qSd k%٠Жb8̙Fc:=}"">^keIi?U/V|!Xuk%ӑjL9Հ$ ^֭;}PEb-cS9 D~Ɓ2~&P%nNπN'JIZ(,ep 蠳:K]GefVy?HtBCՀӷk~:6-n5(yyomi>P#r]*"EnW :_Pִ Qx3_IW"E+/Bɸ0[|=%!M1PMՏwLUJsCKXM&Y_"(rm"JKyql$4 rny)v6LbSgf:ۄgyR,< 7ed2r4;>#Z0̑? Z.aگxJHbF2VUTܭ=(1DW'gL`靝뎢~smQ2a'p‡'r[\Y`h.lLXV 0[O09i)qes.R.r`.~vؿSؘ=5@5F!6Y 7q?IЀrV:Xgu #[If{w\hv#p57B][Y߫Z!b-<9^n^Jr(M9YU#O"{fE+O)RFԛP"Vϴ4hrb-*rW/6֓TL`&ZWb*pfUZb9wD2 piL)t5 o_ZPUA}<6t@Z𙿸Dr jF@nm#WPю`og"Jŧ`=wmfd.L1a:[_Nyl1(5ר?]gΆI|Bf=/|,g%spA?KC Bl~Ȏ^>_z%@8Z댃SxcB–7 a$tZ\l1hKԉ4rmېK(Aתú,.H$\{O7N'uXq{MPM Ġ耆f% Y8E+CTu ekPƀav0uWE˨%tƥ~YOۢ=X!n;<_69eӃKF`y] 3S3OXcJ)eA<|x7-"d8Wه9x x!8򿷫"}*f+gdۅ7S6n`!nKV.)-S()cOzg Z"SeQ;L]G-$.>D{DJ:ZpP5,]4ʙ0k\]v ,e ,zp͚1f=HƶS ڟ"D nD /1y@ؑȦ(tmuqߦUE^ҮyPSPnCG`v/sY=*0gϨ,a_SK'MYɾx4򒈮#3әdFͨCMödKՁ Dc'盵GVE$iܗN uW+/-oTg؆ky[s՛"[ E\ dB ֝ ,I/c3ѓXF†ۏyi#ׂ qagױR IdDɶ5oKsIoN73e+ ta{՘FK @|5u$vAjkrْ,{(8xxe䭿R֩\ 30Q)˽_e?~[MW?DV-=o?uV1"؛=tUP}l= ډa+NfLcЗFkVi u.d`Hb߶a\u{w;I<4o`FdrQ-WXX쎷bBbL &H?:Q0?iy#)y}6{gQ"KIJ'@*燨L,ZuU c!_3btP4( 9ѧӂA "18 \FNf{};V.ձ杰4^&@^Yv-O\8 qANPm!.ɱv/҂{Q#ٹ ]NrJ9%v.mT|r[˯pi(4v& gD8?6~! #QB8yלz5C0ghv ۔44^Es_In}^͡fJMߒ2щA}r=w`%Z?1K:N1_LIF?D3ҥ&qD7j9Sb)KC)M_%?(3x\eϴצ}ѪLWg{FĤ4;j&Z;y>wy٣¼m4ىblWPg$;blÁ@tm:-2QjɄe).AF$jK,qIʄu?AY4vG{(-h{yE*l~^&ynHH0<eZ -qMJ ˋSI4ΙJ;o蟸eMw $\(yS6N% ^EDD$}WsB R} D~t|gܻ;dEwڀMm, -B)R-7[p!/oQT03Ǭ#Ȥ L9&:bx.$|CDsM2V]?ϊda7d EJOkjvFM¸v8lS6i4Nԯ`%Z gO lB"q7M~V' 3:l̹;^ξKGGAʯ6;%IsîJBQ#}noDåCP4-c_猺EzeAM)<`5TLy{m% 37|̈uo+8c|Wzr{Ҧq$vӊ.Bҍ9~ƶQ)붥R Xּh<-CZ= x eLx/. FVrńmM8pVu<`ƱC !x0'73O1 4p>ɿ  +wE8σGnLJ=JPUxHC}Jx˒lgD8$&p@Ki$RSGjYOv;A808CrlBPahk}1R aUb 0\Zǭ3B"0DP=:~r8f [Z0z^5 Gpo"4`k!+u\ŅR?pģ(>>Hb%dkߐX5=bnH+ xd^QⰣG'2CZkfdp7`,&,D*t#}xx޷"; ]aQ L NEށg8}a?QqIݜɄVex]xj φѾPnN!Խb0c]h^+HFE?WMKǘv uaxka!"+%ɫ*ڀΣ/(%t|K͙SvsQ-V6ʟ F)ioM}dOӬڌJ"@#8HHP-oZ%Z3,kGm4(w F<y._ GƤ̥CܓR\˯HV[swe&cp=W=Tn+e_vuL*9n'RhkxXfgiѶ&C!XvڏV%< AWݢvD{|uw,Ge֤' ߥ n^8 oao?&n!BR¿SGj7 5]5iK1}2od9iqǺ.1zh G39`o%zHgpE?Ȇd'h/biMS00LgD,*X>7c W͆+=-l{i3RZ43b sk^.H}'.pQ<*uΦ7(M"ъ .DKȞQYi҂@=Nu-Êa-"Qas%?6蘿k7kkn2?l*pXܱEED\LJ^)[y(I nG .0XKICD/V*kfSK1ye B z{@L,I԰N\<>A )i_R)?[Oc ))f~K ~4G|f}֕;3ʄ4(? C[nvKObSl70&͵~5qgy0=JsiIAaBq\(`R >Ivx3lD_* )SLg#E]aɍK\wUШzgZ֗nͨ o>|U&_L͢!ELyVLgJMqd%c>fpOD>奏 sO-J:|%δ>tB}4 JF{@%c3dI:\v7m/Zzd& ~hSO|q!X+U{I[.*qd.<:syXjpF*\`.VBHx8;j|mtk7zI@x*)!K)+2d>7k3<7ޞn偼HYia`"E6 ꎏD01tōS 1w5crTęT H]b $ $=&(pgGwINY."Wn0,J c,*WJ<+?sqHTk0P8 ʣFaKVzS $3[,|~Hhu6-phYs#5f*a= 0b!7&e`[t3GIuCw^9 ^NPr#DT\/L \]|}ĚpĨN3u<~o7yF S&x&Y pU!%i' (Jؗ28aLa[ͲcF-R@=*ҵ$f8njﺃ ڪޘ9sbQ\nͪ;P|.[F?N1ktPRGň;A7uO`c1Ub+sp%>I6zʹܚl{f\}6lHAYӦ= TERPA 88£iávO;͐+z߫Qk82u5nl}ep MzB#s41x|Z"z%Z41[8gO}{Fì!vx1 ZNf6K,pJW0'ߍNاO t=3twBQRLMI`-|L!Ya"1oߡ*"X*4sXS Wvi7*:Cj9\| WXBSXp9heQ_H -Mu\F~X ^o2zzS=lop %N¯<+G|0ܑ},L3Tѝ>>k%^4uO e[a]+ ~_4]yM]uHḚ v_ZovAv UV +o۔-cסBVknb_C!:+ܷߺlnF`G1:826楁j3os&]syrs:ӛ0d 2m5 ]rj^L<ܚpT>cBJ!9 ,ML)8|oǓ$>@z Fgd`èW5s,ĸ 8a;<elm MeuTMg:D6Ez& rJ,oa jJt ]7"1$tQ'+E^smk)Dxq]Kf4PIq#`SJ9)p:%HdxUBQ{YY~x GEeZѤCwTjp3~S F7>/^gQzQdBP6I 0aq*wavQ(:ŵ}gꚙYD߉|2QR@ WB/Я&+1{ZuۋR'L\3Qf 91NH!$!.($73wb?_X;wE[` (pǟYR|? Il![ݡPe#͝*6OIvBZvTW^YXqhdK DM_([vN v oƀ G =9 )Qycj$!QĴω%!saQedPTQ9r&NPZcH@P<(`tRekbQv7XkVNln$nh ZREd r$ Q"|F&22aI$޿ ą73z21 SwUqbe6毼KhGBA¼:`9t@D γ  |kYkyJ@G_@0p Kwhv &4^Qm}x@Rn1FńcG;SV#HrȜB;a bxII$!/|Qr;$zontd]wpfy(~-F$1}4QiH '=,PV\Qj`F#!Qi p&e W-M ՞Au1V>Ac]’\U_j/F"rk3 ~ ~q$'!rm8~O5*nO%HՆ<&ìj".\/0떣"yDt!_vX}45(ގUN/Ϟ)c 'XP垻4X iھgVرaTEQwp4&ZM; cjűWClE8gNZvE4 Iz;wJ-<2$f.ߞw{5H1sd4Cv~2D|*x(/WKIȊ>K.1c ? j(W죖r3, 3p tXnm ur= ˲-oפ~2'k,70*4"C5`P+z+I{$:,pm>gJ_,{|ݣS/AΎ]$cL'$ AB5թ8#Y "`G&CR޾ݥҊ{ϗ귮6W@Znμz6F*Q|'Kn}5zCɐ ,xo+9 N7btfC{`x0G=2"0xa=*%f5y(u}ŬnkxqhI_©XjHE' }yzc~-vj\06 'pDZ9_ُa $7ގ2P1|r0mJGn* MXs1y(8_o(@:G D3ֵ?)/?<$Ԭj_P/"Agr5_T/zFa?tPG:-jsG@CG V5 D:]d>rO8k?8aV{@ܻA(=Tu4fQC*kmsك'dm 7MYRx۠aK*^9[KZpXAW#eֶ=afԓ QL ~"{v _5Sw&?03e_K|63`1┳OO&uj*LhO*!YlmBp? H1v7>ֺ696pgz/޺?܋]͂JcOSL_ (H=@=0E30DC<:>8QK`Ni[[@ D-Kc)PdRmC `%nMmqq.ٛ!3Io5 R+w E~_馱pq.굹Ț*)^^{ڍ}3$qe%CϏ٦#,42HLkgQ~x Q!nQkLtwMm3) Hg2xat(&?#*3zt/qK̻XL=C ½餧pB+m X9{Q3C IBd1'HlfgBDv"ȓ ܢ_K>D\ E+gKQl)t)n}$#vagIE$̯Hs 2oV50d9h7:"-nBnV<#k7 ]SxRG&Ijoe.I1չ\-}cjs[rKT7X"b h htKJ ̘2%݇aɞڛ 2I>o-/1O<81(C?87aƝUkV]H-oAqo6YevPm[.LO+T:>y d:%z#dxF)cz+VXfcbgMp"!|'ڢ֘DX#N2)5R(ۆ[2@Q1+XaPN:: ixHҟܬr䒰!Q4Z7aUK k3eܶ,ĝϋ$4vWdT-Ζ̓GS<#v]z,4ʚK EtJһ ZW#5 ,QT}.BZ:{wvw%d,yE$H}EEUeŚv33s?mƶFFS%qH v9HjIŁ8L[\eFT]D/͆z]o]o\Ւhs#ZƑoiU;u(䫉̭?K5#^.8ލ j:m >Y^6nͽQcPԪfuRDQNUunY1TOVCz_jY[}rKD+Nѷh%/\%r'؀NIqN= }ltl#崗߭hG Dߛ1}]WNte#6([iӝAoO]BU3 [OKsdg;I@ۦ AoXvRwo::X]Ћ|MlȺ \X]"e|{cG%o<bQ82G{  G0oh3NẃγKnQRuv6*SitN?@? `;ug&#2e"CLu·1 AN-Rqo@ipD8}YAV53iN$8@pcwW_DyFΨkz֭hL`Þ[5U*:鶢G>Y+Y:ِ۱_GXyyzX%3pe*1S4. s3\ǻ7"xLp;'-Q*P=3Jj &-֥'Ѓ8% =I O^Gnă |ANAx27C k %m Y=Jʥy7θ0<f5;[jK{yy%-G7Y̓K!0hRjC ˂dh 3=O^L6+g[ITn^Y)kO3&9 ٝ ^E6_-{Tbu7Ky9Bԗ!;I>o ދo]K{cbe/>' 5nˍri$o$y%JaخY]jS祐 hGќ&ܺ@,,x}~avqх~',@V)hxR͘ ]HcS'P2@LRs0ALܘ?C{/?da2 VZlɻEʖ^2d5=|bsE/{ˆ#u1<&eKS ,3.:âY{ WȦk*бftBkE%jθȰiuA}Ja "/ས4 I[ƒs遲1;BoFħvҟa9M8qGMs1l7b)sr4Wr7XqmA, Hgm|)RD'zIӞf.km)^E}n4Ś)*TvKQP/?R>fa!bPYC"Tɱ7D%3e Mnz#NȉMֵ /KG)Y\<GZ0l3>J,dV ?c\H,' /Bb[?YsHӪW] ͏Ism.IFF P9|=ٟ#=<ش97j5̻*v W.C/+dD?L~Q']va6D,ҷCt|FGEϏNS\ܬjeyaMh\qӅzUð䊣J=!"&nv?/p^GypHԖ1y]C] oLi~ًڝ/Nڣ:)Lq{2ʱDW+n-^=QiB7эlCԟK2, wpZm֞NPmF6 #Gsg?ÊubNbm^GQ(IXt!"; ad;K%\LO  b)4$CN3ŕá%Ҩr1~wBnuš>,0U7,۽taU =F9ٟ;Z{QQ^MfBs'/y~D Oz{sXӿXQ"P8ZB3-uHlNZ 2.;n! Ģ\%|mWpNJ4n 2}YYh4&ñXtAW { l Џ@@vSe hw:lN)ŞkCH!5:0=IM'd&w1I RX„1}jx /R ĒL*6w"/?ulgJ\N$;i?ӖE'NMG-Kx,NCpܬFppZBRe)bcP*bPԩQ̠׶X(xf M>BÀO\W}FxH$/ٍ3H=;ne f{мmQS⅗R6eу&WMn ɐCp4;3 (4*ͣ jboYIWvr_O=,q B.9jJ>ݞڼKE[ldAE Bvd8j)yszzy02ދ憬dY\ [Gc1.;𫱓u,~i!/P+]^oCBT#)zFce;+~Ϭ-quVKUVMB/`]C#-.lbV~NhsIB7yÓ#1m+kZn}ġ g/ 02ZF',iqQ\{sD`γ94\M3y6v f[ȥLC"⒖/o`2e8s앍L ;d6V&S>VD a2*x~&˻@spJW=qKpۢ+'cX85 5P2Q8€M_Eӽ Q3j՜)Z,G}tK=T'!=Zdu2븭 $|}nEVA[ 9R(=p 摚FgU/ 5Y/B'ěE+Qv!H _Pvn\y"؏M0e:.Yf%wgPxAIz+ZY);;Rx)1ZDL{dyAoI OBS&Pd 4RIOinP+*) GF"**ȫ& ` ` "%qӮaAc賰3q=CuC=.)2pӟ|ڃ9J/** `.Lģk= Mz$_b+7tyV1`p1 *+Shy-T]l%cU͉ʬ4%5&K{` Q`wzMpTji0k|ӕeGGԾ. $۰kr'U'_"Uо,v]Io5z/ #xsou{ֶ ;.{v߱tm?F;ɴ'iQtS19:U1.߳pҧn:<ﭹOacy h(q0٨2=|o\Ju-\quˮg k]JCl9azgYEM`=WiH֬J-ojzRiK9fa |fʷT=YhB?"[(A= l|X^*GF4XA)X|}js75 hM/OKu!sXpj^No8k+dmg.d6IՖSVEKUȜ`{qmo~xUHYK5DuXF2U5E"CKWHjwnGBGHU!\vv8\3iJ)}!s=(2a`>;RP׭;%6l0@4p>_Ta8)+qqn(!U:H*GC`Lm-N/x0:^q$h;fzOr[YFHW"_ >| 9<7U*[霕X9s!idaUC"\ -"F6Zc1[8mD%5"UZȴƛS< 7Q0z?x`~6XT9 ZPs{0g Iy3ET%?V=I$ggFbLK:h}dࢄ`˩!%snkd{4xQL$i<5Un4CBm<um]!n8lAp=ߌdYt[;^O3;˟-n% dPLde|-G,. Hǔ쌇][97M@疕XkLjY/w1 dd=fɽQhҕAþUHoW}{A%c2:7}ZVkA$1'B)v3vdqk[rA:x};-}4Z\HRx,6 C3Nď[(/n5um΋Ld ɆD[ ˍCFXΜ]h8]X/X}.=`ᬂd[.=bؠH5YPhR2nwgp^ =+gȥ:?Tc̅KtܫL`ø5=)Rùd [B|CILki+TG;{blR+!jKoHoh.ȯ+*obGfсļg_\vtT|mIuXջt Ŝu6dz<Pb JyF 9]N0 <*EoEZds +$qn+3+DO2]$ps0.c˛kVhǀhD YȍQP5&ѵ.=i't>^CK:nNYo++z-*S.kN&y\%ًgu䞐^ez^Ief)_Di&@Hv6棳#,wJY\v9Ra4pUJrKoS!VBP 9XWZ燁K'\qz4BȐ8Igȷy;ė W+M%aaui.vve4F1Vt21GBؘH"IgGK`l.Gpl:#}tjcHN2GwEA@k(XT2Z_#͓Su!oU"5 Z0l0 q̄,_vmeĪq_$ =hwYĚ]e6mh>f3rr lY \}]B& 3IenAW)-X_Nat@Keũ#732 oU<dY0BxP?]F&oR';tç0nqL% )|mKvύ|. srf]9LXGOMQJbJ0j9وx,kyw0*N#>@o~3>D`HgED0g|dd/Sa %(6ьǞgRڳ|Y"zzg|e%#zoW&' )L.oH8[C_SVV><->KuPğyqk k