ghc-base-compat-0.12.1-150500.1.1 >  A cp9|sR@Y ,gn>(:!!*הh3h[1.Ze45#J5eT̊fnkri^[CG4eiEf^{$%0`xh>p>.?.d $ C ,2<L T \ l  ,Xh( ( 8 9 : lF*G*H*I+X+Y+\+8]+H^+b,*c,d-4e-9f-<l->u-Pv-`w.x.y.$z.h.x.|..Cghc-base-compat0.12.1150500.1.1A compatibility layer for baseProvides functions available in later versions of 'base' to a wider range of compilers, without requiring you to use CPP pragmas in your code. See the for what is covered. Also see the for recent changes. Note that 'base-compat' does not add any orphan instances. There is a separate package, '', for that. In addition, 'base-compat' does not backport any data types or type classes. See '' for more info. 'base-compat' is designed to have zero dependencies. For a version of 'base-compat' that depends on compatibility libraries for a wider support window, see the '' package. Most of the modules in this library have the same names as in 'base-compat-batteries' to make it easier to switch between the two. There also exist versions of each module with the suffix '.Repl', which are distinct from anything in 'base-compat-batteries', to allow for easier use in GHCi.csheep65PSUSE Linux Enterprise 15SUSE LLC MIThttps://www.suse.com/Unspecifiedhttps://hackage.haskell.org/package/base-compatlinuxx86_64`AA큤ccc;1813cac2e5ab52913055a0c328d4e242c812db03ecb1ab25998723c7d55a3d85788b0c0ef27a124ddab8917e477fe900f67240eb62bc332b2e4d9c33a9be86e1rootrootrootrootrootrootrootrootghc-base-compat-0.12.1-150500.1.1.src.rpmghc-base-compatghc-base-compat(x86-64)libHSbase-compat-0.12.1-EotHHFfFQAJ7ymd9XZQwmL-ghc8.10.7.so()(64bit)@@@@@@@@@@@@@@@@    libHSarray-0.5.4.0-ghc8.10.7.so()(64bit)libHSbase-4.14.3.0-ghc8.10.7.so()(64bit)libHSbytestring-0.10.12.0-ghc8.10.7.so()(64bit)libHSdeepseq-1.4.4.0-ghc8.10.7.so()(64bit)libHSghc-prim-0.6.1-ghc8.10.7.so()(64bit)libHSinteger-gmp-1.0.3.0-ghc8.10.7.so()(64bit)libHStime-1.9.3-ghc8.10.7.so()(64bit)libHSunix-2.7.2.2-ghc8.10.7.so()(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libdl.so.2()(64bit)libgmp.so.10()(64bit)libm.so.6()(64bit)libpthread.so.0()(64bit)librt.so.1()(64bit)libutil.so.1()(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3aa0_H@_|\@_;^@^0"@^@]X[@[O+[M@Z@Y@XQ@XW8W @VvVppsimons@suse.compsimons@suse.commimi.vx@gmail.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.commimi.vx@gmail.commimi.vx@gmail.commimi.vx@gmail.com- Update base-compat to version 0.12.1. [#]# Changes in 0.12.1 [2021.10.30] - Backport `Solo` to `Data.Tuple.Compat` when building with `ghc-prim-0.7.0` or later- Update base-compat to version 0.12.0. Upstream has edited the change log file since the last release in a non-trivial way, i.e. they did more than just add a new entry at the top. You can review the file at: http://hackage.haskell.org/package/base-compat-0.12.0/src/CHANGES.markdown- disable %{ix86} build- Update base-compat to version 0.11.2. [#]# Changes in 0.11.2 [2020.09.30] - Sync with `base-4.15`/GHC 9.0 - Backport `singleton` to `Data.List` and `Data.List.NonEmpty` - Backport `hGetContents'`, `getContents'`, and `readFile'` added to `System.IO`- Replace %setup -q with the more modern %autosetup macro.- Re-generate file with latest version of spec-cleaner.- Update base-compat to version 0.11.1. [#]# Changes in 0.11.1 [2020.01.27] - Sync with `base-4.14`/GHC 8.10 - Backport `isResourceVanishedError`, `resourceVanishedErrorType`, and `isResourceVanishedErrorType` to `System.IO.Error.Compat`.- Update base-compat to version 0.11.0. [#]# Changes in 0.11.0 [2019.09.06] - Sync with `base-4.13`/GHC 8.8 - Backport `MonadFail(fail)` to `Prelude.Compat` and `Control.Monad.Compat`. Because `Prelude.Compat.fail` now corresponds to the `fail` from `MonadFail` instead of `Monad`, some care is required to implement `Monad.fail` on pre-8.8 versions of GHC. The following template is recommended: ```haskell import Prelude.Compat import qualified Control.Monad as Monad import qualified Control.Monad.Fail as Fail data Blah a = ... instance Functor Blah where ... instance Applicative Blah where ... instance Monad.Monad Blah where (>>=) = ... [#]if !(MIN_VERSION_base(4,13,0)) fail = Fail.fail [#]endif instance Fail.MonadFail Blah where fail = ... ``` This approach is also backwards-compatible with previous releases of `base-compat`. Note that the `MonadFail` class has only been in `base` since `base-4.9`/GHC 8.0, so accordingly, this can only be backported back to GHC 8.0. If you wish to have a version of `Prelude.Compat`/`Control.Monad.Compat` that backports `MonadFail` to older GHCs (by conditionally depending on the `fail` library), use the `Prelude.Compat`/`Control.Monad.Compat` modules from the `base-compat-batteries` package. - Introduce the `Data.Type.Equality.Compat` module, which re-exports `Data.Type.Equality` if using `base-4.7`/GHC-7.8 or later. If using an older version of `base`, this module is empty. If you wish to have a version of `Data.Type.Equality.Compat` with older GHCs (by conditionally depending on the `type-equality` library), use the `Data.Type.Equality.Compat` module from the `base-compat-batteries` package.- Drop obsolete group attributes.- Update base-compat to version 0.10.5. [#]# Changes in 0.10.5 [2018.10.18] - Enable `BangPatterns` in `Prelude.Compat`.- Cosmetic: replace tabs with blanks, strip trailing white space, and update copyright headers with spec-cleaner.- Update base-compat to version 0.10.4. [#]# Changes in 0.10.4 [2018.07.03] - Make more modules `Trustworthy`. In particular, fix a regression in which `Prelude.Compat` was inferred as `Unsafe` by explicitly marking it as `Trustwothy`. [#]# Changes in 0.10.3 [2018.07.02] - Backport the proper fixity for `($!)`, which was accidentally omitted in `base-compat-0.10.2`. [#]# Changes in 0.10.2 [2018.07.02] - Sync with `base-4.12`/GHC 8.6 - Backport `RuntimeRep`-polymorphic versions of `($!)` and `throw` to `Prelude.Compat` and `Control.Exception.Compat`, respectively (if using `base-4.10`/GHC 8.2 or later). - Introduce the `Data.Functor.Contravariant.Compat` module, which reexports `Data.Functor.Contravariant` if using `base-4.12`/GHC 8.6 or later. See `Data.Functor.Contravariant.Compat` in the corresponding `base-compat-batteries` release for a version with a wider support window. [#]# Changes in 0.10.1 [2018.04.10] - Add `Data.List.NonEmpty.Compat`. - Reexport `(Data.Semigroup.<>)` from `Data.Monoid.Compat` back to `base-4.9`. [#]# Changes in 0.10.0 [2018.04.05] - Sync with `base-4.11`/GHC 8.4 - Backport `Semigroup((<>))` to `Prelude.Compat`. Note that the `Semigroup` class has only been in `base` since `base-4.9`/GHC 8.0, so accordingly, this can only be backported back to GHC 8.0. If you wish to have a version of `Prelude.Compat` that backports `Semigroup` to older GHCs (by conditionally depending on the `semigroups` library), use the `Prelude.Compat` module from the `base-compat-batteries` package. - Backport `(<&>)` to `Data.Functor.Compat` - Backport `iterate'` to `Data.List.Compat` - Backport `showHFloat` to `Numeric.Compat` - Backport a `RuntimeRep`-polymorphic `withTypeable` function to `Type.Reflection.Compat`. (This is only exported on `base-4.10`/GHC 8.2.) - Introduce the following modules, back until the oldest version of `base` that can support backporting them. If you wish to use them in conjunction with older versions of `base`, use the `base-compat-batteries` package. - `Control.Monad.Fail.Compat` (back until `base-4.9`/GHC 8.0) - `Control.Monad.IO.Class.Compat` (back until `base-4.9`/GHC 8.0) - `Data.Bifunctor` (back until `base-4.8`/GHC 7.10) - `Data.Bifoldable` and `Data.Bitraversable` (back until `base-4.10`/GHC 8.2) - `Data.Functor.Compose.Compat`, `Data.Functor.Product.Compat`, and `Data.Functor.Sum.Compat` (back until `base-4.9`/GHC 8.0) - `Data.Functor.Identity.Compat` (back until `base-4.8`/GHC 7.10) - `Data.Semigroup.Compat` (back until `base-4.9`/GHC 8.0) - `Data.Void.Compat` (back until `base-4.8`/GHC 7.10) - `Numeric.Natural.Compat` (back until `base-4.8`/GHC 7.10) - Introduce versions of modules with the suffix `.Repl`. These simply reexport the contents of their counterparts without the `.Repl` suffix to provide a globally unique namespace to import from in the event one wants to import `base-compat` modules into GHCi. (In `base-compat-batteries`, the corresponding suffix is `.Repl.Batteries`.)- Prefer the new %license attribute over %doc.- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.- Update to version 0.9.3 with cabal2obs.- Update to version 0.9.2 with cabal2obs.- Update to version 0.9.1 revision 0 with cabal2obs.- update to 0.9.1 * Use the more efficient version of replicateM and replicateM_ introduced in base-4.9- update to 0.9.0 * Sync with base-4.9/GHC 8.0 * Weakened RealFloat constraints on realPart, imagPart, conjugate, mkPolar, and cis in Data.Complex.Compat * Backport Foreign.ForeignPtr.Safe and Foreign.Marshal.Safe * Generalize filterM, forever, mapAndUnzipM, zipWithM, zipWithM_, replicateM, and replicateM_ in Control.Monad from Monad to Applicative * Backport .Unsafe.Compat modules (for Control.Monad.ST, Control.Monad.ST.Lazy, Foreign.ForeignPtr, and Foreign.Marshal) * Backport forkFinally and forkOSWithUnmask to Control.Concurrent.Compat * Backport Data.Functor.Const * Backport modifyIORef', atomicModifyIORef' and atomicWriteIORef to Data.IORef.Compat * Data.Ratio.{denominator,numerator} have no Integral constraint anymore * Backport modifySTRef' to Data.STRef.Compat * Export String, lines, words, unlines, and unwords to Data.String.Compat * Generalize Debug.Trace.{traceM, traceShowM} from Monad to Applicative * Backport errorWithoutStackTrace to Prelude.Compat * Backport unsafeFixIO and unsafeDupablePerformIO to System.IO.Unsafe.Compat- initial commitsheep65 16709549340.12.1-150500.1.10.12.1-150500.1.1base-compat-0.12.1libHSbase-compat-0.12.1-EotHHFfFQAJ7ymd9XZQwmL-ghc8.10.7.soghc-base-compatLICENSE/usr/lib64/ghc-8.10.7//usr/lib64/ghc-8.10.7/base-compat-0.12.1//usr/share/licenses//usr/share/licenses/ghc-base-compat/-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:SLE-15-SP5:GA/standard/c034fcc7642c6d843526fdafaf912053-ghc-base-compatcpioxz5x86_64-suse-linuxdirectoryELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=f91c1cf8d5083cb6702a7ea6dd16d2c557507f76, strippedASCII textPR RRRRRRRRRRR R R RR i.jetWdutf-8901b4766fcb3511412799ee3f10c12f693d33347cd91c0b093f7c9ced4e73b85? 7zXZ !t/gFP] crt:bLL rTaQGJuFJsP|ljXQ3b6/\ bq5ڕ ި }N[-z.||;  Geչ%Rw7`pm3u:a `_َǎ?l*(uMt[le?>A;):jé! ,fG#-bM$躜+&eH*_\~xm6t5,>rBM#wtN$NA;n>m`C\ZU:O)i4U+ FP963v`m6 idou!Rk]b0(M(,H9?#%i( eL1F +`[D?20? ]bS-Q_@vA3r "ty2cAoN;1/` Xf .^%hO.c?v&)W_oC!3^7[=#] h>ef"{kX 5Kx2C^k=x>,6j4-:vyRJp?iH -mۺ90uS?Z;J1R"zMQuդdMV9f:2)PW$OS댔ßnnzaFYޟR DAx閺"^}I&6T"nDMu5:&hTvYpRUxHJgc]+Ԅ]䯞^ ^UaS(gFk9W3.%ƒ^Jzr7mIs;^>P`Z}[~RDDsr dъPn b-=\'.@T82Z/"ho#Y j( }>B>nѬi͘Yy;f32:H-GGꛫ`x_DWB ?2u%UG#eЩfN_T ~J8yo.{[OjϞR2F% \?I z2+^lI*F7 S JwQW]ypSA+[7+-I ]Z|8)EV@H\+ms`L/)$\5tbu}o@2sI˸e Ul -a t yCUp~U .zfxʩtw>MU\-5*4o?΋1CR 27c]`gq+)n5ZN7qt8g/OrtUlsl^*#K Okп 8$פ$B]w iŌвLD x!XMޫs83agako2> i Irax2h9ظ޴ φhwB,+R:4eC2&NEU93B"h|!_ӧ2fknx5%e@fOڎ=SeY<2kZ,)kW%v2\ !dYMؑ)+gODnS!Y"K.k9q㾽`(M׏yP =Ҫ;+ u/dN6 fKbٝ.xC~l znhhxXw`k,̟Oڙ<}f0 "xְp:wp8.yzO"qCBɶi::J0!/Sg'wL =w 4^ݧP?w qؐungqGoc mX rl-O#h(TawOr['~g6^E}anB_64T,pWHF1X.J돘+(y=W"kжކO^аqo?G`:$!tK>Ҩ  "1V{gh 7P2jp2B?%>}'s6 Tpwl@KLy$Яt;N>κ]H _浚 %Eܷ7eӉpN(.0S3' ǀtWdc^?4;5@V883eLHҢ(7> 7x!>X猅m+fKT=-ʱjiW^AFYwkZf,d-[z Ӧ׼FvSh 9ֻED:ȃk1 Zl'G<0z z:JߣRkv ͙|trk=4 `nLj&8k+Yo5x eJvI@.N'yM  W$䨀染i }9?c tTni ~t;IgOcjà*#%}L'B` gXfN?FxN)!K<^B gLUyҪi"S8"M5H[=?4krYWdgL _nE:mi淒a[x;›׶n26bq^5}")'Љv6^HB,k$ViLoyDpRRKKtTr\S6p|1ƃB:A(3)ƃ'XCg0ў:I׿~(^3#=s}K^v~@:k)D˦i=[q  +FkſR7s((j`uLGMVe="Y]_BweS֫|=jĮ;Ճ6Wf@ ,ya}w~~Wh@ٹX%Yrv;0^B2yAQC2\kBԇ oNu#Y.9Z |0b:1@Q9ڑf [LX/}BYI&B~P֖usoŋG1k qɚ'-ʎ!#- Vᑵ[XЩ@ƛg׿Y̞B}ͣ 8v\pC|&K-1+vsIXGhR6$8V{_sbܦIq40+Q|g1K]1 ؋w&{Kx"3R8%x_ޗo,ݴ[{1ЩC"jZ4L O-\\ V³)e56(3aS2_F߿[<zl:ıW5 ]zi%Ǩ*5V>cx;B>,yPaN^=s4Q  !-8  ת[Chl8ㆎ:yНҨQ%/-t7YSR.U LͧXOLw 3G 90~/E/+x~28 O=:3?3*{l$,K Rg.Pʼni)qJpԠ6i0R~ޟ(S qa 7 ydxdž{ZPw3_L/)ag/)q+$ɖP~f!HCZՏ׃UF Vvg!|G`x^ӓ=BFP;~6Ⱦ[W@7P9'dd."GTg#,.F3o$_. :Y9x/ⴰ\>EAɻ 6+~@҉r'DꇍpOWjlTx33'2NIfsr)"#e+#8#FԳѕ )w* S(ڳ5Gys_)UUD69,[! bkԦC>| 08VuN(UyI^tuJ#no+PI}75zl4&q^ JRɇ}觐bb[h#Xklpvy4+h 8[r+L>RLJgFߩAA]6aYOͦ ѫpglL{[a@9#-\ͻO5?DE_\/#cw5}z;qJJP1f*`*5gK͹ܾh 0gtosjY ,yř3χhV$_5 WW>@$h=i%<*0c }EtMb|rc ?GǛPI7ox$bWMO^ ٓ Ϣ)bGU xDGP(wS^TGBߙິVkKՈwFj^?aݔEh'dua^WUtVweL_laB j<[T?;czZ-ߣ &0,\]V&}V/ -~0T"֥=23*†:1Gw[qDG("jК /_!IH]C,Y@!=^}"(Ouy7uP_2uk3ib+Z Π$YXW7)G]$h;/ya*gݤ)8⻈aטꉐ/H>Q=8!p)0Ȟ[5[LҙZN%k%;.W5i/pڰ{fo~/v8TCK{ /ScXZƵidqQ Mw1MR,H$շnUTCdǚӪolv"4DSy"Ĉ&m= to/`If{}h'./ I02rȐwh)_+>Tfg?S}w/*~^|{I٦bXyU90{uGʩN}q71M7;}e!+V ޞj0]:jp?Ȑrc1d]z0LpBGeW59lGގd8ujz fsDF$)Sזg'mxy)LLDKV%2ub6@~'ҫv;zP;ڦu~+3EZLB#/:#YS>K\R[FtMGo]ljq6 K29|( ;G9>@ťU/ W.kHx8.bVOďj.~HlnҬRnc=GYMhm .>&uH{*@It9{yTBƁ|C/#8#Pl! -o'X|d!yIu Vj/Ey)"JzNnׄI8u` 5%)aHx?.;v[Ʃ(KhƌQq9" k ԩIz:>XG>';맯ɀxt`~9zU d| wĨـyZ52=2qf@I=j.O7#4pp+V()7ö:c-Me`KOl:,}rZ.Xl(v_yoU[d \؝O,\,U;K>y40[}s9vninF8bqHwar꾗4~}ZC-)ˤ FT+<[:ȅƞgE10~Am `'93Y~H9]PE ZrH& 7wO) w }Ȥ`~c38!Ga-{eHxϐb~]T`5'ɦ)@=u{:倕N_H2dТCL]J x(bJУ!K"Ҕh(g]+{7& 䳖zd Jvپ>8u%stEcuV&o ڞ;3|Uu71 $K2W48*RvU6p]Ny|HuXm>Oa|s_!Jz^(WqݢiX?7 ҽ2Z)ŃmQ è7L4UM Mc\c;VCtNRpAS{Act(xcI@sbhP~}mC1 GDgq;8d#שP4!S9 ;Q6+deN2>$y~Wkay}f'+O)j2ُ )Pa[Gʐi.}W J-5QJ,³g8bojYCfMH:\wG#cvxFub? %q>3 ʉM{.m*@:Zje*/dFGl>Su߱$͆Nm[6=΅VI>zаh"y/~kg՟x2 Yᕙ9B鼇cپL^ı?zSdqlCk i|{YVMwH *–OE \t=.7y9?* ҳ,>ɴz'cpF+m, a5F6|DPJGߌ%,ذkl  >QeSww6Lͻ΃5HVE߬ l^ζ}H Q3 ;%\a&Q &I $$hI;a9 \{rMJA*N*Qaɍ-&{T jT.\af}J;uً]7C~8$ ψm"{ͅKҒW&Hol`(7 vapwǪPN#TPLsAfje v*﹮&ʇTH~i=HLDɳQ2 ȟ*?ڠbz ߠGV7{4=nQܔ w($XW;tR:Y¸t+ lA3[(D^؍%]>e/My]8Ӓf3,0{]g7Mj)hZlbtB&E,KԩA>&P9H}*p>Ц粗)c{r!ɉi|h5R助7sM- `3ӒAc$Q4DYz&#OՋRO갛`,O2CMk/v,48rF A{.]H7X̗RZ T*P9&X90Wk4_Q>Z҂SY ib` x0kYaOv%,Ymݝ!1Ky]nWPb9b~ WK:j09jm/#/4(ls&¤:2fwG oX߻";āRd5^F8`t [ʡ=Gb!ԋSiϓou!fXg ! %DnoLݥlE7y@lp#@28ɸpw i+X(^{SɵRooo!N$W-ӕ\BOy9JvU: ¬dI* yQ $ز˖jBO߀ݵS<0WTRMfB iD}U[ jς+fE6##BGlOTg->B,K)_ͭ]]m] _QomM̒xjuym<> $ajr!CF|սp1lr ʼn+E6M u|?+s> L-А=0hZ.IddO _.|=|Ŝ]_i :>5GRSO-U~N$4`^$žqa~F(FH4fNq|j;(Ostwj38!c/qDKpLwی߇-#@P/r9 đ2stXRZ$m[!q OC-DPS,m ȸ=sM.SN^V %:9-R+Xp,mQw)?0.aȅY;x7kmJlU|D^pxXͰHjz2!j@idc:_eyAҕ,8)+Sj*.v⎁DgD$P}?*imڪ M8$>|I3\J?hCM52vQ ~Q]MYok嚷VhcE7/W ›Gߡ@bVt}{]"߁d.P^Cv[]nӒ#b>f$6p_h#ǩO `IbLiDzq0uJ S䱥9lΐ[Х'FBT"Hu$<.$E~9}xGR}oAGt?uP@/fMiٞ[H#ct=as_)@Ʌ$m<YM򳣛>qڼŮTnҋP["?5^6Yq޼<` CAxF=])nmwPHc7 s/SԆ(,IqKUsj/3@_Oԅ* Vgg{KUQa]*ɜ/UI:譍c9[reL*A*LZueK,k`J_hPwn~CTX5aYO {=zwȵ/?΄ vjQm+iu7Qi0;6B jarɩ&r¤h]y4>W|-}{7 :K\4MP-Θ)# \U!ƔodPբ&DW;Tbcb@0*d[[߃np|"@ `, 0`Jz'HtsNq9n ͺp .h0Bk ,U6OH0=(q-^]\\a^Q#Ko5dP#Cln8(IW-%}hʼnJ;PL(y`K-аn >hݒ9_; &M̏:P,9ԁH}񤅚(D_Y*Yb(j {RrXYDFEy&֯%TDŽ|a=eԬi0ji[qX[w 'S]^sI}"ϑPꗥ_Dfŭ$]JG[,Bzod4q쎏ކ{vvK)E\8wzC U$!q!791^ Ac`EB,z7v:+Lx]CXNUe$}KB<&r |U 6u@ E~E ;}ʢ.D! c>14hN)wQu+!6 ْsd8'h1˜{4:P3jŵ>9; Ke*lP nԍV5 34o~Fo#q[ mt0#ؔe͚x1CCɆŧ 5WQ~4tʠea C hK[)5zU Gz!ο~X|% 3x ЀцDr4>}/vPWt HIH]8\- ?nm O_xkw4R_B!g:݂2CA0~'$TeB/Z|g6*-dsߢ wwj]cw y}wF_k},-FOBT$_H#rū<YOTC*vE7vY#հmU{`H[ƭiڲ$B?1f ˜aosiN:UeKآ&s>b2?]IF gp-~6 !T  wEj=5z(UV$t*M3A^lYn}X:DgYZJpW#sC— Ց9ʠ+JiviS*;^+GĐfb vbQyA8 C|^8]z~%`i2ߊts^, E|x<>Z~~zkS`ӏFHTlc~Cb-^7E}m$Yߣ/9 9.)*"#3d/ ڷg#XyAR=T%y S~VzN$nE+d<=ޣ "˽6HwMHF횺]z1=L'r-fJ.xn %zܻW~4v]zn#T ~*yлu&X( B}ӈ_ٯٛ 2Z-*cgٔ3fC=4 JxٶĈƣQ h`ZClfJua aKp:uN"bwo'3OTXxi])G݃Հމ(8ɧ;O'K$xDŨf_V+}},`P!_f;DyE[qw&ґkC MȐz)Q.F85Q[onr!2Mum>Gp`yC뛂܇881]fŐz&׽0s?Fk|QFd6bN[yW$ϢgMOè n bdKA ;HhOfa$@G1^ ~BlcZy]"ggAw0mKR %́I|8ӣ-M#`B<0{PWXS\ސe>iʰ쫘6-`k m*˷XO¡3\%$0gU-З&cu{cm G(9؊D'PlT4zwz5 $^c > ycpRIYKu?;v[WvAC9XB+m`WTNѬ,6d \\Y]rهc&{_n;uF* AKpË'V o P?_։hSr|"WO6Yw{b6hwjԂ"6N*92펃{m*:T^U /CqnIo0:"i$`\<b&)Q3"X<729f?nΙ Ahm |uo0eϵ׸TYV4I/X9V4;X48d7Z)]pLMbu)џO82ho(̭o;z+ AttGh+8=ȇ5?gxH^fJ3gfP33F΁32>?Ӱ sUyzlA)G{sBLi _A_ `+&Ze쓎R{:HJro O7Om,h1}G2ҙihS=B_HbCx*bL B=1+6֤ޢO'Ǝ%H=HI5zhy=ܝq# mۿ1H ~b鱇M{>)@P,C&!q'gE'? 8֙D"U h?#=^[ e"4TKww1}khɺ/tt>Nz7~nO f}ʕHp`ScJcϓNFɅ'O†M KhLΙ.oqr?[tnh:@b>*^'psЪ~aRnuU|Z&{1\A^~Jj nKBm[-unn8[VHJsV+;TIF*n,~9t?5Ҿ =ùz5+#fٜyH8ٹ&솗떀'\#;NU\u-=ݴ d#{ѝ}qҧ8hi [g ~K ?aSvouaLgjxQCw٢TX9<*ӵ9#ws ;v-nWCh)eNu<+$6 &QzEGvf+(yѴNxI/5~+lbcn\7c{R nEַ9Δ l+݂vc}/3YE-&ЄǷ]!3Sʲ6auhmjVMxkfdyblLlJ? 'd%F~K wQP*,k]J|}O2p1aZ5Ym`o= I}˜?{;sdKN!Tc,QO!HX2z =[e%Fw8x-WO~eӾm͕a@`քCͧrriYyɂ H+;[Z{u*CsAR zMm!(GKgĘJ9kKeJ4wD!.;5XE8 q뤦ooc9m3qs[EBtːHUfmg'hXwIA:&-BXhYXڬ%|  op!? 9]<]0`~EǕfM K4"C)m4:7r?C>7{NenTo>h؈ zKZ#FЅF&C[=1:LM ;yD+`e@jao[QU''yV YZ