parallel-netcdf-openmpi2-devel-1.7.0-bp155.2.14 >  A dkKI%z F2J.ZhΝ1vFs7>fdw6A%uyzeV/rraogR$~!{y$}6zHE{ +ҼY 1\\{.oL3ܹdeI 55IYN%mA^,F)+L#f!Q*L{Ղ!`qEU8ܫ9HL7^S]g۝byn F1iwh\W*@k/iFLNDK {Dҕ\M(켗lB ٸ}PD1Lh2 &wl/H` sGIT|+t+OD=/ƶC6#4эAwA'Yhkkb"&JI!B؊8>)wϽIg֚8^K;onX'^cA^Oo.zV?H >p;?d!' 2 jx| 4:D\ h t   "@t(8 9 : F=GXHpIXY\]^bc5defluvzXhlrCparallel-netcdf-openmpi2-devel1.7.0bp155.2.14Development files for parallel-netcdf-openmpi2-openmpi2NetCDF 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 openmpi2 version of PnetCDF.dkKobs-power8-04 SUSE Linux Enterprise 15 SP5openSUSENetCDFhttps://bugs.opensuse.orgDevelopment/Libraries/Parallelhttp://cucis.ece.northwestern.edu/projects/PnetCDF/index.htmllinuxppc64le+kvFkdkKdkKdkKdkKdkKdkK5c6c42b49161fdecdb0c58319a52dd4dff042aefe7a5a62193afc0674647d4c34b7f0c3777e5f75e4bb0e2cd6cb4b57f35530cf1dc84288599044a03f6b25b4884656549af62fb5b2451e399008a90235e03d2dbfa5083b4b26bf927f45148cff4bb2affdacb95839b9dea8c22009ac79bc782b3adc1131ed34f06dec9d4700ac0a6fad35a893215f8d8fb121d546679ef9b47378e7c96ee382d2de83174c0c6libpnetcdf.so.1.7.0rootrootrootrootrootrootrootrootrootrootrootrootparallel-netcdf-openmpi2-1.7.0-bp155.2.14.src.rpmparallel-netcdf-openmpi2-develparallel-netcdf-openmpi2-devel(ppc-64)    libpnetcdf1-openmpi2openmpi2-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-power8-04 16847533191.7.0-bp155.2.141.7.0-bp155.2.14pnetcdfpnetcdf.hpnetcdf.incpnetcdf.modlibpnetcdf.sopnetcdf.pc/usr/lib64/mpi/gcc/openmpi2/include//usr/lib64/mpi/gcc/openmpi2/lib64//usr/lib64/mpi/gcc/openmpi2/lib64/pkgconfig/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP5/standard/802ea42c5be8a164224c366aee5aba7f-parallel-netcdf:openmpi2cpioxz5ppc64le-suse-linuxC++ source, ASCII textC source, ASCII textASCII textASCII text (gzip compressed data, from Unix)pkgconfig filex.butf-81b504a3cbacdb9a2485d3992bb3d19a8dbc70c610a6141b3306d643e644e819a?P7zXZ !t/] crv(vX0ٱ./,0ɒ&=%GAh{unDDN)~Y h{Qs3q7VvC<|W/QXl!\;s:^̬VXvaH; $0'Աbr=;lǓ Зk$gc ¶Uu S57B,fv 8-w~ԒWrbƍkƫcSO:AnǹSf\Wؗ~eƒ!40JՂ48k+[[ooQtEQ.Rg')_@ϊ])2|7yzUb^'9!KfB6 \6[.̸S:=6eoJN|fb}^ v5DT0J !Kj.8=Sx6ў.z+sFY[ ҍD ?ߕYOkd+cqDT61 pd kV/</3U)L` ,L>jqy$7kRPb݀ uBx~$h*'}u"ȱxPc:&) |o-۞Sc Fj YuDzfڮ4pkPZ hGlSD Ui'I#m3MSLnaBCsCe4*%ca Dl)'X)`E~6\Urp#!=HN; m5$VRT(:3Rlf gTj:*; e0Rf4B9I=EU'%[zy~Շ8Wj`ln-yX:#묉h]MS!v4\Sh>Ķ";צhEN(2>E`Z GY^r8!#PRdLJ!i{p90U \$9>IiO]{rȮ9ȬH0aN s$c`C|jW(k^53Te81b9ct5~ <>E^&r=lG^b-?` :Qk#TzJ߃2![9% <}`Y{=J;j|bF(|>,]$LC]^gC^.wuW)ɋY[s4w܉myq>50066ǒ)6]}1MJ~*ɋn^đolm$d{WA"e@gٖylЇS\MM\x Ģ_7+۲QFn/V y݃ìM4sCv!TZ#I:,!^đB?(;|Tڶ0(!.)o8wAi [%jA;4h3+%hP{<ob^OU.!p3 Ehح:;y`iNhwZyH2!|3 &C`_R5,?ctYa"YOY>`vތ5bIﻐ>w.>Y߯XU`rQptc-fx3ۭZSB=4bpZ-iqgkkFGy!*-):q5|K͕N6fLĀ\cZt^NJᅕա&uԦ6pIG1Me^|o6TFpSٵOQtt ū"8 >\"[;Ǻl5/s0ԐK4r;F7HC`4jO-لtw.4 Q_Ҕ:oB)[b#dF>Rǣ*[r[U<,#w|+_J|ī 0L(no?]r_JljMef߈'ܕ5Hf pB}< ̙'}#@Ҩ"b_ꓰKR-@v1ne~a{\@bq_[P$v_]S}> HZ04[TsEzw1YJF2Z#hLV9>_DCda޼;UƗ*MoLԑ`Jg.!X+$p5 hoP\ ћiR/?dIg9爢%: P3JWxwDKI+~ U7[%j~WޭCaeLX\<$eG8|+([e~F,?՛s;9?W(rĕW~m5Wxh*od4z:*CAc_f/PJxaXkOX$15  2@MkvyŎkə&VUЀ}[&QCjճ<>w K,Lq4xMH@]YcP8Z_|IjR L{,OV{pY,̗བx520mkV0gzBףoH}y87J9|@ٕwJ/P|TߛӒkoHnCbq+4lr5^rso[^"rd/ba!4t/W'6#P"FS?Xafu1}ɤԃ i\m#j;}X>­csOGI.;6r(|xǮdž*_^ 2]}>bT1ۛX%~g y'`"n)*ь|l;^|`w ]qz!0gPQrGaP!ʟ8yskfхp{b[ 6i38r œ0;3t$x +;#n-Yc.Ay,{ ,\gۣ cx9iPx,M2 G&dCNЫt9voìss~ZlV+/v`0’lo[}J%~Զ%{.{iRßY֦O=κtD,rЇ/[1בtdԥTZy5Yp]vp?5LԧteMQ :P-ҏ~b/ cF <7۰F)Q[ľբLāY򲊡GUb'GMnR_~v#3DlV@D$.3oJB;vK<艠ԟj=zR/SrK7ڥ8MK|9hpL:nF`< >UzĽmPP2cy0cC-*Ob1-[qEIc=dqS]WQ!o&f7reTakU3=?gΐz MQßÐG)Z+aS,҉zޕ,nRnFcs ?% l; SmMWjL`-A H|eNbq[JI Ib>+7X8IE0)I8w%$)d^@)7DIX~N Zyt IvM{Tv~K׊fnԲqwyPI!o*|&HJ΅{NuٶT)!{{E6ዹnT`3e<ʫ\;hմN񄎲To*w"ŸżWs%WKm?I kmvS!o@saoCYTjh@~in_%lU<ͥK,bv&Ң@ -z?15&#,KV2"}psJ2bmYnѯK8o[Π61׽M:-Od"g.C# TcMeR}8a/R)?ɳ1Bse䓟'5yjęAŲ *  AvmTZ(ns#ޖY*#𼆴<=ⵆVZr^( t 6E$:9G+cWx&+êCTkBΖ"ٴHgfԙAw/Ԫq#L! K↑W'ԣ~M Ĥ]=圮 =v2an"ǻF~B,u9_A F<$L>MyY-.9=XwHQO} gԚ $k-;uBKY7 6$5[X'dx?Aq1?0iHx-pvi?R b?~jwՂKFGᬭc+jK3'ytO/K6U5(V1ށ)N_asCUݐ0EXim$&wE kqpՋ!.lôIqFݫ-Cs=-&_Ŧn] 48.U*b.R,ьNuBgP}oSt5o,jt8jͼ7n{)eEJ^̼)dYKg!ԾwL~IKMH3T$$A]x*EN~ma@.lkӎ7 8BdBχ K?R^?OabXu7N9N^H7 ojU7K#J-x6$duyf!O:5ھhWMp8thYt"MS^ФDSCYWf@g_k1s#0+Yo)OkMz>Dl(6f2N\ٽjA%oeq:RT_'TآǥViҍ)z'n d}V~o|E6?Wu @C{ts۴4m@Ukٴ3|-~[c`uUmNJq!Ei5CUxVnhʦ1Eݠ.PCGw4T8^Lo7S=f俓@VKu_X L֋(BF 7XV5E0Q5(5"GL/CR` PN75u}b]J;^N_ݧg"9by44K< jLcRzwُYM&̏*UX{߇Cma{\GE{˄+H0HY=vfj:f,,2~o7y:lDe x+GY3SmA5>m@R4Fyc@TSH O}no9կ_Z-ɂgI*/3@/5jL33|p֛fqc0^U5mq&j -fIQ㠮b' UR ^YLZ ԣA>ڃ-8^,'ho2uDi>ٶ* )rmn ]_-1|S2ux\{CO 1 Jpy$&(p^ ?ؑ͡A-#檧XpA#fT.Uڿy&d3Y鈜YmUG1xۼb_ ׯʇ\%$W K>,+˫B/ =b}LRHHkr "uqAЌdevR :8U:]>Dnc)C-ˁK%DadM1ƓWa\Tc\b[AsUyٳfGJ~so m0R|rQanRob FJ}{Tuz+ uZfTWi9W?T䭔2Ī,88lEV .MѝD>ӥ$BniO]a|qZf> ˍ kM֑XT+L/Gu ;3>|OJ&!ELQKsi];yXjo EdvRz$S!#;6Qxg9$V^f6h>)*GD P~{RSDkޞPj*^z9R93$|4cֺJ@SǬo3TYy.I(aQ<޴O3'!BIvdM*M C٬_j|8&NΎ4X΢ X~6CL:sz9i3^ *7B/|#MŷIc˻tˉ{85pM&"!V02.d=eA_= E9`zR<.,>ԕz[BN0 ½ތYk +:R[%4j)gg\&-4%(wgV=%wfz,ЩUޟ:#NCT,Ԗ|'EM| x9t?SkGڜiN#}|6hʌcmnEp0jx1āy-~pM.r(uPv~7zE+A@1 A`$ ~RGq_IT0r̵O87е'XW#ڜuBѸ'{M5U%t3 n +/V`bK=`=\Ya!Pn>|%~5f2x3ѡ;1tpN ~8hxq$1r\lyl䱹Y%8D%WaICI nRC]I%רiIJcHVrq1cҟUC/9 @IȾ]Q˶4&# GKA HǥMҎQ{Qpp }#z00WFvxgMO8|gSLf]~fEoO7Phi4 ~yur0㨘l<8S4fN`\ iju<%tu=&6!>z濐gCFKJٛ&4o7|E2𲕭b.j\u`Uѵr*GSBb<~PVȫI8̞`8; z3[iV[E@RH!x`dtS%-~PIDuC{;^yEWo= Ovơ^;)"Nq8l`a"heor.q/=7H~+Q0sHNki?ٚlDpeĖje"9_<%$[{B: SC֥ T>NxDzh gF[,#ҧ鏉V#(UȐ 2N9kĹ4\bk0z|S`@Qp*_b}LBԬj N5p爮1SȻa% !ˌhTQ 2,wq8oAsVyی+X` 7 c砩hh'S2醢z{g_@L ]A&#F 6Kݹj RH:4B:`V. *IR'O̕vZ G!Hb@VK'n~ HኬP$+pD^kw7{pmd[UqOaoU !L+W#SnNO 9Q/LE7stk`f'jeaPax%f|cVe3 . L>H{gHF GFGzϭ+>g%yT[+T5W!(iI4e Z*dLf%8\@U.>4*L mD;f`vD2~(-\ jg2;=|cfO {99coM Vk[ָ~q%-g̳.VJwҿ!تksu=y )a[<ȯ7IOTIz;(V0XK86#Q/ O/{(|L(8h`db[v?{lҶ\MNGA`=-M{nњVO5D1:ЍBTun -%Zڤ0/+arǡ%ĸů ED=j' : :܊6bQ(1%1[A}m4hP!Z;Ca5)\$5<;"z>u,Zk[ؒ„ -5Oe}Eпa4P_\&MXiSL.wM؎UZ6XO7oDݟ>Nŀ&a 0/x`Ӝzx0HZbgʎ9>Ћ3;5fXm]Uo|~`xJօY2NO3x݃6c|KRIK$IzDO޹@%6s!`%P3Jڕg /q/sțEPW(;EiyjinGu 4rY*ǵA|y{raF)waʦP&QtO4MkGL@킬a୓ .Xm{ .Ѯ+J]̆"[R&86 ?:\tUXrm$E%6wC(>ǚ/z@6f bQQ-U3צlQt+< ꌩ&=}<;]<oy/ MDq2I3bNj! {=Iq"5t6f^1-˗H񽬭X+WW%A~{̘ls 6rZy\_G9_H\ Uw6uVen(?'b c??;rUJS%'1aY9]eX@̯h 8 -a$NSB$I(rdသ5yHo'3Hf^|x6#YH;|:!>MЭH"ƖA7#twjϯ+O)Ze!7ň%/ ׈a:0pp1+D,^@!c=jv\iGT 6Y.oy*ǢJg} >3(zb3P2 Q5ΰ<޳ZYݑvܼ'%ew{ {ӣ0~bE: O,~$кG9T1Ѩ搛簬VnwJk-fNb6|ĊM.7,Bn DϹ8f:J_gD7b;VuHd5fHfPNqkJ/F4L S9׌@}R+}^Gqf ^} /Ӱh+f3$FM8.q$κKYc*zE(3MJ?)}+?pCEtEXr] -A{2Ȫ!v'$ey}c SH?>ʸ 8:MoW, ZIYpm^Z+nrᾊVUPJ4{bsmM67C5fK՗%gQQ?9I.Z!7Uk8ɗR*q~hG!(Rcf(mz{ї:^a' J\o튥v!|6 +YHDJc 6&;ywz5!.$JI.26Y;gWnen)[j1Tzo kKkWݞmfWs(q{߱G!.!h 93cyН>eV"MJX"ab.}?o.E*Ww{}7,9-{ےʣCq,\;gJʏKA)K_Y͵-s6TL`))QX9:=%4881D,t̬>AbSQ $ACx]{`(хto_`) L4w}D# kR~y^D`H,-mBxӆ_-"5E?tbyqB9>g= ߞ}`-9\T41EiטqL?,TCҔM B_T_Z:8TAReDgc`8y.Э:wXI/xڼ\fɋ}v,JM)MlՠPGݝ PVL>_vNyc?]k(7-X8 ~~:W{ jLӇY@W.JX66hK~ՠ$΢8M\"hXCȯpUaO?u?]Kg`'~!/F.2m`O-yĶ`pŰ󜧡ox7_zҚ7QRnTsBv W|j/xuwذ"4Rq=BtV|ѻ'3y<+0$NJp],89=^:E(ya;Y]RBBUp9*a4pLL%ە˰nMFO|Hu=&3Ϊ$ =M=@M?77<k!T! #J* 3ō(Eq D  1\Cڦh壗)^ ji0'<=µeⒺuZEc&6r [.щJ=\d6|d;/sXļPjLP${:ن׺̞RƻLZpIYrtr\10/-~r{{?U=Ggza a3-؀IQz !̉(Tt6*b*ʺ^LLGG^Vgm)i-PBX~ Տ[;ٲ,Ji'P^Wc`?v h| LpKxV1m1(jEz9:HPؐ]]wsd*QbxW@F'vW>!d+c1 GEYv+F .f) ybιUB/R&ݵlcZcU}\&|%ٳut1KRrJ,1E`[Nޙ`nQ8n\"b"<䩉jLn,1A$+u㻳eV> J˜ !uo}EǹԮ1 zMq]zo $v`CVOUրUƞJ" >3'dg=,YFzHGwa.b?k[C{JEb W&$iavFlD.1#K# ]Kϰ>]{?,Epf;G}${7IMХ˛@>eus€s8wIQgG nJ J, 2Z^IOj8DW\݆B.gjJҫLsfǰpw2Mae 3٪5bra`N#%S)Н:qa,#_Dn,Z_NtG Q-BhRJޓv4: O;sxm>b)µ[㭹T'2n_+/10" H\g *ry> BOo[~CݸÉ`IP0cS 5l l:=PN<&)_'xi;zec"w Kwv;tKHKǥ}RUUUS: fvXw*5%Nsw,9|kGMN-Sq~ Kr=X1M|:/?dD@j 1zu[,NTUuyY4/; '(fn I sl4!dAiStq6GQ7ȀFk㈳KOQ~G; vNI#jO5e\IlF[f*dٞHK}='"A|%i">aE8n30ЇTڕuG`>`/jfcW&!;ҕ#6`^* b9 Ll0"JV5D=bUo;=(r5\4|@ee;fr`OeTBDPXaJ3`*ZTػ{&[DeaVv i7JEmҠKKpSĊȞ4vd8%8`rH c_&Zb`?R09eB6D&? g36{W%}O#H@~۪/m#1l}*D+N9L7EDOJ\ XeߩkF҉s̵GC=  Ȳҡa3JB|P( XfY<܀HT7") b3 r౦8joִ($%ujVfL:#Ԧ#> m\b" *4pmXba- ]u*弭}Jx߿G) |SFqwyUl,zy'HV䕦'O `{kjz5V qINogK zLܤ'Ej|&v;yz*W15uK@̬~ΘspOk.fإ[8E9 ʑ+ڝX͇Z4A#:㴻+!ď(3`94;D$4l.O~&ģFqj 8C:o*X#qZ ,e?6zQ'fpL2)4kY׷n%1T_ I_O[yWOi n|Itm5! ~/L;z"P3+nYayv'B^$2yeW*H)UC$;iO4f8q|QӗeeDݵ.}l"KliR^(O=y{W֓6L6'[4v#{4SI9ǁy" :.V^^S eZkF? N}x3|Iibu#W +1D%iDGIYWpT>۰gc 3?-?,h?͓#UGt)B3QXeKt0GUl] / .VFKȌ|> }<8/*(aY~(GN?cB XH,Kolo[Ҕ 8דXd4k'r1ҧA Q3$yV1}.5nslffͭ_`! 䉗?ć}O΀R"ҫ K"+6#Amr\xkr5"~H_IXDm IC B~v 9JLKZsR<:94CwmAԶg8\I81֞zXﭘZyatd]|)*8:Hv 0v=7u,l9Hu pƈE>]XHkm( )unZ5xrL2[n^饞Jn g"Ɗ<;Z%MJn6T/"o@N0ʡѵ+]PU'wKxx 6d\oZG6Dm >OCR&D9N b,-SS dGж-+) m=ss`g-󿒜΁xt͘v;g0*5K E}yv4e=zLWp2O;”aN~TTRSCr ѕZ/xIO C\] +-c!y=-dHuwI5{^8B'{S<UɩGۺe ሙyz p3k H ûQ[R2PaѐWV'm9=ѢAڭ;Rj^h}X&X ;"NMTloٺv0͠y./!Ci^+dz4YkLWYh' $Wb _vɉ&)Y=IlBݕ1C»|=v1qrěٯ%g f|&<1&Jd> 84ϿdX u#93Nx02[CKIyjS5"2'4'B Ww_:V"ŊQ^h 0o9XˇF2?:Ie&)Y^ bƒ۶l!m%=c>2Q@ƪ!e|Kk8JHHCώ:`C(270샵~ɡ`wDn$85?WTA`Av9ЎLX@(mbtQ:P7X!nvy&?}'-LY}. }^N2'~1 Y&6ѿsٙguq>qvy"EE# m1ԏ2)[r0dT$#ؕXB_Z)X .o40VU[$FieΖ:Ja* f#ᒐ?&`Pnꬢt`pABm8;3G\!~ɿ'd49gB1x\-$Rk߻K+aJ |B+ 4WIH>&sl^BhDQ+<~hu\ǶBAMgZ]RKN7EFG'VU U17+E>f@kyT8oG`\e1<k(sOb@QF<"xOsa-4St: Ru౲l R!&tv]!UݚZ7tg2bD`f='f\!*6,rﻺFO2x鯞v͹˶A#+TRO75' cpo\GQTvovdeq*MGeB %~rdp2̆rGѱ' GrpwKȸ]s]/@,x3 axPqm9ADs <#vt%uTBRƊ C\PȪR~,6s\J-Uk"检E0k6,(5 F7.IiװxQF`RDj ʀ1nozoQTLw*C/GQu(:>`>+_Fd6ܹ⿣Of&Q U{ y:8s8y]F@|x#`Dza&̯Dg\6->AD(0]rET8qê55M VV%& lI^)7qz:jg *yoH|pse314vSx̓]"-MCܥSSt61"ZEl L@2O%HrwGc4:6/vBXVGc6f}njfQҏ-߀, #&{mKSx IXN " Tz!`Uiր۩X+oo-a}$;(0Ξoч{f8Zqmř >.z"%ͪսʐ ͥ'{KĺW]g#Pּ2BްH*1mhӤsWENw3PE( #yTW6g3eUXC ޘ?sƷ6XwɰSȼ0VnXG/!V^إkGp$yEZA$ : 0wnۧcI"ȼ߯ 1C @ *gۏO_1` r5c:>jঌJ6:{7;֡-c70q+p wi&I" MˠV: E3a[`xkCN0 _>tw)W啺2݅.GtWPVa@!v`MMNHFeȘq! O* שT%E_c;cx.ZmYG>p6_x:&E`=>o(c]N0_W_ x]{C)MpyKjhׂ@Hˋw8# s>*{}/$Ek߹v/#{DL"SS =ZZ}kl93mX= \E(t`NEㅍ =TMa@v;.Ɩ)wb9욕dSt[NG9Bؼǃ,HJ0AՌ*R6G{ũdǻ~ }VC_ q-mgJТm쨻ntΑG&7#n"¡ :SF!#܄YӈƘM#|ÐtsT7!tkk6$WKcA2$yf4E?03+j/)EdVH8\$GYk#_ʚXX&^aGNtKgHi%+؋Z$ګH> ٘9YCD1M[வ</`S8XRz$}z$7~R0y|ֲrU i7oTrKbTWȋw0qq'6dL-lG⊷.2$~i2-ě>˃O]Hp-!*ͶA۾XQTQ)ww[hGF(jl-{ $CB(E<* "_AVb6-ĩ hUJ'E&m"'mխwptx3)Q2|C5dV gݱǖn&,ɩnPNzӸasDSߓCfw<7aFrz {^pw ф˕oFGfZLk L&]xOt>\"}2P+O\tȠ3V,R?k%X YXI=aAj<ˡpMg:uM:ǝ 0^hjdO^;Ӣ항[NJZ7#St rgLK~+ϽpΣVdEnʀh"l֞~cBefؔdSԖL(@)˱1R6Y$ӵ4~GH?G8={-qE1Ez)h9[شaV|IyEoXL $ou L3D铂"p,'sFꒂSVT, xT}ϣODqg6ɕ@ːgW꼠E  ?U?u+^y -*[l8%5jc ӫ $mAL~`c eI\MC}k"s;M N%qB%$Yա7%Z\vVo9~p`uvB$4gfm#xS 4:4`cq1-e2;uF&0JC/~C19S*2j/RC+hLsZCk`^? l)OiDsXI700vW:PXaTSw8) " ={qX&) K W`m?iC k|փ՚仟[r6#F-)f[6q"m|v:]ߦA 1M֟3מKQE >.|vXzϪh (HFld~:: \YpW>ͩkP}LNgP9^*$ W ۵PJj>i8[|NxQ2i[ދ%n3Lے<’ZQN0 SC 8,LV k]|zTty0zJ%e7{d^!g@h$/Sؑ6g&nӗwT)`w4+Q\)J%OxEu5%c3Zn3VRpDsTnO^0@w̓r esh3+ @!sg"W/0EhmЬr6yuC%գ Jn8F?L1`1o' Nz<>$u 9Aɗ!r~WNӐGo-Kd (ڢbB?DWrL2X Mphqyn-uJ8q~tNl״_U:qA F➺L%1SQ ?4oY/T&]0!l*%:qm*forP%6=LH큍 CtFv|OQ26\n>='65qSWoBཧj܄Cbqw|(UQA 2#8Mx<f OqBP4&Rcʨx8S-tX[-QKfxŁh R m7IN3 Q$nAÓ"{%E~S'"i \7&TwB̂4F8d6op堅hD1>*XZ<^ 6cjzCM%t\<aUh^0`%EȠ"Sc2jJ'^| fJ[{W1rʕΞl@Lcr hƚIlyFU:jKjj׻y*yRI~?#"|}>3ҸA; bR \xopz,%" 3_~щ j2&Ol'{u?ӎ$>ջ=~oysJSyNAcWgOw!FOԄBMk P"(3mfzwPUCcrT::^>LS'H@RYo̬"?ݩfS2j؈HqAd'hj* \lZN-}T'>UԽ@>k_8'kح6-k܁R'Y2f.h+DvWSx*mcGl2Ƙ+ogN/x\?|pL jGJRsJkTHT N=R+ ,Xb*}+"[{g?P#Z,a(Ye>nip>7N&9AP3%sx]Hcd&cWF4咺!ZEH%S{SEu/->7#mc:z9DždȲGdEYa pBYTjl !rSœ6՛<z1NHpN\#1+tgD"ptܭKP(z ?36`䥎~]=I'9i m B9uRV'Mи4@_B+as9 xl2):v!(O S{^I]UDGwkuMC9">컔pYE9K|V;s{/+XH5"1р*:ʪlS/E(H гu6r%057md#:`!a (RMǴ>d;IH84V?Zr}N}EEN&F3~#9Gv`)DB05_g[yFmhn+(n򟯜8kqu+NXklu@]Id#HHznaEN ChľY뽻Ѽc *pv',=ib[ P^ g/:^@Eshi&VL^meJs꒓ެ/le#Gg'ܦz[[i#{ɁK ;5TvUQ(t8Wu݂HXT9%I#-OxF9QͷuKra5*G?= EPohPؘHDwCA%#7@x1P7SZpi?O6R0gܽm&%(* L_6xBDP$dX~+PhbQ֚H;͗,쬔__.ߦ[NЭ ~"a^>R1M˛d gО 'cĦ"P]e%NV<Lw.Dlu6+6sstt7rzU~  #YDcNSI՞HB"XAPט]n|)0<_%\C B㫩Cwt?u͔EhB w}Jf_x:fʓG| 4YJJV ˢŸ:yPώq]Zu}hx}J=dѵBMR|:_j Is^´Ӈ*NU=^{Zv7|[-P2 ='uX}ICFzkǕMg3B_sԪRLhU9kE'* 3ZO˛S8݇s)j}hױF>Kӓ[w=oi >:>zApɂ޹@_}*q5T֔{.t֫ebs]IɋKӤ`M` ֟Z!ỉ?LR OkַjOff|?FUEc#ԯ/M _Ç $L@< h+M%UWƐ)z۝m՟wmقQi`-u/k|?(Yzwfz*}5z֗rz i7+2Vd[^Me1Oca%O^vjV8mmVFy* O߷޷~뿛I(qT3qŒ/hT-m5!q!N khY)#q~lVg2xN8i[T.#n!\`tbiRm9 b A|lPu?ށlya;& VMSv7LQԜe-})]`ܰKf7|à0z8tTXH㟭T;ZN)cgӾHZE;cc;"HI. /E6g;x|Lri4cvw j?,J)-r\4vifSug2CVAmx36~ I{0*/1L }6G}2de 9`S^vYA?P9EC++GV}q`\B6+Z)K! vcsk9;KLEtͱ hg!fO"p} Et/̴ke@ZӰ 9kAx*s?@#S#g쨒`!'Ǽ։M>&4qOS1vfzEl;g}Ӳǩ?R _G}ήʗ<=7rp< н*qS',Y]c| 2V_b(2cI>N(; SwI .8H7w<~p'#DM#:ÄW{ǖu È,6ȍE&bP+Ŋe)4#^ڃ.|+s[oAl7ڛ06 F2\sd\a)*SE,#o홛 H'rz"unLn&:oKLp* n/4C]x;6s5fϞIaУJ OV%z- qSj 5ޛe5O t]C2ok?{m0`9Ɯ5ޖbSzZT5KCxG_19e31G5坤}5rSoiz)fnJ8(mga.Qܹ ;=,& h:iw[*a nֹO=/u|SF64$nSJ_>oHAK K~dX׼;խ,)!"_?U:&%29]N}&.e)$g@np1;y[0>jCn\ ̣+|JlS'aq‰ r-vjQm1%رLߚc.%g>3kV {iPMA<5\iѩqp*FxѧR6Z}f!M'\/2qe ˸T 4-1;߈$?*[kñDmIC&(H՗6p57j |t;Ǫ|}8m_}P9bhmf||C@K )ڡiǭD W۪oZA6ňw,AKG1i)3Cֽ dŸDS.MI%s}8R]0L8׷;rH),1T[C66k2 ަg@JgcJiLm Ͻ.)}}BT~RiaWSjeߎb8E&Q\|Ol~PYYEa߉IyIb9o\c)@}"5#Y꓅p?ب́㎊>c>2ض"'4݊n]G&'bIB E%$bkMFn,Ev o@-FÇ?FQ IwBWaHwrH&B7]Cuzn@>q\%{O (? 8٣j1)X]Etΰ\=K}8.qHHY^xuI6gޏ>*;:{5{;Z9J ;af^yЧM <}=?8-ilxNsQpJ IRow}::G+¡u%T-QRuy)lO 9p39׻Of!wj=x7dpv2jŜi7q:j=J>r?'쓲J`~pߣQk9=tXisy+bPwxFC: C u¸(3FOUBk4Q)qP&a]v#O[ڟIwT5%BOTBq3J5 UT@?蘗SC]dy ep&[`1+%r!Ke 61!lzIw9M>m=nK @z oE{F=OQk oD̈@_[ "6L8δ]ߘb~Iۑ;\5 Pyܝ5qH2Q]=eW4≡>OJ[\)J@HJ .^r+wtVS31fxf2Dq4@ ku[`ȫ9*pL%ljmR:F@Ewkl;s)P{j B|IzJivy&&DܽPu(t3O3Sۯ%qS@+` i˙vuY=7!D,Fڎ @q fJIGC^-Zya -FUʴAm6?Kcڙlx*Fcǹwu.=:IoeU|u;Ed)U8k4@5 ͯ$~ cq PR p}<=+ x,w8Uz U˷6ܔԢ ]ã0Covp7_N|YmR5(0Z1W1 uͩINqwӠPyj??`´ꅨULΪga߳ZSbڀA37JT8hα$͖! Շh>vp+ir½3K{aPK{ @d|UsǓC8bSIQ4- IhÏmff .`O߽ vy uT9 (ge!e3U(&3#UYh'WOb~F+BIXߊӻބ@r,y9uSy{׼I+<2Q1Ƃ.Wi5lq!^v'X%.Q@*TerHab1 iE~gJf>XXM'p E7$Z\ 9_d/ tUd_AƐ3YR82pBCƓ L5r9{GAU58:@jξ4T$rX0jI=k^Ծۃ[:#E5\?=*,V-:7WdY0'o19nz705<`MUO?\P9E_3g(Z^Zed5꿧zIQ-<x p,N"JAw5Ú0:M& I=ZU]$[(Y.͆P@y<6y1t2A(DR);htK;ZdmRNV!tte Hv%2sT^R6k 4y-N\KM&+UbϤQI'qDOxH[h6nMԊN|Pb,N]$!ngmSռ2. o'kZ\ϰ,JcZ>]a]bv..2\J tO H&[dI5Bْ%}f9Uy#'P4XoXVeW?[RH"m FXP} TF3Seΐ20Q#Iå3k[˜ԋD[eb|\~ 'ͼhc+7{,kp&pf/`4Rqg2-9Eya9d*̋LM9:ZqLLQchD[wD7cz9l§BōWttIT0hP[ls@ WPJkvĢ9jH`qYE=!A-` K*cN<L'w/ȤLѕz{x!m'nD?&%IbҲD#(vZv=Yh)$)z׹5/t d &K#Z{z$Vj^{2!_2P? {NG{zz]ɔ"W#to&1 SE ř-󸃲뱋<*「 V_όŎwmG{-'z!ʨ3$*JI~F٨S p0VjPOфߵI7`WJnqO:vRF'gsl +H:#DV J=B0.SG?xB}L^}͈ ͔S ňN)M+|Ao-*%̩Y QD0ک[<(gr8ƇT~'M=24~p}X H-ftO+j yv`p/dӈ:3X<>)߸qmOcrT$dlS_6Sf)+dpJT85OBl󈶧S1.M~ؓGwCбEv絃+FVqӿ uydw}VՑn\C {ђgbcFqȲ2TUZ;[(y(@!~~o3%4awdeFg螳cL=DJgCᭅ%x@^5\j$blל 9ZY6{l2YqX(}$T}F||vʼnj_-\3/M' T~#L4a(HoShSdEܡ( ń蔝m; <>b2Hʲ7#hcf (t8|[چl$Ӂ-S?Rv4i%ysY(|O WTd#YBזIyzIU!.:8|fizIjxNY~"GvtvDO4W3KGb/74~xq)i`"R覜?6?Xќ+i0Sr0; ' ٝyreȀS9ԜeEq04>Rֽ1bHds+iG_QmRQbmhd5|L2X"aLD<ܶVD 3WӡgHI E1_a( y;̱ݾ]3uN5(4,[mx2 |6-AHhҐ].Ztyj]C_PK5ٛG j:T&0H%>w~= Y}5X hb_^ͩ|d,\fTW ]G\Cx s`AB]mB@(H Ipn<2b[%.%E&NϗZTH\g"i ?/fR716`@v?`0YwU8mnZ⡷:)QOõ^̙k -xQF)Wݪo"t(#eE ^.pVbz;|bݥ#>2DRPOes4}ՙV Ll|26sD?V'8 qzYCj먘vZW]*PfdQZ(psC[m hPqߦN`pk/X ow"Z68Y TP]vfwYQܰ's$@*z# #yLT vTgZ[/y˹d Q-y |GP;޷ΜPsr-sܳ-_*lI-6>JL J2Ù•eXM"s|DySL܏I6~0n@oJ2sa  <uH{)I w&/ -e3M4߀WBT{n,lmn󰪭oM5Ms.:kmOg[T< P P8cܪMRKȉyb ^yg(O|U6"Pd(j]6cq_E;MOz/Kd+6ꖻOIϱvx*smҮۊv5wԐ=,a5 2Vd@ҬI1\uq\iw/G7qṆe =2qz!@d \hي+Z lON,Z!ݧUK]T+Il.koRsv0v]nCg`W԰a$ceJ~T]@/j\!$@sOarwC9\|r_ !ޜ14d^yCL Dd7tIStCx٢ Kf1eEZ7E^L _k y>;7Ggĩ[}BN8(̫||p<0Yj|b LP!؅{Cj·ۃtY;\blą!ҕ _L/zmHw\s4& P!hnY]8݆JqXavjs ?s WxJVCҠ?[LTs@esO6~ZsC Dڡ0ξ8";僸)DNmf~ s\MaBaճC[U1jN@.0gE\/i];e \0VͱEucq "y5+x H4xmmcZ΢5-}sd)nA"#U,n_hFˍv#~Yxb(/h[x Ed{ÂŅ-Y#|U0!1`{lW}.lFG`<̜Ň]4R ]^cm[\oS*sz]G95`X ͓pDGn)Ӷ"lSƁF/`; AGOُ`V4S\-^E1p0}+B?S&Yy4~UfbyvFusf@v!&_p*O]}I ]9vF*«XWvGV !ꖮ|F.~-&5hzTgF:օh`;.Ip ԡْҏVPJh8j 4ElMW::n)rZߧʼA:;fٳ 3oMJ:k]3rG5~Y)P׈E5,|#Y[#@/JJE=Y؟|?[/Nz9I^x >K}ާVQ+YӼ AKpڔqht,v1`2M;EFjɠ0 9!>jNjfӭ#D0imJO.ldS@;wY9a; bΒݍ6^ZɆcUڋ"ʳ*g G{1D!/b^G?-+{sڎ}f"1E'zU  o\ͳ HC ΧYk3̊ERVƂ%KRdÊ5@\aoz|C17`2 YkZ( +SbV'sQ?wNTj6BVE |a N~yl/º7ԓH)l)VhAe%|*-UkMub b?*ūޔ,ɕPlhrZ*W>C,8QͺmL/2-o 7[h_GDv:\6vl6QڶX"zE_:`!ey DC۽@?lazǸг<ϛV#uWin㗛BX.!m[3 ɶ|( nAU7۳ q)A(ЋsB"9g1Jp+0dq~` yUk;;O.6V;dS2'`5i^)`fDy*7qB̳OlALH'p:^۲T.ֿ 7EV@Ct.O8Um*ZŚ Cq7ԃXWOeߴFt~$aqJAfia,FgU JkZ6Lv'qExQ9 =}/gJľKfLb==]߅EO3Ae~ z4Me`qgA3,|$#YՎS 9&h4}P;O8YV}8 o@.yy콝B(/BCO'l OiB_֎锏kvG8q2[UGlsl%qG~7V&R ~ߗyc6ִ/PK*jB2V\^oȣeU|'ywjрbh@f.c̨Un%<">[ME{_ luBl3g_V.2.=Ѓt?\؁.cm3<%)H% -,"/:tUM*̍ڰzNL=;cu, xhTv(cW~:Ӛa~T|ώyB45UĢW# 8,Xf,~~RuR 6bvBPLlh5nHx"nrE+r3;ߗ d661E(ߙZiyLa)Z.nwY Q,jh#_34Wu_ pWsV<Z~.Wgcu3lP_&nIeG,*-NM]i2[٤#$8d7UJitTAtU%SO:]fk@=8_ӈ7O,|fx~j}A,2p8grKOȎ 4OK%Q61_4Md60ϼl&# ]ZѸ3^[)$bv8}5}Uj b#rybSG)ZK rl E Ƕٰo}8rX)W %?ץl`,z'wkJ,5wѰ@1d+I2)Q9~^@[ u" JPaҕa\WR<#z`hj.tpEe ou»c6Eaq=n᪛U8H RoB1KL8V={#stu|+IŸv-T]].Đ?^$ -R.@4W!(VEH|OD[ !#vJ{fB?$kyje؄g[ ><6Jv"il$|5h#y}J32Ы*Jۙi iBNs'zC7l}0e?BΔQg[V@R=wpX?1l#0Cm-wq3(H9 ǗyU4oҏJbe7#p-_d~77 64@BA͋yJ^B8'ފYP†eX4~_񾩠xn / Zu.j=S=2E>P^Qhw8(\=@0LӡCf *d]3V֧nsCk' (zՕo WwiZbj|'BIpcaߚ=WkCGTڶQ_U3L+zXi[! vJ!)||/.mJG67 {UJűlZUrwfyPd(RI+O4&n"`oE^Ge<00`YEe}q\ew OúLRzÒnY֒ i".B.20JG,k )>Q܅ϧlpjQ07ZHEod8E:[Rr(pTtC/m@Haf*;rǣ7x^IPz߃l1O2W)tLyplq+s)x<~/&t/xaggA#TPXSE/ߠ|) Krv2inN;O;/f(n^UT{E;(V[U%ߏ"Zw/{0$C\%~y{7/"Rus3uޗ c ,l)v߶Mش,G,i(Z NctGנIҜ`"hNKU-dִ{۷u@SG}@B[b$+r_|Pj ^YdYp)T%SʨĠهpo͢0 $" a:AG'u+6N`a)O'hŐN ;:II-/*ǍqiipϤ4v*:`9+ >]b=n:\BLܛv8,|geu7O kIR&߰+:~6mzD :gFa@&tTyA,#,e >W1UlU7ҐH!Ǫ? ҀCӏHE[ 5ZRt+11W ;Zae 3dsBV\lWˀ"X^1kӵ]I }H׶kXIkE@R[?>bWXz쑫G|#³X!,Ww2HO<tܙV2vY)Y–<  @d<__N.TǷ[jMdPgzӯaϡe*EwoR,; Zf[W.lɷkn4Oj!eS١clфz39c, ƣ~uxFnyX(,~q%CAF\PJ?-Δi)GPIB璭t f^U ǔQj~?!d29v0C > no!SJ&JDI-8LJBЈbpi1$x`\th%+rw_m=Mvg>ؘo~ADÇ j te\O Wh/L 4.AK$ۃɯ*/70XgNP%r]v,mob<+.2,QPLsx<φ9Xҩ3)7W =lXrR!LޟbFn'9]5 6]SC L-A|KD'FTQ#| xWX'^:EM[ %hYP_ќ Ҫ BpiA }0 A\25W,7əA}꥔1OZvr1lsG=VӚðͅJҰ4OL7knCN/(h{~8RB0%lJ*.*NXLFe9"|.M KKry_+kh$Ka P.Gw;WdB_(6! s4ȿrz| 9t™Q] "7u_g=Ğ*}Hù Ẇڳ-ʺ pCP2?O4X*m'uO˸%vq ;qrg0l\$2A 8bqI*F>R`F !?6s@lbf gGe[^Li6T-S t6)v .z5h& :A!헱{?ױ1TK0YW6V !!KPYd΄$rFm,nF$d&l[Ck2[Y)j3 8)V;FVhcP9!>; vo6(ӳ l1Jy "jtA5Aax+RȆx"0~|HSSvV-k#otrM R li=rT-zv{4 ֍J_u`Bl|KDe cWqzНq]SQQ5-'E-~?t]Bt(ɂ9MnfElRFZP+2JW}0[7,D(j~MVv۽6  {qC?b/_qt1lu$rP, Vb;R{:@V뗼;2yKCcIshNZ4Ű%$5/p =ԧuo#v}E)&=lCWwNk'Tg lk.%EA6Yu|X!ߙwkzłP!3O\`N@?|Õ3BΙ71xuMyV"s9Us-X6' (ZhD$BDku [E?E&4%c$ S0$^#Yڈ ѷ ψWˑzKƚ1S>疼mW`Ong / u#*?|ŏ2,!w²!e0%wdtY,H7%& 8OPL=FjXV_O~u4ɟu~W&[]Ta$8l;䴞9onv#næoRP9Y늦Š_\jhf- `~VfI9dl{Z)>7 :iS?zc4^BF7P}Gݣzkd.گT؃}ދ'pZCS!)H4[:iz*GR:PqrG KI>Y/uV1xtr!ɽqK Xc #uKrcTf߮rPlєאZOtl,OV8 >?69p\M+OhW(7z%$+AGn4ȞqEaT*Gdt[o`65B^jvv-9o̮y@/(WSQp,u&1( #ŸC&B2Qw564Bِ"4'ΚgLE3 8 f#Nb!R( !l =1^,xeo8Ǡ~a^8 gm3SzY%lºs|BjvMt{zT5~ى͈" θB+R  v I9_vjO97V^jGQn/R}>ETb|o8/aNS+Z1 #e5I*N,=b,"(S P765ߢ| pf+֮H1fm IWrKH>Hj;}bf~~m°7d5eUz%V*FM&xXLd]ZvcՉ]JU}(wjwUչ ՑO8-@ 8jFUr{Y#?!szr}`&<&beڨ8,ePq " }w?ۆ6_ʺ ˆ:½r>q[ ؍*ٞZ\̗LUfTO(WBt8$:bVl[+ D(v84:?xƨ k6ɤXsw!u*`Y)^\mYсODyn[)ɢEa9%!]v>` 4j@Ռ3MھKYSWV:nu}pet*2' ,ɄҘޭGNAy#ܼR>o2H;&;:M4ホ4C(=6+IgV+߉ls-{ë&ݡh턮{_ լv79##^Bdx0=u|8sy{B6(M1Wb?Z#^7 dacN$;-^i7EsVbR7@Y>,'ںB./Q?B\fAn[׉?H: Jb]Z TXH<>-U]ۧ7Sb< ~zȲydy~\W֭6@ SJ ~}>^/|?:+el\d &k<>ărv*RQ]('˚9+Ιx!]OLr5̅s 7r@L"?䡪4-:& BVh4Hdi(~N)Fq&sMbϼL36M;6>䄵a-/5qlfk?{ZSB5 BF_>,$3| H=;^c _h)ʶݐ# L6T 6GjJiImԆÁq^(cKfOAżQcN8luSJ`*}H$`8z+mU0[?b콮 +5Xe쩄瞱6w5^jBYOc/o1k74^(yXC1?@3FX0~j\y(P 9^Ƈ^3 \0fn6/p z'.*C0z&9~|k\FP$PPCNe^܌ǹɽ<$ YrOXhc f%.lH+ى<4gy5*ea{b"YO 1[Xz#i??eč2u>e"<\@Ay(TB;1jQK^)+}"c R-c#KJmd)s.C0Q&ћҷVRnQrj¬Xjk铵YT3xv^jcש,@{ay?ǎnx8lj|^fμ/:ys\B2!R]Ҿ57s9? l܇uj17{|k2\RiL!əeQbHmm`cGqRE`qrB93aOvsWx;B5{f|5r!epy- VtKr65:u X1(m3/§OF}r,tdo'o0V+Jů~Y~eDԵHiD8tFt^S赍de&nF,K>S9?] 47*ت9Jk &O8 , A:U%5lGpxXZ_BMYr@[Cm ǂ[$j(,ړ;V%nmiȁC؟mvVi(aH(lG;_REy3 }|h3o<*QQkQMw`밭hy?e"7k _W-\gjʇ S`4!@XŽ7GhBvr#q$+J( 2RQ^'2SK|}J8=6tQPVn Ui`ฤ(ZF1"3i6Қ<ps+>O^??K yT\uo31Z}-Q*+լBq鬠/GĹ.g*:ȫ%m! >I>ՄFDKMA{Lý!4x yzF0 /Nyԫ,"h:J*."ʊ,9xBhPXζL'@YTl|8͂Ѫ<#S"#]ʪ7&X]*JAP S0+.uTNHiY#{)n#TH *ݞJW!N47`Z;EcRLͺFyB1ata`:%/ j!kͱR6Ƒ_%J62REm(4煀fhl5>Mߗ&*\C$zf#}fJ8e[bw.߄ɞo"hJ>mWo2s5_HJ)j;V\e̯FxJ _@hF^ N_[Sٵ_Q'~u{{y Ѧ;ʩ~G=]ݳP@ɻuZ{Ǻ7 *̯j><\jj@az^=J_ '޷ tͥ9"or#G߂1*/'(=6*~ ~ꕬ&LuMB*4Kp?sY'ᑀ+mi?8!j v99ą} D~ \~V~MTKtQBvHr9,ĂzU"/hľ74T:(v (a" 2S4ΰ~OG8W)H7G/Uw[H26t1h '9sh.ۆoӴD"'Hqvwx$f(HrnnD'hQ}tJ5~C=R⛙'wQ|Bz${}L\j;ݕà+4eaݗks4͕ ^!0'3$L@i߫{2lD|s8755 uN`zRoUm>s9'uBS4+є>0F~ vo 2Zwi@W* ѫ˻3ѫ_Ҫ#N(|INv)Pb\R"URmK ȸ[c(c# Բi|>Rq]j3!=>xcfG5J^LgP@n,S@~KFo?lSkUzQ?zG_3&-hy!-/H{'b+iӤl4ɫfV.նzs0MFbVM2 ] wSm@plui/w/fMՄgV5_>fq]^V¡}ɑ,'@|yƊLti<ǛX͔}xr~i,'fޜ&>1LY1:^6jj3^RiU:;\6p$Lul#2jF]w*'`}qT^Z c%GR6zkm3ѬRAΞ y2SzIHiu崮Ò/KUu}gfF+Л+ϳAwB~+P(3 nIiʫȻ6[hî% Rv7i[5#mʏ|ɚEg蓵䎽7S9up}c}~}c_ie_\;NR_$^>T*1Bwq*7'8Wt@D+ 55eI_k80lsQ[ ۂ%Q:^7'cBwfb|񟄟Z1'(h[4y~AB _%˗5] cKf$mGlEeYWKGK5N qp :0݌]F-i;1pnC* %tyn YZNU6mJGscTD!USk'#UK_^# q֚cFܰ*+G$|) !hc0[uQx`Jy76o QnSݷMo.g4cakŗ(i_L| Xwb*w-ז On,{Ep2!"w6՘GrD obd r>[-v'R T6~zk+xsԥZ(@҄MB H*B^"0̋E[0JBygm6e G4 !exZ2̬/pj7NVʍi=}UBo~>Cq(y 'LG3lLzkruơٟ1%X@gw&]An+)qpA<]H%*|z;8Gɓs t6i7kkW D ,_F#Sm\z#5\aM-꣉bD~ .M5EQ9) ׾ oknF;FdFc^pŠj^?+WL;C2B0=@Lkh.lJCҨJXDո%uLS! dNeW5"dspk~]0.eaG%pr9R:QSWNJ mc@S e_l3|x %2;KWxnsl023(|Z_MÃΪҪmot&i^Cne`Im(裫dϭAik.JLBGl:}5@Dhe&$jPѾ'gGZNU$!gB"Wb0\>#~Lm)]O;x"e,' 4mQj2JE-<^-ŜvJ(没rLՀ]J+J)LEmJ + %$oTc"Fʼ!wBxP$48?h*QgY)يېmgQgvϘح֭{=PbҹK4X2TY )]F&u/QOvA`1</cJꏹpT/a.PH]_ KG)FVFa+G/RÆrK>+;֛Y@}WАK.TWݤ<.m&Y|,U_ƈihM{]D>J VǞROjX4$*Qesjh-aDJ w -&l?ÒWxx!$>Vu}ԩVqL/O>wxAnt\9kQɼ=8| L ͙/ nѭtOc1 @a6?6լ )R6D9|71pA"Y@fsg7t䐊[/A Ph/k٢Tԫw$iwPO;KkPuWOԵ+DzWτdb&AFADLϑcTU2عW>(nfYI4֧?MNĖLGZ`_%'wj"Yoln[gsq8zXȥ{ٲ=R87ʰ/.b)D,;Rʹec7a}g+#F2ٱԐQ ?qac"OR.HQ+"ob{AR;Š/j`AV!)IXpXԷD 3#h^ "⃁,eѳ7l٫jY -z7qbQxNjV$h|n*{ׄ{mr^d(Ev{eD3]2?$g}PTumJ߯V).@3U7/({<.>(o4n\McmhO/ãZWp|;XO3zrZL3i|z"EzwkwuLS TfA<L{*D&6|.؅Jz`~(D [m$0VCUa|_Ā6m q(Mf"DɧqŒhz1'[>TU(ȦlçmJΗй^Z=$1eC 701HC<d2@ \*ϲ%ّM փS:C9GXџgs&ٌWjXx<&#ءMIr5 7RMbCq9:S!~9K3(:s1^w -nc궗 -CnVLjtCTUA:|8؀_#UϙF'&Y#.YK=w(N X^Mt~ 8Gf Jnp24֊M}0f\ڐS11aie(ʏQb0_cJYQ򨇘c;54s+>~%v0hxCpgAI̼-sR6gGl~ӄ)̮gwj76|2WTZs_77@b8+vuj;;PojCvL"I_@N~ ]̌$$XБQ`|ЇxKa/%n%ńAS_lZ4&Q5'@u{kztF?ih^PКF-߶-C{raP.˰T3#+'bO2˳!8#Mlب<>e0J;*IhJO|\ԭ`}QI.ۙ<:Ti1 xN-9n}|{ ׊sOP t4شyB:NXAeY ]||lBZg 8yiԑ )~:r7V2fv7y+._01@1LqoŧD Vg┝cl,!bS _+d1#`z  bF 塍۽k>:UX {IeԨ!'D$[~{ߡ6ζ-ff (S*0]jQJw-(awW ZXu @ QrPxrtWTJ;VF.o!5W!p=g57_+bbX1RWK"-ss+0*IOQW bUns4Vus8 ˏJ4lī$X1y6gߒy!u*n2q;D$6b5r|DNӑˍQ9)h~<{ 0 lM}Y3@Dз*P \ziě`Ov׀Bg]Wn$#IX:?8-*wfNrTnǘf,rN7Io%2†ߪ6ܛH`1o<ҙڥ-ggԇ@mbsѴQmd2ִ^Y 6XT7vec4BQ6Ax)=r!nN`+1  !M siOdN8R#A' x6P-3IAPV^P)@ʙz`@ƐîrhJT/V{?TL[y-AGPPVCnY)hV@y=(cEwD*+Ϙ5rpn&S^m2p)*Ѫ!9K`N?kwb?ٶ CpÊdz4u:bBĨ_]Vc>Х7\(nm"wig1 W(­ߒBΆ ۓ <6^+jP"Nlcu($s0 bT3Crb H0_(mG B("UUp,  ZFt :DIsl E8晶#W b/e@((dH= hL,kaܐ|D*tVv/ .pv jFS}N[S|^8S Lo'(Ib_+vGÕb:*'-,ARkn*'uK?z&Y]GϗatR;I5wSժAVk} |Sn}]M"FI,pt bv<0crD QBP¬># lNpJO#඾Sv0k~Sf]0VΦa,0DRTtA;\q-.o]'NNԆDzC]5zP᱅!6yi/" :#]s|qPFUCL8 nx,\PNZ)z]FF؞E}`]0ZGLc8XUj^+{hx<7B1#o 3~xAR~Z^;F^\6!wCxZK3+jϏ?uZ$ߞ{S(Z!7:"O5 Qa8%}D65z@Z{) bL R40@ptXOx{{?gl6b!H ,5xcm 5 oe!U M7HfQEli]o n\a8tR@"bf2yE&rjt6 Ґ ~KuRHf/8n r.g*PbEF=Uٱ4f*6QPk0T 1K>W΢B;C1BFvm=+P S2(CKSNXOp;s[CJ?q@Ǫ64[+̰|TG/(͌:g&^q t[˿2&DovH[o2#ρpK;9'cKGĹDm\ uTæ~sP!pF00>/N#e "G{Gp$X~jlZ#\ 1hI:9LRye7XtՆ]}ɒ[rzLt?a`#,9(4cQRS$Պp=~/:{Ýi [wZCzxH.A~#1i㑙qK$,n%[;63斛?"Y@50^@j= =_s6XbK 2RH>=9"YM7cM׬,KfA?ќceME]ira),z54W[i#h /J YB_9.h~/@7֞bqŶʣO Eh?Cu[[X^]B4j=6/c*03 A$<_9b~0,Ъ ->"܅jDƐKJSf @dA\"u,!Tæ_Wx>+ C={VJ{E(_~D?7 k 2~`zDK\gU= 1Y43D</@ XT &cP*Xsgt}G@B/~O=A:DoX[$xB+dzA Acv*VYx |8޶Lp}ri~u}G*Q`$˜.Wkt@"U;',I- 7L_.$Nsѯne-~[38=-ss8~a~$W_ ZcjP%3Dh?uIsz@2Nf#-b )ďrgSc%>CUHCI/z|ܠڟU{g7ƾ`C1^]ϧ U\<0-T#Ah'֜`$ #u|M(p\ߩ+=z}_g$eU [7C7dj*Y|+5nC{UllÝQ.@Jح1pc ^i=t4a&L$3T/gzevNm{14Jw]r8ӪgyXjH O~F0_@/!1F<۲x`ۘn[PAõ>sIiz6Q#nEU^|?̟DN% Z2tKeb?\U{DgW5{6`PwG/l7$ d5IOZ wB)(lcn9tP3Q:;T@ĉ?`"1io /GETAlM3Qc@A*җHPʣFq[/k>F' N [C3#U-3#Uj-pEVÞ*Tcc;?$ig3b^\;O?dnk~v){OX}:q[_*ͪҪҩ7 Zq #sxNGY OѸy ,٪[F4uSR*zrɔEb5v70HFxzUS[RBdlwgnV\A̳;3A:p_>275J ꂨ{!%:74wANEN1G7Ө=?+&`1 SIKf-&Af#H)@pul<>mB)TgCRm7ʥZĽ-LW:@N1⟉>Hk;$֔`ZeӔ6 OQG,CKBfQCˆaG^hdH-Ϧ/:~?GTqMܔFkgr+ 6$" {s>V4ҿ@$1"\.]`ޘdFD<ƹacXeda5Rl9"iع7x{׷beDB|_s^DwedAܓ =#}2KlS(H_;c./5Z(qdU9<PWR,k9PkX=)H#tTΙ73=2_A]GOe<( ?.I:kv$*G6k#0s*DS| p{tq ht)Ηk+6JYQ_Vp斶d W`H 50}r,Faopt1ZCKBT 6y( 9$n;7\SXZP-jqU8)eCP૨HW<}y% - f;`+Qd{Ӯ$ryu @VΓ n|{q=Pdl;.%ʙE- *g I:He(7nAS0鶯#>w@".x2)ap@5bVɉUWmH)(5R U/_?B)^ˉ&? fhxU r\Sڗ䀹F*xe 2&TR KysO[(!ܚ_^^?ZP[(x8:滞.Rk0VA$-XGdF@7WKu'2ku$ž9k[cD{Q͛FO~Gj qʸ']XzqTQ; !Y${Zj..ץ|S 8eҨ_#5Y%FM7 ;ò`LgSS4Zj$!S뽆rBL# c $1t1Ԗu7e%(X_'NDhDoW5̐>ywLǖlqqNYcw^+%Ź^DY\;n,\s NJ䤾LUZ]3Z#*`LY+'6ndԃ2xQVRk# 6Ϳ&Eam{' Ez+TkA{my?֤&umW h tʕD*O 2T0 }:[e|AxZU Knǰmʥrz _uv<`rZ>iWAS/Hzk0WgP% b8,%3J#7aJu(,7HQbe=A n)* bd7IftB96"xB?T[#"rJ89^MI$8)(^bV{x{S'>ZVW ]f˘)1WP7G-`R?gL׉`71 xEIAVj)yKG[V ;ON:[o^??]0JNOOZv5KYe(}-m|p5a)`jڬAxu)ج=*le8Դ7=2W8EOS%H"u\g*N8Pޜ_MYLN AK `{;f#>b6:mk7Wp^1{NbWJ=6`c]Z멓s(ۘ #palGfqeDKY49x,&sS3Hԟ3VG> q3tcGu+:Dztږĕ͡B G[(\Tl[%gͺ=Ic|xȕG⡘eu,cFrۣ⸱~RA~!rq BdaSH("O5R:iZExD B Q ' y-O&wZOEY+҆诸zsW[%2ߣ{P}G(*7͗{S-UH-^@TI0gUׂ/ߚ\qL^C5n@*\Y״ce!S[^F }ԧB?+If荒ilwWb+R埘9+ܾ[3ʒ&*I>';uH(b'Y Uhlu7e \QU΋e\@^8]5NZ m_Qʗ:OVA7D1v !Pe Kuy=&QuWꠧ'(eZ +^w\5^qp%GmXL4kf`ڲ χh] a5wv{rmhҾ,t3:Bz`o+ƀ,U*I&WuLsn$.ы7G _iDErv=ˉ÷ڱ1((y$= ,Pws>t<_b pa0þMSQzSu# dVNĹ0[>t*|D0gJ\ܑ  5{,=FR#%d98nZ$+6<"b،6sfJ0xUċm<'؇҅&K= b|_u33"2=ܫYܳ b)lh”sgN*.>`f4ABgVD/blЄ ♡>_2~&^CFgZ8/!~!zp|b!ݽ^0!bS@#p}hY屛&&SPA^%#zَN׫Gga}YY?Ptp+lXu%Jm#~5Spt{ц$y$23rWV RMV8W((V*}Z_]g*٥4HpŇKLТ{ͪMDc`ê~YFqOLSx@q< XiceyÝ0" 7bvY)e+b}P1U ڨ$KiuX[ب.%IM[Tq+O8@M$9V R3%_Ջ$d)6DO_~]HpA'7LwM29&[Y]v@nP3QO)ZħڳǷ 3oc,ZcR5ouFh 9Gz*^EmY ۱LN.;7lUtYCEщv7c-!-mAMRS;”Haus/OY*R'(*(JdҶ#{@v#őǎ(kLwQM 0i_ mb4#uVWP8VMJ ݯJ4HJle'{VHqi#=,ٽS24\TW09 q BO:xLLC PvC=JL%>Uuy?auX92k (&MH!j?f nI='!oWu$@ɴn8]-I#Xk'=_[oUXNY<ՆP#nb!HLdk>F+H+ #GI=;M/drxh>+3p[%fYa0njYx Śpp[63+]p|=)@P7աZ_Rb'W{: 27BeVb>7SGP9o'IJyH(kvаU}k7I2iC}ķMu}lKrtX>TjYdM/{_ƿB [Z05%s6s;Gĺ\_-~Ok`棘WhaTo-ɘm~#$s>P*4$yw F$<ố@@in ?JLf8RC~ )1*6`qU3W;իȿB9JHe`VT%64 cƈ׌qjj ruMHD[K/(LB ؉UfS@ wz z4j{hCr/pƫCFcLÄp/R_Ge|t7vIj`I[~;8~vȕ+ ! QІҬ?XM/ jsOnK2PVJ;_PUN uQoB5N= :(zp&L2vXQ *69 6R65Ie p7'1) y3UMab5$b4U֍fp8sJS{pp7$^JZQNA&lN  o|rDl~2 "9J{a:pAid>R+>K7JEL„|ڥPWC`7FϦW}ex=n/IȍÂ;g;J/jr!`CRBR[LI0|% \>]Pa"6X _l").uҐA /qky]?|/6Lx)%}@sRv{bMu2eQg+s/L b)*jj;tN  :j:@cY q!-*|A?y}_ZUql(>BU`F3=%"F=6xⴊ(`ZfJ H*@wT(-C6h'e'>#8B=fV:Y.f)~(2d f(&l 4iig~yYlxqqu~^(q)<|a)b;iڎ,)rzUʱ:.nͲ'aKL 5L#Ҭ̣1 ]f+"y_z7ƀ88jpËIӇd9bWQ=5b#>fb3wRlpհXyPHD fwk ĒA!'^A%E^DžK'-m $f4u;<ݠU;-6iH\6YM>Vۇ]Vs6dWxπ"gĊѣu3,XcppL)$Kl.n\K4e ZòtvCBdILf]u~É1{r趃T{DAſN԰׺DO<" HkMTzfD̈eD. BcP;f.A-dLjV<ǰ ł 뵢 X'@"@5sUc '(#qc!#es'BjmO_ TSVGܟ9ƾ=ɆbukIh .E-eo&NY?$kX32=#Tmo[k,c.1z;{d~^Ez"/"|m Ri eF3!$VPbfP6" \EuP{dH,^MOjl҈>Һfk8A5.AW0x:ʶ DSm4^z)8*s3GoH-z=pآ.5kg<l6a; b\Kfv soWzqIs) ݊pm~JJBCm8GnV0 ǁN nleNQRosAе\HA"vMA`*4c;=1 M3M= ʶkZlA㴊g*#ẃn8֗vDrٓ37nv$7yf0SY5xx#I:^+ވ,Uoib.D%D}ŏ5>MA+7icO13QF%SBMxAn̐G9 0#㥠2+bwS~z& VDNd,Nof!k)۫C{|f$nZn6VM_@l>B$ж8|dDƶ:|FȄ1ԭpkd gSv~mdyXT{{vUyͣ]g_nTG_qu`TPef(|IiX*W5]?nÇQA3!튍͎f$ 96tlY &I|m4F t2)Z \siTXy("YqT sǶN]+}V~% SSTm%,Qlt1wt:+,1̔bGQ5P)QLl)܄Y6l.J<(sGN0E@rXtg;K}^ϴY<.+# x̲{ljJug_Òѡh]|]hӹaIK֪?j )!,[lmw-L5"Xʕm'>-?օhl™ 5B mJDžGJ/ZTN##0Zll957YՈ*u} 9R8 yOS$2кs}ZϮC.P}%Y* aBuZ\*qWKIim:ֈ5. 3%-@ܟnjM5ÒoQQx=f࣏Mc,q`Uӂ4&-MW#  sWҸmBֶEWh?E#aE0e3j^&zZAd*]N16J |q/L'G" \VƯq"_@B y΂9̀~EhfZ{Ҋ FAX>:͂e"ߜog4sXZ `q]fLU*z$ZF@=d>~ccLR2 f{dwy.QP1F4F1ҵ$BX2;Bl뽚C %8݆@htguT=P҅ Fv{I<`*<̠dZk[[q0oy f$@,]r9Z#}H驋uiKz),mEYCN'3> ]LZgNGs+N۶|EJ5t]uBJ߯D6@ `Af^<)" ZGfc6۷R#|'NC 26^.[ olpԔEeM@JX G8#r YzBϭA7_ BAZMR\Z٤޶X\;.9dV5p 4-Uk'4Kf2{a?~-MQKm"^Y^j ؄\cZs(m,@Meoi垺Vɉr拪)Un 4˭F V-c-he%u>sg!)#j,ࡶ_(U;Gߝ5EAC&_d~D N=Κ{Nx*$=/='MQ ?*˵V <X$5x `b9!'^x5l ;\\!_<{'x哊5G1UGcԩE|e+ d)_jInẐle0If#Ud}'Q~d)x 6D$O?!gd>:^˛ՏC9/%lTXi5/LV.f/^p)G|;A( -y€Coȼe$'`sm^BIi9V!Ћ]xð[f Vi9ľ'n z:6nJN`2Ft}C\fے|80 ?%_Ϗ@3F>}}z&mOocC3g9=TFӻbXXs+LHePߐA5J# O1`IxʊezPF㮏|$eϒ5g-sOy\yTm/(GWS^Rū`- ^Bʂ"24u*T?"m\~<ۇ:51$τo»I,c):83+x| ,6aǡaH vkh.!:^+_\bB7|=/ W1{L-m-]b9n-Wy?@ x9Oi6n}6hqrVO ˵~5=cYaL*{Eg) lOk=BHwK.X0 *'rrCnv"DLEq_K^Z׃ÂwyoB5ߓ f yEtJp_rt!NO" LnΪ4uAGh Wuesh獴ϼQui? `DRўU8i z`&g{V5 ^Ɉsq[q ji0'Hbqe{Iqdb/ T-|A+֛ϲn'-@ԣS A7p:Y#U q Y u*f$.,]C0g-C>`Y p'6PO6Xn `^^yxKD-6E7%[f\02#(܊)3&`Dֱ{+دDڎҧnڨnbz9?l ϿCbWV+Gup6DPǙDڮJOF鯻2G,ZVout aBM:wshҾƍށs "C^.B}斩;9~+z9ӴG]HO9<H|T~[8d hUMAx31:fu\ ~f0+CN&!o˽(OC Yե<$Gzi6%U7Ƀx2iߔ S0Y[ ay﹄Fl}IoÉ㔻c9 ׯQ(caĖŽ?]i5slk{ޢtCW-ɑ v#V":hKx$:[)A#$"5偮 جSFSz gܣ's6G;p]KU * IuVi" |:NˀS18\\ovQ):&LtQ)]=;[;7G=̄'5,z甄SZE/R/4ZNl)+M/D낇vpu~q)L=ϭClk^b+Qg=93l-P{{](WB\285/pvcQNE%@"7w1s)^~: _FU{D78r #1Xs V+|5k /\`[l 4)e] Vʽ=zĠ;e\ks*F h!38\+ JAB}x_eǹ&'h4ĉd/Z?`W?|E3g{tïD~2D\IxvD@P-MAY%t D"f|KpTzgc\oCo.NI8'\o uaG$hU!kѾתgXabF\Wxj =*HW%"?'`޴b:{nΡݝXJɸګjU Gj97qT֙ @r,+zCf( G:'֧ ~>U)PjgQ2wm\6LJ\L5lJJѿn,$ۆ_{)2U,6Z3|BwJg$TZyh vawŤx^R;R֊/_w6ڡ2 9 뇯UjfALcک ZuDL eMCy&L>eyiM@B Wru~\XE4q[(o<ӭ Yw+c\|28&([㼪En`!)*Ng'za)'Obx4R5ek@vGfYwgLBmQ+ڜ"zw*g/  .#Tsߪi< a4햟 %<̟С9{Jy3c i燬)y1.;$E w&aX@:Ow.!>d9^PGe=&KcHB.\KveKbqkޭcD5z^<`mkG|n*sց0FhDqDk[,$bҞ,A! &wV`_{(O&Y>+hbD.ԭwfzʽsDxt  gx1B̛1k] 0&qk~rJoWXv`N)4A#SΨ&чgiw7L& ?4h_KV?TSlJ̺cp"<[_{qKϴMܚaမbHL 3g)뽆eԘ?-AML.^ihي&bąRc+PA8X}40^Ql[N=MJ4j`Fc]F@1#u-;5}cͼP)&'u.*Jʸ4% :=yqS@2`M;h=c-vksaSQl3ʾXQq%E3he,L7`V! SGҧ"S˚_j}R-'_Oٚ8V_1ރ>vd *UreXst㈘{MSDShǠ\2ZP# V]|}#oJzP7npcd'DZ")֩?,o=DҌp tL$ boE& zFYqSvı6%LVT$t?ky"g4&`cr0]Ug.`D?j :qwЮ[#!TmvQY{ITCi: ?"Xb(IT9)4vI^S/BsSr5rmr HsT4 Nu1 )ۊJqPUg͈=PMÖezs8r4Tx66/Qȉ34QWsfrM?u9b 3*S P <7DD}uɸVyY[g4\:Jπć &Ba^m5Im=;4=dr;z}Mv)- xk9mu41Ң~]^qh++ i]>µ{<,U^4#/W_q:iMSRՙy2ѫnC1Of(̨U.ۚ DqBYR_*nNBSY?#5dхΟ3@h,l"W0ߋI/?VFr +[vSbXdpYV60A,6ˀ*X[YL)OI^u|'RO[^Mw8YEH#v-P3Aa.›) P/oLJLK`##n!,cY҇w)IcC8ܿMj3Bt& 1"MfѧƳ9Éznn\ݯmvmjT}Q8RrUhpi:4C(1rHQ\L8 b# F>Ǻh\%7Б=]rgcV` 3g3u4d! aȼx5dj|rOqn(+Tץ~ pW{}J/j_~WZf"#PpSzDGdr 61katvGjy}lTE|v}dWIT6;%ҨLp]nl^Ar'>g1):静#x>TX3dh%w^>Ky|f\.HЦ"<>Ï4d~,O"*`fE@&SbzcC,|ˣ@Z#\|Yk1y2T}#$|Yw q:]IstU>]Ok`W,-#b֕[ɟq|M]>qW1Pb4MIX^?<`I)s,!(_|,[z "{]N-M@׼M\]Ϙr#Me`|R! j։'9J|MAGow^ *4B&oaq[`j8) ;C7|A6u|L-φ<'P1˄S D-}DɐjK+T~W㣤FQ^è|l ep|=G,M{{>1NeahNez4 "VD>$eЅmِEbPE)EЊx\,bWq"!.j}EwS2ya~ׅSIhưGgk8gk'*NAp P)L.˥J%ݨ'( *Wmך fMdu xيo,>q߃Yؐ'=y~)8C#^`wTfXtdUjِi3ɸH=OQ)g(0&yb{F_M*,X&I,$_P;:e X9Yn0X@VoÛwq\ar(rC 6xĭæGEe#6…{\d>0vd)W%0azl';\Ƭ"[{l% : 8rgP@9K6Fn$:@6;c(lLZ;TF$GٮdU9'L.2rVAN`p-wpH*4n^d;V|kNd2 nRݘ|vèiCT޽롪fS'ꑜGW)Cw1|d0ʏGAI:4,Vm*}C5aKLU4oZEOׅBN63L-cW"N3xcY?YiF-.g ibPEn>Z0UQjv:'y?^' ch8Ji!PY8OtAw+Cκ*V'eCE\+?DSXLyջgOF0^O.ʧ1PMzch8t5\W}~MyT[%H iUE*0?{!- OWM1G0s9&,O+?9\?XeCvD#B^Z>oLj:%G!ߝ mۯnY?Py)".u$립@ig7V+ XI_翽k+9G AnŨh@2FyMt{Cz c?6!\-JݸC0v`.u},U[G ->Y07z '!DޢG·EȍV@Mk:\_[<>6 Eb|gIǡ0Lpt-BK\Y-E,VMsakR#\\xCSgO{>Kʼ-ӨL AL3BK t7Ï.$1cL1bj3/uix;* f9 ?.=&`NمtHH1/zK"$p+:,,Y  E FJҕN]Y_!!MBpoaXtrG.`@T*7vGEN8W$"Zg,xfi:*+# - ojysuJ9shx.ZEm|*ͣpNjN@g|-\~ǛI?+)5"Ya=FutPj-c8I;ҝc vQ9!|<&1 *I |Ap"hqY# rɗ̕6u,$jq;a!CDϑ}AȨ{-ܶ8Ilz? (ˍA'\U8ュ+DQ&0X) ot5~hA9:Vk;Z@hTF8~HGIXjj'u@xׄb4a]ke)aqd 8\8s-dq z~VkXD)y>h!뭜mOs`߾Bѩc<>,~ɭc>SbE8&(D%b[E0;pAy"]huE`bp*7".Y|~)N6ZZ 3}̭6D~U}o "u?=UMݍSev|zr3}z h3Y+.gG "FgCp3DVA^vZߘ7^$e ov'&Ŕȷ_p8n9KdcYg8iV.g8P$w63 ~$IVF CS:'1Ye<;= Ywkf br 7dtXs` oMԫ#088ΊFQ0i&2x-PW5QWuuxg~4 V'4IDQ9qIoIN=H, NRKFævuz%MI S,?3+ }ssWOaͱ 3H,]žbԴ{Xz`

R v s}K9{dG82"$@"߁qOʫMN1nǓX{WH2l-Oq /zu&o&{y)O,PbؙIDez&.*Γ޺O}qlJQ^[ah>5/!Mz@$5,ñyzg ԁbhq EZm88ሖt>NS=4ve˔n:G @rGI!S>fYTIWMd Jyr(^ёF>#*u2>4p& I))ֶGε.XuM=*uIRӧ.$_' #spjιur>?>)7]>WNO3>+zo ZT Wj“N;#u=/FC++ OUyL\b( 9R~3¨v&ʓg-o]^KpvG0lCi]K8 mEYr@͜\/(!=`"m{ KrV%gkƄM)xYb0xaQ7qD8Q=ԡ_"ZwNҷ, +y.9B ҪL<&mx1r@V >D%6fϓ jϴ!d3#xA/ *ro0nTOC[ +RxZND*K N.o7D7Y>`_u| H62Ű.'܋GkyKq2Wm4öuIWS3I-}AtA%[J~W.`峅g^&to.],\P=^&tJUrcwu LaaSY`y%iwVkDeT!BjDheTL˭9ţ_{1S[ߋ u9J{=3`d΁؃\+-eZt'Ds>$Y/-{m(X~iL&Z"1'Wثڌ-SQQ쬆LdJm;:鲯d|w" 㤄{T$a%x*h)1 >h+ʇd /dpB#ܧ+]ҟ9EIdj6uJ1ēL'*'a>K$ȍJ/^FjXp)/檞48r 9SO{C_1 ~nYévBPP}\Vzi?l΋lYvd9A `8=&1 2"lstҜ +<8S_+@jKK+L%0LBʹeOo '~IΛu6 > GMaMuA;xWkdM𠁨JW|t&xm~os+6/dYflh{[w=CQ6B=očZgghk<{\;oH NTfEˍa:c4!biPݰE}Ӽ]U1g'PbrRÈh<['8GKsRB~Yc&Pm^M+۞7IշtT5Cԅ<{od3kT"FO}4`TpAYJYCQ4x˕1j'(IԘ{@-:\$׳`L&SӾc$fg&V"W)?'9+ {oRLh^" >M.ET@Frޥ쐧tT$s<b@>ių4/}")+එr!Stj|~6s|ycw._Kզ'b$1]لlM:ɍ#ZU&km|>s@[zs o֟f`~RL%{'Y\M{vJB#aaӻH:ko.gZ$_{`lɿf ^Hf6| 22{) zҥAnozKn6;=5ZJFv.ueh/cOqZzQ9)p~Z`'RbEێ1LC-(@؉e]g12Ga7˰(Z:(t+Yj+\]iM2jʥI'\P4`wba45ٝQ.Ju1"sS 3cqS{9yWfdΠgMwZzr 7hg0%}2Qz`0Oe5+ԄAXLLB)u%Ӈ{NJ4?C5Aw)z En=<) ,Z}F(@  ;%_#6o:\~Խ_p":hݿ( TzQ~ۜp7:xP&, Ek sk<ӏX~Uw/=Qk#W*^8a5%@&" cFEs Pa{؝1C7Umz9 @BuM,r^ǧH(=blz:" :hѺ@3cUG-[a:C+L'LuIqA(nn ٺUN{@=vSHQJ>&HQ>v#=19*!r!"::^THh䴙{)ו=+OM?}5o!{Zo5gcDe^vIf+ ]ϊ"t# KgM5\0e4Wg5m|w}c93 vjN2|c`ڼɐz(u-DkH7UdjGP[cDsٻqK#Z3SƇ6OSvYOetFsٜH^9&'U-UW{XbwXP hk m$!(.`DA/AztD#{*au< .s7p`6|]tډ Xц!"wz5Jz|FznsF$;A-oA;OMߕƷ _3UJ<@#hR7l܏q@piM݇lGyiP}S%`iK]%:ZW\E䋝ǭ;԰t_ꍑY TO2M `飊Vb'\I#DN P}#8iLWͱrdEp4O}-ZF"uR1[|,!՝CAI; *QNӃ+J_C_Spf_FlbROOwnnT^/"(A_ցx)B]A^ۼ_|dƉC(ˆoM(~KdnTtϟMEQO*-PJU)[{ƈ5=DrͶ"Mc/Fyr}҅B,jc4Dq+KBcEmlsY7ǔDA1'>dh!<@/&dEYb.3}Ϳ0^EuDŽ(_ +FAW"dVՑ-E{ c=՝&s-ZtB}_hps.dNle\V(KC«ԹtvI#'SR T)n7n+5sȯF2_oVA`D~^FE9!:GiWJ=$yq_Bogϩ7($.:sܒ(3ݦQsTsB)LցV9(1 #Uj%p7.EgPc&lYH_'oeW-+r/%?J !|B3܏L`B zNFǼ lgC%-)*Ew99,v ӷBoJD9aO>d-^%A~ZfŘ1}Z4&TX Р1aPKE)>l&/'Dta3CEd '$$Ue1BaEy0]\7|a J_)8Jo׌dH::`hW\}VxD~Hps HY[5YxKQ$/LHDAK8!:>^Ugd ][2T=H"E_xCk"M(ʎT8m*vJ3.#::͝0WY J*9LicyId6ov7p~"RH#wG cukY=2 6ڗc d0P?xؔI{=R6Jet_{fG"m59cԾ*`(jFGr9k6ع}'FLМ^`@% x"G mx1\מ;(Un kۙJ@Bm\-zc[0 G</N=*\쵬 OSI@Ѻe \,)>KĐlqoF\X͊و2 jg]8No#GN5>c_2Xv8';tna# MrSx5~@>D~ >^5xl .;Hͩ4G^nHN[B9Do њ߉:h(+CIQ!d yaDF#93L{j\'ax>H/ϳZqɏC_C. ``/H k<+;QOhkUL,WlL24?+,s]C5ϟOW:#8,U uCiBn7ȳ+X>oZ, ,X-IId3V1tۀzXÕB9Yn*ѩ ,PμIO7p[kgΎ5e5fHxCp$ްIQ6,P.-s\:upFʹ.jW0>` wаq c#i*n;!H{c_$VЊL,ni hiCp<+tW^GoANFٞDt~œXYISۀ=wtD2dhFzXs.t-/MQFNHrh3xokA}m{ҙ|ArՔv0NGV['d؇1?ŅN%W!` 3s 5e^"Y% :-vaff=<+`%g)W1`ִqh'К54'_JJkEA<"a.W/(wCv '$$rs l ;:/W.mM$ $Z؛+Z*e[T$$e`JRA^\U Sh&XWML[sNkq׃%b*" Y>%u$׹^]W Dkv-} XH,!Lu?zwl H;(vvPo؞ࠟm,]&oUCqPdPfZHXKΐ|TmwϏamNu;}䷱9ṳx0Dx]Uud^=Wkfڭ,<*ѪɥDe}͏@-~ `:ܤ\oBX:6Ⱥ olR3\'˷#LtHn$%Taui~aѿ6A+XCWb(?Ҧ*籧!\&Md')Q#/GWv гJXF_Q\sFZ_Vd?_VT]XbK8}Ӈ9$$<:Z;8pHrHLV@5]Bp)('C-H9A)7-xTI(N֥a,9qab`Fn|Z;}3r/{;~|6X-0.F[UaI0a VsFeβu6Nԉ/?2`l偮 a}R!.Cx&'F)>rMK970zN\M 8G6ٷE1扉7 :r# 9DiE{,Cl$]7zػg([f9ϜD|s6G/1N ˁߊ6Ĺ,8Bv\3 #pYKMJʋPXd :@iyFS6[Zka~ЙԈ3o@R?r+ҷU۔KӢle1bY3*v԰ΟfeCD =c8*̣ܳd?0u  pϓ'% FWx@@[ s45OsSpwً*a((AُJp\n$>D B(>$|^[Y4AonL&G|(lY)yH \mP|#hVmU-#o(ۑ7g#"+mPyɿ 4笝ڵ:OA4I T=~;+HA( <0ܖ5>bgtGh. vv!+d؂SoFwtfn6K׿=Mr#۹2=_$_giFOS#gHsBC)ac &jޛۘF5OZ0p!ޞ a@G!ڙBhf]k+FJՙJꮪ;jSZ3ƯKk/1ڌX"e59Dw8\eQxRἙzt aء<1?0X0}MhpVjCN+w>TSxG ww/'`Ѣsz .ϸ,zN8[|5"'W} <Ē^T/|vP4wo?E8)†6`?z{o kߋQ^|ltbDДH}CGl5/F`&|/w$,5[r).~-Fv͘+Xzlr N ƅQŚe E#pݺFߟl ݱp'*>c]Vū2]x#Ckt-f3sU=ŒRԄ{Kl_j f0izWz[(=ZC<|擯~*1wa3EZ1}:'J kܵiI?+/ Ͻ1"w *Kl/`v0p!P+9+)CR$JfF z_"7.|pR]G<|Ce| Ґ}@rUEH{žƆbF{{p~tԚkؕa=BIH]BmڊS.',y%v9Q8@l"Q&/t뭔[Ŵe"w6iLĭP-'u h.)w|+eZrmjc§Gj諾΍(  e%ôvPk+YZD4 uh>M%zST&aw*nI72öX\ !鄫!\RKOҡ4s"C_*-f~x/C[jCdu&ˮٸ]toA\RYY[tIY9QOSSK򧒍} \ %.a E0n"y;? <,XLss8Ȭ}@eb1 VxsveVnCN'#7j5PF͗FW>|&kρϷΗmouR(Unמ˻صrHUyy<\+=/NwTEh`H h 8!,C(SGqWc.uG'XdrH3-uIAQOΔ%KC_@R5 5-&n Qs󬳢G8Y Z >f*<wcoZ٥tBtMdpa7 kz*m!h8fW =Ox YʋӕUI.n-Z>j+ J\ ZO_}/5F8&t>6ddrOMw5nTVoMbk/dXp"Y/`@2? pYJ~j5:*O-g@^<`1H8T1Cg4sLەp`~3ZHxR^`rH*S׫!ӨΨ*2żaC,q-0LPC!yzCYۦ=:t˹i˨M1F |ߔa3}Lr[oCp|u׹xma" t"V~;̕?l@'ZWtx}Q$2:y8RBtJ,yboa-&1D3s?n|ABb4vrTF(o-)Dc5V%Aav|qCCx;%ѱa[n!?rvg{QQ{8Z+ܯ%3U]ċγHA2u7׵ QƁwd5ĐPL]e➓lQ|z ߏ7&F)HS{G[lI=tyZ,fH ks?2(j$蓵|ІzPX0P2Wt8CМ+;.[8d%Tخ@Y@ KUltL#TNÐ$h(cRT?t e귿d? "%C^޺^YDd ]DPPY%= :$.$⭎ 3HZ,gBTar)gDlQc2Sx+̤n!{9j)⤨.J)(~V%Ry<)eׄ~9f' ?dS74TS0nwZGe 6-gAJ8p$[lulS<-@e|gC:DQ Ypd*Ax8%>?~-TIGU"4n/R;/`DaOW0N|'1|Dm">|Y]ڜxM9L~GͮŃ4@忙OM9PUdP%tt{v}QTPyxqJVm$_ ,sC')/GFMHGQw 4:kz*Dpk ^}HrqNYFOz1\KrFLRZxBEحz4)tg.qMI22"󲟙-27(2CzrU?4Ry>U hq4Yo\@)>L)@&37Y E=}?, #$hN?3q7?TEPMD2z@>O4vU/;dP$?!퓷&ޏ@D]0FrTҒfa鏹#I+bH4OA@y[^HtX!(ô2 ی0OԵė؉W_p5i%4r@IdT Rs< EʳpM&nF/mۇ3pԴc[H얮~ SN.6u?jBYl Vr+׬ɪ[i^ d E804LjO5zMFos\}r`lF4gfKNѕC (RuuZT RsEDI,B󺔶ruM,25J\QOpЅc N2l T79.,sA->4:9y~Beå6n:tN`} ȹ]2oN[ߣWk4Ya'-v1Z$`Ff#. y,y*J[{MRNl;Dis1q.؆B$9\Sw] ^@li,>4ЁFKtTq#X9 k,EqoLӈ]<> X.&L:.C]=ނY@øLr3 5m2|1KmlPog +K063"R '>Qy䇂 +CuR[\\#qлyK䈪uLxD)._86 0xLm҇0`~,;e>Qy80!b㷾2qMQb"0;2ܚíoVp0(<[0lY9wP\s1QN|{$cT9}I3Fס5X$-&5i>XZp*y޵lבۡT|P[;Qc Vg[QRG1z1A}Z\I-77,1 ŷu3LN8)h9Y{͒g4L%?tšKb 7#W'!)>3uI T\4Sx;ب/7-nd)b";s(NLNP1{*Hപ_*V"bDK_5.Ĕӧ[U[^"D8H5+/xz:z2/>!ҵ,)R&w60-io㑯G\K{vޑgY-t{ʭ6U櫄U:wo3Is0pp!SLVDOʺS$ PS.>y=$.Y˥W3*s?^v}e5s`=Ǻ2 4g[ĚD;ثpY G퐇{{tO1,K(x,j0X돂},|7$0ՂB14qt^vb𑊨q?p+Պ}plWr88vJT)٤!ٶ5(Db}  v —zĿg%Y#0~7gE'6_ZC*nΉFYI?2$ҋl|~,IT:ub _P;am^MPٔ"zWrTl?seTw/E.r4uh/Op᫊*]g Rܭ/jeyFU 2O0sTɀX]B-F~x3P{| WxSys3usql49PEqcV/6$Nr0N?~ZzpN 3gαKfL8I^QDɪ*λa hv)Xپ ufZ!ʭ4C>Sr뽉Cl{ޚo* T@Af%dG~>B{=5"3b6iGy" _vSC"K.|0MqpF^QbI"`Oi&E̚DT`_ʘ`j2 &U#Jdb`)1E [IIB7XwsaXgx\OC6[zqBS iT*D͜.H*..v n#a^ͅs?Pj&SgϨ_WZ @qWHTLnjVI[{ԻzuaSez0Tx5挿oq|K[0)9{ߔE" ]OܔnِfCp-XB>4d,׮2.Y~MoY\h}0Z Թz9*M/1o$sN:I⬐(Oa\.o.)UA697bJgG$ElCIQoYdqyъJgۋp]=1+e}g_${!x|st~Fl&Ec6аSkf*Dt΁˴(i̋5r&YzHko/n:]cMu^qP[6؋OgEC;pxncD?i$O$XKv(?*s Wg60חW* BKs-RK5n}[Q3rgM>pZiAoTziMUYVDLu5FyD50;nRLByELLLrl৮6'GXԈdR2}>o7nnյ̘q&.( *4%#c vXbⷦZH/#JBHReD(cylz4H>P8|E%MaAQtIɚ?DRKG_(t&Yh=qowŵx'~͔} !hָ !d$꒘ E&Y~'uUucbw̫ Պt6s)OuEf˂ԋy/@Tuh񔟭$P?ϔ mghTAZ%Z~Oe4I,HR&oS7 h;"DB\F^^KJS3@ llj 3􅠰ltp(F{Y4.3P1= 8nGgYٶ:@r%؁ y]7þOf5:@]_!,?)&RqƴDK6>.$c 9jwfCCu%0T̔V4G8V ]_A V%xxp0?dhy^ YwQdB% 8imE;Ejū31\v yaV| I+g F}qP˔=JH 0bR 5m-2Y5^am\e!qՆGV,z6`mQcH gCC"P @ )]tcH/<0·">\WvԾ8*^=z"A կ|JXJ>-'l=TxKD(x%XlDK\C (Rb@"e]< #[OK.%KE/&dbh_KŒ0ѦJq# YʟS]pY#Jؤ2V6̎ @W^bzPؘsѻ9ocTajPXw^7S207JbP< [thfĻ%ΜO3FZ9&?: LG-r^NBjj`Kʁj0FlQ|9z:<p~MZ9!wZۆ^thijW Шp63m,}}CBe쐨84 TNlH頒 >9I+2U)HK'}M>('79gkic(Z eo/fH%ٕ{g)i-Td{gRsѫѣ]H޷J,[PhSOKQsv Cp"-ٚwK%w*E?hDn8>OŸx ;xܲojk~)k]VU "K0v5c4-3Cuep摨0O[SϘ^_đ77S~}YpM4Ҽ0ZX0I+HjT <,W[W[͊O\'#Gc5J-;g3{9bӒE&U|.PX+l֣_pGS8]f0GVـ@՗- VkwkĀ ;ƙ5bɉTSv{x ̆H d]R]_W ~e -sfxss~ (qF4c%~Zz32-\E!8Юr+~ h5 '#rKɟ }wȺ@'S͕;^8Pۓ&qa{~L1 v4]Hl+ gt(irT xVM Exz3nuxR7h!6ꬊ3o'[ z< črYਙ!$SC z ٿ^![/0!>Rs,>.x9=Iͳ/!4$4A;&ɕO99{Qj_W}4-Q~; 9|p_*Y.vfRһ=K=}ƒ̚] k]՜i m %9ǃɶYرK"&1%0WF󗪠Ȅu^ K <-VʑZ4$t#V R{ix%(9!8P TES|ۣY*/.<׳(_w@z?Λg%+9PHWR⊵Dl?dqSeYY sb?_}hxޯ^gq|F ;iV w5u+wl'n6X⽏3{ƶå|zqlh?+_ьEQ>yCz|X]fHx V@bw rl7$я/U^Fݤ+AnGܬlo@ ~ mx,6N<}mΉ_И27 !8DY`4\yae9eA*Φ 膰; I_a"k4$;հ ;Fm3* ;`*Zm&k$΄0BF\`/_L˴\L1.~qF{]'ﳗP'%͘Qjf\ T sH W`DT?_D׽ sp'mhr8Ӎ,8;˯.m?w|UϜcu$ٖ͟,Rr녂F HiaUFџ@l 9S~L`T-Jrׁڄan, g a)/ХKp=]{ד-]f,v*R*EVsft٧\W4%@3t:"pUcs~'i~c㠖X.pvAԆļm "ቮ՟*zp(|#"ɤyi\s&,#hU|˨} #Ĺ$/Y# SE]$\?nfV}>'eț9夣4mS0Z-;_kX .`{DMh]­A I- DjڳU$W-9qؘi#h ޼62 D;ǚ1A6\pD!7 !jJ-x C^`t.z"ϛxAz0&`)[,`̪zHjZȶq=,E)Ԏ%]dI-ҹMA~?k}yn)vˬUh,o=Ŝ2S^?[=&o@ٟ&v}l0h&M J GW_ c&HL?#ĬhAWo ^X#;)UK/&V #q`4ykeN$-HgNc]C;ɹ'd6ٶ㻈Xgd:c'^4C]D'+Hgg@]mO|>.`MWڙQ @?*SNyot`8y4@{x ҧj8E :-Q =)KMDt 06o>{ﴧT`{g#5eNޙ+ܺ WIˮ/w *&=yF1Ty%? ջu[—e, ^,ֹ+Ř6+D<h̿doeH^(PxHpHyUL!fc'sF|!6e&ƾJ 3W H %q:vtlq'| f5<UR_;TZhIňuUñ՞CMBh1La]i*;ZV)wMn*:~5kLZ5(QCQ?+>^RMd M&!zӃ?:&$_xMhGIym8d>P>m #;=r`mGjd!EqXqs`@ʒ=G5k\[ᔈ!#=lsU.~*ݾr<+ƃ95*k"pytՔ{*ѥ)wR" a^2jk|+V,թ_`cp:ϠI"UFw!:*:?FqdeFcZ\KPi0lX='b6*M.=̮hR;b' 5;:`DoY+޿.L8[!:J-BIVA$]AwD$|xpluAVޑWEnH'GG 2A19v#@Tkɘi];V3{|@՟;;pH @.|F;S&SsK)XLB]NMS:(iTbe:5 *.s"C3gNV'uJřu=.7vVh;wL99μm'7:Cz}tRŗ_i<Ƕ0t을[2|#ߊ%VHXda~'Ԑf+X=EToyS A$r7Z iR/o3 ]5PN أ_ Ud34}e{k8˩U 2/u{e\3;:9bxk/* Y>%A& XTp"_CXAE֠РQx04;pr5`Dʷ!sFKy/#|[J#D_w9}(i{П!/*5_B戴5AMV;cš;(J3H8~!` p(T.z$Ĝj0o< P;߉\3-j5hZux(8 }/Ȯ8Qc]$9dwhlUj!KRñ}zfrWYlk=ۺΰ Gc_"+;aTd]\Wi`HnǛ.~)=ǷR' a rLpf%U/r[\_/C:bp*whMlRG! /KrPcmcpV;#-IhMIOg!CRngͿFEs<ƣ/out_h1fN1h1VpsM4fS;:3|S K'qFY(XGZ-~`?Zo*Zn7 2R ,fs@˜}^tt4-LIV*q]S`f& Gj_x9* ̕36 _h.``cc^6RzO_4r%qzi'K&n|ȈfԀ?nAfهAУTtj.qPY"k{l< R.4& zA4w/ҥvw5y;ʂPqV"zW$ۯ́s$|>t(`I*y90@$3̺Yf3mA 5ͳMj@>!m\ѻB(3^aX_n1M-R¨3@ (dF(c*`zn)8mnʞ R^-kb*x;F'υq'CivaiDJ,flq+8ڢGY"  Y ԾYbIMP Gd4Ks=O›=A>"Fq"[ CVؖ\AfQ^d`Aԭi-^Qˁ^V*TņUII^azd7{Uo*mTir4JcpZWGڛɗ9q<8wu(FPa0"Nm-;ETp]o+1RuvfxڕR›qTM0MJ4WeM?:ޮcP*(Y$u;L5%u)oީ Gv=>N'T(.r,s@G'jì&dw= bC6ʽk} !ϛ^\=4Ӎtlp=d%]z~K7ӦkޝMHO[S3(yox.j$*1sPehPU7P8A4AFFw(@su+͖mq*G K2' vgqk1֙/OEY^L+q LEK ]A՞v1Bn+̢Z0f!nyU|mFӏiW%Q:4uYyKO*t ljG;&A[L&aJX$ P%!BtnF=j[ML"$@.4I}aQː `Ct5ײ5xM8~R}=<([&M#t9[K24Ԕ<!ʇ?:k}U5Uu*M |rLaC2%4&*>u#~hz6wGD0ᔮdXoKx_7"h~.e^s/c`2 tХ*}ZcGfAD7 o&쾠ԄV֩tڷ#` ysd~rFڔSQD%! qykr$$lF8Aub4]%=Ftu,^m1.n\9Cݎ²A?r<b`LYYn95Kj. AgْDρWK`9J#O$4_A}kv8U>TܫOX  L+#nV%dTl(Uإ8|(> tEKnT{)&( x iV Χll7cΞbB/ XVjW4^i HXKmۜzU| 'a2,c'x9=G`lJ؀g:҇$9O_kvsNأh/"!g4M<L-谇K4ec3 HRm㋝ռؖ^n?vSQH ߢ Jf[QVVs Eje:u)dm ʈ\)R;|f!O[%'`D l55Ϝ֑rx`L.JZ_B“ aqe?Oh$5lH$;.6"g'Ugg`L]!u2 wy .v JZ]:NwuuI@e} ^*OAWO9ɸ杕JΈ>|)pCHpFK*Y-1&}[CMc8IB_j(jYfWJ}XA5"uTRǘ }􏿡M~C$a\;MX*6f334Hxy#Zw6h1Qdxb]u˘(4>d5 CRt(]`JrJHC#hh`6Բ]aW=8BFP&m83ԲaF487O S0$ZcNC>SHA6$5eetkөu٥+p Yr;7mu#s~}ZyCؽ +cӎ! ^yLjj@C`X{"a8X"V2ͬ-d5Yzخo F Ow{ ew6t'$U/UTrx;@.xT|?Bysٹ3iH *G`AvnpQv=AYZ ]q(#›TaM U߰wm֙ߤ0T-!ťx-qrDZ  -td"v:%2%Ah>鱃zenN|e0z W~{u,zm0Bپ ~8ëȎ %<@^1aYl&x]؈Kv#"*t_[vk=2NTUsbeTBk k_o>YgjV3Uz.n,ݥen;)M'LKO>=o4dQh&,ۦ@8,4OCل$g~ Le\Kwd^7Eٮ;G[b}j7I.D %h12CydS};|m-uDK?[N"n ܿpтUHVHҾZjɇ%@&'I){"`KdJ}̈́d%745P8 \-e vs*k!\%[r$mhF${^龴}M,IPw{!沅[7XuaSm"q5a7]U;WøSZZd5l-YF#83Q󩐁ؗW5=,N4Q^<}M,*_`'=U3/_Siƫl *ӴPVslLF#Q+Sp98%͇wPNU: ڱ ے+?ژ*ZNPc7ٞ7z|<ʒ| vLGx4`\guӗm#>sG|kclqu2s*%<JnRCiRQu 9g "lC:S3ۮu}uۚjVr &_'y OjЍSKmrΰBKN r\\WcE"TNV D3vm;k*")?}dR4XPӾvy_I#,Ll.g<]B9iQoåQ}E"CTWFX<̃} Bܪ\R Z,ӹ$̹Yw"[N z)a- rd#>g:E{8r#|0?io%lG^"6Cg ˙0rBF?ӖŒ Vc\}| Re@ϚNJ`+2d'-H!3ܔ.aV{ 5(vXqhOk2NZ?c3as 0"SSMqvݳ 2RՂ)xFb.A{ͣ0p>eO䉥rarng& .^n|2~UMPE٢R>@di,*"}q9Si(  9yF'u3}^5ZgtQ/TݼlIt H0[10BqN)ƸUB'|ӿIc:4 Ef늍T2!=  HKwkgxҟgPi2 K8&%dF:f2B_2TCLU"YАQUe TPt6N(ZJ_1-K2#Po]ijB5]$p`/'aױ~h/H(9_E*Zawm$&!]\|3i3e0Ё>>{\:\*z;oc6r 䶊֙BwwH,)(S/IK'g5QyiCv"%Yui`ɚ3e۪s3k TVEYk>Fu) *]UZA(_~HuSu?՟Nb#;;<ʳBţ@Ō?--rķ֘`OͶJ!JTf 6Gc2 j5Eځ9,͘^iGȿGǟܗSJgIXDEK Oz&wܔm+R-*mvə5r8Y@<`xY}3 ]w) .']0Eg~( KRFʛ ;!8Y ȸ兺r:JنjK#k/q>M/m(~F4 #jOp9Dzrs"';_3!4ca0fuӰ  b'T-!="G_պi%-SP4/yI{E 862'fZ &DjA7LGeCU*&umx~z  dxL/G65M{(E4W7,=udؐ)U›bUÓ蕠qm5A@J"+WT;EW‚wG'zN7l?%7 zCQ|3O'':W2D~D%8*^ /!)_DM˥3A]*9M]H@o(SdV2gmZtfJDp{ q/Sf7F.ºLJT>KDݚ9#G:Oy-ϠׁƇc @KL7I թ^Q pL dZ;_~e@3 KL8SRS zq8z7J UV<+m}^ͻ5mup!B_>'-BTbSVQhͭb{kU5q+)Q:5s#C3L{Jh{A%z7=ҝg<~NaAb@ncbV7ok9\&;='ΚI̝rBe 51Qkp5:I?it_CV9E%j;M~Z5&V] )/JړKEg K<،!ek}o$Gj~aJxn&$7F'g9@73a@) ʐ[=P^ؼK[kpchcmۓ{`d66 1"+J)e)ߨxv'C ypw/=4W /NA+DDi~ִUWV<;F% \Kvy>KYh^Ѡ)}B_I{}g 4LfbHSwBiiIg=-vy*I ˡg{zLrmgHj H ~<\YbB(]?ˊ_9w.]Kn~c6L=J+ b[HCQ6ĸ᫈*v潣_u/bU>#s!kŪ]"5e潸vi XԨj};Wў1<ƂmS9$ׇXH*>7NMw=\BTHKU[<`3L#v~tj 4+_oE"aEPįf >.*.T&806SkEdCbV\]ʓ] E/6"*J-fv"Z-C]^xMsMp遃E$:L3ku-/-4/%(]u' gXϮ1v0> V IMRС@О>`h,2ьDw9deēc)=i$n67t+6AP!߰_sğ3&᣺:7y QU5K0TxHZZmI⁜۪k5-7͏+јprv&H[NFn<*; z.NJ@9!Ұ$s hĶxw!c(өÝjҠX:} {!v(MiK-F;yYB_e0%[U$ ѥMHSf ?C ` Wc? 3Ͽv6 fm^&zT#ؽ_z8}Lr^! v.ql} E4w<ZЛu*H7u+!Tk}@fᾲQ© :vLqI#9O>ΣX{{Z*1'&Fo6#,99th23m0Q4t~\,|`Q$ vȍۏжk*mM!ʒNnHT`g i^;@ _լ}VX- WJ#I-l%5dKBǘ*XQ3PD\cA^+u}`Q&%&֯X`_"uCûŇa={*Y2-Cos`<KP2C"-сqd,x"/Nݍ+ Kd4uBѝ9-۬_xiLz'\QNLլ0tEկy!EO7oS&+D`=ĺlT5WKֶ#?SK #k$a@Vzk۴HW D}8Iܔ@.s'dz,ކB򠭠?ڛ]@Fs'eAu3@I欈UñǠM4CJODtb!Ch4s0vLHT:pO(9/ƅR, 7>Cͽ4P Rԁu)kt<6GUZ%MT'|4|mc>/z1qX mGw: M slQ%asS̯oU3VѩQj۽߄ѶhE4콾hNۤhDAaMQƓ#8a6[2A'XO{K#tnHgwU,Yp6ݝ|.Vآ(DFYB˜;<K<>{* /:S \TP5| {ӳ?_WLZsгµ; /Q&G,h~c6?Ae7jm7JJE5q<m@4笠2b|)TA4ɘC/Tp&}gTKCK~'eAm?j}vu6ϖ7S7a])w?G(OVKUyrҁϘk!3;ю b 09(N9J1j6\-Ehk`ZQ*zfe^b$ddCSif->b3;]IN2ƦDy8ųmsw}LAHLZqc׿X,bCBc86F? 1T"8BH#f&+&2I,HM}P(W_QLa$&im/])3.nI1ee^^/2!>t0si+dr??;ѿ)}ZvaJ*/ԁq2;J&vцcӁcZ3s`J'''d)]7`WQ֤A>W/:0Qx2yxqnM#EAovnI=Ҋgޔ9ϰSMEBteV즕#ӡ>jp˱`QC3Zs]8Ļf-*0}pC`9bI;=}LB&dC;` ughV.lmL}ԃWW\]}asvGCp,f=12Th54/£4d!$qRk au24OSy?e-\#seVjy%tag[r1+O㝭jL$(q7N4&/ n`9 Y 3s>)G,*RfH ߪ7v*ׅ2ؐJKJپ8 A] pgȝ$/s5z;x%i9]jH;K"c$Dzi\G&џE&YzUSĥč oa/{]v5͛-)h4=`|>uH5B %rt#~N/jH$dOZY@P}ǯhwqJ|$I_Q_q f+.#t(r[WMގ-([&f-&c F݅C]RS/"Q o̩/qa\ @{(AbszC>!;=3WWg`c} }+i~;Y̊i ֟-Cb$[#(qwV{lJভ6lO?5E+*DrB9xURgKQog\U)kj@5x # c|W0Fns(T^tQ5t懴K+)%)E`t($|Y7 dEVt WPuHۮJ2^8iqcΎ@N 8DhG[\/>Cm,t|w-H = D,yZ4KQD>']`m{\ˎrլm4Of3 a9AExīH)gXfg麗S:,g?((˗ G-jΐ~6LB$ ~V:_OX$gTqgU0GB1q}ZaJJ7FCeѵ֔hՎ 026n^u1YG(^/3L:Zoto_m 難{ 2rA"$ppC1is在Tp<8BN"+mZCXRZlڥ.jtΫssȌ/}Sֹw m&p>|yu^?(VjA+j]H')= ohF-׀قq#N8Ϩ~Ț00ۨ>E<ȍU/m2hx q*.{11^9QX@gH:dPxDqn\em9VfgpNM̐ċ( b c`𳡾xK}*|~55I\3y.'yՕ}h>ޠ*mTBN4hj["t\ ܴ;B_Be/ kkwݍ75mDa[ZJ}oVQLh8K_,jd pN3rl+)b;ɡeEɻOM6~vjSp\7k8T2g-16IѦA{c}6hQ⟚Aon >BJ,i'3.INg&,Ew6-̳Rxz@M8L"pװ5W{*"r);ʌ+ *Opa0hWٷz#,vfnT%cv_"3*1No(?Gfw7辱SLOO)/W.mT^lO۟UO]a].YG%MDJ}4kI@Ūִ.z^gJj4C~v=ebWF&x;hQo5L-Eb E˓aNЎs @Eڒl-&/fg _K XҷOHQrC7ԯF0`l,=b W=@e-UX'|w1,}vf7>&ҀI3Kƞj[ ;b 0_zmLY"`uBY]N:K+?Լ gڈ/ K評W`p^)pmp,ދ/$ o0GkעtG~4{A%'- AyY>)$~kř|fݑ|r pv\B6aګyU$jj ⰹ:SG[%~'+wi,j;J9tG2&) hhW.F}hm}LS J]wO:BBdvr"D9J0SZnq:zRǫM8wcaX$JsEe`Nvv66t˪ RM|USYc]K0'g)Q6L*mu-s"McVB, rg: +o6Rt+gBʺ ohVre`c[(X/eyv6AVuϘj=ȉ*ixkjuÒЕ`qzYu(Y{gf{?-kSH->6j TWUJ٫+ @h0'44i ;^svv$c#]$r/T޾[̘u&]#7:B, zy'm"Nw"SNc;~RD *JegjrYeG'׋K7+A >bogC@NN R|jw|4j.(qul]7HMչ<w^Ӹ/utail3?[U∕Јc׺ jV/6'5*}.<kE##jŖh]D~%sx{ZII7wOo8|9x$[ͲVԃAtƪ>*~}+&?+x^4qLFuϞY.j ŨznW~`Ks ?sHbݖ-?,0&N{|j$VG6f2a,Ԧ+92ٌ!J=).P1X"lf"b}5T~8Voj跉#Ͳ/&Hn}"?Ҥ' 8"h^v׶٢M]8آZBI0 oDF耭I(B ~/ڑ+[WRs:BV} moyI(RoIp EM}URMxluC11 Yݱ0/"5**K ?i~YI>{; [QS&?ic%q,KyYpDZ`Hb?TGCޜF+ZJpR _`e۠]Oj)eD >z+`Me6'6PjK Jy>tN8pJɲ]@Hć$v"&1v3&#ά69݅0u>lZSɚvixD@86{`!v@v C^Z~$wŸ*.PdBt~UGpv:`!}k*Gj2w}uӷ.Zcy!H*8SDݴ]JUD&7= A8تx`Rg Z<$?\=Vzt"kyT7xQ GRڟa]cE>3Ù'VIR1SO3,dfce?iafbAK"G`AZM BʏbDZYZ)1AkMp"^;Vs7Zޠp`Բ cp>DO2Y ^QQ]fz@PƧhΰ4dA{6%T]~6[PM}Tymi_r9F9u'zNY$o|+8!Ku2g:%bt) I,<' n062EZ]g!yL=$7!Yb ^x ]t 7 i*>}Ё&<za?s \?Hs*ݼ%x3D l!PLw2]ivD `~K\'|s׀!P!18h+gKǜZ' @bo5TML師Uvd8`⨜M,"_Hr !~wqKUS|ޙh4?#6jB1i(ފXRA*haPy,=> 5;ayܜJ90e91;@&'"{hݲ8w( @G̲l&o$0axע5DGs3뢲$#&빉,0lr_ 9*) I*3p:OLzl5Sz+l]t`Af2s+us|^+d[jf VnGV^,w$uLPH*)sY|OCR3=4Q˧ 'Z"Q9,=懰)@3*n`IQVf8SgV>\GQjLJZTn+5pߛl޹j5ښs+Bͯ5$B=ܜJl)>@Fi"*dWa~1fS)#y1-ێ*Gp/N79Pe-|;eE4/&I̥FdW]KHe!eLtqP }bgdyܸ"S@GڔdK^h:9KsnDkcZ-jz顕#&a@F+| }q|I5j@xPBܵ?)Wf]uƉ3MÀgŝ7 mѠd+;Z(#U{ }& h8ήOv"jڣ:KQcn< wmnQ(ᶹXI"PJMPPô>ixފc3VY_oB2)g&^WJ /:s"+,@Τ՞$lҎ[|TНz 2Og!%)rMc imѿ4uyU}!BN?J9Ϩ[uZ(NR'-Kkz\ Щ1~j3(2lzX/ WΔ,v:)mVU;QRcu2WgxtTn797{˿au{-7_Ks;y9Uu.,H_ T)2y?đ+UJ鹜Z@1 WGcrq(.}k(~$rzFb2=/&gɀݚn<:ә8Gv'Y@Rz'*U$0mYG`5\?*WTK)H|]\h^;PIE=I8m6o+i+ق7|sOą}1pOq*/ ,rzi sSAwdخN[3`7L>ɴ7 a;#)o m/^E]8[+G4[u [J~yy7?iS6( Ctsk ׺2.3um﮽Ww6~Y̤0!/􇛾8ٺkU u(Do_{B '9P=1Ȅ#;L-`# F4pnʌxg![8eL'x|b6?H#qcwdjpvӛ_>l+Ě)0qo+'44/aڻ0af 2kuxw~ޠMY7 q|$Y:k[g^6WBG  '/SΑWHN=y'jraŶ۬QO1Fs`mMp/uS8M ny=!8*o*K@(t Ox׹0pe:*J[ݫ٦P"B]T0 Qs?V\ =TA";8oqX#ԋ%"h"tb>`F1ZZOWA? H&H]̸q |]7l2yjƵ 7P1fzj+[Mֵx{CX|{\-zsA(J>w$PJYw9];U*WEKjp L]7L]<ӄg^2hJvItQc\՛CfD@NۙsLQh0xOj ,M;.Ȱ#}ot,1a8:YQҮ6 &QlxtINkc\>0]ې}ކ}Z%S-t3*j'!;$9{aݧ\y*iR ?SNg6Ӳ*[r(1,F)5w&,T멇&\~HԪ[IX)Sw|1J8X؜jgpV>r%[R"=D_Wč a*8s8qSmYv 6v6Lt\ڵ8|(6}̓^}pD3MhUz2KݐEd6i .u6Hu'6L-_xCdrf1 I!s1CAUu^'4PN;R(#|0b uB#޻3 ֦i{eFDFiLH?{^nzI~HFq]%D9Ȑ}Ha)񇇖?"YAϲ7՛[V'u!~ ta _(l'uڟH뾕N<Tjo,x`~㣆!h?!AVSKqgK6vmYǏaHQNxp] c0<.t:gnM?L/D+|ɯUْgvbXaFrtqR _(P$}iPH[q BƲ7 బK!jeukg`EIE~~ESPvH"~IlVȓpbPB3Ẅ́@wּx,P봐V (c;?k#H36FCԴSi/0hwѪë<4F(=5ݓ>:~XبjO9>dic5*Vϫ;9UY"a}I M>{TH Nuc )c-?)*,oyX0 d՗3 GT4OĵqH$m@2@DR\T^Ӵ:OQbN Y묻١][b|\lFkydpKx;Y4 vRbK.2eqAL K]9K3*HSeFnd[\)f s9r.Q<}RYe@ZT?+u6mv5BbГ^싪ӌЍ~a&s&q nisdHsGoaHL=Dޞ1'gεccؔNNBLl&a:$akb/=5s,jSO߅ٍ9HrlsL=/RGS{Ttdqw_;t'|JÃ둀S0O œSa}3=IF*l}P;6rEIbБ;x-^Cf48U߸ɔ]eBf) b9TdW>B H邋m3 }} 2rI-,w {ڙU@V/_rz !x5׆ NЧ!:@` Vͣz;"m|O Kqtx,mˤdk$~. Ik-S=,61n.,VAX:|EůQgNlXD߃zV{(wE7ι ÅwPn͊\w`?qrTf^`h\OeXQLq:\A߫NQx+3CȊ \taIC aB)Vj!Ro5__r6z{A^ol>jɈ]++Nwu'$>1Ne ")΁)* 1ki6UJRrH/ &4v6%Sg&B̨$x9 O(VѶlZڈ٠'վۭ>0= \}!a.unH@,TI7H} Ƌ?0Pn*TnIRUnsMfG!yGEB :Ȅn Pcs 3(Q Ad9د$VXֵY nX<'[jZ2R04{f+Y0x$'͜*2QhB)wp11u:pRӏ({Mzǯ#Қ%`=Qr|Ǹxls27}uN9-6Q#.Z.޼=[ |&UoF2qUr|]{|<hF8D<}~=vhWTVl{GЭyp'jxL 2VAIRR=1 I^QUmaV}!bJݑZؼ39*<$P*R_4+aN*5Ƅ">bNaʯRB6Y@w8Dħd r3'e,K~!Ɔ2eۈL- &wiXK8N`5':5z.%O_$V)ݩ-a['+!rXg≢.&gH'9|``WTtD)2/~b.bU}#ۮMki3d]vBL8h{Ƭ]][;3YR*S9TW)4aՒEM\T$6G5T}*Dhז^) bC=bʣԳ9jK;je d[،AʼlKlɷ]]J\{:ۭY~lj&mzmz;рB᠒{RkސNE]+/Dxk5)9srW_nl iy}(hBǹrc$>Μ &#xT=|TՈs's^i!_wTT<֕latΪv`|nҀu5 85Icv[d2<|> 9Mյ0_:"ziН\Re ik/忀4GU^:Ʋ?:P^_?@ .,00126u߽fx M<ʍyd_;z " ȉc]k`0, ߽JѶj@§Q-; g@ z~$Q+Xl8)% F 98Uv9צww?iLy8\4ϋ-;q˻TwpOpR<IfWn@`KF9a4F/mFFleiX5^K,*C:mT ,-&6/;[qz{5iWGCQ&v&'<,7w I!eFJF3m/䵔YW,kdA_9FQHWy*?QhjSc፳^nYz.<07;~Nd[_AEhY^07".q`Ka8؍ GMWG@fa6B.C_ʥ6oԔAQ{@{Xo/9wNŔM mG ";Ggl^ f]')S`%v~GJkx׫v|TmzmB2xV}fo+^Z!zj<fRK=_ov.0}tg8xbX+?V$XWF ~hV12<;L'9ܛp4NlҬ<>b|U:FeZ0d !`z7:=TX~(c1U+WTdKMSִ_c#wFS,ݪwu=y#2dբ@kO̟ ϧ?y9Dw K-y[գ"$W~Kǯ!hvJщѻF7:ī}톤5&qZ47xL. դ )MƋә|GW޽󈏮Gr]xSjVi[+Eiz: d$BE g^ix>HSLDCKQ%lRm|^5>yjm,,-X#=Ĥj[¦Y$2eA3TϺl𬨬KwPաJ冣\х"Ps<0P@ P 5;1u\{/!fY $f3Xm &=怵$,L6㋡̽\֒L{cw.]duu0d4f _Z|Ԙ+A}mbb2QVeJ:pSQ:U;68au%_qRj^jΚbds&MVsLd)J]5("ϲc[Bm[܈ڣ~zI33;u9_)ňS _vl%/u\zL'Ox 4o` 2TwVפ->eBw$wS\gpWq3Ltp<@No*Xfj@2FR[g^SS5)sFƣƎƑ֒#$I-*+<QvEf/-5ѿڣ36S",p:i>n.RnH{cM1n uͱv K6,MFT|rDxmh (VDY,,deL]Sr0م*cw EE5V$눝uf8yoAd(^)@㹠ڧN nWR>es;rIZח,,QG4B\\ o̘dEd/H ki(Q?XG'RW/bnMo\Tt@twIVy\RmJ8Ϳx6=!>SUH۝!?nU5 :bѼ( q'`QƆH|*|)K@d׎ًoEp 4u̍u=ɒ/м\,鵮Dfx/'6h#{wI43=Cw=T m瞃QrU,mEoM?sT+Z?gmqϵ 鮸 G}$cEIR5Tx&>0})h#0\ANİ6ߊTe#w/O&Vۖh\Nj4!Ppq[,䷎bB^w{e9rMux|Bwַir)hn{Z6Z;77ÊxO?)tNMk|`\}Y#kBm(!fRqJ9qv u 9d2)L#dkK_l"#2;g  8y#Jv! lݦlBD? x3oQ`Tfd9icXZ |"YbvW_4*ެv(!C?-Qg 8aoϦ%7)"ʠT?#b!˴ !3VbZwȍJX0}>{* bӆO¡աՖFWUjt@H,=_| Y|u@dYgcO̒g5/A>gJB*7D'\:V2q͵ ε\=/Toi)Lmt3F73nx9~D^LLOt!$;arҦ*U#E[JZE2C~k+T8@0H /1يI=z? iHP`w|Y1J"7yC9j}ms&mWۀGDbD3e$;BvXC8\]ʩ(͇/l-u~45]iW.ubKu':" Zfed ƫӷhJunq-TdϯZ0|Cj{e|ȎO:pX'C?4ӁPղ DR_kh6yR[}K SHNuoHJt sљ"6 ߋ`a+R PQ|˩.qhiHR=npQ<8>sIwjQ:投$5KNW] ]W Y׫9Q4J@tE;NV bY5B/ͭ.Ub\&XH&Ÿlub ?T_ߣF -L@Hne'H$o(,} [+LxG@\CdkS!Yt)aE&R8a;5F_٢vtB17 1$Mߒր hNS ^cfthͨ2e+T.1_U5uFb2zBz/&[Jr7)F_f"nV1,ms2{nķ{́14 V8(0"սGt>)АdXf pg3Uq*}~êh=6'L9+V5līK9\ " o]vNEAI+?mi%$[f31@'5+*CBTk2Ja)*.}٫\O+DàP*_H3'RhеnT`;zn} BUss̬nuR~,;hsԠ뼥[ѡ#@X]eDC%ׄm)o#Cg0-䇦pVp RbPGV 1Ĥx揩;OZxP9Lϡם[&* g$4˅#?]f֗Rcchڈ }m(O5|f웢*ٜOW #Hu/'/cL Lvx5rRRd\:z,}7#2,=c1I_v-&ɼJf{L2T"5ZQvDf{ OhpHeol8 fp9v55lնI6q&4:%7?y)/0kbigh,k`Ԃe<詈 dՈhnTcu#w,C)_`Xx=45$/OVHS}o74ۍftނn$JӟwC6 A тYMoFL=q_Ą2f< {੡^)a WՕþ?/d=rΓH [^)'K)dPNaWa(~I$vlv!3ሔ cQ 06oK~g6;șKY )Z!XQ"Eq-*Elʀr_9Gri06u1hWU:id2ge1fb2YㅜYM&WK"`l@3K :> ~E-,ail'u8*$[3Ho9.9n.׉'ȶ!צ!bX_Noxm6EO`%Bvh%(Uc[\ + ś=]~į$4t~X6@𡆵hnf>#rߘhH:'Pڳ~z5вFkDEXFXYIJ tr >°ʙY\_]VyR-7.!ز=[ 5'(!HzB=\H\%?=K-l7=fBGթ2$Z;<7 s@KkU4މ*$Xp/r[xàyLo#uEu>Ax\}CnI;w1XK?rsmMBi]QZ$1t֫< ,NóXGp: d> 4r]"K51Evr6( IM:dv)&ٲ`z˳~N?jCjiH֩ |Lِ;:$a>$viq=VDd+Q1r0B{@H/=XO-k'*Ye:$\X?.ʐU\`M#n?,&6wSPKTː| ؚ>6ITSEFTiY;݂rx }B;%ɇ4q^reE]#y@w?r7 0ǸIse5˶YW :'&[Ǹ1oZa65]ݙ JLuvu;}r״ L,f;THV* k$o!(0/cÍsdFrvO`H4OE*m(D%% dTųPYG?r~Ѵ>x"%t} 0<#^l$&Az3DMd.bB/U38:zr0EjgxAtՔÒJOYnN; 2#fk{NV>Jo*H^>jǮk!!rC&^T.T&kh=,f%`gXټ >؁Aw>X aOrWd@A.ȃ_j_I鍚I^RM=éos<% BW6x736<-_oP{3Pp|X(&HWd~F쯛װMFF^`z(KƮii ѫW;hGE^^@G:K!T:BHjz^ ?g̮r1n =۞Nn [ 1^rAܩD_*KAy".+}Kjc>Z@Θ+F2}L9:|z#!饶b%{ET³,>zUP_B_PY<ՏhyoʬӇ'O˨ \)H};&c [e{n9NgW/ZgHWS[Ժ/[("ꑗi{V= j  b oE|*Y(5gL#znZ@ _5V_fXBL2=e'qGx 9nR+BgS|b Gxh 40|jdaކF3B{EQz$A^isӧ͑Je[BsMt"nUԼVlm JՃrՕ *}c."KD%T-t.k,<wMweØqe taN9:U+3z8|3$r pC%+?s `{aVbN<7?ORFχtߒ"<,Fkg'Mع@rSEɻfBW c`u Re.uiĭՎ<c`u~}+rAPA.gpe> [~LTCxF#~Ψ*Wr8rʻJΟ>kG6yT9#хa{{v1gT,2p80B\W! M;/J)X53f]FkF2FUT񄒑yxy ٗC[+%jJ>xpޚb£tO{kQ4YPL9Ff !\QH@> ukh=W23NpI72/r6*:)< {J-Kf9X$LjE}bq9LQ@9Mѐ5:6,ԥW߆͡yqr}EixkO$w,;QDh9]l[&UUƉ|e,)yrF-,m}F#~ݪHUA[AoհaͥƌPԉ)H|`_=MR7ȅ!*h8\k#ZQhI٢+2=CB BLЎA+Lܽd"J]#X3>?YdD–v0ؑ*/i haY7~(=sx&݇0Jg벡gϴ7i0 +0tȅQ'>Y+Xxدq?3w-ܗ3I*y=}Dd&ɕ Z1EݛD2deH(b䌥ِSByq;Kzۿ:e1&a&=pLvPKH߉-ibht'oډwqZ ϳ QO4u_oWiF@3gs*2b[qy^m ]"w)\cǻ0bFt,>-'`[A·1^xvjZ`Yf &g;L U&b ܜ(piq*^HbXhET)_;JnnH˂om&B4mu8֩)`x(Xgz% uo+S Fn<% EoG yZCB^Q!tkMUh||猏S8Df q Z)X-Cg|iƸu˾E9pͯu=.h}`Qu' !j#06gv` u9yc5t?dkEA~m7üQ @ O˪ y,sLO(TMzչfE(}23RhQȄ<4}_ PG}.~G?84P ~*) h, 0Γs`҄Sb"pՏEL_@jPeu%k^c2Hy1p lvĝS@b:RIŃ3-Z"B4{TI1 r6U4ԗ*V fkq_E"O9/8q$IsL$F~.sǒ9&|F r9l`Ϙ̉N̼9&}]ct bkvT:ҭ)醔in 雭)LJmu>lrՄw\* XET&{=d䗻!ѩ%>Kj;r>*LN3l˚3$g]볿LsvW!(3WJ)M6MJM3U) r]Y8RLa"9 6DaR# 7aj DzB>|Q'xЉ?YR2ڗYJ$=gE%=~Hӫixh8yo ը,9ZSK8R:/g 8z-3,΍jtnmj9B<@3Sf=Z[&ha͕}Jp5n^ 7ˆ`"ߚvfO"1":wSOĝ dXtR @O䔌{SW+UX&1gC#@kuEޏ髤a ,|QSf$}0vJ'3n/@6ߌlI2茋u} NSLJfO_!׷`\Ffj*#_xt s86bYI]ӑ!6OB2gAed2PJF'}g !WuK,6 ;gA*Bܤ'a^Qr }c?ץR17G+C hzqiڥځ7boG*@c5/d0wÓAߏ"}RJUQsqV"y¥fwn̴(/Z(-=^پ!ulVQUEz%_F{`+wL)gkĩn7^^8'{s?EջwumBw$t[sџSNKYe7gvڤ6t&x VA%%?58 rJ<ŝ'lhTByRdft2>7Jen wjU0EBc%DsЪ,u"𰐼ҲP֘K:sR锞)e޳c"QVi"=k2+̇\aN_9K+\mxB5G2;ܖh Ĉ_Sv] ^ Iiz K\f[7@20e>{FhR)N^h"N⍭;F>#ITPJOeͨTئ A_k`O?;*OӲX/ LV2.t;U]}U RSuY{!P1 o}ZΦBT$CnV_AjU];h\F-. ~GR ءQ#b]^KjӅiO~~\Pj0L8DU!h߄A- N!. ,?7ܠ' 9O Ȋ;2=>s Џ(~ *Q0ˡL]濈 ?H%,j*NXIF v⑏l3ݗ7<py jB8 O1eh`26Ѻ':inj /0}Em;*uPEs 2]cףsTGV¯|e\FqP(lu0~Vжu{u.R9LB,P @X AYcq$R@gvmt,Rp<7ѽ?H*{t}ƉR_i2U j[RIGhS:a%O~6Ga lzל;e"L`cebu;'Wwu *inN*=vȰ#YR*Ha7wSwg2EnM|ӮHH*ދ$^YC_Rnđ<+Ѧמ-ޔswCY2l@pE*%?̤ib&e7g2P}rګA[XZf4.{D|D?$4 CFQ^X_) GCrVP<ݗ7DM/kV\zes%_-8(ދF.M |#<3 }:W'6=&:L1Y拽Dk[Bm*{.G{?,Ȕjg3%q20T17uf3h|;\`YX!VbC,5B br p>:}X{0EW!Z%^u?ktJWepϧn}د>1ȾψbI<hpށ|u-+iivB%m^0}[t`EȰإSH*c Ę5X#P`V@w@~?GI2X#2d~;uxۜB\@MW/w*/z^Aq(ƚ;-(23kI]1w= fR7KkQT3A؆-]v|A%~gwWGԤt֣``*5tZ6:ӑ$j*mS @uhwɃqad/s9C`nx#VqщbWQN̨V1E?ޖ &m YZ