tiff-4.0.9-150000.45.22.1<>,DcSp9|@*Q;!WX v"xChUr<;,ɏuVS,iMR"Gv-iʹ2MJNxv摖t&0 ӷD>ݢa@lxZmH>%"j=ɛK`~(MR6h0Lb;cqOt1ӆax4 ի!k$k 8..x@wPاL0>>`8?`(d   Z 2X^hd  `  \ 9 :=ASEE0H,H@HxI(J8J/9J/:M/F*0G*DH-@I0<X0Y1\10]4,^?b@cA6dAeAfAlAuAvD(wX0x[,y^(hz____`$Ctiff4.0.9150000.45.22.1Tools for Converting from and to the Tagged Image File FormatThis package contains the library and support programs for the TIFF image format.cSsheep62<6SUSE Linux Enterprise 15SUSE LLC HPNDhttps://www.suse.com/Productivity/Graphics/Convertorshttp://www.simplesystems.org/libtiff/linuxx86_64JxJ;X:I;(9IH:0Z8JPI99pzt @ r. W62 f(0N3Q 58]`@OK$ Z9 c O 4  H 5}0%(9! ayu V6(tX .  =9y`|1F:1=O@1f"8 oE^7 W^ q}  J'$A8#ZR 7s- s >) ~3CI%F b, | / Q4 J uA큤A큤A큤A큤cFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcP7)ZO@Z= ZcEU\IW(W.W(W(W.W.cEW.U\I7)7)7)7)7)7)7)7)7)7)7)7)7)7)7)7)ZW.W.W.cEY! U\IW)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W)W.W.W(W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.X0int32 conversion (when refBlackWhite[0] == 2147483648.f) Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1907 + libtiff/tif_dirinfo.c, tif_dirread.c: add _TIFFCheckFieldIsValidForCodec(), and use it in TIFFReadDirectory() so as to ignore fields whose tag is a codec-specified tag but this codec is not enabled. This avoids TIFFGetField() to behave differently depending on whether the codec is enabled or not, and thus can avoid stack based buffer overflows in a number of TIFF utilities such as tiffsplit, tiffcmp, thumbnail, etc. Patch derived from 0063-Handle-properly-CODEC-specific-tags.patch (http://bugzilla.maptools.org/show_bug.cgi?id=2580) by Raphaël Hertzog. Fixes: http://bugzilla.maptools.org/show_bug.cgi?id=2580 http://bugzilla.maptools.org/show_bug.cgi?id=2693 http://bugzilla.maptools.org/show_bug.cgi?id=2625 (CVE-2016-10095, bsc#1017690) http://bugzilla.maptools.org/show_bug.cgi?id=2564 (CVE-2015-7554, bsc#960341) http://bugzilla.maptools.org/show_bug.cgi?id=2561 (CVE-2016-5318, bsc#983436) http://bugzilla.maptools.org/show_bug.cgi?id=2499 (CVE-2014-8128, bsc#969783) http://bugzilla.maptools.org/show_bug.cgi?id=2441 http://bugzilla.maptools.org/show_bug.cgi?id=2433 + libtiff/tif_swab.c: if DISABLE_CHECK_TIFFSWABMACROS is defined, do not do the #ifdef TIFFSwabXXX checks. Make it easier for GDAL to rename the symbols of its internal libtiff copy. + libtiff/tif_dirread.c: fix regression of libtiff 4.0.8 in ChopUpSingleUncompressedStrip() regarding update of newly single-strip uncompressed files whose bytecount is 0. Before the change of 2016-12-03, the condition bytecount==0 used to trigger an early exit/disabling of strip chop. Re-introduce that in update mode. Otherwise this cause later incorrect setting for the value of StripByCounts/StripOffsets. (https://trac.osgeo.org/gdal/ticket/6924) + libtiff/tif_dirread.c: TIFFFetchStripThing(): limit the number of items read in StripOffsets/StripByteCounts tags to the number of strips to avoid excessive memory allocation. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2215 + libtiff/tif_getimage.c: avoid many (harmless) unsigned int overflows. + libtiff/tif_fax3.c: avoid unsigned int overflow in Fax3Encode2DRow(). Could potentially be a bug with huge rows. + libtiff/tif_jpeg.c: avoid (harmless) unsigned int overflow on tiled images. + libtiff/tif_dirread.c: avoid unsigned int overflow in EstimateStripByteCounts() and BYTECOUNTLOOKSBAD when file is too short. + libtiff/tif_predict.c: decorate legitimate functions where unsigned int overflow occur with TIFF_NOSANITIZE_UNSIGNED_INT_OVERFLOW + libtiff/tif_dirread.c: avoid unsigned int overflow in EstimateStripByteCounts() + libtiff/tiffiop.h: add TIFF_NOSANITIZE_UNSIGNED_INT_OVERFLOW macro to disable CLang warnings raised by - fsanitize=undefined,unsigned-integer-overflow + libtiff/tif_jpeg.c: add anti-denial of service measure to avoid excessive CPU consumption on progressive JPEGs with a huge number of scans. See http://www.libjpeg-turbo.org/pmwiki/uploads/About/TwoIssueswiththeJPEGStandard.pdf Note: only affects libtiff since 2014-12-29 where support of non-baseline JPEG was added. + libtiff/tif_jpeg.c: error out at decoding time if anticipated libjpeg memory allocation is above 100 MB. libjpeg in case of multiple scans, which is allowed even in baseline JPEG, if components are spread over several scans and not interleavedin a single one, needs to allocate memory (or backing store) for the whole strip/tile. See http://www.libjpeg-turbo.org/pmwiki/uploads/About/TwoIssueswiththeJPEGStandard.pdf This limitation may be overriden by setting the LIBTIFF_ALLOW_LARGE_LIBJPEG_MEM_ALLOC environment variable, or recompiling libtiff with a custom value of TIFF_LIBJPEG_LARGEST_MEM_ALLOC macro. + libtiff/tif_jbig.c: fix memory leak in error code path of JBIGDecode() Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2706 (CVE-2017-9936, bsc#1046073) + libtiff/tif_dirread.c: in TIFFReadDirEntryFloat(), check that a double value can fit in a float before casting. + libtiff/tiffiop.h, libtiff/tif_jpeg.c, libtiff/tif_jpeg_12.c, libtiff/tif_read.c: make TIFFReadScanline() works in CHUNKY_STRIP_READ_SUPPORT mode with JPEG stream with multiple scans. Also make configurable through a LIBTIFF_JPEG_MAX_ALLOWED_SCAN_NUMBER environment variable the maximum number of scans allowed. Defaults to 100. + libtiff/tif_read.c: TIFFFillTile(): add limitation to the number of bytes read in case td_stripbytecount[strip] is bigger than reasonable, so as to avoid excessive memory allocation (similarly to what was done for TIFFFileStrip() on 2017-05-10) + libtiff/tif_getimage.c: use _TIFFReadEncodedStripAndAllocBuffer(). Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2708 and https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2433 + libtiff/tif_read.c, tiffiop.h: add a _TIFFReadEncodedStripAndAllocBuffer() function, variant of TIFFReadEncodedStrip() that allocates the decoded buffer only after a first successful TIFFFillStrip(). This avoids excessive memory allocation on corrupted files. + libtiff/tif_dirwrite.c: in TIFFWriteDirectoryTagCheckedXXXX() functions associated with LONG8/SLONG8 data type, replace assertion that the file is BigTIFF, by a non-fatal error. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2712 + libtiff/tif_read.c: TIFFStartTile(): set tif_rawcc to tif_rawdataloaded when it is set. Similarly to TIFFStartStrip(). This issue was revealed by the change of 2017-06-30 in TIFFFileTile(), limiting the number of bytes read. But it could probably have been hit too in CHUNKY_STRIP_READ_SUPPORT mode previously. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2454 + libtiff/tif_error.c, tif_warning.c: correctly use va_list when both an old-style and new-style warning/error handlers are installed. Patch by Paavo Helde (sent on the mailing list) + libtiff/tif_getimage.c: use _TIFFReadTileAndAllocBuffer(). Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2470 + libtiff/tif_read.c, tiffiop.h: add a _TIFFReadEncodedTileAndAllocBuffer() and _TIFFReadTileAndAllocBuffer() variants of TIFFReadEncodedTile() and TIFFReadTile() that allocates the decoded buffer only after a first successful TIFFFillTile(). This avoids excessive memory allocation on corrupted files. + libtiff/tif_pixarlog.c: avoid excessive memory allocation on decoding when RowsPerStrip tag is not defined (and thus td_rowsperstrip == UINT_MAX) Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2554 + libtiff/tif_lzw.c: fix 4.0.8 regression in the decoding of old-style LZW compressed files. + libtiff/tif_lzw.c: fix potential out-of-buffer read on 1-byte LZW strips. Crashing issue only on memory mapped files, where the strip offset is the last byte of the file, and the file size is a multiple of one page size on the CPU architecture (typically 4096) + libtiff/tif_dir.c: avoid potential null pointer dereference in _TIFFVGetField() on corrupted TIFFTAG_NUMBEROFINKS tag instance. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2713 + tools/tiff2pdf.c: prevent heap buffer overflow write in "Raw" mode on PlanarConfig=Contig input images. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2715 + libtiff/tif_read.c: TIFFFillStrip() / TIFFFillTile(). Complementary fix for http://bugzilla.maptools.org/show_bug.cgi?id=2708 in the isMapped() case, so as to avoid excessive memory allocation when we need a temporary buffer but the file is truncated. + libtiff/tif_read.c: in TIFFFetchStripThing(), only grow the arrays that hold StripOffsets/StripByteCounts, when they are smaller than the expected number of striles, up to 1 million striles, and error out beyond. Can be tweaked by setting the environment variable LIBTIFF_STRILE_ARRAY_MAX_RESIZE_COUNT. This partially goes against a change added on 2002-12-17 to accept those arrays of wrong sizes, but is needed to avoid denial of services. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2350 + libtiff/tif_read.c: add protection against excessive memory allocation attempts in TIFFReadDirEntryArray() on short files. Effective for mmap'ed case. And non-mmap'ed case, but restricted to 64bit builds. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2675 (CVE-2017-12944, bsc#1054594) + libtiff/tif_luv.c: LogLuvInitState(): avoid excessive memory allocation when RowsPerStrip tag is missing. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2683 + libtiff/tif_getimage.c: gtTileContig() and gtTileSeparate(): properly break from loops on error when stoponerr is set, instead of going on iterating on row based loop. + libtiff/tif_getimage.c: fix fromskew computation when to-be-skipped pixel number is not a multiple of the horizontal subsampling, and also in some other cases. Impact putcontig8bitYCbCr44tile, putcontig8bitYCbCr42tile, putcontig8bitYCbCr41tile, putcontig8bitYCbCr21tile and putcontig8bitYCbCr12tile Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2637 and https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2691 + libtiff/tif_luv.c: further reduce memory requirements for temporary buffer when RowsPerStrip >= image_length in LogLuvInitState() and LogL16InitState(). Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2700 + libtiff/tif_dirwrite.c: replace assertion related to not finding the SubIFD tag by runtime check (in TIFFWriteDirectorySec()) Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2727 + libtiff/tif_dirwrite.c: replace assertion to tag value not fitting on uint32 when selecting the value of SubIFD tag by runtime check (in TIFFWriteDirectoryTagSubifd()). Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2728 + libtiff/tif_jpeg.c: accept reading the last strip of a JPEG compressed file if the codestream height is larger than the truncated height of the strip. Emit a warning in this situation since this is non compliant. + libtiff/tiffiop.h, tif_aux.c: redirect SeekOK() macro to a _TIFFSeekoK() function that checks if the offset is not bigger than INT64_MAX, so as to avoid a -1 error return code of TIFFSeekFile() to match a required seek to UINT64_MAX/-1. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2726 + libtiff/tif_dirread.c: add NULL check to avoid likely false positive null-pointer dereference warning by CLang Static Analyzer. + libtiff/libtiff.def: add TIFFReadRGBAStripExt and TIFFReadRGBATileExt Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2735 + libtiff/tif_jpeg.c: add compatibility with libjpeg-turbo 1.5.2 that honours max_memory_to_use > 0. Cf https://github.com/libjpeg-turbo/libjpeg-turbo/issues/162 + libtiff/tif_getimage.c: avoid floating point division by zero in initCIELabConversion() Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3733 * Changes in the tools: + tools/tiff2pdf.c: prevent heap buffer overflow write in "Raw" mode on PlanarConfig=Contig input images. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2715 + tools/tiffset.c: fix setting a single value for the ExtraSamples tag (and other tags with variable number of values). So 'tiffset -s ExtraSamples 1 X'. This only worked when setting 2 or more values, but not just one. + tools/fax2tiff.c (_FAX_Client_Data): Pass FAX_Client_Data as the client data. This client data is not used at all at the moment, but it makes the most sense. Issue that the value of client_data.fd was passed where a pointer is expected. + tools/tiff2pdf.c (t2p_sample_realize_palette): Fix possible arithmetic overflow in bounds checking code and eliminate comparison between signed and unsigned type. + tools/tiff2bw.c (main): Free memory allocated in the tiff2bw program. This is in response to the report associated with CVE-2017-16232, bsc#1069213 but does not solve the extremely high memory usage with the associated POC file.- Upgrade to upstream release 4.0.8 * libtiff/tif_getimage.c, libtiff/tif_open.c + add parenthesis to fix cppcheck clarifyCalculation warnings * libtiff/tif_predict.c, libtiff/tif_print.c + fix printf unsigned vs signed formatting (cppcheck invalidPrintfArgType_uint warnings) * libtiff/tif_read.c, libtiff/tiffiop.h + fix uint32 overflow in TIFFReadEncodedStrip() that caused an integer division by zero. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2596 * libtiff/tif_pixarlog.c, libtiff/tif_luv.c + fix heap-based buffer overflow on generation of PixarLog / LUV compressed files, with ColorMap, TransferFunction attached and nasty plays with bitspersample. The fix for LUV has not been tested, but suffers from the same kind of issue of PixarLog. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2604 * libtiff/tif_strip.c + revert the change in TIFFNumberOfStrips() done for http://bugzilla.maptools.org/show_bug.cgi?id=2587 / CVE-2016-9273 since the above change is a better fix that makes it unnecessary. * libtiff/tif_dirread.c + modify ChopUpSingleUncompressedStrip() to instanciate compute ntrips as TIFFhowmany_32(td->td_imagelength, rowsperstrip), instead of a logic based on the total size of data. Which is faulty is the total size of data is not sufficient to fill the whole image, and thus results in reading outside of the StripByCounts/StripOffsets arrays when using TIFFReadScanline(). Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2608. * libtiff/tif_ojpeg.c + make OJPEGDecode() early exit in case of failure in OJPEGPreDecode(). This will avoid a divide by zero, and potential other issues. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2611 * libtiff/tif_write.c + fix misleading indentation as warned by GCC. * libtiff/tif_fax3.h + revert change done on 2016-01-09 that made Param member of TIFFFaxTabEnt structure a uint16 to reduce size of the binary. It happens that the Hylafax software uses the tables that follow this typedef (TIFFFaxMainTable, TIFFFaxWhiteTable, TIFFFaxBlackTable), although they are not in a public libtiff header. Raised by Lee Howard. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2636 * libtiff/tiffio.h, libtiff/tif_getimage.c + add TIFFReadRGBAStripExt() and TIFFReadRGBATileExt() variants of the functions without ext, with an extra argument to control the stop_on_error behaviour. * libtiff/tif_getimage.c + fix potential memory leaks in error code path of TIFFRGBAImageBegin(). Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2627 * libtiff/tif_jpeg.c + increase libjpeg max memory usable to 10 MB instead of libjpeg 1MB default. This helps when creating files with "big" tile, without using libjpeg temporary files. Related to https://trac.osgeo.org/gdal/ticket/6757 * libtiff/tif_jpeg.c + avoid integer division by zero in JPEGSetupEncode() when horizontal or vertical sampling is set to 0. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2653, bsc#1033127, CVE-2017-7595 * libtiff/tif_dirwrite.c + in TIFFWriteDirectoryTagCheckedRational, replace assertion by runtime check to error out if passed value is strictly negative. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2535, bsc#1038438, CVE-2016-10371 * libtiff/tif_dirread.c + avoid division by floating point 0 in TIFFReadDirEntryCheckedRational() and TIFFReadDirEntryCheckedSrational(), and return 0 in that case (instead of infinity as before presumably) Apparently some sanitizers do not like those divisions by zero. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2644, bsc#1033118, CVE-2017-7598 * libtiff/tif_dir.c, tif_dirread.c, tif_dirwrite.c + implement various clampings of double to other data types to avoid undefined behaviour if the output range isn't big enough to hold the input value. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2643 http://bugzilla.maptools.org/show_bug.cgi?id=2642 http://bugzilla.maptools.org/show_bug.cgi?id=2646 http://bugzilla.maptools.org/show_bug.cgi?id=2647, bsc#1033126, CVE-2017-7596, bsc#1033120, CVE-2017-7597, bsc#1033113, CVE-2017-7599, bsc#1033112, CVE-2017-7600, * libtiff/tif_jpeg.c + validate BitsPerSample in JPEGSetupEncode() to avoid undefined behaviour caused by invalid shift exponent. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2648, bsc#1033111, CVE-2017-7601 * libtiff/tif_read.c + avoid potential undefined behaviour on signed integer addition in TIFFReadRawStrip1() in isMapped() case. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2650, bsc#1033109, CVE-2017-7602 * libtiff/tif_getimage.c + add explicit uint32 cast in putagreytile to avoid UndefinedBehaviorSanitizer warning. Patch by Nicolas Pena. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2658, bsc#1033131, CVE-2017-7592 * libtiff/tif_read.c + TIFFReadBufferSetup(): use _TIFFcalloc() to zero initialize tif_rawdata. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2651, bsc#1033129, CVE-2017-7593 * libtiff/tiffio.h, tif_unix.c, tif_win32.c, tif_vms.c + add _TIFFcalloc() * libtiff/tif_luv.c, tif_lzw.c, tif_packbits.c + return 0 in Encode functions instead of -1 when TIFFFlushData1() fails. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2130 * libtiff/tif_ojpeg.c + fix leak in OJPEGReadHeaderInfoSecTablesQTable, OJPEGReadHeaderInfoSecTablesDcTable and OJPEGReadHeaderInfoSecTablesAcTable when read fails. Patch by Nicolas Pena. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2659, bsc#1033128, CVE-2017-7594 * libtiff/tif_jpeg.c + only run JPEGFixupTagsSubsampling() if the YCbCrSubsampling tag is not explicitly present. This helps a bit to reduce the I/O amount when the tag is present (especially on cloud hosted files). * libtiff/tif_lzw.c + in LZWPostEncode(), increase, if necessary, the code bit-width after flushing the remaining code and before emitting the EOI code. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=1982 * libtiff/tif_pixarlog.c + fix memory leak in error code path of PixarLogSetupDecode(). Patch by Nicolas Pena. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2665 * libtiff/tif_fax3.c, tif_predict.c, tif_getimage.c + fix GCC 7 -Wimplicit-fallthrough warnings. * libtiff/tif_dirread.c + fix memory leak in non DEFER_STRILE_LOAD mode (ie default) when there is both a StripOffsets and TileOffsets tag, or a StripByteCounts and TileByteCounts Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2689, bsc#1042805, CVE-2017-9403) * libtiff/tif_ojpeg.c + fix potential memory leak in OJPEGReadHeaderInfoSecTablesQTable, OJPEGReadHeaderInfoSecTablesDcTable and OJPEGReadHeaderInfoSecTablesAcTable Patch by Nicolas Pena. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2670 * libtiff/tif_fax3.c + avoid crash in Fax3Close() on empty file. Patch by Alan Coopersmith + complement by myself. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2673 * libtiff/tif_read.c + TIFFFillStrip(): add limitation to the number of bytes read in case td_stripbytecount[strip] is bigger than reasonable, so as to avoid excessive memory allocation. * libtiff/tif_zip.c, tif_pixarlog.c, tif_predict.c + fix memory leak when the underlying codec (ZIP, PixarLog) succeeds its setupdecode() method, but PredictorSetup fails. Credit to OSS-Fuzz (locally run, on GDAL) * libtiff/tif_read.c + TIFFFillStrip() and TIFFFillTile(): avoid excessive memory allocation in case of shorten files. Only effective on 64 bit builds and non-mapped cases. Credit to OSS-Fuzz (locally run, on GDAL) * libtiff/tif_read.c + TIFFFillStripPartial() / TIFFSeek(), avoid potential integer overflows with read_ahead in CHUNKY_STRIP_READ_SUPPORT mode. Should especially occur on 32 bit platforms. * libtiff/tif_read.c + TIFFFillStripPartial() + avoid excessive memory allocation in case of shorten files. Only effective on 64 bit builds. Credit to OSS-Fuzz (locally run, on GDAL) * libtiff/tif_read.c + update tif_rawcc in CHUNKY_STRIP_READ_SUPPORT mode with tif_rawdataloaded when calling TIFFStartStrip() or TIFFFillStripPartial(). This avoids reading beyond tif_rawdata when bytecount > tif_rawdatasize. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1545. Credit to OSS-Fuzz * libtiff/tif_color.c + avoid potential int32 overflow in TIFFYCbCrToRGBInit() Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1533 Credit to OSS-Fuzz * libtiff/tif_pixarlog.c, tif_luv.c + avoid potential int32 overflows in multiply_ms() and add_ms(). Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1558 Credit to OSS-Fuzz * libtiff/tif_packbits.c + fix out-of-buffer read in PackBitsDecode() Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1563 Credit to OSS-Fuzz * libtiff/tif_luv.c + LogL16InitState(): avoid excessive memory allocation when RowsPerStrip tag is missing. Credit to OSS-Fuzz (locally run, on GDAL) * libtiff/tif_lzw.c + update dec_bitsleft at beginning of LZWDecode(), and update tif_rawcc at end of LZWDecode(). This is needed to properly work with the latest chnges in tif_read.c in CHUNKY_STRIP_READ_SUPPORT mode. * libtiff/tif_pixarlog.c + PixarLogDecode(): resync tif_rawcp with next_in and tif_rawcc with avail_in at beginning and end of function, similarly to what is done in LZWDecode(). Likely needed so that it works properly with latest chnges in tif_read.c in CHUNKY_STRIP_READ_SUPPORT mode. But untested... * libtiff/tif_getimage.c + initYCbCrConversion(): add basic validation of luma and refBlackWhite coefficients (just check they are not NaN for now), to avoid potential float to int overflows. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1663 Credit to OSS Fuzz * libtiff/tif_read.c + _TIFFVSetField(): fix outside range cast of double to float. Credit to Google Autofuzz project * libtiff/tif_getimage.c + initYCbCrConversion(): check luma[1] is not zero to avoid division by zero. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1665 Credit to OSS Fuzz * libtiff/tif_read.c + _TIFFVSetField(): fix outside range cast of double to float. Credit to Google Autofuzz project * libtiff/tif_getimage.c + initYCbCrConversion(): check luma[1] is not zero to avoid division by zero. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1665 Credit to OSS Fuzz * libtiff/tif_getimage.c + initYCbCrConversion(): stricter validation for refBlackWhite coefficients values. To avoid invalid float->int32 conversion. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1718 Credit to OSS Fuzz * tools/fax2tiff.c (main) + Applied patch by Joerg Ahrens to fix passing client data for Win32 builds using tif_win32.c (USE_WIN32_FILEIO defined) for file I/O. Patch was provided via email on November 20, 2016. * tools/tiffcp.c + avoid uint32 underflow in cpDecodedStrips that can cause various issues, such as buffer overflows in the library. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2598 * tools/tiffcrop.c + fix readContigStripsIntoBuffer() in -i (ignore) mode so that the output buffer is correctly incremented to avoid write outside bounds. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2620 * tools/tiffcrop.c + add 3 extra bytes at end of strip buffer in readSeparateStripsIntoBuffer() to avoid read outside of heap allocated buffer. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2621 * tools/tiffcrop.c + fix integer division by zero when BitsPerSample is missing. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2619 * tools/tiffinfo.c + fix null pointer dereference in -r mode when the image has no StripByteCount tag. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2594 * tools/tiffcp.c + avoid potential division by zero is BitsPerSamples tag is missing. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2597 * tools/tif_dir.c + when TIFFGetField(, TIFFTAG_NUMBEROFINKS, ) is called, limit the return number of inks to SamplesPerPixel, so that code that parses ink names doesn't go past the end of the buffer. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2599 * tools/tiffcp.c + avoid potential division by zero is BitsPerSamples tag is missing. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2607 * tools/tiffcp.c + fix uint32 underflow/overflow that can cause heap-based buffer overflow. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2610 * tools/tiffcp.c + replace assert( (bps % 8) == 0 ) by a non assert check. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2605 * tools/tiff2ps.c + fix 2 heap-based buffer overflows (in PSDataBW and PSDataColorContig). Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2633 and http://bugzilla.maptools.org/show_bug.cgi?id=2634. * tools/tiff2pdf.c + prevent heap-based buffer overflow in -j mode on a paletted image. Note: this fix errors out before the overflow happens. There could probably be a better fix. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2635 * tools/tiff2pdf.c + fix wrong usage of memcpy() that can trigger unspecified behaviour. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2638 * tools/tiff2pdf.c + avoid potential invalid memory read in t2p_writeproc. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2639 * tools/tiff2pdf.c + avoid potential heap-based overflow in t2p_readwrite_pdf_image_tile(). Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2640 * tools/tiffcrop.c + remove extraneous TIFFClose() in error code path, that caused double free. Related to http://bugzilla.maptools.org/show_bug.cgi?id=2535 * tools/tiffcp.c + error out cleanly in cpContig2SeparateByRow and cpSeparate2ContigByRow if BitsPerSample != 8 to avoid heap based overflow. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2656 and http://bugzilla.maptools.org/show_bug.cgi?id=2657 * tools/raw2tiff.c + avoid integer division by zero. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2631 * tools/tiff2ps.c + call TIFFClose() in error code paths. * tools/fax2tiff.c + emit appropriate message if the input file is empty. Patch by Alan Coopersmith. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2672 * tools/tiff2bw.c + close TIFF handle in error code path. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2677 * Other issues fixed: + bsc#1042804, CVE-2017-9404 * CVE-2016-10092, CVE-2016-10093, CVE-2016-10094 [bsc#1017693] - Removed patches: * tiff-4.0.7-CVE-2015-7554.patch * tiff-4.0.7-CVE-2017-5225.patch * tiff-4.0.7-TIFFTAG_FAXRECVPARAMS.patch * tiff-CVE-2016-10266.patch * tiff-CVE-2016-10267.patch * tiff-CVE-2016-10268.patch * tiff-CVE-2016-10269.patch * tiff-CVE-2016-10270.patch * tiff-CVE-2016-10271.patch * tiff-CVE-2016-10272.patch + Fixed upstream- Added patches: * tiff-CVE-2016-10266.patch + Upstream fix for CVE-2016-10266, LibTIFF 4.0.7 allows remote attackers to cause a denial of service (divide-by-zero error and application crash) via a crafted TIFF image (bsc#1031263) * tiff-CVE-2016-10267.patch + Upstream fix for CVE-2016-10267, LibTIFF 4.0.7 allows remote attackers to cause a denial of service (divide-by-zero error and application crash) via a crafted TIFF image (bsc#1031262) * tiff-CVE-2016-10268.patch + Upstream fix for CVE-2016-10268, LibTIFF 4.0.7 allows remote attackers to cause a denial of service (divide-by-zero error and application crash) via a crafted TIFF image (bsc#1031255) * tiff-CVE-2016-10269.patch + Upstream fix for CVE-2016-10269, LibTIFF 4.0.7 allows remote attackers to cause a denial of service (heap-based buffer over-read) or possibly have unspecified other impact via a crafted TIFF image (bsc#1031254) * tiff-CVE-2016-10270.patch + Upstream fix for CVE-2016-10270, LibTIFF 4.0.7 allows remote attackers to cause a denial of service (heap-based buffer over-read) or possibly have unspecified other impact via a crafted TIFF image (bsc#1031250) * tiff-CVE-2016-10271.patch + Upstream fix for CVE-2016-10271, LibTIFF 4.0.7 allows remote attackers to cause a denial of service (heap-based buffer over-read and buffer overflow) or possibly have unspecified other impact via a crafted TIFF image (bsc#1031249) * tiff-CVE-2016-10272.patch + Upstream fix for CVE-2016-10272, LibTIFF 4.0.7 allows remote attackers to cause a denial of service (heap-based buffer overflow) or possibly have unspecified other impact via a crafted TIFF image (bsc#1031247)- Added patch: * tiff-4.0.7-TIFFTAG_FAXRECVPARAMS.patch - Fix a regression introduced in 4.0.7 (bsc#1022103) - http://bugzilla.maptools.org/show_bug.cgi?id=2636- Added patch: * tiff-4.0.7-CVE-2017-5225.patch - Upstream fix for CVE-2017-5225, bsc#1019611: heap buffer overflow in tools/tiffcp via a crafted BitsPerSample value- Drop --with-pic, this is only for static libs (which are not built) - Update descriptions- Update homepage- Upgrade to upstream release 4.0.7 * libtiff/tif_aux.c + Fix crash in TIFFVGetFieldDefaulted() when requesting Predictor tag and that the zip/lzw codec is not configured. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2591 * libtiff/tif_compress.c + Make TIFFNoDecode() return 0 to indicate an error and make upper level read routines treat it accordingly. (linked to the test case of http://bugzilla.maptools.org/show_bug.cgi?id=2517) * libtiff/tif_dir.c + Discard values of SMinSampleValue and SMaxSampleValue when they have been read and the value of SamplesPerPixel is changed afterwards (like when reading a OJPEG compressed image with a missing SamplesPerPixel tag, and whose photometric is RGB or YCbCr, forcing SamplesPerPixel being 3). Otherwise when rewriting the directory (for example with tiffset, we will expect 3 values whereas the array had been allocated with just one), thus causing a out of bound read access. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2500 (CVE-2014-8127, bsc#914890, duplicate: CVE-2016-3658, bsc#974840) * libtiff/tif_dirread.c + In TIFFFetchNormalTag(), do not dereference NULL pointer when values of tags with TIFF_SETGET_C16_ASCII/TIFF_SETGET_C32_ASCII access are 0-byte arrays. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2593 (regression introduced by previous fix done on 2016-11-11 for CVE-2016-9297, bsc#1010161). Assigned as CVE-2016-9448, bsc#1011103 + In TIFFFetchNormalTag(), make sure that values of tags with TIFF_SETGET_C16_ASCII/TIFF_SETGET_C32_ASCII access are null terminated, to avoid potential read outside buffer in _TIFFPrintField(). Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2590 (CVE-2016-9297, bsc#1010161) + Initialize doubledata at line 3693 to NULL to please MSVC 2013 + Prevent reading ColorMap or TransferFunction if BitsPerPixel > 24, so as to avoid huge memory allocation and file read attempts + Reject images with OJPEG compression that have no TileOffsets/StripOffsets tag, when OJPEG compression is disabled. Prevent null pointer dereference in TIFFReadRawStrip1() and other functions that expect td_stripbytecount to be non NULL. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2585 + When compiled with DEFER_STRILE_LOAD, fix regression, when reading a one-strip file without a StripByteCounts tag. + Workaround false positive warning of Clang Static Analyzer about null pointer dereference in TIFFCheckDirOffset(). * libtiff/tif_dirwrite.c + Avoid null pointer dereference on td_stripoffset when writing directory, if FIELD_STRIPOFFSETS was artificially set for a hack case in OJPEG case. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2500 (CVE-2014-8127, bsc#914890, duplicate: CVE-2016-3658, bsc#974840) + Fix truncation to 32 bit of file offsets in TIFFLinkDirectory() and TIFFWriteDirectorySec() when aligning directory offsets on an even offset (affects BigTIFF). * libtiff/tif_dumpmode.c + DumpModeEncode() should return 0 in case of failure so that the above mentionned functions detect the error. * libtiff/tif_fax3.c + remove dead assignment in Fax3PutEOLgdal(). * libtiff/tif_fax3.h + make Param member of TIFFFaxTabEnt structure a uint16 to reduce size of the binary. * libtiff/tif_getimage.c + Fix out-of-bound reads in TIFFRGBAImage interface in case of unsupported values of SamplesPerPixel/ExtraSamples for LogLUV/CIELab. Add explicit call to TIFFRGBAImageOK() in TIFFRGBAImageBegin(). Fix CVE-2015-8665 and CVE-2015-8683. + Fix some benign warnings which appear in 64-bit compilation under Microsoft Visual Studio of the form "Arithmetic overflow: 32-bit value is shifted, then cast to 64-bit value. Results might not be an expected value." + TIFFRGBAImageOK: Reject attempts to read floating point images. * libtiff/tif_luv.c + Fix potential out-of-bound writes in decode functions in non debug builds by replacing assert()s by regular if checks (http://bugzilla.maptools.org/show_bug.cgi?id=2522). Fix potential out-of-bound reads in case of short input data. + Validate that for COMPRESSION_SGILOG and PHOTOMETRIC_LOGL, there is only one sample per pixel. Avoid potential invalid memory write on corrupted/unexpected images when using the TIFFRGBAImageBegin() interface * libtiff/tif_next.c + Fix potential out-of-bound write in NeXTDecode() (http://bugzilla.maptools.org/show_bug.cgi?id=2508) * libtiff/tif_pixarlog.c + Avoid zlib error messages to pass a NULL string to %s formatter, which is undefined behaviour in sprintf(). + Fix out-of-bounds write vulnerabilities in heap allocated buffers. Reported as MSVR 35094. + Fix potential buffer write overrun in PixarLogDecode() on corrupted/unexpected images (CVE-2016-5875, bsc#987351) + Fix write buffer overflow in PixarLogEncode if more input samples are provided than expected by PixarLogSetupEncode. Idea based on libtiff-CVE-2016-3990.patch from libtiff-4.0.3-25.el7_2.src.rpm, but with different and simpler check. (http://bugzilla.maptools.org/show_bug.cgi?id=2544, bsc#975069) * libtiff/tif_predict.c + PredictorSetup: Enforce bits-per-sample requirements of floating point predictor (3). Fixes CVE-2016-3622 "Divide By Zero in the tiff2rgba tool." (bsc#974449) * libtiff/tif_predict.h, libtiff/tif_predict.c + Replace assertions by runtime checks to avoid assertions in debug mode, or buffer overflows in release mode. Can happen when dealing with unusual tile size like YCbCr with subsampling. Reported as MSVR 35105. * libtiff/tif_read.c + Fix out-of-bounds read on memory-mapped files in TIFFReadRawStrip1() and TIFFReadRawTile1() when stripoffset is beyond tmsize_t max value (bsc#990460, CVE-2016-6223) + Make TIFFReadEncodedStrip() and TIFFReadEncodedTile() directly use user provided buffer when no compression (and other conditions) to save a memcpy(). * libtiff/tif_strip.c + Make TIFFNumberOfStrips() return the td->td_nstrips value when it is non-zero, instead of recomputing it. This is needed in TIFF_STRIPCHOP mode where td_nstrips is modified. Fixes a read outsize of array in tiffsplit (or other utilities using TIFFNumberOfStrips()). Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2587 (CVE-2016-9273, bsc#1010163) * libtiff/tif_write.c + Fix issue in error code path of TIFFFlushData1() that didn't reset the tif_rawcc and tif_rawcp members. I'm not completely sure if that could happen in practice outside of the odd behaviour of t2p_seekproc() of tiff2pdf). The report points that a better fix could be to check the return value of TIFFFlushData1() in places where it isn't done currently, but it seems this patch is enough. Reported as MSVR 35095. + Make TIFFWriteEncodedStrip() and TIFFWriteEncodedTile() directly use user provided buffer when no compression to save a memcpy(). + TIFFWriteEncodedStrip() and TIFFWriteEncodedTile() should return -1 in case of failure of tif_encodestrip() as documented * tools/fax2tiff.D c + Fix segfault when specifying -r without argument. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2572 * tools/Makefile.am + The libtiff tools bmp2tiff, gif2tiff, ras2tiff, sgi2tiff, sgisv, and ycbcr are completely removed from the distribution. The libtiff tools rgb2ycbcr and thumbnail are only built in the build tree for testing. Old files are put in new 'archive' subdirectory of the source repository, but not in distribution archives. These changes are made in order to lessen the maintenance burden. * tools/rgb2ycbcr.c + Validate values of -v and -h parameters to avoid potential divide by zero. Fixes CVE-2016-3623, bsc#974618 (http://bugzilla.maptools.org/show_bug.cgi?id=2569) * tools/tiff2bw.c + Fix weight computation that could result of color value overflow (no security implication). Fix http://bugzilla.maptools.org/show_bug.cgi?id=2550. * tools/tiff2pdf.c + Avoid undefined behaviour related to overlapping of source and destination buffer in memcpy() call in t2p_sample_rgbaa_to_rgb() Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2577 + Fix out-of-bounds write vulnerabilities in heap allocate buffer in t2p_process_jpeg_strip(). Reported as MSVR 35098. + Fix potential integer overflows on 32 bit builds in t2p_read_tiff_size() Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2576 + Fix read -largely- outsize of buffer in t2p_readwrite_pdf_image_tile(), causing crash, when reading a JPEG compressed image with TIFFTAG_JPEGTABLES length being one. Reported as MSVR 35101. CVE-2016-9453, bsc#1011107 + Fix write buffer overflow of 2 bytes on JPEG compressed images. Reported as TALOS-CAN-0187, CVE-2016-5652, bsc#1007280. Also prevents writing 2 extra uninitialized bytes to the file stream. * tools/tiff2rgba.c + Fix integer overflow in size of allocated buffer, when -b mode is enabled, that could result in out-of-bounds write. Based initially on patch tiff-CVE-2016-3945.patch from libtiff-4.0.3-25.el7_2.src.rpm, with correction for invalid tests that rejected valid files. (http://bugzilla.maptools.org/show_bug.cgi?id=2545, bsc#974614) * tools/tiffcp.c + Fix out-of-bounds write on tiled images with odd tile width vs image width. Reported as MSVR 35103. (bsc#1011841, CVE-2016-9538) + Fix read of undefined variable in case of missing required tags. Found on test case of MSVR 35100. * tools/tiffcrop.c + Avoid access outside of stack allocated array on a tiled separate TIFF with more than 8 samples per pixel. (CVE-2016-5321, CVE-2016-5323, http://bugzilla.maptools.org/show_bug.cgi?id=2558, http://bugzilla.maptools.org/show_bug.cgi?id=2559, bsc#984813, bsc#984815) + Fix memory leak in (recent) error code path. Fixes Coverity 1394415. + Fix multiple uint32 overflows in writeBufferToSeparateStrips(), writeBufferToContigTiles() and writeBufferToSeparateTiles() that could cause heap buffer overflows. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2592 + Fix out-of-bound read of up to 3 bytes in readContigTilesIntoBuffer(). Reported as MSVR 35092. + Fix out-of-bounds write in loadImage(). From patch libtiff-CVE-2016-3991.patch from libtiff-4.0.3-25.el7_2.src.rpm (http://bugzilla.maptools.org/show_bug.cgi?id=2543, bsc#975070) + Fix read of undefined buffer in readContigStripsIntoBuffer() due to uint16 overflow. Reported as MSVR 35100. (bsc#1011841, CVE-2016-9538) + Fix various out-of-bounds write vulnerabilities in heap or stack allocated buffers. Reported as MSVR 35093, MSVR 35096 and MSVR 35097. + readContigTilesIntoBuffer: Fix signed/unsigned comparison warning. * tools/tiffdump.c + Fix a few misaligned 64-bit reads warned by -fsanitize + ReadDirectory: Remove uint32 cast to_TIFFmalloc() argument which resulted in Coverity report. Added more mutiplication overflow checks * tools/tiffinfo.c + Fix out-of-bound read on some tiled images. (http://bugzilla.maptools.org/show_bug.cgi?id=2517) + TIFFReadContigTileData: Fix signed/unsigned comparison warning. + TIFFReadSeparateTileData: Fix signed/unsigned comparison warning. - Removed patches: * tiff-4.0.4-uninitialized_mem_NeXTDecode.patch * tiff-4.0.6-CVE-2015-8782.patch * tiff-4.0.6-CVE-2016-3186.patch * tiff-4.0.6-CVE-2016-3623.patch * tiff-4.0.6-CVE-2016-3945.patch * tiff-4.0.6-CVE-2016-3990.patch * tiff-4.0.6-CVE-2016-3991.patch * tiff-4.0.6-libtiff-tif_getimage.c-TIFFRGBAImageOK-Reject-attemp.patch * tiff-4.0.6-libtiff-tif_luv.c-validate-that-for-COMPRESSION_SGIL.patch * tiff-4.0.6-libtiff-tif_pixarlog.c-fix-potential-buffer-write-ov.patch * tiff-4.0.6-libtiff-tif_read.c-make-TIFFReadEncodedStrip-and.patch * tiff-4.0.6-tools-tiffcrop.c-fix-various-out-of-bounds-write-vul.patch - Fixed in the upsteam release - Changed patch: * tiff-4.0.6-CVE-2015-7554.patch -> tiff-4.0.7-CVE-2015-7554.patch - Rediffed to the changed context- Added patches: * tiff-4.0.6-tools-tiffcrop.c-fix-various-out-of-bounds-write-vul.patch - Upstream fixes for MSVR 35093, MSVR 35094, MSVR 35095, MSVR 35096, MSVR 35097, MSVR 35098. * tiff-4.0.6-libtiff-tif_getimage.c-TIFFRGBAImageOK-Reject-attemp.patch - Enforce bits-per-sample requirements of floating point predictor. Fixes CVE-2016-3622 [bsc#974449]- Added patches: * tiff-4.0.6-CVE-2016-3623.patch * tiff-4.0.6-CVE-2016-3945.patch * tiff-4.0.6-CVE-2016-3990.patch * tiff-4.0.6-CVE-2016-3991.patch - Upstream commits to fix CVE-2016-3623 [bsc#974618], CVE-2016-3945 [bsc#974614], CVE-2016-3990 [bsc#975069], CVE-2016-3991 [bsc#975070]- Added patches: * tiff-4.0.6-libtiff-tif_luv.c-validate-that-for-COMPRESSION_SGIL.patch * tiff-4.0.6-libtiff-tif_pixarlog.c-fix-potential-buffer-write-ov.patch * tiff-4.0.6-libtiff-tif_read.c-make-TIFFReadEncodedStrip-and.patch - Upstream commits to fix CVE-2016-5314 [bsc#984831], CVE-2016-5316 [bsc#984837], CVE-2016-5317 [bsc#984842], CVE-2016-5320 [bsc#984808] and CVE-2016-5875 [bsc#987351]- Added patch: * tiff-4.0.6-CVE-2016-3186.patch - fix CVE-2016-3186: buffer overflow in gif2tiff [bsc#973340]- Added patch: * tiff-4.0.6-CVE-2015-8782.patch - fix CVE-2015-8781, CVE-2015-8782, CVE-2015-8783: Out-of-bounds writes for invalid images (upstream bug #2522) [bsc#964225]- Added patch: * tiff-4.0.6-CVE-2015-7554.patch - fix CVE-2015-7554: Out-of-bounds Write in the thumbnail and tiffcmp tools (upsteam bug #2499) [bsc#960341]- Added patch: * tiff-4.0.4-uninitialized_mem_NeXTDecode.patch - fix uninitialized memory in NeXTDecode (upstream bug #2508) [bsc#942690]- Update to version 4.0.6 * Supports CMake 2.8.9 and later. * Add missing file which wasn't being distributed, causing unit tests to fail. * Make shared/static library building configurable. * CMake reads all version information directly from configure.ac to avoid duplication of values. * CMake builds are now included in 'distcheck' target. * Autotools 'make distcheck' now tests the CMake-based build if CMake is available. * Fixes to avoid undefined behaviour of signed types (C standard compliance). * Fixes to avoid possible isses when casting to unsigned char. * Fixes to avoid undefined behaviour with shifts. * Fix generation of output with 16 bit or 32 bit integer, when byte swapping is needed, in horizontal predictor (#2521). * Fix decoding when there is a single pixel to decode (unlikely case...) and byte swapping is involved. * Add add explicit masking with 0xff before casting to uchar in floating-point horizontal differencing and accumulation routines. * Eliminate requirement for and use of 64-bit constant values. * tiffgt : Silence glut API deprecation warnings on MacOS X. * fax2ps : Detect failure to write to temporary file. - Changes from version 4.0.5 * Support for configure/build using CMake. * Support for large (> 2GB) files under Microsoft Windows. * Configuration and building using CMake is now supported under Microsoft Windows and on Unix-type systems. * Test for and use fseeko() if it is available. This allows supporting large files on Unix-type systems with a 32-bit 'long' type and a 64-bit 'off_t' type. * tiffiop.h: Macros added to use 64-bit equivalents for all standard I/O and POSIX APIs used by libtiff and its tools which are limited to 2GB in Windows builds. Note that these 64-bit equivalents were introduced by the CRT provided with Visual Studio 2005 and if the necessary CRT is not installed on the target computer, the program will not run. The wrapper macros will not be activated unless the definition _MSC_VER is at least 1400 or __MSVCRT_VERSION__ is at least 0x800. * tif_unix.c: Updated to support large files under Microsoft Windows. This makes tif_unix.c a completely viable candidate for use under Windows (in spite of its name) if the CRT is modern enough. Please note that tif_win32.c already supported large files, but only 'tiffinfo' and 'tiffdump' made any provision to support large files under Windows. * _tiffReadProc() and _tiffWriteProc() are modified to chunk I/O to a maximum size of 2GB for extremely large I/O requests. This surmounts limitations in the Microsoft Windows read() and write() APIs (which are limited to the range of a 32-bit 'int'), and may avoid poor behavior with extremely large I/O requests on other systems. * Updated to use I/O wrapper macros from tiffiop.h in order to support large files under Microsoft Windows.- use spec-cleaner- update to 4.0.4 D tiff-4.0.3-double-free.patch D tiff-handle-TIFFTAG_CONSECUTIVEBADFAXLINES.patch D tiff-4.0.3-CVE-2013-1961.patch D erouault.2862.patch D bfriesen.2805.patch D tiff-4.0.3-CVE-2013-4232.patch D tiff-4.0.3-CVE-2013-4244.patch D erouault.2861.patch D erouault.2857.patch D erouault.2856.patch D erouault.2859.patch D tiff-4.0.3-CVE-2012-4564.patch D tiff-4.0.3-tiff2pdf-colors.patch D erouault.2876.patch D erouault.2860.patch D tiff-dither-malloc-check.patch D tiff-4.0.3-CVE-2013-1960.patch D erouault.2858.patch D tiff-handle-TIFFTAG_PREDICTOR.patch D tiff-4.0.3-CVE-2013-4231.patch D tiff-4.0.3-CVE-2013-4243.patch D erouault.2863.patch D tiff-4.0.3-test-jpeg-turbo.patch- security update: CVE-2014-9655, CVE-2014-8127, CVE-2014-8128, CVE-2014-8129, CVE-2014-8130, CVE-2015-1547 bnc#914890, bnc#916925, bnc#916927 + erouault.2856.patch + erouault.2857.patch + erouault.2858.patch + erouault.2859.patch + erouault.2860.patch + erouault.2861.patch + erouault.2862.patch + erouault.2863.patch + erouault.2876.patch + bfriesen.2805.patch + tiff-handle-TIFFTAG_CONSECUTIVEBADFAXLINES.patch + tiff-handle-TIFFTAG_PREDICTOR.patch + tiff-dither-malloc-check.patch- build with PIEsheep62 1669725779  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~4.0.9-150000.45.22.14.0.9-150000.45.22.1fax2psfax2tiffpal2rgbppm2tiffraw2tifftiff2bwtiff2pdftiff2pstiff2rgbatiffcmptiffcptiffcroptiffdithertiffdumptiffinfotiffmediantiffsettiffsplittiffCOPYRIGHTChangeLogREADMERELEASE-DATETODOVERSIONhtmlCMakeLists.txtTIFFTechNote2.htmladdingtags.htmlbugs.htmlbuild.htmlcontrib.htmldocument.htmlimagesimages.htmlCMakeLists.txtback.gifbali.jpgcat.gifcover.jpgcramps.gifdave.gifinfo.gifjello.jpgjim.gifnote.gifoxford.gifquad.jpgring.gifsmallliz.jpgstrike.gifwarning.gifindex.htmlinternals.htmlintro.htmllibtiff.htmlmanCMakeLists.txtHtmlDoc.cmakeTIFFClose.3tiff.htmlTIFFDataWidth.3tiff.htmlTIFFError.3tiff.htmlTIFFFieldDataType.3tiff.htmlTIFFFieldName.3tiff.htmlTIFFFieldPassCount.3tiff.htmlTIFFFieldReadCount.3tiff.htmlTIFFFieldTag.3tiff.htmlTIFFFieldWriteCount.3tiff.htmlTIFFFlush.3tiff.htmlTIFFGetField.3tiff.htmlTIFFOpen.3tiff.htmlTIFFPrintDirectory.3tiff.htmlTIFFRGBAImage.3tiff.htmlTIFFReadDirectory.3tiff.htmlTIFFReadEncodedStrip.3tiff.htmlTIFFReadEncodedTile.3tiff.htmlTIFFReadRGBAImage.3tiff.htmlTIFFReadRGBAStrip.3tiff.htmlTIFFReadRGBATile.3tiff.htmlTIFFReadRawStrip.3tiff.htmlTIFFReadRawTile.3tiff.htmlTIFFReadScanline.3tiff.htmlTIFFReadTile.3tiff.htmlTIFFSetDirectory.3tiff.htmlTIFFSetField.3tiff.htmlTIFFWarning.3tiff.htmlTIFFWriteDirectory.3tiff.htmlTIFFWriteEncodedStrip.3tiff.htmlTIFFWriteEncodedTile.3tiff.htmlTIFFWriteRawStrip.3tiff.htmlTIFFWriteRawTile.3tiff.htmlTIFFWriteScanline.3tiff.htmlTIFFWriteTile.3tiff.htmlTIFFbuffer.3tiff.htmlTIFFcodec.3tiff.htmlTIFFcolor.3tiff.htmlTIFFmemory.3tiff.htmlTIFFquery.3tiff.htmlTIFFsize.3tiff.htmlTIFFstrip.3tiff.htmlTIFFswab.3tiff.htmlTIFFtile.3tiff.htmlfax2ps.1.htmlfax2tiff.1.htmlindex.htmllibtiff.3tiff.htmlpal2rgb.1.htmlppm2tiff.1.htmlraw2tiff.1.htmltiff2bw.1.htmltiff2pdf.1.htmltiff2ps.1.htmltiff2rgba.1.htmltiffcmp.1.htmltiffcp.1.htmltiffcrop.1.htmltiffdither.1.htmltiffdump.1.htmltiffgt.1.htmltiffinfo.1.htmltiffmedian.1.htmltiffset.1.htmltiffsplit.1.htmlmisc.htmlsupport.htmltools.htmlv3.4beta007.htmlv3.4beta016.htmlv3.4beta018.htmlv3.4beta024.htmlv3.4beta028.htmlv3.4beta029.htmlv3.4beta031.htmlv3.4beta032.htmlv3.4beta033.htmlv3.4beta034.htmlv3.4beta035.htmlv3.4beta036.htmlv3.5.1.htmlv3.5.2.htmlv3.5.3.htmlv3.5.4.htmlv3.5.5.htmlv3.5.6-beta.htmlv3.5.7.htmlv3.6.0.htmlv3.6.1.htmlv3.7.0.htmlv3.7.0alpha.htmlv3.7.0beta.htmlv3.7.0beta2.htmlv3.7.1.htmlv3.7.2.htmlv3.7.3.htmlv3.7.4.htmlv3.8.0.htmlv3.8.1.htmlv3.8.2.htmlv3.9.0beta.htmlv3.9.1.htmlv3.9.2.htmlv4.0.0.htmlv4.0.1.htmlv4.0.2.htmlv4.0.3.htmlv4.0.4.htmlv4.0.4beta.htmlv4.0.5.htmlv4.0.6.htmlv4.0.7.htmlv4.0.8.htmlv4.0.9.htmlfax2ps.1.gzfax2tiff.1.gzpal2rgb.1.gzppm2tiff.1.gzraw2tiff.1.gztiff2bw.1.gztiff2pdf.1.gztiff2ps.1.gztiff2rgba.1.gztiffcmp.1.gztiffcp.1.gztiffcrop.1.gztiffdither.1.gztiffdump.1.gztiffgt.1.gztiffinfo.1.gztiffmedian.1.gztiffset.1.gztiffsplit.1.gz/usr/bin//usr/share/doc/packages//usr/share/doc/packages/tiff//usr/share/doc/packages/tiff/html//usr/share/doc/packages/tiff/html/images//usr/share/doc/packages/tiff/html/man//usr/share/man/man1/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:26987/SUSE_SLE-15_Update/62d0bccd7ad72934a20a3edfaca139a0-tiff.SUSE_SLE-15_Updatedrpmxz5x86_64-suse-linux  !"#$%&&&'''''''''''''''''''ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=f826885da18e3337ee66ed08fe48f57abdb0b8cd, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=c84638e861f360b4029a6a3129bf8960d7c3f72f, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=3718a7f4dd07dbb4b0bdf0b277cda9200dd6f329, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=98fb984c934781dfd04013b3f5ef0e3c8acd05bf, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=fd45d1f50992539a8ca57a8125cf6cb1a047c045, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=5f7a1c00aeb46a6b01dc44108a8fdf06d7a92ede, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=22cb9ce65eb06f1505dc049c8048bfe2c4276b66, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=347ba62857efd8064b8c72dad4ce702e59338482, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=0edb11620ae8747a14fd86f47ac852d1188a7cde, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=ce48b89045d7801af7ef2673dd6821064cb71cbf, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=d42ec02b7788df955e58a7b100bb7ae5a8172722, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=8a441f912c49d075e9a22efdb7cc15ca8774ad99, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=ba1652be0084f04159814e1800a3c44c5feeeacc, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=7283fc966eb218d61b9d39888abf8f032a3e3427, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=f833db9f83f05221b7940338eb3eb45285380db7, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=8b0f802579e7efb35fe97087989726e364d433b3, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=09f84376ad1692fce23fdf5f1238f3307af735a0, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=96937c172e275fd02c4dc434cc19aedead789efe, for GNU/Linux 3.2.0, strippeddirectoryASCII textUTF-8 Unicode textHTML document, ASCII textGIF image data, version 87a, 20 x 20JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 158x107, frames 3GIF image data, version 89a, 113 x 146JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 147x147, frames 3GIF image data, version 89a, 159 x 203GIF image data, version 89a, 107 x 148GIF image data, version 89a, 32 x 32JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, comment: "CREATOR: XV Version 3.09 Rev: 8/13/94 Quality = 75, Smoothing = 0", baseline, precision 8, 256x192, frames 3GIF image data, version 89a, 139 x 170GIF image data, version 87a, 32 x 32GIF image data, version 89a, 296 x 120JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 192x144, frames 3GIF image data, version 89a, 124 x 124JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 128x128, frames 3GIF image data, version 89a, 128 x 100GIF image data, version 89a, 40 x 40HTML document, UTF-8 Unicode texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)  &,38=CJOUZ_c RRRR RRRRR RRRRRR RRRRRRR RRRRRRRR RRRRRRR RRRRRR RRRRRR RRRRRR RRRRR RRRRRR RRRRRRR RRRRR RRRRRR RRRRR RRRRR RRRR RRRRR RMu$(T:^Z=7|utf-875705ef6ecf947868264dc639c453b304b3d5f78c97bbd4aa6ca907c051de656? 7zXZ !t/or]"k%Hk+%Yv[#GA1hd+x;tBGAS Oi:kd(nklgOC/ۗ/ Mcsph/r)Rm$vV@/8@2(fxnwZ\gBQVfLr $+ݥ2ʎ!Kw4ۛe ιxFfz}6ںmlFX}fFxNGenMk9kzRM&Y{L=np.F,|"\F^k2-rbKsĢy]gcD&cAkq5Ƌ% r 5@H՘J)"Jh$εkv;!ʊRΪ6g5|);WuE"dOq1ڟ,d! \wU|URS6qINDk;V_gDnQ@s>Xv4XۤK6%{븍aRLEδ= PX?)CrX ܻ`?6 3w;NyVo;U3^BKe{m*YQzHwwďHcs@jJ1D*{Uy)H ݐQ xDSš/au`F$n몌q`l+;IS"]ҽ>LƲy02Q/Wc1ӿrfA3%Ǚf0ϛp%Cp'NZjy_N3-}AN*.F1(:mʂP|yjS]dH%HpD'Saq+Ԍ_n 䥡ToAT 5JƝ 0 q7vјwO铄 BꡍO9tG3 >1|TZy3fyxy{njќ>8_I`,]J  =ŁIQ4bdNMul{o ՙ7M0$Ru]zYIs'9[p mBS))C1q@C/9H5WQ.ok~OP {(QHHeX !3j}UY7Nn/I ԽɦBʛc>W[ag]**SnvՕ4EՑ,F];lr;IՃ@oA%qj4 [\>m->#374xn1=i+ϗ֠)Iz@ [_HCb!`VeaP٩D Qr6}@$Xjv #P0a/'R'}+k^{ș$ c?_# -5*5}]yf&yq%]S`԰k}ؑw|?ߙr!uWBF둮(_*5@UH"^a\ ;:X~cxT0$t6=\Xf>_7P,St^GI?v7ų^e9Nѳۺ  \&mS7y9EZX?6ͭЇdZDn)sҗ~$Lb@C󮘄-xptէ \, dZѥ˭eCl< |U qL?++t!) BHooz*ڷ31:)}mLHۖ+,3 soX&H̒>0}NY!\{>(?$ptkTQZ-MƎp7"d[);34ֺ_m('?Z- h,o8šC١$BKlMyPyF?UdmҪkJ^:('cwZO ]&om~ُRuyy>V'#q9؞N[e-sq.W=Ubra0BrM0+kX_V /;!gj׭NQȼ:x GrYWl2ly⟧b&ƿVx`dVW:{gV8Pc+\?e.Q1ߙ݌+T> {@/vܿu8ϧ/QWz|Q_V$D46əv{tn\qQj`ws^ط kchLX^r W &(g\KoŶ"D ۄt|;`ji^"i.ޚaX%#R96 jif5"C͂Jy;4yـwaL K Gv2hq =5lo rm~Rݣ[[ejC0vW< 5'|#e{/PfP;_y`VY: - q%ʎ!SPۼ{G?? %!Gl! j[YbZ1$pa q;˦dK)8H64FW_}΁^FjDC CI—q Z wۀ*m:ħ}݀:SDj0[d`5>)#ܜQ~Y W|i%Y3GGq*l W-NG{tLr\@?@#+ն@V*:ZĚBA~r*@A8&/鞬#JF!ѽt9R'#=7N46{6ҍrǵg !HΨzv;R)MAR:4o喙"tcUaqBl^1cc3TiK&]5&5ܴ^,|}{vcWBѤ9G riDMz<vWLJퟋgƠ0\^5UYz &J?8`b# b"h1碉6KfJa4 Ay)@SZq%֯Pd돝]L*@2Ioh/Csq43|mٺ+;5R7$XeǕ"Ă:q.|p!OZ;xH@LtʣUI(q Ҵ+|{OD0:~nh fd4!tE'U%BpeRp^S=5GI~#M+ 3o̰{G ?+Ma%EOFvb㱀zs@yr74<4&P-kfĿG(u V1gHPATywMDpՀkb^e"|Nc9 EHŸܩ{. $ݫ94R7Jil7XHSewwgq[XBuaWR+/Y7T%sꊈDBs|z`A W\F:.pzH~>ӿL)Cr9xT7bCwXQl1%>{o,Y`eACkC @Yls땈ZgKs"Ib6ෟ'v^dȯVs&#)bP\ &rP 'n3} b:hTXc;?~l99Fx]ό<ΦeCK,!-(e6;VR8 PU$Ym/7ȂH+aUHkRry:NsW BKR7Jӑ 6܏^j fmUl]+qΣs"؜3l R5ϐ&,Av+RD9Q~?4d?T2Yy뗇9 V~sF/5y_ (\r>.KwK}!Ċꆢ;(qMeYOv1t):b ?~2%j|*L Z"*H:PG<(vjzЃG]D)WMbc`Q'"_0!KQqRχk)Ԫequy8|w J4 3y Hp0&>%?9W)#.DꀖB` b\9nޗא& !]?jMJ3G63Ѹcoi]%W?K]*'Ci1޺vI{\t3<oœS4Fܖ(ɸü%R- VE&67K8WiQ(]Ҏ NT0tuyVZ*K0$[ ~m!?sPt-fDZ9y|\UӀg!2SwO&bJSڢs~isr%=+ѷ2:Zh ,ΘL_3&z5r]jzgg-SUd9#F|UGkEPsn[vkʠrgCҾLE% St03'{PF.t;ndohQK"F$aS !4Q$̤.yBʽɰݣ}XǨe zC| p}c8&#"+w~j:@SOs`rT*v״%`.i pPg):+Qk ƨ 4P Ŕ;}C#!F3m8>keUųi.`FD|gu3yڗA8 M%]l3dib{ڵyB]aYZ[<*7_9j3Uݖ&x**](),$DPUC00ߴ=H, 89r Co|0K0(A=D NXx1! ~"dE39ץ㼹T#5%iI K~X+pJ{q˗c;-{>%pHv3E:|8X21x(,w3Y6ȉO:[!힦aw|vkP8 hp.W6ݫs 9&j:Zee 9.1hYkPvcD{w>֧ߩ }6% } @tF|9>.WW6Hv 6§vV }=V^5C#P]AؑT:r9`B,MP{ï07#{PaF{3C{iRn}}Si"!.k=-ŝv{!n2Kx ^ދuQI%J7ͣdiʥn.Xڎ̔Ò~rB!(~{}ɩoB%Cs=Qx֟]E~ٷ gVbnMR8A&иPV%Eݵ4_}=%h@ lbk#2ϷPߕ}^4"BTkYGC?B8M@ݝkG0" *ߋ{gwH184"O>upJmhk{qF&)C;0Qg$Jwrg}䫐Qk iS?ɢ'LA#U|#qu.v˖LZ 0YhJ% X# 8.d-ҞnYd`V\5v6 ]XUu})b^,tph!VN=tŏc4L}N]8qɯҦXK /1.aRp>K3@L8) TH0Y̟X4eJy`lSKf1&o8Ugft"+#`:vT5>P9O]n.'6@kJr%n"h/R.#LrL2haEF+9#FZ(Heo1pD"&Vv?J߷l|vpho2R*,6;BelC4PS[ca*x_5ko_3UrQj9 ;ET\rOcw.~x;琨y0-ePid93-Zz/PS⫄kQ0m~ېAZl[2Nvik]FeQ2hǑD)ˆ:p9M+nbVb3O1O_̲2)_#dB|͝2 w\㡣!|mD- %+Ls} @ 5ҝߤݮ\3+-xy"mZqi2A1DŽb{u+q:TüO3U nsS$~R0rōˇ˿}W/bw `yy^oL]Se/y?2U7q#'^c=OBn0$^o,e*oꐶ|=㠣7 S0X7RѲ3V,&:m$I^Zh {: -ۄ,,#tBpk~̴! 0N@?VwU.)g82=aŃ.np\<_ TSgǼ52/Msϛ@7I[]-PUst 6?:z0sODغ3XgmˉS 歆ccO(eSTtznJ:N%O3>pI~ojt3p =F` 5՟k/Jل ^oz1eYBZJ{n=9 j?!(q{}_,Z w&u>4QgƂ\W@{B!,;9eɏ,@JT4d83Ck8  x]jNmCUI Y u }_Ǐc@Bi58j~u?[JFEUB+hOZ\س$O|ZH?= Bjj`_~7y,ytZnÊNd_׻U\O?L'#s0+[W4gOr@ e aXWR3*oveSz{x!f6{ގݢͶu'7TPOtN*9ف B7"+o`l5j$BMl;RP9!4|⏣곞/>bYL>y4$оtBԨE"EuYΜ,<F#ATp>^6Qﴍ/FRay)b,g :VxӂثeY$+EeZy?4l9Sנe6&O4zͿ@4uri1%5WIJto@P+F:A"lVDaZ5=JCrwu+WݰXc-iQo$Ŷ>%g|{/ )[e|9Um(*Fbux?=2 ?*IN+.:.Xu!Z_)cӦ۲܈*wli!,[T`Kz㈺,~Z,$]d W&NR\bEMk&fi]BηAP'(GN8i#/tuG(mk2?6"5!q8?*S4" _jLW1I^rD55:\s[}<3r7&H!."7c'H^_>pY>Xa]x<subVRZ O3w${ bltNuUZa'lA#}%@@N,y>[~t3# AazYfSci:G :P@p.J>췂W'!<q%vf\6e[̨wAn ix3:+{t娕&Wb'ґOƌvT"^޼ż,JΥD!UsX ]" :Uk,3?pzBK C DN#k[v Z m.*vV9 (%E2o<Sǁʨ_,_$|S *e|,nl 8YyoX&2xP @dgkx&Kd97{L+Flfd*!,i%_^Jbcw,h6;ScrŬD pb'-L#)Rs e2OԘ'I}*T ({ShLG[c%Bˬn-f/pYeۀATs)R !b%@͛b 3f H.;⟵ 9ܝ|17PG .CG}V1&RvN"~5q(#Ńs&Ĝz[G<T(xBqg7| xY+"EBH՗l~@qX@s..N; l~D0|f,nleMv{vAC_/U~gob7O^Oȏ@$fDynz` ؉WM|Ζ[% 8$_i)O0)!0 _:bֺn7)Ǩ3sĬI`Rt˖<?{VW>3WJHQJNWE R|XѳM$ISaHqUBն?dXXUӤ~x!NPlO^>w 'wbgp i!;">?qO}p)[=M@7rUyOb:a!j|gc(Z7GedҰR"]/.UF~ScVEc[w7n_Y1ܗĔa5P!2mYбTfkuQ͊nDhm'_KX+ Jҕb}\&$zAu+>ТѦdH;0u 8{ͱ|E?T^q,laG뤅?tKIec?XU>Nd׎],]kn7qt.*5ڕ>P "X;5qz$]*z 8ǭG{|/Yru{,`5X_ tLaq`!>u%fڝ""bP K譈n5 %8eL4H\YZmFlce>Cr|c&MpbZ^3>uMw`qne5b}UПY(A=8:*]G ɇkd@҃o`$ tѭBY8-'ACLjqxJߦjDFw׈&CO4ApB~X52p̂ӚMq|Q8]J̀#[v$#dȆoKLPܵ#P~TxԺ%Tʀd1 /ptf ,-d/ :5jbr]" ^cA7S2dzcraIl$&|ɥߤ=&TnV+h>̱µs$HG:kĵ^X Oq |jkq1&Y` V`%Y9JřT]=uO'];4E8::+o֜ R ЉKR;AkL|uԺLaRby鱗e~Wiw'Q竽*8NTNPJyu E#82\Eo%5I#@ FUu&[UF:zN 9dV:豮$0Vʷ -Ui򃷧핇䝪be̅rjS`!WJ 狾ObHLNgY퐡`&YC +겿ѧDpy@ˆ#΀#aQQRfXzUHxY:+{ dqJ6TDV][ۦ& e H}RgV|bX >kkRqn_щ3̉ # ˝*u%eߊNqZ$)W(^w 淵1xX0ui%Paii E@lLL(_Sh-ECnm I.?)4z̒~ E'>A%gķbVߕ }j",7r4ƔPp">u>N{Ȑ-Uvb̊X?кIӍe:qfo>[F,*?$e[F2ȑ dkT)aN_q^y9'(3~ H s)otD7ҏ{~JkYw^0_2\ʴyCS fo7x (6F?P1i DT9†%P(ߜDU]ɚH[CmA8㭹wI[_ NJZK R pp4^nq+h@X雍-Z}1\_!r@xL@y@k_W};Ui˔~-ކO$aVko *ȒX1*ͺ,so-5 dMuIb~KVNTߤ-4йe}NR-ũA/tp up e6 X̤zH6cca&gFtRE) x3읢dC#vFixi3^{:&7 K&D !k Z RzJ,: (Յ301w#Vh9^t z Լgu^+KׅޞZz`?#فR狟l!.yC5Ȑ$TaLh""d]l^7%S>BѰ% J}b>˃#ҮBbY$ݞNmF}z/o{mrS c>0J4ÖOSGa< h*U?}@٠j3>v˂70aRxOmzsg VIHiI ygW`!//[^XyUV削2R8+Rdл:Кl&B $˯d,s"n((~TO/?08';-vHx؂db>UwuғJGK6V`aXCBoӞXd׋ sEwUUּCoŝ)I ]Ϫ ڍT  UډdNG )'Qb+cKYgP2-I` ڎl*+b7&uS Dci ;W:CtED 8Dh=q TT\oNvp]Zlp]OEʔcr*/^.keXM-'Y"xpx'c,e`βF\TUG)86?r+~%6؏ ZwhoϵvY Bx0H'l麴/)K,6E7+xM5T:ͪG;ʧx8GYЋrTrg*X@P<4ƴN1uJ b kRbh2S }v qlCWh[Px'tr=8X:b,r%{BĔ/_C=M=9fd[1iٳ !8Uۧ=\OU/`PG-*?z/i2 t@y"ou = 0=Ɣ= _qc;s'H/y]B$v1D5#HGwO8^'ލuUĦ}1eʈ%Mb-]qVR]͓R'QBx KL]@S-(CP6#pe'W4HWFgyc Eg}3oHJp"O$RRy!ݶV14k$\ Y;<#G锱ǽG&@`AY%YU}q K! "[}}) Fzqvՙ_6FX-.Ԭ+oZh<"%G-j^9`Q >IgQPConk# hAHH۝w2B@]:Hg4C=߶#QQ#Qs}^7(>v ?M@a|k}ya(}!8.=k&'On.~ҐȦl~K+!eGbE1wD_nm>ntΨR{U'tzKB+5em5 gK7Bߎ#:|KfAȪnN5m:M;ĘJPiL("%d <+{㍁=4,j ̓o|;z%d8 E̷'EeX{Q;>U)'9ɶƭUYgv1*}#ڳzPNw rcJ-<5XF+B}8.GJ _qٴ3Ǝ "/,Bz|{2FPë Y9ƫڒ_ϮbHn?AUf,x\5c4lGiQcPP65ZOQkPF$B?xUh oBFL>iǭ +Pr'F#'# {N{#NG7llt`dэh`e8|eNany^Jԩ h7 ;fHA+ d&+[d: @e柹p>sD=n:>&O7W*15NE*KWpJ+'O>PQN8,{ ±fEð> 'Ujf`92 YĈp!}:掮~]\o-c8oEl'Xڻ S/1nbp1(P*gϪ-K(mRY3wX;b.~>Sc6i=[̀"(H[| Qޭ>pj MP9G"-?QX!_99 LO#i 89Aags-[z- %P# ;|h̍|gEb]̠)ʜ,AEu3)n7LÓhSvf~S`y ܻk!U?2ce109G}1/Ioqt %ړt(Jr7~<#9v$ iT Qr"ųf0׀E>'}IyCy#n䴟ֻ2%4EϮF{u;0IR\\ ?eh?dH[V]'ÁeЭK N1!|1P{DZq2 r^[K ߽WHH.C"rJF[# 5fAtT& )mfjPNǨ!lt—oNHх>п",vylc{oY) uC&[Q/z3'e+ck9f+;.Y>INs?|jk,ф0i[uq굝Oxٔ9e=ًr+3+]? ݹO.sPЧb'(H0cX>jBHo8QKIcft v¤$ SHouAZk[L|8u/!s ch5rň|l9:Q}+_)0څG'):ޣ%ُ{O:mQUSfz\j!=#03Hv-;4I؎ؗ]`NOa; ^ nY5>b<h,=TVR& цǨVs( kދVAG?oGM֑3Gwe*Ej$U%WTVVt/(Ao)55kd.+"i3X_B]Se;ѸrfO/]YH`VMi` 7~"Wcp -hmj4c.bS:Ky~C#R-.q'y7D +tBt9Yq'Bb[-TC=0a,6|Nz_YZSO۳ ~fdVnя3F%BPfQ⠊ڴʱz`YZ6aH~m\#R-*<ʎї\E/,3ѹ^#Z.$TGbcG̷5RW\p %Y[}bi'ˍĝQΘYX},y?𤤛\OX枉my^yKٞ盾͇WnAvݞ$ш֏$= e6OuLbJQ0 1Sh R jP]萷QxpynzXxʗe4w@6h-ه Bp^Cóq}cy`lgTX5Or{ :,!$`baV-`Taz;̪#{'+zASM/pZ)1Τ,Hk~<%o ?JV$Ű(5aw=ҁ=p:ǎM3w6N)*i9xsڍRycj 41#EZ@LX,RoA7]fd-GA~i{߬pwV2k0Gqւ_fx8BҶy3Ϧh P]D‚Js7MҲQ1UD~虺.؉PV#`Kd]fM /(&<=؉qɣ/D@aHM,N7W.#Gx֤/%.:e 8 1@³JY` -DŽ(' -`Ftٽ:)m'YyS)Y3= Aq݃J(H䦿\q#el'ږ]Nb׺+zW#&&L8?uK""kPyi)ы$BFZOͅ1߶*tS1=,\й&%e|s6=R?^}Wp[~xwIc C6Vb~ ^oOn-ች!zl )6餡g= b0^LT?q*wqaq4Ö̒gd1{W-~T"v2<6ł7!̼\xߓtb9bif@=Aw^KN0w׀qp>.ֵy 1Vɤ݀ekt8B2N4F'7nߟ9V,V鈄#8o&#KmN0p=i%$NVЙsjTwi$eܔkHO#'w 5 V`F>LuKܞ ˂aNK; kGಌbswsC] ?$7:yO~F ,q~!SLߣSv<02ByƁˆ:g HNa{X7aza{5yY_`mz9Ŋ^r$]a3kQ9Z%=$- dK)0?_L.-a>{'Y%8dGa^Y#Ο:p$9<&(_+kg6m3y ',+2f *z2aBo^8(;p&T>-5ҋh6æךQ.E5dy&c1ҔFc'fJu>{]?Kk[Kgs o4TtT_3C(7/s2DAP>@~3"¾7ٜ"0ΣZl--f7c jR@2̤Օp,> Gs5ϗw" xGIV#0my+.+NC8ewJR]Z`-ndO>2 # ->]]ߎ=C:c  uVrr>&Ca p&bЉ9yGBɐV\k TQku+µܛ%Ԙpeg|D~j,"r^uG~sCMqԴΒCc`m/叺,) 9ι" w֏3th]'@&BT=WxhAZ#\.XV[ov:Udsi ?GlCcmEH7ކU@>M#N"IMoĪUze|.34pن+頑ݦȼN_ ]'wMi22? ѪV xEwx-N>ֶ̉B $$]1G(!Uɖ)G׈6!xtߊҖx(q Rg"`oO6& .<]P kᏭqﲷR߅K6T ^Q0 Q;(LIՈGכ$v/WJsz}B bw 'a|Ql5bɗ"Y-u,GUMkm@ZHׄh>srXjۺ!תGl=ܺ Yj$iaw#׏' ۓ2}i\Fi@syĚCB't=-@{Bf!O;s 9XtΏdT SXxuOfE3U~\݄xs%I^`ZTMM 1һ]jD)fM0a#ҝY VƟ4/R&.+޲7?d` G@;F2hq iE1&j.q|,M!3Zɠ2v]Lp5R/9-Ei?<骩,Y=+5Ϲ7DqvoD;ﱿ?GCI/"0RF_Ucz߰BƟ j.qr(i @a0|}i# ?va ” [w Xw-cQp ~V<3ڵo%=QiP(EYK}$&S@_)&Ⱥ*òO57Z;, .~MYjM^#A+"[Ʉ2vV)åyeY@`7])ޒ.,,K7_`&A,,LwL9?V9 {/VrH8`P8ZxőMB2' q {ۅ-dZnP@Ta8@C\7ze=p/%N֦s}^M1N+?_Ur ja5łBKۮLz|0wYW,Җ,Bڽ'W NC{!@n/XreUjZk=E&;)0Xv|iv^VjR%D.sct*`V\ 6~Mhl*Dm=;'\;!"!R̈|oUeY#~g\'sy7 TZKD.?oSșN 1fd{nAHIZk]R̶Z{[ ey5=d{e5WNlNVLXF@ߝo 7g492逰vơjW `Y. eXI_Q[] j0)~> +DB5vCkU^yORóC2,̮ve .wio?ŖsE#!n׈GBhrpJTpg{tX` 3\mx6m=r ^ƙI@.\U3^!rMgGt1Qo7{A>JEy 2KNNi8mBF^oY@j-= Uar)Uv`>oXeWmcڸE&+BNvl[OG녂~aVMN[cӻ|9ʣKPM <;x HJG*!X(Zᵆ4M FYG =BCUS߸ ylZݒO/3^}X#~jrPsT/  ȮRtMU0fח)P39k+ohb0ުs:#󥅞=#tO6*N=>VP+dZμ+K_(Os 4ٓLMK¥Vf[迻+{^ 9##?8mP5}i>}&' CڷhJTg0\}X?O7ޘ@T!}Ƣg7z{ ia6(J@]AU|'h7Mk#{ N\"kIPݵ5ǙGS3f4_Xe[Sn)W_ *dI'pbNig>fFbM/(LI[ $Qԡ_ƓIa'\ɲx^O~[q(àAM\OHNig"$k R܏~>52>Qy^3,w>|v7R;W3w8=3I]g/|"erέ]G;|üifW>)k"W,P`}`i6SB˹ fq LQy:hS"B2(wh͎66(cQlAc!&ziWH aDW1z>^ z RepPw,x٬k SU,*"ܷYΖm\9Kˌאsوz/Vb,#Y@ |?BsߑT&^v-!gQW*b}Vu_mE^/7HQW}*͈\Nwk!L;u#ay:+)yceY}m7[2[< ӐKO]=IG^J ?wݏ7xQ׶k -z-J S/ BB58zMRR<dn4]vHWڙ7m/JIfӬֲIh^0~S}M).5=vE< D˭$*Vm; J@MŬ zy{%1l+on~hbg_rS9>{3݌G\۞={EbbH"u2tIt!j\ϽIuo_Ufmg=ޮIsATw)5Z%053TC:WĠS.yiz]31{q91J_o6SWЪW”8'??Iy @׃/? -źǩU-+WIw /wS剧z`X1ӁIG2g?mza~IAcC `C 7+.mQSvfJnk=bcI*Tm=%OQ|}Kzu;R@h)!Mݣ_%Q 6QN5l!7ۛF)Mv@j8zNL.&!S/T}[` wbe/ﺶ4P.0$+;̢G/ E<û'Un"nFCqMJOm5^v74/]ݿ>G.X=7GK7 N{eDwsSaqHN9ݎSp@_6 <5lrK'SMt8`7`X~!SUF>%0U cXۡ6j =@?k (!፸G'j%l0:Y> YD|0葒FG#nˬl;ˤkEFBbo׽*׍t}xݷC;A%̖ܒJЇ@/:El9P`_A,uzjȤv+":AaYSzPS}}n+m em̺\ K{Cx&I}6 :dl"`{(Z+@ ʿa8'9 ~z:f^, m?ֵ[k.0ұť'OǛe"!MpaoMo&n h%ɆӯDܴ2AU|Xr\!jS!`%d\IJ3[g:)TM2 *bBZ*]\D3FL{+1؞vK$4,ܖo @}YcXt҆¬ppZ[C$vt)TׂagQz@K5{qhrߡ1A+%,K}oR¨%&|W̝fn-k\_={̨+>򭵊Ɛ9wP55Q9l&eJ+6U%!uN$EF|^m *ߙvo<ifqHyYjؖӂn0oMX~#~1wFV=Mf>p8񬲼pRvk̊#N칼o֙orN0&o%]stsHmSM9󊀉J'9җȹ[-d0Mu)᮰Q*EA(|(Y_lz~F4{c+C[HXO(Fk0bZT*>E!D2TaC$.a[ROӁ\M.Χ>յ`PvMˬR{0gg"ap#A#H| O 01&G^({QKv8P<˩i ;0+u%:9\ڑtF5,^)yGC ocr9޹[uPLyx S`WS/|ATQm'2*1GhN J\7R 8kNb#ȩ)pn.6R1}QYD~G`i!0?92'Qcy~,rB(е 柜yHΞqnw{D tssPrcURŧ ŌAj!:f~"( R8CEQxb&76 ꉯ V kQ g9q+Hg`Aq(7gf0r~Dzp~B^EF^Yzܟu~4JQi~An1#v=r^3bstm<,|%oK0#χ㗣(8I1#F*߁/[g\7yݝ1v2< .zP3,-4G]v:_teiw_Ŧy_fH 8ӔF'{(1cM)%a5lBGd_Ru2UHFz͙J#vijxk ?x0.8 3syA~X&t[~0|ߝu=ʼ@(sNc`ynr mw2xq?d>aon-_a/ww{s g?W9Q-D{QnNegDjE@Kk%T"/ `P))Y?~P2⁁ e|K14.L$ ^Uy s%6'ָ;K;b4j>dAMkf1a>s!Lӄim?W$7Zh/P?\ myTBPjf8e,xd8Z OH8ylkcV5 Wk9'ٺmX&>7s MrsS,'"thNrTٟtۏ{űR*=)ct>pDgnSA$D8։9״bV}{VLxvAB՛+-[o9_I,c\*v2aT25 R man!vh5)#):7>#:k'G̳KFWJ5ru7;+l( ,d\6:~ll>D6LŨ7Xn f8SXÜ3h eRWޟv|9y Z"yګr>$c>&P߁tI ĕcY׉h1eK>4?Aq+z I[6H ʫf0@7I vS1`[pk.\Ǒp(38O&8.JS3ݦ{W-<ې%%̴NF̶jd 8+ZF ԉ}vw$<4Q-hn]԰va$>R^ Hk_OؑүD.VóVd:Y'">Z)}=nU[G 35lZ͓-0udGezTR*+Dl\&Q ˄u { GBd8Kl|FWr E32R/Y\۟V=-:QYa}6\s@(*\`9Qߋ'*u$0Aahe`=!kK~ߦ wTaJы[p~osR%{# y8 Aʁ⟣'U'wZS9|H%[x@tSbIc0N\_Д1@RoJ,!W|S".0yQJC ܐ[ٟ)q9t!e){OY4:R}]ae)f>3N:iTJiNgpRBAezs&Q-`wOS^\^zlOvmcX.(;y4ĺW2ٳ%t4uнo lrEhuf0V0Ժa'{l(by m*h D/ܸ'mZf`ҷlia*DB6uA2gQĵHfư{ikuZ 4_U[ⶊqlAi ţ;N]"^:Frxު@p8oE޼e;zG-ن1-~}3-(e&n/_3&,q mI ]ƭnY=hK^K>+P,5MXFAvrC Ǜ~ ˱o-7Al5MG0P HT"3q]'"*D~}u=*<%et9Pph׎6ml]S+,Hv\MwE&3=޿v`c[YftQ߀O&ϟ/b#hAȬWf= <:]}(t:E 1` x@oӒD4܃V $ʄIqB;[x 5;U.Ug~ "lϧۜɑ@T vqKCN/kPn3|a/h7 TetmheqPӇ`ۍtٴ8ʌ\^ XaM⌟lǾaFOLs ׽It[]J^ .BWWinҾ{\(DRbL%0dir.q\rDk7Xh4 /Vu{P3/F);=&WXB Y:g1F (Bw- N^/ oPCoXXkֽ,)M\:zvYh> qHpqixi?T= 1o07V_i#qu7ӁêUGڦZwD/**κgH[u`+!\!XB? }JЉkG \We&=iy'N ~\ԧ >JSE3.{7acP~]Nv̈́;Yb?m3PSuCgZwR;Oӻﴽп˫q'7~`o|Δ;D\ Wnl?5XGcE&Wi He#Vl 츶t{Tl ${]gL*U6(|J[ƥHbɸJVԴQ;Z B<>uA$k(sќ?Q| $kYumOwfuF*jQVt&ҷW44voy=^sι׍ ^H(# -jhjB{L>֎yNWPuWsQ@O}`mR/AmJti?7>=PFsil=TKN-;[>{E_($7 ݭ/j""$daBf8S`v@_1ȤW2wXQݾ:nOMH-Ik__{ݚS&~vǸ<{a8we3jKu7I9aBxfwv45aӔ. d4?&.{:sV ^9>1"~C֡8L;G;8eMpC!j4S#-='gH*cTG@B/i|IΠ~saHx܎+چOD[Y>mY.oD%D諣Z ]h8zv&ĥ0H(,- Xq{%h-fv6|?ɘrg2<^¾,#P\mP:_3z@GTCùȍLɾL)Q P(gmq#_v*fӿLocfxl(g3j﫦X9G'"踢VK ~n}1Ds(: ӿ陷B^6F9Q9r hƌ מ+5h .3.u[J2ۥwHn W5B7%~t Mg {zfb vm}7J ?#=Ӆqֹ.?)/r2[PRBܻ e@z[3zX93]FPKY֟ht"gImF,̠2n hv$ŽZD9C,t ¢wK5ػboO qyLjm !ۦe!ttqG4z.gh^(:`=(ް<z; ;~npO: ƫ kAγfɲkke-5|zuޫ= O)8 Z`haέF;vo[s";bpu$5Ʈ]rYt@aSvF8 =x,9OU*0^ O@0H;[j[A~`ƯuZRDrFx Fu AIU_׃Ћ8&H⛔ #5t U͈r֚r:'vP1ri4qa~_#cA6"c ˙t/<oA}@z~u2hA $Hܵ}vlҾFƹq>ވl`8)"9&{`(ݨgi'VbGl9l)S騔LTE4zyleeǿydI$)Has4[ ְ N"nZWB@Kp175,Y08;X[LL!rV-oa/^voFY f.P|k]1R|l ߺ%︿vK /xufzeFظaD?Vu? slw~UrHS]!??}P_5۷<-oVJ›ӕTM18Cy[;5}|v>0qmp²:iiU&(0yӖ~o.>^BO =Aa%|K4xL8{Evx&j p̱WM4(h:F4uPa _S710;`61k±N^MxeYw@|t$k%ŽtcZ&NFꂾcpyĹI&Mpc4C%*ϧr(UD;2}Kos'oS)b[h+.4:"YK+Dm[Dض>(NF$ҋNr5*+Rjfۤ k}$o-Y+ 5N8eTnizS {,OV]Obt)pKoE!Ѹ`Qu HQRaUʞJM_T-W׋0 t=4JR`L f胪 ^ue#{y./9VXYMh9$v`TC;|CK^ƶ/Z?4psmH@J yiu'zm b.l]N2T|wTJJ%;V0 dH#VX8`0{[U|7F˙ٌ8$\~^nJ v'uGM+"%CBSCbFk~(,Tw[L14~h,dYbzawƏy1;5Zʓ5n/z,T2Dg~=/Izw~v1(3x]~)$ԻG< L5U F X#=+F=_m'|pٗ%i%$}N]⣞?~MB硓LhjNA'n^,~ >Fyjt+c;6 A"w Jq3 Z)|tw6T}ox +[y_6P8m)Q露!b ~nָ p:\b"fYO9a=ފ{ Lx9&Q.OLY~a/&>ؓXhVX44*)w]{Bn:mFV~]J*V@k~jnA(iDmh36?|Q{1 i?Mr;㛱V4E3GjXF oHQ.,[bLn3̑&%)eD]xEFebNK#x!s!,OY`b+7'j7l+~]P1ШঠP`R(p2P{&J#1Am¤4(QQCbCR{nn^Næ6J&HdiϚyl Rog9:lkDHbm+*S]w˪SL0_T`7ts{N=ei1|dW #~@$틿}2!{}Q]c檲 ji<0oW'T_̂%.V6DÝ[s9wK#K d؆XfTMhb.'n&pVutcҵzD&qIXί ]i#i`qEGGXDPh1V\Nzݼ!sMgK7%X,4yl!F:*[ʌ碦:wT_(3~I2]@?kᅐ=1މ5 Z?{7;pc m(r;CL+xc]pnqe"C!c uΎB6AWw6E#f'N80ADҧQÎXz$1BFJ"NHH[xd+6pbYITyͣ/ ^6BAz!K(~9$rpTf mp!#R<>Af98TkmLQ)a_)h rXxMڥ0^pr:+Kd=3gGQb B[E)GbG(O(Gq[Ɗ.놳z{=5ӢWRcbJ涴ޤ)P|fx"5U/ufz5.9欲bgC9q[H ~6u;uwh):91w-m/'. SI-_I9ykQGyVa[P[m,Hh9l w}QTsEÐKǠ1-:D/]ԟp%ܽϕa.`\Q IUEXޒaK{AexγOAJ,=q$uJ9NPD|ĤNz#c-TT:\,Aq*D8|3Bݦcn*oLiu=>)5"(by[sJ|TFNԓZJ2dg pz7ׇ1!2O%Xj~9&I9 L<2XHqqy&Ecqw8rׄaAi~(mYTBp_k Y=ۛt݌qGٞAu(>u6lX/jo:߶NAm4Z3O̕uWRgE^Za9S/VQ?sJ>uJUV+sjbrLJ_((kLf8+࣍'5ʽKl)9Vhi&䆲 # T^ )R k.F^%XTP^y=%8QS7D,;Dع6[X5_J66+(dfF2IN4Ա^y?qre8 RXDSKc3-"THC؏'Ij݋ ^ꭖWF- 9۾"qwD{͘Po+A. WNu sh#3`@XB(*޼ wN7؉ I&gy^"\jͯ|rmh ͱ >\]6YÆ൤ aǕkSyy<||WԦftvE3)]cWrY;@a Ifux(o:~_ƤY>IMVTϢ>̅2*e-YΎtzFoZ OwCZk_(%7@QOWԓ0Oᅲ@Lչ_ZDr5 Ɯ^T<ǿh(>쁩H異-z(.T vJƩCoԲX' H^7"`J ~|6.9$ -2!2 Hw0x$;];@+>=ja ξQzduB7'pq:=sEG0Hğ3Rj\@ ^ Omθy$P56rpt,O1Y Mҁ0U,m"mPi>E$e׍شInU.sNC`#F>p Xa5T<(T[[Ga(d]PNBl Qg"h`GIYx:h$t^5Ѧ<ҥ/K4t-hA Zٹ;C[8/غ9tS˗ S5X2&foDVɷf],rg5XoSK)kyv8„l/ =t9I~)]΀i~BVi/ Z8 u9tp-=9IykNS VvX:9Wy!Kf;=R+GUAaUEse;kaMX(x5UWaD%lg"]^hȪmLg[" ]x,C1Ï\ɦPL^y nVL9#72cpd\G2Ǣ+{j%vMۋwi{D;*7'B©}ו@u`!yڲvE{ӎ-dAxcy(B$AMmvDŰ-y%`P{~R?ԡ_(R8 == ?ڏSܛțY8rͥ#(vf#<Vb@;9oON8;|oN6}̂C /357"TBi/HŜk-<*Tg g NweM/l;"tٞh{v.ido5yM4?g/X2#pu/mzߺU6X rh$͟T&j=~j)ng-cp*)R%>8D5HeHDOkIkά!o;B]BfT G c%Dh)|mU첲Wk YeRqls#"/d?AlXV2'!>9 I9L9ч&f2N?t)˖6>ە<`pg#e1Ac^GRZcSMc"):EGp8_:ƺʋvO6W!y4JLQjR{XWut?8V?3v͔>pmjȁ:g(5r)vˉ$ӎ.Sn}PA$;[Bln5r )sU3om_G(*]N5WK}GuqT(&@saX/?m0O`Ϣ˼S#YlH<8O۵.i!F" DJ2 O$bC9 Ư6 Kr;;@ۿ7+Y*"̩LxnibC=ٵ _|X0}'ZOF ;60Y>óE@ZP5Xg?7X^\͍F>tmrm եGR)%O8Al1̥pe&>cɫ(Գ!;u'9 2R_ º..gWKVJP Sz|4PL8+z_âh aR.R'*?ŎpH'tSrcf \aBdk\bwc6h4li@ 1/4Қ.#L{p :NmU8Vz-9a/:0ǟLJJwD?#rXڰ8X_bY^A$:T}!S;R /z.U샘s5"U7o$QH2q?Cbt o5ΏJ >NzR5kT܆LA0v&S.->`m#vd"Ӹ]*s^awÊuQ/0͉-WZ G:?V_#}9upxETB5j&&>j-2hO-АT^t.7J>X1+,FȄ{VSgrY44 ٗq2Y_&Fn`Jr6ib+nGtwjpp?ȏ t}hlJjeejj^A1ӸS͢㢬9vq1GkH9FvPX,"YlkjK< c{Z 5VяR+t_uZ'鉵gx`*&P)nFsH»V.޻lwB Å$#a/gtְae3*(Gv}C-XIP 9~: T2p*JH*'q q͐.'ﻭ] VfP U%d FH;O?'9 | cm:\V" iiʛ,5vrƐQڄ* r:N l$hg檉 g#2i/yJ}Qȇ"f!Ї0,_%S LR[X}-4a5cW6Gr"VbU[OwE>{R]WRȷt袘oOk+H#hd3`zD]wQb~QH5:7֯L+й=0on@^_ur %pMD>58?OYLmEygj&Ed3t0CV q!!a{׿yn%MgƬ &x&FJI}"хU4_]gL߅FBDy@K6kN/ܢn WM&Eg7N1F4H5t>;̧{4,J~;w&V_C_clf\hlg(97:Γ1ӞXGftGz#8L'շDQ4p$!;GwQ'M(_^?4Xf2JyGq:ɹ^ ]5LKj"K}o K/;A(8B@]ՁO.#qJSrR#\՛8ܪ Zoeb$Uv1[ᚑbT =n)|b"8phW,q}n#a%RPGZ)U:9@X.GVrwj\=+U`B-%`.M=OgAM2r{ wa ַ81qvYaWu JO`⠁3ٮ^6Hչ9_#, =x,8`VpR!g#r2>.55Ri-!PMK撃XR;{j3ve6n񊅩qXoA 5S- Ug+֬*Hc=hrI^6$V.>ԅܕz)e dgE sBJI; 0XҨ4_Lhb9IG:)>0S;fR[c^ve߫({T*Y~2!0{]%EW'8 U}-Ơ.X# Ch"0uaO~v~b~|`b"n?BBPP_hl:h lVJ-JRn@9Y0ږVp!Ծv0K.,Xhʚ(DM dgz`-@.ϳo9+e44^DXf" bOc}?ZN6u7`6h.ELlApjܣ-I)))G*"Z8+;H*צG;\X<8炙 $' "87 )qA;=F+ĘkA\ZO^h%S2'D7RjBɎ0XAߔ۟?H2u{tv_zTPmOO"%Kl;XrU!q v{Q5$}/L0:l} Edy;!"޶mi(xDƇeo-/#Ab廒J(Nab/P.11u뽼qG;`-:]IcC#jXJq@]~128t=WJ'ݭ%I6xUUF [y3;l!RBר5f$愷OGRavTr$y2Y+uRm7w^E-xbȵnfmQyn#SuZO?҆87XB&O6Q?7x*%vLTV7Hs}'gUo^qqK݁hkzh@pjbViuM9eB8Z˯~%\7 veJ$4Jk[&-Y.&Țy,t2En.tJ2b U+Z<ĤTU?o)p+gT!ڈ s6 gFN5FU>n7U`0q Fk<;6 R}Rkj84S?jr݁I|}G ;=xwZ Aj!K A/|X`ɕޜK@91DYNvZ|x0Q 3 ne@碌U`/{W\@_ 静" F 2A-Y֨pUHaǙR=~5+s@\a/C޹' QtTc0feC iAmuwWg.xf, eR2msH1g̀(-#Z*[Z~:~8UuqA=TW4/y*1V-80V1W]X? ran5Ě$8ŷ1׀Ple5 _&Olo͕]9-ʆ2]vXq}.RŸO@~ZFR4`)vti+VƤ)!%D) 4"Jm""D ͠!*VFj[2a"(KJ ຊ1LƮXtKohRR )+N,Z1U~'0VLAPj<'0Si1Nl Gs뺈֘gNJɞ oJݜ\;[ OZHu"h8C'U쬄8'g`*ZC"j ՛dAyt oMVNF2FЃe3[(r\l@/FcMᚉY߭bʯv3+8sޅ0 xf;9BǿTzDR ~ˑ+mv)>5f)&rtBq?MP;j}5Z(Yu?Už&풛*]ۏ#>s.9'faXZM0~C 4$|f +z%,$Q D.54,0&zr "v9gnӥkl^zMRfd&b44qdI}diDb7Na1فc#hJ ^TԧqY`mTuKRd%&0Ip >n7NDU:"} Zz:4#UMqqe|hxKRӰ d@7z2d8BzĄ@UWD5韤:RgDٶewUt٩4@"S4 ʈGuX6alF~JbzﵜoPؼ̯[MƖG^ȑ>r ?_d25+`P^X>>iIW/I'Ե,1|h<;Bo>J)?i'GtsF#0\1K^12 M4mog&Z888N+-D_\S3)b@?U-'谧{B?yTX$>fIq -Tz6\-XQheYjqsRi7Ђ+3aB7I߁u?s?W>N>Hf+]ESº&pf_6C~3@8WR ?+now" ofwhBQD j-6g}$y(+^U\̩ #[76q^H:P*C1ڎ ~^ =bB`oay\R`|yt6c5FpԹ^ue*BUH kq9 9 2ëx{I6 K.IO׏j%`N?@NB1{SN,!Z %`ΖԝjH8r.XHAP+5zGl]7-RI-jӚ$݆ ղ*& rj0|w;PS {! ϓq;lÝkr-)`IׇA.Vy3涡=9/N\1d"&o}D?Yौ&] s;vxOfj<_O֥!3[ìCAJأ;1&NJLΑ!(ՃxgKyEcyC'  n`8"-U^Zo H?[#G1\RԌ&4Qu uNH9Jذ"J1 ߭ 1(5Bi| `3x?`׷z~4@b~}5l(:9QI[WO0Xp<[3)lxБxxc vR QL"LF]>/+!IA'и0 :1t`܅d7.#BN){ #w)K? +M@[4kn?SÁlSq1u1#,&q( h W~.0YV(p9 6ۡ[ 9j,q="'aǵb"}yF_ī,[3=ˉ~7%`eW_2R3/\oNKkvjd 3s|i9j]?D,v+( Ț%l9FC7d]--^dMt KClxZVAG2* QLVi^FQG]OjfAhBe?ozhۍL;!4pbwȶVGG1 O@ ArO,_d_\3>KnD=8d]ݼ+=2Qh3BKB堶cyz5QFOrLk<~FYՎZ3]tNFT>fmifH*Ƞ"}>p>'<C;lcrLzzkJGșW3 8H:)>ҝYeKaô`wZg:#иY#GRyC啹87: / @r t}:dF[~rO;b|OB'ԙ`t^g.0hq-8^X6?0 yu{#Č\oEUY6(I,Yt`r0[ܿ7uNYaԞ#S6RN/ȊvR }NMkjV"b?[t~ҋ(g6w6{Ri_.k @ 8{/%xTLW͞bTPx2:`yapQC߃/#"Ž ~z}GUo؆T}#XzV>!}#H32?W_CJAPgq3XJȿ 'НunXm`[M9K5ʎċ ʈP{H`-p8o[(K|ywc祥_uߋvz%X3yiԡ9@\V~Yg (7)Ay]j:$Ѓw(2/Ӵ4B ꟹrxܫPwpC\mVzr7s E `->#XoA9GQra,9gG΍Lh/%]Y}LL-6QduY˧8܅5 &cri{Ă#N4[&ߪhR$Yᔧ׶ 29){c'N7Y t~8WrVC0'{p枝土qCqZn U[!89]bʢpu,[~-PD; usG)v 4QT$Mw:@)n,ϸĕ՗fܣjh@'zomȬ.#_t4%&:^+JNSwsW'Bi1k@=8 h,j.&<8jNψuʳQ+։[ X#Q]9'1ؚӵan[*,ncSqw 05%ʣ?҉?D*Q&L[/yutB4'ɢ+sGg5WBW龗gNùt> Oʯ&V_D:ؠbF2ӵF2B,A]LFг[av4 5Q\\ȴz^&j4&4M&O@D_+31^"*-GžxBrl FPs[6Q8ҔbЫ,s{޳\7G`e2?0=ih H/3#AuL)5"z&])N3f(”F1&Dɡ]S$'\\ãZfG&%P%3Z:r@601}@߭ILX`nѷ 螀kߛއ͆P²'fec^s4(͎sx\ۥYha(JxIvz!&xo jBA)!DYt7ϭ_lacwנQ)ыKm*VA_H * fr $֝_H7n3*uYH&t߄kƎB^ֈ+@ 00ky:\'V] 0ﻕSjn6 s 4zUJ2"*ZiDۃN"ԉ@a5{hH6 Q?P> &v#`]: Օ W93<UZK/"a jn0svE[n1iY )J`>cγ}@]ډGKbD,ʦwdKI9rzVFusPBsEyr_%C!L fW!2dW)gY|p~Arq9AEAVy"ýEJwo9'8< 7S 9q6wkOn_ň8IHcyft|t[h6P3+YPym?^1Jnl7gU9DY`ne}v7̙8i`ͪ΂Bʿp/Zcݦh76˼R5Ә|e $n("lxJ>s~";'i9\wHSD>LZlŗ x`P:]3Wl g1 GS}Hw荕 X 3/K |V߄tT?﹗哮DΟl(cj@L#~0beH!pϏƻPTVf'2>aʹ r46 / 7V~KesYt h' nNR.S @`f0ǭAXۜ4מ\J-HJpr0,"EJOG{|M15!8, Iњ'Ry$k/`\`|* xϸgQŀ؟&7Qph1VEۦ 谆xsԏ:}MÀw}:YكE9;֯ѵqXۿBb̩b)9{@n.DjO-1Wkˢi ~Eg%eO [U0jE)hܒsG`Xh/}Jmeˤ ܦU6"+ G B_ !\ kҪU鷸#W-/-#aV]ף_ gMM"Rt/>N ;B=] c&,׷Ӊ(}y>Q㼳n HgUvږBR5ꅻf<0-CI@D?fLuKB:uߜ+hmphpz-c Ke3 0(^h ~J7HuO5d{v$SG3fYgؾDX*R/7ţ7gCmQ&qɂ.m 1[3^tJ#Lx g(88S`t@ T&Bim _ 1jˑ68ރ FPcixWt?˺|~>pX Դ)8S hZ/8hTծjn4 Z 3RV;XaKL|!T Qlfҏ7Nj_ǰV߬">("-Kid4f'mQeᩒ{^/0i|)@D\ʩW'mz, TY~,A1zgm!" [#$rt`mG+Bh)Ģfi -n]sM[[9ڈXn]^8kG'wɽzcIj^M1 &odq!PY`DW(] <(Rһ؟xa۾E]uO%v Ԓ&dة/fp"ԥ>Pkewn~,ik ?5ޕ^O~+3M&#AD2Mݏ򬨋%2KpTB%d?OZvtWX~:.~n.^0~X~]jtwdk0s#Qȑ<S'=V#2orTyr2:‰#*ޕ.=+og@X8j67~@ݑ[06|a,Z ^(R;1ls@!gtϩJ!m*kxx B2VeB>&*mcF#L̵Dj'5 ϦF,Q>ɹUOft2`MF `[^ 3${]%xyI\[<(AÔR;t?V&oM1^|Ҙ+2l-e{8wdH_EBJꑎl^xL%bBeaػx#gU(^*=5]1Pv{d՗X9]KVeS@o\ P:1% SWbiF[_1B62<F 9ӬLuN"|K[{G:d}1J]S5+["G-x{fW[j=7+NK KyvFrZRIK6*#Bnn6Ǻ{"M /k{)HqD6]{7 2OfRpܵ$IAܣk()h`4;Ggulx~{oZc'Fn4zKCϊ,\vA*;il gc|mtzv|նEbՐ#1`}@'ʧEX#2tOy}FzBgi!}ka6Ͻzaj[vx[u ÂFAI h3#,Xg$ֻ`xLn$t(MN$D:^ p!t> "\th_GѮR۫߇>XY'b -ڔoBhcȫa$ _#\Qp {IQ@mc3iy4_{X,G6JW;Raa;_/ ؼ2{/ĿvZp-!mQ(PV,8PQj/$Q;LAԽ${"]Fb" !q< 6qzN (*!Um+F<7kB)A-1PE^nLR:SAe)x~lߐYH)C3Ig1iTr];p^'aPaMWM3X7j{AaH|'Ox=ZU%m$Lj|^)bs-='e&@!i TfQG Ƶ~"*o{45i*|٬<2 cw<}8o0ͯj Mԉrv{x 9i{t.~jg Z~,ǰV 5f[NaBxޔMgHJy nK~%d(syZj_IN;:9vHb;qf"SVW7.VO3@\{ToHQK+SA4%sI"b+:kVw>pa!a%]!?R=r{)}h.eE7Z49asNZ AvoxЫ_J=E .{.8ֆyoC/_GA`G_-$ 5J-SW_'zz,rJHA@*n? 犣CEr|/SOɰ l$Z4%i\Zu| ]c rHM[ 8ի;Hwx k_@IśH77mV%5D Mho`Sj(WҤ@:<:5XumC3s8 I@>xPI"eGEu 66Ie׭8j1kY{G{i+Ƶ%ӳZB `-$jv{Wo\jlSmVɽma4:Z_弍Lx'NnkfrIl3F:p_h,(?y nnhqtxv݅kɾy2>jF*rw].PGp˗=h$ܙ=X?!#/4 NOp3+[RwN0B3m6ԂM[ޟ!d;//UX {1yI57Cbk@.m7:U7EilYCv˸( q4kgsȖor o>)P?: 7P=z%q@XFuȼ~kL犦,TpNa|3 $ Yw1 a|nBţzWD<x|bIQU܊9 vxſ-:E5QPM;61)!0ygQE#i>f|^ D_ DF錶'mxS ͻ0b3e#r+~!r|sZS&=p58G*0ʴt-ޝëT^+ʪqr:m 5ZՒ# Y>e,,e}]&o t{^d >9(:\v_χQ#(7r[Y/ij=9w9~vsz<4DOpbp1<m:^!J[W{Myјڲ~)t OUo qjVuN N<$Cw;1jW1U <7_mFsL4 NOw)Z+q '`G?"݀- 0/'&' @0XRہ{(䧙3F3 Yq,V= } 5c$#d%KTV2k$\t+~G~K~5? 6eB(ų9A: 3hKF|s#YN`IFYl5<HtsCJL(19&dκWɗ*ͩtG ϴ@Φ |Neiw aܩ?cbLJ?A4WQ_)'!̪6G¸<< _Z[|k=L/rQJ~z.%2>Hծ1{%9sz9!pRX^U(tx0SIvD_]VɯsbaG@vW/=C 90Ck `8Iwio<.-n/=cX@>Ե2%f|n9?rj1{Ͼ:/'rg,.]f3}m:o1lkLR1$+%a{D&[?4OM -5 u2XTMsy*o0_eV>9rY+Z~Ț &8T$q71dpd·I%F6p@Q<ʟ$j8l{Cn~CȻGg,έ =_xTeum?iO:15i(k|i| O4(/|+9EmUUƯbZ& d-ڭ,8a?Bn N x9\L!0Fs&u 5E*a'5W,șG4eШj, Od.+{tjש.u5Lꀙ{6c4PTwl{Y?c:`εq N/'}P@~Xtg}خtYˬsٚ7XMJPz'0'Du,"hy>f94>\ZԈƂ("je١R8Nޡ2GgW[7_KF=*Sl gM '?՜'6%Lygë*̪DVH[5Ikq(2jx-N֗ͫ늉yLPR-'o$;N*.2UB4KyqQVj;\M `TbuG&|cYriR>5`e0 sWSʆ=8) Hf$"Rt?hD) Y &b7㡺&$2B̘XwO+g󴺚Hwx}D'R$vYwat=֘3M0*WMe.dn x=58_/>A8eUcbkw9|nU vp?*)Db͘g 3Lya*)ʠEsub&Q V%JzV]4"i 1.?7FPz5D%qy__?dɽ{&<`,:hݾ7{5G*mhVw+8k8shM}e+$;rCocIv}S;1\377JMh䓸zm!(k%oΣOʜ0[tp:J34#@!m.`Ve兤xaj3Oۨ2PNna5I).+8'Xwu+?BЋ *avM`7?1;MX ƘɝBFBiWRJ8d(%4gd֞jiPmhl`0iki"8ƻJyA5>:4-]$qB=i@xqWoT]ER-V,Gdb斵|&XaXz`.99P &( t_,2-uw5CXvv[A$%6:V@j2P,dG~rBq{|DIWP&T Yh]󄗣2>s0GQSlpG,IVW={T+8R|78uNN;1Vә5u2O_5!#$7JW%B@qB/Zk4^GW*zԂr`TlMw!¤Fei}6ۆ4-<5~ꝯj]$ =nByqה;9-&[}{,UEV- \æUU5.z$j 2R\xY'5? N-G6F  ɱ&*M0{<|c,hGÃeBGƇ0󑖇L!ǤS63ߝB{D&~ ]vGLo*ርd0-{v)h0͇|gKfib9素%W?J7gf{M1x 0^&f7!D\i𦘨/Us7}eb;'ut̙'ѐ0 emHT, 9*?g}S J` Wv?drmKSG FH9J9uD>Y,}(}khFHJ)jU}&8^| 3d|'},W3GjXt8R0H)e%>|VaUgYqZ!_W +.ߡM\8+T hp Sy[!]`gTjrmCؤA1PmFkE.BӌV׆3شc~^I%m( e>гOzw}ɉת:э2+|1JvL0穞A.Xe9 0 O |q=E;LsXbH́dE"Yt ףwjZL%tx7r;(huC RUr9A,W؍&}sXD /!,<;L:|Z?*2oͷn!r=LQn^.ϏRc4F|$;|;&~.1lsV% gD99S{I/)%5R?$iՌJ9ݮMU@{lаSϣ3LVᦣU**xK{} bsפ5`fd:s0`JP&upZw{n݌kr"qCs ru&[Z\j"%9=TI,VşʹPHRuzЅ;0.Iؿ$2:#U(#"5Snx7|" .QǩdMYD^kf=A^x"o”&kWs?DW Z'!#+6FE2=4털pJ=ZSJ,bB5sp>-W{qA:N)@ ,>b!}-Z*16nO Kb] - ~zA= $pUE p}C)Q{OyP; S7V4U`gF'Ea9^,Y:")t$]Ta/ K})Q)ܧrkTt@Q1⮃p -=Xmr'lhS(9wwq/ScsX6Ni`9<®%]*ejdu5*l`{l@ (a6"7ӊij=vh7uX䜥䅻t7dGeTn|o6ٙsr'(aճA^I[|B=q3(=~ n3sFVt4'?PL2z8Km %z‚}6_ l vڏ/i(jak 9),gzCxEV #>GxI Qb{AVvr)NȿþzJ#f(:mO"Jc77#Cw+겙 0JS?%B*ч2M~˛s ]}E~IVBVӻ4XN$0ʎ$6a*70l°<%J/,!hלC4$fz\ k:u9(oy08, Ñ;arYQ:7x_R4f=نAә3mc Ri;7(#f0KxO`s2b`2ߓ-$Q}xp s]{ ?FKEKA, 6BRrA_FC-LD`3-ZPVdWQhudйP1 k Pб"l[ꚒQQ˟rP{~eإ$լnB4 oz,1Z,DSb~7]alv\Q"n"3&11c23 5f)Mv;`tH$#M~WmۚdElC:VMX<+ !}i \A3Inzxꦓ<9SpP|[?w3ftkX't;g6F%kvmI4ٴ-5oj0N@YȚ=\kL>9e6 HY*$*Xt7-_ڗ⌇{z'fng_hg,R/TZ&)o'"6l,-3tabPI8DRo|7ׄさz$NmrNo7TOŶđ?/H -T;3BȜHR zفc[~Z=8v2)1'pdQ?}f)UXN9 `oi+_c}G H, 's ,T X V+:ABI#+Z_iT )h!U~vLNΞXuMf< dc@ `P \xrS=hL+5Pzg]=`r!s\?eg`F8]FAb *f (Ilր@9)Xǂ<`k*"]QEFHAYx+D׸Hĭ-%Z: e[plN c9X\qGxiiSӖM}$_ަ5oənHg{H"#'7e qf8xD KVstDoLmoQE2)_8Mϡ= '3?Ǫo!X:mS?L>9 Oi7z[+$SfbB2ӐGbP&r`(8އ[gJ0t ]R$b{o{ņs"vFL)r^0!vS{%t8UPO N9| B:d<ΩDz 2G9q6,ܬ/} aoM'?Ӟ~ U'r%x/q4l>n˪|ӁHѐRɝ+w?i>q0qq,¯)]űe&rJPײҶ YZ