go1.20-doc-1.20.10-150000.1.29.1 >  A e&bPp9|y-$H- &K3uP{ RŕA'So}{md%;2 +WK_g+A"+UV-Iiϊ X $;T,=Vy*TQ3UX -VAoHj ĩi/o9c n>ӛA",` 98>ukx`6αiZå!p'B7 j`d165b02de4ae84f88acf0b1e8decffd06a9ef6ca05ef58a43dc24a58f9cfa1d0b4e22175afbd4df5c84fc501399e8703d550c5831te&bPp9|8rl]R>"Yz._* U ^]^xAJKO%\5`$n"ĵ{z&ĻF]R]YS׉ )hgq9T>3B}p;H?8d  # 4TXdh      4 y (8(89:FfG|HIXY\]^?b`c defluvz4Cgo1.20-doc1.20.10150000.1.29.1Go documentationGo examples and documentation.e&`\s390zl31 =SUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/Documentation/Otherhttps://go.dev/linuxs390xMh>i+xe&`1e&`1e&`1e&`1e&`1d996fb9181360d605adb42c662c36fb5884988f29940621dfa8b7895215740e3123c14365f20daf6c31123df409b281bc131e5d1f88fbe543b1a68b5382cf6e7e9fec1047b1a8e504dc8796e5e86bfccb1423d52ee9aa8f699d16e2346b40fb9f31eb0879010f88e534ffd161f74f81be18135a5cd8d5a688369290581cb24d263ce5b7390691d66f71e60d7425026bbd3cd6c2845ccbcaa0d3c5b9af46b204crootrootrootrootrootrootrootrootrootrootgo1.20-1.20.10-150000.1.29.1.src.rpmgo-docgo1.20-docgo1.20-doc(s390-64)    rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1e% 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 trackings390zl31 16970138521.20.101.20.10-150000.1.29.11.20.10-150000.1.29.1asm.htmlgo1.17_spec.htmlgo1.20.htmlgo_mem.htmlgo_spec.html/usr/share/doc/packages/go/1.20/-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:31020/SUSE_SLE-15_Update/283ec4bc8890506551b45192b71a16a5-go1.20.SUSE_SLE-15_Updatecpioxz5s390x-suse-linuxHTML document, UTF-8 Unicode text!tbS&$y`utf-836f03dee4d7a5481748507d09c281cb0d1a94faef97ba7f7fac7808f03e2743c?P7zXZ !t/] crv(vX0q>wcRiv24: vg[{oGtnd?=8b26]hia):#{u<F(g؞LF 4G.yGU:a{&~yi!)q$yӿfI(j; t|3ƈZ;~xgF sSsVt.)8T-#`T F;ЙaHi=_D E ^AOG캩c5 ݑt^9 裦\TīC"I]>#}0sĎijUKuъd ILk h?9^ڬy370Ņtxj\rczkPXV"PYd*F8"2[H(ԭܚy`\nUE,#+|Fn )jqbi<Ͼ[8H @diڗޱ^ gKBuC)b9pyUIg#5ee_gZ瞆DNiclK?I_9w̺NEcD:9Bڠ1>iw]T" "YNyF}?R/Ca)nm Y[M$ tZ" $,pww^,M kD]ty ЉtuKe@[~׫2`-xԫ-nVq`% ^4Sw 2>l3Cq VL5d'5)sϺSu}D%GT۩#W6+(W!57 KNBrIz" ѵ;S'6DN +܁Tdn=>’D]0 EoR69P[E2 tc_3e#p^n ]&?$Os,VRTeBHe_:hg~9Edz(?Knbj/wcphtpyS]fItХ*R`Ik R7/J]Ix}|dKKllZ} +;PO~c/l8SնI(a&HVNj8xń[3!StU?گ+5_hA[p@֪@u@gwi{g(jfK9=_O$"-(goD# ;=+|;~Isao >Y+T@6ۤt\FMvZ{|-47,vsV…D`IDb=hdn.#P,VCA} G;!Mʽ ݭ쫷[ h:Yϖ-l],R E )д]r8^9ħ*wUP6*놻pP4ߕg8[nבhq2en%CF6:wסәaEiepr\  vnEtߞ /!;Ф|6޾no~_HV0@CR3cOׯ75$_۶ H֎ve?⹐EY'7pZ1߆"b<-+fGiP`0[I9ޤ'no{ƊB.#䯕^"!˾|EdHě%+Gg%IF劸GH0EA]Eq CjG#Co>P4&dRpq6OX! {@[JIjL]F":\gkۓޓ.R Pt҇pW%_a:L.fE7/~ݗvhʢn!$suo~~3ymhfքKHNII'4W9ez7&Xd| .S#s$5+e`&6[H-_\Otg:tάX[G:x5UptG@4x$Ǽ`tץ krY@>ɧHuʟ b#n͝dq !. MdYS6OFѬv6c2w.3X h4W'EXkN JkVnz@ P 5<_x]ZLq0=qu)|!#[oѣ('ff]ʹ 7_8oyk|I"rɦwGh^fWuIuh疻b_ܠۼ]}d {G9Af lϜ֓G0A>4wDMi{&PkyȄq \/}jV(;=ښzHeoRE2b 뻾C3ᘏ6^.׀\Af- a 9C?xUlAM_9/Ig,N 3_6fmZө1P&jA9A!:?'lsbtO2Kja+Y] oCw>gjjW &^ Õ=Ԁ^k\iO 0Ň e8%68ojn˦Boa}%M! ZEݵFޟ@ 'L|&Vs9Jw?^JǕ0iUyCa]0*V+c;^ )#.sw9 ^,_VOԟMkxL9yoqpS7L {?Rn~K[a-+jjk+<8zgN?G>޼}V6rQ:kP * ?rג0V{pha8y'I)+HkWiR<Þnv 8l JՔϰ5H|/グ'&aGv9&!̼]g|btnJ4T(2L^/By}[wbiTD{V2#Q`^V5U8g?$;52 O#%pH,55fFqn]lF&o7vJi !tBV] j`U"PA"chj2q犠:;.60HY UAA} eBy%50wQu?OO"jNTϹkv5RB존HMAܱ~B*mSMʍ^f&X"KU[vm96U!왝OM/h7΢aP T ' )/qs 3oUMU(1Յ.ˣII1Q46'e`ۅgVead#EaJH+CjSB6\ct،(|Z0sZ[e/W:' Y\>ZrPTrYrI`8>Qe."(;"knVEQ&|Q`م4PQ%ÇTwfΩ zxՃqN!w! KoQWWq Y$)8Go۟}9Ϥ4yϮp bӒȂֈ j)u3; |jb#XSߠq5 eo?Rve؎<;uZ-!viO0ȃ ֻ-"e)95iAZ8,@r GHZN Hwt: `eAI?5#E2nyOwTTCC6KbZ}eq"P"1hK߼vw7ŜIذ SK*Bb6Y[Ws-B)vC9uk&&ZRPOje~VE#ɮśHՎGMN8Ę7=r[GX6Mш~iD lXihcF@_ޥԉ 7)R:<5Ϋi mʻX(V@b~hd D[29ݝ5{Vϙ)[9UǛL5yx?jM|*T(:Bu8`ߥ_hɗ-?kIKdy20Էt'zBfJ(BNdݫ*NvMz"| q]1O6 $ey+E^)/aq7^hlMz:vzW#}VaQ&A= uqLCTg|&8UoaEvbƯ?;֛CQt:ZO0<{:Ϣݐ]axhƆ2 ƫUWIbv;L1XjWJYG^j\EʼnE^u[ ]@#>\7iM=+SN:H,ǸXd.7=f[0+&='y)lPhh ƿ~=BOR^ap10ϛEUv,(nBr i'pBKzQ7;r3܂_M%W1r0#kBU Wp:# 4!jSZ\KPH0&?T :r4C3k/ؾDEcG #iKṘ>[-RG C+Ao:ou96jB&n%aJ9.zK"[x) Kc(kv8uA<0Jm&qbJlߤZ)@)?Kϵccm|.Gg31L^WYsi_>Qk(-, B28~٣n6g)gDڤ#=iB TX# gѓ9Dc8}p/="K~>SG|{YgxdVD+Bm ډ`Tk˿sc 1'ӿ:''N`x; y.^:￐?I rUr_щՋ[Ou:,!:'SffW++riOhjaUHoCCMmk`b[6DcX찶0 I(0y x@:{AS>dz0U7G1!JAq >?!\[_N4/ت@#EJ#يKݻ1ap1YD m:`M4 ]wv)_tНR{jw {VYE^q ێr-Sw"G}sl,HT'SՀŐ#,v]oT2Z՟FNՉUn",d {&>4WBmh5рфW9J/az"ٝ#wd/ZVbbRdI?f\O 0qe.&^ U_iK*0:Iv_oY aYamYpfHfYNK-AP,_bJO]k{=f(9)j]?_OF 0N{ѫB&IiwM!チj"h&ase_Nc g `C]\YZ'+u[.Tg}SM4Vgz +1seh,Xxgri#9؍'ĠR u/يb(RWPKju^l Kͱ:i#Zn0kJLxo9J8L&~R nd%bBnSp1%J + a+ `\RȠ/3 ^9$ 7:Ж!cT~wP8gQ0)OJÜ0iMHpW z˗ijR9mP45bp 䪫)Ku\YwKPV:,V DGy%EaXK^oE" 8oXY#*Y,dU[ d;s'5טW:FPԔ0 b^˕I7X"raRY [!;Iʐ,)gÝ-(@%X&ct`paj Z_IlǪ>,giߤʲ-.\Q(W0N X}lK:* {8vqŨ nϰu /NUi] \,|77&Scquҷ$t$4M"=h?4AEe8ų9DU.Hº&kt#0X{9I57uGIE>m<(YI ݾ y}AM,#D.)0N~=t܀v%"b.SMuA=v,AK7`CJv;UO(Pșd.y:JrŋѫqLF\4YܓN t s9+4,Fȿun'8SZ 7*'\:'e>@kC4 u~U*/mffRQz T3UCʛt Qs˻$qA[W'.u83=kTOSIwMjX%GBGxO9zu1Z~vXt@%T2qeV])}AH'biD^:WF=zs&$:T[<AQ:{}V,WOo$Z0G1j((dw=FNdCܳ ɨ}Y(o/v3fÜ| >0x3}YPo͢`rR? Ҁe9910i rzRfhapQM3*BXSVQt16^cZM.f̕!CI*npWbRXFxEpL%s@,>}s? 3s;m\˨8E DxMuQ:]ve50+9W]9 2:Ί\cV2Lzs1in<#*ia'F1RWN{X%B߉p[@3l75fP)=H撡?ro܉5K R ] kĆH@k8j*[v1 Eq7 `6^!,mX 9b!Sl#caMՁĺAaPɯD$M`~%EKWJֺ0 rBX(qZ74UO>R&w`lLy &v/`{ {,sjxW`>V)pP`ÎPC40Ѐ)cem4[rI}72:9QГ A/Xg7I;Ѧ 4(w{2ǍK$mT=xVN?|*;DR 7-yTm$̌voRe۝E.5jU̺0m퇯AHʦwEt vaKN{>URɘ6t ī<rj h4R`ZRC'Vt5qrqftŦcD)DzdOO]<:Z}-njw@?k .pEUX nm8,DF HeLh$Kάq^zeR#X&tiCY/C+,))k0 xJNJʸYY'He1_Pø)fTaVY`x7>]'m~4; h٥-J(<2 cxcqc)GdKqZD'")\E"C/rIT.k,!͊XZ'fnR*D "8zpihW @T^@oV؇2a9-x_m39cދ5`s<mOfe)3> 5y_{Yp߼r]e7a=T JIhBHӱ0cn⮸v>T='mB- x>61/X[[Z4m@PYOx镊_#ጺaX(|LI>8 צy?3b'1FkY仯/i3Zpx6,6^DBE47WrX˸׊ g] gq,KߒUŘru/8d&;DօA4=UQ9[?p!߽̋@"\7$I.2RDz`pZf$M B)>?묲`I F.pfƫ%~\8 Z)Vʭp\ofv69n΁k eD^*9Q sIV 5]il|K]؟ ![HizW<hrKOC߽c922+Ty&y"c Mp `6VOBf"륉nJsBJZQđ2OYAbMQBɘL;#uW>EK|(\q>\nkU2`HTBŘSo>:5q71=u87-s%rjx$&JnKQ۽}Řt̔$@p:fo5P=z-AfeC#zMCw\PHKqEqTp("b#8~r]f=Mj^#\"02mѱ"Ces dqGǍ@iR6>dK|z S$kq2UoT{K}Ζ _S񎆟߫mSeEkV -|Thٕ0ovh{7 f'`>}MkBJjWd#׻m9ByBSobK1nm;1T=@%.+]zͧ_F@ăl(q&:EoIV3-瀊XNbQ<ϽN袐 3;@;:n&@ LDD|)H͉5#Zs['\razv:H 4c' ?:2ЀBcx0VnI~fގ* G/(l>7 f}6LSPun#+sㆮX(볃J-Q Bc  T* K<(fMz VN Qi))Ɗ"Ci)׈/|k׬&ք,DA~M`]VVit۹=j+(^6  Rww]/< ^3듰ΪS`8uܧO/oqZb1>IZ7A='ڏ9+&<"±u̷tSQ Έ3ȎPqc*,M;Mal%ڱyhwaD'xsfǩj*m~н.~pf75@k47c[Hdڀp8$'\1ixk<6pFif`cg\v"+uȣc39^+h ]Y'7|=FQLg+|m',$.v1呩XiY-CWXEc;,2WN+orH|8G b!fGjC;  ;1q>h']['禧O]6{(xӫklby4d +_TW9rXS,_ǡw5qil<Jp4.>Fef6%ڶ)퇢*2F g3]bfz6rTF{iH~ %_d>ndmEcrۘh.ݨH7i\8RBp[}.WV\! Od^V{ϣ61Kg yCRUoZAY'P8޿=oLħK_! Bl ]yvV=3d*5٥E!2)ߊ~X8pmƤ#-mʝ Lꢻ*7xz$Pq~GAqq߁S\&672 WNkٮ}D찓#kj;NZw1_Q0qg[0S٘>BL $n$Ԭyvyv8+i]h5/jm+ FH'N2  St3y_({+k jD6%97rPGn!dHtm&_̇Ώwc_n=MCv9K@XEIҿytM!D{Ysnf Y}{'4WvHݒ$jHhֶ^旿(ٹcp} l[FwNS:0B@nfOo118SVwQYOgRv *`P煖7r1CȮJJc{=7XbjHڴ4o#fBP݉i]à!h< bPy Yp;oby| / kzqI .q:;n;(ұODd$Hj6+ г-J+vsT%RFO-|0fX<譔gv*j0W7Tn!K1$[7Flr<|ϑWQXK)ƽԖ592ҲJh=t\O+A>>;%%7[ol_gpp>#AX l,1Fe4Lw@A ҅qDXHnYĐVsq׷Z Ix>Ey#w}G'+rW)Waa?c݌ q!aA`׀pe&h@ V1nL2\>e.n*u eIbVځQ`ÇmjN}hV0Cw4>;CwzÅBxPu@,F~RbI~HXsw(%pwlJ4t pƈ bO.ah 2@c @G2źbtC>K'RZ=a=^o9-{LFqqK<}'"G=l*^K<"z@ clclg{@?>py@MdOTckʩ7=v%X(AE^ՋlEQS ?v${z $I`DnC[D .忽OqbP)-۫~]**T[/xP"GT%r?/s Wì$V+ fX=W"2}l1gbnIG %KBn zl8ewW/0Sz0UZJʫxǃ?b1C[D1^tFUd5j?gϷ\f8ʍr`GpIvȭ Mꬵ޼ Ӂ4Z-0}J'dN[C8HKr;[1: G84Lʶ]It_vxϘnuZhbO~5(a [}hke&PT5|ED Zs6CnV^P) K[|7&27w%/|)Lt#w~Ē@"men)!ڈ~ Q auxdK6 dt0bn[=]#_KuL8&~NJ[|/젅w\,u+V5J~aDeDu U4'c`y\.͹OsAبk{S3 (}\Ím+on>= P 0:WgȀ]7ί`!a_vȨPWtx&܂G;mn2;0B}231NLNL?. e"e,O@=ɠEZܷLJz*6rOK!XO+"!hEouQ_dUyaͫ{"K /LTv{={\';Z CGګSV3jaN]b 7,O㉒a;=G{O y%ZVg?p`>WRi+vϘ#Yf1")7Kwqk5ʒ}ϟ::=`j>يPb8'<譾:*}7zi&x~[k<8c]Kx5t&e8}T)OP30l1bk--JĊg~|n?\LY2DyGc8 c:Cq 7Rq2~j׌Rfgл bo"JbUHc-3 wm*Xȕ?̮ʭE[݀<З 7H%C$ǔums 1in"blZy *ڶxf:4b&SͩаfIxiZo7`ֈ ="$c9|rtv#< BGbk4xmk0h NxYJ (Er_\c9}h!K0E X( n!I4\Uaķj9'\5?&\Čޛ>'^f_ASeyXC2ܗ<5.V2Dɣq;pVU?]kf[mQ1 c%j~-Fo6dԳoaaN#Vpvp5s2g6K: ~ESeuF)bjR:DE6XX0.õ%9;MX'3ѡ(f Rjw(wtfy ތvK C &j qc܏ZAP%>g; ]tK1$Cw/m|aSso!:EM?I2?KBuKk{1kqpI>;CN\EM,xa6H jZSmC &"WqB r)9}fS O{HAÍ>3iʂEq!2a9H Fa"W3)!o-V!3ָm[8b#2#Ib|d3Aj6? Oi&4 Sr 5J*]>2@~Mجv%[)R2<n^FXUf? e h- F f4[Q$%3{k}ʮXj 17ԝ@3Ѧ`cZrL?qd_ϕ̟vSK7擿,a,!x8mo[SZBr,yYY$9A%^d뮝\CP ' WDNB*, \9nQ"|a7b%bvgvbX`+a]nӆ%yA#M1K^)}eS 2ˆtk1:u MۜkVl-Ur%*Oqil;yka gn_Q9?_[8kn[{ٿ/]œ"lg>s?W *$l~ᑿ3i+>4a'6u3\'WtE,ȓ9G(NhoormU!䵲!Gd"xk댁9ÏTYҫU%LǼ b/FoОm( ğK?c>ǝ۰pwys~I_&LׂRo`S5^]v&. }̯7Ti,X=7(.V}>.۳pj M]k#GF̶42G+T=#7w EtYV8)"U ni@'S;V8|4x6[}<䣌x:Rx8iY͙#iglmy%ԓBj.H n=TOg';pʨбRjTDu 9nlc=(TC,BS!squ|W"?Qd!3 > QnD }eh8k@"q.8|~azGMJв/}1x-nGSe( ,e!uγp-ӭODQky2ͶwKfҔk!BiЌN# K-mn{#:ğ5pUchF=IqcA:x9-b3y13tILJ@ǃt ֵCQvg0<0 Y3kĒ}9֛p]*FbRCu?x_cc ti&e6m Ūux75[9`{3KY7LL71K+>1IlXZyiD'c9%#,|/[l/ødWԗ0O[ZbCY (^˲pIaFZTn1NhR7|xm5I;(BXR1doe,9} =rg&lBd< R]7 oNrj$q-na\P!AW6 (;YmA&H>!g\$oPZu$K)^ԅnOG XG?L:0>v{))KYǶހV}eϝ/:R,7ɩDWrR z8_n;O-Чx t-˒#y<𚫏"tC,Dʮ. \_S<,;wmHB|x?_&75lr7H KjB.{Yg>^Ncߦ\LhDkFmT\JMZD fF4fq.[/6^> 0GU|w݉ M<v]CIxN 027o%ß8betSG6=)Sm[Omp]SCEM9'q.@l#)!wY-̈\Q[%i>Bê:9hQ\n[Y8P-O؏GuWv96tLw lJXx`@tuOz׊Sb)I?kB h L?-ؑ 9:7T=  /+_8]V~}aw߃Hg}@JA15E?۟}pŮtFӘV&py{]7žN cI _>a/MQnq@~!" w*?ʮV|(yK:>QG+- !J,\A eO N-jJÑ!xDN]FQݩb2 czNM_<)/G՚ Zyyl]' @c.43S) {ːH[ $aΪLWg1# NZFuəx( |~; ZU3;4k#c*,N H/ T5Svg9 3/7h` L#O*"d«F4Ok2&!)h]<9zYc|zIlWR)c((\r9UN;hព7(l]<[7#[FN{ZT1Ȩ0o HօxldC, =/)J@ܱM!ta?DO`  eGԶԌ4ڰ]o8{EJlTL Uy.aq˿a-RЎłm[(=f׽I>de}Tć #iCJ#f*AK?Az|[̆@3osGP(KƾC]̈́N)a7͔Vd\T@3_01N wGG-DTLhW'鍛r鼀xZy V{aIW .ݞ;Um9|9e;f\yQ>J4:DQ/ ٰ9ݵ$ +95 @ݩa 0Oln֔,C&3p;~tqv@yn!oL+۩Q)\K/ Y0>H0 ,2^ س%+>+eRr!?Zy}o= *O ⶨ5~y7Ěc !]ah2; +$l 1HTB-QD'x;;p>]Dn`n7YƍDR`=b'C&x ʖUy4AaKS""0"I =0nd2 N]{ SN:CN<q wVbR:f&Vy( hr?P2`A4kߥ \v.^'k7uʹ`mگ%@˚ǘmTJkқ֠Yvq;ғB50n;Γc2k&49Ώ9EAdfo><|OK^|{'ڀ wۘ_bKrMEƶ)W!|UP31C^"=H$LWCr2_,1( w(u/{E ikZҠs@.Ad(t]tm)xFrL3xVl!Ӏ{t'rrP"p,Amݲ,/ aL^|^{~z|SO԰&}56@_vV# y12_dr8ŏEQ5e`DĖrxNk@ >6k.JΞ\iU02.c>]?`OTgXD~+seMC]F[ɷ7E~:( b~#Hoݴl\aOwѡV6:X%õ__b6R9S5 $ ٽ ]?}C IQ8 ["yvvwWw'VCgUKZ xчJ;Vl ۃ(ޚ{ ^flP"7(LQFrPO1ä)g`2)Yky%:#J Uǯp8R tssE/f&A4M@mA rq~`GQw!$)/NvRk.W pYN߭>}םr/B,@}'uf B[_%(77MNBMsK5ۈ^.g4Xh7Zv vt1%˓JA%5ξin("5b3{mlP[}|f|zYsHi*Qsw4ą}rm1 9ҦjG׏ōAa"Ns06up+tC8mfΟ&!bX= 9dR)L3Q;r9|)tA`&n@՞Ϛ_ʃ tA,Pӭ⸠<^P/|\PEH"RFPɹ,O9r/q_pBdlw, >-WZJǭ1vkAzѓx;ʶ=` @l^'~bZIkUwфڔ)i"Xǫch&bjNE|}|=~cͲ@ 0hJ(}0/ᬼaB|&[@1TxeKwL#63+;94w3'sKʐ\ E,j-(Aƥ^l}تG|H;U}8e?ͯ 3 }UqnJwJ\/uEcEtm6: 5/xd;[c xC5l Y)xKeHbc,qd$UD*&t fJ:f$DpASv;opqYk?G !be *S7=i7K@PL4.}"*⟫=LcITyv؃ Ww$W;2h}1=2C@Bwd'NYly h}ԾKF3 ]3W~&^T2LI8Ӡ_Gv;jjJ r.<Ngp-Ϡ^KfƝ048dCE%[E=($}5 NKrM@&CK" 6|k  Oq;{JfMf;{j#??Η;Z}ۿĜ^sw_+Q+ iiiB'9* ƩV)8&H.^gH0cm]yD(Q]<_K7|gB@Cӗht-W10)5 #!uҼ.M\8(=l{͓,i!/WuGS38PK>E| ]*"$ZɭX1It+LU&c!@^o _4-0BcJ R*D+[% kx;N"|zʄTZ(q=4i#ڱԎU8/ [#lW/;sz.v?-THbPv'yC\A/ c nqKj@z?/z(߭$+IR{S!#vZiN]Fщ*C뷊V z恙eQrq#R;7?-0;0uuS&w }mg|+g1QLeWU,yo}.4$;=[t !Ŕ6tr^9[Vzm[~4Oetvj68ח]љY _eu@5*n)t"c1 N6_RwբZq?h +ʫq/[So_‹F/R䌒5jd¬ءo^,&!4 _9 ~ܖIZ^1@W YF@ڻrD*!D&EЉ?oW*%y7(y[I+Z5}dĦ!PVqʨ"3z&L#G#q+lew_ =Dr}kQKTŀwN'uI?=O꙰ d jahd,' 2zn35FNK۠%D[4DʜMb˥NVX#d~X1os)"".>]X47<緓 k~60TjX¤C 91l([#7ڹ /:iG !3+`$Ua) pU d&OKD% ?7MG:74l~C:.%u{ .XcEdI}5iٹ > ! /%YuwcJ6SKI#^jjNR0 eJwᏺVln[bbiAǛ96iw_ɵf y`GEoC| Մv`, .Zp:K_9PA@0fJ.pлcd.UFL/ORUGGQތLƞʅ1ciN~Lwf5ǭ?+׷o-xVq 9܈ RT;x̴ Xd'mF 2f$ƗLY-K @!V{NQAjPTE;kWtwp:ſ1;rjEi^e2\œk!2_8;f)+-9-)ǭw%~),A|PN~{⡷H]˷*K(FY4p"nv>{!@̽b,*B u$G:тߋ$xnn >{){vokNI:A]@w%xWdzxN*hzbkbuNw$LGF93#\Xzv&Ug3Qu5v TyOEm4qiF\^E4ע#LJGu??II* 'Z;I!aZV:c~ E1T-q4F*{%VZIc. X8<22EAK%őʪEm+uA^ErZŭ9URᜅ/>rb}RAi1= θK0'pqٙ'F"uM9wV w# 0-8֑Fj@z*I0\ 4A 3|}FLlV W";Uj}G5=cyOZ ?g? %8hRE#0<lQ-vH1X>+!.~=@}!?eB(Kdx5ElbiX/c̲PpM(a ]d "3!{h,q dxxZ6DҭӍ8Q#Piox$*&) ؜v4N~3!=v*.7u4q?{Ȑ~Qߠ8m`v$~d6L0͛J!9u QXuJG_ݚMGkms>s.-(Ʋ.&ξz{ng8z݅$S`WC@)-lh|h[ٶէᵰr{oJ5FD?Rc]UUq{l7BK $XJ0uۈS΍JX+.B$qy_qGѳ.ĖFU/(Vt:[R aߥi_;BW20khœ<~6O N8pvT\:A6/cxxdGĠ{MbT_SdT'{ (ΦD 6R3B#rJBY`S)$8=x<ٴE6jCkP韥^w"u$@d)l^ut~;`9MtIk75_"{(BHw|FEI0M 7&|F F>f s:L+`ˮ/3: gdmtgD\<}l;@̏) 6|Y^ڄ))=mFV&v?m11ERR^0ʟ @Gytƺvu&kC Dž E>Y U N$t)O!.l$?!`JsRFpXmx"yQ4[? J4k--g;9u`4#MM^yzy}*NpA:]瓾_i.e )\}>1j6J'M#DZb G.H۰o!4s'B5S}qLRl#.ӿ5m]N" 6[/ei)=SCj-s$з$OR!vCږNeLYg m[;'VʵuC1U:KWwoƄb4Y_^zO.u`(;h[ W}ze5s`a?RF)[*jBzV `>LJiT 2B'H&&]T,+Ї7b ;'-hu )t舂MosPvT>՜b̑ UK]b׻ \$nV'yQΨqҔtz x;PZWh{f6.!C$t;ܺәǺRݜC09@z!K:|DqPR3|HNfv1(5Maא~c9.{|^H|ST-AP"jTrLTU~ tA] 9R6R-h՘em4|HӒm .M*0[*̯D;t2jHˑp3,ړ8_6"DМ dUY<&j h%Q{4*HlGȯ.zm %=0߻!܏4;7C@4A13ZպYςEtW?RC`,a7\rUg>IOBs1wJWN)W 351=ߝ15zf<*1G9HtJ3zՋ6tJ ]YJ7yz5`/in. + 䜹'fY&}z_J<\ovht[+Eۈ|?rKm^ F-5\QRHd8<Ni/їG/i@u!Gx-"L3>7\jp(KϰL(}9{>z`N6y ݭc+t=d.s:^IzR#=)ho&a4K_6*w(֤](Mr%W'_o蠐aDɞ0LL) _76vqP :oDw1^㝙d||pҜ3FUmjcR`3陫m$ #ñ*606\@gM(*qIJf=(s^]v&jKD#ݖw/c oy b8Sra;do<͠AH_'VTPZl -wlv45CmΛ?Wd}:+|Hmj`VO@d(]X*33έCH'|}u3R TA_K5>?h2EXu&G}fAp11?|sT@Fهpݓlu>m X9xwЭ迦0]y0oCI Z ie5~\(ٿ "[;/R>c]W܊BɐJYs<Bg49;Jgɐx #YâۓojmdcZфw >pB n%f]T-cXK$}65<";h .a3[{&t* %aǐ<5naā\|`i"DC&fG&ıkYtdU`y9:I3y{WhEC53u;]9'Ӊ!J|Z k~ؖ5)%ATj[Ne GV]"ϖ+RVP($F޾R^3ϜK$)0kY{tIG(]G,X"' B~bo  +>͑HYm^%r#e<2-407.ɭ\&m}2XBZ2\'UI`4C-!8ru7(G k)_]NOr[dk9%b}T!NL3^nvLnB`w !O㇗ }.ߝWTȱŝ"}UBAZS]c /IcYcPqw'#_u(rVu}KeXuX"II;gu}ҳmFzbbpwM2(yUqp>=F=$8%{GYk:sӱʜ\6 Hq}*`0DZ#>鈣QZ 3*`ws (LdP.I}BT9~NF& S r= |]Mp"&Σ(JIu`$-並u|v6_B0kϒPu`)MbkPѺj]#;_?y '3oa}# 3Q7[9ox/i@rs֏1*wdcOA!VnsZC@#c 6LyN1:ev13V5dh=srj,;$uuK2~Q# jjihЛ|a]\D5dDAW2J22na7N3}@c:^dc0>$>64|SSADrW$F>}oӳiM:CvKDe0 q) ]#I'̘UT1\|J{~b( ~K%Զ]ѵ*gD="k^A({8g*uǓˍ=eH"FU\fZr4t[~C)X7Y0Y 4cs%Qu| t?$\Q`>& Q*˃ЁLJ 7D,Ufla22"W A  3zӏp`h)+qvɱCۚh;)P-Jrsj3 ;v#:(<%PmJ% 78/w?i]#NS4SJK Ň@ΡW3ٛ}twDvMpbx}ґAnJqcG#;kI"QfL5?àA/qC@:"'8B:w$fK'4V^Ƶ1zdB]DFC)F,]sQX,  +LVJ %u#u} yhf#"ga/A-|h:T( 5ƛ,UrQڃJ`'g.b^㬄% |\'*n_PH98 n(}qqFn8ɝx\ܚ* #%>ci |f@ylk[e-ĈQqOP) N-+حOQcC2a!r[?ÖD1 d,[kdN+bl:>8%T,c6=i3aYF" hç`V&Y[찁ۗqc⯾Io?T-c}51E|*}sKaRBh&=WYCz% e=L3".|s姨ZfRkaяMVe aW$4j3-FF.7H!B|;#}-Wi k7X(XnD ӬoGkYPG5Ƙל=>t/(Ӡ3ob>l|9vf`2Cp4 UCؠSڱ]M޽*)k.|C5dMIW R9,R DwpyXv<]q"eдN(r:ƈ "_n/s WL;CZO.77hq wbq2t9A|xΘ#%є/N㊪%TWU#8#y}\GPߴAKg{aOӚ_e*bY@6ЋøloɧyV۷#X$-"Áűo0 ց2ڊ6Sd͝!8_'|Mc$n h@׋ /k݋ftЎT'X6m9a&aG/t-D,;ʳjTD0#{2_)x^7uݳ<{` lBã~l/+>.dp.h՗7xB틨5*oFe ;U6h&yѕÅD 0 PM|;J[ 2'W$8oұGT2|u< QGvLkbPȈimD[7%FxOiݿWq !)7T7d^O?y[bV@; B#o{IdBTM䉈W0Xqcflſy'tdZޢh?Y|ThEYC Վe$ PX,p?_/q„%B A e{6WG ^& Aʣy#Yg 28e9xrɩW d]ʜ ?̿+iM _/֕ Ve`B-%EK+*_;oj9w{[OD5΍f%ru?)'1RHg5G/zJcb1{@\lxECr1Rg\Zd!{ރyQ\6o8A8!x t6pϥ7Og_<¹2]s2 U>:^iVDE-(fƍw1iт05yʲ7^XwWfV8UL 85_D }iR yaM6Чw fp.>Mu,09PIkJ ^KX^;)! 7z_G2GmxdFOWpnd8ho2'b)bg+1˨4:kBT:a DFت%~sGãIrn{myʱԷ> jBU,gpvp!4&sWn&5-K 'Cڗg B޶>%D>* grg<&Ynȟ^, Y,}HWd<80'>S jy1]\u]ըE( yU`W7oxYMI?RS|$T> XtNZJrU4eؖHvZGw\Tdkht0;v`#5l{pOZ⮉Dw`Xeu`%0?RFWmJԋfS,L|CYŒB0"WP䜁ފUt|q2Ab8gbF ُK%dWif!ҶS(I^7`QnG^n|:*k!P! Wz+ k%ϐ(sw >UيxF[U<ِ;9 dw/*;SOCn\X&ԅ@stP?I}3<ѡD[^$ H)P^Dho2Cc\{y oXޥْk6% C vmF.P%žB-)p> FP13)8+y+9wKg9M {l>\^4ҬnxdMegㆽ:ܚ~//G;/?Y9~ڸd% RcV 'd;[ -RX01+eM?e =א8#m b@Ֆ}_,la\~M27k=d9wS\~!LmN >o%]XW^^^|bY}Ѣ;'W"Y]H7]o;VE.݇p, Al`!g5s\C˫֠VяßA3!cIBDib]Lz:ڦ/V(yJR7$R Ƿa 256=ǍaCNwυГOZDUި#U] J޶ySҌq9FRWiYtc?y3Qq}]|k>3624x>눕 Y˼wԺa.BW6@+Bw5_k(J D")Z=P7Jf;@#:6__;Ae$Kp3F t$k\Z1m^DU"q' v̙_oMMbDROխQb1|juT]<sgנ(M,XF4L]Rd _I>`7R%F+-'XaRFKoJdcHW sZW6KɐW*ݙb}K~SzSI4w=¡4#v*ʼmk;s/qι~O9q 0[;\ 6ґIpNi]RP;(eT>_%Ȥ;ٿ=; "m+L%˺FKIdl7}&9q7Zc@&z Vm$g(C+sDVa =Iu/R"^ѷevfy5+$8vXavY4U1꧰|2UBܝf(݊uYșkn_bRi?r i,ӥ\KͼXwy9V,J{!S_WfE^я] qNtChuK>ً82{~2έ%U*π%3e,V{gSu c륍10g8da*!(h[|ɇ)%LDCT;d2Eȷ KUGȾB6x R*6Aw8&eXMew;:ug&~oF|PcnlX!q܂1%46:]b,Ueݪ֛]|p9ohOTEc)B50*M*~(T"!!csMκ+eejJjw"u.puá<'iuT]%38zHeo|LsE:'^e͌Ȟ&G1r)©*U S4Ng BMB* I2a}EGf]4tx\p PN>L\ѼK7 i!zl/}%&S]*Wb 1t9 Ӥ4{g @6ic<%ƥ?xFRRba ʽI.o/MA@,O}^Ud3Gٟf~`?AyyЧw!B>L/63Hh ܑdOLvu-бLޣ4E\)76ZX<;g8#fFxJ>bՊ HOw('wѓASc`ҏ񁕙h=$><-2IznurQ̥ig\z0Aj~_L5hvKZ? x[ViIB>ك'!ܟoZ*Jr-6^\ 9.~33=Cvso-WdENk6L{gUs-fr 0ϪL x?fhWE?iEOY3@P?ۀά=c/HnϛB"h)wI  cNΡ_h6]N]o}"2q1ce͎ҵ VLUzy8=o55}SkfΪހFWB#]0OMVa=]tΒ#>ᅋ`}G)s^|K?Kxnϗ +M<`v%A=@9:!h"r"= 8+%'VLڒ?˾z-쾈"l[H[E/14xš>E/jÇ?Iv,v%D8o{KNYd01vӠ!A^1TLG)mm=L8V\*=2wL  /pccz&3$7QcH߹ַCWkYV E :l*:j#ࠠ2e XT'[?yw l(Ĝu~ {CNl''%4wƈcozlPl3%1_ۙ QN\blS?@1 RxSB? R;X>Y;5FDR>Z*oW9zX8ֹjh%eky@ݔyi7_pOe#bBNt@~GU$.459jvX} ,Ze\%>+iaifi]cDl-J_8A|.Ry|-TfKq `Schn53j'IFxYa | Ț yjlǚBvw˾hhA'a6T-9X*a1  m߰G۠!s3,#]v^T2Y3-Ţ`RRMg<4G!S$U]2%|SnDcPžI. ev/ Cv#R~w^A`E-_-Z cB.'TM9 Fu݀)[.R{5#pNNdy-i lNv]Z絙d߶A럹+aۆfcNZ6PS_Y_ @_\qxsij{pC&^Cl q u;h,Nqv9=qj W"; Ims H_qly =|]7pw 5AID &憌 &-uC +0V/iSh .[Yi+_Vx j9[? W%Po#I=fHkV r#,_6{Yf;~4C ƅO\$p*㣳u*//Vݖɽjڍ"p'z%Yӳ8Z chT͉2:~5XzkNȘ OzzHyM>Gr\yvqˆzWPYHBFPYg TMD& #$%e~}ͻD]&!fZׯxROk*$}aWh߆xberlz$|il/8)R5>Mi.R,X>,SSW1K_<}koD}OcJI.2yjaLLt9]|-aXHɇ,b(Au@}E 6A*= Ν،d-DСSqn:B>חtMxm#rÀ`My@6"\pңm8)LFI$ztD !݋;ɵ$NA ߀ FӇ?z*/ΏA{P1|36X 2[ghk(ZCм ~p6IS.]VμUv7ȼ#wvҭ8c|4B?ivRT@^qW8ڱ(Ւr$}ħ"o.쫈cJP^:/;vi\vA|oic#]tf h ;. =.DyD) ET=jp#M[cA}ӯA εyzksKfvW[`pEB4{yA߰6=9i.畷l4A=7vэ7'V@ҳHnڢ>H_&o@?fSƶJ̣pKdTUn k [9?Hxc kY riPfSdV?xx_iC8o<_<}zBڑMѺVCO(0016P(OYLL눅i 1HLJ_Oyyn4|o+#p59rvHf:7ea)7bBL{n;r<@|q?4L(O!5y`P6)nCԃPbn#h/ 06( #J|Ib+YGȉ{KKs !>~T YVKL:fbq; Zw dMqN#HeTS@mx|" Η\F*'LSVJHuGGY 7_r|vzafI愊^@:A`Wi6 $r/1<\?053ImިQO7·7{Ȇd6r~J0 $'xZl.$s l.=\/Z-& K%!/ͨPW^?$OF"v䒜fP&:RUìlcPl 9QD/ px>T偫%EuRdeꤚfRX35$*gH79] E=^^!v=z6na+``L7 `/C/iaIFM;i#(ꐧc-J-ݯAËR6QHM/O}r]&93KmGݙ pޥx:N^u[n[󡍬7Xe<`&ջ.g(aSr8쓫_V3,I`r䮞 ,m%\))YGE|>k%ɽG f 0C)hXtar0//ۚky,Wau[l"#%~?~W"*-g34ۥ0 .&үV\%Tuu@IxКF~Y~C۪pFuK!n.phTWkp.c#^bQHȮJ9 '?S>gO(;xG$Vc@hpnw1^!b|3|]&f8jg4OCݎkAӛ7p-O/7V2|6%E-{YYqӛg\jdR]r5m+r$8̔ 5BIʌ!T}]psTrA'݇/"،܈ʧI;1qqtsuPt7"I.6|?sAk?mfpM9sP~$ bs[~t⠊湧xLkeqۍ:>Q>)`U rqAI)_)8D'<'')ǭ))L 6[A0yZ7VJ2眎bgzM#sY thFGlFqg(W=eCЅB4rWexx`, >/cb ,Henoသ+a^]mG  R. +!#P=pvh#Olǥ/&vf~b$O PVy}l ޘ>72-̹BV?mjb(4Q=KFftꥣǨ =/͘{!LJDϭ`0gJC~"lA6=oKyZzt_Tװ1;ڂkԈr{=S<CU< /}I8+Ž79Rd+3t^vtV𲎠v Q E'ͺwD[6wW6T$!U @纎s*&eOdp$\ eMz ~? ;T(Uo7J=GmGC2 {yV'VrVNLF|XqWiS &:8o<֍Z;#;LeA AH'/B}ǛTd+S TYP6tG}*@?_A+_:F7\oƭl@L}_/b#A0R?IQ)2,d'\|'4{9)2@xF_C̶N(hsSY=fLyzU;hQO:yBn cx]P8ݴ:CXz8 ) hK>סbT\?(={0NsӝG T  /͹bWc qnQ[qReP~wDъL(5j}Ae5U)&Ex ~[ L l_JsWvWSHS7t&.V"RpH]L{! s`&Ul:Tn#) 쳋̺jRO 1rӠ.рf-Ke6ČB dёQz;?ܻ#>Rqh^|pv=H+Jg0e ƹӏژ`Cs0: /gYsZn~@֠/jp4wqqaˆ"$ zL(l只,Ȳr?E݁jZ5N}T(,oc4'Aag lV^[cE-ŝD !v6SWhs)-|TZ^AEx'֭jGWL{ς7›iqyb7IO1@'I\Fd*[凐$~;,!uBzǘK9m?lV8=gkNP%,L_CVg{7VXq9$k'm&dbzW!vFV^BȹgsGDį=K,d˨>b[a-ͨDRDӢLGh ı;2g?+2\`[Δՠ0G Z[14:ԞpvY̥=EuCMX9T-iCGwz uB]'4aZ3@m)T'7K4YB1\߯4[nQ'O- W0]vEٞ*48:s4sܻ{&(-Uɽɤ,?[hΥonbEvK ޼ĜS_|/!Id:7. k? {jA.kZ81b;#-oA41uOigfm(3vN6s50+=~\8|$Õ0/Z[kx!˛]8\Gh`}OOsa98L.Qm;oFO\.+2d$::'/"ހ,ZeZV䮻dg;PC-(މ\&ޡ?#I~LjP!h>=m=7N[Œ}Do PWF6GL:u/{95;KPAHm]O<$p@ `ˤ,Շ6y;S;`0wk)'Qm&ަ>^>~Mob~e}/JOZPfS& >a I~w>zwz M yg|czdcY(ۈs)hW W҆XU#x9<bF O t z\tw)jU/h(UL,-h?!d'S%ȵ>j\\Gj j<{ʄҴ_RSƟEIj#f36)&Sbk(!"h/f:a9+Y鱃13qrt FwQs'ԨL7G1vyDt6wK ɿwu(ʮ}" ۣBv5~]Tg,)0Hۯlߔ'8OsE,>r|D>\i ~ ߱o46t|@5f?~xc r(P:ɺӾq)X9:"w%YokAvU0kU7s2 z}pF 'wewj?O0G{%$ԕdAL}x)$0ڢ) N$PJlB:LK5FU˚V,rEݝ֗r偅ze8AOfȌYApuQy32ɶXM ~Bk;'KpoؖPlG⌸.yf#7F÷"z (v&Q9N)`UW"f~Ng@{tN{[3ZX#LC(iFE͎ '49ޛΩ X4ϛG(FJu5ҔG)\Ss?IlU=80@EϞ5vMs dWh7Y'5< 9)'aK7ۆ@ةӰ]jbT~טMR4+Tʋ 拪e&sJON}D+;[m FE? ˙Knm?FZ|yrgb?uy+Pfs#&A5YQ;8`gǴ8`*HTr+mx%:"'vëڠoTA 6"&AbSQ юm.NI6;Ov5HX3EOvpksCM}uEa4-Ϋ>ęuĉJuCeב a Vѱm-WقsLe_y )o/!3. =7C,Mw%o3A(䦦T]vI ,<&OFV٭ܨ|v |tW v5Q` bW#A&ua?,A9nËK{o%q -[WxߋZ2(=S';vfI ǖ {9@r Ո]t ض%ko!??4#(SIkmk ݦ#cJH(^G~j2N ee-d->mB,xF74؁)J͹$sSuaw"0A9S1+2X4Srbm fU9yprWwCr*6\/|ʟY \EmO)`n U"-c4VЄ\656>2mQ-q&w90Rdt=y-Rx냚4A`Zbmt։3- i̔]#K3Wb%5f\#T(BSk.E| M8`DO~IB|!|K+#-ֽM?Hb4m&q0 Qٝ9l4tF(wA²PA Xb-RSɀ<F mhYpr:2Q?|H:WV/'_@"ffU O򈲤2 I^#qAҥ~JW{%.n` g`o Z7.? ɵ ]y;uLMmᑋVZg{>,!HVihKU7GK1{i%Bf1^VAnh!fV n2gKFUHRIs^!m'Ƙ!O~s-TЫP&.5*~(Jfl25UQ;P8^JE'Vg AQeV alڔ=jm1"878ߒUo#pu2Unϊ\PagwI/)/)?wv۱ZVuY+ +kU 5E}xb#EgUՁ nigh>p.D;U]Rh{;U]G+a)HJ9in}oN%=^ ̫#}ZWym&V맪G3Jz`owV`A dW d]^H'Hܱus_Iܳ̚ _O*al[Z5`aڳRQZ FvF[iuoc>9H"C|x <\Aqq [)a9(AD:K$CWa+Zqeli#-`*,i(߃qԗ&{s5f)zp?6dA$UH ܏Ⱥ2sRa;ܜUv9$JvplF[D%0=iO,9r$_IV]Q5봬( )U'jP*J|[%B|fx9iY)Cuhz}|#~\2ktOb(? :?琄;3[LZm’I*+"^cq(T$#Jv/lr8D6Dhĵ;YO=3 BUƦ Nq4"%q m`pH; )\ ugǍ.SeERA xDmla/q}};,23EL *IJ8sO)1ruB29ITU_ YooM0mGI"Gcwۮ$315dP@J5YCfF%Yfqܕ4cdB(~-g{/eL^ v̐;U:]_6$ % Rc%sXs_f/ 52hA^iէ!oĀ ,*+^bwj!t4'7-n(S.-_.t{{0|[N V@#HDg_}2za[[4Z[1,u&".*ċ0 \ he Ōvk^s5Q4}%4)iHJSс9F2p5VS5U|n}hٕ@{?fy=-o4"'2y;X΍Hj\i+u gy#glCӐDX5UӹY~B=cXe+vZ'AIov,чk( *JPsNSgG'} aupN *HwN,{Kz:AltS3uwl O=DQLytQS =uߡ@7 &*7fӶ1\pk:(XdnM꟯9Ygﰂ:X֊b&ln3JD(u^ڒ&볃o/e۹ @dWokyb?}8eg0 枿"{޵c imf.QZh=r'Ε}S9߽NCSWO ?ԥdbj0r L\<&Ǻq]-Eٖ: Pt# vJY!Ūn6&(~T_aŨ=ZpP!sO }+ QGS̫TQͩ͜e~>-o$$ʾ@ &RKB5s0Ϣƭ+gG.'GiqTϥ9 HyɁ`D/&`4X.k8`N􍄣Ry%\nCs\*.Чu5ĪJdF^)k[2AGv=!_g n9)#f!M\E"Â|m򳙝مJͮ\ʇwW&~~J>֏tgIr~v$ԑqI Ǒ=xӭtn00"GZF=0F5t% x]Hg<֒mmp4qSCpJ*"5~gCP h~4D,"&i὚N9!bֈ'vwy^;w@钑=P"lz(d%f7NNa9W܈ ߜW n^* ~ATo/y周;c:&Axê7c7+ rɘwPg߶_bq2P'\ПSDhMҕ.oʑXGQ>+SsN 6zрXpj4rB@9s Xf& D Hr>J!:Š)T,m"4\|!w/##m%I8IjtpPZ-ugpE j0-)Ymݚ@4pL _vmb]O;f9o, MHQ ޻]vі'_iϙM_ xf5+ 4}&M82BBBENBPʉ!ҟMH HxP0NV(6jxyC`DmTwlZڢIS _:ɞ|1 A prFCAz|{v'kW]|$djZϊ__yXj04'\ fAӭř/j>^?$}LW'JeOvăEKB ]rU3%>MǪD-Z n݊&{@sr^.j/I/6Cqy7h@Dx 8yZʄUȍeBcGcHqC^GLrzd{GGɏg|"I`cUut9d\)RDx{Oکq)Ѻ Sr`b2A.8 &B JWHb"FwM/NU#=_xRM-B7c1L_j%Be(W߿y`l?=d<1tYW-^ڨaAЫn \tCc{3nW |ϔybfju+z$n2tꭺT/āY?Gb܍c]ns-SL Rߡ>ߢ}S`Eϫ5S@jM -5ի3MƁ,2侔|Ej'|b #ǗxȂO'jB05 #Wh_hkXqNt?[_ߔ"oy#JRn>:9SL!.*Ӏc8uYNJ ySQBi(Jrޖu% 8涇]1.W4~θ\T~kz%k;3X͈Z{`rve3pqcկ„pmQd5%0MA tqvɲs4! 4荸Ar߳ A,vU"{ rbZ-^y.mṭzDx^>eiBR X^ŏsleO=(gcF*Vr]gߥbrwsOu $mঅ|4~?GPxW/CrX,E&G*.> LcPn7{JDk@@>Z6zyPwHEn9g*0aĎKG)t´ g+ӭ ;Go⩾H-?롎a:svBȣ7s*yżY:Y]hCf3Э!νK\V]t3WfMO 3x}W+V?NFyC&_"`2#2b<HMڵ u*eϦjl f^&oj# s4NqA_{>qǗK_,--0)l#ܑXN] VrmH/ép _%$; f|vHkȼ~$h" z(XՅ@QR ab` U8*^v :gك= ) AeOZoŋF8@/.P??\NrFJba[u<_K+r6 -c7ITֿX 7e튭W#(Jr?'OQd'T< J3HL(TC<235DԉR񳳷6W_[yeTHi翁?՗)k6/m`R{ԤIa0Y@AMV7@ж$DzCp6 fK>/i %$s5XO2??]j`%ǹQfsI+ՀbǣBN:"2&x{P]]mteU h rϐ|p9>rӱy3*&CO皿C' }e%4ƮfVx#Gg~4^8^lz2#rg=Xyzdy\l)rrxVxLh^H\˘׾dQL/8F]u\Қ,JdbByvmYAZD]gƥ~.6kY$Lw Fj~zaC(ιfgСjC^1? Z\{yl<F%'56]_vp74M- Y&εmڙNi, ?=д[׼ Gy%@i}I}Ցt5Bm<)^ *҆`Z\u]NPNNϊ46J#t5I)o\Lhʰ-7ƙLNnz]1-^jfLR;DeMEI-te7FU0ti<Kh+!P& {N'[G8QS!_eQ9.Uga> B!6c6X:QJjKw| ޯ|0:0^c\4"F욢 @J@oE٤jsu'͝nO8>_!ʝR`xOyz|c7 Lf_gSm?}lS,,uTpVil<J:ӟxՐFu:)O. ~EU%eTyL*p$w.b\.iP.h@! p/pwㅷ5c!!)4(aD@rVE9JjzExօI>1ha+ 58ˊNHVd8E;t@Nq堘W⧂pƾ%P]LgD&$p8T%RhNAJ$)gVsABj]h_gf"}1'ޜb)O$8}yϱ8*A٪TԤĂ7#(w4?<nmsE ;dؙ}["Q*5hQ/Ѣ!o+ @IbL -;"`շ_k3tEnS,+W9Rڨ4B&s z|\v#CHy þMS(u|Fq[fG㚪U8$B)=?9jܥU _MIZh8L3 5:)O8t;p{'~mćs+NNƌup@&EdNHcXo,XchM8s@ T4~)fcuc4{\~L;|M8=uA%\q< qc0zG%  4DL6PswpXeR jlEͳ .ʴF!SJSiT@Z ->u.L|b˛,Y D(d'("sSMS'}Pp,S-1RtKplj[Ci}T);V Q.7dV Gɝ:qgH3ǓgQCsJuw $s_NT*b,$sIꞃrnlȵ%K-#4't$5_MߌbcZOJVšRm,U&SoKMIZøjI0D V{jL@@:%ImnE3xp%P";XOk δˋ~H_ T_/{ofz,*\ Yb45ZbɫN[;Emk$ҭLJ΍9TnM {fT$-}g\ym|dQ3Z"yD4r1r5&4uRsV>3z8:zmUTY$?C`Si6jف>'R% ^bp7U!`2B6kR2+@tC,`L9OL~*M Aگ90!5K/5ePGBt]V`r`n\#N^X2(^rWM,=qŞqN(Zf:')![kŠٴi_-̧,ΪTĜ vc6,r9w:)[l7/{~CkxamC vlD [O(Sd{؟g񧼰גÕ 4tK8y&R o +{[޷c'ǿB+\yo]m:FXZv '-hO_K/(ff D?mvܻ֓Yau~ȤTcpz8^Q<2Vx"ՀLwoy%`D`"YKjHj#Cp$o&ڴ$F+8xh_;<ԕ0md,eHh{#$!V(#9Z䏥t\fgDh[)خ7F[l`?Q`"n,НHdB O7U " !VcdP\5'CgeK"!6VȌE_VVtEHOpaH6%;1#q[Y7Uf!FSID=d@gʜi^1Gٯ"E`ܩ;܉$c }V)jǍVF~Ҍ)Cn>fzJRR\.O%!2u6qHLQ+]U#0x`d"Nճ\iҼ ,]n/&+?>=1o5bp0=W=sOuhR3V9eðH҆Ц׹D>7:rS><8ɵeAJԷ%>))O8VE ձS "15>%v/Z/b8b++Nճz Q#,fuVO/1 W{`ttÉ3kU^ŧK3,RzkHEK!.1]ai6e\?5HoROj}_U|%u *A/WL}8<=I I}e|hk Lݖ|;LU _aVzf'{ԣCjȽVCBȉAZq d.x>&͖Bn!j6ŸZTdsh ЂgK^_NRr961Jj!ԯt/T4J/iR dak9᜶+&TNI=߻}ׄXht A-ٶtա"QV9o oZPĽe`8y <+S2ypq0:-N Kgn9h{<^[@wVFy3FM:Xrs.DOZk _'2J](Q3NU򨜇b)_q-†xxad|xBJ\΅W ]fJΓT.!]k;9ysO,+>RJ jrJ|rY*A=WvKX_ \Y8y#q1"moܷAk@h!wCpO1\Ů" oy@O_qd-"'V%5ƱjYR?H8F?5 wS*)Hwx -F!ڦ RNIRC}qQz+̹Ӯ-mઽMD xK;fx%%%# `-K]l z#i'y%\e]"eF=&Q>wΜq6H ULb/]e2TIĚdQ$bwy8]Dzw4Dz"6Wޟ -M.FY7[2?XsMw~j-ˬ-JbwK?vV'-ziY1* u,SM:ӗM9wcw}`:A\>`n|:aZ _じrm n%AdeI)AY8>8VJE=ATɒkOEQ >a>Wf&B*qѹw&,P֋UVQ(oL'QDX}mtg@aDja¢*ִ|jYDQ9a",65./L6NaEF5ޅկlWM}99BU47? 6@h<.krvHzK (yK3hb(aOS)ocn"slwB!r)k4^`o/'瓗^, ̎u cw>cv1]*Y$RP&2ٛu\s.B) 't8+f 9H>TF"Z55m4E;[ RIOjdm8@lRF[c!ZYڤ*[21Mu +*Yۮ1Ryֶ;iL%4<&ص8Ě;DRn|T6̬Vˋt @Zsb\&8y؞r5$k/*fY82HR@+țzf h-жbB0A~JwSe6cyg!ligU4ۀ 5c@mdV{l^ Q(4 ;hk-Žm kuèh0倣=8Ӷd#|Nanl0aGp4sp?.cnJ[a6S%~<,#wј4N%#v*? %"sS9ӆ:@ f K@F:)tEJbK`Jt`;\R!x^$*&8=nl>Էm"v'}5@vzUEK߈ :8eԓ""M IH@h>ew;Rݟe}V랃 :+*^B}BYć*p>͞ Z3 \J1Y }D6&cAџF?ˇ)f^_?YQB!ZS[b\hw+T2FlEw-&a7n#.%ip?RGtTA4ĿZlcz~%ArΒ.4:|称˲SdE 8=M(D_MYZFް3xh[6ҷAS;?&f[ "4/^*:Xۇ۱4a"8fpNc.`VA':#99\ eVKXY K'bh d@%gtvv-"Ci^[jȿͷWJ"4Tn48mt&[cd/uq#~ ¡btH6  *ErjtF0:/iBo]L UÜStD;5A ƌEXhuhR%szйWa4X{d_z| 3S{@䇫{%g!IZHZӟ'5ZMCrRzCg$H e`pj4RmqԓOC>V̀|0NRdkam&JC]Ėp ۮk_/qi@aLTQY,B;1AQ?,h4& Rl$5|E}(2ygϵN(i Vb?r ߀F= Q,>pыI1D;π Ƨ#YݳT%f}'94u`%qW~'@-&{fB&ZU>AOG3Df}Hkxڝy'o(׺F]^l_NH\' ⪺Y`ΌQ_tp4\w7 &s]>8dEGMKVd3NИl+W@/lVWL]Aհ~4I|}ܫb$T@~n@mU%]gK]b1?{(VOoR" {]~L?+7L]E&7gnoaW[;<HHx[܇;[<;wyP */)PwnzIl"}bjM90F7AZ}Xk+#1\卆ݨOpd% )5D)k@y:|5zx_&PzOkZCmV8{, (ʥpdu Wf4:9'Hм%ȕO,~7&0=0i A $6YOz0&Em[ aI=Tԁ0HBщqR`~#Us; l UcH~6"P*# $rIx*Yuua)fQp=0wy>9D8ylgKh$Z{U4+^pT].a%b5cƍ2|pgsW"n"U 7)׶eӊNןU:HvY}VW'B`~?*Xo"{ J_>+t? -"?LN]&2B%VG,э\\RLlzpVް^탊^4)fCiH} DHU%P\f DķH+94 'bP>1a2ު"/FD^0@1]_b,Hm3 =?sWQg )$,[am6C:0[nP,'XA1as psuf3+֒(@6{=SugY[1tjkNi$=_)V:YIyx8,Hy^[Po.և]}< m ^KT k02B g*O1Q_v]#Lè Cn$~cƘfi-ԭuk7E7h3R}IlvA~|y~ 2->1<"U\ICxGsWM!(}. yFjQ^uGeݺ@Okj砒G+D!.cHwl:+cmk^J:Y \ }z;Jkgǵz>Z-C'Y{y` 98*ߝoDEK%1\'o*`WJP2% hGad)f]IB@)b T;/Ʋ>iUYtTnc\*+@Vx a%|- ˟MHHN͠x` ҥ~vz -)R'shOF8S7*yI+8mL ˶^Hh< O+bY8D᧪m9N.R\?9`i.mP>CwH:} K0tAdn ]){"Kjh${D{XmODzpkm Hd&_BOE0R}ben}̱I@g_8o(1B +Q7C|$Uu͡Р>/ʩMJQfgcLk'!!„޻D1+;ɃBjЫ"ymbβ▮ozKH>BztQ60s䌸D+;T]n kFgREcsym٨$YI=,'' `CXPS :2w\`߇@ N],+5ᑅ >!NuOfo3F J ֟;5cs\0&BG1-.eΠtL4Sr*s_K2W!>6"fZ@mMUԳ5 O^W&^# 8XOlBNg:HkNoyKmL$q ´걕Ȕ Z8i.Afoڲ$n|$D40jmu) ^\3=S@qz[1+q*mje,A걦*:ČF0[?a 92lQ '99q-+~׫!׮^偸?n[~-0p6.ӖΡ.3U{E%kX')%C 6MnqeTl1)4/SV~m/*e2P  ~N9}\P3A|+8D8€֝n0Cqr o}Iެ$І1`L)^r(844sj@k6܀ոub(݂#s @~{! U 9@]2G@{'8h_:`?gĄCBcRl?ۤS0:a{$ة}Y 'I: bbNx9o1r }(ˤ_p2*z@1}QRb!Zh[*Ԅn#HX=9$7GjB3/sZpg)TK9I][峇vpUh&b Q}HB4ڗȁFuzT}Uֽ>{'1VsW{2Gdc>At_Ufp5Su#ZXZYUY!>uyhȂh;J2hߢ c>@b˙@RSlg'p2F5ʩ֝ihD2hDoل(%9[gm5rN^3YB)5K#Gײke~e^DHw70뷎^L;kV&D6۞l0Utš^X9۪5܋5֟T5XsUB )3}hǿ > >."+n e٣?ڶjOw歾/q20-N{u}Q4\)@iWQ|**p,A8w20]ul\B B1)va.0 L9 -Ճ&UG-gs t"L1&ZA݋4KMgf-?zҋPs )$IwwO5hB44Xc\4N~+ZvFȸ|YJ.-zQ]Pdx"kQgwn`PVR =0 }p*H~y:|+tom>ִl?g&q^O"!?eQn M3.ٸaX&Ӯ/l Nܦ$II VV!kOB_0w!.x>WIݏn0g\$MWK"HÄaY >Do:/d]EPqaۚinE5x{>|ly<$1{h p/]lP~LJ~E5p1luays7HS=sFKG nC`cٴv0lon]I//&|3h c %* 6^ 1.p+c!01'|\3k*u kȮ%8q_>[n]2sԾih=K4oCzrUIcy| vH)+LdRZVOЦӊ$+ޤ6;jfW5{Y^r(.Tm8AС+WC pWLBY+ձdBYнz'P=G*&Mzlgpݫ9?ƈmgsMWJX5# !θ%CԷ"1AkHcGNGv{uN/dFLD+~Mbθ=%IW Un}M/HxoޗKᬂaƺ.HvV↉34BQɔ7E0jCV3PNWNP9OZ'J('ތ'6Y5;܉%'f[Ն_sFNAWF͜K|靆'=΀Nj {Iʆc4f,Hg!bi.7 zjW4#|pxuꍙDH._NTs:>/6W3vvC&;Zs-gIn-):& 7{JY%JG9rZaiH@t0ivI;;YDt_ k*:V{u)@i Fx^FZ1xX3ɭ'-曆{bԛͩ 'zB~ yE*2˽BͯZ-s^:o.Qck.ɐhQ'Ig}T6$T4@(LbZJܫk1Pc/-Y1<'ުϗ!kL&VtcL4O`LYCxƮ+G8Qҵ*\SJd@F¶9gTwt^R淨/Œ+ B9wy$S\M_/Q< ؜-Gx*V zovGU F˙Ab\]т֒;ۋ;ET1>D6D ){<-cs`^ik#ipNװ1sK6Cd6WcQ偡8#Ϝ~,^l//Fl34L$$'! JteDF@%˾2;{rFgTe!a=o`g&acy k?23'hr2~ޥE+  ܳ70tRm}W)S_-Rf"Ś1~MĸzlFR i5KJK0BiAM@D$.AOiL'r "J X]uO^ӬS~A1I;|\I97[4UܵAB{5E{[OX %ݮ(#3.{s9C *乯Dڐ1RRHLlaJa1Jqռ&Ѽa(*hLRHo(BEUpD3|]6 q!p"jbJTƌḦ/İeBH$yRp8ՅZ(D6Y &B T#[Iٙ?]<i~uTo5-l8dn hF٧ÓL8`fX-NyKD(`(8Y-#]E_q# ?^AD~ :QuOM?L>@ -8UM՞ƭ#Mj R ^lB(E<;ӑv\Ty< f8#:Pvh9/`ٌitLPhW@}%KN:FbujɵC6:KK7 |H}] P!"zI'\%*?O_~#sVh0/VyJ$k~9u;>Ҟ):w]уO،ܸA@'ҍ(qBal#,ט`)?xr3a^e41hM8iSʺT_V-Cr0 bk즳<{QЏU=7 @Ji.z,ى)7 S&F GlG9F_@I-X@\^RUa@b!,Xfl=cKQI~9ە"yDr-m%?H(` \Tp! tmEGP 7C+,֖;0p )kՌT}$(<MOxhЫ!3d m/Q%ji(frT x5%0^|QVXc7$)Gp_8Lѩ9d]Th@96q`-0?[lTx ;6ie^G\I88_Lt wS9d@+tҟvT֖s*Eꆩ WLTڡy`")N%n-UZ,.ZA :qUgE #qKU[=EzdzFʵViH?Sŀ@>z5:Ά/~~IWK`h67!Qn"E0 Bvnq:qRU࿫MB[Jfd ):Pr^I'f},K0{5J[TzPFŭ rcX*Mςp'0"I/Wþ:nj% u650W|0.m/ⓙN8`W5['~I-*G2*;1jFf1)8 qtd/ߦ;r檂C/NAԷ|t_ڝ.OOk Ƴ [d .wD7"$aK*J"$qPFK ;;M!6cg䌍C{-& zyZZ9Ɂiz= :8>ͮs=@[j-s쎢Ty{78NuklcCl{\J6@.?bj 5rYHǀ㵢y؊؄'N;.L ~08fƜf0O)XJz gw+<ŷ9٩e+2nӿW(́5:C8tkjTN]A5 ɮvH3dyzbD+-n݃yT56A|fwETGՊ`g/yywjIwo˴/Y16Gm3S')YW;gVWu/ACXX.{5Pؼ;͆E[(3]G,ZxVb;A42c$oJwksP@;' t&翘㰊VUq)wT -@Bk4, VD]-4Qd IJ'"Q Hʇ!% ~:'Q ȳQD')SИY2~yȓ$$)Z.¡gVS=`8 0ބէ#K,(BN1eGh)ojWoH> CXZNIhpzB )Iq/50yux#Hj;u݀KԻ950  i[oVUzG5! 5ˢ.CG>+_<]d$v,B@2(9[k=0b٩i)֖#\. ]=VLS/DzwW!Ϗ'`;+#)3#خsG*Wx݃.x=pqNz.Z+w廄a=\1lޠ1O@,RiIt(E}Rخ^<'9?<>0Dnj4A< 7GWFŁo6mQLœw%W? $ +a߰Z`rLXAJ 5֪(Ěڑ k}7g\y*dkbN=_!7^_;)p^>dB m5S5 c"k NΞR ʹ`y߂yγidv[IJA,_XOGcF+!(*#/B ,b.Us'Y*%|t*6MkS/mZT{̀>2 #f'dBHBai^$JaըJ[T15`%/+uC~I(|Gc<6ԍqn+3eCܢ~Dě~+q2e"Gr6Yvto v_a [ev.&1:NS+PR-acb:;wL$/k1Bf2m `T ک,jN⌡3R%I]-b*5HӚk:IW=,Me~ߔ^jn?p_S8g_ϩn`@Ҥzd}b;Gzꊉ!1ӟ˿X'LiX֓PY׌f!2Bì+J҅<ﯜ|MeQ~y\xiE*=ka_욺_44溂TA U*K-%0"0gbl<;)FLI(|dԐQsÞyG-.5lR)>"^nx'C.@p\"^\&ҐϸS 18kPbJ&Ц>KzTAV#jNBmp឴e1G )5A(S2+G$L|a&`9P%a&i$L$^ݬ@߾?ʰbdO `S/Y\ )2ɰ$if!:(C749Rѧ?'2rK!m0C%+o.-9~v$C.!, b2+8պV0iIŀfrC"@<ʆ6w)9F7,`m/F?i OJ2s*u|;@=ԇ&v1tv"gJpÔ(ɟ? Dikͷ1qd"  se 6IDd_4;xX2#OTgI˨5DŹۑu)[3#CqnhSuCϐFE(`K-^o7+;;V gJ[ 2n}>`m7MXa˷ J: fdp LNk7ڳgu$q);lˢxaZ'4vP7(z6^-KUʹgyjbMF|VF}tAs< !t ҽG0Z<Z=tލ42 !BdدK:y=^_,pM l_ldِDF9Muzձo2NZ}-L&S'\u5>ጻ&hل ,_eS 1T|@xů "sSPgKT$Ǡ^A/cn9XN߇Ӽ+,z+2 |1.[ bɕ>v7HmHSG{^1vc_EӴ=#ߑFa |T98Xg= .bȶVp ~2*ƝRVWnPeahDhr*nYgnLj&|׼G3TxD`oڔ5KsC⠊*\MOߴ"HkcJ'-ߤq XKֽggA~: |eJ )ȩo˦ENˢmU#(Vg#che|ݡ?ryLs'r8"9lP I?ƁTrFok!#3D˳]tI$X'Թ~'.KkXgOp$)u o Rf_*LޖY.t!5Y8NJΛ XFXv ~?k;5ZlD-52&_\7Z~0s*N]0tg oE]YaRϱ{M>dH~t{!VQ1?tRS?^@]Eg?d>V_rN0ܢFj& +P"[->`IgwKqmSЄjѷ`p^6!$j8a &Zt8rMYC =]fb:M #;B PY/<HR#m}%K *T!:Y$kYYFSޒunE4ÖVbDR:S8 fiuG0?`Ri_H=u''(JZh˼Dl/pLeE5peoIswÕKY-oPPm{ D[o8A A$at@WG ʃ&X|Nأّ!a<7!P,NPܮ?fbh; X'B1$(] !)O>SKær0 tUcrE*bOwCTk7s $l[۲K٦orb@x',V=s!ڕiQ#ih$7FgeR;,5Tַy ZE()0 p\0#LY$͆^$$&?EA -k/wg?фWn5I&,zZF" )܇ q疇# ࣫'9p%&i#bR^]\5=CGN(d?fh c:2}q۸Mʖb εltgiW㰁]*LM)9 B]"Og+%W΄ճt2 WaHDŽ0wJ򱘱7Dvtay Aڇ0(5n@xg! ϐ89I0"m[;.͗j`/xռJ\EkUܖxYp#08MƉNI#m!I3љEfvghv8=}1Q{~A'T^nPrZamA7E='ٰJB@}?1&8 _8zP5o}DzݺK_0 Xh%TZֺeA<)u5Q?{JPFSbm} sR}'gǃoȔWIޠO 鳩%4`\cimH)$uIJ%a,ɂv'U,46RINLt W5L74d)|o(J&eB3UKu mM@mS;nURd&ux Ei $FIR ǭ߈#7{Wd9r-۔~+0S0z"8䐯b$׺_AeK|cm/LlGHq8> `u܆~)w‘~iXf#w,W&5J ѵ?-}VfŸ\S : ř d+׺Si,8DL (`|QR9t>M}qn|a3OpE Ƀ< gd&R(N_>3+Ky'0zK-~69Q{pвԐ8GLA (3{\ugmr6ِ@G1 תWtQ1Plx+h g }Ȝ3ΦU\Du7t|Z/̕#/fR#" iB* >d#q,8,4難^;6 )YA5oR|@CrRsg_6}p̈ldDL[8G*Ԕ* s^S|/hJL7B6%\#&CZ^Se#65V W*B<@-*Ѓ tg9ϫFQiSݎ֙{uˬK!1H HW̻D Ź<G+HZ=&ʳsU{ N>/bФ-34I]}7H<QǷp , j ˅2.oy ѯEZg*h]tYI Qcr;}Nk֨>^^pIOIt5{!WEWS ߫|v'TT `1C&(rFE;ib)ӡKq"NKRtlx0tW‘ݒj+K}M:ǩG-Wܰ2!c.["VNX;cJa!k"Ι.y@s3$[Ĵ``&p`W@5PMkb`*8Bўڰt*+v{2 MX$V(r=9z]UJ͞/ݑDpDWYYaB =CyXdA)h.u%ŜmxeOxI@:FGrPdja.)va{5iKOLi4O:P}r~ʳKqh2S#=~;LLVs L]iDh bp(Z›^[FiMK=*)oh<'6MX'am ׻|hՀN(F`Vj:ģ}FC\%˸fn-˫xS(RTٌwq7߳(寊@:ԊR?]ɐ_I'}ؠg}j>5 Rf#3}C8磐nc =7v| tH bPASX/]x0gg!e[lr/1ts0_?QerEEB?&8Ifݥa4lzV&A{bB*%s5 YZ