go1.17-doc-1.17.2-1.6.2 >  A aePp9|} E6wj͂W,;g6Hq7 D@$kzqAfev+mJt'mmR@IC`Ÿ>|N0 ݲi37m/$bE؅B=5a)j8p&@bLIx p;E$?Ed   +LP\`y     $ ( ,<Pd6(Y8`9|:FB$GB<HBLIB\XB`YBl\B]B^BbBcCdDeDfDlDuD0vD@zDDDDECgo1.17-doc1.17.21.6.2Go documentationGo examples and documentation.ae ibs-arm-3SUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/Documentation/Otherhttp://golang.orglinuxaarch644Laeθaeθaeθaeθ344c3190894932fab8c6e2296616b25e53cd0cd8cd759eed67dd0dacddb0474ab20fb1acc6ad2f7844ed688678a2e9e4eb71aa334cff171e84e3dfc448b4e8a6b452343408313c2e9bd6914416cac6f17c7ac7fc0e31462e382bbe56962b80ba203c89d2979ef5a0cb77a9090bebee03a7d6f7369cb026214b35ec476d90e835rootrootrootrootrootrootrootrootgo1.17-1.17.2-1.6.2.src.rpmgo-docgo1.17-docgo1.17-doc(aarch-64)    go1.17rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)1.17.23.0.4-14.6.0-14.0-15.2-14.14.1a`2a;Haa @a@`@`jkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.comjkowalczyk@suse.com- go1.17.2 (released 2021-10-07) includes a security fix to the linker and misc/wasm directory, as well as bug fixes to the compiler, the runtime, the go command, and to the time and text/template packages. Refs boo#1190649 go1.17 release tracking CVE-2021-38297 * boo#1191468 go#48797 CVE-2021-38297 * go#48800 security: fix CVE-2021-38297 misc/wasm, cmd/link: do not let command line args overwrite global data * go#48561 cmd/compile: unsafe.Add bug when adding uint8 value to a pointer * go#48444 text/template: should t.init() be executed before t.muTmpl.Lock() in AddParseTree() method? * go#48177 time: output does not respect comma as millisecond separator * go#47859 time: timer reset sometimes ignored, causing delayed ticks * go#47756 cmd/go: mod tidy -go=1.17 should move indirect dependencies to the second require part- go1.17.1 (released 2021-09-09) includes a security fix to the archive/zip package, as well as bug fixes to the compiler, linker, the go command, and to the crypto/rand, embed, go/types, html/template, and net/http packages. Refs boo#1190649 go1.17 release tracking CVE-2021-39293 * boo#1190589 go#47801 CVE-2021-39293 * go#47986 archive/zip: overflow in preallocation check can cause OOM panic * go#48156 cmd/go: get panics with "can't find reason for requirement on" * go#48102 cmd/compile: panic during export method expression * go#48082 go/types: panic in error reporting for invalid use of "init" * go#47857 cmd/go: module dependencies not updated with go get -u in 1.17 * go#47854 go/types: incorrect type reported for comma-err C functions (manifests itself in IDEs) * go#47814 crypto/rand: getentropy is not available on iOS * go#47782 cmd/link: wrong dynamic linker path when cross-compiling to OpenBSD * go#47754 embed: 1.17 rejects types with underlying type []byte * go#47692 x/net/http2: server sends RST_STREAM w/ PROTOCOL_ERROR to clients it incorrectly believes have violated max advertised num streams- go1.17 (released 2021-08-16) is a major release of Go. go1.17.x minor releases will be provided through August 2022. https://github.com/golang/go/wiki/Go-Release-Cycle Most changes are in the implementation of the toolchain, runtime, and libraries. As always, the release maintains the Go 1 promise of compatibility. We expect almost all Go programs to continue to compile and run as before. Refs boo#1190649 go1.17 release tracking * See release notes https://golang.org/doc/go1.17. Excerpts relevant to OBS environment and for SUSE/openSUSE follow: * The compiler now implements a new way of passing function arguments and results using registers instead of the stack. Benchmarks for a representative set of Go packages and programs show performance improvements of about 5%, and a typical reduction in binary size of about 2%. This is currently enabled for Linux, macOS, and Windows on the 64-bit x86 architecture (the linux/amd64, darwin/amd64, and windows/amd64 ports). This change does not affect the functionality of any safe Go code and is designed to have no impact on most assembly code. * When the linker uses external linking mode, which is the default when linking a program that uses cgo, and the linker is invoked with a -I option, the option will now be passed to the external linker as a -Wl,--dynamic-linker option. * The runtime/cgo package now provides a new facility that allows to turn any Go values to a safe representation that can be used to pass values between C and Go safely. See runtime/cgo.Handle for more information. * ARM64 Go programs now maintain stack frame pointers on the 64-bit ARM architecture on all operating systems. Previously, stack frame pointers were only enabled on Linux, macOS, and iOS. * Pruned module graphs in go 1.17 modules: If a module specifies go 1.17 or higher, the module graph includes only the immediate dependencies of other go 1.17 modules, not their full transitive dependencies. To convert the go.mod file for an existing module to Go 1.17 without changing the selected versions of its dependencies, run: go mod tidy -go=1.17 By default, go mod tidy verifies that the selected versions of dependencies relevant to the main module are the same versions that would be used by the prior Go release (Go 1.16 for a module that specifies go 1.17), and preserves the go.sum entries needed by that release even for dependencies that are not normally needed by other commands. The -compat flag allows that version to be overridden to support older (or only newer) versions, up to the version specified by the go directive in the go.mod file. To tidy a go 1.17 module for Go 1.17 only, without saving checksums for (or checking for consistency with) Go 1.16: go mod tidy - compat=1.17 Note that even if the main module is tidied with -compat=1.17, users who require the module from a go 1.16 or earlier module will still be able to use it, provided that the packages use only compatible language and library features. The go mod graph subcommand also supports the -go flag, which causes it to report the graph as seen by the indicated Go version, showing dependencies that may otherwise be pruned out. * Module deprecation comments: Module authors may deprecate a module by adding a // Deprecated: comment to go.mod, then tagging a new version. go get now prints a warning if a module needed to build packages named on the command line is deprecated. go list -m -u prints deprecations for all dependencies (use -f or -json to show the full message). The go command considers different major versions to be distinct modules, so this mechanism may be used, for example, to provide users with migration instructions for a new major version. * go get -insecure flag is deprecated and has been removed. To permit the use of insecure schemes when fetching dependencies, please use the GOINSECURE environment variable. The -insecure flag also bypassed module sum validation, use GOPRIVATE or GONOSUMDB if you need that functionality. See go help environment for details. * go get prints a deprecation warning when installing commands outside the main module (without the -d flag). go install cmd@version should be used instead to install a command at a specific version, using a suffix like @latest or @v1.2.3. In Go 1.18, the -d flag will always be enabled, and go get will only be used to change dependencies in go.mod. * go.mod files missing go directives: If the main module's go.mod file does not contain a go directive and the go command cannot update the go.mod file, the go command now assumes go 1.11 instead of the current release. (go mod init has added go directives automatically since Go 1.12.) If a module dependency lacks an explicit go.mod file, or its go.mod file does not contain a go directive, the go command now assumes go 1.16 for that dependency instead of the current release. (Dependencies developed in GOPATH mode may lack a go.mod file, and the vendor/modules.txt has to date never recorded the go versions indicated by dependencies' go.mod files.) * vendor contents: If the main module specifies go 1.17 or higher, go mod vendor now annotates vendor/modules.txt with the go version indicated by each vendored module in its own go.mod file. The annotated version is used when building the module's packages from vendored source code. If the main module specifies go 1.17 or higher, go mod vendor now omits go.mod and go.sum files for vendored dependencies, which can otherwise interfere with the ability of the go command to identify the correct module root when invoked within the vendor tree. * Password prompts: The go command by default now suppresses SSH password prompts and Git Credential Manager prompts when fetching Git repositories using SSH, as it already did previously for other Git password prompts. Users authenticating to private Git repos with password-protected SSH may configure an ssh-agent to enable the go command to use password-protected SSH keys. * go mod download: When go mod download is invoked without arguments, it will no longer save sums for downloaded module content to go.sum. It may still make changes to go.mod and go.sum needed to load the build list. This is the same as the behavior in Go 1.15. To save sums for all modules, use: go mod download all * The go command now understands //go:build lines and prefers them over // +build lines. The new syntax uses boolean expressions, just like Go, and should be less error-prone. As of this release, the new syntax is fully supported, and all Go files should be updated to have both forms with the same meaning. To aid in migration, gofmt now automatically synchronizes the two forms. For more details on the syntax and migration plan, see https://golang.org/design/draft-gobuild. * go run now accepts arguments with version suffixes (for example, go run example.com/cmd@v1.0.0). This causes go run to build and run packages in module-aware mode, ignoring the go.mod file in the current directory or any parent directory, if there is one. This is useful for running executables without installing them or without changing dependencies of the current module. * The format of stack traces from the runtime (printed when an uncaught panic occurs, or when runtime.Stack is called) is improved. * TLS strict ALPN: When Config.NextProtos is set, servers now enforce that there is an overlap between the configured protocols and the ALPN protocols advertised by the client, if any. If there is no mutually supported protocol, the connection is closed with the no_application_protocol alert, as required by RFC 7301. This helps mitigate the ALPACA cross-protocol attack. As an exception, when the value "h2" is included in the server's Config.NextProtos, HTTP/1.1 clients will be allowed to connect as if they didn't support ALPN. See issue go#46310 for more information. * crypto/ed25519: The crypto/ed25519 package has been rewritten, and all operations are now approximately twice as fast on amd64 and arm64. The observable behavior has not otherwise changed. * crypto/elliptic: CurveParams methods now automatically invoke faster and safer dedicated implementations for known curves (P-224, P-256, and P-521) when available. Note that this is a best-effort approach and applications should avoid using the generic, not constant-time CurveParams methods and instead use dedicated Curve implementations such as P256. The P521 curve implementation has been rewritten using code generated by the fiat-crypto project, which is based on a formally-verified model of the arithmetic operations. It is now constant-time and three times faster on amd64 and arm64. The observable behavior has not otherwise changed. * crypto/tls: The new Conn.HandshakeContext method allows the user to control cancellation of an in-progress TLS handshake. The provided context is accessible from various callbacks through the new ClientHelloInfo.Context and CertificateRequestInfo.Context methods. Canceling the context after the handshake has finished has no effect. Cipher suite ordering is now handled entirely by the crypto/tls package. Currently, cipher suites are sorted based on their security, performance, and hardware support taking into account both the local and peer's hardware. The order of the Config.CipherSuites field is now ignored, as well as the Config.PreferServerCipherSuites field. Note that Config.CipherSuites still allows applications to choose what TLS 1.0–1.2 cipher suites to enable. The 3DES cipher suites have been moved to InsecureCipherSuites due to fundamental block size-related weakness. They are still enabled by default but only as a last resort, thanks to the cipher suite ordering change above. Beginning in the next release, Go 1.18, the Config.MinVersion for crypto/tls clients will default to TLS 1.2, disabling TLS 1.0 and TLS 1.1 by default. Applications will be able to override the change by explicitly setting Config.MinVersion. This will not affect crypto/tls servers. * crypto/x509: CreateCertificate now returns an error if the provided private key doesn't match the parent's public key, if any. The resulting certificate would have failed to verify. * crypto/x509: The temporary GODEBUG=x509ignoreCN=0 flag has been removed. * crypto/x509: ParseCertificate has been rewritten, and now consumes ~70% fewer resources. The observable behavior has not otherwise changed, except for error messages. * crypto/x509: Beginning in the next release, Go 1.18, crypto/x509 will reject certificates signed with the SHA-1 hash function. This doesn't apply to self-signed root certificates. Practical attacks against SHA-1 have been demonstrated in 2017 and publicly trusted Certificate Authorities have not issued SHA-1 certificates since 2015. * go/build: The new Context.ToolTags field holds the build tags appropriate to the current Go toolchain configuration. * net/http package now uses the new (*tls.Conn).HandshakeContext with the Request context when performing TLS handshakes in the client or server. * syscall: On Unix-like systems, the process group of a child process is now set with signals blocked. This avoids sending a SIGTTOU to the child when the parent is in a background process group. * time: The new Time.IsDST method can be used to check whether the time is in Daylight Savings Time in its configured location. * time: The new Time.UnixMilli and Time.UnixMicro methods return the number of milliseconds and microseconds elapsed since January 1, 1970 UTC respectively. * time: The new UnixMilli and UnixMicro functions return the local Time corresponding to the given Unix time.- Add bash scripts used by go tool commands to provide a more complete cross-compiling go toolchain install. * Fixes "go tool dist list" error "all.bash does not exist" * Added to packaging: /usr/lib64/go/1.17/lib/time/update.bash (already packaged) /usr/lib64/go/1.17/src/all.bash /usr/lib64/go/1.17/src/bootstrap.bash /usr/lib64/go/1.17/src/buildall.bash /usr/lib64/go/1.17/src/clean.bash /usr/lib64/go/1.17/src/cmp.bash /usr/lib64/go/1.17/src/make.bash /usr/lib64/go/1.17/src/race.bash /usr/lib64/go/1.17/src/run.bash /usr/share/go/1.17/src/all.bash /usr/share/go/1.17/src/bootstrap.bash /usr/share/go/1.17/src/buildall.bash /usr/share/go/1.17/src/clean.bash /usr/share/go/1.17/src/cmd/compile/internal/ssa/gen/cover.bash /usr/share/go/1.17/src/cmd/vendor/golang.org/x/sys/windows/mkerrors.bash /usr/share/go/1.17/src/cmd/vendor/golang.org/x/sys/windows/mkknownfolderids.bash /usr/share/go/1.17/src/cmp.bash /usr/share/go/1.17/src/internal/trace/mkcanned.bash /usr/share/go/1.17/src/make.bash /usr/share/go/1.17/src/race.bash /usr/share/go/1.17/src/run.bash- go1.17rc2 (released 2021-08-02) is a release candidate version of go1.17 cut from the master branch at the revision tagged go1.17rc2.- go1.17rc1 (released 2021-07-13) is a release candidate version of go1.17 cut from the master branch at the revision tagged go1.17rc1.- go1.17beta1 (released 2021-06-10) is a beta version of go1.17 cut from the master branch at the revision tagged go1.17beta1.ibs-arm-3 16340620891.17.21.17.2-1.6.21.17.2-1.6.2asm.htmlgo1.17.htmlgo_mem.htmlgo_spec.html/usr/share/doc/packages/go/1.17/-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:21498/SUSE_SLE-15_Update/bb8014f5a81cf551196aa900ec1c2370-go1.17.SUSE_SLE-15_Updatecpioxz5aarch64-suse-linuxHTML document, UTF-8 Unicode textHTML document, UTF-8 Unicode text, with very long linesHTML document, ASCII text/:+{FbF+nButf-8890c8884908745f714248f0c9e6b2c0075a7ef1fb5af3d659cd7e507cf3337eb?P7zXZ !t/] crv(vX0Puj>mW0}r;bzkhqfRR_)^Z)B+<p EeS|/象6ra(N#Vc:B~]_2X`x 6]/,ИW[r͋av C; !]`)l%즤A9"m7ExMi&rX,Wb$ {OHwyX*f1 ^ŗ*ZvzƉcZd+WU, )#^ AqoQ"BDZo:x֨M& ѯP~ZC"=Wk42&{yZ4S ^Tm%]%h4Dj:zaL ӹc_` L{Sj*˭xi1`;4lfSmq1fFn4ųԝ$-}8B rSY7t8muJ yY -faI[T=%K$6ڢ Q5SF˽7eHmrkvnm,o_g< rͯbOeIbq)=Pj$ҼU5 NMlVt(pYj;92\lw2cNkO؃ Q*^KB:=dWUt ձٿa kd99{Le*7LHK40[V^" d x\`κէ?EᏦ?xZOxbNV fS!KW(R 2e\W n@E2D p"F"<fPLR쳱TKUS>Ч2= tkn~s?Sф_^;TY?U^=J?=^B{}Ƽȱn##էy]U;|"aWDm]Qwm!fSF9'h.= ݇>{XW0W Q7mLg:&Z+#xƅMXeNxxN>636A J̫wmO98r\g?ܚ&֖n:hh2 kDW" oA/M.U*99=@.v9йgq%8ê^QBXlS3JF{Jւy_<¶=+YV>Szɒ&Zpڡ> ~==J֑ Z]ɨN;0VK< 뇆#.5@ rF:Ts*g"8z' 1f'70c#6 ,^#ě2c4!^kղ\p>YR (]+QAHs%?; ղfǸ'_ߧMw`߂3vTf;2RM4s30rm>b~<*m5}0Pv₂I6gH(k?b9~Z=ou2^geLlIѢTP{HO_Af"ǶGbd=|=i+f +9c3`뺾[5xp:ojϺ4FI޾A|W{W>j_ExYm'bz S{|az&246ރdMۉ`<Ebݟ']f'=  ז]hec!cC,\ZFյ~Cd}X3Kf_z  *UNo/6͵^ˇʧ( m>@Z7JuLfYi^:~o(y p`z@eT`s#@MYjƒ )aJ}*T0RcĤ"1(jHX|vHKj ~39Ur gewkS.Ab_ $0|M!,-c$&hAyq|7U4V䛊žTing(oQ2w&d]|)S(Cx*vG@klYF6NB8\4gJWjE>1^xL6::$ 8pugO.̟nG?ol~ǵ`sT- {hESzUW*_-,ްAc_kwc=q평xmErJ||b` x/z/?xߘU;e;\Hт2RyzzIB{-eJL- !Rx #֦Ydn|@TC_ -ˢz ]GL%%U+ؐۻ~(}i̽ODª]h4`f_o9g>D˲HEpSp 8RYwNm/dH#~!V4D=ƹA `XaJ`"KCCejYV2n C, 5";sD>֤\kKctzQPenol-&zti rҞdx%jPę<,q_CV ɢ( pmYζpMa%BU;NTK;g ~;f>OɱsG(oi@繧_I2HmpP#+1'osdv8 /Ys^{dg1 kW%@fM12J)'\؅<Ѣfn3򥳪0|e< zv!NfXd{9S`Ĺ|տoƁqAXXe&GLҁjKr3pX6/Hѿi? ;סfi^J∜&9Vdg2Ej=yaN$J?\(.3/y)gKAϮ=!ȏST!QI¯}@a2`j)~8f gK崇k EѽJL(8|HE݇mƣβVU.٧ &"`6w]c 8S }{(o~|3`!*Eϣ|wT#2aw{b&ۍIAEd)1Ayk  ^)Is[;tEeq_%x"]_;PǦ6-j.:4kݦw_]*n]yW{IWkOSJE8G1̬/'"[~m4N<}x}R|j[s+; ߙJ;58hv|8IBf47s MB4łN`F3{F3?ԄߣÅGƘosR#I!-*4;ݙ|df$o9YVF7Ռ#Qo/<ʙ82UБ٢ȯUXJ+z]{rcܣe *މr=@ gHfY$zLs%p>k@rs(on!'_Bt:~̶XpUׁRFkca իH߻{<Ņ>* s)uq[x" 3M9 Ϭ&F'&?84H=6c яhOY!?54w"NP .Hca$A'C{W7e ILHY ݇r5bIj/bPD+\wFMEף@"0ڝQuw !} ΢,F |rDቱ?3_PM Kgz{|<9ͩd&-LVj Aj宮 #Vif@N^l DʌMlFMB7 esJ*/Crݕzm~_/J2ї`m  xWAA}joMgTB/|P"zڗ'K^1W^z,q9wB5ΫAo"ٞw\~ͮ:)FYwvE8GmG b\U"/@/\??vE H@y9CbG4p?@.'ZDsչ|w~ӻX)Wl)9lɚCl~MJ>Yp c]ZAl!tj};#{qm]NCeHщ: ӛˋHT ^ rm~NJM\da@i?ߤZVfaozC3Jן>p _l`ir"v:}HQpF"5NS ri''Q<\n ~NS$%6LgY}'@,;s΅f'W ځE2>NK hTM"ol޻2~-e#8'DO^` T/aj:~pI]^AL+sF:݈KK߄Z`)l?|!-fpжˀ* ߗ vwT Ѝ$*o`U ͜oE/`TSz5fnbGD:V}㚸7C%˂9Lۨ/9 m-۽5ص6f p!O)zl3 ֩CzLi\l6?F4##ϐ+ %KVtT& g>Q#QC$sSӣX&}jsj&y!] gk[. ( wOZ@e7qZ ~/cv0paQ'=5a_-Enᛤ & v]h 57 6ǔ!@E$7hKg|8Q6&2G:蒍pvogM'*lvɶ[P]5MƴެJÄu6GN\ 6T"~tƲRd0Dw/F1&ˊiǧ;b ś'Xa{ %455 R8%O("SQe2EkɶV%`DUWhgmJi|,i% ~_sؗv9mN|Ïr[] 5fқ4}6`35{JZP6UV 2 ?֑y{۴ \068k)ywc1[u6y| Ň =`Y'sK?Xf2ۣ<ɫEVҧܷUҏIjlc>+62NF7'h:SεTYb`m>U Q$:1N5la c !Ks*s(qg VG`V11v^ά/K,O]zt!gbHxj}Iⵎ]KK331,`X{&3WlvXK넧Sr+Whb8ѹOv̉w*w1 gwRzU`8'';mEjh S!HiD+52@o NFA"s7b[LMWWω=* #xWz\3Fo,uK)p'vn:酫kd qJJt(z9vk so %S׶i}#=pOTkƐOi*=o= :" V:iX!ᠲZ~>9W;s< "E/I5{֜&2Esj3QLc8 8"%{vieK.WP (TEf`>Lڭe>PdT&5ޭ,jI%9ǯjENb e ?`_h~CC[=zF9[sƍ0":07AG5۞= u2Foٽ!Iy!6GqD qUha%ہNCXf+&yV_)SS+,P'n2dȱ91 4O}zc?YK.2jLq|vC/Ly2( c[WP€Pwdw*hx8_rgG[^^8<*ڍqmJEBdskw}6]c?T> aE%J)G$f2 \eM)<PKT *N]_An6d9{&"Ci$,k_B̀4Ji215DL, xa!;UPRd&HmShյO0vF WX!o/yreRj #)Ta##2_gp6?L êlވUJ8 ۬)3|v:HY/\vs`Eqm 4~HjHհ?T`3ۈE Ƭ6yR^e"* *"Omm6Y`y2A&f$uaJAKPV]ݓ튴@;\x&ɜ/`>SfH~9hM^r чԎaу]~=T\Sk-а!Y"g rGϴRH<'%srǴMfJ ׶SQ*l#qxx@l~J86*&cQ2(sJ6fvLKB xJM K!LU/!@ۨ`Ҝ^AY #T{ZZPm-<=h9#/&+X}lPuN.b @!r1/x|"I|3BTBt+𶰐 f#C0UB̾k"!p%kt+2T\QQ7JʕakY1qث (oT7_ !߀ZaNt"#3XA /2 wv`uvuUA*PVi: %Iʮ![wԤNN:菤1.:96dّFC{6)ecj F펩cRUYN]rbyw@ *cz}kzCE NJ}]Kˋb_mhȾvAUxVݫhX^/u#Z&Tzy>p7edǮv,B-|㕱ip ] ڢs^#I<cksp@N6}һ93CRDIX7T@fv%8MPNz5[VSV_]*_aJXgw`h,7CJCya|V ' )KiuVV,vuX5;"(C8F"s_N_%{\9TLleyXUzl8WOc.2nh J=Ql `1֟7f"]ŨB>Q9 $%#!uvry0zh~$ A#X̮i0!e{r?{K[A'+|LQ3Rbuh/&CMܸ:*q9OEVmU|Rn!8eT H_*0X(߀N"a5xs";?$К GQqՁLw|l7э,<0ߏRܱd$v-7V$LVd`en'PB$h=Bpq`c%X_r"67_ft:rʹ'};sUU}{$ D&"ip7>ymI a*[;+&aA ?xƽCýW6ΥQ=#-c!6tl:E*睋B-'db+968$Z ^=*#2:+ÞbՏe{i-5QjK~vgY+5nJoR쮓q7ZXD{ )mq ۖe;On:sil ŽARS[qCtv]WQWެFAoTQꄶ*j(|"УyxYE/2h;t\IߝmǨp+$ %'<,jR.ҽ&f/NП}?ۦ'u:~!A4ZpUXܹq$kS3Xh/^K#a%9*`&bebŇG4d39۝fSGkMB<fsO{3PHahV:yQbZ%TȀ:Ҫ l =Y&F:xvOXksFjW~|ݤ*ڥP+U fs&QgH}kMrwwOz#*6JpVq1ARI(h2S)GG7{l#^ruw$9n.I$z~=Кt'uiv|bሣg¯5,j? U&5yrw;+ĔB2FΣͶDXUjZ ˮU}VJ$'n1Eu顶g \si4*>VS 9wC^S~2=_A)~U 5h-xk~[e$7qhQAͪEXpCo:2)z.*T+J4g[ww|^?哧v!W@DhwBqi{bByl3.mT Gnk~7 )k<0Z!mp)a[cۆ.8sbty IŪe>ȝk5$ 9ufhA2jPM+G܄ecYwMѺTN@$VS ʼǻ93O"'&%arqig-jJZ/A8w╚Dze:gԻ:j2kc3&䣁~|5Np@pF5 +-9MϜ1_E#W-PsJ6FÏZnv!(%K{Nt(ˎg:ѸoΌ: 5iƷ#MRN`B!7VTVA}n=V )e킦"=PSG Qi U|OԾF5~VXgP91sWCȥ'gU\:DQb_JOϋ+"~l޺*,Rѯ'%T 麡Asc &RW_ҩ6^nYbޢKIA؝H/1|.%Dw/?1C۔  foϖvE#Zc֌+<c.$8ݸ(aՠWwT~;#1\Kqix މs#ZGKE&'R(mt%=:VM3jHlˊF'0uK7|pvC?{DmV#Ge9o߿`KnqI:,Kc|FTa=X.PJ&*yD¡ EztBiIOWpCVu/S E 0,J`mH%ɱT2~0־

