go1.20-doc-1.20.12-150000.1.35.1 >  A epip9|4y0džs MN ?bh+^ǽ9=sO:0^}Nj:l3\A>hy._ Al>p;?d  # 4TXdh      4 y (8(89:FGHI$X,Y8\l]^bcdef l u v4zVhlrCgo1.20-doc1.20.12150000.1.35.1Go documentationGo examples and documentation.epfs390zl31 =SUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/Documentation/Otherhttps://go.dev/linuxs390xMh>i+xepfepfepfepfepfd996fb9181360d605adb42c662c36fb5884988f29940621dfa8b7895215740e3123c14365f20daf6c31123df409b281bc131e5d1f88fbe543b1a68b5382cf6e7e9fec1047b1a8e504dc8796e5e86bfccb1423d52ee9aa8f699d16e2346b40fb9f31eb0879010f88e534ffd161f74f81be18135a5cd8d5a688369290581cb24d263ce5b7390691d66f71e60d7425026bbd3cd6c2845ccbcaa0d3c5b9af46b204crootrootrootrootrootrootrootrootrootrootgo1.20-1.20.12-150000.1.35.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.1eoeJ&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 trackings390zl31 17018652111.20.121.20.12-150000.1.35.11.20.12-150000.1.35.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:31738/SUSE_SLE-15_Update/8046a12a130e8becdbb272624d30d296-go1.20.SUSE_SLE-15_Updatecpioxz5s390x-suse-linuxHTML document, UTF-8 Unicode text2l! J5wA utf-853a85266833c2a816668a242cf7a3525d68a48e8d5ce8f2e39aaf0400c3d48c4?P7zXZ !t/>] crv(vX06 AԞ%P̘8Qmc%,yn-v,O,N[=1;ά&)J`-l Z"*Hɢ^ Obi*GQ݂Y Pe,<3Q~t엸6tS[۳z3^}1 ZG+ =)}=UӤplzK@f8~|oXڏ(/}rߖEdt:c]EOaz&maZ =d!栢 Pz07X"EIJ^q < kQǙ"͙s\OOL !*glDmNB ^5%~dJ'Oux],nOr66/ ,c|.VHؠHW*Kb£GRvWr @]&Mt`- AfQQ+*֛/.HNe=GE jU0GbTw萵 @ݓDrtJ [hƗ_N!a3s)3?#Oe3 *f|)4lo 뜬_M#B{"B^pbCЙo,]x Xe`%PL0Kdd> &BpWVٓz~QWaL\2^HT;qV _3 8˴{&Yq<-E1mqoi@^ac0$7qM?=+"9Qʋ0ye%fԥKR\ o0*mm^U'Ρ #mk ԛ \a-mNA߻1-i- 01m)Lv':O?_ a:ZvSհc/ {L|<_;Heų,aǂ@Ӛ-,m "Wi) jҐ5#*P=SV VG gvGa;a$l:Nc[9~T?_m_@5bcMQfu hiV6}Z]J썀¶R0vExOzeTP1J(@(u|$y Ipa}̃g|YUhV+ȑvTvjʅ/tu{]hەNsƘX/b(f53`M7Tƻ Biڴ/l- Q+@<$h?OLm=y3וpuȀTS*I,-(M!ؓpdB,`O4/~ 3PBo&p ZYK]1>Y |!/څğ(0bFA^%K1kAoS~ 1>hQ|%=q9xͲ2wS'1a9m)YCPE0JDlܖKyyBEN@-V ¦ Dp͉h#<Ѥ=:%IAuVs>qHtDAs̭ik ~V"Qw^Oĩ_a؍u/D)Ë́%_昗LFEgRI`v IJՖz sItؼyV)ylf ^hXN[=!u|uAl0ƌ劻uMjـ4avN:N^'┸q]8M9Eri}y75o!ݎh\&xxȔjTzQBt}A!6T`ގ"Y 'A#G 3_㙪4À4Oָ;ς`$Ud Ef'p֧&iGB1 7nbWm," \sn؍|$T.ʴ &WyUXٓELE|=K]ۨ]nαfI ]#`n:.ISKtpǍWHݣ%ޡmCE7VÝFm#|mcP/,^N2IgƟ5 ͏NYpGɭKor~Rw|@(\~ j}f&o.XnL78k^S@vVGUO޲PNr$ ^: ;Kq e>%*=*7?b^MXVӒ!eeYK6ET; =ׁn"Y* O0lf+5!&2qh!CȾO_f@uGX.ޢ`. %i۸d*[w!e"0y)ƾڛ?/%/tﺤ{{+&gmv!A!t2/&.XE+5+n1=a6k \NOM62%$ ;95cBZ&R@1IO"|A%yllwO'{BӜ FM%KI)w>ۣݽGf\94v|BczxN:h&T1!/pH=j;j 4i lF?p@C}kly2dw~kLcֽ3hSoS|jM$BU ahyf f>^N#$-q՘qmkTܶ7_z&Rz h/ ѯN}K.k1zqzYb.Zrɂi|M26w Xb^ڭ?`6,] @$Nx} z|dKt#Hj];-0M ǯ\R1.?s)[#wwz)5v#g-Va:}+I#Z5EF#:3ZvA$kE[]-#K֔ԀLvEn,Hڳ\DZ b49BTDs]<>R'f"&I4՛khs͵I%"IAy=BFJef MQ\7﹥}WjOut-k^XDvbiP|H.Q#>opx&+k$t)'1q{$QowCy}_JR#񶵪KZ/'K!' y>- ?y;&fD1Y* >k-㧯6a: 0?8JڻƦv40Ұ:*Ǡ蘸2b"~x[!9.' @ƥ ,'a&\cjaMٞhX|.?S{h9>@A@3 ga٫[sP6W c*~mxT﮶8mw_Ƕ{@ ?g ޽ggG܄G6BZ Q!ʲp _F3`h¸"-X#7 >`Č$nܗ !l.*9 @e} y[6F,Q9Q}^y-r)dj:ND1js-~$@BpF)#D0(^Lpy^~[l@8رdыGRh`oͶQΤϲ"F#SXapo1OM:1Gf)Wҩmz~5YKӮ=vz6FgkwS4{Ksn\d(Xs&w_|U @`gl2Ш-ԴP}H9g2z1)}lOJaZܻx2!BnhV/M<5'ƴňfc؍2-Ub$-9 k9 茖{4|JDALƬ_s<:撪&L-@ʐ[N:TV}oW ap>=֐>ܳ~B5g{%LhbFd(y4X0p=h\:Ή eusɶ=O+V0<˕rqYw7%<?В 3R<8,Gf5J֬M͚p m^_MW%1U> 2W-q$ks`l]-ߞv`Rrk̺f"?` \@-8EHdx9 d] w^ Š#$1j* .fɍ敆IeL4B GЄyu43 dXv*=hi}?OC}vkd5|2O/6,H:J}یx^~9s8t$3yW= R/3b̤NƆ`#},UaûSWKs/>ԕLxAbBZbd8 R"3puZ}ҼSMa\ D`z ib3GV?:/8X;\Mt󏵼/w;%X`d&x1OCN m0E_2\F h -ZXT{Hٝ'apa@^yBFɁ;4/;^ EM]A1DA_s1H=5՜M{{CQ ʩY7 9qk5z.,#j=Qگ0CYzَP -NKk Q 6 j)sT%{,bol`ܥyLPڋa B/e 'Mʭf*`J꼋|$H5%N:ӬY:,&q?,aT%5(F#KOqixx"Q1paL߂'Vq>4C!|Є1m=&խ:~</qaOҳ-E9(..j΍oȻٙ(tr4?X(Ao܂/mv¥=_ ߶~Ո jUMi/У'V;|U)hV.c47H <*9Yo)sDfHeI%GMٟ!z&# k|$|S]>ILMYtxag04WKTS0$s};d5c;L!fET/5C0qNXYU2Oa=es:qÙb;օX&_ Ǹ~AÚ<}Eݥk+܁1Su4a<*x)g}CvoO/l!0՞XJޣ1ȡ_Lަ䩂0XǴY ;Dr>\q+Ԭ$Q$:=\t38ZF T8r@< hWRs2oPw-Z[BsCTyq/KK_S\pH%{ փ4Pjkgs mdds ԒX*4^!9܏[ZॊէbvtOhrݖ%5P<. '?H S|W#rڄ zdYM6/QɘJ;(U*sqę;0iޭϚ?Sf׿ NUN&}5W s즭0`H5j Tp?9*RS'N֑?:ID*A=FӪ/J6qnRlȩw@yrX*wk(Rk߸5Sk^]`r,@cPh^,Jn% miK6Oau0=,Qd6?'LG2k^R#z`3]¼BjX2ļ'޷3{R ijβ'"-Y/;hkZQNЛ.'7Y~[JlTZ0_jK{=~ (f d[~' cр3?IimxQL,RR !rV lޣZ:-3tºlIbOu'ghϵԯLL)`!tpLgrwH=zJhT]j [76*[p"{3kcSkKդ^w )>Il{b?q56d-Vz)?Sc+S"~qs|K@Tּ58|u/a)e"IwV&ZLލc!|y#QFp ߀ժJZ5}ac:.J=iҹ.ebr7 p o>p$;> +}h.&.'PRs= y'Yپ?nl Orjcu=?ۈ)mI9Cn#RnYn.#HFWj4. jW{{Vg|<{|%5HrKwCEp0ӄǕ䨰)E)De8c,Ym4(׻1X+? i/j$僢+pωغ%I$ A37JK@&ҼWFIqrCx)9Ɯ|WcLor笩(s/L"MbTjܾই8TP&#?XuGRB8 3xizIjbkЎ{t#>?x^iR`/kMk"|%uϐƹ !`%Ev:Q1JT$N!P*di*"o~-]ˋ9RnVtm?mH,bZԜ3!6)埁bMn<ѯUҝPBN5~? 9ä>~-z7$ހ4&sC~y#Yͦ>x6_} 1j^JQŸIRZhݜiI5S8ms|% G#ag tw6j5~kKxi+JASkq\9!b_;ȷoj7!<zFB̢%n]<)o#Je=NJXG誀3*i _6wk~>щa]I 1t4Jbz7a;u; ľVZc~%ybkƉBc+v\3j#y!n |`!W&YBaHبlQ_qĔ/ PhN"$=qs S[AVU`a8ӟ)R!@C[|)JQZL/G xXRl$F65pltVFu+_}mɳ5."*4n ^Ő:94Zt~uDd Džtƹvs)5d_}*1rDsKaJ| O(urg(s\+,;_ 6f,`YLsz !tXR`jvEL3'{S*科dDHT3 (_Xg5wCiHwf icèyF ՜iLkZng,l7{ :{s7ZBimsܺl@_)S?d 0uW0)Ak%,\B#w:v0!n#JYϭ7&tĕB#Fd"41Rը `ipsQ%_zZ? *wcCZs┹Cǂ؎6Cޑ>&Hsf&]m+C.%٦ChWЫ`Y''ך ZPڄN6"h󞉜2{-ftw⫹hMPR-Q@ӂ(_@_w1/q9iI! Tr(z'Jbu:yd) k\Cjꇳ/2w5(ThՊZ0ކ O|qy2y zlB-(҂?tVc>H#м )%˪!I|0LS*Q*q߮~0a?aOc%qOGrUBU6u9hC'm!C}Zi"=@;Rd^,v,57uбU@Gc0p;yūPlkݓʇYOSnɞ6+K=iʼn90h}}kOvuR%tDg4Z12o4Rg?=6k=/qkv-w7k8:xؽY&.?ƢcJL>K >9B5lp]F0[m@D/9=2Vw FO PU'F^JcBsj=G@կj| A%θ  &S._ym :CJSkA9Z.ڽkؔ,?#B.LXc1hhS5UB1q^m5)n){-U; n'<66#h|x&He[O ^FSXBj!Jq, 3AyIcW &fmy]@.gO0gi`$eͣ_B(qkX:%`p= =_@]ZX'(,<&yylzMQۙ;`: Vԭ3BNqeڛ=B u&~L(|HuA{})w/^W.E䖰7j1X5,,YnՈ)aұs1:4'b.kYzQwac)3j0~"s> kܝJjt <vd}"H),T+:,Chtx< zL7d&}k{Nwmϼ?i ,kk,Q둬~Y#[Z0=S5SRi1i@I'Xrn>FxlcCCy _+OpRB'! nMS,nЁU+6kg3 k\f>@&72 K4GqkX19?w740EJj oD'w8lK̿җEijuyn5u%}Ogk+BTe_R?w pf_G5qh۫KAО$KeH)7qOw:~3!ċ]tp\IDYTjyo؋#A` 8"]zjZ;O*;ĸ=W8pk7T4 376FL8G҂m8r}>'LH7ȏl1>N 4 PTqM|g#atv.2tqQJ(2; nI:&m037&Bs}E% %/m9q;d,*"m840Ui0JIQI4}sp9Lj\Ym׈H - ȋ<;MYcuovuHE }Y섥 dRu{lujemql*W3͑^SH$R[U?a4JJα%8V5-JgٶT ,_hs EB "YQ_R!es&"l;Zb Ø]nLOFq,zpdUYk4l{D}pXA} B``QUm8Hj~ 0r9B:dYۭ rhe"32\6mRbgpˀTO:P*iB.N@TYr*4\7ƣq͸wyZ4R}52d|noJ^f MaA(S:q!oVr8MGA[.RnO LJX^:-c|&b*G9F_iDLoSv\-N'IGdkMG;s2A@G6(M?VbIЉqJuk 5mnug5މBZhln}PAuij|}ia"ݣþplm?g[#p15`5a5KIB[=dTNFoZՂ][=2YS4Q |xq/'19.V> hneY$~Bi KLF`Wp*Č0]o0Q^4Wx3j7lgHSH#.Cn(>mo8g.9]x[ؤ@Sf/ߧt2kmɅH h"j"8 s lv90F3E hӽID"%W1j ^jM҄ʲq G=o0V)&KNM4EsLϯ.-[>y~2z@(Vd(%-3h4,^Hng|b1yXҌn`2nw3DIg5ozk꘼/v/Wah#@YCv&FJ)8ڻQTJthw|]˷e\i;ƒƮ,.sV6[j I7.Hwv{O`K]I?V۲?m\ځ\D5Ԛpr]3SSɟ!Czc<0T OC% }-YFe,D)B|lӖ*GpUmfu}J|tji&;c̤gw:ZRlk_,|MO̷Q\8!R(#|2"nYs厌މ `*c<ɍԣ_m ܖL +jW׍,@歀i!F{3*|o_`B B-vt$Uv@ AVf:3Z:y|d8P>KMk?m *Lkv U#ם @s⮫zc`5qhM($D71?/?M~d*;"ŜE;y;}4vD;%qӰ 38`7\$~Eh0tp>\=k;Nk'bfgNkѺҸ"\t@ ~pQ--YFibOjލu}HWoz%av/_0ǭFC\CtZtSO ll٢O+d̫ucylpе-hhYܼy 뭤QcGsƁ{4&բ"XVp  bsPMӺWeF /3/>=Y?v6e-L)a#ˠpx d *[4as+c9W%c7<E^gowq3'9ڠ0cK%3=w`"o|Z&3A0A(-dѾ#o+Ct ]޷D:ctU0⅒+/Ctv*lGJQ^)}TK.Q$)j`ëEs&lZ0c{H:߇DVZQ@ʒ\Ƽ" zWr}l(`EZ`4ú-J0ҁjO\|?i`8H"C`RaOx=#iCվK9ӑ}Pġ:0/ϑ+"C}t 1H njAO:~)W;2P1S߸4PI9GpI1MnpƖs$DqW}5ΔM "kb&ZVVT24K[k 8=>.ia çm5f tz/r8TrBBexst'[wQ%O@ǩ'^U0- WNRbmIn锓]pr\ Wb|(<|{z3={$܂:Xy6g`a&lv{{K0GrODcJ- ~.FkQ(UΣԐUuJ{mlzPlQ yL\|| .Lz#q/L ?(?Y3ٿ%v36^#,7e lەژ;mQB>;h'P͢rw.aBW ©T:V  iiDVs?1_ I"u\sԅm|΄d0]v99RQ< JPoF5kAlF)qe' "RzUS9e'bS,: M%Kdk9>jɕ.yp-]_\j5hG$)ODzwwbkVTOkv+Wʃٔz;ۯGu ( h Ձj6ldXbRH\>Nk< /_> #`Pґ-9l#\; !v~Q#͛XDr h~Wk  h`p yEe4Oa MŖ!A@kudda䐍϶EBS~o}qVV 53ʕens, \a*Fˎ8Vb P.Ex"5TvUӉ ʿtsn=d'aI tc@=7pm!%!pշ<<+B́PKn1fs8"QU&aB /(r͟D)p;Cz+Us㊧pW|Q`Ƀ>zRSf.ZlEȋ"~%IG>{ɭycaKYAOH@}-Iq!Ba52a_I Ƌ(as0㚋a 5uqT.)/!]*.?E և28d]p"r|j*:jl}(9]1HyH]} KUr?h&LyRSǗ7 YϣqJ)WiS}%N,!w[= IJ*6pLʭa X& SE)z1^Ohj0X3O5̹}S^B\vRa4-68~tRJ덤`|W,;s3LDP)No`.\|4gsWh Lb 6W;[̉ed Ol ɭTN8q4M'X2%!)bZ75OEX7?x#E BZar{L"x6^P#:h`8 jy|{Ǒ^Ƕfl;o}>lmMrya<}*X}B!Jf5zZ}m%,gb TTl529kv5ɐ%t@}L;oTђi1o&Uq],D1U"W%ڤ-KS=N >vhHf{qcL#%Iƒ UO?x>`^4y.bA<& *%/b[(nH 44΁Ec){{̷Guq;`} \o'7AKW2>Y g o>kX|H 'TJ2RLiʪZ a+xUnM,$ B`lu&g W3p[oTҺTy`Ҵ!eiL{GdgI_0Ԣ5l0̮yf &(G@Ī0%y3R[&RA^v@7QdzLRdK+dZHY?$trqmߍ3>e kֶ.(8+w>*vUd9~N^ )+5 BوnW(-)kP!&/t#IlvY Fq+eY>~ȯ付uD>y4+TFK w$t*T?0$]U>eA߲LD+qo*u,MnKW1}T(zmvJn:{-}ih@!&0`Pҷ^~e.V{d!Ue-)~+oUwg@P*E08zr(YL B/" Ѩ;ɱLqV;!=zB˸uzg*ҥLg @}w2#$ryٝv oQ*\9A펉E9cx8<CkS.|z;ҕ,z $^80|~-.AĹI~? @?Ū^hf饵/#RMܓVv #Wy" "9Оt/+'ON帄 ڭd#ڕC+ 073(>dOΡi)@t6HLd?'h5kEe5{n3*o1֌:K + Mi.Пc]wf5wم*巭{OL0IE\(H7+PΗ%D|I\IBu$}SK+ZеғcKQ _Y1rN^" aaBr^hDfVSC`/0\]>'</͞'@p머|E) lp \cѳ4^tr`w U(y+eLNb/c<ȀSAը)ugK>y~w^1)8~i_1Bebdu8uөr» w6K5lvT!wo M'}Oj5SwHKsA^]cmέ l֢r*q<*?M]SB3K^,yE4(M|ujz^0 "f?vL .{Bx: DVJV[eF.C slòa}/U_f;g/k983>.D(}H[N_d,8fxKj1׎w&N$!惗ot Wxc͒> H5/{;S&>FH4l@Bݒ><+(\5*u@Ġ4E*2gws2E4p*}:&V7>hMSreepI1+dYkx@7ڠ& b%Vc_5cc]R`f!GVkp@= ?ȸpML*b+(Ӡn:?QI W_J9xP\jT$+PE;;q5*놃lmGz~q!]e`Yi[`a fߒ~oGi…mת/^i7lló]A[# 'dhtELoؿ; ~LViCR/Qm"ǼM =htzpZk&b̜k ǐ=r`E(`9]-õx5vuzZx*"]A =h:5x<ժC ٲy\|e3e;殳e幑W*JO]Q QxٓL컵{`]mb`0?n|Jٿ@H°IV݈+̨.kQZ_x^pg1vkrX<8e|,V#Ma&h#3JP .`w~ `6xI?Td5fd1Fc1Qea'B;qz$AH["cDΆo$ts wJRzҙZ8x56dt }a%F_^6ԩ4\K0<rŤSwwE:rp HxjSհA\U긓,:)kȭ-+ dvj@=qo)!me[VyJp Y@腛v$v[jf?qJ=x,} e%8Rª"E↱3dN+ɷ40k]q>9F@ʢJ)-WqTSH >d~xt7Y(1 5NKrU7] c4~ϵf'8MI<]EUX[WJ]_zuOCV2Ρ4r6b_OGLj[k7;KEuՙմeF]l̎уx%F`2HFkٷ]"fm^.aҎ1> ̰>sui'eeyJ~aɩqF"sh6ßxpg=)\K!S'@3{`p78Y>Cyfު|he CVYܺ17=eD˧;Q7j#apyfks%P)ɶC t{+~S\[2Ԟעѫcc6#rk"qEe7(UT>s~KNT#Z_MH ӂ2>Ͽy"-X{$Z#}|7 a)n%=ژ mg5+VCтy eaZt\`R%4 O{vq YLp؆>Y}>"&sOCUJ0-7p5fz=婺g]xe*\0w 80|Vp2#ib]1'|KjKnʭ=8WOaxn*et{SJo:&OqH-{K\oFլS8rKVi㤯S+eMn wjSdxaHN,2D[1P=m{y =,NXoE#G?#| yP-1x,CC^ҰTz5 ělk_B4ȱ1Q/wBbjνNso/#3$<6W5;L*Tobhu<^A9cۜNwBH q2G.J? 7ƼKxW%D.b}щG(ܜ ?vҘc%2{n^7ӹTRaDl7_:"Rsul-XRo6JDvy+!?EucPo).z-rN=V,{N ]zB>:%c ^_7p<s1[dovb똿<يkOI8VlBZN55jZj)h3w&j%5v^qo#O1{n}?S+l=pL0x[Zvy䧧X4XL7Php oo ̊y@Dž@ ƆˡJRJjm~ ٮRQIv HJ1Rx*4bx\gb['s pTbE^4lSLX /M30)`a ѧf]>!8!ܳٯjCqN]--[_q3Q  pj;]ddx:' ~B\ o-q2me[[hqmNNeKrhN{} "7[ݏ_ΠܭX=PR,z&3<rioQ*ߕxZ&$  &V7 oUyh^S۴ܷ\,??o&5SJX eC@m N;!]\.I x;_#t.gy^.Iw`+WC$񤏾@xlvOfܛaޱ-LgsZ:a|%Ay{ dmŘ:TW 2z@xfW K)`[_o-Fr~ffDiiOfZbҊL8ճWtjc蓈;LoR-rj (fa@ou"Q=8ԑ$F8 0Dgt2@OM3t^c̵[9)d蛙md_ṗHEV jy*Ftq(| ZPz%ſT,CbZ+H-|JEz?ƴwEg̍ۻy㕬ߎMpͣPVAoNXw2.Oف0jw6ƬY"X6հ0B2tp}) >]_;K5"]"U8U> WxC91%<{{xOuLbҧ|J5yuf]`}I "_mn > w{vQ$kY4|Bב(8Ȭ-@U0e`LdTHU.#XZG!YIC |x묆?R #wfdaR+aB<1\ $iK0AFB`{3u⑫%ITo8w:_ as0p_1{,g%q7rX$! lNJEiϚ}뤾zurL<̒_ZMxGc5rbb6d|ػ>vU(y/)=rK2v ~@_)5S2giBZ! M ^Gmo40V vc뜢ݰI/slI V tRcLR!Ȥ%(*'ЋU5CDWGW-P5bR0\&ywATŽ'AmM]LBf܁B h}sPp7d-lCUa?6 i 莒u-G GNRCF<@ 7Ɂ|+qkFnG=dKЦa1U Iv쥂g_V܎ن$c ?RLwfku Y6ph"~ޜќyبk h 1/Trӵ}8o& ߙG0[4KsRT e }nJOHQE_La$Җmuқ Ԇ\("c!}&uŚK$|DòwIzk 8f<`^WX0 zlí SG𨒣B'>GmҀ(C^$e)n(cV} y7uH\3w1WgyYrϏ,7%؁'xS̓1`j#6 b4>d#/ISoet%Ym6wĦ9!#3JI'9w;Ӯjt+_b&,^y?_ƁER!)ُk 1Y_;19V\LAXO!ZMr%H)bu/~n#w,2}ԛHn:x^C\;anL'B[w@U_Fz{']4N@̞9 FXᗚU.%]lBN"_7+*n˱jl++9D>,zUU,/XpiBÎ"#hj~?$Qjo:ڇ̈́ė)|TGrkh8c_v ߝ".s%VmWO~4;料a7>xn($AnP {ļ$̦섟g{}*t}*ˮB4fh (!\ڮKirIMio*ҐEuؽ:·Xh+8uЛ)I4iXEꛋ,]s wg}U'6RݦWW1Ȅnb'"3fӶ{jkW^0L+{8XVOJ:zՖɳ'ďst(o`d3&0{ C7%2iA QMUi zQ6g9vDOj,i_K ι.?5 9I°ӻxTQq^v`nX/Ju0MfWR?zEOQq`o&:yse_Jr)wl|F>=UNuck, <& ;s+oh16#  a f  T6^$)}"( >k\[Aԛ?/w8!\-H-L:ax;EC|Z@HQ]01nv/j~b3+,U?Bj@E%Ū&?9ói_Rr;=v}YtI6W #E?hN[aM$=w 1}K`:|p'-d@Χ y0c+ .Ӆ2yUиfN~xYS{"4_hVli8Rj)ཕu<; `DϾBt:4uëڬL'xMKG [ct i:s\"zr˙ѾS哎4>n3e#\;ٰ ѧ݆F{rm)H>aٷCXfQEϕr**2S.jA;߮$:Bc6 H4v2l4$6IY]z`)}sԵ+O8uCAYzPyᝤ,U|Y;8va!s-Mo9U[KPܤ׸^*wSe(#G7K\O_N!A1#E]VhIYV0Y̾8*p ;??EtI3Tf}DpĀ/eyHj T7fn,|}'m{|3EO^Fi9hOȉ B χЛD_1 ZTRʠ}曀3Jg 1< To)cDC9ꩊi}v {CQ ^ܵ\_xP[#Lv)Ixhqcqyg !'K_p9.c %?)׬!F5cQX ӝ;f8 SZBKt\/~d_) E0UftA`$͉µ6Q4W& ,V_*N!Q33I7 :5F-Tk4⹀#TP(K= yC@ 0y,)A3AeV? 5lCe_2sCbl̻_k}|Zz{F24;s>`Yvmi0SHMmyi-O46XKjlKsf qTȨk,ʴϧ6j_' v\~"lSrGTfwjcNΙL6ߛ+N7>hC|p;M>ͼ6niv>Tګ5qѱB=B?qQv[L\c[XW*:2}jU#ƶ*'+"Ur$޹T.CH0|zL ǢRs໰k ,S6^qwVG弙w8(~ BOˎdYG]_nO4&!0&icrֶOb$1naJSަRC9`,v.1<ve-.6 [?V'1y.& ` }f$-U>Vx ;VzV%"zbm8/+DCxrNDv$~ dm9]fpg#wq:RiݻMk!or3߼tyBY~'7ƍN憎zRa侨ǠZuhXmKjG?5z$eEoONf5AŽӎ],e6On1p}XũEV;eӓԢHed[[~YWݨTcpZُmK9Qx"{#D@@I6sa58L[`bPgTy t&"eԮ\CPyliv!&7Di19רƕo>)R㥀/ TaqβQoB1Ef0?0oÙmn9Azt)<uS(s4x3&*UDPDٽ!N$g`.cTG/دP{Ӆ&Zƀt>,5~tN dݴ8+#tbL5qjeH )rj#&5yhKa2$ŮբjC𼹽+4ڒ^SkJfj.#;%tqfc Q5#bM㇇lSVM(ΓTJ>܇&ڒIv8(']Z=t]Em 﨔S9uz+6hC;%g*%dH5vBL7f[M Q4v@3g(nZJ].drֱʔ'}0#+ p 񜐑un|5߭Wh/%b򷶆I"[iOK+ᤸfˬL$'hvᒥp(X{X3\4{40ew>Bk"65Őa':.g2*; pJ;Wyn.ڷ颳8>٢p njOLQ1XDqJTNH&ZM^Ջ̲1oWB~f49:Zc^16 #4QRϚ WL M H/t}>Q T ئ2Xu?aZ樜Pco BL93 ̜cݼwNSuAà|Σ`U@W Ay=Ż= 2WyP]gppR@ gK 6Y.ʹیd:hSOVӮԽ~r6~D\RF nAkVF/=C00>nT3T`X^ X7W /Ijtp\ #IQ7(#T.NRw"Cu4lcna}>VRV^Q7FmnM0Ŀ;ZPS;kZmQ)՟^&inN[*xZ`6}Bw/8{pho@.T?KFL&T-&PH:B^F}uxRG"M }mYihԆP[F;GbHB6 . tBI~MƉ۪&RH8ļA%V)5Z<A%ّ#'5COA~oRM,ߪnhrN#SaEmQm[qi`fJӠmq֝1;Bcɞ]xaelCz#ݵ˘P;*)IA 02CuENxF;a̹ ]QIŎ-`"_2\f*Lg~o5q/ 6ת:\PZK)%[䁉M91vwu*PDSaS_U xpt:{c- r6Xfm D&T?8XI <W:_| =0by Ruf-nhSMZG":˵Fpu7d#'K#s^DՎCySI,%uVÐGc6[oUe>}ß8j# V1ʠ=s=LJZzL?xqӌeyxaL)- aޣC Ry%Kwmee=uQB|":FZEKVd ӡZX.J}Cp%hSSd+ >fcp4 qd{!meCJDA*;tv)2HPaώw qȧ(RS(r+Sv;K7o>epj#SW}ٵ!R:5j+T\&`9H*HN*&[Wy@dTS-,Jl5`? 6`CP8Woqhmb0Bo٘T8H*J$!#ÞQy?+Gܪ]-Es3SP7^`0%۾~,c|e0DpJ!{jL[wh=a+V.[!åi N]Ry TvN$k9ej @+ψ>=`#r Zv)LFN;sď3'!¥ZNmL{&'XR!kUZ' Yu`8HǍ2$>J} xy ?JF/\ra`f*G`=Bl'p J*_5F)`OCN ޢ\Ta\gK۞ ^<3+JsdN ԽaZQ64~<7}\WYpؠ- g"9*TԚbEGF{uaAQ_7唢O؀Oޅ1BtQ=pkX 0˩ZlݔDVpHQ[1\Т7ƽnoN;7V𒖪 D3}gQP7rpw=aRFpw3W ? R БKv \!!dzOxߨPN:ُ&7K2hQ2h fCZd nA~ʁ#SY T ^AbkɲרcxdU1v-G὞4'4D_DZ(򠈱voT2$2M?XW=Io]p"p׆h<-Dy/o^h>W-d;3CρQ$5tɞ{_k;-3?M1,Iuk`*/[QFY6b,rG9EswKrLX?W@:ZJfᢷ٦|b0>ft6?uˆ~ "t>mF&3[?]òn"tggbDGީETBܫ%~BGY1gmΫ?oy=9q94?6Ax1:FxLEh<,gGGni3weBsqspCEoh <]1XOqΔcJBi;묣m E*** 2GdAp<Ň&cԊ 1x+s%Z\!'Ҿr9s|wzf؛ͭ|1U6#󰕤Ghuɀ t:$q ث8p9"Eqp<v>}z®sS1{e{BT9%þZ:^aDս/R\,ɹhcy.y2 VדsU\7;ҡI  /7C[gl|0mnD&ه I_AY!.N78!̰tQA(PP$U|rt@㓃6>FɝrCAz(Ve&жB k*o C2!U.gV~)Z; Fqz0JOɂCXX$9vbU|x$e ֞ NCi Kߕ1x  Bn]˱Ѹz5׀;jt&.ƫ 94&EUvt4rv rmzV$)z '1@~"n"1GU_ ,=ӥ/|oX4cQ&9%6vo)ZAV^N Pct+On##/ v(XJ|BH:u$ UTCbPYt*yD#GN1gF.A>&jh$l*Dnb`3>.cyX"xy'SƫC˶S=ս枯[ ]>~C" RE˖G_e>qm*!;uZjý~ B@SzPI/]MEIɦ<=(uF&'_|0 f3EGhhG)m{B:G@Ͷ.ExijҵĝeRZ>nAm;_:1v䪕۪iqPy- Bpe꣸29ZvŌl "_)zL*LfrB$zt@?yXA1/e(I%^+pbS91;- ^ A#u<yˏ ;CHc:/Rا3[:E,u٣6E;AiZO: ZɂըzD..N P|7)YWTMFN~6JJyyA~V?[%"yY #WX\&Њs4eZDGK _d2kRǁL"%l`[dȖ~=_@UVKѐ|"1®9\j)owN66/XjɟZnus:'2&pc]eBW ( RbWo)8G8pt~/ٗ?Kj-!#XJ3yKv~n?w0WA{"UpvFsC)9Z4f8mU7]T*/Z, h ӔmwO}fn'.;\p6אYH^ sv0 A48ɓ?b6-r'yZz 7\*$&W#IzI*̏dȠNAQ#}ҫlKch 31.uPz2:;n=ꢼUn<RjSX.[$S|y>>?kghK 4/0C_&RI2#\, &V48΃ޗo}·=g%1ZG/3Hҍʎ EZdN3N&oECB8aVPg-9eXtL|?mX~Z5\ɡ>$'="WcVVrӹ7rl)CD7o3* 20~MIBWb:rNYګ9p+hF _ Az]@u8p .:]~ztg,i@cob^F"AKh( Cja`2Ƀm5+x /\7$v<^2r՝:D\GްB&oͰb6u-g꼭ZV.Fa,8Ck{ bq%nQ˒|_r1ԡY c,vESt"Vv @S`Ʃ_@e8M֒h! 011,]%6lwX15wA&6f,8/ d $nGTfycX:ZRU'"+|v EH7 Sw{cr4}Hl|eq"!DMeGڕ(!;ɷbH96zXZdl,]=v]?D|u>0,orx)YlG/Iwd*tSIrjňyf3jDY0>'ŔbTKgVho-{0뗵̵ ~x%/ֶT Sk2]GyLDCkk+BOT,(Ã5nr`#ZCNIdU^Zhl, 9#7$Zdw3sp!xa/i3+A"YaFV;phy x9LB| 6|ln;%nm ()@*5O loS:qwP7lZqL ;Jp羴 Ś::=TZm :21N[a)Uj|ͭWwu9'_QNMR\;4b4RЅ g gRR lݯ XE-fK@6j&^s^Jq颋`婞NG#RIڸRnMEż=_튴`jBpR Kjh,_YUqXv4'j RfA'cPㅵGV;<`22ǯXnѵ TTҵϬlU&?/Փ.DVOa 階ȕB*e^NMuOІu!9wDZjb.l8&":*V  $Q7ڤm\0{]. gIӶ3tX+;,^=^ A oCR**)oL t;"sI~{ &YZnA;Wb< v  >l0'_y ǩ8esQL&9d UiL~GPc)]N |9_y\}Dx(Imy[0e*i5_Gf[ G %s?i,M0iZzu>_-iD׳'“hz" runt-ɱx=8!W/ےlŵ3[β c\ :5ciV* 2y:ytbF!#kTB_ < }MfƛX9Lg|或^Hn9:hqw| 1Cf<[?3(={'!}›9NH{=vb3xR NxQO Cʖa_MK\R 9Z  ݉gO| ^Nͱ5 %qGbFmKك<@oJ}!a !=q>t_dB"OG93mJi[<0T >}AMI!6^mLғa(3.2MN1iYD&i)^3& [#~}B2N-tA޽ ןKeksV6qIm TB3arm1J*9I\(CcI>Д Y#zm[b22O2ZPLqU\k?ɫ|+zF~|dt#02y$`1ndR!iWpNjH< 4e~ИMt0Vr^>Ac2?@M"fo82ͺn:^?U3+ iC~Wsi.5]ZClc:SQ3‘o0;q [: "|>vy6 [{R`p!j%0E fQH{JlKO~90IGһWiԱK_»ޤYL,fyK4-.5S4X#u/$ݖ֚&+v (pɉ"1E 4[#xT2}Ibմ:esi9^M'f6w IaUX(NmeGxw-ߪP3}UΧu~M0j lA?U*rhCT|Ը-,v}>C(? [^szWOIgE+~zN|ףph*WN%1ҋ5~,9@tG$uh%hߍƌPZ-\E>v)~I8Odq$XpƆn, NZdF5>sJ4xmU61Y,l!h'򠙟sMV/eY >OIx!M?_CC|eY'@֟kf@q tj#4b"M|\X2J@.Vن0grG2 $#Y~k?|bsiV=hg Yr'n'3?М_z<^M߮##A؎GQssuU̖\*);;Dh=N<]e"Sa0U'uZA*6&_#y< İg"+2"y7;dKEX*("pH&(nS] l tMjT) ziCͧ'}EYH䌋Sŕ},G"93+x;U;G(y1)ׇŒ@bϙjUm! ꪦ)ܵr}kF`Ke%sJIb+Ă siQ/B^{m"CAMYGԲvB~IHq%+ =fО03k+@:]L&Ҕo@ +Pr>wD_;8)0^6vR/<5P4`p*:VGr'E񔽽޸X*O$>TH߼m Pv8+1 IR1"~ݩM~ o[L㌫~g?9$HS,.ϴDZ𰴖6Mw] ͡U e,aF}X"Sj~ERdW)s4[1PLC7# 7L zXL-E+BרȤZxwE΃`Bfdy6IĺS-]~뮶iT BA0V)9:JZJlh;=0vos'B98w>:a(WֿKOe9jh;Fc/*MSxin>kF^9wAlRǍ?~ˉ5(x5/Ev\_]фZr>JC=jkdTwz`=]#Qk>*ʃBLxL5mnIu-?WX(p*b3ˏ︃gTue+KbD1oߍmD65-GίsS>J#*U%j+:~Chv0{@|"ڳsk1:ayxgn.$۝'݀cb_%Au.sQd2]flǺ֋_#,[bFQEיeaҜ2~RG0PNN,[reM.X{Ntx0*s NyA wn\]P W;wx8 :} fUƃ+ 4ckU-YbB>? C/H0pFW/-+**jjw9w@cr?q˽C*&.KF-G7XM<>6;+[JѴGɦXmR6O6,}#vV[v $W@fq;l5u͒mq%m(cfUwT͚}%lT)߰# "6*GU'tVS<I15ʕ}gh¡HCAe|&沈mg j:[`h=7W$M""Ⱥt9 <żJ:9rAT嘶:^Qh|(0wttV }͋/#: i:LI?ːMIנ_$9#AК7B4nS{{@ {*f}k;~=f2XqD ~'RcH5 kTյomj|V:zIjJ'3fohGd&x?Rb85}qDb3Z)E㖍CGh҇!@8g35\I#7-n5 ƎyD©;{U,Zw%p~ȃM>`aif EBnc-=ߒ|U_^K".*ĀS,t/Ȼ F(”KLbh7W|Fq9q⎂UsG?ӈRNj\@U!0X"!纗XډM~z8ղ7S~Zb(i5j|=v[p&Lĥm ]̃V2>-E˩k;#ߒBSԗ$E w2W0:[C1[a,Nyz:G@Jd ʺ_>!3`5~Ȏ$j}{o",ZpΫauUd% VUrFu!s1omZjx㳦jǓ<~<L)|B8[U1jON|y.Y:kŲ:nl: %CpσL\˥+O$bC.a@} ,'ΆPy9XϬ$/8/~BZ얺Z,/ \Do!1i*&[:rt}P>@L\$)*pIG3W{@Sv)ːac}&ZJ[X#FX݈#lGa͊Qqrpl7(0{XS7)I,KCTR<Ղ7ލ:X]tmw}%8;-t\0>uǣa5<-}GDŽ6mdj!|]32?`C@[oYXFNWd+|6V/Ur.bk^Z˩%-[sax)%1d'94r(a4f/ǑϧQAh{̼:+1c%s0/D7֧Ы]`XCGfƲC?Svj$03ߒG`sWHv_)$gKD>z/WXS[ǖ0TeG_bT LRi#D"V,iR+D38{`\Cb=t{F޺Bs˄eP`KXc /;6(Np8e?9̫LH} xc͏lZTy0Xo5r̲(IO{92Y- m=+T-gzIVS Gn0?ta}顷%ABLS@@Gr!.d|EN•̻֭PS| (aPޘ+!8n ş@D9G;YSVw6s՘HpC/|P6M SQj@Id VN"V&RKT^}rVaš]x}& @o 0]CLq`Y#UE֍ˍ)̎p)EKoPqE V@Vu6؝gAܲ'e' |gٝ/t(,y BfC" Y SxGMF?>o vWT{FL 67a]yTt !a鐣`OOhٵnN^]LѧuQfɎً;VX@UX2>ŇNd$@?5R/*߉9#Ө1<}1 >B]dv?)`^\ v x=;v/M H}(ZĆf7xhP*ȺyAˏVW/X9?\k·g⸍ՂmlFt>8ҺlJ٣Tȡcq;-Q!8? 6B[|q"_, ])Bg40elśUI䭼43}TAH6.ȋeVFDHJ::> &t 2"3sUb탭]:c4"f\ |U8:JBvd-EMD 'x @6?|6zRi9KXk(,[`M7y0)WiGu8֗O{h 7EBY6V V1#꜏I$n @bެl !k'uwrKB'31oگ2+Euq!A4<)3>c"3Xbj8-^:UG;O'F0&E%Aa{p=Vp\|֒oϿ)5Rx( t?-^TM#hWjcP,]W IS'ͻ$σk6,QֲdQ> Fj@$_tL) O p-zՙky _R%TB-0:nay߈/b5pH.2+-B}q"dW}ot!d )HcsmaG;Bn0|/;|RDzLѾCˡæńk͖^dw&F{ =QH!ji.I ы  2> 32J,%SX*s [>sȢ(U{hrwlkyϏAt(Toba+ S7=p:@%[H'ݑ1j FwGcVv-fO *UKvD845x {u/tDjCxeBtH^鷕װpN@Tl&fǃ2ߦZ}e"_Zyq%,>)P_8+ Ѧ,P)%H:|Wܡ`pJ8߬Vg٢J,@j(i/^ol]|K^fpcưSX ]~Ʀ6 ]n d )ԺsPmGY%EI}8*gl^&LS j:)zi#IelvTFrwGT iߜCCC =wR]m҇UyiiNR}֌KZ{v%i=[,ՕU, r3bV<2t0}աzh u FEuGܢv>k|t{NS6~lX}aL3Cg*l<(oF )O #Qh%಩ٻqѱTY|nGʗ*|@M^b Ac$Tjwnt*fS<ڣL7,ZGW/U9]}V?+"%䜰E ar;ȼ3f)T?ұt1X^KRp#զ}b*:8k pv퐧Ru`<$jAcM B3Ʋ,0"AvmPa+=Yrszu"@z:0ۺ,nV8ֶ ΃S߃ X#f4"c+֜n>ڃ5Mh.TUڗS"9e-ozqD(b&鍒|vu{LXw}H+dB ;84pLHb`\uƮQ1@A6Rs(]JE9Ҭ':@Eh ՗B'U8*a@Ƥض 9T9z ?jc97v/ĺc :lϡR:z;t=r)y 6!Dh_ԦQ:Z:Uw!"P~{9kN u =T`mfFS1j^A@77FsvZt x jp3?EDž5ǺA*c--; "tBjp5i3`4?;``<4jtOuVlL]@zW| Jx}"̀ MuOj:hn=gJ<Lx3>RXo/6UvC&WyvAҜr B`P'ew3H$_ow'lncs>&_mZh?ӆR] Ԍ&ZL^'3d9)㡮%YGhu%qZ] x o{2u4;uTn?U\}|`)0:L _+P=5~\^RFxe4gӗ8;s0N1C?iū_}HMk載d Mp&n]@Z,Cp&94џx\f}f5 }Sv)s;0ALz\YK G?DUxD篅5Bu~.\  ^7z!y 26.Lƽ~xF{g[2A<4v,]祬 #ps%yAjssx8='*9`Hy[S+4TvQ*p* Н" d=ER;|%0AuEم~DE٢١]i3Dk!zvR"R90)͕5@O{5^|;,0rc](ԁ}%6}/YQV¬k6X&3Ӻ{xv#yeh < }R݌@&=3kluҜ(4״m' 0/O6^{i) [Gر` &6 U 5yfO;z%9:ֲzOJۓ!1%H4I5Rn&/SŠO[e[&D(> lF(Elʹ8(Af+!J8h`wYbꝳ](2$Lm盕gYTF0N|$4tܠSմ08N+ whsS!löčtrܹlfugr|L]:`ͅd|Utҹm@ MNѼE<Ş`='2'niMEA9e6pVBR|P! C2/ryk=I-4W W1gilԌVo}G!V(~I(̊11VHӲiБfd$Em.\ls] $,Dj>2{?[/@\!m13O2рB68aх+|k|k$|Sg9 `!9Al eK9۔7^,Ͼ; b'Nl^cW`IpWMy0WtV}cGacjA˿%'фN(+\Dr;bBˏ] y) G Vxnj6^ ZY{BI/l(cOӡPKaGHv]vRz" +-i>@+GB!1L&{:?_<u=ݓ2 %XfqM#rqr .8BO ]zGjk#:dK52| G-%DO#$G/1xn͌u}a96v t!S:AAAfEwS +JF3w0BytL3K:VO(b+}jRv~ ȓ'~n,5+`)j[boD2oT%49_ЋMϗ.k&6;|\BtăƱEw/G!L:TJob{@n 7Mg@7Päړ$ TlYVc&eoEZ1(x/]W5{Oϳ=9=ԊYt?'<̷X i>R wOuCfŝ[py}lTxjDzG 7c#{5m #]GZ {x+;8}$«"M~_NEp)f9̭+};r*.FZXdROTx??ŦT DS?4N9t0&U簰ٸ<tHP v7 0!e$K;ȰEZS&FP٠EU^֛Jg[1c   `2(p4H?zӆMRwgk2&{gV|Kt,[i/ @x8i( /X,=}r(// cOi#:5& m[/}4d ظꃵBG?.ވS UoTE{!_}vEЦ,'ۈXCg5Bu/v_ IMU $mc V 5 s:Ur.s[.(Y۶1r6ZT_XRq'M"b+NuW8D5um:0G4i$XL?;#6V?{-Ϭ>dW6o[SXyiһwhE!د~hx7@ 9Ʈ;ΒO'B ah>5K޳ jhRREY8ex teA? ogk//|ugm%~U<)s/ܸ7SW%LY[])8̔"[gT,%rqt2fĹQo\e!_oO&ز=>ڈ=:OUSh=:n̗WQ(696ɢuo ՓQ{{8;՟w l{VdH?OzcR#O)p&OÓHٲ7S׬i46O]/}A5EuE@VЫ\4mqu0]bð; ѯ_A [`>twP e =C1UJx(rFXd*\54(kF21JJ'n(gQE4'Hَ!'"#~bmY’$5غp8rn'M=xuu%$6m@?| $ZJYƓ=\5OAtL| rTX7Q+_t")olʮ|x >|StP4Ji2-(;Nbt)^۫_ms0i XS,`-974)w,nʹFScħ8PZqCK꼠=!h}8۽t-ldϠ Z[8+fnq) H)83E6&4f1!# 9HFoIF&/c `QޞAدzV3_@()t+ϙM}FJQ"LvH7iJYqS)=ljHpHk>_4c HK,UncR:;ڶ3dl%ݞOD.([YX#a-ږ/oFD+KzMD N 3kЌc΍U tR829|j>1nyN1=tem@o}MF[u>D9#1Ћ`gcsj4F"Lzc]2] L1Xٱ^(^}[ұϩZεe_ON&gGbej؍Pg꜊4qKY $Ϛ@ 4ϱk]s lI9;\|"ũ /Y*VC)vܱvk׼/m <ةn]yr+.8t 7%9.زƘZ=ۂp8pf&ƮRcWnV+ujJ3.UyKҫsZ7C))Nny ްf 8u^/48S~45^GbH4tI`=9ЌEYq@N JL@ `?$,{y{@aTY$Of*V,u^CL*J'ҍ5L-c_'( #$P,Sq2uiS߻4,D'/v258kw EEyTk ܆)_y.# t(JS| -+ |rk$83c$xuݶ1܇PN0Z#R&p;ǗMJ .K@G*P\SpD*_Jh0u U3RԸ^eI=ڈ$#c3y&ZŹp߄e>[m2˫v?}9f@ܘeM+x DW)t4Mh[Gj]9D'^mi[uWyTă0hOdh(C /;^.ZTcqq/rbGPѨHi7/0j"VVϝ -eGS[kcerz8tPw aTbKiP! ΀purN١S LN#G]_%Y 8_O5,,:42z=B62̌׳Fq/,|3Ĺ%(g lhל9}iSGEZ= 7{;6V Zx=a$,v:6pˉ^ e|o2zֽuh$`)k@W 8EL=_oJZiׂ3ݵwR'9(9SsioGcoT~`AQ9 +X.(d܋K/;_Nhʩ)bU ׿'Cw`D,x:M6^m^zzNct=ݏ;Ѱn>qO%~_d>34+$E > PP6 ]T0أiQ%uE EEd&* rMngX2v;t.Z=.0I߮qٍ#kF>` EI}u{ x\{C]e;)96ӈcQSeF{7ߓ=Z' @sf4Bv30[b*mj45OcU{O[TEC:oV9Jb l'l*/Jppֳ :MAf$Ϻ 8_Ǝh&_#F찞r^R[=m,"(RrJy']rc#c2i&멫/eC_5r(੤]]vi!t 둢ڈ)DR9J֮3yVN;hn,0?DG t؟ÇYzo\Z(|YJ`/jLz񃀜tZZtE/sVW[BLf)7:IO6.n+ {wR^moKg]:6KrBvt9rj')t=°z#ыGlN.b fQ\]һ*[Q;VWRGAJ5&2JMs?cUi&*b*XQ`e8I6~jG9vc R[CugMh#sFA1lA_yg|u>m>X NXoӂC`6+8ə87R'm%<_k;Yh@_= GuՊRtC]l_ms%XC s76Ru#">ȜZ>YkמJ2 Ps Av퓆4V҇B<0*i{Rh ̟٤O0-H20G pRtkthkO`0ب>W(~WpgLX$1$jBWPkB2AS#V鼼lj?ػ~gtYK? %d_``PseH1$VnZ!|tpPu=:<2TYyR! l!tvDb&|\1H*j޺Ϩ,mCFrQt6RH"HĊLiJ)uM.r 6v҈b`#J_ f,Hs uZYYIyYay*\(dAu)ͧ=ђG jR: 8ʟ^v#]{XV͛} B-hXF6|[r[OU2?z]0^ _q򨜣niRub׫zmp\fsRX,?1R;O_`7]Yx.]a8;B+ Vҿ h2j gۜzTSƳmސ\ S̨gS m=|0fgZ8çDݼ!2BښFKf03<ߍу!Omz9IT"WI3 (~Jͻ?S&bLϻC>ޛF0K%0iK\FyH=ЧA1c;~>QGď3T2tN]1tUPaX׸ǝQRHD7K|r";KEblļ]ryEdXBqiWV5.P,R [c6D'|'j7 m:N= TVd x*6a}%_q-XF6mVmЕ#@WC{́HhW<@&Fsǥ jw 7JQܘo smx_\ECFGndq3K0])E Ud#5p{ B˫f`"0}.n#'G5|i ڴ~<}p5C#J4޾h G#şlEEi κvIA{reZ!yf_uy 9~%BCe!a@gǴqZ|^r0@k G}_4oh~*7;XB^(L?m n@G[1,%6 |Vm7mt8ۺQKX!06:w0VwrklJ}DY@X,;6]f)aeThbDrtOiᬕRCT@e`TK]֐~mGk'iAј 'ɏEAՔ^-Hܫ\;3Ħo lC<[%Deg#͂":Dd /)lWp/)PMTB';x 5J慉496< qA!UB 5hA Pi=;yzEr]wA%C!d\ aYxʒZ1 mFGf82pe&@k> @0ޣvX!`-8*vE5& gyU'C \?:W_ ^ӳ.G#/Մ"c=1,?L--HZ5ĉq~іRo|sۺP1k ^NPZBy{ֱ}.F;j0Zr`">WY{ wb @6w[cvj+Pnϓ@׹ݎ`8@lm{OH*ӏ2p ǘyw:۰353=Xt}O?pnYД˗?ь_W絅Cl+Ů 4P3ۂAnaC5&|"rߛ4J[]\3eʘ5q&Myֻ34@W[uCn8n{OZZ F tڀ P% n5f*`3.;I,RUW,qI*Q"EVs!*UkH5Des7%A2Qm8>)Fhv/gpFe/r5#f&O$ 羞Y GqzYu0<#Є({@ u~~{_SmD"MPxa-;9\ɁD0,}'Op[h"qqھǔ 8jtl5) O6;?RJcecf+A+grcW_d#y,j#< KoLYAx i'^4GԀٝB$9ØgP8en(<e Lu22B^~e"IC,xp ynE >ˏC'49f0&{瑑6$SPK M#W0=Knm@8K`]W`) u %Y'pt?4=ObmlKI\/4׭O(RM*&hÕ˗xͷ֯ JcfŁi'%HQOόj*N˫5dSBxiMr~P֤/t9ַ^t^xINv.YG%5)ݲY:hŖxŢSWA`D:[>'@ Є>G4͍"Gc5"rX@z=OWbXD%r YUD"}( FN9YX;a aNx巟3%`b5t*=*1^=pP[#+Ε"f(KB,xÍ8%]hMc\~|!]  Lb`hB|Μߝ%cX)ciHxeC7W -ج%Fܽ j,LzC!38T׉<^.@JWWWzKj,apK7 #cz]gk BpX޳5Vb~F()_{ `)[R8>T1j8'xvFcD3R7% !1/Tx R)R1B)[S:hKi} lyua%'(/AĘЖ<5\!$ĭl_k^yvS tVت-Gq 9R+͢VU2yq83! iYo@N1wXAT=RK癿_мP7:ZbUhYnIQ~EޚvfP'!cr0ewJZ i$!D-ć[Zd LItj6$v@Wah.zya _É=nIIWE^9M#p(ʇk4y.^Fnys\^xXõ8,I}maq$AQGzp` 6˾O{vm12!s-G3ϓaK;ӇUS[|7({I-QZZGazMPTмdHJ|⥃ddWSg0hм7H! 4D зZ"oNP|EtC}XL=A{KUv}Ijk(h#}5|-ZCLsk?Xy&]>[g859\ agyDfR8]RzlU[8ĭ&qۧ<5Uɫ5PD'QYdq(h*p,2Z:_^w0o_EGʈ^XۍX$lyQF`( eA%7>aA7hQ2>6m6&//0lZp6c!ơ{rY EEIpB \o= /sܳ??$V`@ _Z$jlM_r. |mFR0"13MrT;}YmgU~Qeqh*ˆ0OlXQ jY9|/-]= q(v 6Rٰq[р;`}>X7j5UVDSnȇ2_ Ԝ.kIÍ{uq`kp#/ H Y*= &PZc"oO>ewHc$ P3p(!?j!f1~T%<=v`<! pNI,)5ߎ`K׉P 6;\]Ɛ^(1ݗJ [nׂz%&!amہt#X1iFq%J4%gVzOVMn/z͓Cc4uvPc8?AȎS0e6|F +Hu xP(ЇPnY= :LX R[m鐆P9Z+sJHwd~,7S)Y#Yqa{e[sEa~Aw&gKZseøپ|4w0^mkKW.|OgB*>Ir vH {fB-8ЄdK,6uvS#XOL5Iۮt -"K=D( Ѻ$[(8]Th9<+?~҇]6&YKq ␯Nې6dN$> s'}rC"#_l[t*DH}k<(I\.1ޕ hP2*aNujPl݈؅Zx) 49B]gp̄dЄ5b_\ &B޵KFX?A}m!,L *oZY\bFW_,8ޑ\}7`mX ( xGP3jr]R{oi>X-srR"38 nC(HosUzK]jp\ĉֺ`\VL<2d:J "2`<l1b֜+nݚ6q 4Uܪ T\fΧ'rE!o W~d*!ί ATPSjcJZ)Õ_ΚGx ]= _O30QaꉋH{)1\fZɁْOBLB;!9AmǑd4*-B'Qu#؊?_&eoD ʦe)/n6@aq` yߕmjœOަ&lZg<& n4SaK˻b);`o7DF9AIv aD{ɽ?r(q&7%>E6C,όm}`c"Ag쪰 V#PVcZBG_TK#6d6clfNTB,qVՎg(^݋2m4:g7L.,opF#] 8E~|{c5yQHVl,~(\6+ݤ7{lB !H518mDԣ*^J.zS,44S^r8i"0)?i@=rݑz,i d[du[gYh+d._z$s/u>f?DA=7|ځ Iuye!W|m(._0#mɞ,&6&Cm) A(]A81бV*7ZsY ^%捝:IS;(.I~/۳ZK A-PÿE\-zX(w,-O+ʹ1q&_9] #ߦ1E ezyW" ~7FfdmZP_ , PrJ#OxJS|J_7@^:06wS,A[WLU#b|a7bm{`kZT,/\*Ƨe,{'peR'w".Z2U#m2Ln 9Z4$=V(v!uP2'Gd#o{sJqu_lsGv\.)ṳ|gJLӥ; `t:^XRB AB&!ǟDfaژiN3tɘقNr;TϏ\-ϵӻkgѮ)]`c[9գ5:L+Wp΃GX6 VMŻ 5l 5I,KK >Eq-Dm##=+rHxDT>C,~oA/ˮ<@p}:jzZ$oA ~ȒE=jl]]ܮ,bNHP'b>X6^ aTq0fo\ˌif,^: [{dzW`Th f)WIp0*g@ΑN@M$)m%?unN j^+RƟEm*DC tm,B·Sv~;k ( y@qB :OR.5p&aqB+"m\lD+on ᅪ:E=e}(8}e4ʮxAx3n7gbG. ﭂7|ڭ"ՆRCͳ2ߎ].x}}Z)μ(|Y>@`\aVy}#ҧ葋ހs'E[dԠB nIckFπH@.ٙTT7{45RGcf,Ki1a֮{j~=&Lv<;e,sU3GRH//!CvJ+8L̅Ɍ"6 _x U. 1yÇ;Rdzxyr3)tR81K [#Í2L6N~ʓB ✅ழ2{JE4 SQUĻyg5[t3<6?s(.jX,M;D}TB_SrUeVmT鶢`"ܩAҩ9n ._2!!"D_k?^o,.$iϺϷbM@ޫĽ\N8;&h{O3A..oZ;UID ]D䚀68F(鲧Tx?x5I_qD0עȁk3ІrRum ۔\%&yq9S$"`dO1RC|<XD|Fc ȮS;pq4R@n얹m[[ H>S!HR^ Ӏ }ծPGb!fk,tfsH4haM}k B~[aϏ`jI@DtٙBԾ_BF8rD-[p$ xeª0 ž|2..u@u%FYݿK_k/'"'*. 5S@3yla "AL#N!\ɩ3}om4LE杅˒88BلxA4lv?`zgg]cfTgy2 #RD ?r8}{dϋ[ȎXOa[JK{vwYYwspX(i*Ng|eg2]mfՀ {x07ߪ?~lVaeh1(vͨA a,e,J @mNkgPjU+WA!~yvoSFt ʍH"( )\9R#mŀ.wz#˚ -M8Bɇ&D7w F*%rQܧh*}PÐ#v 2 ӒBы9m͆H,hymrJsP,Z'hg7T-f.m JcX# Ki sK =NUB*kșנ:αP_CAr|A[R*w hPn/EP\[d-U/9.K,6͔jz\C+4f[X4ȗcT؉|ëj2@*5 ك'0QLngO9K$ n(%_T ,0?6瑲V[+|d7`l+M\0OK8Zv Dz3ꉟ{sޛ.*VʪV z-NRŌ,)3}oes՚Ze|{AEhTC .eQ15d{DEHeȠHY~̘r%&փ٤=;e~{c,*bR^!R7@Y]*wZe}Hv2u)GO^v Rv㾯<2}IPQ%0:m(o|0,=+2Ofh֨vοX<E\4Ka3}<*®,=j֮0B+&]]q'8$iuk JSՉLo lăR to niڪ3|k,F0'ƒf'g" [%gZS‰kwn% v JѶxnƃiE6!'61\5i'gBW;\D| 93wIЪ!.bD,9XnjޅytR 4$aP227Pjb(ҫijQkPu@{\^r5|߳8~Mdˌ/uΛYbݭ 6CvX3s_L Z6ecOTكnY0jECDC-vmw։&kOօ: }5,m4iO`^]It~p2aN7?F 6lWUhIr@"i umR\M<}KGڜjztMQ9V*p<PK%'S=PpkrFtC ,+l+clj\7H-@}L Nm%%)M[Y< +w18ЌZŮB?nQ PIrޅn\D S~Aj:M: k ekY|%3_A]8KJ(@6v"W%nA7޾UdOzHó@"f!۲9z}t&iEZkS1}zƛO&OZ{sLjU%ÈgKseyd]׈hD':HQ&C3[Y|\7?m'>1/aSh6z2? SmSrJxLQ m6 x12t[%jau8zo՜M;п{Xt1g+q7TLA`WiYw+#SQb"OM;pe,`ɮhܝ 2 <0*pݽ]p@#Xܬ]>J90Q/9&H"&+zxiV \o*4Y`=S2a?6=}N]AuxУ/lșB0P1.3YQ&M[5`nj4Z+L.cę>mow;ECƜ^Vq7cy=_UL6I#o2ҠBH*tGl)`qV;ئ(m5Ãkb*f 8"Jh6" {9G<V?I#d+~/Wm.Hg!&٠ҔS[2L@7OAԽTT,4-3ƙ(Ҽ;NkkG~30Q-"*Վ#fDRU±6> f\9l,\}pS/CiQv" swf1OSNS2c?h !pz0cMy _JYdL8~"|i?P|ն xa~oTƄǾs~z,J*4x~޴ܼhnDiGJ**ӮȜMJpOH]܆}x!M5Cg<=;uqKgW"nL%j Rl dt@7= Y9ofG2_Lus-n%ˮ|Jg256@aؑ%XΛf0)GanTO5c"KK CV[zZ8a`@-!"!rbt/g I*H,.9"VE\F@E4?7SM65M|ø.ZEoe,>dl*עNW+fńQVhUL\ @.}Fpv RXBe2)0f#1hLYy g,"6Pc'UGo uՐ(d5bV}"..S$u;$'<543]Jj70@71)7nn$}%cغԫ\pʣݸ4CC~%Gc3D] ff!J5\NeCHVjvqH5stNQ`1ƿOBe3˩n6l<"f Ѐq:5<Du7uo/5l`&ɮ8yνizEvb8\60Ur g_z8F&KKGۖU~qۢ#Kt}> C)4CD(e(ңމ(mn@򦷾G4?=Fj !U5.OޔYed_{5MSMqKݖ(gP6HmiTâbpn,CC O>7VJ|ahI6< v[ ,KOQ[Li΢sf\peHlq0*Gs׈"oNkm{ɞ uZ pS2"c>41}ai9:*KntoqeK#̳Ga Cf(J161>xDѴ==0+%2Fqȱ&0p\XeVxN[O=ap^u˃$j Ed|8-sa,AHFde:ctT\tøC[FzDjnaUP#j,T㽷) SGۍj!Qt_[- Y` ݖ5ȃK._IKUN8¶MOn{a ^Mkq)az6 b G VC~smځk),mT&xWcB~itj LBWHM8Lu%?}i(G@щ%D6&ـBP:4H€-a.Waͷ"1~wlcr@U~鰀m8wbpid*YGr v/6_6=d " Qȃ0 cf5g6M䚦{Qc}17x qu^u^lԜoҾݐ'58vNyyWb+f167o{/ qS7T_Zp%j|F[HBnG1BBEan/q?'p!U՚^v e%AyPXIC<dԉվ5Np +~R?"JL|8@C`p KJ W\N$}QezyI&v>6aik%3 ]WO% nc>Nӯ v=)l}ڥ1+-w{P3#ɼr>t |aeVH$Vj3g..+I‹}V{Iop'HzwI߃TtKӽ\MMI̓vUBY?Rh"- s_$ iKIŜ 4t9pY^N) ;%j>G 1}{I6W*&$'K@ꢎ;Q8?,AƐ8{[e/.~&|!hTMV`=z'>Ѿثd$ke15eX:*ڙ?9ajYP0{<婢8=a9qmQT%1v`5܏Zd# "Sxl55E20`Dx؁F5ְ^6BU:'ԫEm0Ep'A[^d<]p;(GQ8}`tG.:.>w4rί[̦z 8 C},fsk/nhvΧuݫ Ǜ⚐C\Z%^Hͣt%s-m?&HBķ"嫨革n'lq숬 t[FW*+"Ǽ^S׭=Fql]7hS/,؇CFD&K-`#HBgݳ;ڰ{.ǠʫD'7C `D@.{7 1& FkҊgM`U+63VBqQ1m[vgDG }%؀;g쒉X%[en2vaW"U7]mrXX=yZyP9ϴ>2βJ 6[*K琡xi-.s^8E"ԑ0 %k*X l-7ۏ΢gYh8]"] P)i\msGD*!JF- DZkO-.>4uWۢuZ8}}VZM"T#> ܧtt](3ʫFRWxq{=i|V u9FxDyk\yӷ[@AWޣY֐{ri =~="Чj[%Ψ<] ń )s݅Ϛ ;`Cx;FyFY*'L^xM>01ʠP-7kqUp:|zP}1fA*z׎!bn1f l"ֈ3b6Ab DRڒaY3x=fugFǁO?c M%BC]5 ɸF'G\znXhE1N&KIvY#9| jۗZVg8E%  "J; kwUN3?S+GAShfxk9/|׀>Ir&~{#Gs.vR\F5QX^Wa,;oMm޵Ta`GC"/gt֚!h:O/[ԅ W4c\^An0.[;%51uM D "l`2E9,!LLL/6 }AVZ+bs+˂n4 g%/DC󿌵)^#7iof~ǟ<*S6f WM#Fƥyw{uԏ:Ƀ &TbGmn;5 %;l){-~GrT|(PG/`BiZV rzJgy0mA5|a ^-rJ>`BD8"m_M8>IBs M %Q]#).+Zx+!^4I UvRwcKp!4ׅzǰpu m[m̓ax*<5 !3H;y#RIE[Iro[T+U.7 $p5@K|<02`r)a=]<Nس)egt6xiOr\g c"ZLU܍,㏪2>.>ΓLL èʚv@EUMX.YΠm!RW#o8$m rޝ+WabŪvwQ! 5 m(퐻 M3TpW|OXT+iCGm'}G.Z!:0bK3A?w a u8$#Ɨfs5]vb_Kf.َ10b Dόy붅X8eg%!YvQuhɊEgF4yrxwc-B'>4&% L&{H\v|b4yɕUG@-'!M_r hV]B\ܦ#^i$8I``qd=»՛9c+iRC# A9jݙF@ˉr~8pkpc @&aqp'V-嬨\A1ig̵̓=B9Vy8;Jdǧ`#L0V[ e W^{*b Kz $ _Ll'@9ʖJOZ9Àla^57S00:(Z-ҋP`#jN#]k?^PW6\tRt>{e9mieNC7ZT5Xʪy~pièǛ-V3.xYfH`_$̮;Fd) 6d)Gs͗&RphWOV}s=ܻH({6Ɂ%.ۣ#0`Xm׶2VFF> "≭gNƾSflwHzJFK:1eG@'G‰ Ӄ+1wfߚc(D|Ln%6mLebGuj蕠 9VgbD׳79Ĕf;oj"6β,yI" ȝLnzw:݈{F>4D(sWq x6BF621~pRw!Ac4yba'ab p^=sMhau( 47:'9[Qd`cZ)g^ehd3ZTB BH* a)cq<4+jCD5fp$Cq( :RO577vd^sZ I BK;txg]9UFݦ|1LVdLJk\^KyIE}/$hw5 ˖ W  [Ϙ{'ѦvcjHF7.{yAF$  j!OWn(D{NHD' ohex9M/jvh7+\-P[XKI|<(B>Wó`rv ׫ reUVmCVߣZ*0\}w((m|Jy^Gj2*\|qd.I ( .q<-]/4Tm5׋ThWIxR*/C3j۞|dr|]jnW2POW#\c*59y}]qG_~7T?H3堌[) n>'t 7\Ap[VзcMni~@&uͲNC* "wJT_e~sBx[.d܍rHӃ:H`pttl⊖Kzd*l0i YdĎL˜N8C1T8cAq2!Il鼓UE4m`5)w730"Gi|\gF|O@Ӂ\#'#_2cD Jsza ˫J+i||x$Nyeo*hax$˱/FޞX Tí}HX"P+?AV9 kĞk(} Xf 4OA۲s1pq=mxD}t*G2_KsE->i/ȌvO>0TmLl=b|6e.=ghJڅjC7 AeUSA/Aw0Žg̠)-4U F§wh`Tw8Ex>5&rO5Uk_gQ[(yr:P&-ȺoんDnW__̡;ͭ#dD]Xi˪Ee̜6>](zg9_4D9vE>z/ Z,>{ &q7!Wm8tEO&o|<}{#"or>I Tx_`{$ͻ `RoeE"z>,N #DI=K;kŬxO%X˞/H@D qe w|X.`DDxNJw|olW\x_1jx"DG #"_掌o0(\@?Lw4#p11?NGh .97t^MpsW4OƛTTZ?o'~@A8+#],D 7DA?!HݭEpC'RHJ(1DRR6$P>:$$ KKg 6PR< إ^wI8[י+ ufXImSo@5-fWe-'Y}wI`Zj=lUfc(u|.X#dZYUr+u8! ImMjk*exl,Uė5$cv$@ e+dUsHZ՟;WK^ACq;̙'a3'g=v^oqV"'ۼց˛+a6Eb"kFѴǻIlk:61K$'}ۓݵzxHJ. ޘg6uIo>T7_XU/b5ODAo'Ii`ȜEg)`YXx'"z/̦} d_d {np=2 ˴l(O9LLؖ0tӺlנP#wV얰ZkEI pv6߷xArM!y W%?\8~~z rp*xbfDKKs/:lM<$*$S)&uxHYكN}f8.-e2֗a2h'֘!m ?IIje% 4f0k&8Z*/G(7}A IkXq JUX3 xHH#|NY<\FlUN|@HU"{QGM,åh. %l-٣X.Os”MވaIWauŔJ<=BVIVCR--3,FRB`pyۣP9 o\&~:2 6I&6;4g~=_aurG6_MJ~tƐܿY@ œEtS`[)3(c攌A04ܲ[fU:a]H^ANƾGeVRutF̓7Ky׏;+gvp&*.p:yIk܆p+!DSM3iRy?)?vkQ֠mHB}3[hLz>$nGĚeeF2@OF HX(CW|JKb\C [zխ{a4ժY}·D63*)d[2t^^2\l[GtlGG:N:f:xpoB YB~duI,n*?TyxC#- /Q<er@}PQSx=QMVE"$n0c"ggj/0&0;ʧh]v㴃1 N Vzi!Ā g*aR.=Vh-Y5Z2V.@ƜMqEc( :4D=;TQWT7{wEjuzv07TIh{?,K-{~ǧÆy[ˣu yJ,w3nݶ.PX {G$&/on,!TƷcF/ˆyna(l&u:yLoW Ojk~Pa(F*|&eu@VoCZc&?N؅r.aI@`l;+&;xĪ 5>-TAjc4qCAD1XQ۠zSP}ᷟ aLxlI.H3JdǙ}&T|ZP?dqZfqY!i ht-t(0]p>P~zW`w(U^RDb6wCǏq0F{߹z$ 7ڥ?jHށ ԏAeOUp(v%jCϛU!U{t LLV܊NjokZp *YFB';ܲ])9R]Q .V]twEtxlteNZ-|JxB" t *Ib7~ 44JnwcXa]z/rM !<]w%QO,5DH-K!"l嚛F-'[|cZ U dcchiqw G/574󜘻{-e>"ƵO?u 3(uLskzD~;NAy_> 4\2,,5MeTDhdjp(ʻ^1*LW)-dg~kWGRF4PnxwIFݺ'Z 6uggJ贄XG9t:F?xݐQ !͉v"Z|e0 E\N\7VHzVv#MLN]-t@E<}QJJm-CYqnH@kuuW=.K " UL6LJ3Vn*sI|GYmmHy(_m<=:Fz\Ve#Ff54,|;pl;}!˽7U.% BE 4ڄNf²zHrgh"#FcvQ8. &:'"OzUarQğUFXH/5sv®=ctoXoN]]v[|^QIe:]ht"-\~gkF;kIb5K`EVՈ9 P:iګ%rOyab(e CP+e&]ɟklIWr_ &2)-i=7J>oISU(t g׻ 9KҮC/dŦ[eNsyYY?|}FU~z kf[r@J/NT)ۡߓG< ਏ(c/wXq`K"mͬJ7!2*mcׯ@sw:d 6J$w*6mW$V.M\C#(ŵs_!q5+L"V,Q9A4:w9&Dg2Lٷn+: ܯ㛪=Iõ|N=7뀺ATIqxNOAUV TmѪf뚹(vYYn]3E"?- !KlxQՐ0묯=j|dCtQRXF𴚢|_ռm4yt빰hA |bL)gմAե/ETCye (jNsJSTrJJp,;kҊ2w RA/_g5w["D2Zikv vE'8kAh֦tRfe-&u$Ȏ]ec9ˬ>"I$*[G;xI#пT $n-w#ľI躥 TMfuTǣ9}&O~j=,W $SQ@s̀ˉg2sh ][pv%sY[_T'}KaW(U.qe=C3[j!X:BM@#0#eo; kdnVm3v!=7i>9==iʖ-_q h[ sÃ)IţVNg*cX7$% qx2ɒ"d3l7_hH ~xJ(w )j)dZ^DMlcnԯJ.RuK%#X\*[]|uPOk~gCّ%P"Cnccis-L;=u` z\0iJl]e5"uh4Ro\h?RlKxؙ͖c4;b q 8c S1r$mWQ/3RhYkD޼ 6k")񔠐PHXQ0AR '!ܒaNiq_{dvlhĚحp>go ZwvNz" (4Kzoΐ&ZR??̛oM7KΗIx^&JxdB:DxW44ސЊoM_ ΍]$Rk hi'Ҧ;}~Xn3ғc: X,QJDw)I`tK4.+ F[A.-vs& O 0VSwX֪B{'hTV`8hpL:.2~Ղ3hu6;,GU2a8㗞}0rji -~b푩' g;8fTc.Qqw կz5ipF[q=)x\c  ڡ`&iò7-I $_j$rhu_\FA v$"v,k(ը*PٜP O*A);l4U%N$ ‘s2OB^]v>pCY¯vfWUno%*v=kt:F^Pˉv6n,(E}TIhz7<`7;EY.ּtozWXT`A aNfs!G}a#A9&!~^:0է2]![L?\=\ґ><՜ $lOA^zOsyHmWV턯Kmkms}PʑQ{#'\_BF^u*&#dn-027.{"o\޶BI(q`kc2$A? y\îJni(| n"XLCm@7eg<jDŽZJj+<ۃe],{rv*}1؛JfxL =c/txlq K3h%)ꓡ.zGj%]~c|_ܹr4G^AS=NAg+4=KFX{Zb_,Dq18o r:&&lF>r*QZǚPGBJ/18 qYJtWUj ԯic:*"]6`icRd!D`v{bQ FĄ9z=S4 ;_p6;)\۬B-,"G3)/)o!#2]fٳc`\&<_1!h:0\˚m֘}\5i'bJ1T-U}# i1s4v]{/Tn~+(:Pij\[akt/'5ì@^|t03njn{A['[=bŇv?t6#A=Y"$"룏ˡqIDedW #u!JchôfE1VgAY艂-_>lV<=Vq. kզ\߽ ~/?c8:C%wEbjw?0}MX=-|,9OS` r6婪;~p9*VkH=BY푟P!ƤU dܑ`DO[;6+Pc2U9G_fLurFP 2;Ys(ԓ.;˝E*?Rڎ ҆;H!Ь⎾b"-jR/>g FW%-ߤ ڱDg-uy6^\?x0Rd [ќ å)ήAf) [Nǒyug0א8ɯAcV@s?/cU+ BFmzEyBĘy 6N O+J^"?1K:ȅjszN&>7@AfHOh.>TJ%&.И,4U7ذp,;ˣƾۻ r]*&[NcMj^LѸ@%nW1{8'?S P JkmZQ>< f5st\3<M?Ѕ6P}H2YxM~):rFJ))#A֊ދƽ =<Y`G>M,z;ƠX9Cء]R$}r#k>ХEm;G̏To6Q$) 5ykL2Ts~b{XA`.҉% Ķ YZ