go1.20-openssl-doc-1.20.12.1-150000.1.17.1 >  A ezՂp9|"mA}{@ߪiy@v܇3|#D&-S0.b+O~2 ʚ|"hmKu"#wwm輶[ME@ED?bÂTLo^yYXpy6ct*qYIq6tܧbNTT!WT8bFA%pg_2g&B[j9‰XlRh$]E1ٰSn1pЋQ >sr3:(Po01ý{Pi*VE`iݽQ|Iɿ;_i.5שC9N .X+pAm e0Y\B̬Dwco A>p;?d - >`dpt  " , @  P`(8"9p":"F G$H8ILXTY`\Ȝ]Ȱ^bcdBeGfJlLu`vtzʖʨʬʲCgo1.20-openssl-doc1.20.12.1150000.1.17.1Go documentationGo examples and documentation.ezh01-ch2c =SUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/Documentation/Otherhttps://go.dev/linuxx86_64Mh>i+xezԵezԵezԵezԵezԵd996fb9181360d605adb42c662c36fb5884988f29940621dfa8b7895215740e3123c14365f20daf6c31123df409b281bc131e5d1f88fbe543b1a68b5382cf6e7e9fec1047b1a8e504dc8796e5e86bfccb1423d52ee9aa8f699d16e2346b40fb9f31eb0879010f88e534ffd161f74f81be18135a5cd8d5a688369290581cb24d263ce5b7390691d66f71e60d7425026bbd3cd6c2845ccbcaa0d3c5b9af46b204crootrootrootrootrootrootrootrootrootrootgo1.20-openssl-1.20.12.1-150000.1.17.1.src.rpmgo-docgo1.20-openssl-docgo1.20-openssl-doc(x86-64)    rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1eqeoeKx@eJ&e&@e% to change directory to before performing the command, which may be useful for scripts that need to execute commands in multiple different modules. * go command: The go build and go test commands no longer accept the -i flag, which has been deprecated since Go 1.16. * go command: The go generate command now accepts -skip to skip //go:generate directives matching . * go command: The go test command now accepts -skip to skip tests, subtests, or examples matching . * go command: When the main module is located within GOPATH/src, go install no longer installs libraries for non-main packages to GOPATH/pkg, and go list no longer reports a Target field for such packages. (In module mode, compiled packages are stored in the build cache only, but a bug had caused the GOPATH install targets to unexpectedly remain in effect.) * go command: The go build, go install, and other build-related commands now support a -pgo flag that enables profile-guided optimization, which is described in more detail in the Compiler section below. The -pgo flag specifies the file path of the profile. Specifying -pgo=auto causes the go command to search for a file named default.pgo in the main package's directory and use it if present. This mode currently requires a single main package to be specified on the command line, but we plan to lift this restriction in a future release. Specifying - pgo=off turns off profile-guided optimization. * go command: The go build, go install, and other build-related commands now support a -cover flag that builds the specified target with code coverage instrumentation. This is described in more detail in the Cover section below. * go version: The go version -m command now supports reading more types of Go binaries, most notably, Windows DLLs built with go build -buildmode=c-shared and Linux binaries without execute permission. * Cgo: The go command now disables cgo by default on systems without a C toolchain. More specifically, when the CGO_ENABLED environment variable is unset, the CC environment variable is unset, and the default C compiler (typically clang or gcc) is not found in the path, CGO_ENABLED defaults to 0. As always, you can override the default by setting CGO_ENABLED explicitly. The most important effect of the default change is that when Go is installed on a system without a C compiler, it will now use pure Go builds for packages in the standard library that use cgo, instead of using pre-distributed package archives (which have been removed, as noted above) or attempting to use cgo and failing. This makes Go work better in some minimal container environments as well as on macOS, where pre-distributed package archives have not been used for cgo-based packages since Go 1.16. The packages in the standard library that use cgo are net, os/user, and plugin. On macOS, the net and os/user packages have been rewritten not to use cgo: the same code is now used for cgo and non-cgo builds as well as cross-compiled builds. On Windows, the net and os/user packages have never used cgo. On other systems, builds with cgo disabled will use a pure Go version of these packages. On macOS, the race detector has been rewritten not to use cgo: race-detector-enabled programs can be built and run without Xcode. On Linux and other Unix systems, and on Windows, a host C toolchain is required to use the race detector. * go cover: Go 1.20 supports collecting code coverage profiles for programs (applications and integration tests), as opposed to just unit tests. To collect coverage data for a program, build it with go build's -cover flag, then run the resulting binary with the environment variable GOCOVERDIR set to an output directory for coverage profiles. See the 'coverage for integration tests' landing page for more on how to get started. For details on the design and implementation, see the proposal. * go vet: Improved detection of loop variable capture by nested functions. The vet tool now reports references to loop variables following a call to T.Parallel() within subtest function bodies. Such references may observe the value of the variable from a different iteration (typically causing test cases to be skipped) or an invalid state due to unsynchronized concurrent access. * go vet: The tool also detects reference mistakes in more places. Previously it would only consider the last statement of the loop body, but now it recursively inspects the last statements within if, switch, and select statements. * go vet: New diagnostic for incorrect time formats. The vet tool now reports use of the time format 2006-02-01 (yyyy-dd-mm) with Time.Format and time.Parse. This format does not appear in common date standards, but is frequently used by mistake when attempting to use the ISO 8601 date format (yyyy-mm-dd). * Runtime: Some of the garbage collector's internal data structures were reorganized to be both more space and CPU efficient. This change reduces memory overheads and improves overall CPU performance by up to 2%. * Runtime: The garbage collector behaves less erratically with respect to goroutine assists in some circumstances. * Runtime: Go 1.20 adds a new runtime/coverage package containing APIs for writing coverage profile data at runtime from long-running and/or server programs that do not terminate via os.Exit(). * Compiler: Go 1.20 adds preview support for profile-guided optimization (PGO). PGO enables the toolchain to perform application- and workload-specific optimizations based on run-time profile information. Currently, the compiler supports pprof CPU profiles, which can be collected through usual means, such as the runtime/pprof or net/http/pprof packages. To enable PGO, pass the path of a pprof profile file via the -pgo flag to go build, as mentioned above. Go 1.20 uses PGO to more aggressively inline functions at hot call sites. Benchmarks for a representative set of Go programs show enabling profile-guided inlining optimization improves performance about 3–4%. See the PGO user guide for detailed documentation. We plan to add more profile-guided optimizations in future releases. Note that profile-guided optimization is a preview, so please use it with appropriate caution. * Compiler: The Go 1.20 compiler upgraded its front-end to use a new way of handling the compiler's internal data, which fixes several generic-types issues and enables type declarations within generic functions and methods. * Compiler: The compiler now rejects anonymous interface cycles with a compiler error by default. These arise from tricky uses of embedded interfaces and have always had subtle correctness issues, yet we have no evidence that they're actually used in practice. Assuming no reports from users adversely affected by this change, we plan to update the language specification for Go 1.22 to formally disallow them so tools authors can stop supporting them too. * Compiler: Go 1.18 and 1.19 saw regressions in build speed, largely due to the addition of support for generics and follow-on work. Go 1.20 improves build speeds by up to 10%, bringing it back in line with Go 1.17. Relative to Go 1.19, generated code performance is also generally slightly improved. * Linker: On Linux, the linker now selects the dynamic interpreter for glibc or musl at link time. * Linker: On Windows, the Go linker now supports modern LLVM-based C toolchains. * Linker: Go 1.20 uses go: and type: prefixes for compiler-generated symbols rather than go. and type.. This avoids confusion for user packages whose name starts with go.. The debug/gosym package understands this new naming convention for binaries built with Go 1.20 and newer. * Bootstrap: When building a Go release from source and GOROOT_BOOTSTRAP is not set, previous versions of Go looked for a Go 1.4 or later bootstrap toolchain in the directory $HOME/go1.4 (%HOMEDRIVE%%HOMEPATH%\go1.4 on Windows). Go 1.18 and Go 1.19 looked first for $HOME/go1.17 or $HOME/sdk/go1.17 before falling back to $HOME/go1.4, in anticipation of requiring Go 1.17 for use when bootstrapping Go 1.20. Go 1.20 does require a Go 1.17 release for bootstrapping, but we realized that we should adopt the latest point release of the bootstrap toolchain, so it requires Go 1.17.13. Go 1.20 looks for $HOME/go1.17.13 or $HOME/sdk/go1.17.13 before falling back to $HOME/go1.4 (to support systems that hard-coded the path $HOME/go1.4 but have installed a newer Go toolchain there). In the future, we plan to move the bootstrap toolchain forward approximately once a year, and in particular we expect that Go 1.22 will require the final point release of Go 1.20 for bootstrap. * Library: Go 1.20 adds a new crypto/ecdh package to provide explicit support for Elliptic Curve Diffie-Hellman key exchanges over NIST curves and Curve25519. Programs should use crypto/ecdh instead of the lower-level functionality in crypto/elliptic for ECDH, and third-party modules for more advanced use cases. * Error handling: Go 1.20 expands support for error wrapping to permit an error to wrap multiple other errors. * Error handling: An error e can wrap more than one error by providing an Unwrap method that returns a []error. * Error handling: The errors.Is and errors.As functions have been updated to inspect multiply wrapped errors. * Error handling: The fmt.Errorf function now supports multiple occurrences of the %w format verb, which will cause it to return an error that wraps all of those error operands. * Error handling: The new function errors.Join returns an error wrapping a list of errors. * HTTP ResponseController: The new "net/http".ResponseController type provides access to extended per-request functionality not handled by the "net/http".ResponseWriter interface. The ResponseController type provides a clearer, more discoverable way to add per-handler controls. Two such controls also added in Go 1.20 are SetReadDeadline and SetWriteDeadline, which allow setting per-request read and write deadlines. * New ReverseProxy Rewrite hook: The httputil.ReverseProxy forwarding proxy includes a new Rewrite hook function, superseding the previous Director hook. * archive/tar: When the GODEBUG=tarinsecurepath=0 environment variable is set, Reader.Next method will now return the error ErrInsecurePath for an entry with a file name that is an absolute path, refers to a location outside the current directory, contains invalid characters, or (on Windows) is a reserved name such as NUL. A future version of Go may disable insecure paths by default. * archive/zip: When the GODEBUG=zipinsecurepath=0 environment variable is set, NewReader will now return the error ErrInsecurePath when opening an archive which contains any file name that is an absolute path, refers to a location outside the current directory, contains invalid characters, or (on Windows) is a reserved names such as NUL. A future version of Go may disable insecure paths by default. * archive/zip: Reading from a directory file that contains file data will now return an error. The zip specification does not permit directory files to contain file data, so this change only affects reading from invalid archives. * bytes: The new CutPrefix and CutSuffix functions are like TrimPrefix and TrimSuffix but also report whether the string was trimmed. * bytes: The new Clone function allocates a copy of a byte slice. * context: The new WithCancelCause function provides a way to cancel a context with a given error. That error can be retrieved by calling the new Cause function. * crypto/ecdsa: When using supported curves, all operations are now implemented in constant time. This led to an increase in CPU time between 5% and 30%, mostly affecting P-384 and P-521. * crypto/ecdsa: The new PrivateKey.ECDH method converts an ecdsa.PrivateKey to an ecdh.PrivateKey. * crypto/ed25519: The PrivateKey.Sign method and the VerifyWithOptions function now support signing pre-hashed messages with Ed25519ph, indicated by an Options.HashFunc that returns crypto.SHA512. They also now support Ed25519ctx and Ed25519ph with context, indicated by setting the new Options.Context field. * crypto/rsa: The new field OAEPOptions.MGFHash allows configuring the MGF1 hash separately for OAEP decryption. * crypto/rsa: crypto/rsa now uses a new, safer, constant-time backend. This causes a CPU runtime increase for decryption operations between approximately 15% (RSA-2048 on amd64) and 45% (RSA-4096 on arm64), and more on 32-bit architectures. Encryption operations are approximately 20x slower than before (but still 5-10x faster than decryption). Performance is expected to improve in future releases. Programs must not modify or manually generate the fields of PrecomputedValues. * crypto/subtle: The new function XORBytes XORs two byte slices together. * crypto/tls: Parsed certificates are now shared across all clients actively using that certificate. The memory savings can be significant in programs that make many concurrent connections to a server or collection of servers sharing any part of their certificate chains. * crypto/tls: For a handshake failure due to a certificate verification failure, the TLS client and server now return an error of the new type CertificateVerificationError, which includes the presented certificates. * crypto/x509: ParsePKCS8PrivateKey and MarshalPKCS8PrivateKey now support keys of type *crypto/ecdh.PrivateKey. ParsePKIXPublicKey and MarshalPKIXPublicKey now support keys of type *crypto/ecdh.PublicKey. Parsing NIST curve keys still returns values of type *ecdsa.PublicKey and *ecdsa.PrivateKey. Use their new ECDH methods to convert to the crypto/ecdh types. * crypto/x509: The new SetFallbackRoots function allows a program to define a set of fallback root certificates in case an operating system verifier or standard platform root bundle is unavailable at runtime. It will most commonly be used with a new package, golang.org/x/crypto/x509roots/fallback, which will provide an up to date root bundle. * debug/elf: Attempts to read from a SHT_NOBITS section using Section.Data or the reader returned by Section.Open now return an error. * debug/elf: Additional R_LARCH_* constants are defined for use with LoongArch systems. * debug/elf: Additional R_PPC64_* constants are defined for use with PPC64 ELFv2 relocations. * debug/elf: The constant value for R_PPC64_SECTOFF_LO_DS is corrected, from 61 to 62. * debug/gosym: Due to a change of Go's symbol naming conventions, tools that process Go binaries should use Go 1.20's debug/gosym package to transparently handle both old and new binaries. * debug/pe: Additional IMAGE_FILE_MACHINE_RISCV* constants are defined for use with RISC-V systems. * encoding/binary: The ReadVarint and ReadUvarint functions will now return io.ErrUnexpectedEOF after reading a partial value, rather than io.EOF. * encoding/xml: The new Encoder.Close method can be used to check for unclosed elements when finished encoding. * encoding/xml: The decoder now rejects element and attribute names with more than one colon, such as , as well as namespaces that resolve to an empty string, such as xmlns:a="". * encoding/xml: The decoder now rejects elements that use different namespace prefixes in the opening and closing tag, even if those prefixes both denote the same namespace. * errors: The new Join function returns an error wrapping a list of errors. * fmt: The Errorf function supports multiple occurrences of the %w format verb, returning an error that unwraps to the list of all arguments to %w. * fmt: The new FormatString function recovers the formatting directive corresponding to a State, which can be useful in Formatter. implementations. * go/ast: The new RangeStmt.Range field records the position of the range keyword in a range statement. * go/ast: The new File.FileStart and File.FileEnd fields record the position of the start and end of the entire source file. * go/token: The new FileSet.RemoveFile method removes a file from a FileSet. Long-running programs can use this to release memory associated with files they no longer need. * go/types: The new Satisfies function reports whether a type satisfies a constraint. This change aligns with the new language semantics that distinguish satisfying a constraint from implementing an interface. * io: The new OffsetWriter wraps an underlying WriterAt and provides Seek, Write, and WriteAt methods that adjust their effective file offset position by a fixed amount. * io/fs: The new error SkipAll terminates a WalkDir immediately but successfully. * math/big: The math/big package's wide scope and input-dependent timing make it ill-suited for implementing cryptography. The cryptography packages in the standard library no longer call non-trivial Int methods on attacker-controlled inputs. In the future, the determination of whether a bug in math/big is considered a security vulnerability will depend on its wider impact on the standard library. * math/rand: The math/rand package now automatically seeds the global random number generator (used by top-level functions like Float64 and Int) with a random value, and the top-level Seed function has been deprecated. Programs that need a reproducible sequence of random numbers should prefer to allocate their own random source, using rand.New(rand.NewSource(seed)). * math/rand: Programs that need the earlier consistent global seeding behavior can set GODEBUG=randautoseed=0 in their environment. * math/rand: The top-level Read function has been deprecated. In almost all cases, crypto/rand.Read is more appropriate. * mime: The ParseMediaType function now allows duplicate parameter names, so long as the values of the names are the same. * mime/multipart: Methods of the Reader type now wrap errors returned by the underlying io.Reader. * net: The LookupCNAME function now consistently returns the contents of a CNAME record when one exists. Previously on Unix systems and when using the pure Go resolver, LookupCNAME would return an error if a CNAME record referred to a name that with no A, AAAA, or CNAME record. This change modifies LookupCNAME to match the previous behavior on Windows, allowing LookupCNAME to succeed whenever a CNAME exists. * net: Interface.Flags now includes the new flag FlagRunning, indicating an operationally active interface. An interface which is administratively configured but not active (for example, because the network cable is not connected) will have FlagUp set but not FlagRunning. * net: The new Dialer.ControlContext field contains a callback function similar to the existing Dialer.Control hook, that additionally accepts the dial context as a parameter. Control is ignored when ControlContext is not nil. * net: The Go DNS resolver recognizes the trust-ad resolver option. When options trust-ad is set in resolv.conf, the Go resolver will set the AD bit in DNS queries. The resolver does not make use of the AD bit in responses. * net: DNS resolution will detect changes to /etc/nsswitch.conf and reload the file when it changes. Checks are made at most once every five seconds, matching the previous handling of /etc/hosts and /etc/resolv.conf. * net/http: The ResponseWriter.WriteHeader function now supports sending 1xx status codes. * net/http: The new Server.DisableGeneralOptionsHandler configuration setting allows disabling the default OPTIONS * handler. * net/http: The new Transport.OnProxyConnectResponse hook is called when a Transport receives an HTTP response from a proxy for a CONNECT request. * net/http: The HTTP server now accepts HEAD requests containing a body, rather than rejecting them as invalid. * net/http: HTTP/2 stream errors returned by net/http functions may be converted to a golang.org/x/net/http2.StreamError using errors.As. * net/http: Leading and trailing spaces are trimmed from cookie names, rather than being rejected as invalid. For example, a cookie setting of "name =value" is now accepted as setting the cookie "name". * net/netip: The new IPv6LinkLocalAllRouters and IPv6Loopback functions are the net/netip equivalents of net.IPv6loopback and net.IPv6linklocalallrouters. * os: On Windows, the name NUL is no longer treated as a special case in Mkdir and Stat. * os: On Windows, File.Stat now uses the file handle to retrieve attributes when the file is a directory. Previously it would use the path passed to Open, which may no longer be the file represented by the file handle if the file has been moved or replaced. This change modifies Open to open directories without the FILE_SHARE_DELETE access, which match the behavior of regular files. * os: On Windows, File.Seek now supports seeking to the beginning of a directory. * os/exec: The new Cmd fields Cancel and WaitDelay specify the behavior of the Cmd when its associated Context is canceled or its process exits with I/O pipes still held open by a child process. * path/filepath: The new error SkipAll terminates a Walk immediately but successfully. * path/filepath: The new IsLocal function reports whether a path is lexically local to a directory. For example, if IsLocal(p) is true, then Open(p) will refer to a file that is lexically within the subtree rooted at the current directory. * reflect: The new Value.Comparable and Value.Equal methods can be used to compare two Values for equality. Comparable reports whether Equal is a valid operation for a given Value receiver. * reflect: The new Value.Grow method extends a slice to guarantee space for another n elements. * reflect: The new Value.SetZero method sets a value to be the zero value for its type. * reflect: Go 1.18 introduced Value.SetIterKey and Value.SetIterValue methods. These are optimizations: v.SetIterKey(it) is meant to be equivalent to v.Set(it.Key()). The implementations incorrectly omitted a check for use of unexported fields that was present in the unoptimized forms. Go 1.20 corrects these methods to include the unexported field check. * regexp: Go 1.19.2 and Go 1.18.7 included a security fix to the regular expression parser, making it reject very large expressions that would consume too much memory. Because Go patch releases do not introduce new API, the parser returned syntax.ErrInternalError in this case. Go 1.20 adds a more specific error, syntax.ErrLarge, which the parser now returns instead. * runtime/cgo: Go 1.20 adds new Incomplete marker type. Code generated by cgo will use cgo.Incomplete to mark an incomplete C type. * runtime/metrics: Go 1.20 adds new supported metrics, including the current GOMAXPROCS setting (/sched/gomaxprocs:threads), the number of cgo calls executed (/cgo/go-to-c-calls:calls), total mutex block time (/sync/mutex/wait/total:seconds), and various measures of time spent in garbage collection. * runtime/metrics: Time-based histogram metrics are now less precise, but take up much less memory. * runtime/pprof: Mutex profile samples are now pre-scaled, fixing an issue where old mutex profile samples would be scaled incorrectly if the sampling rate changed during execution. * runtime/pprof: Profiles collected on Windows now include memory mapping information that fixes symbolization issues for position-independent binaries. * runtime/trace: The garbage collector's background sweeper now yields less frequently, resulting in many fewer extraneous events in execution traces. * strings: The new CutPrefix and CutSuffix functions are like TrimPrefix and TrimSuffix but also report whether the string was trimmed. * sync: The new Map methods Swap, CompareAndSwap, and CompareAndDelete allow existing map entries to be updated atomically. * syscall: On FreeBSD, compatibility shims needed for FreeBSD 11 and earlier have been removed. * syscall: On Linux, additional CLONE_* constants are defined for use with the SysProcAttr.Cloneflags field. * syscall: On Linux, the new SysProcAttr.CgroupFD and SysProcAttr.UseCgroupFD fields provide a way to place a child process into a specific cgroup. * testing: The new method B.Elapsed reports the current elapsed time of the benchmark, which may be useful for calculating rates to report with ReportMetric. * time: The new time layout constants DateTime, DateOnly, and TimeOnly provide names for three of the most common layout strings used in a survey of public Go source code. * time: The new Time.Compare method compares two times. * time: Parse now ignores sub-nanosecond precision in its input, instead of reporting those digits as an error. * time: The Time.MarshalJSON method is now more strict about adherence to RFC 3339. * unicode/utf16: The new AppendRune function appends the UTF-16 encoding of a given rune to a uint16 slice, analogous to utf8.AppendRune.- go1.20rc3 (released 2023-01-12) is a release candidate version of go1.20 cut from the master branch at the revision tagged go1.20rc3. Refs boo#1206346 go1.20 release tracking- go1.20rc2 (released 2023-01-04) is a release candidate version of go1.20 cut from the master branch at the revision tagged go1.20rc2. Refs boo#1206346 go1.20 release tracking- go1.20rc1 (released 2022-12-08) is a release candidate version of go1.20 cut from the master branch at the revision tagged go1.20rc1. Refs boo#1206346 go1.20 release trackingh01-ch2c 17025486971.20.12.11.20.12.1-150000.1.17.11.20.12.1-150000.1.17.1asm.htmlgo1.17_spec.htmlgo1.20.htmlgo_mem.htmlgo_spec.html/usr/share/doc/packages/go/1.20-openssl/-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:31910/SUSE_SLE-15_Update/f7b30d7a8bc259ffd9e3e57bfe4674f9-go1.20-openssl.SUSE_SLE-15_Updatecpioxz5x86_64-suse-linuxHTML document, UTF-8 Unicode textl:ϰq/Ÿ'utf-854f698638db3e7cc1b9a0721c8d83fea22d85134080566d012d4139cc2adaf8d?P7zXZ !t/J] crv(vX0z 7sFEb'pZ( Mͣ1}E5,RQ=Mԓ&gx7ճp)]o-wJu䇑Ҽ/SL2TGQ=ȆU-}zd| Jr}Ln;`5"%lt-=`xGfX&5- @\/i w ϨX6f'"H>#]!լP6q]rňN?c> go.Tig*l`1",ģ#:h')Ķb .Z?K1  _/JH:ϠAHjN^׸!߂*,c5{MAƗIKҋ2YlS\4aS6[A.7wؾ釸ka|ҥ' u?t@&oVrG^ui+5WQӃE/۞t58^FhEdOEАF (Nѻ=mNF 1-7!콭Q}\D j[>.6FqIƄz a2/[WFe*7 (ŷу„mǠ1NNb`rnySjA^GVCl[U34H Tt度V A1뒗f_Oq "йjB !2OEV1^%fHET_pDcuF [唭YN"a_T 6f4&$&šEmi #$K܉5 O%"*[ OY$ߖtɑĒ_En7O|QM{Lٍ̆}dڳ{d&_?OA$1 gJ.s_0Eiu%?ۻD Xe}Tt̐KYSwp=Yg3Y7#1e&msSO(1d UJҬ.uidŪDkL.!6W)pIP~Wf^OGh8qBWvTQžUWn4 .WUKWF_r<\sg>@֪PZWNENWWP .a.ΜMTV9mR fAB|>f:ϒ&i.=QC#=䍸9'cN_r5͢ÒjxX/LʼnCu9Xk" ǓMo;|qYX:ذw|m4$*>Nw"TcG1QZDsb];DJݎ\kȧG8%(k^2J?MIcvSI08BUHY4f=H'*ǽ`!J2u4$wT(4VK\ChuRf&"ug=N1k6[&Bx^ +F oP'Re[>r?ԅH~OVѶ{aPdc.Chfd*t o ~D'>*2<MBpPlqޥQ.*xNEu!$PzmU;v^oLw$WbyF>YhA uυWќ KCړE?c?|^|V1/F1+}Xث?.|&;& d}UlZ.Yp[ #=%Ϭ{Q؀eԮTJ A8 E`QuU;8ݩJ(89Jf( ܃Qt?_<=Xy6r-?~۵D6)7Ro85Qhb_^ܛ]HYd֣%)f}'E˟a;f._j ݂ap)XZOY\U埚՟HL)K&{ybLCW3g NI9XϧVU@I:qxvV ,!)yѣy`.&JvML.tkRc~ۏhaўlrqcbAsNQy=l8T3 f*Gf}R.uCVXiyxw+okڔNW/qGߺ'-k|om@yy{zBWBMjEqC{B5e&Km*Z&\$jeoJ)^"w͖"A$] -)$`v0{p)?vKw>\ ׽JKl~R =ʽPEdv: @WA .Z cJo0C1kyݨI[uƠ !&IT%w] ɬ/F~0'סdu< qZfZF}- 7U{Jc "baǏSwgv.yPLن:,0?*\j-XWpj%8E7&#?$[`Cvq%CWyp%zC4Q=wˎ_ppE{c:ja=G#suv~$;67UL܏ OUICC%Pq5#h&;;oam(b.YV 7Qb#/ Fc/ W3'v%*LN-{BL,?ԥgqaMU:n7Cbhí,NM,cL_=M2.s9J`7X Hb6>Uٕfb)igU-"[᏶SfΧ;0h_˦Vvt;̊yokfPu,*F ג^Bu\rz;aQJF{F,oI}QS[ Pv7)\\M(E9͠읞Uay*4jnfͽ4f6Sfȼ`*p*Kem_.&~*yLE ^@(z; 0YZjpg>Os@&C㯢SV u%'8htҥPOuwۻwC3)(U!nU 'U-v(#iHU?{H#o|H6LS!Fl@<^y!w Lxm+J*L4s62:X8=P,zStQr`ϿW"qFOVK`]5iGkEI$+EDj3Q<偅N]s%_֊ 3 J{6/-O[aBegB @(3Fμ|;ͱ)7nj~>ڜʶB#\}HwF{NS_S'Gg'x WvakJkAh'LIBW |NEl&W ݘ,Ycnw}9-ߘN'epc_搸ɩV'N(0S_e툣F43G pޓʏ"kLj-~~|ϋ4h(zlc,_k%{|1/E\^h Nݶym۝:w\~tt*@D_Kf0޴sR=>UΝ]S*Qٸ>!f^\ƒvlCy>*Aʤfl @,Y;Wcλg bC|n\)E8wY}kE0ZG]E2tK gf]^V!JEfJu4ib Qfd֊Xs\Zk/ "V:~l&U[w^MHaiNk%4G(鸎ѵbϻNvֳ쵇xI'R{EqAiL[ _ > tŝ?<;1sH͜Hy p/QxM}$WpVA_u`GNFvD?JutG*?{ 㳱`oM5b ēi@sAl%M3 +4櫙~,]]]xZW q5y;70*% A{.ͽԃVI7l\I틀 Z7FA2aRF7f&Տ=Dq26M[9="\W6+!=SLi"&3UL>,ؖVhƙ6'Y⯸$wҲy5xal|r4!<6f0S-s5ש,myasfm S?/^wt rIƻRpߥDŽpBkrV9"mXRu{)@ wn/Fwo\7P_0,qȜ{Q `(ӉH@(q1}'&%=<|͎X,ʩiHS ԑJ-by<a49= m6E7@X"޸g4R:)UOWoIŀ㑊Gj݉],B9}4UIBn ѱxr8l6zxrZH\ ƎP&ߖW]&2ŀ^uVb4$Q@?wgO/z֑Gq#oѰ ?]yH`LONxdm= y6BaE]>NO-jAQ5qP4^"?ٿ!u7t`SlL$p)faQ+3K3]B1 FwG{1-pAOv0Ɠ]?|[OW91aXպ:ϝ8߹iI_t!\xS@3\W w=ƀ:n SXWlQͥ*xOiӼ/BO#ne:+YaI m]Ұ gMXsCӭ mݱZQ pWĭ{6ݼ]-s.ɰ8uϊ*:L@?}R$A^ή:/GɈR3C3 6WŠ%[J@ߊ|t#_\zڲqr*In.@@7+ "wQ /z,!vsR `=wLy2E\ ᪖ـ>#"ޛ蚗 -ʦR]AMMWy:ŧldX5$Bc3)@(+{qT-naԹ ;-f})〘hqJ9g?wL1@?[9Ĝ|z£3qlh͈cTJ%B:XdɁsP3(U5fQLq| 5Dݞ Bd`γUllDw8'7]'D9vZC!7DGcSo-s ʮr!ѩ4VTJ֜5aPUaDS(ls"32Y|5#1b( ڦziNq/kl=k9s A0UB1g*\3u wه]?v&:3&ڕ*~Y6a&3J /KAUNS؟oDԻ,owG=hw:BD9MqI z64^Y[ek3{Ӳ&WI%+4cwb7x]S7i!S81x BiX`dB6ܥɎBCVuq^FFO^"OHH+#*OH3ؙ_GDեV90οzAv # !SsV]P!Y] ݆{ל9> d[`ful%id f˴mq 7v\3]Ӛ:Sےݟ?5]lRĪ}]4+Duó8ޢ9%!ZyacRy<"6N?WHFm?H5 "uV @ ?b7 _ϳ8P$}c+uNt kX/2᢯9J0{{Dzs)_C*Is@gUɤmdUK o<7$;`9GuF*I̹8ן241.rF6;FGM/saX ExU20)F9(;{6ᯥP &I9>/|=Ãʼs|Lu՜ a[O(![>+0eY(- nֺR}REmd붂XL:;:uWґŽ)XwjDꄞ'qA=fmSrMr=˽$FhGzx@)'"u>*!N:ΟN]NJ|gzl hZ\A"nyy4"_Eߍ=˕9Z4UT5*V+1=Ӏtkr^+uvZ*3~Ϋq'oպA,jAI֝LnHw ,ΥBMe.W-}q+S.钣>*@C(,9'Rr< ?ϫ}LɸRw wS\Q2ckKˌ #nYa ybo$ʱ 06jĭtô̹%FY@J(G͍ "¤a{VMQ},h"f; c ӤEaa'H|-5~vnH]MNnp&լC!)G:A<\`rG,`cd5LM*s:'wDR@38Gv?8/g%{^Ob%vfl `"ګmatrtm+Ћp)XX\ųrL#@juAFY7c)z=Y/$ hd⌢N@s 8O:؈ Z==NuN9l'Š*h_M%0mn֊q icAIU_*ف6AcvA{ E/Jщ_ 7~lyz¨*00wOk[9eI(9D[GX5Z|ڎ}a|X@z6OsG8 9`APkHğC2sʨ1;3^h&=f5±x*B I3v{TJ,9OxJ'r6 `>EGMd{ʳ`Ϟ֚z|Рɼؙ^:NzYLllMC?9zvwtް{%uAMo:Jp_&)7kzY`V47͌'֝i n j%w?vV8nrqw,`q2O}Z;ؠe99Xysvdv&yjۋP*e ؜Vq]n42Ӎz2V՝|,X^5(i-D͆]kr2kggھK}3=m6c]쒹9|^Zt-Խ**i98u'qTu[-`WXqpcz늂h2`% .-m8Ձ;/->s[FB؂S@s5aSM?;oa7(>mYu~\^c'T=fc ;KQ`e(} o9^~yt%*o.$4 {(H:L%GC)4Zj$KGX8h#~/{J-q6~jlbgX90HBAd^ZG{j&kj)ۏ0 CT8⣑g=PeX%p&bpo gE/KW_'.ڭQ6fjۀ5SJ D`Cf`:#S2)+|'KERۛTOKhi%]d>bX_̏>uq}Z5O#GJP EC {jդ(!|j ~V()=|>WGuSX#KU$-!BU'_ۣroHb\GщqSg'0^ltFN6G{/_$J߄>F% TV-?M{%hv4&XrӔއ<- 3?P(^w>`wDɻ-r gͧN` B#XrYνwj=. }M2ݲd=G/L[Tq턵zTdTlLRu].0no9$j~EY#9ؖjmD3gsA c# 1PB]͏;߯Aʥeū}N L> ޒX`A>r>4coi0NlXBQ 1汳8WY{<<ũH4H?Y?>vP=|k8Ȟfa#U\+:;G!#P 2qAcf@hQFpjd/>[MuiL+uL/$Ŷ%F㞬i§J[Tj/֒*A2ia$ ԡ.]ɽ%] :xd$浧ѭVZ'.5T6ZyãX)\ZD\e*$Jg=X؜n+ɩ'-k6W!+– I6MU˼qYmIk@9ʺ5e*O 4kv=dvW+Jp%PD<ז}7U8υerUZi6j` Y>vD?=N ;9#lnp@`2M q~Ս+ gG ~BrQ0у#OՔ^Kw%:v߷gYkft>;ҬZh/^& QkJn vއj6p#7jڿ'`VM%3o&;IOwe$ R砣ktbt~`Y&mORLT_Xt4\[qBQ6*Vd *=;ϟy-Ip%KP)B߇.أ'D1K(u QܖG#+?E- kvA\Fk8&tdw'{UJË8fd)1C|jVN{v}z8=͠sS'4ǒIUxDnʶ( هT^ #{9^R-EcyylOO䵃/A3Ug˂C^^FdϹ儯wkfRݹIq#>(|Z<q`G@C](w{sôg<8(N^5`/'X-ڏڷrdz;)`~;-B6U@ ݼ2]Π{c1xmB]:y,l_Ib"1W Y. VYGLws<aW^?B'ȭŅ~dXsCb k85[p{s\v/hC[Ԁ%qD[%d6?6w)&}_)I'sd@ި|yoh3G.t0?Tm ǿ2~@&. eh1'=_\#?ѺZ끎1|e3˩Zmp4 8R89X6IAJxBV^>`AJςՉt>~&*wGΆw br;iHѨ _ɹva^wq*j;t+XBj) ;9џ&Ҕ5SY.^tbdD1vH,SKt"sh0",U Bcښ$D3)Ct=lҩ˭Gyi!̎f/?466!諰>>Hhp^mac(!i\2̋w]Q[󓣽W-,_7TPB)DGL@O9<#P'DyiɃ^9Y|4 P]Hõ~.Y"< /o/ c<64!B :b_CCeO/44³(b.= e ˺eN},u9 &8(x __zg3xLS{:]yRFLEf1*( Qr&,.^ː^B»DɲMYᐁKo^mYC!n.`m;gE5haӨQ+ 9|Ė&/la"9Ҕtw6#4;z3JEma:Yh vEV٬a53\k^-^d#AؼȩK_xi6Y؂8rg27V {:#jFzn8PhKO5Q= xnf`B8%ST$2xBY!(^;%CVb>9\&aVD:.J(e\GW6Z͒+}E7E|"Be"6'T+&R'qvhM8W{}â%oP+#;y5H)7+V SMfS9R|wsU*]I 1ɰ&!+l(c/,L|QϏMY07G]/:@ŵtI'g[$ wյrؑ6}#ZT+Ѓ]Yk81@`R7f=@3G=Y"zGZmC7r#tT-e v)07{˟D O7|T? TDZ#PU+`|#|:,0zrCFpI*ء/&]W|lYPk+AKy]jKrЪsC1Үz'=93[ ٕHxhbTp+K{\?{+lک̼޷WC󩂧" ;w0m3MHDYȆ,-G`8Ұ-2^/`:ttuZKۋ܊'jSVnciI")Op5rA kٷ^k !bPعIE1xCP̛@  @@9[&vޘ377(Aús [FX|stC"'ڏ5<"ozPɼBu jc1>3U卪SHSӟ f u/* 8m8HE,%E#e|#tihlmfmn~ D5(pJDk.Ñwݸh\*_lzҦw5jMCZ򭐢/2Rfc<ϯ"p5TP <+Wrym94pv~;.͜pL{TivU*1pzg+/ ϒOC]1B}p(̫Tqf<~DVC =}Of͊7t1HN:hlr0|@?P&^Dk9G`"'ETDԺT)Ju.;~F$jWOE׆*ZmAI U{f&7l?C:.G7qLHGXu,$wLKCa>u7b5{{F@vAJ @ @,4,_P޵/+uNb{ 23x?q u(z٭!t+FeH0WD7ݳ(:>z/|Y^zGjE\G*'hflZJ25p(uA_g=|1->^dCTiM̶hHf~vnrYsq܍[:w dV'c ~ b!(}ndRm$J.`F@aV ++w ոEz<"ϖ.Y|c_Q'oR{ofB x[[]QY ,N[7uZ[f%;<hCÅL @'Whz>郚Pv07]pJw߁EQ͚no|(qA36 ]a"u50>\;>њ;n=l UDw|MB7C+pIcubX XyCuKV%b,3.b{Zg^ &`fliɥA*_\_*~h/=mj+ޓJo`.RCdR~JiQЖ8ψC4FP-0f*Id &W?[n$a^I-CE6m~:9`YZ`KxSҒSx8{srm>B.&,@;5OTom$P kY ?R}#:W sk4r{ڨXA֞"6]1USj}}!"l #K !OsP 0|nED65'"CL5j95(ܚc#æ+xω,SLS15N4))Ҭq_}ܲBRuMl!개;s-ieBD c:9wVKjW#ҥxǻN ZS.Mc+ ƙyk_ٯ[<ttF'G))sQ[9MA5 $w+l\e,. 2ڄa&e+yk+6u?{{,AO٨>}Z2q6f&V,)XMw8 %4apOc)R$aHs^_wYFf $C4|/P+ $Tޚd3NsS2ai8]-&$`̓;#7NI[/vݲ6z*6/7IxoJ*7#6yJ{(7J3h$ -t¦6 K=:OnrSv4&U4kTD|$ 7p&ӀmwhNC37fN'QCCnWjL{6 `04M=auP0oQ|ˎ&d9F}cd$/ T 8 q[l0 1}/{qTCd/(W0Pє:ds9bB%-G$yTY(XĈoK q\aXġbK%2CKRw&oHftTPLs wEI f"BrF8_"XL3Drza֧ ?u(x"–`':(#sǗ9ෑ1:&c~FL %w|c? "wTpNVT;7>58H0*9 0Js:$Zߋme7_y?jdh"h~\tZ g/@mrb#ZC(/R% <"|20VZ_5tj˶0ć&șWR~ew'vdN|'+ *6s ,9Z_.k8pC_iS g= Y>Rfl>SdGu4_:Ug:ϓA2+ՑꤗfxɚluJ/ jevTfki8 Dk谔jA "f|mRĿ6v%@rhuKB 2O[b'~vY;"U$6xݒ$n-ѳV/p7ewJBXEVF7k0@O82҄"^I: exڠa9N,IXAI rdw.Jj/L!16ڍrVVG r}:uZ4M" 'L~: V$6p?M[׀~SFѠfjI^ND!XOVGslcUvpN<(*SnCQP C9W-A,3i]p/_(N5 񝥈}.d*  c}{FY >_/p6XZW^GufWD!cJ냂Rk\Þ{&rB~p9:<4>$mKY>p TpДIWT'V8r^-\WVтTzo<V]$AlQ:6D .K-d:NtWKAXwrǤI\Wgy TK="~PM?0}c|pk+3ΙOUAw/ kƥr6kpf;ƚNV$ |J#^a%𑆤gUVm\?5;SAm1Du_& l m01"={ t$/-;l&Z a^LN8>3@g<Ǖ5 |k4} y4XlmD+>(Ke)a9J C;?v }v͡2>c9׃ I@kq3q jrٹ}ǧȏnuT&RjŔ an.w?RT1mþ |-2\4y;]BLI<0_qJΈKԟ`-JĹEkq-2P^ T)}yě5IYPB2,XWu˩U4Ph*̒M2[BH>DZzY-QF(1x_Nq.0>\̌xדStCh6ASŶ? Ǘwx;,'ZN@n⚇%jɠӍ-~,a+ 2v> ah,]>/68(%aba޳JE^u6Ö"L޼1Rjn#9n)dsi :5ͦ$\T^̭Mol%޴Lt"HupPKf4Kc#ÓgVMRLi8 ՃbҐ(jz!}7)+-ڽ/e!w˿E O9`֤^Mf?jOm$Ko8mikvQFtftn'h:s˨f3A<AKzvm i7^c9uVJX!>oCʰ1/KD|CwĥĩL>;ni/V,}f Fz^Zh0"*\U(V Z.CSUТV+]25Xo: 1+,Kv"q 6)X{dpJtlwfR\@z-s$=g͢ CA ]i˄Q }j>?O,jwubfy0ՠI/C]U_u'<{1TjJ5OLTNŕsd*4GW|HԜR( -SSqqFCAwO(" ]wPr,$-6v#\L&oS[+?o?CxP-+`J8DvlϸSjCoDEx_5Yaia],%d!{H2xo/V0I\}W?Yby"ޢAB⌛ݬRAvէkBfFg1d"y,|0lg.ٿޑpӸ X}Ɲ/gɩP||:Q" *!+D|ٽ"g#1\"T{aL{wz * Y؛mvoKM9j_Nw29 :UH'AGe8?o6Fe`Dڬtw".uDSqQ0,jPxz}\-Cjhkqu= Ú2LfIóQD4C8e@TFqVHR+6"SN{r@YuzToB&UdHaY;9X FzgK{yo퍴uvYaxfɳ'Ү#2"DKi `;h\p[J38v9aCڄZZ:E:YQ$ vJRN&6~ opvAo-,BQ=gg[ Tߵ'cqdi;i *U{Yn̗(dz%*B2Mk621 ]$MO:Dy`˰V!QH}C$wO1;`>Z2xJeRt BI1׶3ѯQQqOem562M<`deEktplMT /+3tUTؑT؟(Q9"1 6O^}ak[U] 'GY0q}/ZEM%ת߲SV!)>Yj_P8Ԗk@VJ]DfY4%̇D'ײgci:xDbWk8D`FHY:q}FLGC26h>,$߼] 8&щsڮgQ#҂p?n'*<S\`^=ݲcumٓo- ^-8NAߎ'EjiO(yIʙK\6~C<^z]\ @Wl_k%dp0K|~ǧO\_EWCIiX ޛE!r3Eܠ57:]3zqh3?~02Ꚏ5˓{Uq:ֱq Ppf (3<޼Lc[rI;Tr=[[e̾Hvtv`q 32Q`N++uJ  ny{G"[r8gk_4@`|k3C)6B}j/v@P"D'㼞Efa*|YE7>h˧ #ALxpry;<]R=gEaTBs*o!H:ն8dCZȡoa[T7N34f.܃,qUNy-P"/j}$D(j\1p1 ʄGt!N(2۞p(Sz+yb'bL]?6usmN)|߆%sG: oIot;0G fݯcc z)Pr}"|~`'/ڙ7LV-|plDs qBYrD Z//e9"'J"X %q.ףKv2[ĹXD}.ǀ|3!{͂RAq٬&'T^dCUoo"Ҭ!̚C8Q<ކ\>i>рe=kBXX)Yj`!.<}5&`BBZZ*m$5E Mb bRk3o!m-|wஓ?XJ/py-B-9zB|˰UQV[  5f!ǧ޳iB$X PcNDE)[ʲ 쫹1pi'E %Byew|Blۡf$^v!#1e&_u* "NzիVx.Vn"~P"Es&Ҿr:e>oڱc^aXd+%u%W"ˎrC'  0DrVWf C6So8'% $x)Rb 1AFDnѭᐎP)_ºYjt+JU=ZV z5+i;?C]q^!=ؿkΎrOCO܅nNgWezJ%bYqt} w7YMӅ(j :nfE \cPrvQpnsI69 N)ܠ'# ^.O5CA^mf͚Ag2Ts> !=vEq>%['o.V>wȹϸ|o-5aK`p5.|vY8GsnN6_ qB'%{KS#9~.…KRLÌnծ ׇn EZ!W{9bZ_acX9ΐAL/3*7RHJaFYvAv1!(:|I vbp;e n/ؙ;pMԤH=uaT=eo _ĎhGbM~QR̞1?#`ȸ\Y?#u@ݺ . dvD &R-gj8fF,=}cؿog71# Ź+qrKpoTGYpWfeAlçNZ6@6^ ,J䨬q?>56b2"8 `ӎiUL(la~LǀIh`!o eX:*ɟvv7e:Yq{XW N__+'Ȳ54!؜c@BֲcDq&owhbLԼ{dKU$oXo֤ųY(D&2Cא,~Wz$آqR!#~,01Ѡ>:U/t5T8aG3 Wvyi@BRϰSo%k$o68Ǖj JÂ)c?d"#2kp Ϧ90Hnjʚo[C=05 2 ܿg9(sfmIgM/7}_I5,`eoSez S8H^QST|-'%-" izlh,"?Uap-Ko O[6qX:(!}s *BPPYゞ':R7GhAU;x_c96!U7)Q`OO+2QDq>W+Q]4s%o2gO*ѩ94%$ aѓXXޏUDdq32mX9MQmૅE8K?B{XZXI 57G,%ЬCZzTeh XO ea#?ד@ #aCx+,n& ^R#$v@[ *,BSۣI\YKa1cv馏ih07$YQx𜊂#u!am)H/)Cr-Y$*C=:qП+H=uQ2C{0bTM-l 'Ir٥[`۩ {22畜+ZwFp ݛUMTHҰdӉAQcGc诠 4ʊuSH[46~ft;>#!m=;5#6U0o;5ж8$dUÍF#=k>ӉF81b~?\\;AӺʧ)PTF븫)d__^V/7n>jb"lX  T@4i4O ];ZE. G ßM91VV=KJ_ &+bԲ(T!吐Ÿn9폯;Jz7 ;(u]~5Thiۺ>IБ{^5,)a'PUAWxl")nq9Cgo5O>/td(NƣxΖ UF+3EvALS#/&ˣ},`O' dM I64ţ)bf!NϫFb</3LׁOe_l|~xqQn+wQ?w Ƀ6m3Xe]8ΈQ(]^!ۅrA=\c506;]="Cs_Q!Wп\=@ף{Ey$nvVxHة27cn xW%hȖ"lѴB^ 踄ҌTnJ%/I *L$ 9Ğb>!LG5?vg1i Fxʹ܆l GpP2͡'qF*Y ]d 0kf! HQ#_mW!L֓fއB77:fY&WkQ<7"Iin w߿d[h!,T)aU#iWaJ ߽Qb ԚmHކDs`tt:!ocNx$K"/Ѳ=ڦS$=>lΆZGW)v B֟u%r'Τ,5/53ǔh)s?6 ).<&ex)j[hX! HۧHb[;ö=XNɯ\ZHc@AM#7?VxZ ]8z?|7 xvc /_goX:Q@^+giP{z dVL,KO+zEBAKMf;-+EWDl59FƟ1NNb@ɵ5\&oց Kh$WQs3& 0YԌu>?a+9 ^U7}7QXà+).0X, pʪv;D3fvN6ć/֗mneE AY%sS"%t#ߦ\$87\ o4xUwKUbܷY0p1)0)Ϛjaޖ*h&9ǔkIƫ&gA#⍹: >VwC?=v^-roY ֚r[:&A43#ʺ/Q$84|^-$!!wVX(lcK =+w 5wf(Ȃ8vi`ƞ`_?~Ɠr`= Hht\!>Y\!% ֗oב"=Q~)M5;fS KT3\D۲nH`hU2s `Z,nӹ~1}  O/"\YHD9ȨIV@fU+sA.TgUP[Ј! ^]{ܱ(=.u7g?̈́]`ԜsC$ (W#g"d%m,ѹg`pSfcv%؛/%L>?8 9lGSez_uw#2PX@ cCij- [%ڜ?ϙPَ9i. 3WՒdʒhjՖ;hX᫒%1Qu%'yy51Vih h:CB$[8.,ZŦC̏DkjBʶ[@su-I)l"`}~4?M17)}ydX9iZ\S&nMӫ31MW 5>0 dezPAU?bG좒{s_F;zVRs >F5u'GV 3Ӎ}d_4G "~@G;¬giM~bvy$RcT+ˮB4qNX>FmyD7l`G'`>>>Chۘ!DcVl?hDo7%!@1 ޒ69;PoʑbE5'I`Zu1?/mm=,{jd_ 08NsRǢ^ȼMoh&s4#p&X Ө2pwXL1R nj+iqz}zu4w)hxJn%-nYs ٻcV+dD7CMd8W1 40Uս}|Aجkpƣ& ߺ)Œb17֛KfFBt]ڑ\i Knֽ-:>(aF,?J~0\:Mrx'Qs3k$4 `BsQТ!13$z>AYY|#ھS B5X?:%o&-^%Glv(G3 G 7'a 5)MVyK>tNNMw?w*>4ƻXFxJ:^K WNsmhKSiTۨm2»w9`ĚJ:UO>H~9*J;Ԗ.yM/MVx%~2+T^ Ȭ3N :@ נ.p;19Qs8af噶Da̜qu};"1 KA$V nZL#"Vn[YV:}tJv4-ݐ ~gFN]C|OUVg}!\$uQhzِ ǃR0y;>Ȏ&bJrqvPw<^\jK wHP2$s=7HL(ac4FUxDƯTT3ނDP^N,vh%@ 6:ST3:*$ z`ɦSqL_{ W5D1 K1b8D}J^7mA_(ul%| =BrzCZ(?>;6ϖXiBYXxx<:kICFOTpRK~uì yVX Qk{DWSO?ȻE{_Uy9)M.pű1lUν2л11V9X*,At@;oJ)7lc\wfHQ;u+l*ZyL 6D"!Xp)d.s/M6$bjI~ov(b}x/,>Wub>\\PͨFF.˒x GDna}@&W:ՁG6Tҽ;oI!*47ő=kaȓ[~B@RyXׄqξ-Q>LqaǹnՀG;QhfO{bd#'<-bWR gtz*yJ/^;$%sC;"$g\@{z:˯{Qܣx}*v/I̴\Z^D  m8sV >1BbwEvCl>wE_)lR^JũGvN Q7Ȭ9fpnY[^ q0#Ym*qD*-_Ն3?J9J_C3gpEBچB,hxm7TihZ?e57˭ 5)-P),(-3lʸⴼ 3TT)#[4ϬX&nn'4,0_wh} .fy{_ß$X+CE V7I@>[#YR&]l4q6<_Jwbx^_aOѮ[e;?4bUk~-ZOS>>4IR4g(ZWn# S=X= %IzIC.Mޏ΢A*DtY@I_nEE.#ôn;{$uz?Ѹ.:6|$b =`ptQVimTƥWd28$W^W/Xⓥ$?ƘBmT7Eˣ?2؊[Oh#J4+XGTarEm-䊲cJM ;T؄YudٲK55NK\[MZ1@W[ZS?}]B ķÏr}+f}|sN]>*k?+)a 0Ɛ`'As f}a6\"_ۭ3?]ͤP]P͚a^r Nqz MG/r{b4ڰG"u@Cd/v0i̺*oOᩧ8_za]D"-]("qkhtyzEV2ɴL)1HS!8a $}Cr`UoP ^JQ80R2'0n\8'ZuK0(+7V ʳgU 6a@-=<"õY%R^%pFE3(2Gl{ZHOwHtӅ"QzͿj,$HFoYsi ·W/ etQ J`l M#lM@{< ֙~H&L]m޵<.8yI0OM8&gy.7aR‘L/=ͨe3e5\O-3Ģ 'EbtjʄW_\siM]׾׻}l%50}4Uz!ƶ[T2Bwm'eПKK /@|*O1? Cdӏ2e=xa)KcMJ3zrtΔn@( UC}֚@04R'|Lou6_  ^JV|B j 3 7c vl$.WT j/&A ۇhJGJY ǽ:{3Z6-hnSكωA ))w^,j3ñ4>a ˜FY~a Sb!nj\ V&/v0]]8 s{mIStthqV(3#i XyHLoG',CaK;;dϞUIF6f0ow^pg*?# pYc4WrWH4:w6-\YR;x1 2{Q燔3ca.E|bAkQ=jT7&p <12a9̫w* `GRbxvRT5|z¨6uьr.H[Y{SxEwL,ht?AӉ.T:XDW 76wY)T4g vȥ> ɟ٨&#s֏{>'FHr>>4ZsR"M(vAg|}9P쌋(8ԶULZX`6kDS̼ 5\K ګ+ۍrMvtOP@>ϡDbBp~_'St,vpq}) j>:#+J~GRejȚ"ZLEԺL):'!c|WV y? FYQm3W.=l"KŖ[D?"SGx[%d_rv߸h,$^i"ش/Oz-2$G}Qpze>߅PҸm'Q/AS_s"7|}ndKqtHl.¹E^]zVy%i\b-"Aj  w{?Пt6smܣD7Eȕ{lwy2#v^3_~HE-R.u|@)nCaB$ T-9Y=!4?U* 3I9#K? ND %&zrp\gfi!:TP ˖z1;Q)͓.`6-oL͗6/p*v&륭nj*~c$>;&""h ZI_k$XҀ4bTS>IB4 C,6hK 󯝑 =ɵvIA)ȜUsw>8Sc5 BMPh˯m1m1D͏=-^+w>/#"u}vPSNKMW4kKModr:gq&1S\UF9е$X{׊wKқiSYr9xZ=k6I;|M^bAd]&' e "1[ ttl&Ө3J?>pv] 5 &{ț% -XU6)WwgU,A JxD`I %sZ[F"^5,NdKpL| gDi}yvS[fxֱ^U\{Y@."`2vuԬA=/6_(*Jά2 wY2 ٶfO'IR>ˁGgb#ÜL B I9{HF\xfpKJ490mxf-$DK[^͌ Id/x1 O mVG^ zNF cO\#JyqLn [gz=Q-[;8'1Z(7i\X TfjthkY!Stp~Aa bk(OaHrD]8zj@_MkQy[C*Ɂ 9Q0D@"@^w7 *Ǩ% *) N(Rc#rln|k 3 bwFuLv늒ّy'<3kbe4#~`v=7|QS`Z}gK*'8Fz# -p ɣ7p#=@\'WGjzzpgx;KHse-]o-=JŞv@ HG>=g^c-SWo=glh丂w55 '\`$LO Q|Wfer"O2bmҗx}T9Uu&7#V,& 4g+#0ܑ{7"\5{vDa6$NHp?=`T{ƒ{PIZh+c()ޫ65ɮ )0Tg:3.uc5/lA|ڭxY~zG$%R< O[BaloTG`΋LC U'"ɡeP 5,P|YKRQj NŠʨg\n7º,lʉKyf+%aGe Ec$5Ȝ3!:~c/ O\afW t1酲}K*Y6yxNjc@Yv*HGMZ"d{B!"ORmǔ>AqS34v]LcrOzCѤy ^;=ݰaa1fZq=v["1i5b:.[0ٲ.c zֿ6\! Xh p&f?#5AYIX2>.Y?He, j7, aC ̇ {HVzJ,R[cn7zok1Eo@AIwљvS`)U2yS-!'ܣ.h]\#;i0 y7!gM7\gMbS{I<ꂨ*%O/KX99]}I7Tur>5ضԍ ,Lp(GrK1Uݠ?]MxZۿgJ# *Rv:~7|U>S{G(RgRQa!َonGJW{)0W댨ܲ8hRM q-syO&k!H*euuqCӼF#i`U 5ݶ5CLmuѦW(ӲHU֦'1fPqзfqw,;{*5~E~Ux O5IU[-TL&_ d ˙)p}y-Rc|Fkb"OIJRL/gąJB4H{@r']~Tl}[h JD G-84.v!%;epcO^I 畈d}!L"܄<LRRRm]&bhcwᬝϨ2?${9:9TXTƴe-76KTE{/zAdoSY1 *grZqG)HH -Ůy ӧ;\Wk_bxn1+-ꃥVʇ*:tqT\Z p<$~<36})PQOcv}c_=/&AY}2AhsJ8l\Jxɔ<33Q2,5e(? НkVznwP}s|oR3 1p1ֺYvuf@wQ |{n-V+A!>how=rȓT]6/,O+%*g쨒vm;a1Q<;LB\/GDed3֙o"tKTf-FKQ>Ų۵xbGQ16h \aBӴtCIa} {P+i{iZ݄P(txXwKDxbaF%ilu ዏR2@c'@dwQ"H |7ըL)E5:C^JqEӊ- [[KIodrȒ>N_4Ӆވh ŲHUqeڹc*;p=YgK'\avUW$0>bHq (k`̂d,ED;PD<՚y/؍dkcBh6Hdkzn($1Cj|2d;|?]!kLH$^[0!AƇEpFqAI500 =zjpwe7<O)U2pܲM\4 E\8:3nx:9AYD~ƩT:w}*aD&{o Wv{ gN@vEZB9t#`>킓|GjT Y;K06(@F-ѱ+)Oo sIo$%/716z[dٴ=xOց'eAɬ,ۺ cQdXw?>A F|n\zҘ+NIq/aSj s.oVH z 5=Hmm-KŚ92q|+(3C1h JuI iIFOKaHnaң;8uC'+]"LS\4rI%8qlrN|D2Ek,2wf] eлZ!zD..Ƀ8p˼/,kn|__L %V~shċpӳ(k "I6hfȔ C>t*:\zwh?М8,(Ɉ9_VOZ+6=Q{wjg~uT!:DΧ-@2 i<%ĎB.a`l9n24}"27(޶0FAb5 S9< 5!wO@bƛO K4  L c]Py8S?0ߜ F݁O%Ϋ, [I k <1y7,u2/+:Upr~מ6T EyNp$f@ 7Z[jyDj3/(٥ %/rܼ`*NCV sKx 8}ʁ~`/B(}C5" ; ^*O黟'm>mz#'!eil d^RU_h&+/փgoH?.c긆*‡D hָ}b ])}(V:qUzaVHVDu g ,e Ԫ|E1Rw?Av)/gDG77Rsb(WE,"oBOx=im'Z+xf]}➢u(nNa[e~דw`z-%iq'R`ײk[KE!'gΌsD}D|&,Mcmس{$wג))YXsPگh3U|R[ȓnK a1Ā{I8s{pn 9pG@qѺR#(,%k. @v<< sfЪct+m-Ԕx2OjEH4ɆҐS*|>!60~*tם&x+3]M P4tE4$uŅcᐏ"Ë]|r=Oh],A Ճ>Nj5͛GU&}&6hļ~.WסB l#_H"t*NoCk2UZ4MzS1S l7Ezx7xU0!~h]l1a7.휔X?6:kF$ѓvň%LE?. \r;p_GJc ۍHR_͂^: X4jmE{s>HDEcEjb>3 v8iEeAi4y#[S11S<[/"3VKN|ᇛ|@:ghv`:}2k r%̊6GM']ݖ~jY4kbz;:Ws BlKѥkϙ> y~:9gL`U<:tPhd, USqkh:Fq%>^ ű8YC*8WcAl4~OU~>v+i0VސDp SwEDYN|ֽ]EK~'BFyH־+n?eٙt8er OXn`B!BOK:sRi{e=-q:Wl g+pfSEMEԑf]4^k.DT$ش`ZX3Z[}8vGܻN,|w{H߬U *2}V7{,*!gl$w BHÞ/> cޫH8~5ߐ3Ajz2i#ZKU4 ?9y.SUq>?피R.@E.\qU9IC7#g|Np. m ǥرJZ\spt}gJr &=BY}4 +$KjOyބla)ӣd#𐫦glM"z oPQp@!1o{*a[憩%GHgT\jǽrPa V?Hӕ s|gPVm9Vr|_F % jѱw1~IU<^~`Aȇi~_6iqz$mz4)mY#BW7Cgi֏q&Mp{K$8AiqH&$s&mKgR=芅=aTUogRxu{C(:u`2ZOKXn;y{_dhMd1- Hv4g,y#4*+ی $"Ⱥᅙg6z;A^.]cؓ6ox1MK36 »hHf$6k~W>`&V&d)=XU(-%H6+z\pG Iˬ ehĀ.PN%VBM*%ot@g7P`GI7U!o^zM0NXuֿ;4t(v?1+iUv=,,m]MI*]$"|WK\/!zRU; ]G񉓲 "PdK6Y>9JzdNL6dVlaݻ5#W9{C%bh1MmE۟QQ9,ѷD)86PE>Ml+|'[;mW,t4'; oM-69۫Ad-,_Yz,$OhBK$fy*1&&Mvf=T"x7 ]VRki^ vg,Uْ~qKBU–`,]*CEg8N}Hޢ4/g*#mt4/}Y{_5@hjw/4+O3 S_Fw5ö)s3h 8}N%jPfa<ey yE/ܫAKK<0٧?u`糥rʊ~42T:|+E'Ts==-E%u+1`BNzM]| WYbtSUK:'U[̡TCŘC\Y+~ye}ݑۘۯ̞{!^ +IM*TZ2-,Qydx2Wo& 3N^c%.wMJ)/̙IVzY;߆ -ߒQ,ȟ!ܗZ xSiV e`)˾lnx)yoUL=2wfL=&c ZΉQӠgBtf Tly_Y5qR{1d`7]bp4453W}%%,ģ *4iI ),CI&jg@fM?2gCѿ&jU+쿯$2# T 㴕F7Y ҫ Vl{x‚,z~[i e?q\l۲N"^Zr%̂ `|NfGCEG!*[!EAW=mʖ1R~{=2 Lh~39`l҉ !\VYWTt\C:+ A4i ?R N(~)cgh!Oʫ6sߋq~8\]S M| >3e0 P 7aOT <5&Ǜ!`5-krl`Ӻ-Sh͹ (Z.Ecde+&SʲI &݀L ArZ"(Nˑ.S: X'ZZ-d{჉c"D};U#9*󁥯p׹GTJͫ40j)j)kpD8ȯp(83[+Y:)Ğ[{cwZ l5Z-jDBiSj'9@14|y)X`5n52򤅖 Iz/ Y=@lܭSէ_|jt; #K\˲,k+o#H~ S8dMk'Y4 \a Z{ebG 4;Κ~-1$̔=AܥuMI&- W-3I-^;`0T!a73j; 0Ńy2Znc Ld顗S0Fb`XD15 r-Ԍ*uیELZ)R6a}cW~ \",*sçrD]p©!2M?h$COCd%dh!،9m T0BcO{b@JN*r. qy|">A$m쾮f$yH4uz_a q\UZ&Gc799%_{;.}}݀moVݛk 'J"e_.kwP_+'ѼWAoO+c w)Xq{bѨ.P7_+%uV&u ltF gI-_Dˠ"q"6YEJRit?I-y8&bfpY-4BuGK 6]UN5wzW X0]z[[ߍ§EǪ\z~bOL쟅o&XN?;Û0b,9{סG#juyvN\K t6id*>3O%% XGknUgXm"6 Lp-ю^a:nzӇ3ݕ9᫱+ϭ OYkbڲa4'/A&1?5FSg'Č8ʴl\3Dх%I9+WvBd(Ia ">p qp cypQsge*yE뀅{+? _z?^"Y91l8hw$ߕow\hmCc CEL(Y5FNYOМXPt)4sȟǷf' .D~oӱ]0LpsmоzPßV6ݢjv\a͒ƯE6c&-Ny;wD+Q3|E*?e"Np2tc@܃Ѓ^ VFYEtƠz(QU ?f 2);.[| m|Da9C~*p*sCl$™Xn!.ZOwKd,Զ.[·Tv,Nb7lqNʚUғybRM8&:5vl Mtw6dSRSl[ORh&Tx3;l 4!Uw?3ydxpHs~+EivM\ծyGML<Iinu) ظd8WK橍,re62 w^էHaPigR%HI\ZFz {dIӉd{):IJ?d 7No칢?꧄|_L{ -VPϪ^eD\!+֬`.{\UE`hcYY-7N8}Qs󆊢,t6~1z:sOmA/4DqՇPthi〈gV@,)QGC|Ϙ!w&uw@w*Gy>&soi I<'{3=!q eQK,0Q9d~-k{~6 g##tﵻL\\6{RL}x'K9KzxjrVgìT"ϴ )3:#0=\M?AH=N\ oܶ, 1.v&pnmF _L 164Նf^(ӜNypqF,ṛVQN;3MwL#WO;. TiW6"eP*f@<@qt{΋&P5 j9= vD*\Q tyҲ̊NQJ_q ?S|aXEtKS`_߿(~cIE=4^Yb_}Z]#x]:6h$꠪&:6e?`MDVEGwyZޖqORhCHCO R%ؤo4g9xa dE^TUՐV/y8Z\j>_UnX!i$R"^ +piI\u71v9GQhXnbZO8q.Og)$ km9q|w mT,3(;u$X>j8Ml`VPN; ebg^.DM5X,x{L Uu?Z%4@iKh#M]aF7:9CQe`O/.+v܆ 8"^mj"b)u{[e_06q;+. vΡ Hui=X3*Ǡv4w S{RB_8Wn9]GN$˚&ŘA.P2bԷ |ƕ&'φx4Y=bf/ONM0~[;6C^=+j#;O"$j '}tgfhW:D_7,7.GZ Su HZ2NcQϋ\ޕ" ݟ\5lP[1f䗓}jԠkup42*Q؋*]L*^):b J'VA6hK$;>,ᐑZ-IP&h}CQ^H6o[B+31W[k+d<i 1u# Yķ@gL?a?􄿜gnU#U)7ߍ 5w=[i蓛b ޣ , u`M#aFXVbw&_:|ycDf3vNI=D7jEw]bpGv0q5΢uIlp`&Ev1[8(NbA!cȝXg+̅ʋl7E2 Cqp[z5 喤F8CAsڹY *z~(bjo )w[bABKA9G'n7gW\J QW{~N"}xtƮb;^Qy "zxȵ_H ^wkCV Y#6MYiT`.t`LV@B^w/7IVx8c2dqzgċeZHҖUOpkT8}d<_ |/!hAeَ:af3 A~lʆz]8sk7)O-؀kVh?k{  NҐ*#}O`',Mumqwc(@^{Ky1$Enޟ{IHi'_6Nʝe1Y ?[<;SEw.)Οgv:۠$jq~:je->G Ru.hZhM4501DlEhbL⛚-h>t$LKx0LJ$Lq R3kB.l$}jP8f ^4A7s5uL?>2-K ;f2g3 P$2h[*LY@d=>;||Hp`_~,wҟD'`Y@<_.$嶣W+SM1]QyҨ2 +1I-Fr%$)Ќj 2>=sҸ|JW{ 5qͦX){ ?+1QnQĸ_){\q P커%*! ?3J UKH1mS=' 7&xgt^XӎKY:VmL/IN~ 錏V)\@/YlQ[ #iOBbi zh2k62#4kbtG033P N[hڜ[^mX\ >dvڵP ੦_b%`s ׸\Iڸb4=p^&VJa9jALh՛F:sfYµs vPklDB_7t]OFxt qG/T{( ]m窀G8K`("xa|MzJ o e$gWo' SM+4I.c,qN-d3% Cn\` XlC6ずZ.tuZXk.8fkCn$`Ʈ(nC}d3\j÷ kHŸ vajO }ci\|aQbzjFH˵QSMC9,(s2T_d՘!pL=]ma;$n!Plnz%/HS ~_3ĺ auaH)Sk1"<+z0A z = y2M-k~G>l/NasB-v1@nUfa}/ P8`?Up$kA'ИDŽZwe'Eju&r hz"%R}qi{6MdʝW}d8菵uþg&KZ$B+!.ܙp'TY*̽7d0Į8G"'agO <+*Ve芮bEVᅊMw`|=ǀʉn[pH 'r=XOFIk!=+L-F5j[\qRg0 *@}g!|}IȈ?){VD "7`fi<-Oɥ#G? tu)X >n)UbeDyr`FqoJ7m$R:Է7}hu3MK={f+JWUG)jE_W?UVaԟ:p`;E߀*(+qYjʕS&-2&e'vP}+ Wچ,{2 /(" l>?pmVI n7BM> -Eȥ6?Vt(Yws4ho1Ry-Y4`wM^0nfIzA8*y`ѩڍ {a]8ó VG8Q<\.R6aRI䷨[^: ɥ#ʴiˤt-5x"se"r@KG.+!!qȟ'"lm. ~dtVx*`Hjx~OӹIM[ضP >%= F 'z1G3$X;_*5^x{=VϪo1su[2F8uc)Ij@w[\X $a/U .; z0ib76%Xh'M4qێ8'? [gEVRѳR+JZ W`]MfhJ9!a^?&:܆T'/8lrk źg KJ/<6NcCZy;PΙ=L"9m4jO(3+ r1 Hwq*4U` ߪ])⯚~INسq>& qM#-J';)ˀ1(g7 `N .{fqՓ6$S%c))C%\GB繜8r~앍*,:R{͸/ULRxAL$ )'7^г>@u# K ڵQa\,I]C7^!2= RqnΨICrHDU H*!3L~/Ÿ遤8c.\aI߅n01~̢w}>Y0 X`wKQ]bCwYCuv^GB i&-\(uPq֐"S̴cW﵅(ߛU_(m#sk;%C(~ kƺA"VlR-B>|zg$m+Fes^Wbڄ\U{ z+>9[7?31dYJg,=` me5Cv;aݽ їר;ž=dRz9vBA?pK HzRFuhL=!b"GJ*nl& J +fpGB!k̇BP䲞x3ržEjNLH~\8N~Ś9'SIyLgnJ v"f745a_YڅֶIhPGHT86XWH`MO;2Ґ4x{"@ w] Xv=+jCܔEh^W%Aӝ`ыmq fk:f{8\<$6m&m' ONhG߯9UvWJ[xMC,{}9d~@6%fn:pSSq$5@&l8`k] }=iLXm.OXfI6[X\hpghKV9s1?LUJ FteSPek/)3z)UIz*q a#N5"rԁ_Xr|f= |cQ畄C&ϰ` "S18D'R]=/{w0 IwGb R-XkT]&4ƂN9#VIˁ>;b:S2sĦi?wd\i~pa@ ?e82,pJ~wUjlRy^\J׷ZOZKȄ{Y%>Rb @v%ڼnmd0}/÷#I]-T}HnfѦM7guC앋}a")5_cB wƏSߪ !*S #VyW{H{lUf3^=dw [U.eծ bo0lBʘU;SJ)k9J8Jp\CǭgQ^V42*' gY @y 7S{7Eq.}r8:Y׆E[Ȏ$E`'JC1V9O/cKW:U Y:wC]93ZiǶG)t(@'d#}[Lۣ) L 9b|8Zoq0H.͊,h /{XW*T74ad+i7/or#_ڝx F<;!$\0` a;ԉ`! O領-4CUZ-QP÷jNVΙ;&Rʔ Eĩ{S4W/ , gz6w߼3ϵһmQ|tnoE^(eNY"':ԯr~ה~/E%%:3+s7XzoblqCS,usǀgv #r:O5|! 4|} 61?4zg-Pn~F+^wEt[w*CS%"ktFIdݙN )&w숟m2Xs02e+iҮa Eߡ{\jҍ* b~zf+:VyG&YVj-XCu{ҵ<[[!m"[<9ag|6MmGI׉.-U_d SqWr/UtdKn)]2#L/jMGYBR1xsHbq+4`3w6d!U# B]>RCU_|#V]ou8,ou?z0JYȉFGW;1$bg%LQ8HWeek/vk-UWvfr~пSy-[[}߃C%(}Q ϚS?@z&;uD,kd\NaU C'3|2E kL6t2pdˏ-`(RO{㌏H'$+ssjw"+l,餍}6ro^N]V k MTҽ]M"jk}/p]iDfàGa{.hvKn+RxG4]q,FMV]dXCQsI7\^"kɽ/Ývfz44d}MȠGAlR|kOx|P"85?Q) '5{k6v*@E^JZ`v#@:=B7-DUW R }X/b] լM+geIMR1XsT<5%#u~X?yjh|KDo)a݉fCKT^ .^o9/X\ 1A¦[7NʴYVOaI 8oAYOW&=㒟8. ΘUu\kU2R`"wFu{:: g2"dӤ6<[A 8vI' M27P9DT1ZZ6R>hwi]߄:yHm,y`]9~9V+189kY^ )HKf{G[~싆kf)dl S:\2Ou׌pU(v+ۿpݪho;?Xss ~FAqadk[1zrnepLw* &z6 M̀#V@&Qpq zsRruC JBۂJ _'(UHml>+MH]$IƱ8\a/_>wy߶ơשt_kE35k7*\`xMk]07vl0"|ˉUqUup:ShA`_A6dN&Dw/Hs&1Xrt*MHj>;"ۜ4gaJV0H.L_SV0 %DWSٍw@MFaHh"QF|J?meMNuِaA`mXo1Q Yݘ`og_;ԓ/k(ư hɋVte9䣀G įӕoђ+צgPׯ֥&ĆQ0k@mXn&{n\v "!ٷ.-&"zZ GꙦ$/͜'5Mv28ywX&#Q E0P4)J#< _|v2v?CiX(Pą Wd\C#Ɖ&IPd>o+n4%G|Z!OHwX]kQz䃣0􉎩5őpQ +&e^0zǻ+|T2>1/ ,&+J!"f9{¿O/Ϲ)+h 'A~zoПR<=;cƞn^8@zzy ~ , Ħ~=ISjVGr"{yK ܾЃր+k32΅5?i /B {qil}9CY蒺Wvo"L4p\٩V/.Gɲ~?474,9j:e@zꨑE- P21]^Z<-T =d%i#^IN{qI lFRJ˳|*.2&uhnƘQDفU ɠ;>i'W.5T0sm@_[H][4 ml4崙\Vfvniy!ޔ Ɗ&xؘje">=6F^s5Gjl^a}5iݟRqűb/ۼ¨o=r`)&OEÍ9;DZHL s@p0uE,5ɕF>Hn7PϹBۋ"j]x܃KSty* KSŕK> o)3ɘFL[qm2ᐨ׊'랇؊KDMԹ:.f/8l*aI|?"L+ o ,6zl̫|67z~V`Ӈ(\պץ0 ? =1"ܦ2$x逦**(o3,eC@aOlK) if ?I<_3YI%\QA|_UI˺{ }ye~ANz56ɽmUFϭwe<ӂ1Y 0ƺ /ճ:ʘ0o0>p 0BQThb!mڳ<;15AT6MKEHUl YH̓`Pdz46t2;T^Nl;ačνz';Ǽoօr-c }3O( \ >W N }K N(Pt̶$6~AǮ^u Q wʦէR\HBDC=ы5'f??ʆ=08; "3jmF?ل1&4 o8 7PpXd"[&Z+$=4gڝ\%!b=FgAvΰ֌|8;08#A RO60HŞv*.$W[fNߘ&/į^-QӄJCoBżIvyCP)uv&SGtYOz/// P>K^EFe!WuOӭw OٛÇ+*(WHk (a_Qc-%A~囹R&$dgh>(H6 bH.)B8S-@a!]Y?{ =o AsYGeڀnfx(z8+HAASC䭠\Zz }Sٳz9{c GH2?U+Iw2BF3Aފ釜 $,v&, C D zzDJpZF @! ?`D0hQd㬭D肕_P2`HN?쇳ͬG1X;+S!&p|ECɸKجMv\O_﹪??8Iӛ"vh _AH<)(g ;C(c:\z6B(jD X̤~ `qZ7Ps,,1 -,3-TПJ:F.oGpb9&9TJQVcFyI# 8ilMxRYB=`3%s>q*5)xӱ">ZnB)Jg{h89˾0|T9T$`@%od[D؟dHf&E˚3>F@'j7A!j}u%W@It҆-$.jRm< %hEt82"Kmȷ:kD\SxF]}zRK@%Ŀw//a.T1SS 3%fpWF.BWS0=se@e 6tU TeGN<\@C3 bu7OJב\^-~`K+t3>sLbQђD9(nY~@@@hn?!R15ԯ[ mk՟_PБ-adgjꞡ|ߤĺ~k"v Zn(&6SkCZ"O MmxWxShb~Y Wj~q?. RYq#=vkRolPG B^9p?#]0濨w{X{}3J9Á᪎ȍ\anh:a}/CWpwSfOwoS}{TΖux]7=@.>Jrf41OӘsV ][(Wk3|ck?Xo,ǜZn&n((pW+ UAhDrʳ@L^>x $鏷TlBWZya i4.L)nB۬1q;흪X|8EE/Z(y\%R׻5뉈#Nx:.]>&^4od\#+>ZU^_u7j*Vp[*,qӇ(6Y88u5>Un6 [ Ind$[mb^&1S:6%tael\SdAZ +б eAkbyX5ʙz +m">1}h.XU~88`Zzc2ޑt`x2ywYl=i Sr?557mNS"GtuCd-h1f+'icċlmI| #'ҶM#aܷ:E @b_<:<+q:3{ghgWuݦ6ܱ1y[|'qzm$>9ʣB2>m-\ W -*bWCoDqv~VL]>|1ܐqiJ,38|X,kmH }%\iigMwFI1&5Cfd0`sKsF EܵzSH>0Ŏe`v2Xen{b9y~ˣώN9xx:q:S/l^%}-ahd:h4 =0 ʞ%S[rZ1;ҞM"\$<%}M_5>7X/7IHcV˔DtkeH LY93*l ȧ`^_2H.sݼ5GARǚH}I.D5Irg؁oˡYZVk漲ӵhҖI\}ex)"`~eD_0o +) (.M8Ԗ*ӫvaWyyur21t%^\NDXZ(z=#;il Nj&k+h {"[@̀!FiH؋ɇnV֋LS>H JV]ɚދݡ@1ul=Eh*2I뷍r3yUzDÿf;;/*35UC N`~ ]`%15LQ`(diF'Ù*tâص Py`O+e-0iL1YO&w"ѶfkR}+[tW=1Sǩ5z6^Kk~H=߻WǠV#]R PmOM܎N.?bMz8ttGb}cz[!_3bJ:څ;;3Za.@$[ͫ͞L+n u@'#QG ?[.b \ce P\+ڪ_\qݞdUɿ Zዔ(AUސL"KJo$X=,XSDQۻSq_$=Rb&;:AT%2=1`P, A&}<)aWCh=/Kq _Y $A]B#G[ZwHbG쯠 ={|Eg<*+A0϶ID%ˌ z֔V-#]i-+Ygًѥ5N*E Klu@R͆N$ƶ|)KFA_ ~ ,@LyMLя"vkpj9ل@i 0IƳ$zG X7Lo9C~¥\ӿh!V1~|kS+r(w-h9-wz,oqXHO.fANYxj1*|؃Oȕ8켌JߖGf0*diɭz_C|m(4%LE3NKSC%( EC >\k J-PjCWKEc5zar)`p4wu~HD]6K6򟧁Wѝ QX!Vǃpc;}wKr2Y*.z㱌uF'3շ5;6/<0Dyv} c!00T?Z玔&|3W菣JE5 ؜mIJ[̷D,e0Ĥy5xڪ]_m Ҙ78\Ja]>+w܊R&}D@U@xK'5?g%\A2^K5A쪾z)p#SN%娡jEeTPg.voD;q'- (Q (_Q~t|8^FY)>#35s+i}> De6 :bôOM';mߞl7F7]xB$2xbZIϋ ڌ'x@tN^)gwv~Wd F*KC }~Emm^y㒿 %hgbq*q&~ YF԰Du4w,~s/2*U҅H-~d^ gz^#h4~uW?Uj}1O1>:hOLMA\skDȲjNey G&7ӑ޷ x{E#^I>X#|5DapS׽$yO {-9\. LKJy>tpoOe.e _ݥxu,.jn"'Z(?hTwRU`@ё\9j;+~GV8ȟ Xwc=ڙÁ8r*:)ĘPm;Q*^P /Hv{_V9kY5 KКdƐ=RΥzy;W6(+Ŧe*.߼)5iO-S{V Ԣ6s~&SJ_W1:-. w,zFm큲?oIفVhݍsc L{NZZd+dbP"EfScbl~Slo63nz&-St+%2'lP,PBev,YX/2A(\l>͋##%Xˈ#yYb**g!iui>JA@ \@ ^:o9᪥GJy nk% \p&%u}POPQZ)D~gjݺSr(D~n8l> AYU[|HZWpR#ʎ{`7i)PTKJG@ <ͪzL *OD}F 9|ՏX4J1҈*w]CN 0y3Tfw^Qk _<_i#)Pvq:}On(<С y|09E]9ܯi\jncgmmyͣ-w}mY XT/l~IGV'y6N/ 8СzO,:cԂԺKC\Ay4c͉Ϧuas|VD=nʛ>&ߴGi56G"g%"TT$u97kD|8X3(DW`TP ޔ9 : žetrU^)&1 m~?A]>M&Ic}dRN) K}.%%Hz,*;/`&[bVlE8OC-a }wLe_j%X@F~M#9G\ǎJR(a1OF̨__c '__. J޸V/Y;:6"C~ug[W:]G :j %[k lS;l})E\@ _[ ]֣/lǣ}t76Y̷=Cy!hcil>7_>&,t4z`^ʺʾy;@$HoUaiw>i]:{SA6ֹ@nD!F>_t1ѕevT^8n'T/z[YXwDh/$Vˈ*B9h8 61azDs'Ri&{l/T1Two.>& GK!RU./F+7dI.qf3/r(/>D2dɥ%K/ўGF fD@p'&K՘^Ƌ-^f# i.掊(^))nG|Z p;.H .;cS:@ڍAko(5ʊۅ_L}dҏЅphvPѰ?lp`߳mRs׬8D9{Ķ9#9O2w;{Q0 ~>Qy/AivBC b|<]7vfD/K{8O^Ii͖RCm*| T|o!j0N,C1V(BnIkzzGbZo+:uH3(ڃ0*c rB4mBsr(lIx5K:s#_;0I`͒eM#C uBxa@v|S/ƗסhjL >!6nBoNQLY^RAMl1~'nu57^ &&!I=Xs)M65b)[ؽ(xM*7 grJkcJѳ͊ #%C-9Y %V 4z5*k" ><zI`e/){q#@Ss^V^B"Y2?3#ڬcZCFhlٿ\{&]N!BV m>rB.o6s/4qxyǟr~wT:ڊz?W2 ==<isۗL^I7s\2%2zb! FM?+aT ]+ LAJ=`6| fEZ"XiA?CEt]Vpۘ1đHQ h?pu$Aqi^ u]x]Z*(=jSdnϝ$0r =iLHW_?bWP[e~7h ؙw"zw s@ڌ]\T[?]*x! ]]O?>M&94+\l^n c,L6'jmĜ/С٠KQqml.g!ҭRϼA4,vYv^KBXB|U+jp`JU͢:jdjS MC&甄?D;^ .Q) ,ڜgͰXQFp7ג|3‹vE.,K|lWX;vU;6M[ke Cx3Ix`U%kO֢ ft{ ۡs۳vJCQl9vңD~a{Mi{(N.yv;7&H'u{!1>d5KW$YX1n2 de^I!/SJkp̒l=[DL$<1"vS`:*R`ͳ^Eb|{[myfU+.³S{z [' xBK܂dvgeg2[: 2(gW" Z|n/zs0"pL`EêևӔ`Sz>0 GSFrrtթ,9ʾ:Uo8GmJL[Jtvrl埛 4rCF+eMSKǬmfF ZbgAq~ vhȊ{v>ܼ08GG/NV_r Hy6G1*R\-kJ]fI$zGZ@g4y a'o\dYSλh!{#o+\چf`=6-=&IB=~ksv YZF<ʒyun'^V%H}h G !>4߇T׷qakU!6Ygd >n#4&l*aZŇI}k'GcUwu_:HUJ;-#8֥A]2c8M ۗ؆pЅgF퓵j8ͻCKO>f5Q2'6 })DkaZ/H\XFmb6Թvs_Xz ;bT4@R%{Hԧd,dGR3&^Q6w $|:P7QJ+$톌O`?ۋ8˿2D#П*ugQ$c}~ɨ__c% rZZ 6hP_ڽuYIqQh!S\Lg ٣'s(3*$)Z 6NTPjέ"atekו g`{C KQf3ci 9o\ &1Q`̐fa{l\Ő١B\"c:Lx)(DGlhC R0".G1EGVC8#~m[3z<#b;'UDn.;.3T)Rp.C*y 2'vе`0ќ$/ɺ2im2qW)e0{( ` +zqI<66r!SlSrrRpGaa_.. ;Xr"eYבpFLnSOh\r{3uxJN*EK͗*j/"ὒ0oը߰lXDkaЮM^[SH"CE0ZSTT[tw8k&ds;w9'9Z\ޘ옽 V^^w}Ӝ oMK|PNR{*8 35 ]n,>z'/r°>?`\IPئk )%%y?e}镾g>`  6s3$3w+J'>_! \bŎI~f:׌' Igؾc[sC'TL@٠Od.r LHݎ;Lfhz9ace {*M .$sa(/-u=evx~DJKCc՛{kkDDTͯG7w_0v~\Ayj, (5?-6O|y.+@A8,zgGT`<ٜ6g]x1y@ ?J~UqtE36ћj>+_E2h.+ʑ^ ^_ۯFq.xC87}qFD==y+7LZ>#5/i=26[,zw.v:^$/{-;1T' @>?ΜlLA)VMWh48,W]n$%Sf4AG %Y&δkak Fٿ+F`Λ}m.MHY&kbS"[|g[ӡ 0Kf?0>naNK6Ama[w/O,Ez$XTSPkg:V\!O Vvr`>mK&bڠ׋πǚyh2zS= i7 1Ѫ(ɊDztrSW~}娛*|-. f7?M^\kwHݘsQ*gbj[y7v}Zl7hm9^w$mEgQ5,a aL,)JImTpP rwx0Ԙi@ ?j=lhk8{.QjwPb4)->L;(mn*a'肊H&j g$j&| zf>2P2BTI,ᢴ,ѯn:#mӂϘS,n%[1QF~[\,6zBa őet@> D@;ߤV5pAO?J감Q| t,Oʚ1 .Te.)6+aV&q*Xn88ZrZ'm13_%% l7ФvFp豓y^K>m/2 E$w~"UШ`F.| >`/9l8w~! i+kt I wbt-zQ\OkX0Evh+?-=Eq vHt A ԡ|s7m◸Fb0TSvgL }m$'{b18$;r,*׵o@ՖW1]lݗ/⩗e79"/ ·ݿkriׄ9``}K:ۚTz*Ծ`?7uO@dW[Za~rZ(th`:{HG|Pm9^F>XftѶ 2׼AٚPPSUj+r ,6 b^4tټ>}R(++ HGwHĮ#H [ {1 6b)\9ҖR8\^W%4.ԜaZRUKE b~ka<8Nr°EoS$jS H6{&Qo^G5~ 5P䒞Oow!z*E\h(%0=.c;hqm$wt*U% PqWp՞V_2e\燺0 ɘKUx,,sc%g>j4|U9g 6J~ھ@SY&!PZtJ&og_ʴs}D?.c'E:L6/ź>rj ݶp? =O?V[Վpٽ^#YZp E[O*=rJEx.ڔ0o|Qq%T<`ҳ6,@S|_c[xzvVm`{ɣMsO0bB-TP, ~e,-gQ2Wz9<1n"rp_!hنT25b:5:<:/|*H] ! On.#̘RTMdhRǜֳ Y HZN*.\M`?}24k 贬c"a M! AB L_8y褤Bg5|')x/@_egvQ$Xߪr$Rf6|>VΆ4G38( &I]@̅jae}@둾_@qk,Aգ$*".AЙwf 6iٱoC<"8W>=9+jXnl{=.!0[h;Mg&I_EWt ,A)*RO5L"Q?6a? h-uuOPʫо.r.jBelAh7A<>0*Vr«KDŧf~t<˙~y0!#x֔l]1Fm >ٿ3\zĆ[_Xh@u CJ!U/DRNmR)i%:CzsX6}> _ۿ7]%be8g15}o4ةRN̘AN,R'ȘihG8W[RV5F9R^X)+ڶVn~]f4&^Xc b^=O)@+)wG]K@%T.*ǛK;]L=֝"ݥu=TwYD\^9Pɍ1t[TJaoY&}NX9 %q1StUS-z#- +d%b(rRR"mMأo%p0o$wǭb{xT]dEk<>JWOٯ|v.7{傮5iS;0Z*`0:w]7ʆK$1|nxE~:&w6khJ5I'ֻr ʓwq3#!X@܊o_-al?j:"٬QvY9un{vY7Hu4RQŋl߲MdqpNx&3Oc7q˔ (p*D=;ff2]T])As4]sh65LbejG?sITNnnzd):bF h@hWHG,G/Kly9݊ 2x sW[a!71@+ `_ݚ>3(?Cbw,<*wWݽqE9\׎Gœ=}>(Nm1+ؠRa|H 鵠K"$8?` Oh(Vƍ?$7&h?dU[,%;lKN?"ly*4X ]*}#[kTo ƻso t?v!V ϑ7u=LJx͡M8AּG=2xwJ.YcM#.xEXƪ7φg.B+G)Srˬfik+kU.T~BP!{%DrgygZ%.._d]V8=vj_)`3"PąoPU!0n ( Oܩ<:D>z|wT_e6ק'GIͅ*G2tC)1 a0E2'-?GzBf/{bB jLũCO6G;)UUR)f?Vuz4]I9"Y{73KVKEZ;߬JZ4|spaw IDQي+bl5tEQ@++!|Pd.-P}#H=AE ":9q3>4-֯?ב 8^rh[lf3 WHG͉&>b͹e0Nd7ٙD1b /(^EEymLey CNS ye1:1dKUJga> 5ƶ!A?'b+f7Q--|_gyuzAk#P}-S_=ILk9hûc&-GCGGBx&ێk0%2h5`tT}55grܘ3EHB }( 0ôQɃ|`LʲUXHfWC|X/ K7`#cCB ɥumʅΌI9JO!=a#4Z8_~Z2ȃ/N{g z#ZΟ~]K/;WgvpãvE^j>A;>WҽɁ-AT$3TL뺰eA=/3Y e{A1Vb,laϻ6XLNlEҙ藰q.,a&\j@ɚ傔f-(pe4 T +j {lTZI.ilZ$AG7 BcRșB]@t.Wkm":f۷>faHһ+7=3-K8ZRwI㙤X_g T@_Mk@?MO=\ߵ}"#g&MiM HkXȼ2 R?BXIT:NJhVLD}xbգ}G+ Ninj")w(Klh><%Qb>E"];ᯪ~U?h˵ds"_D_:rT e۟U&>{uvE Y>aـ fh=4V$^x׶Ӌ(x u*k۷Imؗ1 \ Gu`drHޜ͈pG&'3@˵_p vMΡ *wMV^KPs2]]tίIzQRgtxLƝ6C_VyFB779Rns26Dт=<@}<` mKbŊݞ3+S_q2VصbQ=%)X(N ?=Szldʱŗay-EwDtͲgؤQXyy^$$ *>dԘ󜯉vAF H4F+XE1!F2H"U pؖTQ6#T/ oڇ{,ba֢G_z.19R?[ŒV7K#r [@UY xʯ)^ v2f=A9%תT,n*"YG5 wS;4 U-5קnn<7]l`2~ S_ p`'F/@e U)֘tك,ϴ 1B<ˏ>oj'0T"S?WxLvJzR*6 }I)mWoݛ)jP`5pA$ >̋ (lˢl]P)>wI ~ P[Ie!C-֩ L/L̛8߲Y} G 2|q$0՜Uc"8c(s'}/!ݯ7h/p{BW;wvbٔg~^+\Sc+(`Ҵt 0 ui yS땅=yiaYnU_HdôZ^a@9jKAA֌B[t ˢ5 2F $k" T-' $ni!O8Pѓxk5m5hPͻImx -'{sֈ[H[RQ`Ԝq)l?yU-E~[yAXI!@@f#W,ƌ|,g?'^U*4AC-t XlnMQ++`K؅uҲ.CqYvȠЧ Чl 2#L@xr[,1+_n e>u'b ?rŵ0ի ͘)A*e Rݾ1T=dxNTtVO8*f7&$L#zL4,&풴 Z$" B;h=aë+{Jx k\uʊ:*xș@8r{RO -٣1G-kݼ:Ů"y):e+Zz!Ǎ6%dYiHW<`_4d6:3*٠OmMŪr4tPB@DZҿ)4-*49Ћ$btڻEc tr5qc|/+hM u2AsIyCl: 8!;—z7(cQ.}8 x`#Ĺ!- jݘtK*ҋy'ktQ~: A>a9(HkPU! <2z-C˾HILŶ a7nA06 q/+ =λ y)E"`15{ ̆Iq {Bϥn6fVԎPrT][ 4#vfgv|H8s2Y2LFkTqb;+'4K:xiG2@D+V{ҞxXi8=UvVh ܶv{!q4]N8$afP=Kk<_"ru%r:RrhU9͘ԾR^\cR\0IB jmi$Ͻkd$P4D';qJyWRQb)2YR1iY%"OFL۞:O!>< Ř{5C֍D>:L83'F8--}3O3!Dq9rt|׍bqj 6EvYZvP0Nsa<q܅'q$ X ԸJ0>z˶oVufohv/r Nx]#w݃tּ^v؅?nCc1Փ&۩!f\`5}:Gm=tR/"E 7uȭXC=ٓ⦟E !!i*S]Z_RoagcAp1w#T˰[Wy{zRHvGiO 08MvК@x HIEkݟ]5Wr8{yy 11@^UmT#J~gJb(0fdiȫ,ĪpE)3 }YR ayb -YpJ!^|z}K&^; lPRu9kDNil&96;Y4f\t.ƣLp*a_E BGޯ,*ѩ_]oOGKZ?z,h=vjk}kّvJG$"{~",7c4C9ᐆ26zv uh Ƞ40%0>Ap-k^cv+O|_Ťn_͞g̗L n?';.&Ny0K \qP("4ߨ!3kaO6+WϘVS^v7R30͢K>l~}p'%L.B6>"fxq/mAXhL<Yk A:g5RǺΪh֟Vu/VUKxquJ鄬( s7wTJA޿},r9dDey"05n8+,hVPt0*=umaW/v Do&<)"J&QP_EY\)8]|IN2>/;` '|إ\bԐK t[ݛ>NNIiUEsY62b edEgJ $b:p|jpIഀTj#aU.2Q Zj_|!w3O%Ap1%AnWZ[(VaSOg7b'8 Bߧ}=-nJ|c\շ@s_B%#he;ET r x]1|CDI ׁێo]œ1V?OzZX9z1IɊ&z$!Y!"ykQy?OW˕6EB9pzG鞃|"ŀZ9i03%k{F#7M@|szU䯉wPqMs#K z3Nu[\?0,-h \|%ʛlnDM52$O$SDT]XݴF=^9"`Zln~! !Px֙]Q }u8Zq Az[_ p%_lqƸOrn,U-"d]>PpHmw>`p-}f `x<$Jyo@$`!6jd s#z |i?Ι. *V`ejEhi\ZT['G՞ m}w<Ԡ?v:&bz&͝kL%rחߺx(@r]" 麟awTѳR d1s^vw('2D#a lF֏wn~AS4ȧ:mt䱟顲|ACŻ &e_%u{zv YZ