DFߘ7`; `DlNR̃,^8~x\ÌD? T*U]ɡvQVf0JP<~zjRw [V@v{9[N])6flU`,.ԋ-) n064OAbI?Upn( cBSU?qED^z!K"x4kE<-9~7SSQhpS03_b^Yꦽi2ΛejT-JAr7u뿯DoGwGTr"q*4>^AdrfsTst=%ǰ*3Ǵt2Hⵍj;w2C/Z{' {e7C8TĚp+ _5&8+@굣.O1Z,'ⳏ06,>;"g5>SRU& ` LW<:N%PfEg{L\Aej"- a a|3gbWSoÛYuf6@{s*VU{iK+'qI^ɱʺ*]G8K7סӕ@!nH*ƞWF dOOыY &LI_"&͜#Ztn7\mќTŖ1c2}u ʺv ˿4az?O2 xqa|VCj"ڸ_HoH8 qKM f"wkɴ\nKd5 wЯ2 Wo8nGRf-Bc?;H"?~ϾF_SGTR*<ʼ~S$pb[\IfsJB 0 '~b(g.МS"ʐ?'*XM|4yߡ˭ (KPv).,A$ }i?7ضC|'a #^ 嵶=DҢVUR% 4^ipH"jfI- 1f_[5;lU\\#5 Ѳo}5b5-$l"0 ׃xqܒK+1i *:JGa,{")zvʔDg}N[d}HIBo?!otΐ9Y)1Ԅ e S_FB(8;֡%(@ 2J.L~bGZJ8ЬhG I:)y:; ]ӆ5pe1u{=_Hmʛä1ߤ!IB&Ls'}eUcBMN|!yGĽSI|eWMh!)Qkxg߲ܽ̏r~ðab:e D!]7dju#5;Vtjr)h%LPf>䤱m~-9Skp㲃B_:M;kuu  ƃ| MrpټzVG h* bˬ @LWV.6$6b"3JԧL2靱hYz:Jt$./ؗs8u^!b;K{9 B' ]zm{c6\6W*@.g1ְil>XGh˕i'E!YD8#p=KH%O} ʵ&>eg, mȡ耠FU@O]1=eX=?Q]ult+qv}|nyt%s-{%ntBDf%Ps1+Lfv Y@ G)5s}Wi L`qI\Vl(Doy@똊ĺ`2{;a344|#7;ȼ7fPPˍ+t"N1\S]AKLK\w`ILvj;wL&?L# %RhJ!11 C[aCcʽDՍ8 G*}k|1wpjs5v>M4N*INǒ#\VaRH(cSͼKG&S')}$Z j.߂Z5+AbCz0  i+7q|g"Byʯpd_U:5KSCO,fHXmR+ܑ/š;I8oBU{h|(y1}\sY_f]ԃc7"l)C@@X1`/D]x?E@ Qߪ2U]:oO#y=LVWcVr 6as⫩>`9'ZXgN/-9T|ݎnT٦vU {N|Rw Vrh_U)N'h_$TMNsk~ A1gbPP $ Tb<^ŧ87Jw k|3jXr$̋i5w8^E%in zY6l+JG 4t,&`x/gs9e TŞa^1mΦM.ef/{r7HCQRcR i["9ʬI'ig]pw-ZC ƽ_)2+dp4 !vbGA;  (FJϪXs*\gWsTqhIr`-W*ytT`r[Q,Yf:)[_>ꎐPϵk'\KC׋ ʼn O^`Td(^Y{l9VnGN׉-B|NqL!9,V%êTXD\dJ8!=yĻvZ8mle ȋM0 erg2E_ LPJzFr*hLHiF'HDH,kwoc,^SKȠ]f2|\ es%}kcPF MRLpN/\K }{b1Y~I"w~es|Yح+zB ZC}e hDijI[&'!@J k$N{^>,`V̧@_,i5E }KORO$_4Lp1>xQUHNh&@! Eg|џ>u]Sl"1;')8His4W:3Ix ֪ӋG"D._S*N #EJtSA:yBČ+R uiryQclR ojV:’›?YrU53jl >Ǟ6WM] Gk!mVYg ʔ16\Yo`Oj[ ~G$ 2e&8T<$|!҃z+&mצS%h`ߐ Wk}Rd" ,/7Z(qd쑰B(h?[*"cBLTGf mYYO63zq֔竷ͰR$30/ʚFsAGX"MLx[wBYF7?Ue8fWmD_PӮbQ\O"GW1UD1*^ -/a5&9_^# dޏPfW),R> ScR^Gt%~k͠Cil`M62E\! cJUfVz$1xX<ƭSXA8قFPlw=2xjoWwk/z wC%͑Н{q_iFa}rs}>Un ^fHQY*U 'ҷGS+z)cmꀩyvH#*|;x&>=jSw^"g ʵC铉gy p0w`AtAtih)5?E }'I"iHҼPA ofAk'`iˈal^BglriҰEB.CXvN~(MmoBy횋|i3̿9d%[e!TE6y+BV4FJjeJO{|d=I4zXSwbl_Qiq ]p(qZaC18 Hq< ߽ŕySx6aîCqiN킾fW\A5VeҮAG[3e[DR3MRc4NKca81+~"K1*FzjK못H^LC pMߤ'X+Y'ۇ dKf0T; JiٞpD)fyөBk6sKnZg\W\`&, .!o 9 ɀ5rV1 ;B)v )}'{L"cfChBj5UT8{d  SBb|k,`%i: k[MU Bv- @{¿T#pw3Wj㒏IF/8mًJeNy1=,GcoRJL5~52;|J{(Ii﬊Vn7u2zl`}%@ PF:ZђٰyB#˭|v5Ώ~!3y'r{sR?ؓKM=*h^e^o04?]">'~U ^kҜysh.v-N}`LEs1mT %z!d# `p Ýl%\ +{˧A$H֌۞ ($;uT(PL9 ;i!Jm2m4OF~MJNAxma88b[iS'ubvj"O8B!\n _>OZÂe r=o-#ST<7Y% |Yx-Ѹ&N-29:jx[h׶ؘ݆1WMi wr9ήdz7ܛ8<pQI^6Rzj՜0]۹?㝙hF 1]]/1+'+(oȷu[UnJ ˑVCg788!e `p :)4V;ə PYϒCl!8Xe5}mJ`xKlۜ#ݯ8\#,% \Oe%覅fK+d߶Q2bhZ*$i*mFb6G}Lª`4EskѿQ 5{Kb+0 nz։"ڲ~@NzPI{*hqt%TZ kFD1a5gJގ$ɱfoTř釮q@dwr@CYkbgd 2k=!IglAX&h5P6I|i&jU ̏NnpШz_45䚌GI16|LVX4^&u2?X̻a<h,BѤﶈ qyK? uB3E^ɜox $0%Lwauǁ B$<~ ;7'GNN%APc}G(KR26VFP<\VwfM{A! k+pa.T |HnTT<qk_]{6L| dh)c\Ԋn[):{0X Ƞ0:b/ 1Δỏ:榩45{P-Tm.ďtZM n[J z*!ݙklHy Q<@kK+%vDtꢳ%'01lT).oOdZi#fA]G ˅O/rVQm"gD\ C@.tɣ<KE>>R 5k\&V,LۥAdqs(c_dFțL~⃲r@ !Wڋ d0@72,6损E UD N<)!KC+Ig#Waoz%tH [b$4%#AȗJDO|I,ꊐ p]~x+7e<ؠ@_ D:gò$ʶumZ T Ǧ]7ޗH:k{c~[|g.O& |geBZ<נS8;lŸӧseUzf U4`RzDWi @Ass6FDၴ.>y}~5|4s2)՟dY? (`G&' Z&&< ,!(<>PBQm@[)$1E[Qƌ<'|a6ғ.m۝Lߣz|wJvb3󄦉 :F[sh,(5nEtYiC]VLEPdiO|I 1Ӕn\6+r܇9m^gBׂ<2L8ޞN UH0a-{Sú2n-^P*  O0 TwzzҨ#C%C@r{wHCg9r.X#ېMJ$̿#@ęJVcIY\O rk2hLiaP;0**V\ ,KLd; [ւG@YC=HZ{@aHB5]?; A blv toй : T{n?}OWғl;B_k&7tZ9bQa}  /Kѷzab ZB3)6:/פ>&NKrld:|&e"W2{5w Oŝ/&MkHQ `ہ'٥û͙ᛟIr".z'W4PP/v1)7NJS9Rׇi+qQjTf{uʛF&&QӨ(O]wpIE)($,*AFFDheSj=:N G?!rZSBzGNȸux$DsĹZ&D6!"q)x7TLhz`0#Q&l63bdj}CkxyvEgτ*26${r"iT@I <&;IX"5E5@'2XonTcMrmǷ%ÙIR3XIڱF;QkTGH;dٹɖhpxs\ m'R]<20_Pw\GɈ ݬod!fN,9&HaF51 -[ȜpۚiXHk U0=r?ķ-_F._nΜ kB2eq/k['xTV_9W9 Tअ*v#)lKE*$7.] ttո^5L f+K53z$3}51 ZC}h/j4#X[ȻIpqgͤgu2\7nJzC_;FK jBdoA2Szl(n%o@Y \\ъ} |5ٗ؋ؤ@l0-9UMEPtH !UM@Yzf*0 6p4LţDM ';m ?u:i>uY; ǣ0,7酀W )#(μ\Vӈ&]s/|FnQ4,{5.engCiCƎ8 'AZұ;-Hx@J0by^JRsBԾZEw/[.Eg!Eϭ`!MթSv,G `4V\xGgbo\50-Y߳#mq`hRjx(a|~xp ,zl˜rД!c B_0]Vq1hnK(bW .r rgq0k!PZ&e:ϚF3Q?0"i -kmh)2Ew 9h&ahHc8R ,_BwU@\♮^'߇r`Mś|, X,1xw3,ǀ&kReUT5hb#Չi̯pTLV;B&Jr8]`%G`'zzB1Z^{.lWtr:Pj0\fr)#|ҩ]UJZ?d-ȭ?WF|NU0 4^kT\h4z)e=.DGc~W34@U#yKeT8Ma@9ȣ"uޣy-CcM>\ZrJ.nU3%5wLn8 m$cK*~!V W\Sw1*C1(UϝgyMdΘyQBjG]2ݓ4 /vܙjelEE$~m1)K¢8 Dv[.)!B,QC6@QjH!X91|0lOk!z i"vޒ/CDؔN ޯHt؞s/UXQ L@@vɖA7X,cPACpyn!{)CFcFm8|u+ ?l : ^nm| uU>e<̛aewMn?BE,)E5l0wl_,L轵q:0N%@IvvQg&DTxe 4H|["%0][qNK{`\Vvz"7qm}Հ=W% {O퐄Q*zrr[=Kf7|C{?xH"7f-ux{-5^4"$> ;0jZ [8b/8 #TedA-(40GO]R^0~mO^L6S+Soue-pW\\%|D *݁ } F?^{p >6H7ƨЯ${~2iw R ~J_&9x_8k 1‰@C&\"F sC&Q\"ga1cvN.~~T{DěS:¸!E ~e](VY Yz:OJ_{Bqۛ8i}zVF`iڦ}ǺO)r3izp\և_)-RdLbzEc3b'2,͕ݱ' 8J:TY+AՎuMsJF O;Z vUx̶ Aøzh@M9MNܫx6  ?]xd(Ia-ښ>0)Ye=3w"{3Nwhol~:F_P$~׋ qx\^)y.ʹxޮexx^Zjcm82]2pxw}cxn}dlv*RTK63bΉv^FR8eIrTP@Ý,a8Z/b\ѢϪXz'fEe/VG*q  }gώn0T 43. \(̣LQfzvIɇewn# ps9y]xw/tR Y ml>CH^&(=b ~$Gg%,yCH3X(6#79j?"Hmԣ)2a xk;s'mmS̈3r8=g!_,,>r c9JU6]`_ydGwcx3=:S *xMJyU=CdRvׄDkJ/Kǜ5= a2DgHX=~2Vx iTt[ڼbpf9ܥژ\"bD1feҴM-pQ)=\|t" w6Ջy%Fq5RW#8$ 'RfϿD3+:BY3 e@;*%I'6a?6 GFvӑ)~P_L`jsb4R M\ 1H~+WNia&V K+b"*:S;*?U Lq|c*3JJs<=ǧș i0sPk^ Y>a( ~%2^>13:hjLW9Sb9>Khi)W]KpU@Urҿ0?b`"{]Elݐ)zq`vKӣCc'zEVs?Kun${ WE|LBW?5k&yU*Ah q3J|LV}:(c*L_nJi^Eh[i z"Bn1Q2iAbϳdSgMy;0YyDOyД\l gʰ,"HGcȕWݨ=ثL~SQA|n\h'JgdN9K${/0H ~;4"@n;W(@lgH.?H1XXǦ>ZrSxWH_βK{H4 Z@ߑ9?S֫n*sʹH4[>E>.~œ&`X 8{=tU' &G* ]yw35`^VRU,SSN+%@M~Wi Q/P7(G=tH?g!+U5/9=g˵TkpE8LҊLϪUDBK^xGGvϳ$);;F7%ki <2H7qV>zPR;[^S~Nqrc%zMXޣӺj(Hr(^g7N_n^0 j:itsWhN2oC{PpI, DfODW.CLvXOQ)jه Պߜ/dWwAo ,gӈ]`I3 '5+&(gi3|!=-[dH{HmqjLx5ƻEz- %XI İM7n!w^B5C^zAÙ }RE2 eb/ 2=@>B۳ B"dpLIb=}=g%8ec\.w*9Jv,(Q}D@ <*yS$|Ѵ;Sd7}`7rmƿ#u=޽clK_A}M3p<(qb@4CMwd׋^pbuf~?"!$\$nDKrEXsX" 靣_`g:UD5'Aёb? XIb5w 209]܃fU|'^/0Q ~0xٖ_ =f%<2Phz-TnXƥ"XVdWrVʝ( MȖb$8okkwBY*b}W&k-#֤Q=$.j:PWR >9]O |r玘چ0\'Rn(`Н8TA|Z઩hl畻`TnWnasW$J Qy%'/ʙcrIݰޮ}Dm=>jQ~3y?⩁ [%dd"+@ 6 D40gmt 8 H6Ƈ VI'^s݈^l])- 0iYm6K$\ؤmk"U`h~G (xe.Oej4NU?viĿnA*' fS59jM |#n0)Jypatbrߺ=9cA&L¦|ji.Fr:jw ^r?jeۍ\d|i KqUz1`CϴxPl7,lb˳hKl ϨQs m= BzuYڬPdBzyA(3S 5iw Qaw yxM;]?~Ί5TѬnΞeډ&i*(^ bX!OӐEdz'4"{_]؍b[.nv(=x!Jak>uZ ܴnaʗȠBPX3zH8}--?i&R]j1IJ=" uzAÜ&etդ\XBx܄tx{9_^mY^>$t}qXoO{j./P8fFa)d Y4|a1h"ҟ1s:y*5L)B0u) ]k3* |9IdkF8AjOc?F1>&U#Ț+ E(,b|hA—T %B S\wZתKق!yL-K t܉핵ouű ܹ,B{!_RetknvGy^i+e:>LD <7{DL{#Rx eCiУf qA2:?uyR ۪tlK 4~^ jcפ*+M(آ3L!aZEDqAn~L.m|V+ڬ?F,2ҵ՞@X PbSNUVDCg)pw$|Kl\NYB@ׄ ";UV3%IXN$%<_XŐMr#wZ\1!aI`"!  ŭ*DA6Pؼh$& ) p՜m羘$l?oSU} <fr/'&ξ y?a4Bnm?zة ADY0[Nȷ/99$2*뚇;˾ԬpGjk+Ws3 jI /gJ4¥X3ҥ * L8\ jHA‹{vbPo#=ۙA\ٽ/3 kzI =c$AHF"#78f8ug(}v㞪mێV+OhXV㻋yzbjo!һ .*Oy+dr bmC@wwU q;YBG',U':)tX HNXoe~c4=rM{&+4<&FZwrIQ=8X^!]ϼ+8 fa:^8Iݎ!€Tkww"z Q=xznok͟%}荶A8Z> sPxcX{$ui 8^E IR`#AS᥼Oϰb/FiG@]e-yʞ;C{iGqF6S7^J{p"M0ZYiєIV p0Ĝv`gjN :G,uLȑQJ]Qͮ ,xp0WaZSiJ>.|(X4Du<4SVH2 ;!ubrg#S, "Fz&E "DĠ~HEj!RI{qb\O[V{ncXλB/og_p3)[Lőe}SE k߅(@Pa ^>)ٵ*%<!]O&\Lb?,QB? aMz)\#|ۈ\_9U=54(%85EuI!Jd>.M~N-M!9ÕWԯޠ7A[,K7./HZpi/ˁ 'Pd4GŢ юĵw@tՍYV ʗgӝ'3 WukORD%k@4 neJ L=31&1D/M(-PqLTGOPeäyE?@LfrzοuUӜ^l(K>OR+n?RҙU6$%F0\Lr9c*=nd*2xhuIH v(L@D7(j<-d'zRr҄դʄ7^MίVNKilK+!J*# [x6\rjP!#4F ^ F/^XH1R!;.EFNd3@TyT',vD8N%X}?^Vڼʅ@ .oz8 η [cy_|xoW;bc| e> HuA*P01{"2IRAQzݔ.aUTz⑜3FtRetm1d7AoVn^S\?)/}(~]$Jkfg 8W(>t g@Cޜ~frB'“4: fiGhS#;v)@W#j1Nmü 0[YIţ,<GV\f y8D}!QJ,>w .%:iQy6m}XXMP9`y=E™j;䝮ʣby~01 dhGgUS(xv2VPT2p:n{0+`P>`'9!Xm±!?lvPJޠ2Jl2vܪMMÀ+8SE|bFM(8zt6ŭ+ҙ -_p2Q{]ĩQ G |S1+/_2 =Q[Ný% M iì.V>Li& :ԧ<{V p~ )&,wKN+f)3f&v8 is•9ơOj)jg~?c%IJrąt1ntSV: WD{pʐ0k-H\%!;|@Iem0i7óH:k^sof&_Le]_qکƌG$q= I˞m~0YzW$_d_S1)+4 TZZp*Zy.= fs_4 KKiC<2:pIiE)"xw;"!D80''-hr &!ΛkPCjT( V9bi BIȰhyMjW4 Jn*c^b``o1TE/W%Tx;߁\2`ZlgEH7iE0oXP ܲu=P%c5[IUsj"?@jyu7Va;ެA,qtLقHD8 ' 9hff6r5RRFFc1ဎ_`uyBH}@dJ2 e'CϒX1eY0쵦B8cmem.Š>e$c#Ot*?E[fTDhT矒r%RZU<{ZkRύYOsr!ّe[MJXϰPjJKCJ`B>7+ xx fw!aӅ*# 0}+b1 lkFO5[w;#3V;juOꌚ.rzlDmxi;P} lBn9De'^n.'Z58 @X?'t"FYkb8".FH;WΞ@vIO-K.3~R+q's{6'ST}##m oV&޵CR55Y!P&7Ά 3*6%,ige{K[=n| AV ]M<̗AB6.FدHF]M'T-ȑрUi*9WRl%\Ǭ醾 r[Pgrs҄F5ߥRce"/Wao!N]#8#_wt_A#DO2#9|\A9CAm wT4`ȼqyG~I=hSAi)Pf{N4culʘ?E&^ʌli)V!#&KM{ $ Lybxص IwoU[[C;B@R~ҝ AAl@ m;pY- E1%uM9 8.g߬7-Lt&NJ.O^~JBmg)GP!TRc[@Yu/[ڦeI1]3l#X*Q՜*pN~,8,*b=lJɂՑtBur`2ѳܱC8\IVY7hi v<3X*Wrpx\JtPh_(cRܬ~Io:߂ *` L3$1ɱt ]-򍾺)/:AE?>)g+=UIas.M=:B@M@x (!k=9Ь/7L:tf * F>: =J @ ZA8C5(UJG=cU<>Fy%u"[xa\f؞ʴ9n (D%B9gv7<5vm ؔpu:{HaĐ"s{wd:71s`k`X{)3^=MP/웼)$8DL8׿^E}iQzZ#KVo{D`\N!"v:Zn -M iff ꗲr0uσt!wwh+f]]X>gB\5.:Acp[Xe&%SRW#6Pm73>uFUl!x<@"sw N>lfn"M`6*wE"aHP Y -4t78C1jL4R+V" 7%斘v{tyOkp>VTyˏ ZwYwE8;FL`^WttyKrZB/|ղtFFt(fr8Ȫ` q8ΪYn~CF#WpF 5U^aol(JphX;=Vr:QbژxwJuOɘ`"7O!wkc4J*NjsU*SA0돐l vVz*0WԮ&nO)$%}A<nO@r*SZ0jJF5~~'v-}b$g'L))3eisX@HO&q-,{G!L1d-t8ң \1P\ fASΉ$ų^^gbcf۴p/sJvXyNt+=\CnǕ<7(7Jw[h#"@w8~Iʽz'FAh3GZֶnP\~S [ 趟. b ƃDY\,O''v!J->^JmvM;^DUݭRc$[dc'lBH8Fa,}]L.2?g f `u '0֔w=Zx VqV)0|2p Sf1(`36+aCoY 麦H; v nxwez&h uvgxRhQO* _ ^2BZCG |IXxPI8)mU-_1&iqN8hj{59Ӡ@17M0r)(Oĉ+`gŶ @0QL ]ᷔ%à`N `}@VŠHmm<{ߠ" y\Cd\W7˪L)mDyBtrkGH4_1:t^'TA7IL+jw!aJeYsp-L2!Ow];|byxq#H ~}GE SeDu96BdwoM$I}~3'U^2 l0>ЪOt R-'4ש`'b jzYH HLF6.vJD+ww?Tδ,uSLIBq*DWd ׽,1|s k5εYi%WǾrAKwne 1hn1 KG7TBIw(60`C03}1{U?䤏B#j:a)=r;M/99]0 q#27Ol:m&vi-aDxlPVJ snkdcMqF7CAsR1Ru=DK{ӵ/t>Kh &>He`KaTZvrJ|̒[zG~)`!q xeU[K:hXiڕ/RE50u6=Z[Q5ʧ ͦw(ҲM_,9vd@X@r TS5n3SSѶ.|QDcHj Ƚ7=zipT}ȹ 4"Óԏqta̤1 #Sky }J"ؖ8wͩP@LW ݑFXou \2AyC+ Vm(b:JA[H,,`U kT~;YI9Աbrt#E{kJl3 ֳ68澒 bm>Mf]63WҨvrڒ<<H&Yp4E{+h7NDŽ^NHx3ڑ®@[%lwt+هo$!7Id6'"S=N!+6yڬ{qrC':\}q!::%.^k=y4GB3Jf~ _N&kpYN]qC/G: v;sHhzuF{J+|JUGDi3˟JE)%u^;ʿMT2G"߽7O,ת~Dh XG5՜"UZU!SZ1"i5e5y9_.:Ll:{^όq0/$ZoCY6oKlK ;Z *wNR5[ˈ0сYh^5mmR>^k;qKtq'?TopgJZşlU=r>υ} uB⊽H#`4C΍žgX#a-~5N%#{NxS"|!fY{ZGec_xb l6#êc[v:Y)nK/TMCqfpSoR6TV<2c tcԎOKh+Ծ.G` IFSY&ډD4gwiTz*>C 8u AY0 1G@#0= Csld̈YQP@OF&W]eWRC]=R̋iL妹tce ~g.Lը?%'H;!OyeeeR!>*ɘIƘ@rY[\W~ J T~ts%fLa8_`$;΋!?TTwi Jkd 7j9+?%Evn9ݡfbTO,T:+xvQ:*fԴ&;_<#y?ZO2K1w?]Mu  g@pZ]kt9>=У  Z2%Metҭ/>s?6Cw(/\#֞ӄΦx+b5yW};AX },.$̙2:}#_tl;%֏.ρy6+ly󾎡 U `-}c(u2eР^MLMHẄڟᱬ|YJ{U['˸Iv㟮?~CSev$w M;S%cOAZ%;4ۜ'f&y'ŁER|FJ ׳KIg{Kr1}u^Znn>-{~ݴ)< ΪAFTda k_T/>\vńxJDI$@QJ@iMGAy!Z'[oMzכ] Ds֤%\}=D2"ռoZY5yʧ B=Xi6o-mbXcY3šlq=S߅F.'$h4+ϲݙƔRr.q3N7(n垽3d]v:XE!d`(Do# Mbof% flVcweqvH]%"ݹaDi,.:PQThR6GJqӾeQ 4[84OFҬIО`,:6JQ'*| KO:}ȥxQ"vC +s!6dS/duj:T_%0-0X)-}R>Kx Ir+yD7kT_Qޘq޽[M.K;O".XbcٞOݘXKqϽ B-B>qh3AnYߖj"Mg#:B>ʎk _ڮ#2 况bbf5I9ulAeyb#"AH]w*^ەauM>N_IL׼!Ym-$"D7/M6A3>Zǻt5+`UF+Q*W%Odf -6ڐZ9˷3ĢOA=|kxȎqVۈø>a}<|UcUP [Y&*Gw~Pʒk#i̫!6Ju8oc|0r<(xGl0$#m~.7$gӐ+h>͉5%>F0!PR(Ddaw)?%FpQ+Y>cK3%WnActQs,t>LB%WΖGL`Zj=^O*4YMxy28Iq,{HjZ<%C;iU`L>m,*>%^ħ*+wR*p[x*R;cgZLJ9~9(Ա$qHfI9(YqN2WJ?itF.-Eՠ5n )V7_xk IzzCFT䴲maORy04 Gg7t3e/ӾזֶB|?n@!"4xn\hى SGQs}.o"t ܈n r*C|d.JV@K斺#ݛvVlpO{g 6>O?(@dxXd4r*7tctͅgIV\6F$4bKҵ"Za~B|/4)rn$\s2J ,nT~'cT6UY&/J(%pmZ]𜆂7#.Ub'TZ"Qn a2S*yەøyQczCJQ,CްC顾g|p |8H\V9Xw4~NnDMB C>7: :b L.E1zmcv:,G_ovJ,G?JuͶXo$hZm\c{M'9~X@Ƴny4ZJ^qS"vYlAm?Ug;딞ғdŽtR2c|n{d͵dH~1k1uzG:Cښs[Nh\݈%XՖ`s5}6IǥcTǵvQskkr6ZnӯS@'\Fe-z s)`5RB]ϒ*YI{`F׵##.o~E-pJ ǂz5uO* HAYE0;H ._z@r9UȦDx,edm 0Ʀ9q_W'h8#ƹ/JbFq1Ԫ:9ҔnIUߞ^i=4\§AZ}|TCKO@^@R"I!3dC` ؾJX/Ӕ=`^y lVymn!CxC:}#A*;V>-S4{Fō]!OYlJ0a/^6|0k5雐T"Sw|*uTۓtɾǃ eB][1Lȃb=K% zPK!$l)UӜ 6P\Φm6Z8' 䭑~^ISWY,>R];> x Iǒ3靖/KqPũ'gluݱʹ?R 39hWe8JصLJV]@ lNkJZM,i@9!9?-i͘H+\ T>lXbN5Ő0=1 nl=6s2%Yv &z,,P22 >h0چ{.vT=k`eJak̏pXUoȒԑ7O`䉬l}ͷ̽ic~{+_&ַ}HM;6S-sW=[OVhLŒVzi;,m_n?d_eZ"+ j[i6PPܷf \M],:OhCsvJ WDo^=#h 5״o:r/HkWk:x \3jyKQ IAt5ev𹊒dT,[{d)&1YΊC45rF;$5n@O]R$ ڊN}? q0& %8蟫K0ّWU`9ƊdsͿDQfäSEhEMP x+ƦY&v ՗L!「tWtv8(6 + S*n1` #`}ύ7VyDjHwqkDmRu< ̵,; $^C3Q7)H15W LRRt͍Uf旑7t|*wrgnMnAC&TLjhEkίK.1] E +6*|" pHo+?q!E,Eh $)GmSSp4+3ee_RsA|^,( Fz);e]>_X`#@87oT]EE .BEƺ)'OSto5Wd )͢KvY<'Bie2]=sq<{PGfۨoOGJ.9eA]<ѩFed=Vau3)'CP\;%taK/~<#W`'J "v9&5w>kۈQ:eG)Rw4|L1BөA΍t+oFweI 6VLݔo1]$5ԋJ;#Lap?+Xq8/2v?Twź3BcA( x&3S9_c8$֠8m|s@ڮ;'!G0Thm:6 aTJ _m5lNMplK f&O>jgZUX*3uy*/Oiꂀ,Gh¥xH; [8$# N yYt˘"q׼¿."Vn`t7o`v62l|B!5TqWxƾ=: 6f<{ & f [7T.{c :mОF4!,浵hz5gUZV_?#멹=y9{KcBmۤYHO}KsKK^⍷8ZG=_>g,o$")>MħA>PWOȘ~ Zn]$n̵3[~ccdmGPn(v5Cוt1گ1QZ˵SD2BWo;#(s%~n=086|vZ;m#htFnYh IQaZ<+>`hkXC[!24Ven aIj(uk(?$XSU_cF`k w _1 VxWt SXրY'5O~ fb;[GT"@#(<ڷM_KIF5@X<Qo\`ts8sAe(R2ר0F ǟC7]8շ?n7"a.(pRAn*368oT, > %#A,Vxg}61'j I|8TG?{n"FØ>^gM2Ui"G^igsi(o*Wbg_M"~~#9!1s)eUXW6 nj5m3}c+&ֱu#~4$ĉ]U? dMW1| 6nu4AdǿDݘ?yׇȏ3~04EY`\o"Rl!NeZ݃98G*&n%U_~6V[+QnTٝjgV[$MbRJA?HL-itmv5qtx՝ ?%!;+ 'D*V]w2Ӛ%Yz% )[(*KB(;A^8=f3; ~ ̙_v _hy&Vϵ1.jނ b'%$R" 8A\5W٢ζ~6LI=ڰr}:Dey$uF%5gǨ4tv$ IV߼/c4 bmS[wAG|4"ח9h*6MWFc/>W2d#<~ɼ|_Ki_j5tcD|rǣҍ٤E+\pAI;ه;O1|YoN gruw\!iGu{?W5rb4Ɗ}x*^ަ}|>ǑaК[j``r:PTHvC;)}Z%%ie 2HR0R-9 UeCy$N|g\e& I(uN; ϻNW!UTƦwU[aSQb0c< rHFxSZV^wZ0 #CJv(]`EϏw9GZhTAXD@ØlFRF; ;pZs5̇2 FZze[ k 餺MCs{Ej&C:],?"U\a)XSx(Fʏ6}VCu90L\(q ]*$UiL#U'|$Ӌ#5e6` EX]P1%CerzsAc bH bU`Z?*[]as|3=[jX:ts\xٱ`ϼO~D_li< t52>(Y4YgzImc&cX:m^rn/xP]V fcJ$R,]?=\SuPi@(( 8@qc%I F *YxK-T@Uvg:`'*WEee)@qWoilg!'w `m[N3 8`ƒK ͲE2DORK X+{ꖔXޠ!8=<`r [5ot>P(m PXЅCcst*Tb[2*J e56>!czq:gh0dt'9j Cd t5ŭӉ;O3.R.F)s6>j*A=@GseW!zѭm_k0T/]hD}N^`Bhк ֙%n/x'/~%\pn-(m~8%6v^V5$VM\ Vt$@M;@Aa pqṚ?/}$^YL A? "8S^}4|B\] d$6"jѺwb9LcjWV?s7`auU  m}΁Lӛ炀np& -WJPSiC=~ހ7ʑOQRmw/2]νR%_L1RcAan_ǽ5 =MBkXl=~Ey@$҂W"OF5nrGvɋv_yv AȤ~K}p= ,e g. g"?'Xx۷m/oA|4AEB s*Ky1+uh TONFsQ1o1n' `h? 3fSSw\']FM@]V_͢`O&HS<;OƬ-ko]oc,`';6Xi] JvKjAfx3Mwd 3#JG#1k> 8RCv%W!}OjeXԝFJ`K|K>V#}n+!鋅q!ܷ gDxHĞL;%+<91M@kr9Mƛ''֓4Y=;82R(rS/QhFecy^Y.W_:Ί BqiaMyĿs%-k۞U\٬.pl7N J{[6uOjK>#נ㋦|^DE,U,|?RӥAk=UuG 0 T4aeFl*HΙVz5;4|ƴyL_]D~)ôd7C#E!sNYD5 { ^$zŴAY/1(yBM  JlڗqإP7zMRGiKJ'v*'m)&[4UKDYtKo=L|rOlu5&fFn"ǠM7Wx;~-^eU\rȎ wcAh̝\=aUWqw{(ZnBuv`xsHzuY̮EM=⼈/B( #  n-LA.SEgu9!pMp^tGp,) 8MWOfxzN.PTkbl!I | ǎ/EEOYyX&r/`:|<΀Ucx&HwP_v_0S7O6**f.pwVq^X]•d {0\N,ytn 7NR߄nP,=u})ݥ$`xL^z Ymg`t8 ^lC#w:@'㫬Y;AoV^Z "FW/|ҹeFzK잨tަd7MjwbpjsҦ럻\VuYVf>Vؓb6%zdHPg4 iG},8&-ZAV`ybF23?H94-2RFb&wϩ?VŦr\ǾFU;8[%:Sp.H.SZ)ZՎJ!'4FPDi0tIH$%o|!5Cms6rbKIP3pNitvI* 7L˦Y oģW` 'H&P8ywU9JRڎAY]$m_7[AzSH0SE+=leV8혏(Ej;z$|U f!@:N g<*+@ M3~7vE ݘJ@4 Cւ{f R|f|KtfDTSgǧ q6QBټ޾疖`_@>^@ҹeTPoQ&tr$J`T躚rE5KkG]rOk2T"8D-muA{ze &9v`ąJNGlm܍lMHKf0wtZD6[L;t9/VA]Jk׬8D[tbx.ZNy9~ٳiZz9X*|EQU2&,NI v6Hws,7N8RJph--% ?"[%zD{@Iλǥ _%U l!qUIŕHtU2z B,I'ğbW [ՍL2%hMrǖ,ƺy 7:R1=u& vǚ'KYk}&ODsM/gB@L_TV?`}MgeTkzo@r;|5)X~𐷟I`ooKe؅'C(Ym,?"C}\4y!#@)ݼ&R )SoԦy .?gchqvձA<ȬTvy;'MANS- aPߙ9hedN!g=&< n} wAa5,( ?rݩ]-AՄ=u& ɹ_њA%(I>@KE:"߸-v~w0ȫUUpHӡ.AӰD^Ζ5KƙHmjU%q^Fs!R;$YGڥ­lUL궸$KAam24"/A6ac6136yJ"Wtlp dw2_hL:7aBwUdTR8'2 ^zgn%2c+&%䓜 lj2]_$Y! 뢟8NƋP<֫M\eyRpm~S9*zNHo]NRV HΜy|u/Ƃ.҅v%%{l5ggorK /9qمu=?9EwJ񋜐mnGܘzɅOP}IYAUZiQtQډٰuy@[̒; O2}g8% M5A'ӗzX![.9, :5`z)RWl%:zENو0 rѴ,$4CF"5 [Y;ئi,[A tnoͯV- [tIncH;GguM̢+7}^gb$[agфnch V] :a1aՓUkۉ m~JxڵV5?' 2QsI$k;9`jjeK}^&4TCM\0IpQ"Y/ZMcE@Z;EafPٙ<1CcFX_m?¦i7.Κx1iVJ-{+ъ,r.#)YW-=U)4I8pd7GVh&|*zwl^=z"qOҽEUy8vrǪN8A;^Ik"&{\ȩ0TxW>7U$1Q9a$J8o/4xuכ2qNЮ8 WL7qiql{ߵ-8ċՠCO',tƙmǽ ,}0G]lU~"۴ݛaUO8y44GۖGi$=<%&smq 䈭p5@抎MOeƥ.mSG힇<L &R)s0dw$,ǧ$ ElhxgnNJ{5暒؀:R ^WXXzA0.nW„Bx'GǸ::3 ڽZWH:⛨\IjQOt'x0Jd檚PߏnrZ=j8ۣy._Td9ф%@8  /=B1{اupf9D}=R &wt;(V|*=&vꌸDa.2] t?1Ud_/F)fv*кY[z5Q;ަYn`ߥ$SsJ}>՘#q$]_0\ 3ૉg4lpNoT9 5ki$*=@3ߙ_ةAnpGl6Gގ]vj{T :VTw - |A3zώ7SG>M|A.]7TtL_W`OO{GeFQVw9x/A*I_V) yabdȫO|t]_okbWHXڜN8I{` L)1E ?>AGP./kΥb~ikd#{Uid̃%K(>l!/6HD`kaS?K6n3,S'? 1w Z{E294gGBLUV ll)cŔ9רp[a5a.zy*Φ̉T覕v5Es3V4I( `#9ǰضY[8DU=Q|׮huеqcI}S{SF)DM#ϫP abJ=ʤs1&Qћ@TospB\Mnۢ>E$pSZs.7W\O- Ϥ..[t@{3햏1~6֯L؍"iWVJ'Ǽ-ɝPyD\)!țLX+;4gӈDҡl6-Vb5B5Е2.* /ۊb:I`Vu S?&[tnډu3loM^fvUmJML;K?c VϪ#K~r)-!tI`dU:bqq,lLyWq`@rAn Z2~3E)x'k aAq%tCL06?̡c$V׶h[aR`ûBx#n'o^ǀ ? k4!YEXAuD<0, Rf7"7;7{B|ܘOTx[x!FhGDzxuZWAK!עs+@lUtj{vnvs]he8|=;9/Kӡ?_kbn:ZXӇޣW_t&e2f81ZF{֍02$i-!Ϭ0BTʦh2c?,{3?۞1 +͂а4E@ p宆clrm? JVQc(Qfm~aAld%x\=x>^#djkQh}hwU-wAm&`_{E!'κ.B\ y$-> %:R*zނ4"[Fܽdq(;q|-+9߳pS|jq݄L븤`Z1vxDs"+f =0{κ%'-'c %*1MiC._SX>/ (=DEҾSHLߒK#h=-Mu7z\;["#Z7&Nl~>Þk#ʤ8;ۦ|]3&t9wpْKv)zsDiEGQBӘT) g( hH]=[hn`VN)SA{t̜s )gfLNbH BcLPWWy_Q_t',Vbu67 uoA=VT@һĎXulڳk%n xSQr?xAu7a>.HͰQ~ /p>@ s).wZ84">>CȻ8LQ)e_ zimw'c3^ofFQtĻi4fFu"uPC9:R^,W=;ɜgc %@a~ɼ^n$OT+X@r[wUe&/3l|,㧉HoҤ"tg|*#8b!0_9iYĀp-{VeI7oHeXJv(=PV\~ Zbg~]M"D h]kDtiyVKtA=Y;s>.p!ՂJgμ^[O0x K z!1T\- u拽J:ۺ Hy;WGn1vi7Ye!f9OB0 *o6]pJً"lŖKs}t]Jhs^|rTZxj?P*OZ^gq Ɖ:@|P׾b0iY/lb{6Ri3)O"Ow&GZق:ܟ7 pw1P3q E0pLf/wYRosn\Q:v-Gǚ4Xin_)\N3C[[hI lOl_ 2p4pkvQt(?VifkQxJqm<(B}N];B!Uޙd ;w1;A ; m"xbW+#f^fD Ĕ4'TTHvCkiMg&e83 B;+ mUM(V ~Ce<% Y ӊ1HQ~,<5`8?h\VH A:FR\](k_\WE!:Y)g]籼u\؝dYRz.1bT\O{xIPhGȺi짷J!cH[?rET2l;58YIGf(B͉4`~@b;GtG9eIɰ)NL۽AXSͧ+0D^"?YuK{Sd []@uƎ![YIk~-rjn7GUա9 /O (B~BCl|hjC>Ri%nrnzx_I56A]c%gm&)Q VDybt3~+ qtH4ٓ.x?X<1#Um1C9/uWti}_!Y![V!!6^ڥ/SN=F#Λ_pt+_V]־쁉-.߁$O9_gɅ$G1lZXtv p,3I7.#Łɢ׳fW!)Gdɜo( dFDtX80W~9ʫ?- "`-cfM,QXKk;*$u>¾G˵\HnɍL?ːLoh~`NA:7>isgeFn% 8B#P>)5_\NDu* 2u2_UbE2<1PT_91q1Yp8p] :c[G )IX0L@N4sBftWo>xQ˒wEA#yNhP= 6# +#Q%gzg쨸cGM5J:=5jà*mp5]b`_)xzjWCTu F㤟qbXQ5 ,` #M$xrYev0nekO >;.Ͼ75(!jb)(Btlk>BvM㍢΄>FxUwnIX oށMEJFl[ZlvJSЖEYCtz U < Wz$G#9 0Gͅ;fv sМOC2vˇ܇\6!3QWRRkp)V5{} XS9?Pҋ 57Oh؜*/V w)~2y8@i WJ:[S2OF& G~+XhI58z j/\C6>"HJX,*2!a_m 8>Ca O9e~ ;ilVS6h^>.>H~7=W<-h#L$-l<LjM3.s ܬ73\G%2ot+ 8x!*ކn2/@Y׬Ʈm&ʻ-*7\ꄄ4K9(A#tZq/5o#6:_ yvX* Ȉu -/ġ0Ol+ҩ6TQMI^ePDSӭ T" =W S) Y _H3+'1{/.#Lحvig9QЕyJP&4~+z$Z!Uh = Nʴi0ʘ FX2lZn)( |BXZ00RJ)]iT1)N k{]Ǻ3ñ׮u +Sc `G{z|g/4Hm1h*Q{ Fhr~ֺ޵A-P ^ XnuP8@{ %`Hܴ}xXd;^pTR?rTW˧KFmщUwOQMqyaK!<8 *˅BrmRx77EVcfZ@%^#sSdr-q 43L~t4%34BH]?V3WRZ%D(\>*Kx2V&d߀خ ``#>*>9Y_wZъkM_pF">wܿ,fD<\s7Mjm~PSDj0e|B݂)zV L(yPf'ĩ =5 $sX6*B B͔R7e5؃Thn;" \T+8iYx5LM'>*xdUmZZfkU^UmhK)M҇@.q#{$#[q/aґJ~'U^jګRVF3  DZqŭtOhiKbO'ep7; t.(9v&5x&1-#VkLVы=LSlT`@` @?oKovTNSI}xc c}Tfz~}в:C;A:gpbmb 2qlvJA*VўlO`>剀4:eI sXw'+ǿ#Qf_Ib r=h)|I"騤d%#kER@' &Az-ON?p'`,`{r*d ),,j*Q%T-!T +z rѹo==D2&h_Q9lZt2GD4@'A!,>Q-  5 5N[M@kaL U1.@3%H\Uw}#)޸7QZJFrxF~1YG hgݢUqL˳徦eXO%e*%C:Ch1lf$1ƘF"6ju_ǭKuס,=a#x#V1ӴOQ wO'bW0{(M'k4Myo^ɫ,Eq6zz>q NP"-)+ib<,PD"E;dFM[t޵'X1&Lu#&S_ d.ry``JK2#}p AB8K%?vz`9( ~B58?}0O6!jb̬8/5yV͹1o*v%?gzUf#Y-·Î#nF ^z~)ۖMxGo=IV_#-FC #W ʣ%bϲ4tqjE_V>YijU:R{aɻHtwI-+hDJ2DT@rp}+ ~qWF!+WN,&7"H`CpMR>F]?cNU0TtP[ |i_O]{T ^ _"Yb&kGVFhR~[  j+\2.c|zdD/QqS*!8n5&4#mo nxTF] #ҳXm=k!şUg@qd.m(+_bBW&W c5̉6pX{$z x懶#jRȽM+:E&TWd 70,qRvޖ"/hlLՔ’-tqcT&4 {n %A>@?S) .8_Q6wr?f=a_JFQjcQш+tZ쏌B녥*4䓞x ps ӵfj1NjR38Z U<ڶZ Oԏ/Zվ !mx 7l!A&_pW̪yJ2B0DdxFgMcS9p~) SfDG`&r:&i?K~?ݱ[.fo_yǏ_C@T(Ո;'eS+j~< Ioߓ4iC4봍%Hmᣖ+fv}n۝W\(tJSՎZbS*Ye\DO&UKXQʶլd$srl/'89eY? 6d;KQ xuS@{S}AzLKr;BHltE0RŘI^Ef?~`k ȥO)h2 c2ωyKjܛNRbOj)ZZPW+FJd{v4B#m>d4RX8L8j'g)@/' 9rM[tJGO GRѢ9TZî)wPSO&kr[IdӮ\ܰED| (SO 8Q-FLQOMe|s@A̓hsTBIt}Cl$w,solZ2T@S/zT4(\p@M !ͻTAÕfYu%P-?|!}eyQ',JvCGZ*yvh _[0qk¦*/K:'qX:̉y_],qFt_P Gc2Kg=b\SK|wBV%ؙ-Z׶'] ޏw#djmјo+Ko?3m%ܕ|0o),0o (CyYy1 eܴw"wą  aFb}3MD_C-͖Wt6QS}G^)* K董MҾYQDWГA@0׬4q;i d |IX7p nŏe,Ljs7 u:d :6F;] q˩u.Ԑb =<6ΫaX2y\h"(@;f//_|*Lo"ܵ YFMbtGÎC6:a< *6Pl~I^'(0[7('w+̧4&DsVU E>qt?,~IpXoTvIMq &jekߑBm[LIuSp.̹: ~M֙RPQ5=F T컖y佭 9Q(zA-AŗZ}} [RwQo;W[|ۍb?J0!Ɗ?"EYYA9[j X[,A*|9Mbf\A?4db=\+vSz;ûgQRy~s)/Vj#s3_DžM^ݦUlg[~>w2Gd& Vo 9U&#FY}:,bL"=ӼD;DŽdiuv 4.hnH {|Hkˤ߽pM#""9Tvx'bQP/ ڡ(,b詛p "Ur t+S1Z~tѕfIO[ $HAP 1)k^(đtQm-eq!Sx,cZ܌1lvbڍbF ;J:AŸW_Ƨ9^rB\X+'~(F6^_n{?ejqiL;pJ.}1ݻ9Rg>i8ץ?+g+`i %M@t3mӽ%X$g6#4kabL7e8~)P?p*z^{PS`#i]Ǘnˋ7~2?>%1\zD`If@`܂뾳`n_-* ǏjkG؎]5a݌2_r!]e{oFcuy@4aDkm M_ji폼ΰ`R-eb6J!KVs^"I|ۑ#<̒"Ĉp-<ߺ:vToڦU<} Q5p+ŐP|=@'r'KH|"V1櫊|q3t!ixq)$%ЊJ6YUL#*Q9%?ޥkyhvy *.!xMMd ]#6^0n9;a޿PDF?N]_* Oy#Ñr)ozŌCѷݶ w%9g7BD ΚX'ޫwzV.= ;A@ R˕CV53 O07"_Nyd 4rgL]`9&[íA7LGee ((5~ơU?CH*y,$5f`s O?;ff&p*A!!Ƴ`GىSX~bNw/n? >@bV2@HZiҿt_ FBF1aӖW1v^8TU7d|u(C'מڵU66s?]n+W(LYQ? ?xrzaw-^'t% <&.'k|(9]r!eS0ݠk[قTGkgcaEdS٪m. ! >EA|#G!!7ZYMp  T S,` IMwtΤb''jf4ߑ:jL0$w8:pI9cp}?xPԴ-pL%QxҳuB!kexh~L-wZ ŪuVWu2[\ h]o*{6uA=\l X;/(;}j]_MgϼuRpiHFojӮL 2W:k-Fxioit?C Q.ˌw4ͷ'o3"=Xb<`D]pʫ%ܙ 8QȫqQ16efd*˰Biy"(.]igbEkٶ7^_Й 3v<~\7<3fC>6b2jRt5I%,WJ=B YZ