go1.20-openssl-doc-1.20.12.1-150000.1.17.1 >  A ezp9|CquS=~o~ se qQ_;>:!`` 1}jviFˆ0ȧluzLB3Ù< Vgi\Gޏ`-Q??R!2<&cJwi5y64I<ʢ{<`; mxQd8ϣ]HZuޭ<;5Yu;W^:A[a?E8z=P/]&*K&N/3s1d7a9f89479a3993d542c00dd42b657549fe1f0279b6e54f2643a21dc48f4fc8d72bae5ea55fa2dbcdc62cb5e34b3ed9e607f3d4DHezp9|Muz婍dr cȨWRD\**1Sԏ-ƣesɞ{Al43Mogn?NQu: koPe)Ggy|XA`eZ *qrSH; :o7td\G'z]|qx3b+)3mZڧhpm.ҥ?f;6y!?C[|'q8vc'Ix#ڼ迀ݼl)l 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.ezns390zl34 =SUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/Documentation/Otherhttps://go.dev/linuxs390xMh>i+xezezezezezd996fb9181360d605adb42c662c36fb5884988f29940621dfa8b7895215740e3123c14365f20daf6c31123df409b281bc131e5d1f88fbe543b1a68b5382cf6e7e9fec1047b1a8e504dc8796e5e86bfccb1423d52ee9aa8f699d16e2346b40fb9f31eb0879010f88e534ffd161f74f81be18135a5cd8d5a688369290581cb24d263ce5b7390691d66f71e60d7425026bbd3cd6c2845ccbcaa0d3c5b9af46b204crootrootrootrootrootrootrootrootrootrootgo1.20-openssl-1.20.12.1-150000.1.17.1.src.rpmgo-docgo1.20-openssl-docgo1.20-openssl-doc(s390-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 trackings390zl34 17025493581.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_Updatecpioxz5s390x-suse-linuxHTML document, UTF-8 Unicode text]:n|utf-8472c644bd4c5fa3825448cab0ebc13f0ddf34f6097d0f6d24364f9c821af7a87?P7zXZ !t/] crv(vX0z )0\{u nP"wuM/o?U`ԑ."lz~q8) _^LAIK Ȍ4h`ݼVM`YiDb);yf|7U5>ՓԲ],Qܣ )b>?58dӪHrP=MxR•y+Aj?t]+sӾR1.KxݐL){I)vlh[QVi)hR ߳®Eu8oY2]ٞ{SD=% <|SrإTVvŧZlM^Xuuʹ4Ll4GQ^ieQ Z]r &Ө$1=LJ$iԥ^Wy2g?f~VEPyJki, 2,sqI.71mA R8hD31)+IQ{2 I9{8_q ؁Zz+~+SĹK6"GKʑi=P|)!9=T^Ӣ{CP@ĪlVx \fx/S]p0@wSr%YNVoΝJc %ԸJRt*08ߎB$Q9,{j32|ܾ~Go%l5Y$_]4`+2íhӲq5R ?v?4ǎbIDIVӁ'-lƖ6 LuOhVztC^a3fdXs3B*C9=ç/}G0OS9gBcN^7#R,}|N|!vi>-ķ5xA5Nl. 7Jtzm3@F5:I>HbG;4-|&\Ǩ@qy+/'UIfԐ'u S_laf2<x'CJB Ewl+`S'4 Ʋ]s$ I;$|h[ua*[=HV5 @_"ϟõ GƦҾԎS@v<>C Gi&LvfXffx'>BuWF. S#f$Q8JΚ sY_A9[l;"ۍ:d#,RS~"nVWW4.f6'`swNc|6Dbz)Jj Yo|Ҭ%f(Hk>?^Fȁa(*G)MnMOZ 2/ HYf! ,Z+RBf>-dP/O+(Ht{̈́Ŝv1%4j[nMlMG5#GD΍Ba_*u-!<S$@'NFͩAl6T@uƶ혓z_\)7! a<'^M*isHq ?|n|2nW5Bh[ yS] B`mln$8fOI(}En: V:~\ϙ0i:6M1Cu7 ރ$]MbCTAwA{%K@G>iXhd2=Zg jk}񔵞I}\nw zk]2*+V7o_.2q)v+~0]}g8\:[-+)is A(HɢK@>֥f}X|U۲&>\+NAqtűlRUBbD6#ob^XUU#k ߣU- *Rdt5ƹ58j넺8Ĥ "H08׵JW%R(ue =%G#Xh. p~3ÏɎ󶝂U'VH]:X +Sz aF:욡k.}Rn%*'KV? Kvq,>l{y:tMfum=DI фAq`9:4P^&xt7U lŸ0EvU7zeLC09F^"re?}GL%6;v ";:&cܕL&0=6\,,b4i_K`@9 ^Pa䃞cP+!OljkH&s d]<Pj DVz[9Vs,N 5 :xOSXa XU^-:JӨ&99ۮO;n'qDgo' kpŊŚ=]Yƌbn.՘oO?OsB IP8wMҜmU!}K;phћe稨|a[tatԢ>ch &lݪJH}WtsP@ PX=kV+/j2DJ)rY7%$K-`ZuIn'1N%xշ]wlN߽٘p#unK^iCoDzvwueRA fE99qP?a lw਽]/N,/]eqp0ҩC2ϗ;6a\"8r;⯘E ⇟q(@&D`VXTSO2<@ٟcbGAGO_j͌0Q :I:\=zmł$Ŋ wRl7RV$qWFu{`2r;*oTV]VC 'ԤA:kХCS~*T->fq2%Llax, ABPJt;e$ ;l"fS` "Uc4$&jօUr0^dSړVyj,[<b{@]hej~BbHs8\v0t-^ʼ?zyɂE]/A W$^ MVKkUjSѹ#iZ@V"ByTdegDlr X ҠBlv#CBҦ)_[NeTgnw]4"0.1nE~r``T~d'jʍٛDA;پ7Nc=M.1|RĉSuIfB*rD,\LmcɓU?d4ҫ 6 g8VK""\v#fgmж+*;fBi$"Z ]Lw[?>"WU`|FϚKi' n@|9SDZN#݀mX+hXERǤ7H5SӀ 1Õ(֥fD{t{I3p_mDaɂ)Zp4 R8$U5OZ|Q`d,Sh2׸,b B ܳS } 6 `i|/_|w6*NW D2&%E)wƈʟ4V@Ĩ:X\$V{G( L^:HV6/8T(JBcٚc/)ⱐ Mm9rP$u-> 6svPp`=L,W`yLM%>.0׫*h~mK o/kE%I 8OXI+p0"ٟ$Alo{fqReAODrRx>Ѱ9$?*"ᛢ [^ 3P4G8QJ_[}]'`KG+ӔȀ}+bfv煪Rwqhs}l,wޓf `*y@tw#Nnag20^"ˁ8W Gkj܂դ*uhi.zgu677htdꬓ^?ϼskx>jiCVԢ(  GCeqtKugPYK}g!;˄r,3vO=vG\DKHbWZayS?H!j\a|cВDp+ɉ.:d=ZY:+VK?! @s17x-x4ͭ<B Ęx۱IITD%reC1(ktb=[ gMNt-ʼn~ TuqsslW[P̷c7!0 #a r]<Ɏ>>==dxe A3YS-/ 5= &NS,#~%:7H "`Yce@ MTNJI}Ν|0L_1;ʻ+ƬE9Sՙ({? ɷʴx4:QQis/ 0*6>=F!VE/uw: SnXIJ}8(i >tѽߥ,ECࡵn&¸ˠ_/ .>]<=W2чJE8 5{Xx` ?(og[7@v#lw`;a|"ՂK=`U,੢帗Xk/-E~O' Ҡ3!UhO[,Eލrogq}} `)@J &HS0ҴNpCN"Vg)sŽ `cV.2ç Nױq>;> }`F+͜?ݪk skK<2szoEPZu>Vh.:o!.ˢIcDG !KsskfK8/ci)?4q0&X3\+=|7JoTnUXmkMp QOϥ/&OqgwCҷ0聫j$)~-T::gܹu)CŇ7{^x6PqCI&fBm/EǴ%{tHN0oͳS(c~$p[je\@Xt# M{ /wf1bGhUak65Tc:V*gQkBy&6/>B% 2>*MP%PF3|%YIK}yMh~03R.LX]s,$oIa#PUoQ}i#*H`kT@OJE-6`j:6Oa/Buȫ+kzYă`s qB:z yg -p=+l׊Um7 TO=F+^B(J+4;JW.FQ0&=OkW[ȨU\?xsrj;t[AҘ]&D#\s3.ߐ;=5 ;'/MI4yuۥ`,HSռ/>2 _"l@RAm(ПD(z{*?AW z؁~дCi_A%GCLE=tŕcf8[Do \M_nP{}{:˓EJҫf#͞A-Y&q;/>}Up+ `06GۋlH&z +l4MT1"";5^bW\3f4SYxxۃN; I | ~joa K n< 5',5^A *^|sdy/ 7΢pJC ""@Y%RL+OLzjzxUgCvj"#eV vxZ_fXG=PP٭& m~`*K >$^HlVr,4h}=qq ~ttÖX^؎Yyn*ʮd1Uz{bQ;h HyL u u;""O^X:6 մeGԲ8j(aAOk&(Ǥ2Nq#;dRsfє R C)o&j"x;ݓH'`t޵o"Yf95W ~),%Z27~~F튢:}1B˕Νɝ)3YH˘AoϜ&)TtWz0(EEIi`w&eVui!+w+ ((c)/:5T9mЋ(>Ųxu6Z: G;TȔ! 搌7`p4SÎm"ϝE mh3k}Q^^4{NOvROJYnz規< U/;،3 Kݟ}jJpp \ca5:j8,|DHS܉!%W;z,cֶd1z0 06qfg[ˋs\:v#2S*sr yor "a`$ʑ6dUnŃ 5|4\%mVQ~q>7Oa}. .k3ZU Jl][2%ݡA~u&S-~췢X+|XQ\a1b9/qAa'Gr;ox[WJQ[QGͅ_0g j\m(1ӿr\B:'IL0U07[EK2J-.Vt {iünX~gszz,w hDeК8$!gl|.jJW#UR*өA}ebCH B$z)HF3I?& GR ĸ,ؤ',OčPDrXt;4Zĵ|cl.wY9EChWO:ƞqB"08<6 SRJUU_:C5W$@;DR:]Jq3p:&Vrp _wN K sLC! oq-HZ)yY@wm)7..B/6Ypč~ղمxHUv9m9cAb9l3N_TGi >U.u\wxRn+>"D\@ qv!qGtZq0yX7pLԦWF3#g%w =P0xt:IDi *.YrЯvakXtR"_,d3Xi ޔ3q]7'*ifP쁔xӨݵ`EQmjW} !%J(€3JcQq=o S?_lkCL*J{ac(f &I9%ܛj35wwO7rfSaӖAҩ]9Q 4 8O)'k, 2pt%PeXY,!Wש~O1~rqh8l[ء zE!iD4CYP6E֭wAr1Abq1p|Yt$x b;,xCҴt$KgkRb5kFu (h`Nh&BsGz(7޽E O={2 Z(EJe)ܛBĤ /2-'p)5?.؅Zg?[`-^ H8`KjF.nH(Rw WXC$-feFT$Ch@h]mwO[*rFnBFޯ"5C@ Cj, dby$1-Sd+?nUcE@0 xk'gmBx`Hx)h68zjŜ1 PAǤO|3U" HbB ur|7ʐeICwtN!Ѭ*%jk;F=1/smM:@>]Yfv[p8!6P >ZѼZ?ZlǗ-nkkbH!X #T#i1a/XPEBɠeRb yMeÄ+wjؓJ:R'}3l(NlJL?55J;-OdΪ5D;Kќ @Hx7bNb$IP:PVӼӨ#a ۥo=ݔ7lM9a"@qM/1֚~WgyC8%pAE=ͮXj3`)˅{Z>PUzH}]dY}15jtƁ5Wկ]OѷHovX,{k * '>HEؗ7Yi@-k[f"#M~96xz`Jb:i&JMz!lݫ} |W*!Ш;n*HiAoO[E6WyoI7lAu娅sӡkm(*B6_V%Jb*HwJnh@"l$/n w&>!FB-]q7V N+mJEa" N/}#4 XI}]['GNB8 wykridq :~z+]5tHl7w2I2sg[9qA(VP6/u^p_&;1{np /-ȅw _Ö{($q؝K^&~]{n庛ot#G))~o-!;=Q8(K{V<^) xw!-X{ܗ1W?4ܷ:hO/,uz+M1,x?}?]•wv:X7Qr3]AOVNF #C `AY vHɔN+tSWH>r3S4INIj C{'U~ i!Y]Rb΀Wk@C:4P/GXO YJNoDw̾!u< u;0 ,6oZM<}y= {h?|G'Gk: aॼh %IU|+Mm[9R{NAie^ lEͤUiE |k !b}ѻzy0"ҪmD#W0aS= b)3(0ls ɺ\rAIyGSUf2{a3,,\Ko@cUi Acam1\Gx7A6`&'Da!Pva625ke.V[A\Mnw-]2nWH=$1k5Zgtz.M:"vNxL9qwp?4UPK'qLLc&m;E2U׺.Zw!1f0 O^$Rv_kS/oG/?6n35ct Z_)EG^h6|q~vPJ bvFsO"~9&stPrB]nkK-W޵>INKqu2[@˖٫ad7uUz@ڻd:KpU޻|etW1ke8B3g-jK/'aPEE[3(FLU=h gW M8qֻi;ݽ]p'ROOYOL7J/(2m SZsĐX~4J>V\@6DFE#p)ʅH #(Bk"u<&דiex˜n.HZwzT~0D<+ yhBt2l;%rl|[JorƏ١%Ox ҁQPg b)Rb*Iኒ̤>if4\ak9,vIXn8=p =0s]sy ppw^/;I#m{׷_dB#o gT-ɝ}C9i7B3 M2>mTf.IoبMSa6o>ݹ-ryxORDSguzP@B錝`ddOX/^oوiffOEzLPqʵin/;;ik% ;ЊGR cUq㩒ժb7|D~_\ N L.L9NBa;`-R 7I1Ec-1L>~kE*>L i`[ONu+"j\̈́ln_Ze.^gvl-7cK0O&t LWJ͡[bbOpdDlѧRd|7GgCQDE6O8 /Se?-hQHL Mm`v:3ݔMeEMnbUc0 A=USF&ϫ$2Xߙ 3%=&r2SՁuL?)u:v-:q 5"@jRuOaVcv|ϕ7 JΕD'af (+L9`EmYY"Ҷ2Da/w'iXv@ ?ҊF-`UST=(0Q#xHƳ89|Vi Ir|kg Lϔh:&]f/htFȂCf2ᐢmn_fmȿbW0"GvXE6@6DJmԥ"hT) >j+gik֖aM&cZ%0#\@^$[]\ž)(*T(Oۥ1Y w7uHQ' ӄ[{tP/Á#49/Q.tm$D[-nq!ÙƐwLJ1>T31=?1;}2YË+)h#~kPcvέc:i\5F!BC EFR.^#֋xঙ{5N&Wvj";OG߿co! (QR*.d\Ї˭* G0ʬݶHTZk9I^CZ}Mzcc`2Nj{n357C,tee#([:ɣL+E=Q5|%&D+MCW"I:Fȩ$q4u!,){,3Mr j-gnA!~4+Ʌ"|jFj/)D˲T<,!E'wy Oe U޷LӿJ9y!NvMVńyMߵgjvH%I0Nҽ nC$`$VReF6ho ;!WdԦH7fus'Wuи4j[9ԅI?T^ ur @q`w2CK ¹c?ý-f;zix-̃j솆@+Kq˷bsߏ:0*2FIEɬ~SUF'_ڪ4_βSSr!Kt8Ҡw7Uxi#=c12ͮR4dv߫?NGSSugм_mMX&DehZLֹb6Q   {c&@B ǓI!ᵼnc&p须T,QyS&OD4eN4 Ƞ+$w@A o'ʃ8D:WAC3f $gU^m\Zk#nS;U:|ed?5neSY ?zc1,b>9"[ yfC1F$xCT;:+769DIn^Ö(\.Y6[NOŞ 0Z!Q <)uJC/$̘]PD;D&i]V%x sͭ[awjKΣ,4+ id+ |8;Ơ N̎\=A ZN%l7x(/IeGUd W4AvķE~}Pz#ap'uNl{5<So&6#=B'̈́V9j(M,e͓G/P%֧hĖI~K;МQO5m-k@F0r5Tx! U6C"TQ|i$ B7\Ӽ#†'+hϞ:mKՂ'j,פ#jfD!<%>V3D}9V{k2b:L0:%YCCIT@&1l?YaqIvˬ.KHCKŌ677 X?s+ l̖{֞g@I%5؇6q&FKΓB1[dhn?pZ5O[m*9uq+ZCr@SUuv4PBG|J*-/KFT]SqDZw i8J3'ltSeBhͨ2WB6~\a)>hOJ& :xToę 5BfO,p\cHڌԇ\]ڠșxh%97'͝rٛ`8gѹR3^;e#p!Uw2.Ci󺐩N,(_T֡?5.STeؐ&;qi\li7Wv=Tڹ,{~NfgvTQv'c%sY=BD^-a _Փww1h6/&@RBm@De~)yޒa`L~UsPD* g^e{7sfC;2kog_A[cKҝLk-t߽X;J33cfСZfp䵑^rGё3#@zD>ez;\Xճuם5 &jRw.LF~oKqNm<G Msa>=v$j8sHU݀@5aM޻_Z t:<R虘%7u ]9ʚD-?nū?xT,4?uox,Q;GxLu 2alc?;wB彆?b?_Re%S/Z]$G_+'H2l~W6z 3#vo 0KTK+W,8Jc.yD N*)5Yvb!s=Ep9dkMϰM1b)U-GZJxmęj.op>{uЅ>:v;4+z> 燳C{[?w˔) RrQ W<%)VFN*U48yRnnU{%TEĿEle+HΘ+YT^PfpAPп\#e0+zzcYBH$I $hlW>_5u{=NgD"?(,蒅 P?purl$lnj [M_U&5l[AtgL{;e&j7Oiig^J=Af _|FX|-2bB7`Wvu!݆CrHMT!;e(5`\zo6L 9e j.oy˒̫<٪6q$Ll0 C~I~`͌!D+YX8<ǡ_^U]vGAA8̶հEe;zQSݷfBvH= nAnV~yM嬅/ʑqч"ɿ~ۖv}<3C L~2U4)ORMf. bN!O"`BmޭlČk_ ׽/D,-}eb%_W$i%&= ߒed3kE }+("4,`FwyU`pB: &ņ2%t*ڨ7YW k݂LщyR@Rf|+kJdO fEFEuƞh {*k#?lqfAkrG,c(-BXwH5^lk-ΧD aAGF1zL.­<Z-j.hb,:,n n)NC*Y7.BtZצ1.B8{m,T;=SHAqv._ 'LH"Rr9:ЧMx-Yr_?\աɕF,&NIl{'(ݸ O؆I`$zwSAr@cځwDDt|TÊIX*T @(6 DTǽy I-:U+=,B?w]`k]=e)0i'ɟ&V%W;R*;V|\(\ _F^K4X,x{"RuwL=Mƶ̻&i xEGZBLW”Vs㞈B,0gA pu';hǓ?Fl 3^g52cNǝP9E ݹl$}'qhoLcђ(,b?1[t@ ]gO Wz!teIXw&S*B+g~nT rm)SսVƫl6iN鶪|(#,KjG}Ǒsmqf! (E ~CyMђ soa tk Y; H6U -皾}Bb4NYJAe[ >h}LvPgIUdb+_fith2g:-J۪k}3=z z-L:>,`s12 H)u rzR*X4 xa?ک2' vyafoxf[nD4UYeI7ruWx5-uzC$R4U )BnY:qmϙjaԽFږ9K0ް >~{Z}Ւ@-ywA&,#K+1 a,&-8xů)Jer,Rf^|f&2~N$rpOIF(yʂY30TI0D.*"(×C[B駟 ZGf4M:\ic! KBpj ?~Q2`1<8 *5˝H@95x䈼#uo%٥|x [1G4rrڱxz7]^O~?6X|GM)EU^(*r)f!maؿw#p,*4 Sk`٬n_Oh>|ZѤ-% ;Z#%)95*z?w!_;u?wN qZL0#ay}kwl( ;5Aˌpe6as0 MKޙ\hԫDenAfBf{l`3ޕ; 5SUA' TCɸ%9?xl~u/;6Yh)\{QP }@H$˚w"]gOW@l=쾰#< 2O,5RHf*UXBMsQԱ]˃7y_8;oڣèf2SNyNi`~}3397g]dP͕2eI>J|t/]x.W>wrJXk "7h6U^jQnao!k3A/ NT "~wz XQ+m=7.l ͬ}{Oot3CFi9Bue%6d(e |ePHrMrWJ:D(+5N̗B=B5VΌsÖt+kE# ϸb2ssK*#rS\f-i??3zl:oV_s&{h>-15Iv<D)I'(06/[-3[]*jڥMT q PQ)FôȎ,oH=fWWDuאyaq'&ݥhj?ȗ =NRS@&_,Oi}?hwU-m 0(?(!ugl%ef[:Я:ժ5pAn7K ThB` ڒr]NE\19eWL@=Ƈ@U}'$씪!tzF`ƣhhr%@)i@S=C%Oo/=#mBh?*ˤu&Xd(m3_}`hKM*Zo(m3I<8xzӾ4 V_܁-S`_y_TTPڽ7$FJ@ 3w(Ҩ%2 ^U%%RisCn0VSauPkö$giD/y ]BA/]i GSODe^<`Q߷hحGTSDU]!m"3 â;wib9K󩌙[k?i93Asx{ ?l0~W+'|9?T|+e#讞Ĝ!Yi̱zNWo/wNwpl.wvӘK+Y霞 ܘ3TWܞҰ=Qp"1B;$>$5;8{/!=FʀqSƎ^ 򪓁&tA(mA n9"CGO" <8tLaCԚ쁓;=u ˔ &yBߗrE}D7yvI8TÌ\1 ehl&~u |Kzz+ߑ=촹! 'GJdmYٞBQ@'#uso右ws% g2,o\}~b_)FCVϞC*JپH_<4eri,QzPJ]f,߱X?()̛KO孆lN/>AL N5PL)Ĉoy co]^ !+s2E#mq+ [N5]5 (>Psht]:o2G-8Qz.E#x_A%0# N g" =U4Goկ_pܾ6+s_k˶$<\ށ`oXַp5TeΫXxcѱ;MRs gFVNAgж7Y1݇dS3!05辫ޝ vR9R.˧qz  6t% BǞ J&+Nkp^RU*t%1oWT]hi-|!P(9º<$ΡFQ&[-Н?yMg`%ĨGؓ|'r G -# T`\  E r5RĈg[y|0CkYnꌻhʕ0+l!Q;ozg;׺v.]n;ګST S2(1q9'nZFdb:ۺe~BN5ђPM̜,iP7 ~nea\X ZOĨV _|%TorŗTF.nL+fO[ڞX*r($8ǃz I4:/UW}y*LyB>򝧙YA;x={`߆(RSShKy]8"$|%{dj _sܠZ;f9:%PrhYmPZU~ St Q"o{ȍ9mGB@&5 Y73!lrÀwGXH-\^(`e["$K6K?|M S9q ZiFmh; )<Y(M:H i屇N15T,+pN~YC1z8&y?FKθد+vL[T"XYxX QqKW܇jt0I{,|$aǤ3 _?S:} Q#%d5)HyE4fCmn [s뛑pE&=\z;U +@|TD [[qS">S.dbˌB^k s*H59'd[s9̶j]EJ'5QE*K(΀ v`3w:.&\jzq?}%hZ(jQgNhTڑ7$KR%ݔq=(VH c Ƃl?|z',7M SJIA \fM-{.tL%P_%.D?,DY+ ?wb18=jiȇsV["h^KR|>niwFheT};.Z K2%+>`z[Ţ$:7[KKw liGT? 5}<~8kA?Y$KKl#, kbyșJ J!Pٍ矊Q#<кݦ#&fyry= .7J,C2>WO}s")g#:@ht gi} >H7}%]5n-'"|Ն䪥<u8@@mgMDH͢v_`=w5˓e˓05XHO@E>E6]^xI#m1Dח;r-e2PC9L\' g5Xqz/搑`J/V12Tzurֳ- & mhR 0v^LBFl?÷9 pKXvQHh4纔Nħ'I{*Chi_x.iT~Ί[+"Xw<~χh>=^هw=`d^#ynaft$6P_D)щ^w9i;@zvU{N?sgZNs=#vA{(X/wէ:TiU= t (I 6%ʕKcyo /wC`4>׻đDBF\xQ #@(ʇXh*pe^̢L;^YIztxeQ+OBkC('zT'˕M({ϻmmA'b ponШ!HaXŠ6 xw#ww[Ɣf bO 9s{U bnǤum^g/kcmFBfM,sPokrihe4{)$`1N2^I /F" " FwS4ɪc v_kﱵ Lw:ZvntxmݍlfUA4&lw:epR7iD\e'\?zh5veVxR?HG(Q%p\x`xӧ$7cza>phYˤe:R5sr:_7u7^yzH6o3@ygʶ"B!`[:lKSgGșmګR㌎Yr𙧧C ,.{1qYMud4?٦W7gb 2MR i$T ^=d*)Q_`&I`t2RBJ^`v?o'd}> GZ)K%ɏUEvK/e2=?)l?zZ'Ѷ e%լQz[l)UX$,Zah,i1big+IQPISQ^tO긬"=3}Lw9 ť/K:hzNe,NrMU`ϫ#D) ;g_֓'BTї$ Z u&7Mvx0;r/2ȢsŮ1,{I>2E &XX ޥB`!+Ƶj֒Š8 Inv*=݈շq *X1N@lVZnT4_VF/i*@8y:ZTɱe>ne9kƋbp7#VY\UQc@Ժ#F Dc H@eVCFP740 q#I`'LEvujǧAPeCsI FT|SR#! X3fg2uc'oOI<߫ROz 8f]NͿldT$譬 7d7KE <.[k_ '}V9ԭYW67m";f*ɕut13:2b't f)/n~p D1{J0/h*|8j5] 8F)L'%i"Fd>ffxAa|mQ-ArG?-d9|E\E)ٵH"-{z-sǑI}8پPb;G+m>}WW( ²K J6}~ }nT2媝cem7J_B*ͥ<*c?hM<ݙ y8,iYoኲ.*hF)j0-~{\~`9O'1HZeⲖ'nhTZ0wQ\Аh&l clL;R0AqGN "K;~D5oqb|2Iƶa55'Z yUV˅[Aa-N/DrP؆l%{݊MdgsJ9ظiM/lYr=KdGVjeC܃*}FVti+&JߒʔL$Yy<4R, ䷻d$282mZ, +Fr{%o(ʞj;r@ ͨ砠SeG|miaODA_)|Z$(i$ֵA'c2t t;-y=%Haֲ:~Iaa}(4pZ'.(VdG6k{vgQa "0Q%U-d)wr'6;^{>Zt"O\ A_ӲM{eh]Paqb5J2(D`:`]חreMOS:8%`jЎT~v&A\YCkERFn>wm%:% 9QBф ]5 f-5񢟁FHAM!L1oxg6{TC-$i8,| #qdB0|5O]$݌bI^ p k]tcAѤsnSA$$֯yǯe}H71-h`\d<]Ł{/$f`p`ʨ%qn?4Y>;ݐ|_:h?E\+;{Z3AH13=c)БQ;'>x3tɹ$z> UN vbN!r-U4NfWz ;JB.Ѣz[ڈvP zzS%5B\bZ@mJç /u0>"c**#7cW&]kZA2-aR>6(p<3o5A^™Pg^WiTfu5_mA!`!Ysl?ҳE c1T㢹S8ʄVJʤ&7YjVzyѴNv y:HtoZs-n$x##)Luc=hczPfЛحqz H),bF9i'N3,x­PcBsd+7s> q &堭VAy R̭T*ؕOz̤%(:Ƃ-aVCת7ny<"9H&)cQ!#ю🄑B+pKBͯD~/~x\dl)Ο +CʷZK_F"Eŏʍt95yXbctFkͧZ%`N%R9&C6ADH)4Z%kԤ.|9JMѳu M`maaЯ|[\8_I)>Gun_u|<%O,laYLA(p/$g= p%hgQCAGܹT4&ZeغmDcY^j){ڋ3zx:zWiu`8|D I 4H q7ʦ un qa1BD F.}˲*IB*hGmqMpʺ:B?-c֊=g8WQ Kx8\fA8bA< ='4#"A\;5+?l H_tp HU9(xݣ6mSwL\ݻ ڥ7iviadFiFQkm>|XW#0}ArKE8Ґ{{1q"Lp-0r~.:Vl2;hU)var~E+0F=8Cb+?xbekDj |zĮ D1Vy^䊊ޚb LDk8SMB,טּ_eǡB.|s- PXAC:)a{e,i"!# ,j ^ |q6Oshyt<C-XmOcBѻVƵ󁗶.&X8Q x<lK|,OQ"ArHv=bޙ08ت?mm`9:'p-YDxTt[pLȟ!LܐXaPl0 3C;@t NTPz~K`ؔh=t*QTfD/o3؃yd'ɧlN~>&FWo,f%…yWt'|ݹ ZTf 8}5Xπ(RZNm'%*7U >ldz39Unή<;r4,Fnq6}җ 3f y,kI'/qLcbMޝj꣫tCe;7JH9E1b~$ĀzH/k놮#s8"XII$lk7:0}K,1d xhʴ?XK AP%V2e oŌ6( 6& &ħʉ(W9n*QNɷZYgTN\=s9L:@Y61 ȭ,4cYlZcdXvGɰnK8Bwey]]3̆3k*զJuɓz9z$^=gT0%Iu ZDY7qÙꥫH$=U g @H3tL[,;c;l0vGy8NSq~ˣPˠ5ʮ//MQ%-`Wo,2IV84p4YbB6зJtIm"8OhiעưKLܻbaM5?s4?QN|풏SA tbgX  '(m.۝NXf-9Gc 1KY @p. ksC rb@REEl#7{TL&N|+ .=}uRknk7c~΅Pb1V7fj(~&K+z2hF]Kvid*SS(IǯА)0Ww[̝c<*WHf٬'icQ?LQYgUSiRjlGWrm">rp\s:p"&KE;Nz&,͢I$7K!`_yf@kb}sׄK6o9~)ZGէ0H{jBvhyI!#;{5`γq0TC5EI~AOL\%Etfsb<@|(Rs 2go`зWf퍲揰{Vel.)bfcxg3pJW˯7Glgdq?((|zoT*S{7dVWKISz`Xyqk>* ƈۥW\dKc#p&S 2?N+ ~!+=f:dZZ-hʴEs7+Zؕ]dA> FaϩoCmԪi*-+a{^*=OCN#Z$rh2ֶʫu{ RwR{PKR/Ò_o#ذ?fhh)>462Oxtᦢ_eVO:!3U >M%Oa[?ҥFlwr5C.?l UF-{ qAwAct= P1vjPEi1veoTDWdQ܍Ih+ejo%/M= P_|kpn0,3bQ['fY w}Rwg1(yy2r癄e[*O%t&⦽C`FnGzd:6C7aq|B=vV|kjP-MɿH(8;zwج3.&Hج֚*HOّ@Q37.d "|K*7ae? k-X&ҫDQZنDPnq!\zZZ\v8lRNz PSoX;HU ]EW&20\װ J1 観ʬc;3.>F} }4kfME ܄h(^iirWB9FX:.wįY8c*NH6(E`Y`bH>E&qVDѡq\_j`O<ɭHf/s0UG1~8wޜxD$tu|llsUͭd)K&:b%!p;1\f)x4ZD z"@5(G)a7])[+ R]+nSϯiTdνqݠx@|oV#6y^ /7[fE߷B^U#>[ ɪIf VϾb@)7yLR،^f#DhWӝVtC j2˂2?o(</,rb%JJnQ`=F57A^Jnrs^n'uh v3%cJ}~x>;ܬv6w^-f`p3m{H+ #+˰ ܢ 3m4c_q~SaB @Ռ&~m0TIfYbnYb1C^['VM -aӨ#1$RDM܄]0SߖB!(ſp('ҫ%RW,W AM hy)5ŽRɬ"f0w+SO/(5`^ީg;u4N+P>B+@ۃMojα>e` jC㶴[S.*ĞW4ȜsZb"ԕK^ psGn07=ݵ8qg0iP<]Ԯ'PV10Hʆ9f : _If@ft.ayZ?Bsn!ZDYǾ.Ҽ~(-P@[eÅVDht&cH0aK5Va'nwB +YskuA uc(̧J#j=RɽG i=˲HvOԉ *"WA~cA_6#m9´,,d^Xn :uyfj#KdSE]X]b'm(g>0 #ocgYfx1ygM?ɸ+Xڿ <4")yO pLtm7`M' լ78fڍDjT9t"$OpBvݕQB0Ui\*&j;Kp\a)k^rU2!߰7ptEzlԥGq"T0:n&PYP54ljZ5sTt6)2/;8% pȩ c-ol2`nEnb-=x#z;DJ;v6~1 E <Ӿ0Ąf~j]Ho^+-7­6ݡk7 (up{o]Gn;X[1Q\^L\j/kύlЗ YF.S-|v|ȇ]y+Z젨x}d8jyk3ۡ3;4X2[cTT[猡]qP[<8ċ Kn\dz1ރFMQX(NQ9=JscB8GgYJbtI GmZD)AQs3I gTP]Q}-|IFsLpl%EqfD}*00|Cd>w7u3%<I`oz1\&FI&'U%+Gl0u'uPNO~$@$ګe]bb2b"Nrǧ^ulDFHla[j)>7$Cp+ՓOtH9ˍԏ0ԋC&2yaϸ\>ڵj'Y5&=}=:q♸"Iݒh)*NS;!ֱg?8<8&;%3O*y\8Xq yP+A%=5qw9G,%!oOB?Κn Ҫf5JTX%o pM1zre2$q#jaBLDqP SUS.qTDC z+Y1W=E (ɛ__ɲ>;)KRh~-6q 8޻!< ԝYW|BW76>r!pPP0ʓGh.Mk:&=Jhtc!qO :&-W-4ZuNhǭq3d HQ.nսI[CډMJzIaStS18W5"V (v5,%\wlAe]edHP!Mb8K,d](9Zw:Ԫ( 6}cP( ~q]2Wk 9 e@BTW;A*vAȭ4< ʗuk< VII'OM%\Zgj-)Fn7z>ZU\7gRr1Nj 1faaQYp)`(/>1==EwrIKUڵ0w}4iq*ۀnbbSJdD唈Pמh Dž>h &TXRqc6wE9RT",,k>NPlp%gT T$cAY]]|S|yuMVE ɑo0Unᴺ nVK\75xa{G;lRGJaW-OSc6Uz=CLS'rU˜ 1UxpK4p4מ;ݪ{|n;#uem؍юԟ웝4q'È9~;3w{] .@C" =#*Ͽmӯ3fs2"\!wb%:OL G"n|/׺r͠$D|u bԏ@!0t8!ɣԌΘԱ% i>Ab|jc;Ec'VF"(P+xiSy+lji>g/\ v pkӇ,ةNwF n ?;W4WT Pe΢WEPkbw%7{(_eE6M}WOs~@> ʊ~#o;* &"T@ON":e:ݜ *^?L=,so4m>;юݩ̓sUԝr_vtB ̷,TpEw|Nwb. 麌"NE]}ՙ듋@ rtJbCT|rXlrU2UeU6ӳ"3w֘gzr⫡%8&Jmߕx1݆)VVk(J}J4) MͶMfT`=^+2C;F9[݀Č1┈2EX\Ա Z:$J%uR+Hy}r h{JO͓;+PEtS=.($-2gOI9US;wQ8h9i<9Yk7&yn1k0~0w*DZF$80aHaej0"o hK`#XNצ^\YwETn# ߯#jW:ܗ;uP^kXb"-O ׿ok:._}8vT (mhs"9h}2\}jM:WYPN1aޤY+C6W =~ 4RoLZ=,YOC$1TC`@o˭0/^⇻QA1. s\@Eya1:|BQoUxQ&4ܤeXef2FL+%JDwynqcmw=]$dWmܭ"w< 3y0\J%5n#Q\ LO_UWb({ dm:gӊ}bW">fWR/G''aK-[O\ؖV@fʳ}-/8 Bq>E}PȑL?}c%מ>v\;y%= i"_%v[563sSn@m2%:LiN,nH @ݹ>gi= @Z}z%#L`+KAr)|z?hZN khjj1NA31qßzpl@3ǼL_dyL_i+Mk yj Q <1_H@$todJ/3S\4Ϋ{8[o'qQ\^=3ق &D*-էHDž- igYϴ7ȪG-IN$Qr=@Uu3ũBBx[A =63= jGA ڕ"Hy_H|Ktq/ķ+^w-:9z"a& 9g篟5Ro}?_EiNUęCu3uI#,pׁXpiYRx!B+/2K $qtFƸ, GXz/@ NmɫXV_w4DQ<XHlFx\#pH0oa3cg~V ٮ͞|hⒹ36RQ24M" u"xfv$Cast4.;2;=SU%9oc70K6Yu9 2p1)NhWyp[~A^T؝vnWЍa՘ /f]W< {LjdmZ{1>Y=(h$AԢԷSҦbZ~ooɓi-!BD'_i*:̿v@"`T0eD|Yu9XRY?o`7]6V);k5%& TB`>z~W܀TX apV2haeG"_5^.QxIb v5mE܍ ڑ૯ҏo+lE)6jN[^ΧX2C'@`t4Ff0{Jd=DIߴӵpz7F7}A[-1]nG+Q sfQ/9>(eB~h3\Uœ"Lg)hD_)~ ӏ-1#m`г f.6quP Y3gˋd7E~v<`:dxmJ̷@Z'IL; 0i14ǔ}?⣌ `0f?R8Ʋf#8v/QvݩG֖2M(v-2^&@]K=ntc=8Q8(Zxi>XC8apts{A.c^nKe넧g\XjVz~IG T5G_6,.O6w8÷72,Eq>nXquboFzY*x XH3%"e~ò=;DE#za")/T&W|Ȯ/gǬW^)"w%}yN{rxrT!Pѵb+gள})xM2MnLw=ڟ%)('h,^ Nќz:=64 @qr"\LID4п;Td-eo&!B-aHznEZtD'CgUqEG7if`'(&la\fP<CfMA=K!BrN{DhH3ɍ>!uJEB\I3iƝkSR߀j \V(ݙ567BP<*lO<ā'ܗ/),ɅaYrnӂ>!҅#lD& R97!ZǓIAT HpajU&|9] o/,+5)w儘3Ӈ8"`|'c;-SJXFewCu<(2l_.bеkƞ%1\.g6,\~+@X* "e!{"7 <Z`zݪF.w3f?uù,ͬ҄Nv.$$¤x %eh@Y!O, uCt0x%lvk~7khΫBq'BF{{bW”Q'wjϭrMuj^ĊPG)r&.l6ևנMZęsIΣ$G)iewbpЬH?ܦ!K^ e=ssJ_5Anx^`cikڤfp~иV4˥E؍avuVԁWb%H^Rn$/4 n2r9 R)2}-9jqsQ׿[@"V/m'`BP@">Xd. J T7c]׮1Rک a}>_֌$U-Eɒ1\ԁ.*;J!-cSO}dž`o9h~ſW ߉@ϥK7wA'^E6)N\@2K:N^\W}~g[lO10CDMR'Kmai-KZK)q>bk>DZDcg ;^dj~3A/ZxF`۫P31)BA/ y6; Ҝ"S0`O7%y?<1!Q t2sL>OKFkAm]ۮfLwӘE٬߬X9J޽>֞_dߍʧh{,g)2-+F8r?v1(F1 ;oggkk.$E*%m[i(jUi3 !WtW;Sx]kn~ D{5oA]y"跈Ԝy)M7PjR> /eLe 1g?(z7˔ΒRw3J&ͻLPcwۄ^=1iT;B˯gxdR0CA!Ϩtk3bWFHZۿlA/్,@mpe5R'\ͻc#a*Pe` |xEfg!]Jh5D'cCwpHAg&D\],'(n -(Osq7ѓ \ ZG$}K0KnT(7IvP10!_`M(WHA&@3 .}j>avꚥ*{?c}}~25ߍ_bșΐP*ts$fJe]boRv@!HL=Օ*l[T 4MIkpk?@Q 2 ak)[Z8s [FD=;TrOala, &50Ԇo }4٠ *G:qӥ"7ILMܪMÿhf}t<ƎΟF/*I<7_5q0a-G~Cɡ?Ybe'^Unh9D.| ˗U,ALq*B2hҋ=O `'8eيc;F4@fC\1*{y& t棞ngxfhgJ%乷v4;Z'P"{%"Taٶ%"ʵ, <%3R3|>D)Mh C"W>XVAhh%Ѫ8AyA5~w(]Nj&h_\'+ # GglF5Ĭb ]pM;Fԫ?U# =)[3K4y^ӫE^ u Og r667K$zi>G؝9 n~ 9V_@ t9.Lj t=}I;6柝Vc޺H>f;hl{)%Oƒ| z`@8X~K&+K~e= 2܌ ik9^{xG~];<5Ĩ[L ?E4CKhƛE.z!{bYi<%oce"EMb[nԨu!jc[M) Rp!>  | M$܅Y_կTuo `y5UWЅڐ?ZT r#e)8E nnCʣɀWsSq?{ ua^AstbgymnXrOF?*[1W9(;d2ߴīEޏ&ߛ%T[{Lv6~z\䈍k"ZT# !biegL a+B'LԖϜl$p=μmkB܁98zC{*Ѯ# xj54x@e ߂)!R} o{@G6K/&d͆ :`SkuX'd{t]r!Pq1N8:&xkY=DȫP"}?"f1^ ^Ly)ί un%Y:VI6w_AیX)5ltP=&Z{\lh8Hch/}X>("(gʝ[!Bf&U,SHInEz)b 6L}IDD '}& o@FtC؍&vMY.-<XꄺQE<Ki5X4s͘L4b@ :h-,%- Ǭ8T $`>VLt F֎f+"+~IGE2 ZpA]mp+L5Ur bk(U[Qt~ -fʍ;goJy<H݋HZ3@NT):`,b`X-V?W|Wnu/Bewu)\PnXՔ_/ +O)7vdOJ Uw o\~ֿvw34- xXYwvgm rH,d5R2JH,۳Ts{85d՝~Zݯ<73P񁩎UkzqE&jqc^hGTϵ2?{sgI %Pc1| ^㜾Ӵh3?ԫ^ȡrj[%E%-NlrzJe8> d $|8T I_Q>ӧ0پÉ=?7+g ǽYhB}3ڿ~=?`wBVs HKb-PYԥ}/aTgj|@I$ n0E@aQSԑy,3{2jIǃ4şxAmnG+mQFY_rH*9T7*޼cك>쵁Hq27eRZl@hkY|:;_aL>'mמ\IiSYaZ-vOͳ9u>35 Z̒QsP.g)ә l#\C7u]BWxI - bUւf}ֿeeqtS9v43ykŰzeC4u'|R18>P ł|R wT2p ct-MشmJeNIDz;..F-P[JD.^p)҄#[-荹m;;Q;~Q4דQ"sp>mBĐf2xS3*9,:А7 r M0`s, =)(dސ=n̓DgoO츂;/Tboht{' h6ΚMq׿շå-`6caA0Ha#9 [ skx}koG"KbLzI8ұي0ܷU&B'r.o=̠SC,RoAǡ$xENյh&^t_TVKQmt] "&JD,bja0(i5/!J}1Jf56p WaL"9>Y(oԏ'9Uݜ)\qC[ ɗE}n\}O64T;dDwjoW,{cn-j(7]nNC$i/D@ ;]',9ծ і&Dz6'7ML8!e)~4RWHΛ~jWkKý>y!5 _MP89 b{dUgY1)E4sebm(3ƮM"Ԯojgjy"3PeN7aZd)Sj8C8#*%.=rrbgAǟ/~rɽ8$g-lLxx HEAo_uI;zT#Y &xgc0 xͰ)0X*ْWJs^uRjթFbX>,!b>ƿE:z=4qZ kJb_/K?=k|VL)V0um+>Ζ JQƜ3=7"Eg:TO `.y`/'%Ҷ/CKn9@A*oF:&FuT{mlX3{ ey30ߖі2 (M)ZڊilsFXm&TG 3X #* BWѦ_̢3f=.oϋVlahޛiܐ|s}^8\PxR0PXOc/A}nrx-'@auNzӸoRxBHA¾O.Y'=C@ N A;؎rp^epߺɎa=fq`@Ǘb_`h,auL3~7ov$~7Ptx%WlU2߶iZpPm iʇױmj]#z~ $3Tq{Q @J_!G ݃nNUy/mALwMq&^bQyY 2@[J?Yw W{} DNeÿ?h1<5h~)L/H&*~mX d9^΁?}?<$zj&Q5s^H?ob^&k !3 9XQy=:JI08yLۅPkM>jjuod{ r;(S- JD6dAz70tzoFF=HiI]p b`pIݦ t~ BA8 iUqVeO(.fXN9YO, G^쉆s6G`W=k͞xiZ|v1/>A3ӹ X)NY!{pꟖXUv *4Y([@Ř2(G L` gqrG;eģk<f惘XҖ6GNcHB+Y{t!=&{kh {ٿ NaNON&T2}|K}4:YsF#ycC_`Θb?u6:IfA_S(E8F)1 ;v8eѼt(,x!:Dcm2}!s FU4zu R4n+@-5\xLHt@;;gcVJ(K߽M 3 slI_(bL\#v0@y% ˺Jm;*$ YaRx鹹f[axEy!kM׎U Ԭj9΍s3w֍'l"1Hh!)E8)FtBhL<'ŖhaL4h`gc!naDkDmGK~uo73ڣVfH:ŧ⼭b\M7e!RjXB5Ja6$y5aT7v>X;9[!&tIKcOQ4"!WT5nt0ے{:w8şG`x"K?p2lhiYO+Q]V|O [cHl?Jͱ#<2];pp*'Z\^L\H^]Rì#KLJқؤ=K ͧSǮ'Up G>>ݒ#+Y$?J?X6Nd1%h[INq$/f3Y{%XD1DjT^}drH*|T. R (AM1q#p迂V OԸRxApkmC5u,"sd%/*4gݿ({km@qWJ*jT&"բ=D,`> nDao_qՖ5JkCrZ7A Hº[.%8E4]zpݭL|rPϧ%'7BZr*cY͢;d坆<Ѱ;STK~X,IaGcY=RZ__Eؒv1>T\鄪y!I#OOݻw8Ӆ#?`ZJ"9{+^wz[4}v^㤼2D o/O;ʡXm ϰ@|fqEΕ`u ڏXGj 6nJ ˪Sn)d#^xm@#TL+\xq¯_x?&O[vg,C4lFѡ۝h6įs:)/ܘ0ot)X5ہurJݷ +ivr3mj N6=w/ky/^Y*J2?Y~ qbqiդND2ųl;YsBuÖ)?;.d@ΆAחnc{ݸ8S- Pas$ ӄNE~lp!/k[&59_F[8M9D|?yD0]+<M߉J ;^!~{ZEw- $:kHw C {%W' #r#S{ZlVb&.0^rjڵ)"#@CwІ}Nݫltk Pyȍd, /pޙ8?&hd<.uTncd;=-*ґ b#<2WiN3Y] dջ\A8/yx\'Hd֜ ?⥅+ĥmlI%կG FDh">Rp?.l#vGpBkfϭbӹJ\._Dg_&" .ve,`MedrH8Qju 'F+*RҪ̦ @~HkB/\gJ[3JTOׄXS>uuǹ4MwD+' AdQӭ;UfTޟGuGyxǙ:ױ oSD w+m"\!}*Y8I!{D ޾,U# ih8Hs,1 cϏn`7[G,`рP Q- ҮKm]!d[CHEc2ՍGC#W1dgR s.vp Z"_ +\w{& R,FHl̃0*`o(3lBLeNUdz+21xd=-puIl~nkӤ:);1Kc;h4WBۏ$[K鲐¢>n>gQ gGȨn ~.N@v,&59Nuc.ke 'DGOv'CM= g'[XQ4gEx,n쿇$q 7'd*7B߬ugPf5<읉SHm,#Lb^ZOy4.20R zUgkra&iS/PBx(NA@!{gn^BPؼPCѷ`Ȝ"2'*u Ky8Mu_ FhjGi3yVlԟr([$CN΂3DksWXc(9P:-90INYݲcvv#VNCNV ;=jugsD'jd p),^/HZY\qYMO1_X6K+LAH2)M AS`@uͬJgϨ9n=BKO 9FyA)Dy_Nd_ CE)j8jLe.)Z n^۰L w6㘿i|"B)^u≁ı"OLn=+P>ױ]=fb<3KD,4 ֜]նy}j q"JDA߳NH' v:vD驞M1pQImm y7on{n6 /=8޺ELBQ&^;疔2iڀTn| }]̄C-S6 t9w^W_PI$Zeu B5 ip?`n>"\y<}xꋦQ4uƔ1<0EXt$Eq (eQCS9~vluV˔_©)˝[S/!{Dd#~Zy$U+'̨ha]8Qac|b30'Kۤ1?%s?bҗq_fӁO4NV{Zw" 3U ++ fU\JjkiI|̢pTt~hǎ. Xt}^bq Е+fewra89U@x->y+:И,! e7bF%e) h?g6՗Ex7^l_Qd0tAE L,OjHЭS(7P4_)sSqa`ݬ)Puخ3_e][paĽ^}_ +NYmYv]F{'X>Xnk e .}*hMY`"Dyw"%kXx)U4g/ 튯*ۅ|CSw0{N!l<]0_un36"I.:* sބ!å 7p:B>z5MNp0,k%YTk0ڦDk3'W!6 Mh3#Vhx8QZZ))~uB}|[,? zM$0݆]̀ M̪x G=>2#OGxFƖ7>?ka`Ŧz$F.Ӣ3«`@]7x?q;9vg$2hZ)o.2y' O&d*xO #Z_c~_ft33ʿѭXiYs3J!Έ~l0i?va&|`Jvʴ98jִ$k9r]Tj٧p]brsd{&RL)A s<6%gK DŽWui(ICnF2?2H\n ./nP#"ыTC ͵Q>P~6> [%e*3;^PI-N1[]*[,J%%@Cq`M)UFX?$B5pJ0A:RД~5/Py~&t7g3TםᣦE,IOKrp=>)m:Ed.٨>P~Sx[ M:;P ^(cjtNlފPj=<( t|/~-$18!{`8qCOHU[bͱ<>H`ڻj[Ji\;HeKg8^][aO2Ld.qEXGa$0CmÓsgiԿ{D$Dܙ]Qs/0fqIK'HXb_lե-Rb畊Mk,aS<Əg``rb UvΜЊ_^/_Ćt`P. _ߵeОwlzM2eg0<n3Ǯ`l|j,&j5{_.Z );[oI(/Y>ɛxnq7m "(Aj%Ow5]~8C:SM[FʱlE='a A8h_n.Ep=Cޏ}>~Sz:|op [5 d5B@**jO>Ñܭ-;[ JUkeWfՑ[)fcz.r; '"gB7z;'g> O#`nh&(;qKKfq(h+gjE~;cKo,{%dnW<%|_6 uŠš^HRw%u/I|98o{P&~pCڃʔd&on Ft;>nF{89~_FRֶx3NfGxjh\iis8a*A1F^b|K"lix>ԍ,,Ni- I(Ʉ/YQem0ŞE ]K?WIRNU"nZ!|l04 A=BՉ/PR-Y~S|5A:ÊCYM#G ps7ȡOYi|GIה+pwr#o-4k3^ ւ[]W C]bYAj"X!Nxl,2;y4cBG@^ԺQ0y˜+ {cG^.nP\8a~hR-A4v1lwu|bok4YC$`O_@r1L(`==<&|y;WEݽg:w2?V+inE$BQNb0jJ|ez"Fz,E:ۛx*4G{߭ kS[@@prp=?stmw]]v;<`˭%xM yB|pE߻$kPLd^d%_)_zļIJjrv]%S]!˅玩QuG'\"{S\Wz&2GjXc? LTb$.3٩FVHOsg=jcn.{E}\_jӤ)ڟ-u YJ- ?K)ԝL#ʷr xAM4d~1C2< !U6Yq.>.0@r%qNb6}91J*ɉThZlZe2AʪDY(l[ߴ6RgtZ%Ԭ]5*(ff"s5Xsγ)lMh7 6@ Fyi#eF!8iy*uvnSbt 1)JRF0Z44ЅUvVQ<3+"t.ǥSY>'"mTBJ5<BwQ/lFr7}gS*55Qf'±KD 7;X*.AB?LЯ,Z-|:J&gP4"k݊YmV›R_i:XrS-~954iWip(?'a[*|t\Vh\@]6=w:UiIs%47~L \fVXѩ @%} Gg_ ljT}qw]}:c?VU]$aRƈ-<c$+SQ-HM ^{Zr4ԷAӝp:;BG%֕O\rf0sd;v„\6x3 w (- as- n)|/NC!r-1#v5ê߆!=9յqǟ+ƭ|r_q3؉\!'O+5H؄g ;CW<9w(/E0e*ؼV֬s [a5F˚GB+4 \}0 { GڎPb ~ [`4)UtJplXI=#~0R#ڋenY(3(rߑN )$ll::s^cycIX P@ӊp:Eb=ݹfyAWŸ^}L T!KG- $輰ٵz3bu1jb0tE:0FksLunCN4 8[A:)lhoAֈ7~隒+ hɬA9x>Ļpx_;&yYZ-sqx#ΈzږSMB g̟DiIYŤO2fj%yk(N7{y_2'MT剘UMNflLw8?F$=}vsX` · $I&nKhNdQ_J.ˎCaA(ݢETJfk90ĒHfυ1UEF|xK3&Vj/5DZH6m9&_ۜ]OElͰܷ$L =1t'~?,54 \0ڷQxpgB ج2sh2tAnF~H-ނgؔD.:M˟ql?B)h1FDy<\(< o-T;z {u|qs ϶.ͨ?S6&H>qfφ[r eC?:ƏʀBNr,{!eb :bm}=-1nnh=SPH9QKݳui`v..aѶ>N#Y9NT UPf[llڧ u]N;ebȱh@MϔPүrf+*]lvG|D،;i"exJ\ lz~q9L3?5ڏPZ MME`q++s/ɚ|nbͻoEá.aΈ0+g|/=s q)4!q[8T?2%HvuJWT0aw5`o%Q*@p4|eFZ0o$ȃ$_g/0daIM9ʹ$,I6%&d+1l&5_Mvf[;]XuA3 /c/yVDeB<4f[i&?w,/Ix͗\kE`9/lA >G"N<7^>QJ;Fb9$ǀ♵!_ #ԩyO#+^Ö́=5h6Ҡ&D;0*B rvZ41>=qg8ߪ_@Y_ugٝlq@N&y$UD%;64#1eo,ot~^Eȗ[!J0]g<MIUDO6hQ;y`GZ+_ E.6/|^FZ{P4Djs,Ez o)puOnySϫvMCl5i:B,f6}0V9 h/))2|?%M|]>+4$r6BmF;γ!~Bx>噺D{6rG4#\U+/?LyHyT#7ghv[0k+,FW1A pl.Ѽ=A˼v|%W;WMmP~1q:^|Y\WuR.Q}hv^qb*2;noI MМkܝawPn\#Ye:YuL鍗8?& Í8tGAg̀;|ɡ.V)f@`8ު)"f@]hs?~\w>Ke$'7i62c@5[Sw;/i\ݠI<'a}jNs,yNmSRΆ.q}u`Ƙk]1eB@[&/Dhx\g; tw|B͹J3NW?.k'YXdLof;6XPY]"L"֗ʛ/7w$z~Z'uT ?G֭ )0r+d맨/Qf"+yAVƖ5`xD l)<=)R|lL1Q0M'2%Ҏ%ujx?Ŕ֘u-nZ+z?1PTLP lCjvM{v..e1y9M "m~̻b >urcErOЪvWPv=Ъ\(&w~ױn^ޝB@iN 9K# 9b8*%f)91wxt3Nz@_7]X͐D3rL2CE!vq<="!Gs6&J'Ȯsh9b1%?֜XOmY2O}J]=4EC17%cbrkYVMl|<CN eVK 4:}x[QqJ w<&ʋ8a-ӧI+Vr @?]uu]vx՘YAPO,2fuN2`wE3T(,$jChR]H$PvNf /~a7h$*lPqYX+VpUɌ*JH'P7ũZ͹`Տ+S+ ^NiArjue}NK|wxp+sf6ޱ2.)VcFzTɬ9ߞ>LU9ibY없/_FsBsLT@"׻ |oeFDx=Brh1dU0JB `)7:e d99-v0Q2j8jT_Bf]wÝsA) ݐ]7-U௅Q,axrF2VRS+F-GפPBKgzavE窗 m8amZZw+cSэR9CtнՑx/E)l cÀL!] FtX1% [B59p} ⿃iq1mfAdh+s EO{ЉSEG FaK8]A1apr@贯o8'fcUJ oӷZZ1~'7#Ȳ9Kc aXIcFs˱swS%-`t,6$VzQ(LrloݰǐЭӉ>auNTk_}hB\|`LϾ9c|z*gbr uf$]G|5<nCA5MqqJt#H~fCo X.ģ1`:q#xfvnB۶O= pX  .iBTM۷NDYq^fX#,VP1ͮfxSەNm>xjK g[N=zZ3V4\#7㞀N30-a'ݨ+X.Ӯ?,: q!7J @[7=4C^ףDOFt:#l1x`BS/TB0OW'"mm+6C;:Qɶ0p\ 0IAd( 2oresYwa+{fFskhNzOS*m >DNHwΤ[ US/l4DN-?EZY#T|<@˛ĻE ( mFO!X&gEC_{r od?p~zpngj)f JO27}G^N'* Yv[Qn'ROy^Yio7-)F @AN dXzJ ϙtUi2,ڤ~*Iΰs3I]{1 "|5+oZQz}}ƪ/Yf7Y.T--vg T{) M +(c 7o _Şn0x[~F=L,=tTIX+[U ˘ h vd~J%Q;Phc?Ck#i} ųwU` jC;UVLa$!FD{$btx}רSaxKŭY&zL4ۺ:TcJR_76)r&i$oO6]u-wђc}ja,X9/X0D0JάV7t,gW]"s\Ȉˀ` q,,ߐdAևkUP8bݘCnݷXl=4)]wt hc ҹ6aVrR|cD05hfp%U BBEm}!+ ;Ud6ҙ`"`zI k1 )$8.o1p,r^'(F^d#°_zQqS;@]I<D):ȱ?Hq^݁I("lS#ڤ@Cdҟ2rL"S5w[eAOZB~2-Kv;^YQ$_՗ QTy}Ӂn? u W DC=ff.>T9*g"1vpcsXȍ%w+^[>B <69~ٌ;"Q jD <50gI\e:#4XOP d")ET \䍹يͫ2|Sqϕo/-Z8*X'-EU(Rb;7ئ(V= tL`[Ng6f}a{e攛WRhWڃ! :`TS#]@U4ddI9s;0'O_p16^USLQ`R:Ny}"$q0fĎQ#y3iPP:+͔._YpmiI>Y c,zC<%: ۄLkFB)מEXm G8VijhՔgEzeqeX1( j~nB -uБ+I+lY\ݶbs ! G4~CBacVΊDГ6/aZjU\KxcSdXn8P7|tCbG\L0lz[ Z-{|lPhWx= ŧʼvLx_PnK_ӥL""}D^d꾣煛7fܼ0A$q $4A\%?y=,\JݫKG3-:9az: 2֤̲iԀWJy5eWjAvn 4aS3 fmC8\Qʚ$$-!l,ʎ}œ 0=Qq0@7?4/ͩpI?U3(?$CΈ(Ɠl[y l@]L%@KBdmt]dkBɨxvf/S"1HJpeJ} |\$!@ԫV%e? +CJQO$+u& yiTC]Qy;Wi$'ة:qi[a?#Vf\ÑXAb #nW7u$t@GD.r|0mH6vu,X\,OjcB6-tFăp~Fm{hkPA@buPTk}Tc6]b)IkT "ޓXr\pl2Ns`%snhMbHT}T QUzxGy>>ueÔT}!p. a+2A0{,x,L ! DjQ"'P&KPBY QR YkTau%OZ]{tpݠ1XF0.n7}62v|sԎbAd&V)]nr3HT'-IPtJؒ]Qh*7OyXCEz}%UƺVL+7{kBYRW)c=ap|^aDŝ?>~Nz7QDʚ;v;?ԧkQ|>2H>_BdM=5oV?9Wo_",|(.L XYKԏ]Adyj B=+2S n_0#fv4(F"}~ͅ*ky?!UR(*\bb=U,*hsY9 8 Fn@eVZ&fӓ+DZXObWA"06S$TQ͖c=2cHUS>p2<:A3;: 8Ea\ Z3[Ȭ㙸fV*!e}ǟ}A;Q?}1| auzd &"ϛņ6;\Oj(AYZ=zzA$ȃϻ$E2CӫcL){d}$pf}7WYk̨Yh%󧇄{$Z!/ >}kǖ79x]mXsXFէQD#$|Z#(Su^mQYlF$`$\FɺfW3ˎmGq" Fx}:Xf8(*jX3r##/ӸI$/]6sHwg$1gP457bg~ѳq !T.~f~@D3)閭HmjfuȉU(FW2s ,4]&l5E(0=!є){PVm1}6 ck"{jeXoCsMQFlYg]~ ݬz 8u1c &/~u q5Ό[*h;tK|a :~HF27ϔS O&ޙ$S\LѺ'U^A) x#/ZjNhM/qP5TGy7wS(|?:]R|B}:hΧGB@j1*s`j秲XȿAPD~{FOY >w3hC/퉾~/?/5IƸx;*L;Lq^9$S""KWEK~O$gm]{PcI7[L2Mۿ Kc43'徧짪c]k8 3zu9Pq'A`Z7Nd˽tpLPjz}/42C_R6#73Wy|Ѧ^z~<&Ymi :uT_\'V]QLGY Aty'XXVEClhuƃb+T2y8iCWO)fղV xV,J;!M}!Lhno{)Zվ Z4Hq -[kڌPBp@т舗FN_U0[рW&(AƩ j>1?l3ETYdV5)_cyHXךJf)b".]$z/%F/yiWB"}mi3]I2m1M"Ì5 ,6%зūs<}Fp?1IhϟP%HzCe6"WC[F÷T xzs~ G.eV]V* X?p)WH;Z0-q[얮m/ۿXy.@#\TlU:5ofO :qNPW\zw8Wjd#So'$_o~|kʔ_FN6`,[U.@{ׂ,rFO7`(L<jOUEޅ校u )~w$M`c OpO5o) Y$2jr''4vo tbjY^ez@ROUVBUՎ# ڤ. $˧g|m&Ɉ-_ޤÊ}_g83Tay hLBRbQq+lR=pC:=1s#{A|qxwAN0dvwA.CIUhaim._>кt?S9ئ*9XxBi](+~vn`9n5m21"Xj\tLa IpzH}=q<O㟪Z" bk Kn<"օ5nCC[5{'x`*:0DPV>&q<hâ߫e7j(T; }.۩ !/$0L[ݨ ]ѩ %Zbo@A1Jˉ gB iuyeX8`}~NAv.z^jO3]^$\4.:qU6u|gvF'>S bMm6T8DWaM xrc?g>?^@t̊>&k{ _k(: L)rsNE2jPE$&pzKv 1ZXvLNMy3Etŕ1D#/9x+B{*1-}p|M :FLLzbYód+iFY0LgSd~)&F͖iտE)\; D&t`^eL~`s.?J# UkP3uoʘN*lIAAgq)N#kdOW׮(tr_Fz`wO6W*Cto촍<"/sn5ʅ~.D$9m'I ~%㛄CodO>l9:# `~2F(_v7b A'GP\_iw2Q4h C!gS.1x(ˆJj"ϳ\xxGrCV[XX'qK"[9Q$GS+ʈY]>@/%K6cr(creA=S~I&Ϻ&{T[쏄 +wT`tnTqF ZE+ŀXwvdI?c e"C7CрQL"]A1(>6\'j|^~%3u5/Ԁ&md/8$ڛQϧj-۫s 0-W,1Do}2@i?FMd&@%QUO^BXڥŻ?G>51l'X6L} :* +$*5 RJJݴWuŬRicWw) Kܱ\1Km%Fw. Y7EHP=DSX'3Jcr濍?w|0oR bI8K@KE7ηe(,wنf_H{(8oU9^z>_C#lhO&X_>R(Wݥ]l%lHujN%4YadVV&J-ɂƁ3 Q TkbuݏgU(# +-m9JjIS'd:%qsp8/';:\.)뉿k`5AcUw[=,q= 5BB &&O>dܡwJQ'n`TtVXF́ϖ[78Jr嚡w!;…82'ZWM&O*_IoMp)cVV_L9X[( CSe6#@E- Va Ge+,:zkǼ_Ffғ@y]( 1Ծy,4MQj"eꁝ!veG qvlqGC4{6;fmmS4}"=C恒lʑqw6-8@ҊD"dd7'+J;nHU:4Z_AGQ>Iz1ܙAUT|p/Uy:Pfy G is'ВSiw4ls{!sI:'?:%tl6跘CSʜA1T[螰6,lPê oYii5qO)Oz4ck @=PGA{Yc+:H#f~껔*g`f"¬ӍҐT4Ezhּq㘍v> }}ۘ94.ԤNu+xy5>F.+NwAKN,N(㥍`}\Ṷ3Q_@/Zq'hy]ҳ d3x0#pV2Hd>o41F#4xG %-k$o`/DDr`7˺fxq?2%I.Z>́u!n!x"XK/`1Ca֓a1'BGHj `j_t羗7z6_- 7-V~(tt),%FW`Vn>b F%;G1i_i0۬ڙ+;r&P楛E/` ܇Y? %,l(@NJHw00i7b5} {@CM{ MFZ L 5.2DAףd/fe87ȝ2B&I#Q]".2V5+zX:Qvvߩf!0 ~ gP[L 5 iۯՔnCdېF{3Dfd\t dbV%:U 5Xѕ*3բ 6ػ܂}hTYԿp+BB߹!.l9q=qY x7 !w%h|pDacM a!( Ku-qs?_ x_?֦/ArqEȿ,f Xƒ@xZP>ғ.crNIR;,r&*霠nX8LI\Ye!>K"ѧpC+QLېR7Y^ewd{I2rCj4I߈aUm&!=[vܩ ;uke[bt\,Yw P}(yR6}%qo늱A^YXQaf6vYo%"jHջ?im`PifR&yMꍀr񙠻[[]~ܶ &k(/3{XrYiJ.(揋$]E  CXDTar<颧7dAm12 i|HV5NIYZCW23v)P~ E>G٢ެEת+yuN2/P+f4sI6M;Ug(,#t |n k HBQf<Pқn^ #˂*"H<wtdHVwٸѢU]RtRgmI:P<JE,iNjzԕ\)3).",Yb1@D- =zu)w6 ь m9,iܗ|x5=!ADzwbGb$]zDkKLg][޲x1T#DY] ]ROO^o8X&2跇f{N9u C@a@qD[ pVfJHkh]\-fQsf媏R˼b1^uqƿYLš.lRU*-y1l'hoϝ#V@ۮ1rjF ...h(?J3 13zGWy'pK+ebq2C }'-uNk}Ѽ&\SPq"`Cd7/^VMm!miխh?5i/SH 0o8 #U]6]fCHV^G3,E3T/3o[PU?c2ݪP[xS_Pm>xx`1g&~|G%UW0}F%{cL|! KpB; ?mTfJQUb~·s`&mg2$`H@ww1Z"}Uy Kt?8Gݻ+Ku%Ѱt./~Jĺ~H9{[rl ~<6GLFQ,;H=q5P Ydn?7sho&b9O7?۪ǃt) ȂΛ6Gw _T@9nP;)k'c`{~dP%ɗո2{XvS' b Zc%kRJS|vb-0 mlgӞs)ׁ <5b9?*iU/IT Rz6U*v)>VQSnLKV*ibdA`;CA\w?6uozܫ -M/>$єo4L1e܄ vE&{Y,M- hoߙYxCFhav[?XhՓ%/BIDp!26A ght?"7;Vzp⟹ƛz=(ƅ /? fΣb[ 1Q%ズC%IW9jL#dƕ>O ]OVEvgg5LյvZ̚9wq_wOTxnRDv[f͊} C^QGnE QVEΕkU#qm}G*D bQv;\[9riO֟8? Rh0..$&z|faL?0kiJ@x$ODhh8t!bʲ[4=0SuId u HR+| ILXKڔ0>41R? aNr>blQTΔ. ^U>\x9Ƣ>.֐!ey߻3E|XN:q:WɅ0Nh.E~Ka${l}LV G:"ƨ7[ayMd ϩջ  o CѪav9? ЗGs[Q–0şHIWP`QR(\ݠKzoAXfMo ;HItXp0q |<'3g 0$,󳈦{- 5]У I>Cֵ Q␹s`9Zgsg ݺȠIꀮ7ZM /wigUϣJ3{w f<ͳS]ý i7or%IB U14\>-@e$[Ɨ_C +Cߏ8}>6x1 HcG1p; #,Y^Ţ^cg,~ ] :\*Ie.RpYc|d7HuQHԵEc/3' \cb(/) 8[l7ف"2hGcy5OPb1B[?%&)\K mEyik&Ol"Wȡ3/A' }Rz*2Gxņck^: 9|hbpee׽Z Jkv\do(L峛.yRf3#+ڇ]7){iB%םW9ϧU1ܒ. {e( Jd} 1=EX$㌯%_@*FK$D%e}2J+N8lrg\s˽M+Cʁz|WjXF(?9SG-)W7G w)yz*?_R .iXH1VwW9͵(u4qvݬ9ԛLh̩Isʫl)F=,4OFh.XHߝwP,-%;v F*DOP\36OOr-w\M._> qL&=xܡ,^@p =\NGP?g8,B>C'z''CRn-*>󌿤'T5zXu^ ѸhEDҏe[ z1G,oeg#7u#iD U BU.pTjf, _hɔLԋ@_LZҒT8OX'HVKݷr uEr?JJ*ikLZb%bNFLhُGT:nyrz*. Q ~pfY];lFZ]2k;&duYKnG@ p/dPTמCGrGŝ\@/~/9V=iqj.7jJ_ #U$QDŽ_z,\=RjYIq)n;d'V4Rx8xJUqxR2} U)(|$_aߠvHvrmI *] 8;m= ʡkJFj].Ǣ#1:E)7˩fKf(B+mྐ+#64C P|, ºV=XB~y+-~)&~8=oMȨN9kOC4ѮbR/0oy װc-_m +xUbmB7>+wJMjTK53{U fy8[2Y uHFL~xQa F3=^<lHKXhBg~vd1kYV- _jhY)2?Bq-GfԳ$*n_;&Vɞmw̯՗/i Sif_9D}>4,~$o_7<ڪ~e$JX' jLAW_ju?uꈆJxf]lWe`e=\bІhm\omH~X PY kj(xcnрw݉mzRA^9ʛ՗4"1U]m ~&-`G{Hpܑ}á[D4>xG.I n2!AqM_Fٞ[k␳S o>s)6" Xx4TsUb$_յݽ-:({*G$"cw;}_ ô O?zd~5 d\{0ӓR]r- â jNM}§=u@WD2'u⺔Ny[  ɋ`x{ % W*>ë !DeO&ҍEܗ}[ýk0fp'ZԏOtt\>=+ܖ{뇧 4$mRE;K=:aJ ڒ VW^AκM-XΪ?yk{wTFKU>Eﻛ0`ʹ]ɺDHk(RM)a4<$]SI\CxџZ]jQ _3=6ģ4[Oq Li^Cj W%~gN8|6w=Ce-23z"1mٶrB>MI6QgpujlrLkWLUek6o"U\g XFU*ݐ"3$y^ ʀ,*tR|Miv{8::xD槼SθGϳ+T4`W씿3~ڰœ#4&Jw@.̩X7 "zlL'&<{HZ*qsAd@)-=^Ҙ~wjh3dcm@ׂXr]tpOs i +۞Pu74[xa+RH:* ZB 3Lu*+y^xl4]ymGoa@E3; /P5YކOy΀u ~ڼt^ZS4~̳BR1_CAU+f{QjkcxmNJMK` v-cՋCL(ngh<'F zg i<7> |ޚbeoed#J(oh*Qw0nx&c#ftѻ&?i)ɻ`Ɗ)ac&_({U(5"Py8.Q63=pHAӤc/0es21(2Vo 4ցάB;f.A^!YF{ol_hlcSw}#U?"ksC}&~iZ lOպ&ť?RrUcjy$|,90f'P,~LCq~\$؈;mDio09H|+Nvjlt0RG4{Zl< 2Xu$:_*  (?RE!DQFn^K'qN2ށKdTW*+ FNgk78ir~\*ú}R|y~$O_%\W^m! ba}[/_~.x9&:ٳA31,$:"CPӺ"`GG9'kGತ&~ ̊]ڴ%%ݍ`wi>T7ժ69*|7grfq zc4# uy-IB a4$fJؓ19ζ;9w7+B4 }R~ >DU4j Eó/;d+ u6;`]ԙ,?T95oc#d}6D򁳮-[ʒ?Kymhba8,K{DuJ@[ƉbeZW1':+R9SB oTEο}Q)4U?݀5]gDأMB* UcFM< rdIED` (&:\Sl4=4`6of:] &#V2mB ہ'T5**aA\ ^Cޓ|[0/v GɦtpT}nih]F$4".<Єmn3 V&ߔS`ۡR *1Fl˭}gxhrX471hymbE&Ȓya&E_`4єqFC1>6o&>z}{D$-'"4K%TCr%8u @K[ޚL4ΰJUTkfT݅"{40io7,6f_o*^x4%͗D"{͙el EZl5\"sPL{|Mi7qNU%ː)Gvō ?Q@Ҍqi>s`rX?p+_91UIn֦n`#i޻ oKyfh\U1kPH@sV |2(0f_%*Gu9$f#]!AS{zٹ 聤[tofK 6j^u>?>OH %UCiEؖ)~@K>? ͏5jҒ'<̀ͳ_z*GoGjV|y Z"/OzS_k`[ ^.Sv˾ s#ک'EΜV/VF-s:*Ray(T] `dHK*-~hX-(pP[6*CIRN*^Uv `hM ZZ$89^tL0Os]%H!25/+]0ַ,er,֜TҙYfMRz ._Ȋjb[Z^116Ь>Т: [&|Ƣ ;N -@{qm$ >q;=2,Zm, ;u4\2%n YZ