parallel-netcdf-openmpi3-devel-1.7.0-bp154.1.44 >  A b|c!M@eeehw$Gsi:).梯3^a9֌S% ɻb(Y߫'# dVۈ 6v?1AG,Rw1ʡw-P ?.k;̓&eځ@{4HMimMyӯi9JL1ʸХ \^> ݒ73VX錉g5dHJ8q.ᎉ݊nBRӭF8ݧ[y2233f5ebb52a34d43062f68df04b3b37a83f54c7ffd37b18a9841180be84d5e0ba99379283d74d38f01c0064ee68f036a0a2276b;b|c!M@eee+l^t2ĭga;7acOX&j#P8odhF0o9>-S[$;O}WB:gց,Uꡆ\L-Ԉ-G\m`N@EQ[~$8Ӆ)R_z7/ *f1i(sOy'/U4#];>ZWtpI9YDh7 )hL%g\eÉqeU?ˋ>8f |W >p;?d!' 2 jx| 06@X d p   <p(8 9 : F9GPHhIXY\]^bc-defluvzP`djCparallel-netcdf-openmpi3-devel1.7.0bp154.1.44Development files for parallel-netcdf-openmpi3-openmpi3NetCDF 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 openmpi3 version of PnetCDF.b|cobs-arm-11 SUSE Linux Enterprise 15 SP4openSUSENetCDFhttps://bugs.opensuse.orgDevelopment/Libraries/Parallelhttp://cucis.ece.northwestern.edu/projects/PnetCDF/index.htmllinuxaarch64+kvFkb|cb|cb|cb|cb|cb|c5c6c42b49161fdecdb0c58319a52dd4dff042aefe7a5a62193afc0674647d4c34b7f0c3777e5f75e4bb0e2cd6cb4b57f35530cf1dc84288599044a03f6b25b4884656549af62fb5b2451e399008a90235e03d2dbfa5083b4b26bf927f45148cff4bb2affdacb95839b9dea8c22009ac79bc782b3adc1131ed34f06dec9d4700a15e9b9122a0f4342362f89cde95f2657169333802f39d5cb8f1a6f08412aeecclibpnetcdf.so.1.7.0rootrootrootrootrootrootrootrootrootrootrootrootparallel-netcdf-openmpi3-1.7.0-bp154.1.44.src.rpmparallel-netcdf-openmpi3-develparallel-netcdf-openmpi3-devel(aarch-64)    libpnetcdf1-openmpi3openmpi3-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 nameobs-arm-11 16523192031.7.0-bp154.1.441.7.0-bp154.1.44pnetcdfpnetcdf.hpnetcdf.incpnetcdf.modlibpnetcdf.sopnetcdf.pc/usr/lib64/mpi/gcc/openmpi3/include//usr/lib64/mpi/gcc/openmpi3/lib64//usr/lib64/mpi/gcc/openmpi3/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-SP4/standard/802ea42c5be8a164224c366aee5aba7f-parallel-netcdf:openmpi3cpioxz5aarch64-suse-linuxC++ source, ASCII textC source, ASCII textASCII textASCII text (gzip compressed data, from Unix)pkgconfig fileI 0s֖%q2utf-8c89f3622f29f3a433a85a9fdbdcf34c547b76895ab09fb09b65f79be41900df7?P7zXZ !t/ ] crv(vX0V}}oܒԡ *>F4r!3P.I eg3ǫ)Щfkf"pVgd7<+0;Dt#CL[= ^?2# O>H2n ODɪ=u|(#nڕ>$ 0 o:b'Uw<5&PZF#}>7EAn(~?YVEwk?n ÷U&/99{cu'];Q8/#P%TF<xM Dd̾Yahʔ6 wNimmF?pl(ڟ-n\"8')!'c[ڦ7jYqXfݡ1̲{N@+ <޿ \{@x?{^zv/br-T)#,i>-j0E #q  "`0s`JBLfLJ܅Mϫj(5ƒ iw,-Y(5oceG/MPH<cC5MM- dBU瘉l(P2l" :!/g(J*1O`*("T'$Qu!Ѯr4OI_TY"+堢W=`.Qbi>*_D BvMvX&?L Գ$"'kG!ܽ[^M|("?X#Blbn"n1}J$L`-;νs=.錁a;Ybp*\l I|88)@ iG+0xV ,ZC:#5߉?c)wsXu_FB0훤,Ҿ5JekY>i CTf"Ѣndڜf9;,r2 =\ϔr(|VғNE[:*FHg5;,ƠG(Y%6[sXm7,Pl8֑#lj(=00COuDU_S?3~g5D^Ǯ!靖zαzǤpTiwRDnu_8ǚЎo&?נ>0a=U礖3 i1(e9u#2 z%s으r_za]r %xEGx^:'V(]t)}ua-WqOY?q4%Kctτ_`>bmΎ`} <17+ Rb EW ѨAf,sl^ybK]p2\+Rԃ=)!`iv3KK {\nU^ 7`M$%6d#~-{dª:9N* n;MdvaSH*V(O7JYf+qG/PT/f?6$ъq;]fxg%Uܧd 6'M΍Z M庱kҙGq?pMWs_ '#[IfR19:բ&+(hl<}&*`E^OfI-k[}>cTC}^}%LՋس#Mm㺳R*G IN#OE.{ev]Ǿ0z{/5x]qT@qQde 3d~يjӛ(9U;E[iQ00|X\>$\F~Ҿv; 2ShWzm7C ˀx\:s=7FA8zJ?GhFi:CGYx+QMĂ-Dx0GGHKZ CKNcIx0 fZm2[ DA ΉJusPeE^AWO)F cY|o]gw("" ʋ]t7\m #@{P#;YA `L$~ښPae!s( c7ZؤuߍG| rCc6g챐*oycz$,Rہ~\%L>1݀X|eJP~ 10l<شݹ7>Ac ˻;ʤd6U[׸+CS} ͇0~!@ƣyum<0ۓKÜJ1*: :jnho>{I\LBt4otOUV7v&~t;ƌ'8"bqX!txM#i($}dȻI wwd3D@ 0| 16)'!AUOF'bFim ZN"#7hcSew:bueڣ& P!3⳸? b@AY+28F J~D"שٰYnFNF#1@da=MۧahS$-/,gr!k 矶~g]T0\iFd'nd -? @FW?Wݺ;6&f׻ou-JrȄN7A+KY,B[sڵAbf "bi~[3ٰ p炟㑉W)#ӽMOxyCߡ&EU5!VDh}Gvʤ^8|^tWȣ$OM -68;iwC3/b 3MK$8.g%_>S8Z j)H˻W gWg{Zˆv'R:?8 +1'ma 8X1RD"JQq1Su$v y |❌dߦuPb5k+gr[Z+8X{8T9)y,27 1G5pJ:h o\[ԅ/|O#cݛ).]wn{J˰H'WQ8 :v{_;#V _L(D󿃵d2kg;FkWIvc;d &M 7^[~OCb9"`gj~4<9=z4֐dv2{E:(&ȼV-8_kV_](|XD1.հVz5 SED@lkARJxA\7\ iע? Otb!C%3S{7Rjc>.\5co\KTBYߒ[^ -8ІYY1ăk@#|rT^FUf&?jMU6ej$]̪v$-=b?[$рcԮC{\DI]#oA/Z~A4yg]gUG/ zf_)4N xZʅ1]9rÄ}|i1xx7w;t')"\k^3 #v7ajCp܈@ZwQSIg]ި\ja,J.gg'hL$m59eL;rğ5+&$G@F 23%ˠt7&UwdV'\*&JjOY|qcEBV #D ,ww2GIZ;&yaMW/ Ҧ9CZISr"{:) }n3<EB#Zjֽ&Ǔ  Bu/|OƝ?ϯҒzxN~[۠PplݳҔ56+ ǃLH,-akl|Fˌ~ypWg3FEȵԭc) 6tcp5gs3= %rWu=Eoy ZL?j1y `U{-my"(`&bB sg޾;%',spQ/v Gm6?d밥Wf$FB񿉂W?Xj$kjLlh9=ys a??w(tX3~G$=TTiF!h`r?ۅ1z5aԡwڗF>2pyCLh * ET *^P˖Ag?L ͤ?@_:ejux| x9y= Vq$8w m0H]\8jԶ= sQ:eЕ2)ŻU"8kek$\mhn3No(MJ2 s//Dd{A94%9v+Dy߶\O̹"uu2zI\tSdgk t]哊VԹ}gXo0ȇ^j=uA^ŏ#.+fe5ī%tAS{:S-=&[~ժP']VOͮKqjږ])|DZj:iY7ݐhKl4oVwe)? e@é n,wg,3:P )=s]o9Qz>驸eéhՔm$ǮC+v(j{'D ]y8{9 æY#twr܀H=9܋ IǸ-%_1#Fwn 3F+`$!CW }G7P H@.П>@H Y% ɩ{9d_oa|,{/s%N|^b/Hr,P J$8e +GWp8}IԸL,k oaS@D̉?a_mNjE) hN5ocvqy_q$FL~)"/Uzwh~82? L-%)Ba %I]aI4 i͔\ߣ@MN3V4)#6D2"( /2:Rt- &޵/,HTKK܊=zp}gjֿճ@Uxk8F_(PqU:c-M KAetuܧH~= 9QS;0ṶOj>Ğ7")*xm~ir߶6솇@z?!}KZ YdœBvVkc|[X=G/+՘e`W˚ȵ^Wnf';i gS~FO6C[H6iӰù18h#'1*˒(KukBɂ0od֋[CS2e6㧷%tmO:rБu]€#?H$O>Lw-(Ŏ96yuKq^-9S7 ,]_CfLG:& ok7#ACpT IٚZo-iǯnw }0#Pz=|J ~t!b;o뫌Ln:m{t;(1ũJVѺ5=Ϝ|?o9-q,r,%c#g6tWWAt6HmG .9]wW}l vQpѸįfbҘdB.c :՞2 9fE6~ѩf0:>ojZ@]~Px}Q%އcXm3z(Xz>b4t3/{5zmԠ"8@gIkmX7$Nlf?G ^N~BP =g\}ahi] mlւ?ƋwU&jkB̈́U- O TW̯3v邚 <ʫ:ٚqLdA:못bȘ&zS`ظ#vHK@]Q_Qb__R.ڀ2dn"C+΁z=(@ |Ј!Ir_j%D?zms_ns|MYjd"1lcYB''N((SǺ+Hb7Ϻe!Y +xRF.MO%@āvl@qҼ4}ң#}|x&QL!Le5>?6l޵!JG_`TUWlj&P)EhkJ}BhF7z'׋|X;LQ>ЌUpZA3U<blWh%{i!k=>zwAytj⃋alk)z8W*#چP0Krn6^H3Es1;.4Ur;Џg_'Ϛ~Ht!~S~[c$s^ѦmO&Ivq})k@ޟUb75mk˸olK8iJHݠGBG7LiE*^o T2LV`*ue(Q"]Ilt(rkuQ+Nd_]:\U'Zm+Ʌ< ׅ݊ }L,؝l//};/ cڪlR&yP| MO2f/<*qH ޕBh?}wv$Շ>.B$$Ve m@QLI5b] șn, SP)8""¿+VG ֬x`F:u:3| YbRE~T;wlJW$u)YK$U -8lО\>ۥўhD{dޑqc10Vt'wH^1y- "*l/j`Nu[%9h̐V ϓ.'=)6oZ5S@ܫɳ+ jRFm; &]NGomvriڃ!pR͸`0Ebo8lKJ̵Ȑ/3El/6ħ>Rd̄>:p5Q9F"3`f1 "M(+VpiԘ:/:D }'H6kղ}yh"o#oümWqmӈ\vs06VKVzґ ȦA~V)v2eK&GA7pvOCzѺRjկ $SynL4A}dt&xl|ž`BR9~XrQV#2/CXV3yIK8O[]70P 쮪.mUG6+=Tfm-'5)#S~3x> - ;񠨤J>.ha,ZC]g3i{f\R!:=\ C+Fwp Dyj]|gƠ7<8qnGа!slzwGDmZC.VD8n5kef8 0ix~Y5+lOOüeś$h+j"E/B+gH\<:` rn[rm  әPʜM86*q1,\gG+kW`xLrCQӍ0l~fE> 1Fti8D[RڽRcѦ+D<%IQ bH߰R_`hw ^S戀SB" eb Ao6vaZ i` kyy<D,rDeqDÎlmC~Y7:63$VV>^+ RA(} Sou6lK1bs7* ?#G3!rT dK(d3HB"-yr2wD)mY*./T+7>Bo~xFX;ABZ l]@csf`?BMA1{Ǚphf=@ g;v  -:Ŝ%@?LxD+\)mƸնV$EHy@Ja~fW{c:Q^D~!AN'%a+=iQ٬j{KnĪp%6n\6(QdDJt1YAө-Pˆo˨bi2ZalFE k@(A=r(܎E*״+ڥu., #V8[Ji6YE,@1CIA{j G=栉>7H/p⑨sEgk W3 Y~#.5"U7Zdp='uxG}ϭ6ļ2u41HUrK1ħz*~>̦?kuts4#q}6~e[t$~s7/jĞIpʩ^|,(v3XPHUJgؙ2bM&|gBmcu`.{ V*'M7Ay=o3Nkds^्Àl鞌Uo 7 l#+7e(o"daD|>KԾ[ !~+xGzB 雐TO{ih=pf R0u[B}8kG p)'YkHpƗql.]qSs6n sm 96+Pį{5-νC[0aL+~<e}d )@GСop:=9r/P^zxo0fu2ʷʹ0wqFv'9njNͦ=PH(gs%f$G o "95xIMK=<m o{v{RUj\f9`c6IV+z‘ 9Yt 2pC/0Nq(}?>}Q.ѵB:Q I A1u0FXݱ5B,/dNImUz" @F⫝̸G ;] rcy]6!1Wa^6d#YA,8Ș\ؽ:q.-ڀ;b yqNIߕ4`LUCH&eRɮCY),) \Qw$x:^*-zWFz] N-bad_=Ŭ'B4vڷb־&"V,s&T UN~: f<#I(K)}C;bD,Q0?4%*Ps =^uXL@ N55A?&xPaZh\YDE'Iteɱ忎g*̉ty36>W(dw!vd~ 4LDo[L id5R[װDңR fǫ rW'[c1U9,Q1Kh>i GY+"{M .˄H%%x. r kQh1\d#07z>7^z5iv?fjy&BG'MaaW?!Ss˭1nɊaAvFO{|K@7ԓ߼`lG4CP٥0'7s"P1e\Ev?E1eJhq<+MΓv'D^̎oTm%xÔg:Ċo U[NB~ *yj(k7*%ۻ+dU.dwYcQt$h6QԊsL낖, plD:<) t`b_$i>kwur_rSIuVQJ "=-!n]茡trY0Av)){-TbXs`w±Z)BI5J3"N=H_yY h@!O~te/-;&Tk~S' 4,nxٝEFs:,iyIrZ#x#gJ_c"1&@]ioOfQ}+=5犧hڍS )(M̨wvPϘhncRC'qIas *,ve0j#__ʁՅt7GuT~${-Ocxg- Ջb MorjH 3HBk^F؛hw`]8,4lŤH/TJӹtXt%//)A<:wލf,9v~=0X}?fY 䁋Kiƒ߿ϖ2T.O7 sqKqh[Z}jfM7`ۃ1 0UygZ_(:|mSH/w rYhoݑmp ԑ?p AI51)羫^nqVioRPCFlj͗WL}&[U4x!b̮*$,JLmҜ KNCi]@IU+TQ2(Qd{j:ll[}`?X?^xRȳĕg6Gv~y3t7k3p`qh`98AfURǃ%z%Ȯ.0h%:_ƵEnB ]5|"yȃ(#0?ݡlOA6s&P/t#\q!&69r_uYlCvP-4j Iأ_뽬Nv DdM>Ǘ>7vj!﷡+)%c'CKH{*iD!Vgw-HԔ!Me,r+^a,mEt\yx.STY-֝}30bO#1 ;"lV^MřۼfiX}hτ1< Z\;z쒇1ohXrXujNwUuĥС!93Xl~*4[OO̴H: '|b,Bƒkz;yʇJ8Oށ!^0RN9)j7jns#j*<, ̍l"bҶAƙk9аT/{\v7_\m^>߱?Gkn:R ɐw>E[R w k`+<ZQ/&$uZN:ӳ{C ֐#`Y 73wUCI D O,؇ɳF2V?b$̳3~`Z[Rԧ8_!md7Nk[=B\쯧¿w-Ϲ6R{&=*;K&u-]+yzwMl8`SZI>6>k/:Su"hm'wݡ4H1vWΗ,a:3Ex)+9,9+gl&d^+PGa䎷t +Ph;cd[e[X'7tw(,#Db0=; dq1χ9fI:DY |,iF:Ug5v U+i|V$4??2kOeқMKi4/Bv1UU) bJ#`ǮLq7mTKH34;B/թ%\,Hsh 50KK>a$v Mzݺ)@3\, ;Ȩ@dWBއ"bS+\¿oTRo:=9)zlct]F :"yl4Opx(Q2Jyܐ@R1#~Ug_;{JED5AV@4Qܬ^A(x#%=,*Y=ь"oqpK ˩ϔzg;|nVWשF uIF&$pJBAQkO%3,TߴJ'B8Sb7Fνg 꾹,.*lr [x\UMEdUɊ+ss8A6(֯Rd( P{d+3XK"wεhgHrࡑ}|t[=7FNL&Q1feHPTdHN!0Am@6# `v%C+GO>IxN'KNQZ *cRCd*Z`^; HD6[P)%9P܅9?&@ ^FAOFRo.^j'%.GB2JAd70f^ +Z% ˇ S"睼$F9󗌌@<ۃ4r!>X|{di1&uCIS^j0e刬r7Vm=\R0Պ 7aݴ)[Phv*f*?PMMB<`ȷ;i}syuQ_^ 6Uw6hO_&xSwI 4o&y|Y|n~>MnXnC{)J8TUXjsf ko!6Wwx Zl?£*#~5MlKia%_`JfS7qĄ΁huE/dq1H}U#܂~l>zǃt;m'K aZU'IGq"l eXiRk7,1C'0ⲽxMy0A%'(r*ZUwe\So pIRerq(JX%XL˿[  (P}Kc)bJSMGaՠ=?4QyJ8>\qejDC=MFEHt<6݋kѣPN:oUV MK96q?0yr-ԍn)./\@O9$a=LIۏz5P~jb`.7a8tz]=e,i0l w~h>#Uh[oC(bzT~SAt6 , n3b~ۜ=u2?DcCg;xm(~GMvGȵ,`S3njhLԥž4r+@$GJflru3M?u+g^籗Hh3gڃntS64ٗt,'QJJd\ ܓW8t9.Zbsm8'Sk|'#_'.NH07UvhF]P=\FذM?CGoG#~ ΃.9׵_ p*C)'at䳭ی@Vq rf=ڽ]ʅؗI"zeԻXfF 1"^~c^"bRLbg#RJR1.qDUf M2c(t>S^i*X[VMz&KL&>;9`㴆ȶ!V"-ٹZ^cl l~G~Vp[kÉNhRc]\wLp'+6?bH8wB 4zZR#ږv0ZDYTT؃-%6LwM*xFXmKo)|ZoB˲];7КaJY447:IAsVXO,ERrIλp.Eup#f1 *VjǁN1)fSHx RH"\2HzY 6E&%2栻fK]C5{` >V*pWmayW 16$k uJghL< aD! ݽ9OvߓԚт;h+ԏHCqT]sMuQG,2Rmj^lb& j*Vv*lq)NM=[7ʲM(<R{ %CGʹ?؏?f} EgnZ8tqJ,Xbm)VN(~wvlX&ZSǥ(qi!'KѭXs?b6,sY !әCbXYsuJ\" &**2EW -A;ijva)Q Le ꫨJ`` FpC\  G}">U|тNhԜ4)!D"q.;/i[ֵv3K@ ?)5cmdƕǍC3nCoV\Qy`&Yϟ'cl2ò\L* }6~vCݡ7X7>&TL^.w+3 7m^e^y6£ݖԼ_pߣ{ ysOT?0W!m&:g9d,Xrv?ls @f9WfU 32PrY;;AǾIMΆvޮ|Ce)^B(ۋ r~>η۰%1$[l}(ރ?^9eQcP0!CY̥OVL1eS$ Zſ\+V =KLYAmv)<): +QuR]z_Y:{pT1ć= )y Z9{{Q=MkEb\[̢vEMr$wS|OvE%L!ⶠG=8ӝnC=a1,(Բأf!=4=8%,t dMvqZd8 rc/I-DCFQS:e3=@kXTHy wZFBpal?'VA 忼є(WƐ X2ӊэ'l^s;18L/X.&j%Rc,v}{.f b4[Nw-QjβUxŇC4ppw@I?҆id쬨ԡ)aV-0:mkax bhlMe@hSk 5%Uo<~C]Ry0CX5. S QmADdOzMPQLq|uMۅZ8 M ?8$ D8VWxj1b0ߥtE j($Eت4d=m30td+;4נX8e)>  P[87}#\l^cc Y-:oxk y|ۯqᖛukGg!@Xꠄ=:gΈc*K%gjlwPc'eM|nM />> |$Jl!?HTzo&nؘ[ fE"hk,vq"$(h(@$hq-'n2KJϬZCg]@^ft{M| &Iה8krMOıplA@jNYv+%٢BiN :A_ru6^v&%DUx_RGzH]Pol꺩\ y@O^˥ϗv,0d{qFvECf:@g<6.~8iZ&[auToQwlL=S`TlT1 k,Fsa_ Md{QDft:+T(6!>܎m ,D9ǂ)FRiGDftZzM_&#!݊^"4>IhˎF!ZpVDV=z&,}1oHc:eVf)#(V[2DO΀0uWR"D7̾gƚ_>~v!D-}DqI%U~~u 1%l>A$ALq@3pV-$il\\KC1^&nFKWwuSbŘ<=Б\d]Eݱn'Րڷ;Ff'lUOMԍUeߌunQ Rz{ N(-E 2=79pϐҳa'oL:z(2 'BťkU?*'ܽF0CJN0,7 )Ǭ6bN{1sŷFj[N'r=c|HO^zDy:ŭ?:_DBbf[(K5oƑ7RsWqƼvucW%I2<V|=#.󝋅p&NAL̜Y8Y?~C,823XP&}(xЍChZcTD GS9Ju!m W҆4y7ЁN`NDdj"ޑT~:WI׈kcmǁW]brƨ\`)-`.Tt.QpE|6EJ!Dq؄qq0>## l=XDVT&%'N-xWJFfUxM٪;8(X΀ijJ‚:)ũTZ|ۻ j5KETym<j?+ VL7dxojU,#KjaFivmҼF䖆Urt/bD'!GPk{9-(Qܸțǚ+nH\R<^:\o&=VUJo/[-vmĠ K1@3=7/[zclZ( ۞58 {4[\)|ic˸Іjlܱk&0ꛕgXai~W-*òiatw*o>VhպDA<M6G 3Qt^n<~ [;sD:0k­8Vp[AlQ~l([֨fհ)0Nn2,>d_87M7:Vcb\<[U+#@9.sO'}%wfBC;S!B{$ǶHWR#g1yV$ff3ƌcPPa"87/y~YWtqdk؄45{~K`(!t^n%+e/Sk:2~P|aiѕWG nN׵#oka Hn<$6e.2Ly)GxhMuO4C<1suI7gU~mrQ' ,hY:ʇۍɄ{kr~h)-{rC}%?5jcpRba޽]О%,J;yJH&mZ%s0.@ *9 ꎕU|R[ Ad:3_{ TK5h0{sh39W Q+E1wA%Or6go)RS," 핔ѵ㯔y:[Ү`we%H@5j3UoX N(>!VTs ^,BP(0`3{SpQ(OКç9tg/M1yh*tog܌{%DTr.v95, ՋOs y6M*n.@i+$ QA-s'8%YX v63vΩ178`3 QM!NkHmjr&ʊr }5↤Zts|띑Y [˛lOg>"\Ƅ*ކ;k+76/&pM!2oy /dfz>`|<l%܍U =>M2%Kx"?ss)1-zͳAyL~D]X0`A{[|Ё&I}ted펽rh'c: .[:#ڰ'oz ;%; ?V`]Vc_9鈫$a0#Gek-y6;[ ov8o-IS.zbp\&<\[ra-FH{#)0.bv.~ \=TQ4ra~03kϜ =&Jg?vSeSFw7W/E&y˫,I.>fd jŐK0Pxk?so3tp]ea\[4Mj2?eGaf1a2t=9QU,V/"3uP}j mIP} Aռ-h1[ΒphA@_FCĵ3Z.BYAQx&:]"c~ hF`Xu%Dvҡ#Olw'/7= Xr-]CD@q 'l 唱|46.<<63y)GKiBq6uA_ \`fl='~4=(לG:5 텅y}:W96IQӃN'o(4U>- -Ը)}is,yQ}by̳\pa K"a*1U NSimʜ°y^b=0۷oby4 HWδKF4(rSDpf喦ðG,1oK>["Kj=\f8mOYC'ս6ޞ$ 7fR9\wl˹h3V~8_-)ԧ7E!c6`N^Q]Ų ͿNgdy<'yBʯZlt-^Zr.squHuvϊUr>b.&>$4ᳯ) {!@*iϞF+x٥鄇 x|+18 iש/HiQC-O8yJ Ź&T YjYtQ4# jJq5ClxCm%]1FnrC09DtT%_r g+p+5kފ.4PAPmCxCK)NB`T;_*@bnpHi{JL7P[\ʹ8]O0EaBי96\nZrĚobmڂt\@'!" ;$3f=ޣz 1 4#AP7f9]0ڟ}3R:bJWN o_ֵgD  HdKah>ucVP~'1!+ !9FQ*yǢDZLb+ث'gE@9jygdh)g1I~g"g OyE3/Յ&~:~ 8lHY 0 bmY(-pp虆?&XO+bKΛ[{ۡ>`F8hDc9u[PA<$eW㶱g쑟j*A CHxܤ!I#DZF&DbǕ|pC(y&,6P]XxB8Y, uqT!CK&t0nHI7;e C ^5~*Y~Rvb%@¼tsa/b|Ԍ<q]n+UikbڑW9vfe'YN7w6E-*9$#O4 Ϟ7Xz2Yw#r39$5Li$1> W!'HHv5?}YOzfh 6F83>ʃ8fbiu@h=NyD osHm:* JNW h["{l5vvf)Yy0e -zԃkǂ6%iOy'8d6 z*(q{iX+K&b7pSňW&7d:N}$1J] z7~뇷Ux}eU pp&7o6txӝ1JF:bt4E_:haCycfԚ.) u@IvNDFҩ{vL9p.qҏC6^gŁd˕i`e[!wa 5Ӆ x ZWˌpn\`t+H~:!S5UNY"a$hH~BU/Bޛsg8E!ʮ+^Vfh s76J٣~$1jjSŮYNV92+j%AuSNa"K,AYJ?(~ BvnCxQLK# H!P޼獞 z8Ol|hX/B4{OM5ҜoԶ,pM]6c+̚UQ7h-&]οtO^]ukEʻ0\]( 3ǦlC6e-RN JlbY ,īp#k 95-UPofM4P8{Ҕ}(> aӁ5pr՝u3>jHjFL_ӷĈ!#~/ٙ@|f1&ŝS|s8Fʞ˓O}g L#4dȅ]=g֪OпJ4ݦ(nn@M^rne`nЖ輧QWn<*hR u^T~72ERs-sw/myyb`ܸen'd`k OPCYp]5]tЗw!h'q T|P^rm8EʝM( ;V8Gshd6a5S{2HLC^]\7Xxϐ%-%\ʀfKsi-;đ wQtA/蕰W#L8?,Pۗe+%T4;zjIq{ӄp1,cc`&$B>1?@yinܒiw s}Icw&]2*7W2#5[kD 11 k6[XXv ar"aÑ>If[1q6_G·eb 1p.oyfabG<%#WIosGɽ>Rbqgt/YT'$d-إzѤ*gl [Vtr<(-'j/H |ؐ1~\Sۻ=C? ._)tĨ g,e 봿56d4΅Gkm!/M*S 3/`)oO_5&nb'ipjMChZlY9Ho?nHXdW$}k}ѥW4]X SKMtƵ1Q)>q.r*wZ\PjYʆ@YU v% u!}uwgrK"_SxBr0WPs+K6sO6vPTd?iC7H.nTPUi,_4<9=eEEbZuٛug 1*Dpۙo>Xɨ.%ĸxʃ0KB>O{0T(Vhg[ٯo:y>G3@_ R L+0Xaf qQ(E՟yBR= =m ~~@pcCڄث]!\^םiL\N\;˚myp ֞=iUB!(Rk̠n!y \#C2Ay,(JFd񴩾F B5vJoC/AB0o#0ΨNmޏ0T%'j 9z*U1/̹Wyb \# -Ps`f`+"C`NR+ik{p(ΜgA3gxic4so,uʠjmo`T(nVhrx_v.1ȭOO|}2g"._N_Z'*7?x 1woVPV*zr=d>Bx-1*7!t}#n0k@i*mr4o뗚XU~?3tXr4E9vbK)iTӘ_JJLISC=p=}Pc i >vɎB 2tC|bQF;II&=w{R`#"MO^兾Zjuo[$I\?\!AJS/2"`׾K+YBp2ylUָK9_.~۟NXՖHojkŮkLB{.KZt5ԯ/1sҩwMʞWKR(ҽ~% NUS~s̀ٯ',~O(Ʃ'@1_qEK쌡aYOh8 䟡 *xECOHw2#MG ZH}$dAܛvFT빂ѼCb74z$lCLh:3lymUsS >G4 V&:)9lK#G6Rc< TX Eѭ;[Ƭ(?OUJO#OtFڷGJ!Bha3qiͷWz\PV7pO 1mjl ]! &^^xlpuh*VD?BRpyXu#2 {X2d5uyr\zG?i.j0BԺ؟_JL{hau%ϮΎnjxAo?/Y?BQ1O˳ -^;>еITE8Hk Ykmҏ2Ȕ:^(OܙwEGH Mmx !͕ŷ:;MHEs6 cZSː[yZC7YC_,v6 gqfӉ|F%z,[R0/<kyod/A@?}7OR!=,8 aIѾQ! #_2^%k٭ f5Җn0ho}F\%Y+{JRc')wDۮ49zM3;aX=O#~+`cM8Dޠ -VIK,'M| >r9x 'E|}tϴVuuo 1Eo˩s%`,k'/yYQ2츀A g %1&jjz|S~WFnJm]Bh{6X':(~?`p4ȎC 9o>gzđ1@7A?M. {Cfh.Yi֍EamEw?bn7l9g #,&`yvvVzŰi߄5KX#$6]; nόsbG>yZ1Nhj)1=0q7=S";A]nL˷AY;SB&]$YS,KtM68.fwѹ[ϲW];j{}w I1?vZ (գCBxeɣc!^n6U ێ7KItUK&uKYE?ph*XvDC޾-c$cv*5 c,+n;-g5{ )+K 8a vEAr= ' ϞaG;~{,,dX!@%ŠcS"r㝁&[ U0)w=MYtoHd`QloN*n%}_A[ cCn**α- _$ѰSOl77kB]]BR)(Ĝ B#ƿ 9=-7j h@}*ȄeؾKv|0?$ ]g͠F7[s5lK^Y~΢`foa[6 Jˑ}q 4bl wGP_aW'dc`&ǯȣBBQпhĥ8Q^Lf -T)0t@ZͯNB! T7gx_ F+qEe$ ] + IqQt ]ퟢIh|]"@r41 ?ɉv\ ̷a+#UѠе=|Qm{B^/mWh]1_~Hj46+(d$LBP./8| \cB6v ~%S*oy, tt']~nܴ3 s冲oo2v'm͇{)E~VP1t 8hq EkH;M$@RigۈR+_Ibm%.4$_9M*3j$fеLԍD977/Pk#Hp&R@&srRQK]DI{NJT %@.2=_.p#|t{YQ=u@.շgC^w伴ALϋ,*`\EO#ub 7@.M,K.a:2ڦ?{!R#BC?LْI!^}ڀ*CJbSԻeI`ێ*13x-8$Agʤ񯠰8FϬǵ5cmF=G46GF~=t:`O$3SթDmc,. N-bJ ݉EWU^ wԭNrToc<)csO/uq #DN'>>pO;}1,JCg)WKP6'-TZ:bDO YJ >5:`tш#cOMlhߖjL`jf }|'Mpz%,اw_B#K,$J؄#SZԖBKM{NԫޭEw}`- HbbL(D67+KxUw9oH9[K0%7  :$OH^qnI@7!gztJqa5n%1+<'~_< b7HK9Nڽcl+_[:PϕH B %O]%kGf@5ڂ۹ba^~GXwSouFx `1*|]׼1;mW Blє0Dnz+jyr r+u,M_p ߛGհw*D΢@r?gay#?BIdw0+Drυ9+/ޑ/AcViοf<=5et[FbWLo||>1+G܈"|WOj0ϰK9of .{ybm+$; jBnԉGN 1T+*U{h6Ctovc2A1ȐF RZl%1U>I@n6MW<3Vr:kVdhMj.'& k1#dؖt/Wiďc%[_(/xt2xdnMO+%b _IC^BÜsHB&#NbԵp&Or@~b s>*OPkDWzQ0B!([=3͈Kq:u4ݥIIbwOJ70H`eVzBU^sdǭZO\8`i'QAN{ XA hHe vvS2^E%K.c 0{? ٪DLQ>T"] Uih,Hso)!yIߠ^*v)pG8H5֩>r0]OL^'̗zsN_ELql64yN+u^g,K޺9CtDIG:FUT7Sg'i;!O`i t+B43 _N:vb u j #= 0 ֨87q/Z#v\Q{)R׊ !_%I{ɔ< SY07u&VFmS.uXl[K((/HWt'Z%{03Sׄ{ -؉r=X~W ;JST<i|dW^vߥ: QÎ7ѷs + IyHNW8̔QѰA˝d%7I,Rޟ `Q`O!BD; ,qR06*%hBʍ1 )a *W^w r2 +г,sqW*dS0^N+ 9R秖!s~jo܃*Y|UY`w3n*$s!rM<*59#eΆ:\iE{ ܷpc#V,"D: ݓyf ?{ rI ite^[FGEDѫ'lm yD^-Xo3q?g\NDԽ )4;՟,a`ŒC6 큗Y"aЯ':ſ+69d~[Ke8ta41SUPΉp4{Zm |iY`(ĝYxK>K?}vaZG v,y(MGfB8c?' Oyk*pV0F]AŞņtWTX,!?lbzXi0&~}7{t>""@`2Z/W.@+'EDzBg Qo"i˸>=wwku$e`a2sZz$sj'״>͓8vʄ )gO:kget+IeVCu{uqj7 |ؕbmx5G;6hjT2r#4Ttu_EE+P jebUM$a=u"e`|~A9 3lȊ$R%'W?t#-gCtݢrsyMl*pdȠT Н)[֋Udkh}3hP!}uVH; !A2:v'"MjDvM)L} YW2 =C}0Tmx]tW NԤiC~7y7"a,8iXBٙm`0HR|r䧍.b_˳> bG}X xD#5c|#ՇKqaށ4=Kv]bpxz!@#þe*[~?U|q"پȕ} ˜sjʿG'9" n; ]ƺݰ]K{*шo2 CXO WàT]@ ^=ֻMKX= ؁&T'9Eo ζ_ej`;;9eoi8Q'OTmf- _]qj wu3Z,Ł h7iyoR-W^x>1 m]ͣXha.~"O:^t$G>J,jҧ w @v]ZtrLAvqlΈU\zp]͌*E1$V0^GKԋf4ĉIpg KY jk.{?8bRK CW!pA peFnۋn{Zz,9K&t~fiKͤ~S{oI [4?HqZ@k^#3 i0<=c.ӏsZU! j`Ѻ,߲ (u(G'f5K40?IHثR+ @ka- dIחӮQIqsRr*6_:$~w+9-u:ExO#siTwvmt2M`\ D"qw$?֡6{ysn$E{@'5L"-TMWPgfZrpbBF1fpڂ2&tsKfi0?`.%)y@Gj>sd @ɝ еjSVkm9?aE ) 9U%|y&jZ^dU9sN.M`^soFDiI@c*_>dP񄼵? yf}C+n$IUHoH`#u x N?Y|,&9}ZF׉!9T[.jy 聾 J"JT,(Iҏt\$"@Фe3CZt|t ׺u'<8%] A_SB { `5geˬÖ +ҥs\#I."+ Cepn[NIU)|YT)&&WQ=ᑠ%yI (oj Y!$~@f/3y=&n"G4xN)3  TC2Ȓ!q1ڰbuZk&BG"ڣ9C@&P g1 aڊ6 AJ+;JE=# dL~j+ӧ'1JW L-z{ϮǼӽf"2ՕB^ t  jxזxr\*p:ԡtU$c-5m,+37ܘ!88!SlzJ"$!j񔬺BW],)E3VۊԾY@$bbNE?Ǔ7 ^A[Q--{>K%kԥC Yƅ@a~kw9W/*q\vI>V:U 0(ڗG3(kx,ױ])<˽ Jaz(PEy0#q$M璦;mO:3,fW2QxډԮYBxVak{%”ISY@y Ԑ԰y)E4䩺23PY$[Xg}$_ Q@(9s1Y,seW; >d)Jy0xgLTpP=se V^ڥi,-'qv-i(E.~ /iLDd 2Fnґ$p7G*94-R$VPKvJH݆O`z4_|.{A`2"ө91m8nڕ]?-)3]I _yE'3@*K VOԗ2V"WSI%@ƶeOE&0T|@pAm}Ml5ӿgp}eHL]*5F O䮮Ұ?~ɺ3TE<=fJJk7#T/@uU!6nmR/# 1)F*suaV} .}F 9ЕܒDdv8J;<PsP(%>)U+m?٧p}XGeGo<^ayuԚ;ݨ1qI0"t lU[<wg~_: #1u)n'y! u0Vۿ  Ďne : ɉsP 0m[<yr߲-Ո+qdݧY.(>' Iey'yȉLl@ԛ#TOdPL#WIcm~vdG٥kV ?,HݕGCM|0&X0j_Fh26kRW.rWW2\wYR!K A@kUy2]u:L=K5Pmi ƅKFz.+ l>:6)qh,~!'%1 l_XG{aJt'/n@Яe@|OtwgY RUf311nx; ȼ:y+WNثzÐvn6avE< 7wQsg^dF9踃7{%Rk} k_fk1/iF9@K*+nUrd+,p#=] j̍N"_W|@pTĮ,G0:]5 Uy &j%ÚI `沈bܢ:r|1FCo4vD]bE#VV/Z4i[rhsMѾ^DD OT?;*}1AkXuL#v/+]?o j{wb *Y(` 9#Ja"d{?oL4l˹09ūxN.2ÚZE* ? xD$R \^/i@(3MufdE/nV;˾V=%(dD;\BU9}i1g[́9V_f͞ƕ)F?,|?ư\0~?!A-@>"ca![deJ`|{Ly öp.!l,qp z-yA?,jϒD V81 n)k]R׃͖s4FG^9F@#zj7[d՚!bNQ6S 4]D? !5j@9'RI +06.ixhx?Gb{%<+];2~sn;hgv-{'W$k["@Smi@SAvƜ\歼-d{E_-;#<:'rM`7O`=P7ԼKZT!Rlqrd:G4=7V. TӕUqri#$CI.jSu 'Uo@WgRv*8֕Ai9v!\Wi~L⌼.>*45ow*ѳ ޅNe?r>Z G-Pxg cMWL٥vyXb n!m? x9e/\!{ߑ\,{X‰CvR3n[цoAn{O8w%j'{1y_vW^7wlawo۾.DvʧSeG?m%-!p6.0EMB kc5!(4f^Ǟ$*N~O؁5;JEA({3 P) (SXoNwMqRb֊5"Bnj, s,r B&DIjD*r%4\\E"RgM9uR9SM] yh4KWB nTeio<,Yva$Tб#Ҙ)H0yv`OT1 4v.y;< }DH, p)3CA/'D!j )~jDG|X[L~j_~EX%iE1{hZ45"MXbV"㧺`jzb쥅uSU QIq';Syd^7'VӠub &ht = Hmu cY.F`o_2WR⅓pTF70n By%a΁ģڊ@c&exmѵҽtH2_!_g_Jj9 ~ŹQrJ1]8!ZHO垅\|vrN4=!m`+|ef5fzmeSF :ՠ^o\] 'ҴV݀ӑgTmtnd+BR}g՗'#>q߼ D"#S D:un^Gןpr^,xŶoD:C 7ةȒxubb d7uX"T(-pC}(e#7j y^+ @G3;M,: ~+8w9+i" @zUaǖ{V$rsQcwԛ .\73DNϿц$ >~q7ߪM4Ȼ`gL8'Z.\BkruoW1͚h㍩q 2b702z!x%ǥe| 08PJ>E7x֒_rKzM>a-PLT?(%5ZruN3i2̸6ar |2TiHE~t7VOl >9wV',dIw,/D(ߚ,v@),ɽQ9,24]UH49Nc=b {fgNOS1D/TOZGJ-)fu;.4 qx(xaDO y;R-\DyvNtV$C+eY"T!5ʭvtnIn ^ᕌ5p)ήJ? RM ힵ2n`,C\r_mG)Bӯl%.<ŭrYn0;u5ىbП6צ e7H3}2 V?֏^x2/QxTcGp$blc>@ިVU]P+I+ 'w5 ]TfS[CK#x8 _= CdЯWڔ5cρGöGJ3Df`tWd_|jM0Yh4} r9I+!q '_$o'4W^ɧhv IaҮn?Ɯ=p Ǡ; 4oTlZB7$l{Exz;Sm˗\sUTw*{gDgu2+݋եɾ@?]oZq_SEu&Y)1+rd}mwXTdUkm $;aZb@Pii|B]Rwѽ7GG eZ&s4'fPZHle'Qpce^(/ dŒ!c7[725b**X']1Av|TWMWsMx"5@M8]K|dD|d[w#C3BwԸFQkIt,% LT!<}#^詑t0n@PKՒ"W uDݤZyio@)xRhL==۾Ѽ2ni;=%7Oa&qɖYl=ڊZdL:HnUO6Ē`6c;~2ǏJK"kEYΚQup,ݢUƊJuY{V b;.^ѹ_9m6C;ϟ37)U&2qAb *$DoEw3:=h&+XxƜ1Jwo \j7e|ݜ+4 +[`o xqe\pcE MuT.20_c˫mEs_h)M|ƀgvNy _tx6^q{OϲTDHT(=n1ht֣X*:M}^|>\ Ɖ04 |}*ښIəC`+h ڔ!}&DbdAaT;V6jo!$MaT֭֗B FMh{IhXbwnƦɫPHq(b?E,P?PDQM?M+x޻ ~LxW_)+UC2kl,6xb=ě'1L@vZGsُi ݙp\kܑZ7>x]s1,zXURVc{;.z;"ABg!NɅƲ<i] ";$چ{^n; s`j+83?,˴jWWUxFq4Ҭg V\Y9X0X ;qw4*@\nYWԫvUYTqv |Ԛ#>FL6x%jGĀ)'=XravQzvҹCK=~ڰq8z0>}L)7[Mκw; cXO&qCwľq " % Y.'I+yXܬ! T*~Me,}~%M\4¥GXXFUa[s{ڑPlTaDGl9d]cJRy) 5 .+ E@ l<֌L3#.S*9(Ƹ4py 7΍t(AȈoBml[mꓪ~Rs&DR9rV\-iCP0"A!)ӝ\pȜRҦ^}݄ |:P[gHw8] .ϨMejGJNdΙDśG' 0 2܂_&y)lq :ft|qD-mWU;0^u%Gi2t+VZ=} 8uG7Fն$s?hbvm끪ΙOpqs@!`_ҫAp3/㽑'A v4|0̆nTė;(EJ5flBSRb3`$LU @ 7eqIXj.X#ǀ6һqp ak9Q9n6qvDڑ5|wX6Z<@)kTA.x|ۙUK$b&)%y15 e'Ak?oVO FS@lǮ*Q‚Sw)'Y/n?ڷG6ȗ^ۿ4VK-OkIbpڐ5QQ>fȲ1iAg ["t$Wr&GݦU(YOϠ!wQ{s Ep3R`)g+6{%wS8G[zݳ9QtU?gF E{evuGa;%_D1cldϦh(*D7pGgYg7@hgv=@=TV)җ$qB#A f:H^HX!y0+fÌ%&oف]ں3r In&%shw*I;t ($G~u9;e\A 5=#{US7(\ V;)lwuw>~ ]rܳiP@կ8jby4U(BԫK<{hnZCgxX|rMTF'vG*ƬU#y{ Jۜr㦙SRAG馂8и@uE49#^Bg7: r3#u+#-$탚2(8/D#7VeB_H7byˢ DIRF5AND np&R8a`Sa5).393g\R?,NRPq91-1Y%iE45˙ĝ8[.ZlwJQʋ? P1KTH秷`ySb "yd!CEZ-.#ڲ)5kR:irp"riz˸v)p<gW[ݟYgv Ad6rgN D mG)S#k'S}~L WR3~>>V~ST3{zk dgh y`HK#mչ:t}b, sZZ6u,2.NDJ0#&zgMNlFz6qAƑ^\@7PtR3s=.[R5kUJb9-ʒ妹,!d `rr3ۨLXbO1@|{$zȬ:=oD { ,L,̚V01 8'u[$0XKISM6"qjS>ެu٪,ƞ#;y$-v:,/TI9~P2"F`&){_Ñ/M%Y0d~uS]B4RtVy|b.PkmebS1O ;%hY79- mW})/>⹋_?&_^n qfbl(L lڬ  aNd4sGz\_{^.0>Ft9Y18KSv{0#27Q +C]{ɿ3䟕,mҶ'Ӿ4OZ))y`2r\@T^і+ܧ릪*&7gLH)R*F;euw$ ÒH?"racO:}sLMZq2:2e" "$6Gy8H4EoE^yk4 cdi"}E vW/uߢ0q4_t/Jr8oJT[ͣ5Zy"nAn&8mg *GT{5sqmDCİ0C􂻗rF 5lf-IԾZuuXO\vBD0dA:Awt>{l\{" ~7+Bnid^U X Ilhk|8p]&YBX A:cXQsKNS"d~7 &r4Z6J{R6բxH%YR͡;O5 ]NjY*qh.:lۇ@})7؆bʥPH-?˷2kb x D2xM3X&,d/ZxͦEO POx/Eۚixfz@„p؛LqS)Mg4hy\˦$ШwG[3NIG a(<i@Xӡ~QnTg!hZa&9I}wB̴EdLj8ڪt Q7g:R&eUQidqat&BT?;dRy"fHF-Q%>仮FM >V}-ʌH)1*~ P~lH&^q0#BO%nPeJoWIZE ;,4=9Lwh_,҇U <'q08= ]D:)ZX \TNpHr>khԆ }jb4t\7㯄z`Cw2y ӊExRlpjP#D.5OThc}PS}V]4 !Z.Kg$Cy}qF#*&ƛdN1b^&nLQqT{5r]T:VBF0ڮ3mj|M %/ HWH_Ȣ0>U;0cƌez\y?굅MN*i|Jfs54»΁f~~ ;Cg pG QAog0DRqo(tF\kl5.a3҅m7X (uhwr ^hLL0$ z&L8[-l}BY/hǟl,9xͧ%Z1c.Eږ{ IL.|a p^UjHɜ(xZnl6eҰTw9%fNexє98DH5gjPu3^S Ρ09u"%LZNdkUCzB|d\ORԸq{4=ѱI; ZQVr:CۛBcnAG5ĩ`#¤]lJPMv%L0":U:<]фڅ V @L|H[mGİD]V≋H54^G#+ EȎ0?^*=eBov5p Y6)2o+|;ff*-* ^-<(6$ B2rȣ 邭"%zlBa'ݵ6T=q̜`ixƮL$4Bg\_;`ĢemVj/ AFg&/ 5qށ"3+JJA[kTdj/|Zռ1+9j;$_Y4P].lv\sEmǀ<2 ?5&I)Ry4,[VV )L2G݈u i/04nf!ysFdnHPכXrS54=@HAIW랏!JN 1@"2$]͟ÑŠ < s s1*4pvZrts p^ȷI}T@7l|3R x ~kyRDUsZ39o oWih@T'NӊD$XJJ@%muο֙f3r<j^GReLm=HpCZ2VHe]7s/['%}\09wQ9D<S{l!si:R1" { AR^-Y2L:uW J,b~ugR|u^..4 7hr|,V7jsPO 9KHUDQ 4I#6lŴ\_ԇպCۄXUhd" Єp==vݯsS'dX,9阺* s8hoX_ }G)nyBïaHl5 풡 |Կ(~LrI. nW1 H|r1PBsRn"v}yMɚєčjˎb*g{ܙ#R.CIQ:_WG ^aݦ * jun!H1&El\zU(_iTtXzJƾ~g5d}e{ƢcMc釲?>2h.fR^s|-=>#4DX9MX`jlo:?\7J^Θq>P,}-yт?6%YGTэٴ WOA:Ѐ*F_6z[^_9QZǘ1C \`Aҭ0ḄٸT6rK(dHGKN'zqqph 4)4#^3C,{m~V3k-E١x0TOֈa6R*fUuYd8[Xh12O؍դ!+'%y psśp$8$6g /HlPͳgh*/jKVy6.-S1Qߜi}Ex_$V 6v@SHi˼bjTkF~!G+[յQ9w8>`3ι{ٵw xQۊwp' '(z!+2qPJv]?nPLtTx;m`zY %@2坂~J{ 6A;Ha@+f[&ߴںbI&y5zy*=Bԓ-|uvflP!%yk`āڏu.|?3A00 8d0[q"l px:SoSºP6M@rF1Se$U.vp!ZI_3n?ýUC3,xTp;_%^ a.WٿVM{?̙ш&gUy<8/-v+]vx$6B(œfYutF_{KC|JWv} \DəK%noWk`hDm4AnƖ==LX`1MP{'+pMtw I98hWE9MI!h-Hvۯӹ37OW^Ov5_(%Lv&^`y2݉r^nsYSF:3)iG~tw܁\Rks_M4?I,qG XX/x& Tw 2XIʓZ-lC{U6sJ:)j$cEǘۧπb0,k9c'}UI.Vּ'LHHzbnT/2f ٫=2[b>Wt:ʇ]ubo?Wx񒼟q G{(UꢁgHR(jh೙W4 KnQ7=sI+N"Gئ5Gp9@^n3@kDB(Gq IUKߧM\~/ϒdy?s&"F'~ >|ӑ/)ېq[mN&'JHS'uזp~ީ &}O8`i:$1=Gg_f2쁽R>sBl;)$Z Jf9=`{&ĀFݐ*ItF2yQ̼2+У9W3v" oFT`54?ER4jZUkx{?,G0>}ÞTz"zzZ9.J9}^ϮύVI/5`q`%GW- W{ @$׮ͼj)NM7ݴ$'} }*,)XܥiƟ9Q^LCaW8/ٖ3u_ ? ih9c[h2~fؖSG"&T!fGTfܕV?P)xݫ(0 w'$A!x^,KBfʬpem9EH`+yVL2/FszAO,Ytn[A/Hӊ|cu`\H3Њnb&QYHB7]MTJDfH74״D3I:]ZvŞtQ}:rho]zc+?b>>3J+hYQkv=:Le@m>$w1ťK&Wy'YAhrjǖ?O"*"2Q[IװoaH|!Ֆ^x7?@ceeJcНk|yd0PʨVޛ ,Րy\+}@b)ŵ<[q }V}LO@A9%,t<ĵq%AS5XWzb5y %)wzM>8žQWȎ G}Cm2Э}qގ VGIVid)0"g֠>yWW&Xiz,ie^Zc2"BDLKL`F͉S_@~#r)U9xf5L_ ^wty$8,z\3_L6䍘kaO fꖊ&GAZis?ݘCϥy˚9aUmL@D6gR#zϙjviv.1EQ e9S DHK_=| |uCʕY5^x x4jR&ʧ]=-^1v|0f/T 5xj^v_l0@G2m8\"o Av #!5auq;t[R/qQ¾`?=R]̓Z /M; ֽۋj1uCCve/cU8HIWK.,M}w@yv<)m:F0C,JՁ/V3TX?``.}&HbXB&voԨX)[ϣpg hOx>ꅚ}Wz)n4--NoKn'NłQW(#--3ǬpjN%j \H @"Dey_QT'n0I+Z IMR/8Wi5P8h1$H$c%/"r6(z;A9M}(f(ڡO 4DFtI AnId|~Uű˴% J[j0dk~0l!0J³ƥrH;8ĥb~5k5;(aTpzjK"\oIgc Hi>H k~̰_&\xCcò!{!zɒOS7{6P݌Vϫd=tCPd/^+8m>'Zd$H7!%`B|k!xVZjcEy% d'Fc_ ޿ӏ`~k6C.; `+dE4"WC4g)1 Bd5`LX)yTP /5&=/}\XcL&KCo "܍+.`Kֹ+FɒhO,e\{rM.+_#NZ *r359^(8R,h1.2[6%l#A!l]ai PKBUMl#$Z.Xrsv߽(b)u)PC|"yhwOxzOmrABu"g7U"XaC)NZsZ\oMW5Gyzk5Y A-'PBz#NZ@=b{)YOy{eUU+A2ƻ(bPSp q-qje*R1U >o;sfBN Gȴyt崔G ɒ.1ZO{NhE~2vx+9̌8@]@'ɵf9%%Ngὂ:i3աҨOCr}6Sn(a}v\g8M ?^v Ql8/}/q'G0]ztP~$bTiJL_<9'2y1Ak]taM{#hbv%O}qIQksW#WǺ3EUs&F)#vd"T`|z{fCT/{Ե݄cY?)aumν+)vno3Hv-Az^Tq!¨>19`lp` Ϧ_zNIa`#Pn=?UNb.]-:2(C2GZ㌚,F}YWp.#u!rh|Q:7^olE9I3a6F5n9kft&3mS1,G񂲫{ ._Se!} qǿ[= \~O [/RJtCokvnuVK`mz~X9R}hK' (HQ Y3$1Ƽ¬ 9D|?UʅڝCMZ X0\=(Ӭ a]5imE rpm/48*ם/ {<,}w>?S>/[FW`DP׭{[F9L絣S}0hm͵MGib oa#?:4F3U˳[s|&. ՜:'D#jl bʃ^wi"(1Ek䗶rn̈́0sZm%8!0.!_wHZ*~}uv^yrH.I|ЉHpca3Ud8dA?)x A*NH;Fl+OJ!w/U@i׳e&6jIWvg|-`̈BKt[^V`S,]&@ːs Z,uK@g8P33`.O.W ZYoK,v6 6B$k _F0|݇љ$.ϊ/=(eƆCPz$Z>')?hep/ohP5 kB{q܈Ja%ߎXi2_6&NxJZŭ ]'B4OJ[`VG9ت]ֻqZI!<|7(#Ep<E' ji Ճ|$|/@.Rb#gj+S3 Ð!9]J*LzQݛn0_dƳ1~A -Ɂ8zMA41T{Z[%<%i5ET_DC~)_?=pwagy%}?wq>736<JArOYm gLۍN "eI/s%98DC%&%xR78VKVD]-eSbMhOl. iD pc,VIj4<\=ij-']hwV#9C'4f)r[uJ- ɆKEFJ8 soՍ0bO;ǹ]'l hF΂ f; #nyzfQ'F(C1eBVTa~84hϑM`LY?w j<`OLU?Q.dt 3XiKލD`r4s6! ]]GV,b:.{<@Н)i*3K_fExбX!2ԖbLi@oϊ]XZ7u$Y-(0% \RHkz]4A]ᡬ@ToB  )AoO?)ֵ-OUڔsp#Kp}lb0K7+f.8 \]4ӭ-hEkO%$ G!C冘:~$d_il-?Wyؗ]WZ-b=Fn*ѹb/x=6*7Bzɂoedo\60C3_AϗB'y[ /py5Z2 sSL^2{4:n2'!@k],,['1v{_vOlP@9a?7|2u0TNv/E&IP%! E$'Il2ʷi"][d*7<:_ܺ2%(x5i? 9=yѠ.= j:}><<⢖qk*{#}F/(ɝR{5մProa*ρsi)`-{8mnt0F}gܴ r S8sEs7S}KA-1a#cs qЍMH@ohTNګ8QR&OAJa[B-b_9ONXao*x]dkhvmU0R}i (MtLa]7?QO߮4x(*n=_% a7teZǻ]^yr=P]_L<[T<RvSP[V`vg>nֹ^/.6wtD@AExfpnہ^dnP4.bg0U%Z3R| .-+ᖔHKv7VU͕}9껎lQ'J [<_OXICKxb a]aIlOU; N{aP_oDU?ni&Yn1]%oXZ &8+$t5jܛDS[3,&钺Y*s,`_ ֯Oi }ܝdFY֍|\i}8y,؜@>&M3548߁!&ѯg\#:&[ؿ-9F<+9db-@'x6;%EI]ч_m5IV2(ßWI\.%u3";3Ќ=y>^(& 蔎 qecjgEqMf4ix+ فx|!N!쯠0 GvMvzbp pvA\D}ovEF(l!AOhī;mZ%ΪU˸$q*t`10j LK ucLÎa$*@*m#ئj'oy<Fq]@E!־+6-}J RZεXp]|Y)}"p\ LD@(O=M0X6^/ofhY҃3`VA8yˢ`f8 ,aǍh=$2խ9i(!le7mX[F眂^i c^YioC =1HG&8 Kh)x}0mcxnŝ\Z~ C 12*Oe ̈^tjEj5rBH *H]m:׻9*=mSjp).""; dW\kC _t0o}6P.VC]1 ?Kׇ y-{AUaDd}%Dw&jQuΙY;JN݃H9BYO<$ «[+0 3Rk l<,5BgnDNe3,@ ;St8qㆩᴂ$K@va EC_惀3ʦT0nvagK0ѐqTX8Pd$⁕NNT&O~;8Vj]Xy_!q@mw\3F{/C~B~W:^˞$,! jcIX֬eJt[iVו&852ߘl*5p(2Aj >>/C0-t\MDd#N~B)Ȁd,HoB N aw^jrOe1G}UMO֎=ҳ8tHkO'&0qҎOZՄ #I' N_6W eM|Ĕe|g}C$Npfr/X2Dsՠw|$ Ζ½ש|ИМR!T\4AQ?q蔢שܲAJQЕss\dgUW)J*JGWʊW[ڨ:oVEZ/ {eFdg[=+ V;| F}QuɒV0ZNkOgشʘZAAW׽uܝgaI@T:z2wSu"9x'd)Oጮ9^*!Xg u[낎Kmˇ\hj?Ko0"Q4?#sm')B|Do5{ C2E ' Rb¨;] 큉r돃QșdʘYW/zhxQbq5ècw,m+vg<`O2\Xyos`ZT*݈jw%B!;1=8.j`酄?g`p}b3SJcA^x}XZ:vݜEW>vK/러pQCdKeYwT\q:ףhҖcejm&Fۚ Kr͊1Ճob}7uPj2w{U;b5PealA*UQ I#niȔȭD{m'8:$a/х6RW8"q: PZA%x;qMOw[ixxy F?}k9BwA<[10S cY+"6äJ0O`]; ۳`?&J_gӤ ԩ0:#c1 |uJ|[++"VuΩdT1"y80c-* d07:Lf-vԦC6|[!RX޺c Byߪb7vyӧhV˥_EB^%k%t׹&t~(i>g\sOQBA`Fc|f 9i-IsW4tX{bePlA]~͖?o|\WQ]gP*EWD`^[mQJO؅R%F3-qBfl_?RQj](|Q)|Kh @ BlX[k(;Oh+=B\4z#!}`W}k9G1Phe^3Fղ7UGԏ ll_ZI$Eܚ,aFlo\;al(ʫlȹ@Yh|/χ1Nb$4]UيH=đMͮ%_nSԷj$Vn>Qgu Ml|SWz/Lz `y麁,H `b[W\nNR~RR'$Mw im+I-ױ`c|B7+#F,ZckA UDfG@qFy/_c6Φ-G'TR6[LBL&AH7WgjCo?iZp$ڦ 7 3W8c~LYwXfQ֖ZHBJjc6Er:ʏzZK,͊z|ěar݆-N]K\SN F|qzϺ͗F_;ڲ6< e{فJf6oJ<!|pn +ScZF -It(H=KvTjsP;\@8Yp V46/ov0af~zNkeaطSAF wcM$duL84K@QmZb؉ yQV·@'eC1;_r)ry8)rgP"k}FЉ}B~G?W=9M0 | Q.Yeb< و>5j!~hq~(KєW/ 9w\ 'pv9$#uV"kI/uKPoz/Os_]o?P{=?{= !_ڷnRK#΃F=2[!{(mK]c!pۙbƒ6a]ivQjn~[AO0H4@[+58"9&U®p2wG=Kf`fyv2#eԫf~azDD"GLHGD뺼hQwԓCٱhL_(nw4-tդt`ohzy)gDd91ʁo΁頟ŕx(dqy4&~Eந[6y{ 6d2> p*:Sb̑C,IIPoُxO}@L k4HXzN9$C,XũV#DGKf"c zYvsOF8yf>Jc͌ ȼ Gp⽷>9nGO#RR0e/!=|H:H(b"KMeД;i"M-߶'!A io < Lf9SLJ8w5#O~.a< T{*},rƠe4cIQ0 .5RQr+K)|ъ7Qq_W$۱ļ&X)wҸ{Vc^]oQU{ 5wW#RCE1q<5WG 0` m8-ZjSW(tegvoW4fDC?!Mx yzh3)!阞j5+ .(p"ş{(w1:{rHBq:+OpD%kw!(v%MJ1-G;cg8YVLaFVpZ2t }P0wɜL*M{A5Q;#iZɧAE0ED5pk|ZZaΞ g71?'-j|%ꍽ!Jvg GV֋=_fzJWRB 6-~5yOM%TEK0UXR9җ[ rex9@2ϟ6xD_`txL\ 8 y2ۼ$\.BH*uF#U[** G* Ȃ Gv f"ՄG!2}=I,$Y[:[#b2;AQJ<ӣ`ɠ&OHmBhBژ6;UWh 8FǏVe52XuŹ_k L{+Y5 $|M"tb[; ϽG^4BOs{Ks _ M.iDluĩ&&";﷉s 2T=c5GR߅dM&i_͂r";NPL:Cf.if+tgV^7nڝj1 8p|˻l1z\Gj3 YJLyɸ Oy+ =-dHLMs$WFWJDzhE}$K^_QkH=o|[wM^f#Uvt?m?Օ9TNiq[-e$P;r-O$~ՕDÍ]&  B$ ʿD`?|6iSL~c>uU19w&Eȣ(zlLEZ0f[<pNxY3lY$}*ri- Ϝݳ>?μ^&TL5mkQ+!}e:1a)9F?v(ID)ЃR8=沤^CMgGb1jy n0x3v.)4$wl:} .jG ~7Uubu4ObdP1*_j oJ=2Kz%] z3pKdp0 rH;Zϭzڕ=YwTpvnl" }/+ͿՕ܊Å+ r\3Sƛ[#D%"83Xhĵ-[ H*%i JePzU..nj uiWk7xtWr86:%t qCu*t ,( e-,ʳ'}jyN}cԀ1!S/4(ɈS1P}8n5HM PD믧gNZbEl&ɬ7!]h:aj5˨.eEΎ֯ "Q?.0n,(=99ؖ`q&mJ㬞.X0MRQvVsUNhQПrSa7A7׌#Qe{ Op do}b>~n4hWm$!k륗CqnE{>a|8.-$C0Vlm7Rg$3ޕw/]YI+ކ 1_fV54TOF8Xr8~}o[gXJQ;xdռQ) =u pa`zQ%Ϧ ZL{BT8?r9 Jը? )LЁxP/S^.TSlpxUL6:u#Bgs +vlH/.( gl)CϮVmյ{I>t=z(O4kׂJ+{Oj5N pIFg?|H)G%hqx*zpt]AC^6-(b_bX hF}`.A"j91)i&x5 N%Q@vxѵ,(0}Bo Yz^ yf\ pZ~49ʋ%.8\UT!5Hi0DWw@y&SePC-}3,["S<V8E$EfX;GBva,_OD)>i$sxBwȦ )-#~0k{@#o[w<a#|dCb%:kgEZ.>TArO@ou"z]N>RP?n ܢ]t;4 [.E~1=S|2L hZ(Q^tmf4D0&rʖT9?jۼ$ꁮSh"ܬi=i) rg 9>Eeu*[D}C:`OEksrhGѠ}˜y Hdz݈ubVq<]ޣ`h|wWeB]d L ADlZ0`]h+vx]|z4_sclm[{T5@zL'y/^k(N yNJ'.nBآ / ݲKA<}4NԻsBiJj[j~)! "m&AI `AAw[Atڶ1mtplI.No.g oRDdWM FA_b|BjDE|}\sO?&x7ڇ)A05KnIOpnB]^zHK?AHQӡ$7G(|?7Nl_ ٷқf`b$#=UuoN)F m :y4Mp)ATf:T+SnlḳR T|~utbpII;J >Zh<}0XB [`<6Y@eeg/8S9EkTifVާ6bґ\|82ϛ:!%[qN`?osÖRL3 "3B+>bw-O}?O挙NnŔvG507Xנ%GUTTXaFt;pPjozTk1ȩ eSr*uiI=AMUn?ZY7X&9qp{TBU0Njh!$ݶ ~7'r;^m aqnVACWz<֪kIkiY 23 &7$>,!|5^C bI]5_vA•Iɔ릢x91( gW*/8s^NAQq7f^}h@ =*.򴼂wr ?vo2t?p[ _siιMGX_);j J-AJDVqMLLBNŸ?Ǎ_[4SOh²hCI!!7kokYs]U 8Wp Icj^,gy[{>Sy4z ^oxiIVfyX`G[D˜B9N&|x}ƒXCU l9Of-ATKG{BpGBg۔G~95(_VUplЕBPV/q2YU!{$L5"H\kiW 5z}bjIm߽k!, "Z(ʶ/ߟI6#Jc ƱPEh aG8 `CcZU?z0 !:gk\$2#q98my&k7{ah=ZXt!}>WTr.O78T%qtбz/bOhpiO ` -Jj 4o0CRgt8<ɟZZձ(YcPMAiVajdޤN9ܢ,}ڔXdH&5$ӫV& @"^o]15'|u’JKr/qܫ &[qꥹ9'} 6xl|/ZI\JQ飞(ȼ_ m“x<(4Bvڑ'ļ"iT+DB*M@@rjtڅ-QbBZN5z:Kqd2s,aT?njyxa2xaF<YPGa[3K!U-^mt|,(R7Y SrėgҊ5?FQ=q@Ұ]†|8$2Zk\CAwNږ5Ϳ94['b &qʙU @JCe`5CSh!m%SE{:e ( =]Z,qRS,}A_,W@8FIE:5D%_ϰ=t?аZZ\s#uRKVf~feAg jtL>OѧNre+~p)&'ppqcD+a%*X?]\+~_#5pʼxWsPfȠGSB߇ȯѵvi /8E@XǾEepe7ok(tڈiluk|CF~Yd WtU7o}$Blg%x>n*F l6 X}J)SZ߈j &K-4o/n~z+UCK;~)sAVB!#$WpŘZ҄q۳/";ٳy gRTPw]Q{[|5lAò Gf̂H_bH&qv%ja ]]),| k:ݍڂNw vIBUd;*^~K~ : k-RQ2+w3u|tF=>(,EM>$~ܙesډǡ㛆"j-AoZxSOoQ*HY~.0k:}{Ъs&ta^9>Y5IΊZA#YQDhRv 2a7jʩ_h#Y C^ " 4#` ^)ǝ\6U:% Rޚ'~7SVΊЛ54MSLTrGW):&GDRc93EEίeVlXHy/u[8BjMמvA8:M؀@|ٙMU-NU34&Oa9ʲ}&}hho6e6FP̂f昃w+OgS9(2^NvIb&_ձIsL,'$()soF:Ѥ.HRºa2z'0AXb?LBpI$v0glFKԒ΢.51n SZ}SfhNG к0ڶqcou׫zuNݬ+T qu'2BbpTzKEEȩ}vZ-*D冁N9O~}"v9<^@c7Fs:XЦ *=j-l}tĺ8ErD B7=DX=:Uh_𷨬/ݪ(fbȃjL^i҆/c%6!˱o*di#K< bTC0(]pHg0|i4pPq_jڐ/p\+hY?@,|-IRស^W\D}'Oͬ=Ɇ@S2-Lf꜅}VZ0~nިwFdQ!  0EBV#G@>>Ϳ,2Kfʷwy)T_<*V?=#zXC5L%v@# ́vP6<m) UZT.ڤd+?{)5'Lߦn5ZC4)g aMU Ig+i9Vy$q 0Tc V XspتQǴ2IN_Vb9FU*ۨ 8RhaeI+t 1#:0n،>KJ. y%4e !}c2ؠ&^ jpaQSZqO} `x.;  E &1V K#q6COml0jub4CtSE. RH~ |7v׈i았/\1$IW>?a` w'^&Njȣ*&gM"4hϲS`PBo]W @]{2qagquǃjk|Sˬt-kXA}F85+TQ@ Nځ'𠹘ow+MО-^Ip?bXh^YG)Fly'F~ݭMQKLTN&e:VR60V$$V: W'?Gۿmp;LAȘdm|(COᚼ 9!+хl%ɉ /KF㇜vҠsGD9&r}Zf_VZoV]:s+5Y㡦rO'9a\P%,Ra٘v\ }fWw.2׷a.n)!J:ffJ@g)uîz=,ө%h2OlmZno%M[‰`;r[S m:8$K?QB.í6ѲuP@0͆\O&,,R "HSeU*䒅hlS;h h=0׆ozs:Ӥ] ` eٵ']!q+K$R. 9$JMW%}XNՈc?`_ޯApwozeޅDrAr}ԏt[n5n _f~{qĴdH1P,>K%^]%cUnRC |I;/R c)Le:F#`:,([S9#*zL/d$rxCnp0F3à{# ?"P2t;8.jB%'=) !:#\1t g,GUIHŢbRpZ\Or.x5T #';=' 7ـS.% ~i@YI +c[dW<GMvthuN>$݃ R $eP9P(P HcgJ A Z) mvu@(teGwVIf*ѫv{ B^McEA3zkBasAS`,4bAM4δВ{Rn7?.B?1vJ_CzQnM\ۑcfWH(%v\h@0'Iz R{P>{11qq8 _.?ωjV=\K R5}ze'gR=zC.oPPwgei -~<*:Ȭj)Cx-/uJW-\tj$O=% ׻lNAla{`wli Tn/7L>CASgߧ.+XTdqfں+7rPe0FBsP}٢vjY=W‚Ji0̼ v&f\lӄh``O+?7KԸkztG͏t:Vp*؎7 ig~(nK*_F0To#a5`f~Ym%ڿc l9C8c:3x%Tf{>UcB dpv8F^\Wra|ho2#w)\g1j ԖtS| FfU!"LJhTqXXGXM5ܟ6 M24'E!pɖB1<j/62Mx?c T/HöUhE{i 8ĈěV y4?#[t"aF e(%bܽ > !7ƂP1k2W 84JC]5X+^UWUr\ԽbY/ bսk"Z5q Sx5F8l}ɋQB`ӺW_1V<ȫʂv_ ѿ4+2V7ڥrjX>;hJ#T[B,Lkn7%plGGCe|\R oJ~fΩtl9/o*ԫsk蜅qݬ-r,*uMb;nsB^6 n[MUF{BҮJd*i( MK'UpU"[u-XN}ʴT4'ӨDwe|OP9ՋæFa"k;?ͻνjxDz?R鰦JN L5$gR^a1貔N_B'$ms/ (`Fqk0"̖6q 4"8eC'?hyuj)F!y 5!K:9`8SRQl;^~Ok`EEHZ0D:y;!T&h(_'~}!#Ǫ *"+KGؖ,nd>g)Mr'+LH{D(D[@qpPH{r*i*(*Yr/E%/b*/g}`iNFذ >֐v%T / +.~%"p'ǜaJZO57N&dcdjϨJX5*fQV7UT;¸2ղ`!C OR0}B CI}N0`%$ol$ zz6%_F#l䲑aptmXBZZ"p7UX4u`pӡiJo1'yc E_It&KSM$nGa{ m ȉ52ۆe0wd$°cz_kbBm@[  "BBDΑ ra>@ ZGlOǃDҽz  rj|fDG浮::?3TSfp43Ý/L# X-EVc!.m9j%t!P_-ؿ@xjZIS@7fI,̢ SA21zj& _tҜ&$f=,SVrz;>Z3uf`ZǮV?8sdfn#Õ(PH|05y~cE ^چh.(hR`Y4:?PC=J2_+ƣol`ItHN!/Qs]1Β`d3:]~!iRf?޲y|P;6֘7ܨ.^Dj)@m-Zf| 3GE%imZ[mE){m ?:=K%_OfɚvEXk4|fHag8 ܊v'qopV .9X3&5:!(szw80V˪uÿN "Ma1.qɋNPP}KiucB03MY%H@Lv=Y9StGk8"}T]LG%=_!a0FWxؓmy>2@0 S[=W 95Rd,j=S lWޟ)/'H=ͪ2 iFB "!=( aйۺלO셂%+}(TlnOBFJNsn _Cp,Qn[ g oc$z1 @3u[ dx [H!1z$vPŨ72#0r魓+"eR`zg}އM9Wsʴaj}0#v^y\+0t\ ]ǜl9|E #;6k{l c'Mu#h&jDHhdǡdC1hMGs?E]l/PrcɢCN_3U&az+AR]ۉwVki@mJky A~:2N}Ws%BiYAH}7MdָӒ6)jȲڒDo(2U tRnh,ODZDwS+*MJg,:"NZ@-oŸ9c|&mʐΣp#b-F! N[7<3ItL q?v,ԇ&lkmL/zUϼhHQ^$^=$/Ƽ&V>isœJ&F2Uu;"D {:~V2T$(#́';ց \(]vP\֣DJUfM!"et'ς74v0o4 tFDIOJPexx% l~ 'd*k7t1FC1ǫmۀ ʲZ«8Xm!m6B"L>Oy΢JŪ~ğ^sT sܛ]I|C@Ѡ VK yH4{!, 44T{j_nQ,rx ϞDHu-frHkS*b`\"jjjRM-qK;w(uiäy+~2YٶJI}'nmq51a)`BWb=uSY!-5RY|*638.*aҙt2yZ Nީ\':YRwhݼ=%绅.R⌳!8AOXt^\khG2BALp*:eL \Kߠŝ*8$ [ ;r-=t<$Tբ_U*ɧ :)4"'PicvnG+uκS*Q/(rk~[%LFP2Y)q&c MD/'ߌ)v}Ņa yNOa^P(-N{ŰJR]zy9\"$!ǁ-Q+.b1esܰ8uVľwDPGpi1]qhxQ9mv m^3H}?R_uJ11F~(4 b\ 2k iu{:8XTcVGB',8ijy)nkvR|ڜP腲GҔ1MGq]f尽.Hk%n~w|)\fOoOh01 7AʜF}+iPY>h |uoo\>]3V|JXLO[G E"$Fc.ݐ4LN.N&[(|Lfh*xM)TIi~CSbsY,jWij)}eY3yC{s i1D2}OMkؠ(< χ8ų ݾ>TH ?ŝ]HѰU|bѸJlh+tF92ˉS4]Ý+Ԥ p&:oS;e5n|$YXgK[D.*RH [QU(Qh[jRꗔ[!>uJ-ߜKҋԓ q:;Aհ{X,Fg#2}KW ԞeWu&b%~{;m෕$X+֡@^ 6 A!_FG(. kj8J &ت3"m?a3봁hD j5> .41_gSgI D5B?aԆҁS{ew~֞;j&B?hF+xycZ6<^aΐ0xtwςp_!FkUӌkK (luHE)P9a |,j&2|ᶝdv9Vke洛^kB9❜,b^:yB|Ҿ[>ITòDtp(λ QbKiTp~oz^&GO[E%[RH-W,0o㒷|7͒s;mI*7_G0E7xL6P|- n_"A2&!w沓{#V@F<Z#s!J1oYwpitɇػ_[vti/2$0 y:dI0YG"FdfڕAHO|~ Z<'}`n֗$v^M2 &R/:V`z#Ufl7WqQnc?4KEVމ_fsbZp&BN-ܷ< u&85~kVI(4~D"܁N8M~ <`+EEG!҈F@"Y64?htfդLV}$Шx-)IJU'M~T2;:CHՠc}7`J Ac:N<|; R)`P6}z40J7#Y .|bY.dE;A;*~?h$kN=8LMO0qq{:$mm f|IJ*?GT˥Ͳh`I VM#T ` zmc˰ۤ I[WDH!mZ; x:1!?X֣U^`#΀-Vr@io!L6IES_Ğ5"BL xZ7 s/ +G?&, ) aZn\_[皔 WҮHV:+JCR֟HVYf& v`}l; a/D:g¬7/GeKğ,iك"30eB+[u4`*E];sF%{x2cOlu%[R@kU!UƾX7l<,\8,:H(HZtkEYB  ]m1Р|mb]9^d2iTLhIx?۴1$r]DN,Ѝ{MzY~l. 崵c\ 3*T9{)$߬^nϋv;0/Q\+f Y(#R1$Gl~m ai es`oU:9sDKB.w:-mB,qO]F8#䢦~7b9wl3CF1*a+"$q>,i~4nIxZ^ IG>}JJHha ʹH?>X, e@XȐ%y7\#͞^{NƼH_(q_E댝_lxV(פfa2{cZ+6#!I S.+~b#nM\{Q 1bJ?;IyW6Xޙ^$OЎ`)(}y![_;4T(IRYK\: g?O%Xm2ej߸$Ǟ୯IXB{'B(@{Cg+YHEL/'Ǽ|I$c3ZMK/lZcW$|ޝ1HDںvnO4`!8KSiz?o.(f3þf5Jʀ`3 d_ȚP 6hVZR6ZmVصJp1Y%8y</4ghM^@kW,ݾN[HE?]y)TѯP7ZNyLKRE Q{ڂ:{zĄVz.BK$uPr1Q}OFs=g5ۮDp;r˸x cѴ{ګGLzSG-FC-܄ң t?8ڹ>`cksʔssC%Gy 7]ӼVf#i}9cUmՔ}QevBL(4,qT4 UGe@%uDlta_tKv A9Y%JMD٫W71m+ff"p\}VۂkmZl͜^l`2⿟S:M0uC7dʈmQUٙ|O#@)^VƳG1nglꏫ9f2MWMUqC:OFTJ2оgs}SM^&#;\/攗^mJXg'*MOC]l .q.l@MOL/PYm^ ݶi'稉+7AǓg[ti܃ܻ*G{Hf\%)9CG,@-z, MV |=ѩ%%yq2L)7%)cT!O|gS 1v my(eB`*V9?d+2ǬK²:tm X.@l"*Lj۩jh`_Ec$uM@τKD)6 gH<~(ٍR)'T?px@{ছ6XeSdMMҏ\f7Jf=xH㌎й' i)XRMR#`!!&.v -v=w&7vvh"R!Z6nKeyUWdNN7]@+ gv3 z>Ĕ\hJ G3H9! Oz4hY -?HxPt Gpm?%AMhjB(K6W,,aKk,`߶8H`TFoQд to{GHax22jFu_w<Ӯz0{1)ekShGeAB~L%RRn2܇T]p&⁒n(sq[x 8SN6Ի1'Î*9rBe"phRȵ\8@OFHwQ9hIP2 mt O~TPW^1E%>c5Wɨ4d`oY43.Ɔ WfGѪ5OS$qԋ}F̧6J%_fJwԝ#-qG?u;vm?562ZF$4(TՇvM.Vi_QHiײ2$4IXQQl*iMWC[R?l&L3_b"l˲r Ox|r=eRDXLDá]DV$ΘP|W8 hZ$RD@+pyo4D2t}K+DaI.lɪ͠㡇/:E@}wT$R/ O][9R@nKTja0CJ q64{ȱ6`1dHSC^V! *IHeWc[j߼ͩ7U|g@\[V$kMu/xH̳CH z\#zbSZJev>zR)W"in^ёIcJeu#~, %HTn6KQBOV5P50֮Xz/ c^,o qCFVbYz5m"_>:MOT8~Zjc&O~I?L9Oڝh"hTss*!Q[ Uf7ytyb+Bp0ӫ1"Aؘϗ*1'/ݸJ{KeB8V h%ZQxsB$‰7 :$;ba1.eC(xagrj]& ODؔKw:5Ho K0'i?ږLU ע ίc1t'LyMp@p LLgͮgVBrLG6V.q(6Q6KX 4qÕprFMhφ>VyF3 V:L8oMQѶH,4=Yo/!t} ݰJW J27I^SH[6ף:- LoE"B(¢ls9cnRpU?[(VbW"pW87U3 mA|MGJokil0ghLWw! s=)Ag*xɕmA~וP'](+5WW!6*-&dr`NJwTsh֩T8l>/TP2 ,TW⾴-m`='/ 1 N\:1\R"Źb_)ݻ^g`+AX5Դ7/VC`8B.I_Tj J(O" qZ@Dې舸4Lw ײMݡFe64ՕR-euHJ첽xz'!ߗYQ`Ȓ6+Rmݴr 6%nH9s8c\.o HJ;ZPչMd_(MW)rn85+YM3cY";kvЛn-]^#Hjr>ȜI2;Ek$.Cl\=ERagڲvGqSn :~Iɠme5GbrT?W*zC 9Ah_˷oP7{*@jdj}~G`~4CL+.yFwf7.DHNǠhϽ $%^8xq>b`VZN翖v\% Ft+X㼗%ġjNMZCB.+`ܢhc{͟+Pe}i~C5`d}uc_|ك pbcO^-N̤5wPI ; x)mR;F+;S#n1dڣ[l :sIF;5! R%dt+Y]:F ףx{&]%?vgp8oRap5 hT;VZ /j t*@k8%={b|5<5Uc4 ((7Ӧ0,E=!{SK2ob(ɂۗu)GҠc$J56:lI ro=ػaQFIm9=UhTLreء~\όI"mY_Ī%;}(c_ܶ.tHB7ƴ ɛ؃L|>KM'ۃ*oMZTȣ#ї|VRڐ.B6^?V!޺<&Z'VPju5~܀g.DcMe:̊ٹ-8ܳnĖ=3VI$GAg/7^q$Ą׈f"y աGi7Ŭ 'y-?{#34 ֪aK{I H}ZLQa?DfsJ28;GV|~جZ6|B6mۅhw4Lx*#zY؇P@ &pd3-, ju5Q݊ɁEtka$ ĶlBHyfd;=T-uY0Z5{ FiV|\hvc, {jwzAƴES };fNUEI9oGK %j]^׈7C@xd6|,=k.n6A~ e=/c4^h̼A.EߔVJq. GO4hT‰di/X-IXϣ `IDIm@Sr!uzJnݕY V𑳥(['_\;Vad|7 [}q لBßf+*s5 DE_ ˜@Z RCdCX:9]J<6jN~d~MCȒM=va)FߗImܭ(vY1So2sT#EކC nsY9Or>Fx46Α- LsX?}o/Qb( ?jc`lj_saL7\F}Gd|pVО1Vq񉽣z!/Fj9h8rvgS,&~hڂg.hiIl2Kí/c'($9%pzQbSe#g6qvLR/C74Tw P$NWu2vuhȇز@Yn'7!.kKN9a>N)+9g1*pP*o-Un^oތc]N=L TxL:1jيbZv$1f_W/Tky<ra|I~ 87,C&u;|@q 1kx?sҼ-@ 8d$)x\C/ 5ulV z~fp.I2-tQ㽦z{]4%Tk_ 3 z#qurh=:gMhu0@s 6\Q<|ReaB e IL0aRP|yǺ|RB]v{Z4c}j?wpMQJwtp|P7_!XPtR#@,@ކ^Kacs*:Վ,7 cIJlnsLsZt5a$ٖ@_Mmz{3Ui-I,BTh +i82AxVfBx1ɡ-)ZqWK(kz0ST&cGeL{_aGtM٠4򫠧OWGp^ 4(͡aCQUn(Lo1 M-Ahjcz=fTxp,˧) 6ҁEBf똩y$STi턿b8ը=mUޥ%"gŊkk!83-O`앿w.~CRt$M`c;IpTW#$YK/ <GP\g &/vK6QKr3=fNc{mt܇ڤ^,GT_BqmcDM_OC/6gB.};:,G״ oVgů y_bߘ91~5wL(pt@[REͷ/=W;I%J*RZЎD>I_B 'b *N@G紐E8*%VjжǟnjmAaiC Ʊӥ>t(c/kWƗt<eqQp߬۶vAlU;J7?bt,60vVR]YQ2pno}Fa ,Q'eO6t(jqAs@ڬ<Y}Vfs+rVKhFꄧQ׻ /?x)KekbC~Ip -%3Rb+UJUj5g?rkh*~]H,xp ]A6xC"!bYg!{hȠNyFPcD &18|JB).D-Nb']Y=q lZ)it\wp& ȚF d}rz5t5 ,hJWY#Zd) 7SNt"Ii'*c/=ASsvf< ]s论$t./k8>kDmpo$A<\VlPur'e đvЪ1pX-.e2;58+r-:WV$KUMA,7)Q#1[1sb4n*N27A!]rO *IzpPBX3'P96v@| Yu5(hJ|*2ph5WyRP*2r\Dƨ@4>67h| _mPcuH>_) ֊[Cju0d€WP٤^⨪}3Uz(vٞaf Tl}HP>8J==TĎEyBxi֙hmA5MS;QeDGev0\ؠ uz'Jt4W8Ȩb)-~lmRB`Ihv0x0-<ѠƝ*@y`_tLc9"Bc0!3c.D f߅IBcuO0Uns^g V1 >ncy8]al LV]kGofUtt(W1` $!6ȉPJ‹RX9 +}l!(H \`7XB9Pv ۱c' ]|EJ`Isy86a^]&|iR ){?q nwfLhMV5>2y){ڋZ/A4L#\t(X}kXӰs:yL}U.)\ܶ}ؐoōWˋVҷs?\ː{5y=;12Q~\f3OVL~j R36VۆrPO\+VhϚ|FkCk֗tY X5eطlޱc(:Yث@iM,>PK)$Q…A>B"K19Q1r2_&ERI Zۓ?ggUmy#}Lcm.96(6J2·?~3L#?> 4)4Yy T6U Q+LX.@N^G86=qfJ[3ƻ%opP2\ӷٽ+Shxuh-SBvLI&m{Ȱ{3[_ѽҁ2ăp~B5^N߻=..Lx†.D3 ȷ]`-0g Wo¦IcOVvlIOr )_̸|!V-TJOڧ~PW))k t`D`ʺ=loʟjJw;dT$B>;}VJ M9`D9&\CĴw,D A@ ŧE\iOnaSb;KhO6` ns#>IJǀś$Fj8\_gwCj'S[3U8wSʏ-(" !:$Z@e}`ͅ"IG RA yllT%F0ayY.w;h-h&rm:>? ĴLH =i@)eNqkY}KL-He*)mfaop;6Oi1hp^R^\1kH>Eˑ0bxB\ |ńfh̙#OtLobjnDL+-)Q!}_eO,j| 4 (V%4(<A{ ^g ; 20 <kwL]&)(?+=rvPehJ0gD?vƘxj=֚ih#„ƞuF-!q_lsEA͈Q^ +Ьõ†=cf2#-!گ3o3$%@,%wu 뾪tKkw)G ƈ\wYGݯ+;ۺgA'q-N4 N62 0/%`!RoLvI0{?x]Qy:X.S=ntZʫ0AS,+13%u1ݒx̎͊m͹!u BpWX0dӵ ;PJx :õϯV;%qsΧj&lx$ҏփQ|x V9Y4)進v JɅղRbeH UjI~[ :H+r~_+z JlD+u!DenNjO)O>p/hXb0;mkÅqq OPb_o񬮅Wc{{5d~?`b7ա$ Vfq3ޚu4)c:L{NͳҀa\  pR3J0H~l}^::wckvi۸zMlzo!m-^1d@ZA܅\nYY@; b@]1Qbrq Bu_YFⅫR" _]BA~N~Q񝓁?mD`#/ ]fWrn2V 6<5qqsf@k"žx3}_3"cO_?ŕާN'u)!̍ >TܟwZ&1N."þVe >B37%|/L -f$[rF[ŧrEJ#*?Jzث5F~Z8034Rƻ!]?lg<R!o>S1HTyH8U+"DVwV<:8h4,vCx EP,*$ GZbz7ϛj t ]Ϡ%gYyDzvnjoH|P}3vȳ!Sۉ6aP&x8aP@5E,<d||2o_M %ugFWB.u[f8Ce\R; ;wv8Zw"gi.K Me0# v{NN5]!iWŠK4g|4FFVq3 R2uD (M#vZTo'hYfԶ|׶M 5=_٪f}z ϰ@HǯD&oo:Fa:zsSC V nN ,^}ѽl/Sv ')|%6Oq+LjXt =*Kۣ^=!*'< 2,|t&|~=[?^i|KEy5JURXlȵ4eI9BSMG)WeMTbGf e?ZY7f n%/. bJbKlr{DhO_~5DUpY8eY)r;s)V:@ﰘ⦍L^XU1~H˨cC4$t;я0 7F2QxpalѡU -dVu.}`rΖ3:\ɇ+`ltx<y ?mItZh&Rv,s_4QDL=W%dy2 SiIྱVgH' Cvw5'W;N/rRk6~Y̧'O86c҄!ժVҡb09y!Yo ^ '/\JYBWY,?ɫTԗR@^)"Ԥ*‰, ,@XWv9_GE%;0*NuzZ:v g({T*ƅbA)|LVTe54gh:f#1P6`-7e[nj3`{W&?j91dސ%}1A-,GT+RGuJ9|^ГR~%b9|h%"&_K afp%CA (bM.C:7XRKl&"uWQ]?h1+Zq3kp?;!#[U$ɮTet+3bnB '`vΟR[yiġQE0h8`;?T W= ৵/< UO^%Agl\k5*J E軓3"uw'2gpX;r僖9SF-6fh9tqB,ΐ&ɫ_b EX}p*;5eYh,#AS噂B{j7d tB8ô[ebh*.Hd֪aHK+FȇO١b]fײLr5St>>gYxJ6=$I!6? GQ#XZAm B&2$5qG`%X?3{Byn(*e͋FGBni $k 5h3\N:LI`Mln&:)T!T,[Qq 邵1$29ruĝ)h@c q s4,8FP(Tզ6:2Šh#ȿ'i|KVaB΅<5R BbR/0 0Q@@EJߣ7-I_q8Bxp;aح {D6 2Ps ;קRt,!گ9fFxv *Kƫ;ж/dݍ 6vӓS:Ȫ%QV< 7ýuw[Lޙ-&]Y7(NFNE']E d8 y 13{wZ!g"oSL*5a8bel/k2!/B Rg?*U6R'4%tf[t[Ѻ -ͯ,(YF B_iӚBckrX c|6`Ps, \ =tx2 Lf ENvQmAkkH4g?UnҨ _]NCRTrdSLhx5Qڬ猕(,5,vL'Tk0>9lW!W,#{1*Svm 3HF^akYg JU5WxcG}Z֖JѯĘw0PWeģ)\&ϾSD_["ob 0;C6P4u-k'j([0'15 kR$#|۽5ѓAZ6qZQm\Cg"tl(= r2 `aL1RBEZx^{Tkd<8zx5h𦓓^Aqw]H Iȴ\CI $I)y. C>yQ-]=m7^ wg>=Wm۫4[X/f6z'#h|9MxgQ/xRfڔ-D|[iDs[./ /s"%W]E{;RѺ$ð "z .kP[c;f8FO8 F5T}|Vc]Q) Ӓ_!<ť{>rb1N evGM>PuW~J~kǙ@ɕhNuVɸ 62Z`.K}Oe._C(o+J6zaRo|Nɼ,Cy[ {)[E5<!7D9RcD0hCSUsԑݲ[b%$`nUi#=,"԰I2zC.k ' r*^w݀c2ŸB+6=PהF,l9>QGi/WI\לuid$}gwTg3?bJ&VDLWhofkL:rb4>x+G@k-߁޶R'm-e˘rڿ_Xq'S?-aҫ(afPwvsBo0QB~ӚnW391," X`y_ӟ,قOb5n5(IhjqL *_I$3?@ZB`V-==H CǔeVs5ϛubNjKVc{$Mh3Ԧq&#Ĺ'cB hl@b+1$+B/icyΟ&Z8L34z$v0ye7G3:h= ?sPY Q aʧf/%ZOs/Jj‡wI"'$ EH&?5d|nksNd 9xI3n+8DY6MsgDJɖ;\\-6Z`+Ҋ#OYYȜ2j<[/swdӑz>ɭG^E3#;!6^NW奴q^T[;@i.J[%}vG`Flݝ -xK 3_)Wr Qg:}6 ϢNqH5Xk)LDr%-E!fI`JѡJ i!~_5"Gؓa41ڨw~:4L\D:2)] doe 0V҃/cԐT|Dݛ# ͢*3H b{hl⌓H8}S 9yU );i܂မh%9nv hVCRSU\:~X= ()X6 b,:;/s,A;$Rf"{Mvz1Y+i*_nMWB 5Q߉Hcn(v-@@&:܆GfKfӡq9 M/qgՁ!pyZ Ge*G.iQ> zV\tp.E]jË+s`:rLzPP|4ݘk飝$ dCioTF"2w<ۖ}X-AG1cHS+'̖#B,L9R"Es-;ov,Ӏ47hJ UW1Pc|V\3$"Tt,L,Zas&ӂP9/̣lj 8{^ĸ`3i3:9S mn isz|Lh<:bBbw"!=m\h VL`@&<# O=`OHn~U(;obvl3ݞlзA[]9TƓW7gj.kKnh;\2f7PIk57O&K*Wu}(/zihGt[G4J>Cxܱєɟ2 LhPAEUc^њdž+:kpV F'@[Gneˡ{dB, 5lo4d͊YYeMMKC=>h?f!ݟ I9`ϸhVC3J0wk%[%*XΠUU54O 3+"! \1xA,(rNp$:~)FC]MUvK6Kj]ޥׂؼ'BxcvS13߂?Ք 掴m&]ZuJY'!A;]_>0A/m\*LC$r :Yя!l~pRQE8Q \ƲJD<d)s+1_fs yzlsma좶;^EyI5l ranEA<(18q_6% m&\x rcgueщ&CMhgn$% Q [jd/m ./uG?JR{:g=Bꖤ.!t2~;)0>E>@ =нRXsz@id2~Tvá;dSR~O&ͮ0[ ] D:p/3-sE9m^$|A~Rt=-,ks#pqFhςi,0v۲&[#]Qdކ ,Lzw4eV<ԗ :+!tvyPc=$Է]rn践/H:*U2<=(]Y4wWM]`sY&_M u#̢uhB&2<} oQ[`WPi#=.v|لI<Q}[V̅\q0gmUYȫR[L?8#@gn9 ߅L~ @&zۗܓp=)95G:gG*Sw9&s9mu[,ՏJQgK^ NwD}O[8d~_̵sw`&עBH#&Iv+Ds %rUoo>^&mz/XbO /#Ёi˒KZ:kƢ[dzxwA^'pQ s%c/џ.I_ m sE@ Nɮ6YFF1'iDɘLK` {?OHqlbǢ<-^UhfgYo~mw%R0`VʺVfsPRY, t˩or v\(h}ԫW !I'(maYZ+7\Lo9#)eXID4oOfv0bexJL_q.@GiweJuU6|1#Jܚy9{f ,[>Roc 8s!AbZ膠cz89i6NR9tJ~J+%ݸΖ-~ /8Y}~22θiU0>o:o)%!D]GFkͣgWs8.Œ jԘ8$f?įRsw!GЬ"!)F< F韴U3MFhNqdGVğ3ng*kM騬hAlp~HuENED'9" 2ZD#l%IX eɘ]0CudZO-w(Ȭ8֬~ 9R۾~fNWL~)$/*ѐĈ\9N rg87 &w[1PxH\$FwB^JA.9.{!Zg6,Jȍyp{e x;RPzJYZ_2^ _T=:fvoQQ.n܏@6Ra6N{AWvIМk|)9NyY&C -Ŋ.a05)jVW[:s!aUYqۊI22W衞@J[v~Ɂbm7h}omYx ݳXY tEbe+}P06PHH;?juaL|ڳ 5SѺo+mUw0TBL@ubn`>D>/ҚqP˜/O]YkXNfcW$0E} '= 席G*$]Rzvd̅ Gg>vh~-m}b 3_^q'z(€j76EܧjPIMB޾pJIs-j4QW4 *Wh+!ӿo9,a.*WUcmo( +]O1q[9 ~\CU.2H+/H %^/i~P te?[K_qo/X3\X[bf؋:Hgvgu̞a[h!|Eu*ꉭJpŗMU֢exe-7FC@ТwlD[g5.U ua@h:IO&":fX, Ftnid!c_a] Wprej®i#I8w*RY,siloO\0ɽ(FUCZm1Cv\2٧yj$>#̟T['%bs6Uޓ:ӬwO0KsVӰgM'6ZSq~~]1v~a\e8v{YCI)2/_ZxYQvfuptʞ\j >oZO ~|m66-mio,fi#\Ll$Gc׽ñTڴ9[Bf,EHEYZ|1T0x0 N(OvߙOYikMѵ!ɾ > v8⁊"$3ej Z|]*z }HyKpMNa-i{<"l&dT!)UuR>ݫvf8MS["W|^U?!+ :>\ u':N:,TڏR_@Tn [9: \P30+:གI S% ?%ƍ (8^o:ޓ+$[B>~}%̉=D7 }1~(DsfF+a|0UmJMBW_eoڣ[?RwtR;HӧsAm6{5GqяZ tjOY%93j'$>g3{l l*.*z.  |!DЗXbU/(ݜdm c&s zfA"w&4V?m`ۨ&a^jK"T&wĞ5Y GmOk # \;am䓀'sBue>@~VZygtKW'8vvZ/{zCaV/վx6̟ S٤WJQL;ƉVd@c[t$9.&pUyGb:u5ʤ{Q>64QR?+{c,<޲axpOo9 n('R#Z8+2Vw J4|RU?J;G "&ƛՍQ3|W~NA/ Vܷ,~4 ͫ-RS*3tI1rRtn/a1;g 98`[ш%ۆgF M-$P)h6!W^?ras$~I6=CnkXI6Bƀ6-N^NfȎfm22ԟ@a$`ҝܕNu!o!@sC`hXcH̃y$uf㲺IM+|*-џ NAK7xٟ~c4)?،%64Ҵ33\WjԐW` $MbE Dۇ<Ѻpd;h<+y9 ^ש=%jBT#A憰oIP7M\|28X$bX9sc.N:O:=Y\zNb=}B#`/z:K.U#!3 Lm7V`n7Ǭp3 uz2`SgBzY5i+eQ~/A =/?B?>wK" ;x5]Cm(OKvIO,OI+Ul(f'FV <ؙ Oe2 a@zp!ǩmlΈo{лVVgtذEZys-xbe^F Ѷ\䃪Om;5]!9)d,Vhr?<.WV_u\Ov d$MYʅ>|EO k2F܀gJ.*22(rxz>4. o3>HIҋ= =;!ȊQSWh9#eiFRw+c˿hM[YI AXmXChj\w⢥fJ<pZhjh䂙ǫpƽM^t!R>,{Z} Yg'f9tծW5ăG)a'xt&9Y񜭁x|b4z]SC=9F1ϹD^.)>@J=zzxg4 QdH FkDWr-w⚫S56iXQǏɟ[K43qKypE&1p+tqX^a@H-{pKjoU BEgC e>&eQӐSԷaL{}OoH ̱Cowk$\/ug7ַ5Nj=xG[aGYZcvTƅVdx2dю/ (&> $"=qC \@= b#vyd\]Ǐ6#-1$ellUh?Ke5T(Ib„\ߎԷYlsSU^6}… Oy/?2JV5%6*i GC^*uQ /? `x$3pQ9yF0=E-GN݀A.(R-nQ5,<5Иy<{5 ;2\3ȸ#r]?\0#Ñ2nÜRؕ 4`ā H.xRV0-u!&S%hY: 1cau7Ⰶ'+U H0%uՙ3~X(ym SЃ+t+2k֮^n\@$NTI+I3QH:%W+UlS&+zn _}wl1OEΜ44[=z2 eM>LND N[s"7HFw!1ͤM1:;dE7B[NpIj&f0n(#NC:p\J vsziV.{-b+@`MemޒN9yf9w9t&kw t?7\\9iSHJf<yFu\MS< n b8U ~s'-U-i՝j*K[HקcAs(T$oSe7^J|wo#0Wz6ϼ24gex_'W9q.TMt䌑/$ wrj/?Fq?^A qX=h~ GqC_@r5P+=5.EaSx~K@rL2=y*2(uRE6 ٣1:$li9l(6-!Eqڛ.H{lbtDhmM4J'&?uIXoMu)COSwZzʵ '=12IB`7eQ,?h%xIǘ+`/+&5oso&qc3qu(h_F~? Nt@D 'fKF{5KvÅ?} r?n%1tqK&''ʥ%b|Lɜ&`*edvq)"$Fe=̿f)BV:\&SG(\ Y]z*!KY>Gpuu$e\i7a"0z|gM ng`%Š0?ݚ}&Bu!Ht{_bH \G~ H7_m E^sAKJF౯ȘMκ{@dԭNwMȞY_JED)'KxR?R r#GM9 A"`}ŽBD_XD΁Qˋ:p(K|.LR˩l(uAȥ@/t*G)bMd-h5.lTjXCV xB<."UlAD+̌xwl1^0,B@0. !bD-Mbr?2874D`Mh 8eŰܔc @#s6nJbnE<,4v0fNqX*$yrnPu@cxt ϊS(2Dxa3#.M!Xi {>Z,mZ̤aF݃Av^gw^u܈pnJ/DWNpok:LtQ mg~ucy%A- l &zyb\83+n_f6VCz8#Jnv^E}ѳowMi\.uQ 8lb L@T%^KFkʊ^i, J7&zg[fif'Cq82 /Fqo j^d)Zav;;cܗQ/aX&P&A 2?XIiH_9<2*:Mv#ypҏU-MlD<-vIIJ;.P@Rخ4_1 /UZM]r>l*IddCUCϽx-`Z[l#84Dj"Sګ|AU([*bXm~0PQq|S5'ŬvnՁDxF|ь=6 Yt<-<.GuQ"t|Rx(M S)NC>>Y*|QL菠#r(!8,u=U\e J .~5~uur!=%grG]hK faMjkKzѮTס%3meR&xjl ,TKE Ӏ'}i9L,<U3APy aCv׮n $~!|\VZBCϊ8eM}'s``ƹi7@f}+M[c~dX?R,g|b:*[rS>^~D .VqUG%&,3|mB$Q<>M%!79QTn(QzW@+n<72C艝ZlC@=T-{J҃TgLwQu79-+@97Q(cᨕ- ?/R@ 02L `H큲C!r6qz@P0E2P13|]iSxin1o!rM0 7BBM&z#U(۽BBֻ-JlJgHW4 P,g\)JXOn5MXG(]z>ý(0\&h Y7H,6x ֮/zpmf+m`E˧en ϢM_}+w7vK8ʿkxɘ0S,+QaCB..^E1Le^yhXƏg]MgUCi[E7^Yo#5bR &ά`qcE= DhPM꧌٘ԅeR4Ot Md@n!gQ- Q?eC6= Gx4H||彚F``:2S:ھ :11(6NC]+7 W pm`1meZ$K w+ȉ7(AUmyO oL*`{y̬8P,L7"CO-Lo8m+[x|[G3s}U_{i>0#B3f Ҙf7#|˛!푌k~E. 3JITܢFT}cxRL.H%Ơ+숅r ھ_/0`i/|Sxmt:M4T&] hS>nG!&^[mb/zg{1cGITV gd1cL{G=TS+#2kk5m~<+TӤftqD 1Vw^(`~TS^f{ _7/+:wJ t$y!踻: p-LSݟ\!Bm-5B$ck`r W hh:(D>? LX~ ! ps%&ccsSբ5vA.0ܤLYo* mEuJkƛ7̸BF:xsԣgeS8PJrp+Ca!0 #D7IEwLJӟcH+=53(Ϩ /d Ӂ ~<|6E[-P*/NLk0D!| \e3B9q^}[ka2$V$sX#ʸA55yV}e1%R1gU!Y~#Z ^,)YA9?LzYE_O[.CZc8$&y+tG( L,Kv}^q`^ByFOSPqFY[%G۫蘈N,nX*C;^\x$K9BRH=>?њJo]6@cH!yґTElvXMZ%Y6JPrvVgxᘢ=w܀2D_ NɔXmIfrP/j,m7XEk;zBwY;2ն lGE[QmgN+rBiz7ٛsOTW$c>;:YR"/b~r~vC|}dyJ P E%yeJbO٣]luVUR=I8*Zs/9 oN MB^^X,S`!(8gb<GFB*4 22LzL2Y0L_,Ir*fVvu7c~^$]cfQů(y (Lu8;2Nk MNyhFNMnck=hJ5*l. a1eۄ>c2=Zh-&M$5s ]ԞF . ^Ι%*Z`(8@^5F_K1@Hj=PSx/62H'ÝCkf?}1 d(FCBAbfu+'~@pj#ғ .䇣;@Yn!{(ūZҾ4`$8ƪ6WC(|M |QU9ɱ񞬉,n7 !zJ*9oa#k[p f.}>8]$f)r.ɩ% (jDOvsyI撂8eEVì3w5I1x`x ie:G "qklz1r'gϩ=3Z)a GD AF߾dcY>gob'cjBuuZ1bfrհGd:0yޕ=@W$) @iqPw^_9xs%F'.H"梉}9[L-DH̚řwP MFVeVo.c"\Ge7C|5趾 kCм'L(UkGg x6}TyĞwSu*hY@]lߑŴRbw'Te Iƪ r>9&h)j#~=&a/@#s8vɰ3j}DTG7H]1uX` ڷ4y5߈Geٜ/px^sDۨ ]6G!1ҎOZz:7cۦ*xȟ(mƦ"zz7t`aRf[[IHjT5똅"Uw~>\S*^̲'m_q@=I ukf67'e{Ucq@s32JwMf_rt7T' f?ʽ`iu}j7`S"%¹`J W$&B⢃ؘ_\g;TĚ)]bs]k#wEp>ֻ_v56o[^N-[;d{``~DFeiB_Rg|IYWk%Rdb=ٞ*M[ĿCMۣ{ck~%*K·[ | IMcŅS Kk$#K]3fS`*pՇ@ƲAbNu/$$,fd*aٴw`RdP ^ 6OD'\X! @U2|8GQq9붮tUA\)Y6ura E[[l%Out*;ƺD} {#mt>$8cl]jIbi3EhZE6FɋF3I)E i9K`qO U`/OyLGcwuo!Ԣ|;\Y&ic[4*cgFIpDӍdN)-g_caKȚ"[-$gk!^iK@7w&'uގ*@0J"PpB&CZH5@޹) 2x@ 0O+'Q(k!n(qJh<=94S(W_wڔ:? h2RՃX=8!KPZ@e[VJ Kz@~ rQ"u=imJ; )`|9|oQ+:j{5 TaypЏ?sI;7ks!׷ʒM_2r{֊;Ds Y5Ld΅Uγ=YLcçgZh$XGdղze =69 E#"1A\tLAqA}f`HX_9grͭm02X Y(ҴEKvqK癆4 v⻃!ePx1gy(c RsTؔ?ſ^ UAۯPF-_ڪ{As4u O-+Ѕ (C+<%aߛtct.. W 8a]t6l 3oG~e5 l/7;dτ3n}~z~Aco=pLS-uJ6+r>S >S5Au]A  %/06A_c:%E`y[2{oIDNg+  O K^ TuCy9SډaZ7HEH D 2ZLrHdE eSP>V/ p:+g3ߟ1 ob)$JIP&m)z[bH/ɢ";M_uWeUgRL8D hWy 7д3v+9i;jxB)s&NrLsfY=Χ=䓁~&Oe6nGX\jOgZ9>OZ]d_˥P泉G(2w vMɁ@!h2#k1%y獌y>fӧp %Xux{jP!QϷbZr.HF`d"%1@^㮹NN9bu)ݑh;1 `"qO ul"F'ZzR+qclM1cl}R4 zA]H%oO1)*jz2MU(Y\ҳ eSZid[~4+AJE9_h"8`êIn*ecG o ޠwEQJo<*MPSR#7;_[!\zJ`))Ma۷SsFZ H9gv5|{?nI3=.X&~ ^Ndzh/ºe9vú>e^[R!Mm gs_-?Q-fg?YχHJ,CܐTbQ׿LG{]mr&փa+gωWwJ3(8!{"O4WP= ?Mݸ"=>#5@*so"lw27ͷFBKU2ap_tٶ?3ܟ-KT&(^>*o MB#,7glE'yDsւZwCނLA:lwɭ\ _^kȄ90pg [dVhJ3Q>Q1hd!*OښZ|HWд*Nz+85 Jt)LB}|>L} MZ2l緛,cp3x.|M}htX|\4cP.b*.w77=SK1*WoZ!ovv)֓?h6.Ռy@1ΠhM5EIYD6Ɉj u0="}*s8LffK1ڊRgcNf^4w!(g:`N8bx۹ݖ=inR|J2XWQ*Z /^F ^kyP<` AQs Sh.EwcBDFNo~Z#ٰeFHfNO[sUPuMeI/Njnԉ}0}=YfAyƉ"~nP5وW:ѭublXZ !+گ=eĊ c3q%nx$\͞Vs w;b˨B!㔺} 5X]9%! iZ@O]XQTs}' Zb?,%I5bv" O̩ԊFGD~jbhT[ K$ӱI[9Pc=w"&vw+f|KIqUl RͤZSӑxi{pfrjM°)i֧|cO4,"/UE4ͺL,ǗymǍfashd:&; gVbkXNA ܴǃe&Dy&FRD CmC>*0SRn{= Nf ό0@Bp7pI:JLJToIH^h}:wg`'Dv%*Zu9 1fz/6J^~fT1C閧;;du}qJ`p+9pޡ'a_uRl29 pBAH'3Yq"Y7+7C1J[s}/֒Go C~]Oyg:2I} 6p/tM`gw$ x++/NA5/jJ%ch}PFR'\ BP XUP̽Ny)2UY3*6+@JѾY%ߡhƯ@L#Jl`}d5r_F# mmP.)wm"'i3n;(Y #K=W4,xѪE ;,ZrE;ٔC0n7J=e$q\“j k SpIg"iWe@2Pi X+j-e|:s難[yMcZ :&.:x73|OKm:&9D5$gp+lWL=¤h9QG~Zeo}KOݽ29n#)pOCrx՜l հgGv1D} HG,p jYE6FWJN\]0ު1Ұ95*fI0IhljS _ ^*e~_X cU|/x/vzȱGbvMJĜ,ٸ/  8wUn,+"cuMmiihoFb]*_]^ +L]1JRuz}؊[XHBsi,"?d90IaYt%q嫞"U&7C+OUܾNL6s+KZa%){HԗS#f3)*Wz4|ubl@otxNaLɍ;(k716|d-"HVg?`߉D]#ۖГk193\a^z$Bw/*eb g4K&]k NJ\EK֕'ɋ+^'ઙT[? GBpE:E%0s?0,83Bզ+, Eފ[zwY{"ZՊt[0DP;!!TGsư㘠% \%>ڨ<((7 {(`P4JFLL.U)V-"].}>&k'NqDS ~_ cJjsgN"i7FtVԂߓ"EDQp9 o1SX6 >qZM) eoえq?NdӚgՙC&s8^!F5N-*Xe>:Gi`Fnf#\J~?u|'#B%QBxC|5 2ܹQŀLD_'S1'hS:h[&h݄A_cXk~\R?4۴qa5yŝm1/ #/? ;ςeXA'/H5bxS>#ers/N@@j>WR't/A#M(] n@$4;ZP/T3 H9(]GIm 1wrn {p|%/o/-FEj㲷X0iy[,̷RE"$ rX ٤Bd*'jG-۝}(,LP}C~xIurδT.ךN{q lϐ^H_ ǔ7 ]ao٧)*slٚ.mMM<)vaihLB9sI`]F^zy8OfM:x~i\:jla}! d@5&:rW/9N<h )׮~ ڂ7DX`ib*#+j"[RZ1yJ+aHsP: τNjdt#ocI2qJQc2m Vf8r$њZuOw HloS caZirr<˂ּFRӏCVh~O\|\ɶhD  xfeѿÊLlWSXktJ' 3MfdwCۄ =kB>w{6p3Yb6ETZ' ṠBv2m6",k*X #U |t| |LJRmoWa v ,KpCiQ>D{x2D3W|x 'YB4cKDIha&S  w!܋Ը_]=60g?BL^o4rhdDlzﭾDSB(͑*"[h'uE*P]J}7Kfb Y%j!ti_X?{8JFNU/$ b" AQ)9] B43"s Sjcb-I$Y/PЙ` FnSȦ0WY02i^b4(wрoQI:etP@Fa? J6ة<c6_.U}G]&WtV1}&o/U~8)\Tk}͓ˆ`uMYN .|jȂ4ܼRyJn1fSpחB3lB@(MkHirciv*W.D#$q+ڧjh1YS}6aHAԋ.+WA=n S?gXn)rl7Ȁ@xWO9rl=w 'T w^i6j$CHQ8CP-q 9<.RdĠ )1]@>KKE9If[Z *i= "n,Zx7c"94%XKz t+.:,!GE"wD;7#@Z\,:k_0/B cyB2ل[J+[4#ƄIMYNEr~r()Bō#&5*0+dX߰ h%9pC)r2}DG92sޘpsnkH=|H%Qhԣ e z(q\rG~ y㔟bH&`[.H֑t , .ҙX_cVIVM.M)Ғ-k/q|8U+AT^[*9,!2 !z>\`M{lffPJm!i8 H}$I[^€LM;;Ll8=BiˠK~5IQSʏW;GK0 .$_V{-Jrx.Bݵ2kIDՐs[Rq Ljf("[VsaaIcgQS]?,IC\#[4h6wI%E"]f·"\.3!( 4 UAWVp=SBGR-3NCBH3g Bo|UZ$GVqTw <-4RxɜпY|@g oL}ڰL*(q*qB[rtP%֟6gلjO/}ѽTבԾ`=dg>ׇcu9Qr^2Qn8?6 p#roMZFV[7(U/ʷVK$8VQ6B<8n_/I7ԲGVf7]Yx~xOi (LYO*x]YZ:*a'ܦ Om!HTRjm\!@ыyHoRmK2Ie?V1ݤ9uS{x`{*]lFe=8#娻UQ i__pȧGitIU*45)jQ ߨՍ#Md\5Tp3lEXhF7:vr5dVz;ۦBbahPQhŗ ƬڗWiQ?;bZ1FZ d`+g[yDƭݾ(& Z0\{kk )9[%J2?6gRiV>υ}׈lSEO-<{=$y? )B oV\O-蜾}dԺƸrFQgh JnR+:{guo8t9 D?5;vw}0 B X+g0D}Ԁ]yy@ew8G -Gۍv|@NNhJDSTw bW-^B TsNp xẑE|3vާ$.Ǘ\kKjYH)C,85BU+3sV Jq+&,L]L$PmF:gdmx/K1yV skW=V&-w6' g;Xy9&gX_:M[Ng|;-5 Ѧ㏱s+YZbk)Cg3CP|6^=mG1p%a߅`Q ^9.R?ִmع0I]_ IgnnKW|=wKd$\`o"4DQ|Zl`;bJ$nз V:/zxӠmFMgw,UCRFfZAdLiӬ&>2[=b||@}VW=pض D~t]w16/tv'MR= nرvOo<1ep)t"%{\hQhBKdéw4J4✈,S21ԄքLym3TPIdBp#CԄcj6YkA-?-3 UxGp yPVA[6b+-Χ(Ab`L7U V -oeLE#|41KQŽ/mحVڣzf?0TsHn;C|RH:xH[Ih4%k_@i*Zw;d MUR`e0= { I\~5co'{cVRczїu$whPбqUW5p#3[cH UyIHu'p|~G7MϾJnBSFɻ3<`}P_Wkf˴l)3zIR;1Hi#<Ṓ$#w%@>tJ4$KVI>X[x'[AGTR"^vV~߅x[|U iADiLN42$Z-7lp=` fRK{~1;u3nXƥ)Xvy栍3 E|?m K(uَ"B}?#iFC!5ƗPP]d,c\ qK_nB8cIOUuR%Iݷޞ~5 {ʩ%|y8S> Q}bŒvԘQ&XH+l؏+pZ/,網O% (,LT^ :tMAG&Psjolo8zX~4Gmv>R˨j85i*Wn 3&S,vy!-8`f* )6~#2`:7T`#/m`'Vۮ%X3Zɜ3Kt%%1+.Lv43|~+U 6C a}I ]CLj.n> 2``gN @<[Y@ԪF뮱 -ef_:3Xtt[(/\O<4ljaof=ADpLIlӛxOQ AXAP P[8Jѯc 41-y)nw?=ˋ͇Cۉc̿Yjr :IZCŬcZ:CM[Ъ,hF沮{¤B 1!*_8-N^lN#njq @M`S*AD UL>zpN 1GffbOJKYc&_㻊g3P|W#JM>D[`[[] ^m9bY|W8ѿV-FZQΌXWlr\MP;V%tE +*eRcQܼL:u>%6@ \uc ]Mz!P's+KBo+A3u6He[k 40H&EGM3Ա5[ WA/=OJ{# 4_3B(*^"Em$WS>3=xXvF.KZ;~W@)50̆|\gdq]L뇾'ıvVOо@;cyy 0T:5@c Ag H{hlW̥V"Ě(3!B;(5*)乑U* 'o!8M%[ҩbܙɨD*i]$OoV},V=6#:@Bt}f*%rEq(BR JƽG93sF bcz.tzr¬%W{n@j1D3Ӂ- T1'rKCSЈ [T\5$-m]eZte'g4 oh 81\k^s^?gwn]z2r&q52*֯"bC|emIl.}FI(MR!w~2Y{iCV1|tbSYG97S4.iTNTM[^k;ClodEoBx T}C>a"u۱-un, q==ޝsKMZuz$EKmuqt1wU=:q,:ɛӷC%/3^bL%3k5}~Vd4뺋p(Blq ^L# gVC0M6]Xd3Tac]cl|&`z)46_ B4Vd:o#sI"v#1+;( o"T@uy`9XJ|$lޮB&U-؀)aެxHYd|`?X?LhmP(u1zԔ@HR N m$;ފ~[i/ cCh[K{a/anCڑK{EQ0,y%/ V,~|` +gYAK/hH0:`|0xɲ]GUUPŞ^T!KYzw Zi^\FӗH8Ѭ,&AqB>-m]QԆ#ՃR̀uLp8&~;(`e(X@P^49\=eSld#i&^{)3{! ;+W33d`t+zӽ>вhƛ3W7&\ln#eޏw;KSgNZrټ4!:#*+ 8lI[)CPv{냟Iuxl:K|Q%OȪREҮ]fC5"yܐzR4%Nٝ"x˺"GOiݺ:paoj*ÿ/_xf i.e8zrҤZa| 'Nk{|pk&Ti!=Dh t#i"n/9&6>؊N^6Ww\ǚ]I" 5T15p|4槻Uh/Iy x5gg8sܰ(D݇vyr03F"ALZȜvnϼ;~ıgHU<%1|HIl[˿҄mZ%gE"0LhK![o_ޤ,b&oXLž։"8XVH@N˜юwUiT^'ckI$9N91DpjnE,Z(M][jI2ns؍9V MvGeqJ!^{y720V#Aku~eqax A{>`mAVh`_Xj~L_r>3?i D!`M9tlt ރ":D"L7 |J,A D͆0)ɟ37?Q紐M`n g .^[, B: 3x jRy|FgS\D>_X8_2"aD5Vf!"V~_<01sSk!3 g ÅPGwաQՇc -6Doayp}"4q2Q}ǔ¼5,G L!Ի@ӿS?)Ha(,g/1ˈѮV*Hw$/DtF~xa g\Jk۴ٰ.綽 58p41 $|@eu!6o %*vJNb!ww}\FR 4(\Ω?&DY턣xm~ESR[xϬ&70uhuWY#S^68vFu$p.h9W`;)1(DϬXC9sDZOp=mS$L[.׈-kuƾw,G$p<[`\e֡7T3u#(yRք|y>ɐ/AЗ`%@r).gέ=\C5-SiT MΤiwYh{#0CPeSۏ;2Fn>GL><548A32Za*&OঠTR~ 1ӏ q3=LŔj8Ŭ@tCg8cf0iM -hgD| ~ ))]r(wBB''UH3 ( %p`#TO !W!Nޅ _+]( g _,äi3O #*LouY=!G_B*JA0e7F#f53 —mX/$ +PL/T!m?E2f 1H _r<$qtm̗]K?,sƢ8HLGuH Z3]aqդ}h@^4 X3(͘zppVwdhCrFèM)Ka@טҴb)E͔bT~m]`2 aq4RE~asX8ցNC? 2 _7a'>B}nr9QHs5#&gۋ@`\"oKB^113| u2q3=$SȘĮM# 1:w"؇f`sTePlu_{"J={b ]fLq._wX2; FXf00׎*mWyD!1rXLrc{9u1&) :aB 5Ov"U||=}*(ZnZZlmE5Joh4.ՒnHP2a 5ߦFh>4xe~b->)GQ1\\%?e;~I!g`w AcTk}9-i>dߕ?nE!uGLZMZI!S/&%aM ˱N[XUUgqcs{m?#}|\' OYR-ǧ`ձ>* bvs9g-Ͱ=Yx<;G I_͊L[es @Dzzu6Y:0dN07d +T0ѯ|#>wj>k 21ɕO}Є6vƐK=?%b35&RjZ,9z>=0НSWL;QCA&~W 1ow;A>.mI}f5?V8iΞ% pQ~W.ZqT` }uۋȲ/95 j%Xf.iS0jNoPm!+ H6I㽛'$}L谕V}[7.XZޒE)1(jøf ux=pcm+$zKF-R$x_ he]E@6?^g{NEmCƄvd#+ T-SI: ~8;n6-9[رܢm]} v.Ra!Tp\1˳8L 6~&9rP姂 đlJ0! ݜ 20*1FHy0D.ut~Ʌ5d{7KRF069 -HGsw"F#KBδ40kĹ&%)r6XY?) e\m$R-b#cGq]ڳg#B(U\%;;רtb !v{8Q Yw^OҶr,N75/*AnaK#ѱb\2L69ޥ=l`+;v& ;|ߥ? I,=JGK/ӕa 7\x˳W,u 4&Iʎe E=L ~EQ=БZx-26@o-BU$`]Y:/;N^n+δUSrR1~.Bpڍ1c<ހARS4ǕWŵ],_%k齌}>^S*Ps|Z21eC1T)A XhYA׉ 4q4'~py;&VimER/d6S \ۙ0#|&U1F!rMdFk-)\cfhn+b76N#[M-Y:Vv8hk/Z p:]ݛduC vt _a^љ !:kUU^Rٺ9"zeMsC9YKr+/U5>u1aϼm$N%M> ϟMx~ #<{Kan;bȺ* C܊˂PG˂-f0wF$kq^ ZgM-EqA*Ѯ ʮ kUѫC*T+Nedv9k;-(E$`'H=dJ7.$d+М~z >tیB7P7I!!eYS|L[d'BX>[ޖ#>b,Xc#XescLq<~GSr_9=1YjC/e1&Z4&iqnO]sOpҬ8!h#_^N'# hi",释'-FtF);oƺqO`z%ZM[lFqJ^3'jH<{=emޝՏ*%2,훜3xy9 $aɬ V,EPZ@YrCGoY"5҇#˜D5?fmDi>$EH9.f/輠2F/D0xq@P[ >B[0敇B rC>G8 27+k=ĨEj;4&zqRLGIFn'r<PȮ%c!.atܝ骝֜-]ee tFܱn67zc(k{b0)N; WqѦ[dsU>JG0. ˠbx][S8+IN o@qӫC Ń~0}G(Ƌ6 }6)cH* 9E _ODdH] {>Fe[o[e1̕Eⷯ4Rx1Cu&@ݾ\FJ%noId-71yS[uSK &sACɆK.\I%Lk΀e[:a`5祓i o@]td I2frq9hzdh˅״#0 ]WLE=Y%4f 4:e'ŒB|SMtI:oaVnDYDi ۸n qeF_y[U'-^ m@ch%lhS0[йf,V֠n3 )xH,@#67ko4C΍gs=n}S5&dьڠoIaM-1=Pͭ7ʯ)EZ(']J2KWXإ"IZ}zGL+Uz=4Hr q1ԄsV$ %̑צ1Jgn2qDmIHNM{8~kq,EcL _ u:Bhܺ}*^a]ez7,uCjs,.%ێa`{ `~Arߒ"ft^!-}: B+hB'sW+ǐqa3v#o:yOY`S܉L-)= KvK: Fw[z/{t'+{U3b fVxoC4#zG+AFgFe=kqYh"ןX=яro"ت͸̞P![Z (>xf2D %u'<ۺH2w=Ԙ@|hb&_/0.ԐQ jk/JE0X9<=㵹B']j2; aU̟* "JxG({w١ęi ~{сM:gBAPcV1ʞ@Ɖ(xiy&=WmߺqD:dgE Y۪I*,K R]|=4Vd8x jU_K= fAE8lKˮ o=~iE}Ӄ:MuU{h\+mJN$wnt1A:$)U !]EUk;QۯE3cOk<5[d)۞&|(XVvH+>ȓ쀎=MFj(vJ[3= o՚J'z4$70.{`L"@$Rj~ŮMY0$|LF$:Un$>7ub򏨟ϸhCf3`6{7УXGsz ԁ3;-1"v0T+i  s 6h&AߕKT5U<'ue%{N.SG 6L`@lGWlBݼz5:,x… $HOI{#lNgB>T:^՚(ؘי !E:5 .!2DCmomԉJ2lYjWڜPsȾaҘw D' hkO%RXDiWɵ¼5L63.n݊dZc9(}/׬nI8V2"jbACh#HiY]v\vV8s:ijIӭ3{zi'@Iv.bq{LtjxsZ ARy^G1 K]ߘ=v1E-iX@UD ʟ?WD ֌濓əck>=1XxFXe[Z5h`Xw\.  T&}6f8M | @{@& &[j}fp|IS!F])P36ʠ,|Fb kؗ¼x|Ab*8Bk{ۓX=wлXa;7R`l@VT*Kk 6O Ꙙ2rWJjrɤXeGLP5.+U.)wX iCp>v8Atq,xsM:_hEl3j@W@@>vԵ9U"HSfs^~t53n, Z "  5 T-(I8֕J{%A)]nݨ|eSy52G$6B ]lOD:B4VR㋳Pb!sy蔋77PK[^ iBܑٓ5a~'_'Isy y+/0s<*^*:0D&]%5>6kȟ&rڦv԰Jƀ/,1XXV=˅]:2Œe$:HZqo>ʾ1<j)c 2f^LqhtjԖm%I@YƦH72\#8KY uQ}*ժ5 iBk OبVʽ\+Y!ãC4j<-Մmu3Y&MWGiθ&(t P$o3mu:.Ȧ6ao`h,f tr0/kw_%/W|œ'6Wֻ|c|= NYSZm}' 30ʱX #i+,Qh,boCƦaYbؠcC3:3ð3-o<qFUZ[4%v24}2&7ド37,愨ٜG8H{@O o,$ï/O{F-(s_!1Y\&ٹsetqU\ltnZUL,t5wH# ɒUTU'GC@"65UNC|DY2~zʡՃ v SVE ,!$>mY!SC-eqo'SQ2})X5ΌDaYҤ[jIi?+'aPFs%B=yPkzɎT ycZ|i]]^C6ϧ?e}LaS$?YچGϨ{4``*W+7@hg4w{{Jz;~hQɗQUpI`m2@J؛eO"z5*K_.n>,n,1Well`{)[rkz`O(Z X%|Kc['v5Æ',$Em9{TGT^堏ѨJ Lt+I0}W>ar)^|Iv^tg_|I/+X뮣*X[qsAi }ރ x6ufI.,hC8I8[muPWŇlOvYKW{,6d C֖ZP:l0<, 9(_M9y6L\K̀)R bH\Oxۭ+払ՎA6MLxLֻu |ǜ "ސO *fá70B.I8\勽xQt+ONΡ^V'lLH'sejv?S+a69܌k/ l j_ VXS"PB#nGKIhzx(qt7r<2{jl: )|LSyb玣J:Z2y>n/[QA"&G (C?ILUE&dASMnO0f&d2mGS! KȟW͹ј Kao ņkHWSJ*T_`5)0x |o $N2Ё}bi~'*)$2+ZzyK*"BUڕQlx\Ҿ!kV ֛oJ@yZuTYiPEu@ Ѿeζ?{aW)Sc`,gQcO\& urh.-Vwj,кəPd@a v:eSyLR,, P13 L\n W1ff UrΉɾ;Zw캿I0-k;۞ !НuF5R:Cۃ̼>DCRm`M-&g.pPln C@oՈ>>7@ϽmB;h;Ԏʫ%+C)X`$"ܚH[M7 0H|4_z`*2sX\ mFUa#!#T5tv+jB$S Xbg +daA?DE|rPVjN=" s8 u.WzǴ}I{ʈ?ްcҶ@h3(.޶%D?<(\!M9Ruwҋ( \Qqsk2jC&'$Wh$%o6pCSReP=/MJB m1sۣx&:ZhdȞB،}[gdQ vT]g}J>bD]x)[l5Zr*R:=Y:V~ kR؋eR߰t,. 3zbڮ8A quB/5ʆdZWkHxR\NgϊTťf.+D0R3{O[*XCنL7`8tR Rr>\_a3g׀=at7 r %1ŝxΩ0;@~z7$n㗮AG7oIB*jW`MIew|zxX -[l.~Ͼu^,s kVdbdĝZ(̈́w^fճ3zvE]qs3T'.ɭDA&",K_2O&rmcvD Cmt]r͝BA8*~1-} S:N4Y 'VDUsF5!Q5+k>ڎq|Idpm=mS;ޣA6ZcG%T!`xNz?̢X pV|η{g&2{W!v6?kȓ!bf})WDbhbB}UQB)Klb9f̕/bf5*|[ >{! \Q{44PɉD\]x'Že"e+=h5pWaj}zpB@69<D/ 78Qw˕M*LJ4/ Cl >'.wjAgW rG[< vBy  4exMe/tjħxV!PZ" *VyZe'9s`GW9 ne\ M.j3؞2E1e\Z>ɗ^ 'F42|eUB ,`Qy?^*{YVKɳw6 (7(Nq!siCRɭkP4<3(`̄%bq .f&4>%" mz7*+)1;ϘU](S2SKYDꯨb槳.qnп&)Qtl]gއf.^D۴.ušRGw7ocvt Ө ا,qRZy tk\ApCL+Z0;O`*EoO//td#[ԕ2h+eٝ?R>C "u)d XHUzg/J!{|`28w$s{n=фTVY{ q.h?ۈ^o}FZl&Q>+2=ү:x9_(W rE5?prc^rqiӨB2$/QpX^ =u? {s9k:*^f>h雏һ0pJAo=9pa]MymzҦ zRBd='$ydL**}`.f)V0p~fᱛSpl Ԗl09S!UI6ԏYHϬFT!WL^c5y?tDžoRլr"Dl9kh'<j!6ah9^X a(~SkPF˭}z@A`zdHh늣BP5W]Y͌S3[d#plV^M,s\rE7TLIdIec29$ڎk3%YǤODӭ@9fr:ɴڻ=Xɉ qm~{=B/-(Iqbd2kȟ*Bb𓨩_JQOȚ-&G | lNJf/bI\uOܪx/ n0Þ'[W5[s"0۬z딯I wF8a^n~L>~x-!/B)փ9-9xYc$>7_\d ɨX9x >C[ɷ4?ɒF9y+܈Gc?I {0C[Q㐽i2&S}ݦ S]֝k9u!Ui@7;42dXuRP ?3}+WDKZBXeT z:-8\ ׎IG>hrw^v3G䏗0ˬRcovZ#SND՜V9,z!sf 7LәZK6ȕ`e)XCj/߭lj&g  hCuD]T]"득}Nڕ\B<k> Tpq '߸Ji%};ONd{tFz(3BԢ`Xx:8I._*$swPstp~>y,s8"71`)䊉pcEo27 M ]saQ"`x9qgO1퀔pqxȻU.ؤ*CkX[vҌNvA"!Oڻ$Yg&' wlk `0M%1fn#v2vh-9|6¾{ ^]Ë<" ܰ%򙛋-nBELCmcImQ]DcgY bFbNn~W٧2, M.\XN=2U.2𓮇^&zϰĄ5J#m"X'= 8CKis<  Jdd "rb`n8aU>EAN@W>$rZo9ؓFZ ¾Ѯ Eq̰Ini\K1kju e9Dݳ/H .tBH8__}OׅHJAwue ڦD +`:T 0 6-k.Yzsu]@ý2|>2ki;L9ìbg/Ll<,-O}I-Mbz 22}\r*wH5XG&.V$IZȭEص\i)j -p6sjcFՅ"f1N@n]队pzƎZ!/k FIQ1 ?jAa!őy$[j(9hZW2Mt=b;͂PO6\IuzQ WA=134[t,c]01c8j2+Il5BP.Et(%DjN8)q6dz9 :F]6{Bjh 3 &SD%%ZJ\kE۶, >$ڡHu/|㢀)ctUS#K0|ʔed!˘wp9uqwk|OYFE сuÕbY#}7f^bN9\XN޹u6`k&{43]QR'I C 8lJ'88s(;>8keÖRuFqET1h9!^5#sfz_Q7o?W=O~8 nsJBdOqeĞU,BN0w۹ OZ_i]ʘ # զGW9k4w0)\? UCѤ݈BJzp4\3n#f:^ H1!2Vn쉀((b\BtMqFP,?%{Vo`6dmZm%(oloOGɉPgS 8G.#M96 8҆sp'ԥ?g;qXգҹwz?)F4R2S|c(Yإx-ύhwaPQUXW" i"=?iL\{}2Mc@E^*뱏ybwX,nI_pg Cͩ5aYlc(YfT:jϾvlV'sYoUj G@PazOOl)IJ4&}+'uc(@f AHRkbk.tyDYQT0ԏJ[cҴC,^'7w2i`l)߮)(9sLKCC D!,)|Ȼ6e_g lP9js6Opj{^|f|YOFd #f-uaמ~5:="* ʷAT#uն8bqdjƚʴ7_aTzwk9 9O?D!w+k$e7(Ju1\/=Ow/[z>ZF GCП0x=!e/CtZئ=?e.T6E-%WP ͩQřci671KK2k~g?j +v$G<dX.MB9o}b!% œ*2;bUJ5Zy8,$ L>HRHm[IV V1Iv78II[pOd'L)ImjNjlXnÛp󦟺 c\8X: $ŸHҶ`ttOAW?i]3z#Lx'c. \-JMU?ދvo~g7 0W^DCŞW P%01߰0̵o E-VZ9rljin9nRF ¤a(_ 1w/Wk6Q)*pn<=X '!rcR/S(L61{">9Una}N,Vn$ : 5!qog`_FsI$u;buZq&sfۙؒQX hG!(p܈Ёd*{~TmKE+S䍫:$읪!Kkˬb#ȤqTӋ׺~cj}t_Ê휷>28:SnFԾ_ $DXԷ 뻎lN SN0зHׯ؄A:D@)GiR󢥠g#E)3{[v$x;5Ӆ6٣ۢvﴯ,̰Wah O*!yFq%yzX&c"،NO[D-WN c}o.YF=f_=v̟ӤH}F2|$L錉eu'D a 1=Wh2%hGgɵfvl$FQdSOp懤V՚2LS-B(\Аng%kN0Zjh9 Ngbs.58)p-k[>9+l)p.gʖ YL3弲0> y >Ĝb>,vǁ˯D\aQJt:C՟cst4Ԁ A2C;%y9SyY++ 0>Q~5.) MJz4V azʶ0b)^Oajt>s\Yxr5&bT g3jhI73nVcnm\.5~ rO ϶H1(F?BG=3pP#x !_Ӝ-8%]{̂2C?T۠=h$B0&#󾬬k.V:nx>,C1}~QvSAID H FPia_3S3ɼ֙ˆjݺ6}u&K]=ğY7Dzaz