parallel-netcdf-openmpi3-devel-1.7.0-bp153.1.15 >  A `CQ!M@eeegaVi"(IXtq FɯQ*BAW"کW{(a 'O.Ea_OФ M13&m?^O!euCL.-I7*P}mo7qs}9C }qIOX sZ,Ic'B_][8~FUb-[/9n$'V#+x|͈}s/H"卅r*w7UJR!B $QvU3vC"#210f2e14bad7d2d42ca1689970340da3afafb81108175f732baf9160e4311a1fa153de57fee0ae88327ec6ee8b6804f002bc286c2<`CQ!M@eee/4ۧI&:.*~{nm ۖ=TD.+g~?E~Ubq %>2k䝆lD9Fk;Ӗx^"<ʖVǏ?iU$,P}"쓚5^CNL iQK pvgp[9dAV g8/-JmNmUn2pU*i7K uXh@~ʴ?k;ߵ9B+i:d&X:NB1dNԢ)⧹s=vN,z >p;?d!' 2 jx| ,2<T ` l   8l(8 9 : F5GHH`IxXY\]^b|c"defluvzDTX^Cparallel-netcdf-openmpi3-devel1.7.0bp153.1.15Development 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.`CQlamb11 SUSE Linux Enterprise 15 SP3openSUSENetCDFhttps://bugs.opensuse.orgDevelopment/Libraries/Parallelhttp://cucis.ece.northwestern.edu/projects/PnetCDF/index.htmllinuxx86_64+kvFk`CQ`CQ`CQ`CQ`CQ`CQ5c6c42b49161fdecdb0c58319a52dd4dff042aefe7a5a62193afc0674647d4c34b7f0c3777e5f75e4bb0e2cd6cb4b57f35530cf1dc84288599044a03f6b25b4884656549af62fb5b2451e399008a90235e03d2dbfa5083b4b26bf927f45148cff4bb2affdacb95839b9dea8c22009ac79bc782b3adc1131ed34f06dec9d4700a15e9b9122a0f4342362f89cde95f2657169333802f39d5cb8f1a6f08412aeecclibpnetcdf.so.1.7.0rootrootrootrootrootrootrootrootrootrootrootrootparallel-netcdf-openmpi3-1.7.0-bp153.1.15.src.rpmparallel-netcdf-openmpi3-develparallel-netcdf-openmpi3-devel(x86-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.1]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 namelamb11 16150245901.7.0-bp153.1.151.7.0-bp153.1.15pnetcdfpnetcdf.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-protectionobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP3/standard/802ea42c5be8a164224c366aee5aba7f-parallel-netcdf:openmpi3cpioxz5x86_64-suse-linuxC++ source, ASCII textC source, ASCII textASCII textASCII text (gzip compressed data, from Unix)pkgconfig fileԤ?M)3=, utf-8452e3227e56a9e40ea2c17f76881a19d2cb0ff70e5c325250882a79af6fcc9f8?P7zXZ !t/] crv(vX0a&QpM@Di?7PݟlAvPppAjSiK6P]cv%,JIh DR/ȝ.iM Җby !\OPt]/艹/k0\]8TCx~B9{i# #>[K/˳0aqƄ,A4|eزw)X< eJOQn`^bz*˴i㙴YRnJp|AT"Q3V 6e8}!rSsVb?sLlJ&y}=*zf$ &Я63C3\[y48b+ ٖ!Wʩ C!= ߠ\@_T+? @pEN~)nVl m|?wzlyi*wޛluZV] Ib삹~(3$o=IC|Q9!kkH g%0)X\m垁 zB5\H=r@ LIonIAQ },7ER.h< u$ۇ3ot= ;Uv`xߋ 'ef}q8)Ř z ֋}"+Z}τFGDd<hu 3|Mtm8.zUV)P G-2~QQJWaxN-cP0,W>mi|f~I1 j:GI@AH7_Ȑ=bIK%JjϯloWָ/ݒ~\N3Bܪg%/R9-<:k%HXp;x ~P"Eo!W) >ލ픶@|mLPtu5!y;q*|?m-{X:#\wԽړϛT)bOHUz{!bW-WͯC&JRw'IJk$/K)lgGL :ۈ[Rgª1'y]ZĄ`CzDfi"<5CWcD ?8xTjv"P _|V{X>b?B 4D.DN,PK`rpS} .2"DU'hwN΃\}Dt4w|:3@:HAvQa[^zDJ~ʐ=!X'L? }^T(Ok8) r *X 1x&" )^6=pʖNεFJݣ &vpJ3'FJuz@[7+/@)J`o` okƙUG}s"򾺰;-&idS 3ge]F%i/x#&B"/'d?&Tb/~ޞQ΅|iWF%7qeAkvOJ_-8.(zX|4 uaF.̢PSȚtyͽ:Q 8x{b-ݬEGh< 9n?}B=}킜:ʕ%B X 9 2:y_6f?k;~qè[[\ܽ}&/S֑0^&'OZֳ*zc SH]J6igEcTgئjH˞eQF!Ѿd !yȦ|&Z s^ڛ|qr%XG~fB%}͋%tv Nq!L) 0;dբxb0wp:=wmgM p}%qNz. ET[XR|HR N 0Jp)&$'u[ Uүo;"jdQ'" L|v L=.PАՁO{NKB^o'^k -.wgO;&P(auj!Nv]Q$M`槺&xwBQT(ډa <,d;*%x83ߦ'-b4LV35$hfHfoٴZ;׌yq`0_B&QRk]uġmozjorn8QrRԓjҤ @L >2bu'uzs7ޭBY1=.1]r Yys6O @ևM&Tg|~Uו}P 20yB8y O~tOa3}uѡO$ 5tV&T}w#^D+ySεԉPJm$ӏ! 1&?%b. a{ohyoԲvBʶo㺾ݻ'oE1Gj@v@z'1I ջf0S2/C21R;l[6eθ+)d~dOv?2Vq`ܳ=1(V&?S,SqtL7C{b'יjF4xPelS'HRO/b@bjJ궦OTE_!e ms.W^ix}4ˇ!}ZuZx{o[ZeLޫ.)?[,N챸S:rdO|_$|ZwcJHk(iGO; ;IR*3oIx/UԻ;$tާ' "œg?V me$75&6}F] 9<يjd g %ǶU^A*)bgd s?bl>i"Hj*=[/KD;S=DW=]F nyHus}#[Ӡ|- uU҃*3&}ʶM`<50Sڠw .Kn*eLA1F&D i! ׼ϊӣ *;8Zǭxx뻟R%ſ'Hۿ:N.hL',KCIqbur{ͥõh]p+Kjn,TCT-,x2@sfNrGmu1UѤc!dAHT(K7x4p#TQ{|c A.ML1|ۇ:6$ G<"sDt;[F;so-kqmA=z ?&[dj:MGj%s" VLOλ?Q2 IBMp{%QpRҩ `@ iMsz+-Pu&pt0Acri~o)M~;*UF8$]Qb,&PYF? ^.[/,Ry]Xs%5˘;CɳY`~?֧G<I 3KK nɬ5"vLy?б?^u"3 DOaΰHbgEsyNw+fҰd7-. <4ruAȳr!RR8u UTWV^6#ٝLgNIx a3[o}{rm-N c$ɽeTq"HH5%O(0HD|SDr*(-\V?p4>]^]Y*[Ӿx"x){ lM#t ! UX`^k`_u<4]F(-07E Q?R"Wy*߶ڃUN_ՐhUL?Ӳd-HL-MAyvEBE+'Fi(h]( lo4|K{B 2:'O$l#'v&¶ALA2Qb~"*.6 znn*0\ %aqEJt!g 2v8pIkGAdմ^(|s"cFj {0hÊ){:SPͺXY y^Z2ۋ%?=OX9zxHf]o;Q5rA3=ym5E#P8ؙс:,λ1cB '{^;Z]~@v`k i&|:~c3xD0'~D%.ŁUGE-Xu(@; 7l*rSst=L 5߮8&FD 3%5_X)av/8!`C:d%h,>k x}W}g%|歡OL ̍zkI0n4 ߒIЫ7^hg7K^ffPbv7TC톡3WĔTVNd1w!1ח,%S GN!JG؞9~ZL $2CvvLW(mI ErRP=bVS Bp.pYT ߨǣ'J-u-P P=]Iy-Hgb)Eӟɸ0zH k q~"ZZgʱZr gߩpuRu0UGy?"CKcD,w$;~qX?Nx& +b+jj\T[|ösM v igZu8dm-X^ Y & X;80d?ڽ.jlzV#oRNm0jBp)IXbdg*"R0q=_Qz&|T Lj2nVX2"XuQ&r2{5?.\!XhYo ۙ|h3gil}Wj|`r@~{lpI+.*QNj>ߏ^p;FbkO/ @Sᏹ|5zFB+Q.Iq5Ł eQ^(lfx@He؇ܿzkm,,ޮdECWC'ǁTR˂pt f$ yz—*έЬ mڃyŦ 懙(N`ŇQijy@)ꨥc7 tw=_I}ϵ VAA9BN2Vd(# yAf 2^?qS#- $-7"4q^(6"" m7=qH 5ڔN6'T@v)tuPɏ#5~?2 GIR(~2ԌBNܓ+gة1>|Gs\ ^l$X}{z F㎩m:]U.CuD k0wZ~lb,LX#+(Y.?K[n-" `S;+s|C&d'UԲx2ת6AS$PmI XۚN7U*QÏDެD'äJ++?TrKTkܤV0% g ȺRԪ_ :tr aAȍBwli ޡ`T7C)n"eMÎAnf Ax^=[sT3.6Ł>m9NUsѠ1\=.O.#PmexՃqye=vmR p..gz>:M?z芍vdoΚ<;fH/"lY9o&t JUjDYwcgH<[G#p 3kC6~*X"P`zy5ť[1VJ FH˛? ٪Y pbb.&K&a}Qzy7hDO^z n7xpG푶Ygӻ.͑h0/V%l0<&:3yWLύ VxhrS UilwhB 0\ЫGۻ#T BmQiy$ OP_Ϙ'=yx%ѳb5$'K{'.T橺hܘH%B 7+eF c =Ú./2)xDp/R4xjz2BԲ//8[0(͏hD¤:%E 7 ݪ 0Bs28-ƒ6ے_2gāR,Jom]s9e;>gM ʞ2G&ԖdxwupHJ-d g {B49r@ ' R"UpiAou.3PlvvQ !G˜Ej伺ߜa*J΃p1b's3I7ːxybNgBhx6zG3LmoԔN>Ի,g?4͒^ 8G'g K}BVaFƶRsU< LQTGAQS,M CZ1Rz5uP^,@N5~7[<,y+Z{稿DHd8d)Ec׃s:=*hvE0ߜ0Rݔ~!s l(Eͧi=v29Q&C`UCl|(&f[DǦF썍8 J>kv"h|wӐNdz8q|z|M& Fڄ-]{?ؚkqAZ٨;Y[oЉ8|6LY7iDND[54^XR;y3,fF$gd""~dpjB9W:ߋrLk^XD3ptڧ zIOMwR{XGwLbxpf>^z:Mx fz7ļ01D52t}bڽZz0KW l|;sgHu2rnpȽqB/l}IT*m6!䵦<5pġ?aFDzcZ nւ#ck_bSzz>Pr*2VYyVOķNdIPu",T+/@DW?rK~ ߈2D=bF"_:"7~ :eq?ݖ tgɈ7po !dkC ݕ!׀(MJėo uH!b0iNN0W}fM NK;xv@D?*nh ~&liZۼ"_{ѳERikh&K~rܥ)ocN+Ԛb2ʆSlj"٫?u'OkxW(A l7ifu, nA`f +`wjZ&4n+K }Y޻O 54dy%BH'LB-ݖW䑼 D=i>4&HEGҾ`W%u#ch!Ɣ.R*Z~zylPn:kN*M9uIo\ۊoϵ,W aeI`x(WWeTb\vX}8[Iy7 u6JŴ-al/\;`@ 1 7&wLsntsȔ;S){ᄆ5d[\)Y ʮ".q]AB ̩]!.I%-]qKPW>ITbVޙGT/t'Vl(e^|ׅSMCw8Ե]7b9cI}]QPpX.;coD# 熤 $P-(kV^g߾HwLX0hUe1޻o RwSCR/Q#tb.nD"A7%C'wLj'A]$nkTQ,91^L"cnd@Ce?Hd~C3vҐ'K"KZƗ6dΈ aR)򹌒ɅYQfUluYmT6ӑR⫷Ҵ T:]N[|K tRvwTY9wz]Y:-ȴ${(rRYqXNso`ؓB:D]2GCQ̚qkMlNmv] (snƹsJ 3<8/iO}mZ.e-nP3*b>|r=ȯ c-;tԭ^$c*j >SwrVMTC˱ƞo91}:܉2}l1|bsɐ@ B(N`/tMA#R$%恃2U:V֤q~.-8Rf]`@*Օd} W7kY @nPjvSCO_En-vtokͪX؎B`+<+oiS`Sj+SX];M`'Hb3 OZz lRIB09"exL;K:hf WS$Ǟ,!>Unr} C~Uƈ㍷j(ۼP?l: ;L(7wXȏ>}*1[Uzl p ǥE>@Lz`Zh^v{qtyH A3ie'sN,9fޥ/ja 58d5"`l K ( PѲ"gb/'3Zݬ ;p3\gZ܍*-3, ;v]|e!9*g] 'o-r(}\ZI4Zu`l;uf{[Ȯ: $4/!u~n?T"V.5}y|= 0p?F|ޥ|_MlCtG g /%9]:q?ѧέJ+l(1H5=r 5/zCjit{A At,->|56?|pn$G;]@skYFHm>.]t)^ B5Îf dC`6.D?W4-ZG6&,Lc,sNw_+VVwV('`SŵfWY**!D(<`sﮍ:< lv]#F>iqV C]KJ8v]S~B42MvQ7b f:goGƚ V OUhQ ?}%8P:v;P $@ܙAleGC/ZS)B.DU 񥹼Wk65P,S{=͝avʕkGy "h(Z6j uDӹ+oD +2>؅-|mX]$]Q>0]ZX~Q7֏ƒ(};$7<(BM_{>2*;X `jm By'ul x_5PkuTYjMn3"1]9]vؕA}pqΈouL C}'ߐb{Kg00Vz%5Yme!E+K=D.9_A~] Bd- 8p +[dY |3UvO0Tkڬ"">lfޭel^o1`dKk?Թ[Oh\kwO!z[ct BfqN(|#~?kN,#RnټMȜ BY)A]"uF0*Di[׺}LGI"؏lRGt 3aq~Fgu4Wc9c.J#Y)-8%a{vϘ/Unh$r5X<@ 2"}MG`o1g[M5M>$:7/*Q{ju+Ԃ!6Vŏ6Co]v0gl,XJK1q!z H+4ݞK8S/ExflRilդojA,v`P)ǥ\׽nc%73г<}9Z4& -~cG6pA)A\0xӅe.V# ,竱 :34hLml"N>pIp[|U{!6U֙d1Ci_"3j? jE!deuo) EŲS6g\\4c~?;p]NPi"N eߟr0iHI~˨Bz=1_gZF.;RK7S~£u.a%wq `a_ N`#P%l;9R @Xٵja ?♑"]wv\yB"#3zQsm9L>8]=M"-8wD}Xghmzl0U= ,i`l@.v Jhh=C㖋f (219uߗ؞!h-#~ą "بg2NzJVZN4h"9An'dbWbn(B [j'9^I3I  (Z,N**'kwֵGyׅOTh֎xo<$G`|RT7ixtv=_Id1H(!=cc+5?V?5?2HDjc_Si{s qXۇ V}Vk䅮t¨'ro2d p( W9S]lɧ_ !QHrh/\D_Iv6ɇP1^~L ^|b31<2uL&@d7)%{.C8hѯϣ@L`Wcki%{'sྋiֳп`y[5 X9띯jTUK_KbU]baKl긘a't"=.Y*q1Z? Ħc:PANVh7-W* Im/MD8[Sp7b&G\?3sI Ubב{vKAiloAa"% eh=r8XiP]PqMhXk:R>3ր3q0U(0 ͇9y-T 77tƗ$%+F{NvC.U/ Q]j*ʠRRWQo |B .' 2LyL>skRJۋ0oO5@eDa|H>0g-EjD.I2$H5o1KOH_ᙢeB3K8',Odr XNJPwR)FM|e?orXw, |;U{'{̡ilʽ.Eʠ@U'LghPprhT/ǃ9644 /uN&TĨhu%:C&P9u@3mU8+o~⸈thw5r 츂!)uI^ Mc\֩%4+!%P'֤Ms?if?#myjO Ro|mCPޠgf/)l`/A`Ū0-e#0g&lۓ.xr^M,dk㑸  .hsV%-|统ġ&* vˆ*hqn"II_}".x` O C_<TN 4,,2[D $V3|6̻3' _h֢KX`$W }瀢i_ik}`'HuƠhç&=8R Rxb$07'M`$6u% gxZ7a^9DpT }!O :],F:6})jFBvñѭd[2 08z|H+2~!~=OSY5h0ŶĨ{c/{O8&)g_;J);N+rBU2Wo%3<7_xMNX: 6=,⏄`_ ֓HBBK}aMRuKi,m%]1"Xpn. =gv럏.=.71(! '~da/ZgĻ[h +`7^025NQtQ[Y~ԳhG7*)W=u n^Aݤ0.mf!p״<̴0_52-_+2Uu2(H[o#ε, #s(q3Iy$-Rn3i5IiXz=^ 4Xb-4%B2ӓ'QJ:gU=]f$~6iWA^.U :ɧS'3Yן~m*Q6[2m:F8B<ٌ7b[cC|C_J*yΎ;ZRA)EbPбpf{낥]_R4L? "DZ(:ث*jde{ ^SQ}1ФwWYF@ie96'(Ų-E iǮTGh,m4kM-I<*O/8/fddImD^0>=7mQ )goGȭ{=(ZD 7oty5t[2IHV+/. O,} u1^**&lw2j6^<P$pnVOY:Ya9+fϋ'bc֭#D6^e%߇Ԣr7y[)H0݆;+9]‡Ш ϱd%8nfW1\J~[Us#Ӗ˪9`T Gr?A_g;S(xVOKZ>|Bj|i)iCj #@֊AwpeҀyk:67;4\Ie6A<͏Ĩ>mPܕ;Wycc$ތ븠( 4KQT2Q&D}575@CsGR)qyz%?0g&QoN@z,A8(o`660xoge~\'?H>j\-U#p'P\]_W|@=Hl`J?C͊0_Jtr@YHRF>&R̈uG/0R;#y0]4_ ׇ޳BXSJV`o c[rHØލYJ`b>@l]H5 *0坦޿7%DaHlC3ORIc1SAҕ/D0v,wS,\,NV8\7li mctIB9`G TI^N)YĪ,&~Ͻf ]y̶0!;jx Rb, \/KccEv)`Y=ʸ"a tѐ{-:(ũR;7:~o_DgS:4 &Tx_9jOa&tkJB(R6V#c/CB^.B.xtz bR5-\'2{HC93jȁYB!]'nJ4[{׀E>]xLk9[ sXSr&2{GG(‹6wJܙ & N2 z#:P⋷y6s6zץbqِ~Dmt 3+O`heҡSu'$^2Zo*}*4O-N;X%7.FoeX\x^Op} | E >oNubDqKNDbNF>P3H&7E~R4~/`S!0`z L\(AxKQ80Lۍܽ@&X.ЎV}ͪROk$z(Zfz(1Ҽڷ^#Ep0 ^wKqf;B>KE_aR◃ĪE C C8x}D`[QƊB!}|(UVYea̙ۋRZ(N#wP"hP%؞wg^"{5/' 0gR \ZƐ̻\y,z *ph,X]^͡,}G{+.Gs;ӄf&`|/Ԃ=ºԝB /wm@0!hC˸9'* H|rX4>kñYYt[p D(G?ïa ?l@\Md,m2ėf7Z̠V6XҔYAbd'+җl-*!Yy ފzXZ"7|Yצ'ړ[+N{/Xfսڠ?9cksWl(|Ĩ%zeҩ^_[+J%Š&wZZ~"6jpe)dݾUNk2;=RbbG a-Y>ˇAǑ'rHkf,}m~Gb^j/het۶V:3\XA~%h=2̩۬ۻhPnx7P-;00.x) ~<c]{Rs˿J/,=v|ĝTu'Pc>/,KN|ssD##XbKW~DhgZ!-Ŵ3O~u]jiwge13~>`&Ѥd:{OtC EE3'lqhWx)KM 8iwer Ux%Hp˲x_/H8/'Ai|Mxmwe(۹ >svu!&x-l6Bj22O:sI)-s*?0b][fwWɬjnM$)b%ѻ_AmR )˘I7#UB-0uO5{$4.9alUnlr ⌖)i;NN@6u:F#=0ub`-ǎE; jeJ]n{ (^Z:nc~ rޢA^Ǵy3^"Uxu=䒰+1݄4V-umwoOQ}D%B߷ǜT-* "-O( ,hʼn=i$gpagu"ZK(? YO4s5WCL8y:Qx`ĤEGBap?J}ڕ'rxHd"hz7($B+[sPa\d;ٶi!_nc;x5YG^nj@ QSL2+*d&!P)$PTMK,Bt1oOO7Iu QխP-]K\ꬱ֢{fLmbhVOXX2$ckee!U(?B7Rqce]iDƘtLG"G"N9([b:xq36{| ٔl=+%Ž 6|#Q#F ^!b9 t+G) iʒDTGnߝp]Ypvu`Y<Ӊ=pT%tIԢ|k$-|E޾٨hcoϡb?o{ iW>ӝ{'낥O*-ڿc%.AHg gl ka9Sp`{puLlaA34"|9Ȼ:Ҫ k:5Iލ'+g )쉼؁j;jy$[僻Sutoc#Zfϲ;sQi߮5%nCP "&C`W?'0 Of_z|%L3,KZ+ ӟĊY #uDAUs{Mʞ KwX ?.݆K#Хlsݚ9{ NTx=|U˼o=C xZGQ%M"ӄvJmgXQى}LhCErnh(r0yD2#6`*٫0\YRMQg|β 5αl ^_Q4 ceb i0!Rˌ8V2{{q-lUv;wMT+ScbfK[ݓȒ( ΖƑBcC "##/8jGv~M>q޽;)j#\7{ N3 n?Dz"Vk6YG WΓ;c oWi-ښeb9Iʶ BnHK->@#[Ž= ,hU]Ppy/mHx̦U&O"_ ^!N@L7i$|W_HO~&y M cwKDP"8lRn5s7Bbb3UgjTtуLσ.+ɃX2Q=#Qlhn'C$jֵZ+Zg<*K_yWm[L9m {iURmKohEJ*Ț=U7뉣l7j'|"Tq1JϦo[u:SֻX-"8j!& 2P"a>OlY"]P-V p~{W1c*Zt|^e&EӔCeDLЇLCud \Ȣ.(XiҔfK t"YVѓⅥCqdeIz@H^2PS0ڙ|N 1; .^v>?i9C9er{ #(1|eX:lWIx'EѵJt Ў~v&1CcTl{Hd8y'F53-EUwN.\00EG$1D$ JyU="-@nnv '0rj.d!%O9hZ}ᜓ|Z@0׹+oSJ[0%LB. E>8aDR &=nzĢhcETfO-(m45NyL=J&Df7 SY ,+"5[>,j#:^R4#? !0un -= C;DYW[W'h2~zƭLW9FS0֢)~HAK#P=!tdpAnn,UvcX%^O~8‹}.pzz;P:["۸hN  NwknP=t =PѷE%SflG;BtquV y=rɅ8O:'C2yr_doסTr_;&R&>>d\߻hXP?o_>=EkWӜX q&'D9W|"n }it#s@b ٪'طP zxT}B6f8l7߸`RLmgse& 9TyPgk8eΆlM)]H/j;F\$5P2"g/:\I:9b"t[Z?c!.n<ˀ|*Cnz3.|Fo]C,LGK '42>ZѢ8N|Z(rzF^4|Szh7"x蕐랗2 "B_2b%V,]*:4>ĞxEDc"I cvOFX4E3 cbDRIUb 镰ぞWMpo'B'5Kf&(NXBtm|4.r1H- k_qa]Z h?gNJ|i,ǁ 2 x?TyN`&y1MO8}KQy;ǑafYd8~Cp,{5iŶ-N;B⹸jx_:!ڦ†#ukZ.…m!I5Ƙ/ߦ;sU;NW_GLa$vd0ނibΆc_KnpnXNA)1~0GzX H!_;gHIc,KbRAԂ]_rЦP,5wGɶZ)plv7~0R{Ƈ(ij`ozxTmEy ~<!4%ϱ9j767> vt%<g A]g9|;B۬5g5f JrwV=ct 67W跜w;r~ڂPO!CVbc}Q],;"cDG|$ؙiHYJ XlBX%;cbܼЂ%*:EFNB @SV1I+ oL-tz;UR(x#^izc{z=8ykvv YҒP,>yf`!6Ez1Is\FKIV:W{eH-doL$O{CȪ}7vyVuKzO8+͆  d=dvYۘ&*AƧi*R:W[)_ Rھ7^'RPZzZYDŽ]r*Ke*.?7u0 ٫tM/:9 zI%6#Z9X^,_k0z:XypokOV]2(P2Yު6I:v!m]qqpJ,UEل"zjN${>h|v-3D>.2ߕ]uJ行{Gz-%FʄBUK~0kfie𺙺P Z(I># >rTNRڗN:4mYGwlZ`H>ci8?nC[7uHn%~Hڙ\l -F@P]A&LPi];j 4nʝm7IJDVg V\Z鄀es&_7$k׮uw]‡[d1mBޔ>&-K/Hbjڰo7)`YÒv+0y5"18Տw/Hvx;?f+B"#<8B"7o7t6w!c9tɋv;9@H<ʅe@Ə.d`/=YaL%4a`Q#` P/#嘌dLE09= uz@[zBE| ;ǒ^ckqwia/Z7ս./#0G-&5+>."C)S;#Zsm.$%{8| x5'adb (P퇟~07eWzJQCLj[kkQh {GeBrFV˄0ՁZjYڦ.{(^~!rIz[u\-G$V| $$"KnGVTtap? /I%T|ic (ie*& 4WfZBO:H.Q0:u`p[|MO]TclhU6h5IkOt3܌s4 '6@meP&{nmʗhL&^}kU+ˋѷE{\ Pcw*$|Ü\~7{@`tb+y}qǓx;̓e &s*)N/Ja4nЗ#fp}\7kHJLzwQv:Ff 5Dq%oto:9~ WJ5peM-ږ`Dm?eobOA R9huDQ? E6 khms+.cI/*zziDBKY=t`,w C"Um[n'!8`< ޶:Uw:9oj[p0> rVYĥ蔜%etCꝉElj^OxrWڢZ$ kg`{<l-lo&b)bV ѦX^mx^@lց30̼Ҧ^s&W;ע9VAA6t伻X89RU SpEA;b2ͦÿ)eelՐ Kbv0+O7"ʄJD _a19GvS0\h˧RV#DgE^(쐬Ȼ8d\fL,C:]qΐ"H)\xƓ::WGz6`#HxT/ISzǢGC-wuE! wOr&쎡*sj14WH!C/6qg:C|P4>ˆ\S(x1-r` )vj9,QWĸ!˪+5J$ȧIp_Exop%ٚiI@kf/V,0H"Nřypr:7 \B>+Kd8]Zl޺" _. "F/A7n z 1Nh w!Ђw9@"Lsa-~_cfS#%U!i $ĕRKG普|`:Vs).qm{`9Yo:jRH "JEnb- G>Տ_ȓg1yZW9[Q$EYwx D"QHh1߅dͫ^2֑.uZ84@3+ӭݽqְf42`~"D)vhQrgf\I,b!K ^7 )C䫉DL! m]= $4LwО#yE> e] <յ (˩!_N*b1C2u_؝D ieg038btzμp\3^ /{)Z {].{`yϪ9q'z Mj6"AWCD܃w- |=B{} ˙+٭?&Oy4Oi\~2^\ $mPQnɊrYr#4%}lJ'DAHc$󆰧6f,e2 LLOǂm!B[>^U) 2!$L@z;~mJŜ 9%P+C^S3x;@sZB/\PQՓGc\ ZNCp4ï-y!,Y?xV%_hp~=MR1`N4PW!bM(餂v%Ź `܈hR&Zm ɤPMHI߫M Qǚë?yh$edx?}烙qױvH*XF HO{LdzU}oO"q@=}">ܖO*'?ïg衡?Z3ZkmG,U)"Uh-Bڵگf}]B 5)JĨxӴwĎD%WFJcu`, :iّv$#z h=+R; F* ()X/- }_8F+ZʧЌRl,2aސWyƵ7>.//eXrVKeA\qF9$oG»_;j=6&]n Im_N}/pDr $tV4OIIͱCAIvJ*g߫5nVMb}+3@Jc)G;PyY]8O,.Z KK»u\‚lԮ8.=Ʈ/_ [IIaæIB}V". K^ %bi&BO[U- ;97 !2o=ry CEĻܨ) XY`<3G_`ArH7ʖtR7( u@b@f7MD>bڨxj.dGsQN_4 y,YV)(eշ{ʄEM? Cl8w5#/IFC1y+ޛ4][x)Yn$a\ P-Z1호jZHڤk ,{zuhA K֟(&&k=}& #fH?;G9MDL|aU3|fKuB-,ubU+.ZrB1\dZa5KgF",,N q*к讻Lj p^*s!e%  !c%">WBƚhgܲctr[ڥE"ʷhKaIS@*#B1L^"{ͦ73/@,O|;tZď qbJЧXDpM?U' G ֊A6%;/Doލt1m=9iMJp :##7k}ӍD]n| ث{\2/&8Jrmq\v+ixsJVzL~~`bhUK|Fً5_ZjE'eMM2|npQihPMs Tj Bn53V{SLS=A{Ik,Z&^>G4{VE mI,x,漤J5H*bh )֦c'K6 aj=5Ӥ70%cK*QT4i<D o H_Zs;ٙ]m,N|8kp!W FnXӴ*S4Ο1*؞Ί2yȂCl?9 1K=.hMݗCj31c|R@^3c̝Q'9-Fl2ڽM ,$ilh3qBgmY LhH;4.r;x6塄}{6=MJäG$9]郎r<6/=/*#7cZZ_{Weu 0HߟUkȎfKbU?n`ciiS5#5VL +3VZK|#!P}I,yL} I`e/賍I,HOˊo.SNk,?OGqF4@2 ʈ=%n!bu]0}CA.+@ O$tL_^EvjDpcT/ԲЬ<$SRrB<ENQW$~?F(hofh*;PK[x;X{JwC0 qi.V=Ve5o9*E\  =GZSLW ~i. _l&3&/wR1[ {̇*U?|P_Y\K!H){N>OD9xPi]MVxd( M}usf}U^Ъ]&SR_ E4k0w)]]m/yJdb$:PH7v5zX,/ODz)c{d_0?EfD1hmY AYl+!-qG#u5B#][x4߉*V͒QL.eG߂ (BݻɖF%ascVB66PX6 MfxE@ϋVv_b"M3 cѺP^\O֜ X4fk fg~P)&B4ŶړFc@3:4'²D'Ⳗbh/W&MtVz}7I(8O77MF2:Kpekȶr#>Nܳ2aH~rQOb竧CB/ƤUؿ` Bz/*~B2 `/ Y{L4AZ"nkp2d'߆ROS5ť> Z[*htR;jFyô @}YE0lg^~@yZ>\h! H"qkKo)F>7|3kTz[)6:$JEBn-tHQ׌о"dGfPJ.)ϩ^Rqh)̬L_"V09^4|DM3 |XVĿ%am;[5dZTZ[>Od\ҍ)AЂN8 Z~Ů9Ia\HdZR/#uTZ#Z_JMcQN5="bG*T^l%V~ ۗ 8ñKe: l$d<xLz[OOnQs0# KckhyzlA$ ʼ?W*>k^&Uog]0sI$)jNCF}KՖϊLŏLj8#({F$^ms8qL8/u2#@@6~ 8B`x zmN5ΕD ɩd)#t&pt}:<+qJEES:w|e=oWg4C &T-ve~ZE} ڱU_M/]=c6MdO ?I%*=DZ. 5:qeܔס}ez؃W9ےO܁͹MEfV[KBlf(D$s_,'56A%.SAzkߋ#s%^d/ZYYrr.jq=̜Wj\b=,~ E۸V`J^~LnyRtw%I!% 'MkP^D}y0YA`:t@=v"[wB O:NIt!"WmM^uFþA&@/{ጫ+n-u߀\s?AŲP;ǏέL:GKE_N%8HeI!GN˨XSEQB!Q|q7WIf7[jGVYKZ].[GH/ a hHB]ZLF!,T(a?ع0<g!|TCQF3+THIpG^|b*YVcdIV̕-G;s !hf(Ij8d^kAcʡ*И}{cI7y@K[ǸU4bPqB}z iQJsQ{@sp 6NoJ _А=F <`j+ ^@?~ :UuG:YA^F->l=:T`#DW-b-ר`]5$IRِ38N$/VMhRM*Z ņ3T9oɅlViNJ\+fJoP pc"=;22TĐE@ɦzc niM撨`iN%ÑJVFHظ(U+#*ROԞ3*U:myUH;ei0ˈt;6R7L B@I֤Q`T-ta?e؆qPxq]d7372Ep#kURم#jf%y>2ض\%M >[.TvtFGx=:8mMM˷Q %۲&1}LG&1;/`ex\+WM#NҪͯ2ZZ D MZMb-\CWw |3&FB3pT>'^V.΅6qE:IEN6|gc-zGf"t0Mc$$Yl ۃ&w'T~!:55מ=1_2>]D7hÙac#}H|)}V/j~0 5f퉭3IHI|&DZ"I*Kgġ.@wQ" n@*?Sq rA2B3-`"A*w6O1"FgSSI6+kB2RѶLLAoY)ÖJ2$*o/f!+6T|}ҡu%?r^y#蓍iT1qE}cRy`j q ׋N_z$̶$>`F9ZA~QyP]۰ΖWfXy&~4%L~t:~rж:,xY2,5GxQ\%IVdCؼ; $dέIߚo$"K$ty6}-aBH$xSv_5ΕߐmA")VK@DKLbdA7: |ewXv H~ v|ÖXqϔ/ӷ^>ڙ^SUdJlhМ?.2usbXtˇ0-aYS* }M%M JqS?8jGxخn&7[K|o|h2~Y_2s՜ Qf$(2Y!&_~hn}/ L?DMFHL0Ag{CW }!to8*DdbioAڱP;No<`跩u&Pg|4[g+'w]d>~~ 'nTW EvNxIkua; ?f0K9r>GJl+D9\PIpDt#D}2C˝DQiO1NRSqELR*uKms4qA&w[ ]d&S7pîZ`EC*D|NF rUW6AKDL026Or1K͜oitS3ᱎj`K˫:bhI(3wuS7 1"nҁ̂ q`/J"'B+G "TPjOuS'v>:ӮQ%j.F A.胬ɤ`FPh=E&bi_?qW?TWL`xd~Jbϸk^pu]/JZMMjzfOu(ba, v 4,)e۝l&n|H_u' D9џ[,n #J<^J2:I`7eKAFwlj ëe?Zz%14CʡUYPk(L71)t{0UP䫠&MFt+0(fO^=R-X@ܲmI[X6 4!/uYFvyVrH1 :ez@1xYlyφtGE(LJaF90eZj ?$oH/\Ϥ$(b+u4="vM` #ZIX l8$7=m\Hj-mܢGkf.Ȃot.DDyfiGdM/ޗ T5xm/9CwCW Fn]Pl[^8= qcQl`ޡM'eZӜ=o7D-!cH๾<洚vx4ӯEymQȝg::x+{g6}Adʲt|HXL+\h"VVz-ŷ'@u \sMBF]ikT'\]Z'4O]lU ^'Q- |[=OW>fC"PcFO^piSGN@N<pNoq*y [kLi҃/@w%$k{n0wPb5xa@!m$^:#ScZ(l8]PPՙqզZu@QMI\wEUR]NgSEֱGe &X v7 aPUNaFR_8>3&$OdW :ȺK CU'j Ю 7QPJ 60o3o_5Q֥ DwÕR'UvEûʀՃD㱈ulMoA Ҙ';D g`6w:t~]ނn5/oȵ5G-tS'v4%" *. KYj^-23'>՛S$ `ǙzͳHaPuW.K)SEoO? %4Vma"t+.e-?;tzԏR~F{ a(6^ey 7~So)81֤!X^;i`xޘnHP({aU5L]r' AO? 5n 9oy@,>TrDHwxZ+"7zHCy 0g ӊQ`}@p2?OXl]>f%Y'Wcü( fI[fT Jm59rg( kӐƗjHT_*oC Y}Tj2-) b5"J\:tc"n-CVKopFl UqyHv-EZ {-c64ct6wLlt܏ӿ1:U~jְ}AhtC ^)Av ڽ'8,WԵ $wCNc:S]z ީE/) ol{NEmh7klOYdU)k dԧ bd(+f~Yu@vSZ](Vy6nyPض ؍SEޑ8!"8S̎M@"70^<1h.ôevXSYBe@OVWһ׹r ]p9B:?Mym^]!m{wΪ^RH^#HBu+;D={A%;obGmðG5'jgtAC=%\%*tq%e 1Tn; ~@ xJ,MǖqDW4_ꏣ] A?ӨpTRMX`A].nV IMwZ/'^7߼2@L#:{U˺[8$L#=3We5:xמ6Vk-NCZ0i f$c_6\ QϜ$QK(O?g/"`9ؾ6-m,{;uPֻyi -l{|h:sǚ0 ;.Mf?wsJ?VY'>MzO9=OrMsF_nX$K-CӗΠ"1w ξ r@c~~-ܻ_Ah r V; 7*!CCr<ħsRۃdYJ'|Wh n rRxщCX<ݶ1dS0Gbg*oxT| d&n*5h)TǨZb!K{5U\ _ݚӜO܆LJ7XK%5q.@闅.=< !xP2HFt?TzTVx?a 0Z/ $=(^C|]u W\K$[];] o{%Ѓ< $W+Mv`^o <Q`SĈ:6na#pux0΁>.N9V~)=)*N՘U#!m1EoίƽHƢ!'gN昌w|\>̓Ӿ<=Pq]68|d/kw`ugvo` [qD 0["ZmX;}wIboƫ6(#R"kwWaф G`MۋqFbI^;o^0JQ#%"I0m_nI#u.``GM竅kFu.tgXw/^IG}vt1:`)EV^ý,N6$w@c8Ǔ&#o3a91 Q赣=Pe!;ZM䢉Iz+,UͳЃKK+ҌR_14W@Ԯ6iXS@c=˳>*1|ۙFgB(]}t'$gOPg*RCJynmƽ tgZSlSU1k7q &|c2zBL N, O吅oS5>P S!7&ZMەsAгf&z^twR1&a}"sZ!Z9͝6ѧ{b0v\Hq ON7nؔI-'P?B_*x kڷAћoC)]7Mj a`h3?'GtqɅA.RWŠX$-˔3/=L2ѺH=N⿵]5pE{Ԏ]d] &S+OM} Pzf(m`Bh.OIzLH TbJ H۱&)iR'斊 F62Hy*+6L҂ɸȊ^ Q@V+dY)VkK"SM,a _gU#zhY2策FUg@!_UqaCQ0HdQ03vq:ӿdFMo@1՘iCSVhMX7]e>,4lu"Bt!A*u^ f4 |76~G%'e8*;菣!dM%eOmr ]!Y9XvǾn@l&)iL8lxƺ.M2V퍔1xV}qs){y׭~ɫʥYMeoDJ(~lƦaam=  S`,pG`snb3Za(CQk Y"2>^A-\O!rR^ XWh\boc`QwL `,C=W8h?>{EcSKK%[6^3,T ̨FRey xC;/cV?ԷEK룢)͞Žy{778s@ca ^Ǣ )&Nc>'ZY?E] TV*@-^Wo,3_ڒT\1t~/2F<{&q5_P%n$ ukn$  S/{ l5>鵴;IeWh{O[=R2<Ɩ 3 QCz O~''eO@m/Be c7,.>o4W2g15[wͧw3y-QAD&Y/3=ҲD*{yސ͎(g& 8S1mZ*D/UcHs/ryMRMV%N[u 6H8K3m7ϡ0Q@vca 7dfa?w]]O2CR 2j$*X?2'IՠaAXn)nij;s+_$&y!K?^=lxb M3RgySpwͶAR#\pU$@cZ8;IE^Oz0'om7 "Aw6M|(vǞ)7c"rj /!:>nƽkl&ҙ)>}hZpU/֟S Eu"83"Ss?U^|xrb>nilzhqs'UZNU1g `k'S_Es?*A[Ӿ 8vP 5/[ "fp0<10n4Z'- <,Z ]6#$1$l NIYU!4+GZЭN-6-aMĠd94jx!w?dya mF95/ P챐ot:9UnU|p+,K雇Y. &94zeXV*j.a𽝬Tج 5~5-I_TK:Isqi Pf @g4O_z-܈4j/ rP9GP9ڹ4M\r,G񱸟Rx$>wxy,R}{mVEanY{ k~bQ!4sUAIϼ W9\f> LI~M-?\WzNM)`y4x-L&ADnMhC /:-kr{dc=lhGXG[ 99!2ݯ&uάHkDoD\k1r(+ia&Gq!zm n1kC0îr,.k? '* !D0ݤQIh ƃ|v *v/ӱrj(?/yLaf9%[t=B.,F \+jSx 7nҢ7bʾy>T>M5=V1*Ql ltkAQӮq]މ #PiHH!dW>i'. ҝg5Vck ꎞg Gts(s8(\)%DZ W!A1G3^p#AoptR!1$?Q$ٙmܝ0@m{kg F}5$wj,_`o<- 50(Rr ̂z: wMq7D1XБ{g)ь#R6|kV 谶s\>a,ZTS~(v=7ʸ3m0#78twK,!mgCᰩ5H|E*SlA PLVGƦS^^:/Ej66&X$u c rsΣK}NCln!R@^ =s]+džfȿ7ǜ}Ңx:xUD4(U][c9JR.Εdl\6}%l BrOCױ*H8ؑvJ|@EU~6~VVѦ\}N45/SsZH`zytSOU`*tJDƝ5G*hѻ8O;r?D2 Tl1_ҽB,~c =^]/\}Nd/vΈfHGL=l6!dV:RwS1Jﱹ)-'`~&E٧p < b>xZ7C2`T͟vyn4vQ.SoFt!=9 I2plgr|r&D6'jHhNI™Khsn&0Mt8q!!k6;[n&"Yp;1IJG`bz? )8W߭]/ pOf`Ȼ< &vX̾//Rڀ%B&bT8L,G]^T@0X38ױsU0Rr8Կ" "Xb￴܉$UHMP}f&- xu#ظȱ@_8¡d \b43īx ,c)HnE(iZx”jWDv7lF# ̉ l]#{gaTo@8 kbّ5OOX)Ft> <΀J-$KM@KIIȞYC-b+]~A뷒2<̒^`>熔3}RBRɊ͊rGݔE eO<*OX,I}A( S .WyQD%}tGvҨ"R_:gnz/E2ߑeі &N7Ư "@~I޽\-8[KȻZLBԜg1'N K~v vWIZU.{Z_?.(8]# yh?mlW_s]?Mf#U(+t8ƞ!P'k ݷMcg4 E^Yn2}~տ)z{-| ;0~@Jk-b:]iRB %AGX41{]b&3.\t]t_TbXb66;ҜRpbl:_˷qv%U&Fi\+h`72{fU@pBBԓ.lhh<&dQ"Jg1vP68F1/#"j FN˯JoSI}+ίTLI3o~_'G`vieAV#Ӱf\DNS6P,0NO1rPbkؽ4?Q1=hA۲!ҺV!ȤYj1Shpw*D @̓>d|UGQ~qU\>i3!#+^|*Ϧd:ݵGs==*RHzKkSi_8(*GVp=^~Am.a8zJX(ïɥ0m{w4%\$nN-RV|) F"_U<&)(t.I+5[ŚaROÀzQe+@%ckŹFt {mq2*.p9jYjKVY$ε`PR*{>bѰn|: 4"斯@w@sw%('^rѪ1NͼXw"y@(3C9h1~W3t=C¤\h]eXYSw|VD`nnB{6}'>7A:~!~Y~佥BYdpuP?xk jHrڹ› cVS@nUl!%?;f&\.Z9SoJe7cѾٱ4W5i29RlfqmJPx(xRjeWz'U4Kyk)! T XaaZ zSP![}h7wJr.CycZ%^K !^8c7Hge1:4gz_{λ3Zq+ԎwYbJj}p3:%{[PDV+_ޔOƊ"btT_krk6&vnЯX<*٭U|WUljԂ't4_zWi'RLfD^$/?W 6.[ΈPKIuO9NMWY-VldGU׊[x#q 7Tg> (]TorXͅpHXߚJ7܌ND0Ol%Kd-bXjϪ$)A-l1Y,y~Bw=]OL{yxhY] WK@ZW*IgUݧ6>^gp&6_3-a -. q/LȍҔijʟzU?Dq|d$ ", VSi٨N3 ,*|._1o,dw n χ9fyXBݫ3RE>)D23gK|:JW 7 6BJY_Wup +==/rWL.$UIUxfL{ ’}R.L|7W6զ=Y+$bC𙒜w5e8PJSk&U: `=_S IpeAٗEL뚗0l.D#4 s*UZOJ(EXO>4}%E#!խ֦%8Y6ߡIUl-ЌӦAUW؋[:t1/*L4j3i/E dp+}!Lf~UIQ-yJJ)5˺S=)Jx-K+*#Ӝ,7 hSGI].=g~@H;mÍӢB%mKكU$?Fptx R)QՁR<ąXQ^d4_׌dEW}RĭY%<'cg}B0 m_6%=GcAx%j7Ku' @~pd+PK^/Z˶3) ԜTSRa"{a@=4u4J+~E# (>LdW]W50fmszƁG˳ օ} nwlt\FﺿɲQNiA7q>+t7ߞiN&e0|~[k'qeh2W]=i*B7I/PCZ烏ki_iLŞVMYSj*m{:'Q^̓ rWdr@3(i%Pn{~>ټ 3Qz4b_]e+ń Êy ㇳeW6\Td]^p/m%H_ /cFıj jؐhs ;ˡd6DCNүHrU{%Dsךs U/R%1L&Z:v8d~٣hr%G/g^lVC5㔪)-0c{Dv˫|ɢ:im(.C- nh¿VXޣs/H׍ NRn4wS 1d.3Ɇ'iwU|?:BMZA"2EX[#=t\#23gǕ50+qC&N'%vBDkfَw t,3yšH݅}_iYW,~#wECpp]2H4WOkxznN:q"2,!͕# i)pn咺/AEr#)5paHJoFkq@AqOݼB#KEg5ω_W$+G Дkx;otȫnwHtp.ꐤfw.õ*g$>՛0@m-by{N4T^=]‹ݕH\852_Vp㽽AԿč c1`;Aq72DP8tv=H g'pW:kK453j$['GW hJRngH_S2߹4>>qav́; h]fcJ͢.m뎳Y2}~CUd~51*=?=&9QpS[AZ;אD>bDH!p",T)3jE L Z)GG^ma _ jp\b`٢5v/[hg C^?tN< i!ïRD&;9߸Ճ6$\M uPbL%ؘRGIx'|KhQqSo0ȘaO]K}kJ;q$ 7 +U= [&sNUYh.[_P80]imw,}Zգ4MZ PPpz/?.r|{ bܢ'u˒0mڂB"}M ZPJcqwv|򱷜de$Õ^g&)Y'@WIJNg 4艙 cfFcElf}ZjO >8n1[OҺBZɨFq'0 -A>S3*+G)n]y5[4_jnm*,1X$j_C3;~$k8s2<0e=!n:r+9iTtB,9yLu{orMSP$x ~akh?䆀r.P!=_4Bq_9+kIDBK~HmQAr⯌d4OYZY܄.3w\6 M=%]`حo莂\.c{vdRtsn͠rfF_i te?SuS;.eU׶1rY`yvQ5>ʔuo1}d?!&d vT"*6C;J+MW1%j {G")i,P#[R=*^lI2 Ozl0tug۴5c-UrϨqkaL(mgzy3\]6@tP4kل^NGY {V(4יmvn_c>Ѵ#AަO#c֊1Й5V y {HLea$JWp=\Ԧ!ǛRUE\7/QFd*x>%퇴J*Qe(n]!V{q^Ƽ'`y&0+rNg1WξUXgQ Re(qG## ʄF^6q&C\^ʮYÈEOYxGc${팑O&rg0T#\Þ[x bЇF O!%Eɷ?f[ ټnj`H:'q&G?3k8YB65TM4P s֣qPGRfsƈz _VUXX?zӏqӡU!kfRTMs{hw$W*q7!z| (;$]w{9'pRZT:Pbjž%C@u,_yrTMy W$@/&('iu)ie!7qnJ?R~ k^U^*4OM[>Wh^~lFz?VC8B ΄R'_}G|2BQ LtWkgMW|-y5kk^,bFv'B7;˜H+23bMUr6{Jbl;Lrjm%l,U_eu:ERb8"Z&.C-8)ϘaHbk|=us ®Cy֌-6LqȺɌ՘l/W6&bxB0;H~ K]sޭx$߅ 73Kk|{jgdivH17(*__(TW$ؖH#4f܎i$¥5b:c;ERqOɻJ^ "2 N.&Hs`y" sh/}K(vv_1&:,PG)T!9b/>E5haQJ:: i:՟'tt.AA[&ô&Xڲ 94ka| ~t~ccէPO^(}1fvS+(B_DI%9ߊ =+V[@\H*o5J1'HQXs}Ic&mFŘ|d>?t~"jzTH $}izDAPt~_d9u}u^6<|,0X\6T Ep (?)_Eí)5,^PCe'SʕpwX{&蕛zfM@F83f{0L~݋.&[+$ HWAP)OR$}QI9 4;`CXiɲ|TMUMGxtG"?@aMB#'D tW Gjolo wX &@#F r:Et7S$28aZ޴ɁS9+EZխH?M4j1u ??hϣKdn*.FYh5&s5fӼFQ٠:fFBĈq*H:3rU+eysY=lp͑4 ,dῡT`M4Rk$Ǧ2Ōޚc)_N; ^[ۛ0 u /ǟ0ېM"f`}J/ve+ו3Hu;~&̈0͠N'n^x|㉄Td+lL PsB`|?s.h제C#[,e%lÖIfw"Púe'^*jiMzI]#;XrHKqpОm§\9u|P[e _wHp{afIhݿXq@o -e"!8}w@&_ՕƸ">}z*^cߋl2A(OlJoDZh=?E-_;K|D\RQ ( ȥtYX?[[ه*&|@3xGC9IlhƹRvЈϙf&|''9SI'=^ɿʏYv+ߎ⛔kͦ(8S XBG.2zkMB 0jc(50KF%LZd`R꒫QfTCE6LY_`<.~̹4$![(xssBz %}wn=[+lJ*4Rcڱh)c60`??^4jWH:k wCvπĭ^xxሮGm>az9ذy#I|վqFSjKN4 atTaJ$L=Z vGRq c&58 i>Ěc/5Ŋzx6J&CqZNw98Zil5D/7!}Fmj}Mf/>$1J90^Vϯgv3/1ІŒGkN(̟[1\fyߓZEޚQhTf@g~ `_L`1='GiF 2+.7Vr`P$OHU %xKa rgBw٠kD<'%O"'佧:B#LN焢+s&ؚgN\x Cw0:-}%6Xn~/$< kvlƎi|J}Hf ,#F́BL(#R>XQ 8/>+=c *o$xDEA͏70Hs*CMnӿbK ̱ /`Ȣ:gqtS7v6{(p1k#RIR R_()_@GU*Ho={[T\d{8jS.8*yNB1v6rL+}:I$ =\<tߎa]>l'5&2Tc\&ϙ?DFvYE<ݟK釧C1[Lcmw V|fҎ#hqvqWľFV ')),G9K=u Ҡ~0t{>LrrhG}_Fam_Sē )yޑ՚Γ8g -B!6yO>p RNȇiݱQTUlA\̪WB"y҆C xqF({&MYVC_+Vrj P㻐 QR5L/d;\&ԡBOTzwZ;u*`|'F\K%-a͕%{+FmR$Z;NQҸ'cQSi Am24'B:`n^V'! Jf;ڞ-tvDG = f$w@R-<\}ZYCr-i7*;oJ*5Z̤_F?D0yĥȵ2%qVK?c~?ӃT#+4lL@4:=3%{’ܣW!֩^,#l8Zmv|4!0K3 (j_Wme+5c%V(8L޷^15`C:U)MaD:iwy]];"L$ ;/b;w -LRXPtnЋr XWIpo\t[6/ꗟfNav)) ^Rϑg([X%s lU^ #vqcƐ??YzF,Qh8B÷31۾V;9x L:vȤmEHT?"og-¨ַJQCJ; ~5)bequlٕ:(+;̀$*MmCêzfKN|J=jS3$9+'k4K~q/sOlJ35*0\D y9~ 𳵫GeA&u7szObu?b3Hĥbv[Z noqyUOٶ׽pݩIPs$,i<Yښ6i0/B1-8x| țOM4b[fpu)D&*Ʌ"qLʬѰ.CG3!fh4^>Ws&觾L!6?B/.'$ b(6UcK{18RKyߦ[εS3Ԁ X93ft˒D3%E!kGʾl^,=)Z;]uL,'9h^$DQR/a>>[TgbFY- Se).s &)R5K+8SIӼDG:.yI]=?[Ryi} Mu+]->v:T F=m H#,q!Ng<깪DKgk{hvD29<}p|ѭf 0m 1Dt 5E , sWm>;˜;#[tM5͚)L jޒ՜LfSf; Ѻ#ɦ.#{ R_Ę:(zd$?Ͼ{. 0L9P!@,Lq@]8h<%|!CD'#^pC:1C>iJ 9\9Yh[_Hx;.^TqrE~O8NU5:e ›0H#_ם!u'Q(Rv75AlN ap^E]U& %'ޛ x4H&$fO*%%;QKD XXV7:,DVmED2 ~8[RkMrP#^a-Dv 3pMjw>rӍǶ4,5Q^Bk&+\bKs"$sL;ghywB[rTq$rAń`q0}yC>Z1rԚrc:{n |],1YY<3sO.ֲML΀`zܹ k'eJ Rr?=Թ4n.]/'oǢc*X'To:L؟҈7-mm9+X--|LxrW3?QL&~D^8zU 7g@CBZc߃Ҕ]4AiB!E\_uؕ.u^l e"%vpӝ[~=nDEmxFp/6$(RK7U6噟1gӫg Ԇ~ZՁv LO; Xo\ސf!4$ nh /|x9L/:BT-/aM] TXA؆yސIwNdh?{HO7.Q_ `=7cҽ08oRu<☙ePSY Dc: ڡ[1%}G_p6 U.><:" s{Yfh ⎢;kv\)~\ p$a;u"\dkVܿ3 U`w>V q=PͮsaSb2Eza%br(L'rMcu3`U"6^/r`=cX &D:jQ؄ҝ ]KB @ɓV@ĒOE$m]ɸVƢR{WG 3z3a }([CCU:>${ƄD]MR0|ݘcS+J,C*PzǷ-M i>Ϯ޸TK3:ņS1d8zPM&>/z(͇gJpƐ4pMT?U :)2E"ԛy|W(d"ɐd.֣EՁLip6W#@ih=lKc*=.Egwg-A'w[޶DШMQ+oxžSeBiwAZajxDwNxy 3D6/Q7A NEkQ(覽I! ?fϑ;$>=1 ekKL!=ғJ$.R389T<ޟc5Nh 0@YbpO `CU''֌z+X'ε6w5}p=7mmj)"4?sQV.L~}M5}L 9o6.9yXu Xf1b^-[M*FL'$&H#2f Bt^,{nV8#/䒾Wۄj&ukX&tBjV_vFjYw.:`13poZpYPy';ImT=fN4૙E:4;U*\ ,wtQϣi}RLk 6whF 鯜\h{߯>(#_-ݴdol]LnM]bfzL& `/‚Q%"=N(gc{-v6aߥgG?a-i1 )>OhVg&}Ƣ"]p#!$`PRmIİb6|[_)g1ƥ}9[HPSBAE6N@ӌ@ͯ1%v@ \d0"2 i*H>_ǧ/@խeF& 9Xq'|=j#>q}Qar36׶gIf4IN +DvWm>cHe0Bs6 ^]DGfAi, (7GA_ly\%_5LzBqdYꆍusvKkd2Xr[<7(Ob\rkiWMZ9u?0pmtX++P3m4hPN ڏ{D:EIzۮ^\i$I 7GjsbLP-Lk<3דb.Tڋd:a추)"g.d[8Ba^%?z67ش \:0<*zv,YȄ!stxw+x^FQ"RZbQ(IРǓqr2T݅3djVa|R)B(!+NAJ69gΆ.jA$FsF?)xHԩ;wMtByA?D&7c&`3S[4o#x Cl^lSf0LaDӼo`w s{Z'T6gtZL$y#A {0٩iogArf@fѱޫkQǁY"D #>$Yg4_jaAt0Sq3|e ~RjO ICUcϓCP t0'owўo7VkJ@nT6<^j )ae?q.Qg6E ?$f0ȊB6 g\>S;G/tyDREߎLIRw9w)EuVAŵ6}fΙl{C/%('ke5=㙍$Y#Y,e'ã,K鄇tL`*_s{k/TQ7\znק k``7'Q A)ޗBqcrwr ɛ u\DPmhdhˬ膪! rkz`sl钖GFjMCi4>`51[Zc*>",hҪ `*X.Ɔ&XPsÞ!C:I'ݘ!4aA<$%.d=r9ka7ך!)-+,^F?1ff4Y㲵[F;*[ slG*1Iø ST+,]amj8S0Qr6ʩ@ď̇S#źLQŏJ+tPJ`<a=ai꾀Qi-F؝VrۤNd'{LM|O' iHE%ߖ#!pD_|!,On* <0iM UlR^hNGd |HnU/]1ON*7:gjH-}Q&`>g2?珌BB%_O˹T+tpJJFo~dsٸȸ ˑW_ ]{ PJj:K_m׬>3;wJ?@<ǡQP'XX)%t_=M;]\KΟ ^NT9wEg_m{N_F)^R4g9]6>Z PT!8# cHGWx2%Ew  xi1:T3I.KX40N=1a~ݵ\/J5KnR[hp(Iq鞅i:eJ&,_]#F=Q'TJDX^㩛&\#$Rw-KǨgV,sfފ=\p+nͳ*<`J)"c3 EBtK--Gj3Qfh 5 3fo=w o)~+}ߣ̅M DWE^Tm1ț0%g"[gzlFckJU}d/O|[յR s`H2ljϢwS J=|`CDc8vFDv˜s kM*S=Jd^eAF/9L,YYn.\_p @E~Qq0uMeؚ}/bo\!jg&&34I9 .9a_w-UZY0~>d& WYRfzrTafp4PPꀭV΢?q D}}5"ؒ~12*>j4̄km<nPoV`[t :{Q2SO<󨔛n_/A7SAN=Q uP)M|[t]#oUyG j!=dMQ&"@{Evjy -_azatlbs]ZDyфJ Ib/>kMkiD"q8j(}e մ6K;`FSD6p= (X6 AXsXH?f*n&[aCkсow{DVX(9IP?Hl[H.n!Bƃ|lCd,e< D|91?Ffs3iℚ7L~8uD&olE~%i1-~%g[e/Р椌j(߻>0lF1@dNވq)|}t3rѯt_ ,V_k8Da +[B) oDAmEl!riPWmШ oZP#3f}Nk?dԼ3YpmrxeiHM-β{&]m > /L9IaRB&k X iZP5a{|N BS =LRvSvL1*=b#`a^|ZNjݿᓎ7Oy/֩"1ݛ|3?nB|"E$oQDCnyZh6be{K¨ESs>8V)r , ܰ`ԝ-o/7ع6#FH,aVlHsv x}/wCE B1FlOI.v [$ny=y;\ ۳s &>KxD7!3hِvNVOX@]ܟg \5kʏp>RM" 7@xB e~!*Zŋ`A PEUY[*u.; G \7{;WwmX^W\#iFFm-RNcdf=ηp4]W*,G57VuC{XVXM!@"HSGdZAPa'ڮ S2~7LI+f OSĮ-?jcwb/2<̺=f܆^)hLc6B*Ol2@ֆؤ7Xj7oOCN8*OMl}mZ8v竚 zd2Cmi*ȺWuOhm2oe!J!uCy6b.uxP33~pa% e]c2Xga1}[5l̥m`lSl #/:\w OAq!9Ѱ1(&zC )u/r۝үZbƮKفV|EC|KT{PeAEh?8J+iXjgb ٙޢM6R &*)zkC_Ve;=++(vX\[[MK\LH(k`yYaCo&8'{o@x) ^F4 ^W5~@ J Ku;0OцSQS9ъ5)]v#ˍuYHYٔ˴2Ȣ TO2<Ƕ0AdHwŸ >0* #ZefkSQ׬P; XaUBVFA%Q̌ded҃}|4YۮVRĥ|g'=(xSE0Q)(,,P>r[njaNI._M*+q! JQԚ$&:pGNi^(1jոu%ԑJaxAجL>/1$8í nOsP#XֺxGըD~ SZ>IKF&P1(fBXr3ZtP{1uv~k85/Y??~ o<;bm_iEb!2t!A[y/J|3xo]3n;51NJvw-۪ito_3 f%==zVw9!Ջ$Pe"D븯s LXzAXYW-v|u6BjI[QrWa2iCb*I_;k9EJKAʐ[ 2ŠNG㳎sQ\N(U<" >-.* zEH6F?EVV|Oc ch18ݩ e^`'eA}jRE^tMNG/ Ua`}ӲÀk/5a]ξ<09-Ʀ :)z6$FVgXL<z]YϢ}w{xN}-.>TIp5g7.zoVhTy'~(f;,"R ߵgUbTQp3C#]peb0D%/ȳў K'YEf/!~yOiStJ;' i52e"v6BppIGN=f]]oGW rU73?5 &'%Cp:?s`mm7#<}YΔ % )Dwmy?͒uхC?$& Wg(CbQiR_F1;EeDAbÎU~bjfro߂q"aSY(X7gWFx%M($u=]9@nɵ p$/j8_pg̀FqZlR6ugMNCY+w'7F&a{ޮ"18iGo]:;+[CkX[@-$Sk  > *()\_nwQn`?Şe@qYneP *=f2wlP)t%?}2}!6}hOzӒ< )0Ej 0,X[GK:.PlΒ%UW+ЭO蜝eGqV WV;8]Ju19?D)wIHcNų0߃I|G\fԀ%7+m_`B,4ZJ[3RVWۖfae^x^bNc'ʰJD(tI&*2ޏ%P7z*PVie#J.}p!0aY@,W|jC--1wad^{gZ{K*{\z&IT:K`&׊K.m\RɫIpDg ==]1O%!K`Y=ps M\U]՜^A*VbޥRcm_W+Ei<%z_wO|xxYp~7$7{п9篆iG?zSH4L)0a2|Y|dhv5v9pkޥ"Ud3$e\d?!\ S ?h%To1a.hY,8/&\ɍXN_*R%ml3w6޽~OB47lMi=<`7 h2rƣj}ݏuМ6~ZDSf~. L-]crVURxC#Ry#QGZĀ2auwXr;?U?"@ '#b>LkG.#Ka)PL(v:JXuy0*'"ȚCrY#eS̓dqH^}ߋY\[;vo<O1߾J)g眺VpM 7숈?4z@ WЯڒ4z"tᖾyLG$u [cbftAvՖ{4*߯Kǫڷp4ʈDS:翅?Ԍ1|aH"ڦ$rؼCx$EoLx/CQ=b*7%Xg5Tv0{ VGTk}KoeƢ6#V[j *#C~d92>DDH:K;wC 4\b ;9yssN KX&ܩ@-uE|o׿cs$M鳁7HhPv$B+NPra!52 E(d.}qy:W9Wɇ+tj2îal}[:0Up]nmΗҟ\DQ-X\r4\]R&;4&03KEX&dKAc9## W$䵲Q t% a,PRlj=}uZV>TdZzvSUOt[| (iJ.NpӍ!z[_8p"T*cƧ>@Ḋ{Ž~O7-T@l$@ԔJ񿐢8=\`HO“P'EzPsY&^a}K߯H:me`W=DˬT^3ɡmN|Di0"'Tć'༂ޜjXtd}8 ;o[B]ם3L>GP@l.}5KBIlYʩlcfΒ $eϐ}󕒤B@߅D^ivN@KUL׾BیI!,14kmBF3nf W{r"} W0 5V4ڞ_?rܧQs9Ck (`_\MCq ötg(păMűmGrݖd{y)dzZ $ȍʂ7hĻ: L%^&h?jF!I#z$qKG3h/^_Y–|/j[wo/^!wdj6}gZ*A!KpcT {:[r1 ;+"nTE @@2iV%n PP:jZ HI̷*{kOI|!S?m2(]0G(6)UHwR. W)g j@Cjla^f9נ wD:R鯶N*AE)g-ԆI'>|5I@R}&9xYZ[QsA>n=^ZOt`MOcG3%2}1!Ad@PYԐIeVxHP~]e\!3t!ׁ1p9bWN-~V%ӪDM vq2zGŽI#QO*C8, >[<0>a&rˊ $ųA>5~ݟ۠JFݳHXCޘFr28 uOʧtMBf趆` q]"a*Y!2 nS R[|S _];3N6gXY5S%!ѲpԕuclnFJ32zKMk@msߣ:2QU4edWVŻ(#A8[ eE;iZ1d,dL;0h[nbN5U\J?Πn\9_;Pꔥ3 bf -%?c@jKe?]xI'* QJcQB2OIclCA 3aF^KBQ^~rҲtKG~}c]u:CF`T?1ﴨ+6MlpyfAƂڂmfAj1͒%JuX@xhcxZ̤C.*ܓ 8O4\U l_(q -V3*,Ƕ2sYBdt?/y}b'w!=**-}R]0M~гL3sl1N< nX.L嘊p4)xP]Wz*ialZ,Fjkeg+AY®Z=1#ً5]~܀)Oz^ =ˎ71:V(¦Ch=Vئn8N<u0&T(ٸlAٵr7:Jdl *w`jDFsQ[A~8%%&`hOɷI3q-HT$`Sтמv*϶o:={@l? 'ziNA¼3y*N-=u!aB@o #x!dmz=MR&n,!PixTxMb.|u -#<*[])Bgܪr<\q~隕fM JHΎ9G/[Ŵ##slMA-an,ѣFԚ]]p:aBr4؉V5R~c;`qJCL;9;Ю/ٚ'5C 4$2KT3[, UF+?m'zI?LS[~}_gvV,S_/K:VMRlND@)brG}rYv,zfv oџT+2'']gؐ=k%!7Rnhi2/H-vc aJtYH4 >BJk{z!s;) @̣-{(.Aik'M#8=2B5=o-+.y.0A"N  ,R$No?NKb9T^yY8։zlt+q?lWA5-nVrrݛRz&>\,Yx+^+vI &LnUMjiU>ҝ_+7IPY&,l__{BEK3:{)8BlC9蟷yAK˴<Z%$gM'L9yk4IC޸@ D@˨<꩜#3"rSVlctF Dqd-Q80! ,|&+R vu7 U6ɬj7TSꞬ<$(.az5Rw8: Ly wm)9#4[|t[]]a WCy{h3cv]CUeuo[Ʀ 3U|7/ V|_DߢHk-Ti,0Cr?^yl+@\T靲50ţG!qi!*Qz|ޡ~jYgB"J?*Bw 4b^Ҩxߌ nZؿێg!/C'}CA0޸S*| ._uAtBÛ"2nf3B\g%1bR(*=oki Bp|!HBvLP@zAkD*@E > Zl&0N6|ܻ,Kr5N?ZcYX\:%Eksl<[5Rg)e5Ps ԝEn֛pF^k~:+y [[lS$t|-)׃mB@M!u\8TRV$ޛXH6j\L˪yx$Ph|!}xvZ #OYhaRh Vy:t3RɥZLPCqJlKwa؇kBi)G;U1?pN*3"}p u&5EmcGsB&ߏq7}C>,;ʢ%;/k U^zjiV*X&j,FH!@PB&BK"Y,!Bz^>7hlc|N9Lɍ}լԧtݘr򊝞, m6{Ö́u^*6H.pCFhmoxWm @j$DL=@`OeZP1caՎU4H߯n1Z n6vDy}o;7^ڰ0bppz]D ;ˆy?5 .e!ѾpkG8,meD*aE1%^I̛EbcG̖cեZsFukH73DiP*$-3`8cr^Uʒ1B^K2/Jx({]bqBu"-CyCNQ>@eg"cA#@4%"V%AquK%Yfro@dvӶ$`Q !2gNK!Dx+jCf=a| H/iGJ$A4!Zj?=5A|w~ E5 "!tOٛ@~ܧ<IkQNJElАqgs.}zuN%A=TxwfpGS"7jp 6PBv?(I<`d4R5Ȧy j9)F6*,aK_҃06\%fy`̳6{K Kws :CVY3Nl&_4\D]t ',#siHhS|;,-_&+^ElSfh#\J؊-ORB0B'Z?;j5X9_^Ǐ./E{?׆Yžj|ّ*uSb2ʽ*,58 ~ o  Mh%MM=fCxTx9'紫T& ͠ɬ KVY|A PoG8n+tV\;\aqf߬>OqdARBaWZnd XjSi ݠƾ^q9Y36<-Ķk3X8ypky<2,~8{Ҟ|@E]>RS}rwGpe[hs22 q~R;!*NX Zf~8^ZqA\VuA4`;RUݠъVW=*rEzPWb1n="]tŠȬc%= ;ܟ9|[|pauIB@j[(t,sPNwt;@nPLRwadcסAc[P5Ϲ;>uJ,MUtlzoDQK6۞蝤6uXInU 7Ao%.Y~}N|k6r_%&7qNM+Ѧҝ}Ѭ J/iUlŨa8U6e/7p3L-2jX9!Zj)~.~) =gP9Firΰ#hv9E|u9N" 졇삽!`9 v]&+v$G;U<&on)_pښudO9' A g%j#XXI 7xS8( ~6ѣ/I ̦È͖e|U?g`Ō'U*a`,ɝ6aWd!5x\&exdX9: w}?}v\mʂzVvy'?gQ~r%D 7gw >igWrS@b1I \L޺7HUAـILy[9J/P됏r0 Fdxإ.\ԏ ;ތ&- -x!nMD[RD.pdi;'نfM"JzQOYGK_!kx\t2QVH_"{1Fw;Rɱ`#?d_iAvl/r׮ZqI&F`^[0EqAv~YEWf =AG޷[r|AZOrın[ABtU&Ne7}0\AaxҲD@{&}; _ c5٭yw$EhD 4puB;'뿜 @ӶMձ\%dM$FY!u3ӾI6^~!0*m7yHJ 0ҙ#%d^-n!L^+u+{qk/ i@] Ivt<,>*,?R |@;Nzayy1bE"= r<)0f\ZMgpBE2J|ܔgH|Zljb`2hr&ATһP}wf>hTzg4dwmaFtkd'۴CO3CRԁ&H&i>@wiB9@F1oQ)T > {y]NL!#_]8i+Q lEF@ l&/;Tje"LE$ >qm]S%~:jd"k 4IcWjWts'Op鿽z u3XD0*d-Z,)RgW(ےřdTHoU4/u!(R03t/$}?ga%A=Ԙ tK$~ɄT;9!M(1kt1JB0p1>:J(kiT\5%בK7W/JSSjbY)beW%ӛ,j$O X8Z}vv7ܹL}Sr P0ڨDB4a (mAs;\ E|&<^LBr *CuWꡖe>x2JIώ<4џJ~JMxdhT;H%AHz#Jօ7!8W U[Vݑ@/㾴[wU 6]3  C$8pW4&\g '20k'ER} Pn}| 7]FsG̫r:kЉX0 J|(* ;M ?<P-mJ)5N%|PQPF~Wg58?`#uG0;vAG֔i(96Ljfۼ6GTJϾB7nEEnnm×tjFd9) Pb`>Y?qQ: 9V6HM[,Ӈ=x^tӭ0̩5t9G,tTߞ y@v6GnZ['(0p{]ޑI93SRζr4ZeP㥱¬t4&޷ ^OқoEW y*V Og̨1j Guk1I/H%_۔w>{h;S㯶/*toZ>FYu6W!lq0qi0o=6?rt~rĀý.ꘟE XvЊfc`tqQvMcp2IiOMA4 DZ Pti$uJc=~0ۋA`<򲲼IBq/hQ(AP [5Ml,.-q% $4)lE UOS|P;4_p ɂByS)0k6Э*4ݑ$b<0y{F<5cZBmcg0>zlGe-"]6X !ǡʜ] 8>o]KRmXTDX\f] hC:DO:55eH0 ,$)bwѩp2'8M,:?GM|ݻ%]JW"&e|j T A)3^GeR`1taX% ի{9BM`(?J -(#1%FS yfPaI%Gj|ku2t"KNe8n OqZeD9荹5Hp2Jor@Į"ZE{U\"-׺@bwQsl# JABh ݃r) ZQYu7 xĥ)>s~`:Us5=~$V9.K^oVy)pMKIgwZ-SRNPσ*h'cyo*벑cgEKk 2E˭naT.xy;dmr 6p Bu,"|c`av`qɂcr5G}UΆKOX;~!jEG`K]al<1DSsM3,8:F8k!LS+w[a$ԑhf[o1 J)VGOo#U?( tpB<}_ ʶ' 1Q;A4 `eC%P8&|soWZqY>_GTc%Axh7 ^Oj5/o>m9p\D-\mL v ;u,遡E:kHyLBwrn!}@>0 J/mD~ :]<)OX|e_e Xă2vKPd7~SU8.l;x?NeN v|8[*Y%-^N_+zIĬIǂl%,t1Ot,B,7}*eыHErDqCl"NDdHT$swh觬+F͢Iiq;T !jSwufr"O Ex(uɾ]LP5g+˦U)Tq=7kbSoTr!܇ᷟ".)"'#;eAsLI @(}0r"I e#_MF7W=ekr\K51^BP|O✈ 5OXAǖ"aU$_"ca5}."Qi J0 H'?zg}oΦܒ"}ؑ7+W{^)G0[ {--h# vE?#v5 *O'r1Ѿ/OҍQ"x ߴqB5Yg;nF)@r=*xW[1;,4E4ҚmBnϫKZȅ^{]C޼QyX & ~q2OÑ*{뻦1rd'Af/)sYkON,Yd:dm,: &$RBp YJ g$㚢A @ښk2a.q@g QɤLC):jc6ͮMgTRd |τQ[ʞŸi2n).m3a;F6{[7nPjc^:E+0 N\0se;̆Ho]t!ʪ+x9Gy ԣ#w&Ê[EkNq*;4L/t{1svb+e{50RCPzժիqN %FW@s5P@eeսnk= Rq{Hw_gŎ/6Sձ%2[4ĸd"fXWb6jjl^)oJ$˱(R{MFԭ FDg{ #^l;ſD`ʼnRfKdokgUh˰XM|^ @\G= k_x艸ųϺ. pI _mz_i'$Ƒ1a_℻my:",f+[ҥίt3pQ|;M0~jMFI du8ب&tt.]]ڋ-X1b~!,ȨCHW[M&ԃ5O+H-|ZYۥBkK~7TjEIz)zbd$xɑ$cUiM'.X-oPgoj'eësUo3Ld kfog:(yj9D ŒX ؋M.,0o똻+-`v"Dh,SەU) 6}x@3Y HyJ?QJ:X v{ȕb$ǖ7| nܕ~!CK Ơ> ^9r*PbI[#FHe@o|D0mA IX:æ\^[F E1}0dr9 dŅ iq-t,)܉Rd3;QY[$sH~ v>6VٹI? s&e_;~ /TzBEn(:TP]Wط1fٯ*iFl}UT^ KL։G,9g퐇yY;G{<ȬK }:iG NV>K.AԣA!.܀cW{IӽCFn~e([ e']B'=vcs]cE1{io\^ ɬDH3tzq%:f%:-3Tj+b>(;* V73et8ӐRzwWjpem(4Ydkh+8PQD6VV[v{>sM5<ʊ]@JL1{#Y#{ї-pM}+=HV)2?49Ȫ,Mv֞/ןLG8iBe8-+qY#Ka$.ZGe{9 i-㯻+ȝ7/(m.َL=Q:ȕ#6@f{tȀ dbV4myZXAp\VƷUjAm#/*k?9-"3b?SAēHjڇHp!\zsDkkzDxᦉŁcoVe5#忖'zg{@( ޙPr]UeQ5 GYJ/$ BܟqhϽ +5jaM OK4v؃wDݰjX6@K[S@Wr@F.;a6cwF"?єui_>([z[&!];C3Vl\qz kp{x8̌e s֜ni%--|XC>o5uq, qOnNUA1O,kXheܩBNyG*.j4ުU"*Pc[m+h.CT mIslCF\6󢫠Z/^&qL@S9m7P[DC6rC-UPZp'^-P5Vtf82 خ rdֆrMHa%.@IH^FD Ay*6zTW_YUJWI6( =8Eļ_ܚY5e9̣XfPKQ/Y~wvuЩyVs+ױuO_WN;hS\J eeJ1LY0 uEֵ5<=K\Eg-HJ ڼ({wWڳZ)VƀSqԾ64,Mf;8`[t`nFqz @6Y!V%/cYlA=.ڤ3\Ŝ[ =ܩTlRh!%X(C=u9q3LH7> vY ] uP0Q R!`R&Hr\MFY\b)҉Y d"}FXV0L.G=Th‘Vt]L 6T t0Қ+ OD`JK$CJO̦cTLJdjZ.C4Mu9C#,B2>-Q/S0ra+֜0 p#:Jh>v'*P\.)DZhIL2?N)rDUރ,Kwn92rH)p@u![qF";XL>° EQwggk@*);ug8Y ПYY-TМo[-S YvD%13ʻ\*NF?ߤ"6 EX^ #baua5w(He$9[bv`s9/d-zŒī0>@e,]::Ԣv۳ Z>398J~#ۚ8JmH uDgzm1VDЁ֡dOUrQ:o0|9Gu+6l`/iE u6: ޸>mL{g32>q0Flg4ub#=fSOB+:3,9C" 0 ::REfGg ˳ܨIEWMG0zM.&ciz G '?v"<Z-䖆?8ڙ%m`}Y`pN~V_1?uM _9Sڐa H_b8M][ A+Rx6pT6#@Ғ "0cLWG/( z__ ވ"݂ʝUA/)o4DîPg)0➋V3.ÍhSW6|nɎg;sQa%e) 9n+oK2)b$P9&"hڞj䋱|VnֿvxYf0=pt,˺D ϩm4&L(*EÙ;U}7HWc3T ^z4I>ILK B6ՙ-'yӶY[yp0NtMƾ!-jtoT_$¶V1 utXA;3{ȃ6Lݞ 0LV' ҧTR7TO|"tmè"zO-9 O+}Bi#;TJ3`7AܱͳB?s~Ge|EǠkH_ + 2 43m-Y= X"p$iN5E'2K pW6ye̦wX"U@/cg`:Q0|Ɔ%e g6O}^kM]Vdpq"蟬 &;̚Qdq=HNIXpxD6L9A^X4L,Qˤ* v+N.Y^v&^WW@̡,g- @WFhדE|5ԧ1Co6hg"w _(KsTpiH9d}t~,!M! +`@g/3ZQ |1u靧k;^A{1%hT [2^3nNy;9_^ѥ>a(5 KqD((QdM@@⫵}f!7%aV-cH(\S``|҅mhPZ%9Tes0Aュ`hrtB s[Qrre)JOvwr.$e mY ccuTD7^ۄc[U*Dž?"Wg]]tO5]Ϗ@mJB*QJ|]ҤG:@UsԸyPnR0|炰KȀN\C}f<E'XTF[c6l&(ޔ/nH*hZPMCoqЁl]DԲ\e#p[,6>-)t$r*7YzEiG|~'9$CnoI?"^VkYI7v!{Օ@i (kn\jwVϒٍ0Ow=m~<=psRG$x'6tU[ecs쥺;22}ǺJPU=8 ,mK1"W<̗а!ԨO~leMI|J{K-)lL)(}>[U+Y`3ŗ)i9)Ep%!=/]($7a.Yoo1zc4jBj,58~yboӢR?]mYo)0$4 pU#CwlQwH)ua^ >|]wuq]/%*w"!7:_qvg &ZL]=bL<Ph Y vրul+3*ZS ?,7혀)z06{^VCak²}r0e"F=EX1tzrтMם&?/$"61/qٹ%%Xt2ױ2I)W*ʇJ)4ˏTGtes(5mŎ~'46nWH7j8UeĦAc!P㔝r\29[Mq永f|ᵶ}ą|^ 觏d-G#G-L gGlXMXPj4 n[k#ʄq@{&]ݑ{UU' g˟/Ws !qMv^"i7Vّ:29{"In@t*L.ScPp?T\xDΜ$\0ILŬC9qV]o: ƥdfk(8D{72hD(}#&%MFR·8A2kJcAs7YN&p*Tj0G@Bn&;t{`PpJ[{qCA)#ؼ*#v:P<;\Ew-H\O_M&JDVa30qkq `(Aj31c?ƧԽԴv-"/6X =Jr޹J1IrQOuF(#KzAjm|JkTK{gZ' ,,; e2Ѱ=1_dF>!$ϵ'7>oiDIqE'.~jO$VQ~ P|]8Q[Q@+EP~;| W6e8%f9 c'utSGi0 `,c3txbk5_qiܬH&DC.FMsI^ud xFM^'f w>07YCqH9{\9F 9]Ql+ Aްgl0EW`D`ʸ4~ɡMqokʾ~iѫ@If,`;㣓X".}iDg ƊV4#ԼXg|R~G_BЩZT6\/>vDij3r:*#5ftdSy0'-5<Ai_A;s J`׍ Whn<. {JeWK+~BZ*%@8Ϲhhy4oGiiH^=$)1@i7xSMQ̝Ba :LeW㜽W񥦱8>' y"X!!V0)/ l 84.:֪Ҷ^Wa-UΟHAQ!=Maj3.r@uI e^ @ 2wEd:*4+}#~r uB]ERk Yk1_8)qLbr:Y_R$ҚW!h$+w$%01T"ɻ GYAAH֮[^JD6"!ʚzIQ% -%b/R昆!Moni2]26]dG1P%on9ô}m3}mV.Q E<\֭E6ɵGpsET=" c$~{mNK`^kƺ6zUAZ G%oWImUL&V V֙AF=SoqJ=q q"qGwHk4*y2pЌ$7l'#Sd߹qECk,:i;PYX8'=m)?WC}ʟ&{Vwd$} ]'4"k_W RDzg !wZb` WZ'aJO*I`Xs肻r ͬ7 +>L15;I5#vlt no<4ȐOEAVRrwkM֯O]y%ΛP+F<`-(:{Ie+z7%v#%[U6y ,z_)Zxj@|vU@U]H /Mcg&zk},g$W1@ A_ӱZ@R3PZ*C(ѺN/!2ҭK+&ɑz'\b#`N /E1Kx%ۢ K1Ճ؀AsW v~Q r:rK{pUf E O4aT,(獂2X\8z>, ?$8H|u)Fܫe u,!!f@I=0dN~xn~ 1kd&?"k/^!n#ݥ z1=WȌ?J{mL4jǘ1jpZ1I`aVo  z;Fe%85"޸iH)3SA_L̕% %q{e BkG&\۞q+k4_ =Y4Mrh:y@ oz⒛kfNkM`J_? WoRT ?f9}ؙhx N?L} Fc:Dk h9娊:Hsi9ޢk6[Y=fZ~`z}ͬq5@Es}?FtfB?zNcw%T9 pZnaIj[dr׬tpJ b%[E,W!ɏg̨Av{P2U-i|vlzuZ4_ TޏoLQ9 3mMtz}jQTHIݥ(!&mkj $hmaݶA 'B>仚$f4 ;D>ÓXڵ|HdMEH7RV)$-<fmZ0{'\z?WMb5ׯP<>Y09~Nb︛}( .@^R=@ϪJZ{A(Ъ&[4L{IOáݰ,$d^BZc; Lt+fb#t!Y\ YAR"S^_c:UX΂aSJNۑo{jҵql|p1dK ZN/7F]s*y>1^%9ݶU>Fa:Zju ݨhb]ͧikȃ<8\l,>Z poWiaESy;OKp3;SLn f B *`'J-4d]ɨገ9Ҡ75!H%.f|m!~} D܌ET)</=ɾ4Wuڰ1~LrY"Ͻq e=}gS}ښVS4W,V@c #%Qn\o:ÛFdكqK AƞyaX2ɲy>SX ewᒹȍ'& /ˆzY<qxm\GA@T.pS%|NkM{-%E薉R40 w(&׌H.9*@]洮]ԭ9_Cݯ!sϵJ)d.fqs*cRQ<`a[9(;Dfw#w[84ABG9(x9s@q맄3Y+f,%AP6_4^m̻BjE@ ?xqNu䘨ES{!}S|U0a^aF+j cbh~]@ytkGG 7SjW {1N'%w(l6wS9jdmLsz#FJr"U͔!wϜ xLEzz}UpNnwdԀ``/gH ]"G%m,;M6*&Pq!qA`pxI4TO [*ܗXO, 9m,˽G "\Poq>{dÆKȽ%0IF[Iҩ"Мp RO8t٬At52,A1>`mbI'_X\P?`Dw9"зR&X*#^hW avK#[ݪE2Qf55Bey%sO}\#Z۠3l/z[uC>yo]> I{Yһ&C(96#.*&U~id8cSF" pC5ޫb 'IIT{xK)L uZB@DX/hTC|Zl ],4Qd^lVTi|8 8J,Ow>um@jO>.4 ["3:ϱk>Fb%15Gab-Ec*ӳwL1DCI𗳯&n 7:Ĕz)&6q~b)2-I{09&JL& =p%R%+(i7+O 8NⰁaa i~%%5ٔ}:Zk:nb&OU3"ڪA.S``Z%0~\_ѭrWAJ>hz ,Pi":@"7|-}b8PCTpxy,ڴ/ʀX3ϛ|i^ KWsPm]k B$xx9f/XgCp{NcOP}j (ڀ#ɂ^ dK9 +.`[7AwD]LU^xD:5 (ﭕO/2qr[/&eFdv!G|~rB5ImQ*,研6zWěm bYzYFYotl*FY 1GkhMb;ES4(A2/UOt|v4T[ շI5jQLHS::p,ez;SG̓4z訷QL*_+q\?yKVVe}Ndyڶ6MŲ΀wz$ix~"a0 =imp)_MHvCG}1,)dczq+l"8H@R1ɗ9GUAyO[z߄G%,[dASJ?绗#,2뼦%:Wt 2o$` qK  0. hg0 *A_O yセu:|ܑVeb\gAo]'V ybOtTsOTzdu\CE:BN2+:ڄ({TTHhs%kv"iDAjݶbSYGl eTȍ+CQPd1Zב6w==\NL!l޺Dg'SƯ&輫u/Bf<۲N.6QH;ŃHmfadsŵ@o99g ~@g5i6Y1[~[v>יP x+ŮWjMyϕTUEi h̗-jC;؂KəeKμ Z/o*PWHצ(H1+,V3U{d|z̹¹=ʄ:EV%tt6̠6@d}٫"wV0߀ c$A a+,GWcqaG$q2*һJc~ր9y 7\TNo+BT @e[E5 ֐WT~F6@QT=EP<+F䴼)DۼpDK>tGb=lsdTmG ZQUEC ZF cýxp]ӄB؁ :iARY9MXPOn N9s(݌S /`B]J5pISEYjcJ5vRThH 5Hw\R)ԙk9+6ז'ߦ~ 2zs#Ф/ADo_%cw=8GY*HَxMVf.`f.1OeZh"W0 ǩe$z,;Wx[p(_c;z΀miBe&hߝqFSWRtXy zM ,JTe Y7(-K+;;Ar*G JZAר>mlN\].vB.O?qJ88? BH?'1c}T5o 9qm&iJ((1M(' xV& sVsxjfe益x1p}Kߞt^2HP(VF1jZbM&GZg]fK3UNxL M1~N#{E5WΙ`I4>`=M<ti׷rɪZ ?q~XwBZc)ea]Nߛ*|C %C‹?o ~ rjjޘ꫎ݏ"z8vPOD@5B&n,e/ +4Ы< <HcCPu=,!E8;6܉|vzN/}G.%]|L&y8$- WTm后XYc*ڸx* ~v-Qlb{Xڸpf}A0$+}\t~FwdWs5 xWnokUwH½K@o߭{\u1zwY f1Tnk"h^ͅG{ Zn?,ՑKLMk}prI@X'/|5p/â{aQˉ3"U5)ח m[WMNolUEZEuI!@.[c8/i1u4 F"!K3iS7~"!9Ȳ]0wRh+1 \:"'lftr$R(|;<<#KP [ 6l=gz?Z~TYu'R>iY dQ5>rXGa`V a7QF\Qѕڔ˘;[tRq=tZ`T$ uRy\_EO1Nvy%'w8E&y؎|DMk@iͥ3@sY1 .ÒwP(ٛIS}vrBF0Kʾh %57 v%ʝvinzʐtᲉ*^S;ao\9)*@'YyeI K\/\fMF?)#H~Ǻ+ɛ;u}_4t? úhry$LlBB_|ا|jvo =ɄNQki]VHhNC$cO_$tY4tk((gRJibW,´OXbcG]6Erp=Kx-稝zN?oDad;Yq:9u7azhc>͈K=jcS1*>[7 u+/B !o c"Qa=T?w\)m'nTH8N^yFoai:n(ǑBuHY5F=lf*6k㽒6XӉZ9o쨗pA6b/#˜#a=mWt3`qbpTW Ѡ> dB=m-D rb6Kє ; ńek$W>FK`F4Y p*U)C Z6Nm.W>%ry1eJwAP9c-A dW[C7?7 qᗊv-;_EY"CYvTແ K$A*qNXqI{΁7kىbt3 X;>zI%zY["ޫ`9jj'A貰6KYţN4\+h;d*ߨ0k(9r=#S6۔D*6g+c[#QEHQY)=y Ip6܍eoK-8Qa!i,Nef4mj7NUQ92+Yǣ%C_:rfP|pp~<=0DAbhVYw((@k/{_": yDO? IFP=fYk0BͰcf.ҌmmI##Esc=@;3cK!\ꤥ;PGEpVj?؁76֙2%{PZH`Y띬&Fye}'rM=ZBߝ1$"xVH%Cn# Hc,#X`_fHMWgԅbQG Շ룃2htX'7eUG̞"JyТd)QΎ|6.gX*<5c(93vyZBW{m!JhsT\>b/650 &cnC 3e{yOsJzLz؄o'Zt&7i`!%vPTmG`1ykeՀAxJʢQbD wJq  Ji9{PGÑ|,umVr B?+'!p!Ync,Umh+ [`j!{|p!WŠ=溚<1|QD;A&2Ǯn R(u)SkHCU@DQZ+)^Rَ;~[CNPPOx1qFCBAq'MW;|Ef ּ`0aɵȆPde:0ֵXjp # M ùvsEX4;gB&MHQ=6Iy4J#)8ekڏSЏJ7ygPH2tD,pkAm~;IcLv̏xJP_x;yHǘ亣3&nDY)ܷ+iV[D AQk Gal ԷEwЊ8! 3N]"Ll\Е7}*iD?;/32axi6 YB=Q+`o,c3AAS;<:[Wzv&e& ﲂf=B8ޑe-F]V^2+/CGU{MUiJW1jUX--IӸeN69Ż[|ؒMLBsNV$hq5vq-2»@XS\dKg '|Sc{E $n0#?$gN•!Xl)#z*5DTB0;|N ڣ{ =$l>}Vq:WiyVOi˗nAe֖Z#9}bD=!I^9rz,e-  Hc &ȱ |ScAtw$,y`o@Ea.=bWf5ET-vڹ9|I=i6AHfdmNPrXԖM<{rvyglH2LZofHHVP 0FòځTX˹ΊAP:%q.ybǜć)Sh{f+Xe\!E]q1zFĴuxV&شVF{|`x%7.UP{鸹mPʼ.=OgMRb!mٚTա" }{CśЭf8W\m3w"IDhT`S!!a3>7VDKgxxEJ1TM\SHqVCT#٘df?ІhhdFcջ7F=rkk,$f<Rx UR閑yi!=|#<1VKu4KL~B_':N[O&w} G[:g/+vrWd3|ֿy,@hSK }j|)KD=܍m'&y:8E Y+s'L& 4GkحmAԿsHX,, 8-S*/>(^j4BQ  ۡʝ-]aYl 꿮x,&_yƹ [QKQ Df甉e4 vhGU3v= o7bw_@lZ}qBA\_*w>†$ \;*> 36-x&mۉJtF㽼K>7>&:(@&4̀W_`'$;}GgcS 1$y{4 ܺaUKF)hOQ=XPX;('znZ -+ߒc\ɛe0B]x5@#'']#W ݮ*2ڼ6m۹,vOxPԤ/lNqMFfS檧Oav/*v?%KMηn-nlH֘}͔(*>'BX%fs4ku}x^ Aՠ @Mօy@.rlF_3T3W+GKs)Ia)p;wہc|y6N1C[MXj?K.7.;eQAúTd$<|{r[]Bj[[gs \ cZ8iS3m.\de9L)N糽-?sB,D B|5JC 5߉mm˝PA)Or ( $jCF``ta,NöVG̮2B)?ce<<&.^QZkEfXU~E2'у>}rGlfOinkd|}o S:1!6bxJ64t]fLI 7gixD}XLê,Y ц`x5/y|"<}ԞyۤN#݉Nϼ;p-O5RjZ n ` ̲껟zG9C[? ϛ)v\%3݀"OB35Ѷ Zj@sÑ% )}Gb˧3Lm mJ@ -BNɂbUޓ ք74DXp2”Ε*sEq }o$WXVE{9u=He= -zA`dc\R\=$+;{6IǍ m*liBRJk6D 6lS#m̐Ό}/|PVF'k3!nMxGǶȷ4| yXR`G jt@38E5T6Ɉ\=a! dj4+&9,+0sdΕ])v f3#Dna EB!FHE+bV>g_Q}l0lmג?Td$BCݝ Zח{|mBOW{9O ׻ד , 5I"UgrNXפ?n^̖rsADF(!c߸yd iy>GUP@&aRsT}rJ2R->Fqf@mh;tM&9=k3VR +8G rSeX7߂ 1xo_!J3ǔ UD_= >Df2DC~ 3Bl!id,mjh$َoXœ}"DuѵƬ6ǕZy*=RuL\ gӖS yd`)nM{ܶLl{pĕE7)}YIN9o4WDojD֟,GMCj9c27-X~D;1hn$/Fҭyͱ>YԘĕô&gձi+yt52}?EV%4*rnbB-`fNNYר7{Jƹ߱(DrCH$R\K8JD ^?3ZuN%! E]j'H?D +sVC:v:ǫٱt>:drЌL[aR~Sl17 qTK7N;(YVNPyZ9nsh}aA:-_Ť`s[hRQ.:+@Kn*7&ڼִ VQdЪi-RK(-i c[Z&% aT"ze=\Y1U`/:|qg~ߨ:Xk8Seg7;F"|\O0q~0Nlxv[i||DXg>`fkjbDs΃q/):$;vE?AH0_rpƼU޼9kv|H>ܳqe&#{ov&~IJV: $ (.iR 0\3lYVb N NJET82^Ⱥ&B=v%Ra+T9Ђ# y'͈GI+=4 Ԯ;P-.:GaxiD%8;򢉃p1$Fj.͎*n}.ϦnǥIB@& vc4ǒ2S1r8X-"Z4Mu zx$ݮ V Dv Ogk4n2M_=@C%ugv3l˕bpN@tf0b/ 6~ӌ_5}z1] nfЧ7|pSp- Pw(u{8W`],x_´3!7rk AW.ho6K$y4yU`6 K^hA/>a?s^?¬L-bʲ0g76]u/%/GX7h[:,:d;CL|E$0$Y1~=FAV odi.u/S]j $s(&,PSi"%;ОA`k~ N4y$iE~gW!NJS o0+&(u(ec, x3{E8L>&aho)U-"fH' NU^oSg"HN:7TN`cgE?Pf_ +q_jr}nYΤrIn0ꖱ1/?WVz WĚ߸`d׭ὔ< wl<4ߑ64$t9CJΨ`E^v>X煓rѹtvUN5wXB>G[w8|^,'Y,`qn ?Uz ⾫:*ȏ;>21Roj- U]#qY!!E68tPHุk<;>!/^u:ᚒ5Ch+dr6}wV9 \!eS#'Ep*]&aqY.ua%?=.|^O7y^&RG`C3F5,ew_q%?Dbn?r<ҺQ=,PĬYUL۹VG=[ǫ`&%Y~/=gAuu}#+ k!I C9*ĨUŪs"YL9HnZ?G%QFs^NfHl}q!/+RzTO#fQɖ"w!G՜|m0|Ֆ4 H@=3<.kJ={QAyV]O&edMė/|_= ȍ7˨`[UK;$D >An"G#a=J5cDz h$)av[g ^ۊHrfl(`<^]'U0 &*͏ 9n:H-CE\3@EݏvOiOX~7-5إj׎3 `=Ü*_S#kwIq(wUAfsJ8Y}mJ5O-D͜GWZ|MM뮖L`!oBs8o&+ ( Wn~F2|Ͱij O"NwP82e+A.P.A9YpB_,`Nxrmmu~kOnj \)h :ɪԢXdȻ}؇&yЉA;䞄QuYSe*YLM_ h3𣗵\҅ BޞjI|}9ns*JnOv\TPjHQoaKnǐ]D'_ m"T)_8`tuF#lF.8NrدRWZұ늃n@@$球 dg-=7=B. n}o%MlvdtAx)12ŧl\26#"FcI~;1"m)Vƿ]c=OƟ*]Zֹc8{wkܫ]bIȍsŰ.9Bo: #~q ,0^((;/?;JV=uj壧*UO2M&h|"SyxBۆ[);j/pcqɕX2`q^Jc-Ӆ?d<0K .T|Dq*O+/&L#4Q{xb@1.|fݐq`HbnH.CrgR^ :(z[p] L@YѾdcbJSQ0Zm^\h)^$/` Ţi..\ ν*D-0I=U~*+nX{=j7 JSiBBde>8 YweP``Xt*:eL+59z+F;r ,H\ q5NRq}(Gۊme K9UÐjR^EL QmLAh;T17 .< [f_(HoV /`cL=L8+-+7.犯eO>,$[nD%[6M#pƳE SDMp/S7c7@ Ȅ(oxg +ѼFf^ Au4>zAqT\f1܄dӸD +kLțRM[NKI@oLzP.ɈlFSH|=0Hb9ږ+r6UX+ uyv|Eq Τ%jAlAH:Yڊd5`2zΟ *֩PŘߓF‘mȧ%6^F.=гyb՗ q#vWٳ;4l UhZ8w)[G$5 ЬW0LJmTverPk9LAv|ܣҮT(gsҦͶ7!nt E&hzE5sOUЊf8YU0l5=Qt^!A?=<ʒ+y0Y {By2DR' j90c4aRr;Qv_T2HQ|gg L;ni%ՆQDOk@[PG}/J衔W`w)js Xө8Qo^<#?.sş$(ŐnaKU v*&su@DP![t'"MD+fӋtI& Q2c5p>Z0$-ހ'^bNMXX.DV|ٟ 1|E_GPi]/<{' FYFC G@JQCbt,/."_McI}5A[+lMN0(_H6 $=inNc{ݾީS 7_(2 F=z[;!xHdRN iiikczGՖ|ڞ-ăȽ-M; 챋R싻&e_ۻnmJ_s*EemG@V`6&W'3(M/8Kx&@G_#PV@*dVT2u7,N+|T[3t ھڕ֊cƝ(F_3[:',q+1T[-``ϼU쯆헜 r(Zw%sh=龲?=e{En7va`8%}旡~둱Ԗmͤ<ܐ*Nȧm n)OPPh!Tdre+bf{; Vs)QqIKa~Bf|EUz,bvEh`L RU.$$8l1q?}=m27Dn^:1m*̂%kjޞs嘝 !N;pR;^Lmd̯FjO=);螣ɶ %7_nM?m$Q"YQ%#,>Dk vμݡ6 0u2#A$i_m`k ^kxYY˘(c#\(:gG+(AM*%h]Y./lv]E$hֲ_Ov!`]<4=m.[Hz0{Q/XR#Dc[ ˄y wR;`e1iNmdF$`¶\Y+7c([.t\d^<;{'܈%`j$ T0,""Oo)`h<,0Vѣ nPck;8D1)VWU+CYCXB}F:\2nLôi--tS sJjKAljFE{7կ//Q1@ZwB..gtٌf1sZ@S8Dz=Q2IH?ED ?&2x=vJ~/(0?ZF(G:z,ƜPS\kE7$qSrQrt/Mw,0~;){`~*{tГS&߯7\"P%`rixtvbYV"Fؚ+ۯ=]ξϴbLB5|wM!OKjݾ`:V޽zlNp }q9nk7P֡RUjؕpVS<XNgns5KmFW ` BRp}gͥΝ$WhO,!-Ik~?Rb;v|٦9.i,M<$+Ě"x(4`T]NSq+%6~Gq-2=Br?!y#zXvI$.0ʌV(eh ]y<:,#v=]3~`l9uA[5o5<& ܛ++ }ݸ{ű KzAy?CmP'lmݐgmrm&Z/HC^ +Wu .-{W[eMQ!hi|x[g`YKE(!;xjkR,9Aި#ƪ[9y#94Op׆YAb=[S29@Muu@K&I-^u!Qɿ{v=}`lwPn_@8 gj k,Z[=> 8ol'"q~?2?2]o^Bb5G[UU׊H3ˁA7^,"A: [p[is{+g|]tV+X@#?6P-""DLt|f?z;miLJ50p(eDcy+ )م[g=ZkZO6$9jX$#vNE_,{#@ݗlҸƖ/6@<2 6?* H lb(c:A)V+|a\,= D5MΘ9r'ɼh}cz&Fg$OV^Mb#IFĮLjiL hz.r|6_ntBuYԥ6PdU~x&Fbma'+F+DY;mëޏwhiމ=\3edi82\Ð)je(n9ѡiCVbp ޡss 6LwBɍk>puC7xуܥmDz4̥(0_&ڜd }=̌:ԃ͟z4!<79mˇη~slk/Q_Hw%8 ,GFAxRm[k]q z;a c'c=%g?J_najNT|R[!LZKV \ 2KY}U*DӔh*MKׁ`ȩ\~@wUsQ{h|& eRZf7?.u*%BKljK9JD| !d  oet#V)h\>ʫ=rAv{DJE-Z-T\g%ß`t)! T&֑2zUW}z v9٠G(/@qEUH@sF)W̍.Q+WujfxjRfdz-UXDAl M8Gge W-'ܳL ZX`!NL5N1GNYR2Ye"`2h]ߣ)WJ=U" 0;YDO2t?^n7vR[.>K0p;3G$)B\0W&A*^* T{p#4w3KSD" q*}}0."n_?_}JF4.0 IRq^bmnInR2`U&T(͌*&lͭ ktڂM1mbާ '`o [.DæH# @+ud&t6eYrP2$.ECfB2*'A(m)rP!ŋ2ydڞ)LKeLKA zn֭C HAX>htdmpZ&0c)gr[tFl۽'+w$%ciU fB(?}#(;a{" L@P_K9 Kz@t#_I%0f9h~8^ʃti1RhϮ.o/[`:) R&ד.E̻yޫXJ8K2Xx.VAz,+;;TҭrPrX5`plt(bJ?'. Sr=Qo؛`3x~ ,?558sPzc,%_}s9E&elU w=jn;cӞmx"Zk,j"zu3#u%+毵uɯZ|%7$Dkfwz"EsQR (*T4@5}8@UnSp_(u!=8X , ecFx >l g8Tm7~,΋^ZY'B^9O 0,xŽFa\%ȝwU^ }CqG(8w|YȒo@fl) b6RKS3EO2hO`mzM&*4|KO5t>.|`|l^ ?h /ill@N=sEpQ}yIe?sȲ;=ɐsœ+"WfS09Cj10LNE9oHCJ&< A\ .)i@\+HD^[<aj*>Il.fkW~'\kZ(МD۽Djf\l6Z"/PL@M=s3ÀmW@|fOݟyCծ3m`aRH%f^S梘޲ns3qxח) _U -U-VruQ];}+ٱö6{ PWE( ,A{˻vM_o鍾-]o*Ⱦwmv=&+7z ?е'OW9m\]XgcTn8=JswCs5C_Wa^'S8<Ĕmt!18Y.Cui=b^s9yDʼn}Qqe %_,{APX뻻Qýb|rzD" s Èfӫu],XJ?IWNք1OnDp{h,V7RL =Nj#?`C0`S;ơq7" Oc e",6$K!)thBd]ӈlPV6@6z pIAjWr8>1K6 ȁ.a@AY#z&bߛq ,0x>K}$kdL4tUn̋ .Ly-l@*TM=,^yU;o(2 /(ϝ^+w-[_bơCxg{;X9VVC\=3+6Ƕ &p)*[~GhտZQ _z # oёOe3n-nl h ZҩTBgnyb,@)=x\npOj%*m2[2/؈tkVknAE ٣m/M\+хj0)9B[WŒ7yZΗ91e9TZ2 rVD }3,%)=N Pa9 N6'g3MG\Ȱ 6|kbہa`,/BPiu8kb~(BQ/Ikjd 0u CHkJclxłDle]ǔme"wp&$mEl%J F>Š`5U*7eLFXM)g7cd [2Eosύ%GNtp^= dO^tmGkbם*=7T"/̮o#}Q3!k!Ϝ)CI $(46!큶`_Kn;-bG &"b\eD샡SF?R<.(|QLtmԼ2oƎztG1n[fsrݦgߧ6-5sx&z'WdjSr] ;L}X?KA*8w'zV~R+*^ѵX.DdRXN⻧#`,^NVBIZpib3ʆ_)J:tD(psd} >}njzgh~D6O.Ps(T2eo,,`m9.n}ADo?2 pTRkAw#Dݩr{5bo>Y0HLIuVދǿ˶lz։odT_ VԊ{9ïv7 X ꣦{Mly?&.+tgg#ėݵ$4!1T4:LѕthH# 46 x?9dҦ{2}&:Eg7G < XP x% \*F`x9$=6-.pFCrZM vĶ{"[hg.P94:q"!R2 $)S6) JCG5u{/ zQ.bPSZvHF*.l`ٱN) ɱ͋zOc4g15'@,I:jpCKȩjdB^Fo&RlSja HkGK-G1[RU3n.; SL¸\I;#%:+5<xXO y63nZ(a24`u@t_5Ux8J:(}jb_*uv (<HޗI}jbǗ+y1nrh:ooK(+yGH1j]d(g[8 q)^bvsa/r ['OsfY(Ϧ"ҋǞg@Zs y{j.`/("J`YgnZ YS[AE_ڽuRL% hC2 Ǔ$ytCqxV|f f*g'_\'*%#f nX}Mw5QDIIO?jghL䱱 8 q6n[ $KmpY5>,|/$z[рm871.yz\nCB~,mhVH%@|~qihG'#}_6L=HA_3P͆.<  Z!<dT>S[QvL?DNf3Nr<9PM>(XJ@@ܙ~&5PNi_׼TfB:p>?J$څuDl9?-oͩygiA<\G^?zZDW# ]oLAp?&Ϡ,)G4fGYZ2Rǐ3]}=8 7h7U`#k.SIi1&taW 3yM0Gm LBčc]hgK8i?\78B^цCVK41U+I/_(G~;)јAKRB$77󰗛R 'gb or~OcuX[rnOCq)5Eq Ck^k|4sw-(o+uzNwU,1F[cHon`Fhݖu7~d*D#`o}5gB؂[=]o>W/FW`PYwaہ|d }Z6{K囼`]=VeI m\_d S;fCM"aST'y jHcAÏ%Ka\pXӺSDMV392e Jh fgOKhsFamD0Phg(+(`}7|@s V+>Zq etscZa |k;`6VFr/ʍ< f 5Kd==YfY wk:ݰ@E: jfzmi48_ `)!o0|4gpfײVvRYgm ]1vvhR"5LpQr"D'q#\f[W!DUtȝ-ޮ%5Fm=V6uE?P/@3=p"ŕ+@G <;ҏ÷p+6KW6U8)WYOܖ.~RׅSε.!Y  a\駌K% G^r+o)hR|o)]~H︎cu׶Ar"l2\BgłL[͵Na1m:"o M֒0Nc$Skۛrd6bQ̚=*AI3x2 !>狊 @6݃*وf&zQ G_I".HS@UC6H}kz \`Xj #i]cnSp_$`ѤOXG jv=U vJxTC2cO֩<;v;ܓvcEz~jze /?>Oh&zԽ8O~R*'z{E[z#1 X!J MzM֊X9S`#u*` ImMM/İ`'l7[Nn[H*MgBΝA>nŌ;:b40hd82QP%~m:>PYP)%:a&(u{pBr.J 봱ؿ`՛5Ӧ~~kr ޠ׿htC;8$EgKwHzj0 Iר3v?VjDJU[OQ 5UmS`DPЫxGpőuXNOf %b/ >Ө q RD-s~Z1"+rI>YX#( xlD!jk;r< h!tibYOY*lTR͹лētI}}kh\:c݌Y?;—q3{TFU+ʚ8s>lF6z EHn%Taw13-egas}B 7^hC+b; F Ň(^[Ծ؁ϰhR~+1.z3)8Na%loKp *qE3 k`QH0!vwA'ˍ|+"꣦;BQ@޿>NP=[u3z߱eSaހ{j[(F}&۾F`\~ (%w(b3)p8G@l5| ;hS.Ytr6BvIG)!ץ/#@bgJ=jy,6fG_4K4>у'o GcY."Uxsh|b3˖d' /o׫htyO\dmR $ G{_o-V3b>FHO\0¶k5+g_E rF avCTs2Iaa+'YkӬ^wS%.F5}rfcϔ%>nUŢ(NDv!,'gY'9*T I mL2kCF ]=gEkmZw'ŨjMlx OP"Fx.O>ȚYÈ+f2&gxx&g ٺU|j3Ά6[44&]E+1Y/6wP]!t6@ϊt=ʝ[&bGhS|睊yЌ$8{55(9f֎9R?^og/xڨ[иsTrj4bg݈2ty Y{2Nu]muLzioUv[p(v'ta]-!K6 xT4@4)uN`R4Kވv⢪;J?AN:W?zMhfzAlLn^ 5z\蚺9 M:;{ҁ(tr3\;I[mqnMcclau9g6hp ]GFl&22;4.u~4fBML\T詝PHD_֋7F&%jjEmZP)Ui2P,Guq*;+[-G [Dӭ=O> U*Wy|?Vn%±%  ̸vמ/ᮕʻ,pjסhs 4=1F WIޔ+4`- xcQ`9>Vdsu4M$ij9x[5;=vf9ܾF)l0$R:i.3/WّDhF!0:>Yގ:Is 9[b`i W_M"l~'Q eD{Ǭ ?/ŝ;n=j7S,XD Af-y6``]S `rgoD2Gm[^fa[cV&;6WilQ?& /~fg\՚inbOK;gnC=bHh1 pz "H, p2!d*IbI~ V:%/@Z;WAvx]\:BFb@Chk6Vvg39ߊ{ -K<2)4{۠p?# v~HF%X\H燼8Z,Uդwee=^9JwiS}Nz;?F8 cbΠ ٿ-ir&'`A -:d&zK`د7$-e .rL_FʅIؙ,ڪc(!tNxEخwلhr gDue&T' N@<Rw{"vVL o&pF~_75T<;q<hOס~&Y`KV/!zS,ǙP4Hu.,OmGQ#b 0$_qvlMwjT;Tԟ0h ze#tRvgc7IWaQ!0)z.CU -n~jάqDrޒ"qpELll9d$HN7q|CR5?ӱ>5F'uW'cۛgqsտՀ0F/|i-V  O9jԥ,\myYG &6H Rt£ rxCY]Z}qnFMq`'R*>~1$ȶy{ o]YG_a'+O46ԃb͒4'U+@6M}tz @gO ;IϗD\E>~E'؃K&d3<_[ J0.iU᝵$7TW;_Y|wܖ7 ma EF%;RS݆+6[Oo.]_` joh[w;X9aნ -}`uN1! l=@g+;\>eˤ<+c/5\"-Xel._ @zy5n0v ol=TeQf`HDgZhMɳ-#ȤZ [_mx=0Z ?xT. AWXjR$yVAs?3-?5j<_*]]2Ttt]v&PHiW1&#ο3&ʧ5V;5]CUt1k ] H]&HGmb[d:t.7(twpaaX"A;#K=:!VC bau{Yl*8 ᬜS8/yDmU=cz\HOɾ9NrR%țJhzt|ԗx*N1]h4C-3n?Ur~M|hqu|c ];y/Bfmn«ABRNeAcHW\]wh,.q/ByVLKbf<ڶ}H_w{- r.뻽r>4IgхoMȓoZfq ]rB۝&:v@a r|@¶,,~s.7QŁ#w"p pɼ+,][gj{oN Џ u&F[Vϲ.gο;{aKw<-OYQ\.Eb wi'XhWxcpd%Ѳ v/a4(R) z'8>F'-_«!|'}-[ѓ_.5Ieq="eV cU lHު6}Ur̬F; K5!C >qa#`~ԏUɵ7%sfOI33YKv/}RCg~& ;Q<Uĭtmd5(L7>}~Sv;}HBlE5Nkȗ vZ?ZTnԂBKN7^Ze k*OW"dN$Gh[{;'D<'O2{)}:2j3-}>9oKA\ );/;i7ƣtʵrtmCضusm662lŭ8 6Ȣ>GP{bQ +X[_A>-a*]i xoP[ь ]zvs/Vܺ#`$+9'7JUwƀ? )Ixh8 ~iՍ(U+9W_"RWG[^Jtm@xgس}<*pt2*:!b2㍥m-PlVl@=2Ka!@{g~'3۶3ZϐCa^w}qKSZeߐ85U%N5OFj:]G?JMP9<# F lwۊ3UFfʘD`oZYuc// sci_2'eeCt,)jf߫Zrё!F^6Lc1EvټBr\Ð&,Ӥ-e< NYgULU)Q gݣTg{5.gu6G=q1Xk5a{3=q sɷq&`Qh)Tn+*71@ 6Jc V@d`>w=T C Bݞ;l[/'+i;#.-+ ~vG&9?,*YNx&d+n ~{ Zbs)هوn|m CAPa8,͏Cd}B>UMm]HH6AeX@X2[pXE}":D¬Xor^)_`hc**+WjH\$ xix^ Ye\n ki]d\Jd- Z̵ L:+C$ bv$SZi$M<'dI;9iˆO;\yߺ0T)uao0]zFdIc(boyaS+ʉ:@Z0TQqw3FcG餀^ZAJAqEh=mnXAڥU,,P=:&p3t96>0h`Xrsh ڴ0}0!5*9jIcl,]S[IUoZg6I^=\Cє=klh?|m'95=oSIaWXl-Ό7 \_^q\ Y~R:B"S.`uhzLO S'D|^o8HZI~l)YmRH\<;>MaR0; ?V&"$9=ݑe1@V{KD :Ө×O}M~,Ht?6[ .0t/7{)bn#(Wrn2BLB3˲D*KBP(Cy,]I)sGXnv2~Bƈ O8Z#Fw!j@E!z&Pݢ o!!/84 d"LLR#슓@qxa(QS+08(?3ZA.\{kA9mL#LMa'r9)kW6I41*ge,Bݝ"׵$+2O+ʝnoa2_©v@V,{!`ӆwt=s3@u.B;vxԱYM#-[e(4#.ھΡA98hc~2<;?N+Q>ClPD: iKѢau1uX_}1B/G)LamA] JH7t$ 0*؇ޢg Z:`-SbohJilWH&Yk+~0N,+ª}Ni!-[+ޓj> ᳔z3lԻGd}Ҩ_lK!ȿ^>NCsZ@E˦`Pbs\' jz # |4s,5 ZCc\^&@YBp~Nٴ%%xG:7moPyS3eGCbUTHsPLdqM.!@3"lWqf!Uf;eb+U~ݐs^ռfW~k=Nokn<1vUm! WTgP}?PAlg"٣h?# F|^r٩hҫ\p~ݎԌCq#@Jmu[)Cf5d'4.9*E0mt*9`F[kQ^17hޤu rg]!lŶ<e֋&a+t@홮 M yBGցжY ;]:ȼU-ntU`4g?1J:kTǟº M/!P^`VR >ɛmHUP%'w9dc>a]CF9 IjS_"QrF8+^h,}i>} >@5.rtw {Nˆ:oTO|9+'^aFƟe\ZAa6W3B6Фmм8"L6xPPB].^]it@4v)]0ցVبr*_[ǶEҜg*HcޑصXWAplj})'i*D|@mSipN&$ބE=@儳}gf^^i;iƗi9/n gSZfvp`s \dz(lXΧVq 2{F'Gfq.Ō%~E3z(ތnrdHM̎.+ˆ=u_+U#=6)TZmK]A >6Ni5ʟ`0hQ\g]lgf=M @- ,q9UK("lƁeNvI0UݓF:8*1$S jFd2Um~VEE&]$ Uۘ˞X:2,3U8qQQ;#Z4e]I"ܿݝ[@9_+`2GB'\ߢEFC|7$12As{,]2C_ |ߦFv}%鹕`Dq--I#$z;2ht Pmg(= J@,"(1AT"ƠXxvJ[K nq?]X" DM Hjhp̀d#$o+)<)m>.JxYnHnB]ywB?al[sd~¯M`16*sҹȠjVs^jeg:3"t .bcIҲIN>~VATkXJxNzΫ(kk(n,}vjhyA*fK?3"$"W7 Y֢/y yF#gNQd nR>v":DE;[g?v(39 !ו\Qz^3jPyW5=FT/X˭8mN+@n x2|phF== nsD)k_LnoR|f]ځ;@h I1=)arsv}{w.;]P.<"?ƜΪی0L@>ٟK)}mk;3PYaJJRy c_.u'gJ,$p~Z\G%c_{7Z- ME *QϚ dt>ͱ (N@7*;ڄA(& G{H&{l2Q8i$hJ&%Y{*<qWv@h`MvJ)}ó|V+, xf}@~m0PEj?8vgk#ٺ(:a'lPO!L|"G|0w,oa aEl0QdWUJpQ/$<"8oN^1nH֞{f P9 ЙT9Vucˡn =ĚL_{.ih-M% m 2_ъi¿DXbҸE[悳×00Β"f% G_{ ;L{MoԉjqO -K6t KXِ*1 Mڑ%3d ȦM/+ y[ IY4S-কMM]{e ts =F1F>e&!B+v±$!QRS,D>R@˜ {/B"f2#RBo!]Sm{ M#1CU{VJ\Yd!K֔f@7|@$S=XG;SRpC&=.^*ms[,8,S;<ϼx $jFpf ILSȱM9?[DK \ɒ ŝ6I*J$^蔼!*QNr{ALmQZO(~0w(\&,eXi )~;poׁf9E25k(@C:I"oh@ ~.L@(|4y#T`< 6iuIe!=)'GZ* M{d ?+q](bR&{8QS6C CMd`̿7 _3naG#Rswٰwϒ5#zL5S+aK47DK|H N.T Ru&d~Q'WkDVΞ@2,d9|fcXBgT%؏Uk.MBgxfy9:X=R}j1 8[M VD22hCl}K^p.9@W${8eQ",qi\yXI)t4?΍ ^մuuU6?wEbB,Y?% Ϻ{~eb]IT ;ZLbPZ6BX¹P{)\夷 ElmX#јq_׳3: {: ڃ>望S6o# #JMy'%yŔ-:Uqs{F]=J7]Uw/4m Y|:-ISmX|͝%[;<-U*-{ %%T_ӆh91zUE5:mBfԯd G5\xg/>\2fc_!ȫʰOF$~C/NX*)ڊp`TNCn kqgElZx\uɏMx5KT=נp{mԶf׺#v@X 5188Jzqeo W,2 ;"gE }Uׂ]]VDj/ENmKx ^ڃ|4q{B]o`+Γ{ )&"$WmđZ5]=$@mJ:ՊTɹOՠTnԛBޝCY:{TM8ti.@v.#IrOWbáWIU[SHTABM%]#ԓц ْ}lZ.Qͦg1fK`:!F I\H)ٗ) IӬM"+=HcH Qa.#x~ [Èi&us/ٸEyW S4.tM]}ȉ2,$;?F$_%c{'ʢ? "xԂdiK"cT!"}$}@bڴcɘLj zۤ-&ŎUB诟Y{h%TNԙ\7Qf1}jQ~8I;ʽ]Pqo[vɾLBo}4 *rBd8NiƨUR 1{K.FK}W^`jZ%"h'-"4;K-"t0\`Md/T ?>"$Q0?]ӻ5l~U' ~##\ ԥB7T;C_ҨC,?aV ,~&;@t$ #9(V׵ ?9ؙ MƠTU//TFҌPUd$ÔEEu:a9`9JS_$FBC'*K2}j0a43Ɗk!{{W"`9c(Hl4dpW殗@׊OE?P4{^Sais#a|0S΋\~t>^&QO\>g -z&&5m2-$AG(ua7BG{j|B+lPx&YF̜pfpkJb'9ml7zyP+rÊY'CeTAjB+{ N]+`(ÄXlqd ^g0 ;>ܘ0 EEqa-Juc/<&Smϸ/Tl[_'cԄL}rz,$MsZ-YŪLKds o+1?5r'z*?^ض ,{Åno-c{ToDF bȰ^3T-Љ{L^Rxdwud.ӈ4`6"ga'NremwpCOgWNa5)}o~  yBuy\7~t9V)R2?-Xh)RXJ|sD`,iN:GBOe}{Qx ۀ&̇KB-=-V̋zVJ TĦMB`X 0@JP;ۘ }h˨[kh@˛kp.V>y%@%»:cڍN%3L˃%X ]l P{nIJp J07pGu!и5O1Lc@NHoO-mcg?QM!̌،{zc=zdZ Ml1s(e3au+ VLҜJҩ<}fV^1YK+OӰɜ˫A2׷" r4yRȱ,~]ê}O-\3u*)"c1169 < אb WON;ܓ^5BHP_9&ěUC괬l~O~2y~B2nK_M6`n}P ζ$"`SitjAG[ #aJpc7>ETg1#s#oGx|3dkrOP3PBD209f~#/R*"q%O17{rPkVMÂ;(Q= zigyt*ucGd/Ml'] D=9EvCuP9(aC+xt9O=GG"ad5AT=q1<2?: =]ljD"4'ɣD|8Q[[1"`Yp~3+2w]BJsL8GLuf 0unYgЕ]^y &uTRF+\Oӫ-\Xc=GYd_UCW0p6Žc73>-zʵֺJkG0lXT<+fAYpM~Ԡƀ]15# w;z.;gb N( 'U $ܜ%,G\:|EhW `0,b PwCp L^ 8?8OG!rU8eIӦn Q{] 7Zm;<̕l D ζ{x?SdoPن! >1Ry9ofw; B_l4aVM0,GzXBҡn]vL-q||ڝ5՝C,~yWx./ `ˆH.#H_K( nFŕd E)2xW~mMb:7%-auϤV,jx?l@yv/CV0EP='G+|rxnL6L92t^ŵ`_$ UX/Dzy-b9\^5m 6ㅑa b-: 时x@BAH昀<<`3s3MG|zv]>wP4RVG_P冊B=&VRJ q~-*K:3!~ٗg|ZAX@N-qOQ)X8"v 4xd&9> ue*Mߣ[sBi5agv0=(-x :b;'r=x AܿC7gGH.%vCwDvs:[~O#[lE|Do3Lޚ\/cv2iUePǜ* M|?fA.|خ  \#?I>ǐ]4N"/4+41j/Es-qV"|QI]C@`_cuب|K,1a88QP|=+x,8q켖 mqDj?i.56}mz;5 B0"fs`:Hbp\ _4W<9i֖]!~#,uRtڔ&JaQ![a0x}o$f<QFS(} ]5g0BIEQ&QQVFIomwgnBb_|¢ ˳2wQ bdԛU(c˛%1jX'?/.DvU;e:Q&1K{+t/į~M!)H ضQ>݅eyɥ=O^J3vnP5aU.C)EJv҅4_R |:ȏJt[J8kNCƣk37o J1|wJkd*hrw2ؒ#yrIb^|m }4K ЗrpԘJ7EbdI+{# 4[:a{̯v]4C% یl~X?u\7.]8u_K坛~y ?R聈S5H1Αk6W<*fC6,>bsˠު]fh(QT`c!XQ2w輟I3Ix0 ><v&PCx`_NȬm]8gYqk0+u>[}Q.q!t^@@0'CʕEWhdĻҮmgrV1C^q#XZLSW1 xYwCZ63hy_ae|C˽j|*p^ \e5{&};'G!?Sz+8zD(K `#&Ƽ):$#s5MwۅN7)qxZ>%I*ͽ9ݣGb;Wk 49BχѢߙDW$vрDT?&0Ll^ia^w WGLyHm Bo)xrO>0YO`"du!A@@,y .,ھZswn$qh21q!V0ۑY0 h8BK]tl!#(]~D8@n.m$a5*EY`]|2e{qYǸ`i'VM{StT~N^OϸS 8};qk> p7sV%98M4i2N%c2+J[<\m ԁvzTiMȺ7LWUyӠ2;3)i7-;~P{%}P\jҸ/dw o;kG@$@z~Ƶ.K[lKԁ_w5㖦bBn*qCT#Dv*ml=f`k6E؋I nmqe;Q@Z x]ܵ0< E ]c`+χ =:b *e?%q2-awYJZ.HN1#O 7ǥheP^pN3ٯLtvoiC Uإ{(xqִ" MK rc3iH[ |6|f8J6{ZJXѮ]BYyށZ -c; ?ASu@OBce`;|28zr_׾Iu+d~l?'|N ާQOu,(q>C84> )3!?A4R_,V:[pz0y\Pܛ?kHnD"p@_ݴ}jJDpYSH`(=_jx=:*6"$hIhkk9֞*XͫŢ=s) /Z l/}Zt!q8 }K?Ĉ}'X]+@fF?Ij, ҳ+B3<'U5{/d֖룹SIQ.dUFi)EoD>mdU aB9O}8kAgpKo(oнTFR73h ^[skqз^xSDX1-%ͭM‘I*>,2'?Lfnp̘05V1 }S0mlU'O7Lql  w]p>-89>7ˉ,BySB&Fj QfM?7]s)(V <5jy ~Ji7iRh"ە|L*pNlOzއ#En7Χ'eyQ=z8R_PM#.%{F5XAlRvn..&Wi[(SQK6Naa9(jamf.RRsc9JFhk2Z#$J5)y # g-5`f'J6- Ƶ CԧQYT^/~,Vtj`-5I/)Ƒ22[f3 Hb1 ++T Z(2Yb_y$ }qaߜp=sW!,'ޫ8%Qբ7+SKc^$8 mue E C *j9]1d^w} 1Nsz4BU}H*I*ǭXQFN6[hfIqFςJ %b=GtFe∕!Yi:,W$nhmn9*^o= p2F}IVL"#6P<6g}i%meFx}RY$DgٺVh~.qXI`bV 4MTm[n;UmHSۃڦ]~dI!&gurE7yڵ ^Q#*;;] L={5`!6<5:8{LmY([цv<{??bsI@mA<ֹz[rA!߂ 1KQ ΗrdS9x#~OҵQWꔑ*1zZn϶1ˌ?(<]%'P 3pp \ϯN J`MGvz2^fkVg5Is`pJU8:3IjmZ/M*yMTi::!שF+!'N1Duگ6-:S9jV95io韹؜d%tFV7ꡕt쁿Hrgc"_,\)|>A6`>~p9 J= /s{ f?KaW$lJunL(͓% Tl!ڥEN::܂d:g$-7h| 0Y:9[ :O `sŤ>a= YmH-4nM-_E~NƋ#xu1]N㢙aF tV%ɩ ˙Z"C8zz> _n~` $Ju ⹩tsc-k+{D7_ɌH. n-Ύ^9_}UH2+\U֤s[{ayZ :Lg )Mzfqqi"Jd]8ҡn8~Y=MY!Z4.J 9OTDIGMiM2__W P}[ԟɺ]"KQhl| j2Շ@ Ń:Q±X—|[ۨw+mڐG3W](q:Le@pE ?sҏ%2|o[Cm-I}ZYv6ڱRn1P%lb봪'ʨXr>6 ,D 5]u9L$^i>?cP7>߁YNQ 6]5Hr͛.E*)CuY&DNZ3JR}Ǝ*K%HwX>m0\JC+*^V=$ԓ)bs&܄ 4gb ӣ<:^Om:-}eΏ_qE|(I=5Y.N~.,WrpqveH2X \ '*H _:l H)}vwJ8$zZ]ßD{O+yg ,&R##Yy[rF~f7$ɶ4% &(P YZ