go1.20-openssl-doc-1.20.11.1-150000.1.14.1 >  A eQxp9|W&r^Co)7䫔Wy8#{؍C~J:lxF tvόY $UB JBjVKHyB8=FN eNUGCHn>U@ ]TҸ&o$uQNݞ:KHҲ(*uV(X@7%ہ*.P -Az7p;?d - >`dpt  " , @  P`(8 9h : FGHI0X8YD\Ā]Ĕ^bcťd&e+f.l0uDvXzzƌƐƖCgo1.20-openssl-doc1.20.11.1150000.1.14.1Go documentationGo examples and documentation.eQs390zl34 =SUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/Documentation/Otherhttps://go.dev/linuxs390xMh>i+xeQneQneQneQneQnd996fb9181360d605adb42c662c36fb5884988f29940621dfa8b7895215740e3123c14365f20daf6c31123df409b281bc131e5d1f88fbe543b1a68b5382cf6e7e9fec1047b1a8e504dc8796e5e86bfccb1423d52ee9aa8f699d16e2346b40fb9f31eb0879010f88e534ffd161f74f81be18135a5cd8d5a688369290581cb24d263ce5b7390691d66f71e60d7425026bbd3cd6c2845ccbcaa0d3c5b9af46b204crootrootrootrootrootrootrootrootrootrootgo1.20-openssl-1.20.11.1-150000.1.14.1.src.rpmgo-docgo1.20-openssl-docgo1.20-openssl-doc(s390-64)    rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1eKx@eJ&e&@e% to change directory to before performing the command, which may be useful for scripts that need to execute commands in multiple different modules. * go command: The go build and go test commands no longer accept the -i flag, which has been deprecated since Go 1.16. * go command: The go generate command now accepts -skip to skip //go:generate directives matching . * go command: The go test command now accepts -skip to skip tests, subtests, or examples matching . * go command: When the main module is located within GOPATH/src, go install no longer installs libraries for non-main packages to GOPATH/pkg, and go list no longer reports a Target field for such packages. (In module mode, compiled packages are stored in the build cache only, but a bug had caused the GOPATH install targets to unexpectedly remain in effect.) * go command: The go build, go install, and other build-related commands now support a -pgo flag that enables profile-guided optimization, which is described in more detail in the Compiler section below. The -pgo flag specifies the file path of the profile. Specifying -pgo=auto causes the go command to search for a file named default.pgo in the main package's directory and use it if present. This mode currently requires a single main package to be specified on the command line, but we plan to lift this restriction in a future release. Specifying - pgo=off turns off profile-guided optimization. * go command: The go build, go install, and other build-related commands now support a -cover flag that builds the specified target with code coverage instrumentation. This is described in more detail in the Cover section below. * go version: The go version -m command now supports reading more types of Go binaries, most notably, Windows DLLs built with go build -buildmode=c-shared and Linux binaries without execute permission. * Cgo: The go command now disables cgo by default on systems without a C toolchain. More specifically, when the CGO_ENABLED environment variable is unset, the CC environment variable is unset, and the default C compiler (typically clang or gcc) is not found in the path, CGO_ENABLED defaults to 0. As always, you can override the default by setting CGO_ENABLED explicitly. The most important effect of the default change is that when Go is installed on a system without a C compiler, it will now use pure Go builds for packages in the standard library that use cgo, instead of using pre-distributed package archives (which have been removed, as noted above) or attempting to use cgo and failing. This makes Go work better in some minimal container environments as well as on macOS, where pre-distributed package archives have not been used for cgo-based packages since Go 1.16. The packages in the standard library that use cgo are net, os/user, and plugin. On macOS, the net and os/user packages have been rewritten not to use cgo: the same code is now used for cgo and non-cgo builds as well as cross-compiled builds. On Windows, the net and os/user packages have never used cgo. On other systems, builds with cgo disabled will use a pure Go version of these packages. On macOS, the race detector has been rewritten not to use cgo: race-detector-enabled programs can be built and run without Xcode. On Linux and other Unix systems, and on Windows, a host C toolchain is required to use the race detector. * go cover: Go 1.20 supports collecting code coverage profiles for programs (applications and integration tests), as opposed to just unit tests. To collect coverage data for a program, build it with go build's -cover flag, then run the resulting binary with the environment variable GOCOVERDIR set to an output directory for coverage profiles. See the 'coverage for integration tests' landing page for more on how to get started. For details on the design and implementation, see the proposal. * go vet: Improved detection of loop variable capture by nested functions. The vet tool now reports references to loop variables following a call to T.Parallel() within subtest function bodies. Such references may observe the value of the variable from a different iteration (typically causing test cases to be skipped) or an invalid state due to unsynchronized concurrent access. * go vet: The tool also detects reference mistakes in more places. Previously it would only consider the last statement of the loop body, but now it recursively inspects the last statements within if, switch, and select statements. * go vet: New diagnostic for incorrect time formats. The vet tool now reports use of the time format 2006-02-01 (yyyy-dd-mm) with Time.Format and time.Parse. This format does not appear in common date standards, but is frequently used by mistake when attempting to use the ISO 8601 date format (yyyy-mm-dd). * Runtime: Some of the garbage collector's internal data structures were reorganized to be both more space and CPU efficient. This change reduces memory overheads and improves overall CPU performance by up to 2%. * Runtime: The garbage collector behaves less erratically with respect to goroutine assists in some circumstances. * Runtime: Go 1.20 adds a new runtime/coverage package containing APIs for writing coverage profile data at runtime from long-running and/or server programs that do not terminate via os.Exit(). * Compiler: Go 1.20 adds preview support for profile-guided optimization (PGO). PGO enables the toolchain to perform application- and workload-specific optimizations based on run-time profile information. Currently, the compiler supports pprof CPU profiles, which can be collected through usual means, such as the runtime/pprof or net/http/pprof packages. To enable PGO, pass the path of a pprof profile file via the -pgo flag to go build, as mentioned above. Go 1.20 uses PGO to more aggressively inline functions at hot call sites. Benchmarks for a representative set of Go programs show enabling profile-guided inlining optimization improves performance about 3–4%. See the PGO user guide for detailed documentation. We plan to add more profile-guided optimizations in future releases. Note that profile-guided optimization is a preview, so please use it with appropriate caution. * Compiler: The Go 1.20 compiler upgraded its front-end to use a new way of handling the compiler's internal data, which fixes several generic-types issues and enables type declarations within generic functions and methods. * Compiler: The compiler now rejects anonymous interface cycles with a compiler error by default. These arise from tricky uses of embedded interfaces and have always had subtle correctness issues, yet we have no evidence that they're actually used in practice. Assuming no reports from users adversely affected by this change, we plan to update the language specification for Go 1.22 to formally disallow them so tools authors can stop supporting them too. * Compiler: Go 1.18 and 1.19 saw regressions in build speed, largely due to the addition of support for generics and follow-on work. Go 1.20 improves build speeds by up to 10%, bringing it back in line with Go 1.17. Relative to Go 1.19, generated code performance is also generally slightly improved. * Linker: On Linux, the linker now selects the dynamic interpreter for glibc or musl at link time. * Linker: On Windows, the Go linker now supports modern LLVM-based C toolchains. * Linker: Go 1.20 uses go: and type: prefixes for compiler-generated symbols rather than go. and type.. This avoids confusion for user packages whose name starts with go.. The debug/gosym package understands this new naming convention for binaries built with Go 1.20 and newer. * Bootstrap: When building a Go release from source and GOROOT_BOOTSTRAP is not set, previous versions of Go looked for a Go 1.4 or later bootstrap toolchain in the directory $HOME/go1.4 (%HOMEDRIVE%%HOMEPATH%\go1.4 on Windows). Go 1.18 and Go 1.19 looked first for $HOME/go1.17 or $HOME/sdk/go1.17 before falling back to $HOME/go1.4, in anticipation of requiring Go 1.17 for use when bootstrapping Go 1.20. Go 1.20 does require a Go 1.17 release for bootstrapping, but we realized that we should adopt the latest point release of the bootstrap toolchain, so it requires Go 1.17.13. Go 1.20 looks for $HOME/go1.17.13 or $HOME/sdk/go1.17.13 before falling back to $HOME/go1.4 (to support systems that hard-coded the path $HOME/go1.4 but have installed a newer Go toolchain there). In the future, we plan to move the bootstrap toolchain forward approximately once a year, and in particular we expect that Go 1.22 will require the final point release of Go 1.20 for bootstrap. * Library: Go 1.20 adds a new crypto/ecdh package to provide explicit support for Elliptic Curve Diffie-Hellman key exchanges over NIST curves and Curve25519. Programs should use crypto/ecdh instead of the lower-level functionality in crypto/elliptic for ECDH, and third-party modules for more advanced use cases. * Error handling: Go 1.20 expands support for error wrapping to permit an error to wrap multiple other errors. * Error handling: An error e can wrap more than one error by providing an Unwrap method that returns a []error. * Error handling: The errors.Is and errors.As functions have been updated to inspect multiply wrapped errors. * Error handling: The fmt.Errorf function now supports multiple occurrences of the %w format verb, which will cause it to return an error that wraps all of those error operands. * Error handling: The new function errors.Join returns an error wrapping a list of errors. * HTTP ResponseController: The new "net/http".ResponseController type provides access to extended per-request functionality not handled by the "net/http".ResponseWriter interface. The ResponseController type provides a clearer, more discoverable way to add per-handler controls. Two such controls also added in Go 1.20 are SetReadDeadline and SetWriteDeadline, which allow setting per-request read and write deadlines. * New ReverseProxy Rewrite hook: The httputil.ReverseProxy forwarding proxy includes a new Rewrite hook function, superseding the previous Director hook. * archive/tar: When the GODEBUG=tarinsecurepath=0 environment variable is set, Reader.Next method will now return the error ErrInsecurePath for an entry with a file name that is an absolute path, refers to a location outside the current directory, contains invalid characters, or (on Windows) is a reserved name such as NUL. A future version of Go may disable insecure paths by default. * archive/zip: When the GODEBUG=zipinsecurepath=0 environment variable is set, NewReader will now return the error ErrInsecurePath when opening an archive which contains any file name that is an absolute path, refers to a location outside the current directory, contains invalid characters, or (on Windows) is a reserved names such as NUL. A future version of Go may disable insecure paths by default. * archive/zip: Reading from a directory file that contains file data will now return an error. The zip specification does not permit directory files to contain file data, so this change only affects reading from invalid archives. * bytes: The new CutPrefix and CutSuffix functions are like TrimPrefix and TrimSuffix but also report whether the string was trimmed. * bytes: The new Clone function allocates a copy of a byte slice. * context: The new WithCancelCause function provides a way to cancel a context with a given error. That error can be retrieved by calling the new Cause function. * crypto/ecdsa: When using supported curves, all operations are now implemented in constant time. This led to an increase in CPU time between 5% and 30%, mostly affecting P-384 and P-521. * crypto/ecdsa: The new PrivateKey.ECDH method converts an ecdsa.PrivateKey to an ecdh.PrivateKey. * crypto/ed25519: The PrivateKey.Sign method and the VerifyWithOptions function now support signing pre-hashed messages with Ed25519ph, indicated by an Options.HashFunc that returns crypto.SHA512. They also now support Ed25519ctx and Ed25519ph with context, indicated by setting the new Options.Context field. * crypto/rsa: The new field OAEPOptions.MGFHash allows configuring the MGF1 hash separately for OAEP decryption. * crypto/rsa: crypto/rsa now uses a new, safer, constant-time backend. This causes a CPU runtime increase for decryption operations between approximately 15% (RSA-2048 on amd64) and 45% (RSA-4096 on arm64), and more on 32-bit architectures. Encryption operations are approximately 20x slower than before (but still 5-10x faster than decryption). Performance is expected to improve in future releases. Programs must not modify or manually generate the fields of PrecomputedValues. * crypto/subtle: The new function XORBytes XORs two byte slices together. * crypto/tls: Parsed certificates are now shared across all clients actively using that certificate. The memory savings can be significant in programs that make many concurrent connections to a server or collection of servers sharing any part of their certificate chains. * crypto/tls: For a handshake failure due to a certificate verification failure, the TLS client and server now return an error of the new type CertificateVerificationError, which includes the presented certificates. * crypto/x509: ParsePKCS8PrivateKey and MarshalPKCS8PrivateKey now support keys of type *crypto/ecdh.PrivateKey. ParsePKIXPublicKey and MarshalPKIXPublicKey now support keys of type *crypto/ecdh.PublicKey. Parsing NIST curve keys still returns values of type *ecdsa.PublicKey and *ecdsa.PrivateKey. Use their new ECDH methods to convert to the crypto/ecdh types. * crypto/x509: The new SetFallbackRoots function allows a program to define a set of fallback root certificates in case an operating system verifier or standard platform root bundle is unavailable at runtime. It will most commonly be used with a new package, golang.org/x/crypto/x509roots/fallback, which will provide an up to date root bundle. * debug/elf: Attempts to read from a SHT_NOBITS section using Section.Data or the reader returned by Section.Open now return an error. * debug/elf: Additional R_LARCH_* constants are defined for use with LoongArch systems. * debug/elf: Additional R_PPC64_* constants are defined for use with PPC64 ELFv2 relocations. * debug/elf: The constant value for R_PPC64_SECTOFF_LO_DS is corrected, from 61 to 62. * debug/gosym: Due to a change of Go's symbol naming conventions, tools that process Go binaries should use Go 1.20's debug/gosym package to transparently handle both old and new binaries. * debug/pe: Additional IMAGE_FILE_MACHINE_RISCV* constants are defined for use with RISC-V systems. * encoding/binary: The ReadVarint and ReadUvarint functions will now return io.ErrUnexpectedEOF after reading a partial value, rather than io.EOF. * encoding/xml: The new Encoder.Close method can be used to check for unclosed elements when finished encoding. * encoding/xml: The decoder now rejects element and attribute names with more than one colon, such as , as well as namespaces that resolve to an empty string, such as xmlns:a="". * encoding/xml: The decoder now rejects elements that use different namespace prefixes in the opening and closing tag, even if those prefixes both denote the same namespace. * errors: The new Join function returns an error wrapping a list of errors. * fmt: The Errorf function supports multiple occurrences of the %w format verb, returning an error that unwraps to the list of all arguments to %w. * fmt: The new FormatString function recovers the formatting directive corresponding to a State, which can be useful in Formatter. implementations. * go/ast: The new RangeStmt.Range field records the position of the range keyword in a range statement. * go/ast: The new File.FileStart and File.FileEnd fields record the position of the start and end of the entire source file. * go/token: The new FileSet.RemoveFile method removes a file from a FileSet. Long-running programs can use this to release memory associated with files they no longer need. * go/types: The new Satisfies function reports whether a type satisfies a constraint. This change aligns with the new language semantics that distinguish satisfying a constraint from implementing an interface. * io: The new OffsetWriter wraps an underlying WriterAt and provides Seek, Write, and WriteAt methods that adjust their effective file offset position by a fixed amount. * io/fs: The new error SkipAll terminates a WalkDir immediately but successfully. * math/big: The math/big package's wide scope and input-dependent timing make it ill-suited for implementing cryptography. The cryptography packages in the standard library no longer call non-trivial Int methods on attacker-controlled inputs. In the future, the determination of whether a bug in math/big is considered a security vulnerability will depend on its wider impact on the standard library. * math/rand: The math/rand package now automatically seeds the global random number generator (used by top-level functions like Float64 and Int) with a random value, and the top-level Seed function has been deprecated. Programs that need a reproducible sequence of random numbers should prefer to allocate their own random source, using rand.New(rand.NewSource(seed)). * math/rand: Programs that need the earlier consistent global seeding behavior can set GODEBUG=randautoseed=0 in their environment. * math/rand: The top-level Read function has been deprecated. In almost all cases, crypto/rand.Read is more appropriate. * mime: The ParseMediaType function now allows duplicate parameter names, so long as the values of the names are the same. * mime/multipart: Methods of the Reader type now wrap errors returned by the underlying io.Reader. * net: The LookupCNAME function now consistently returns the contents of a CNAME record when one exists. Previously on Unix systems and when using the pure Go resolver, LookupCNAME would return an error if a CNAME record referred to a name that with no A, AAAA, or CNAME record. This change modifies LookupCNAME to match the previous behavior on Windows, allowing LookupCNAME to succeed whenever a CNAME exists. * net: Interface.Flags now includes the new flag FlagRunning, indicating an operationally active interface. An interface which is administratively configured but not active (for example, because the network cable is not connected) will have FlagUp set but not FlagRunning. * net: The new Dialer.ControlContext field contains a callback function similar to the existing Dialer.Control hook, that additionally accepts the dial context as a parameter. Control is ignored when ControlContext is not nil. * net: The Go DNS resolver recognizes the trust-ad resolver option. When options trust-ad is set in resolv.conf, the Go resolver will set the AD bit in DNS queries. The resolver does not make use of the AD bit in responses. * net: DNS resolution will detect changes to /etc/nsswitch.conf and reload the file when it changes. Checks are made at most once every five seconds, matching the previous handling of /etc/hosts and /etc/resolv.conf. * net/http: The ResponseWriter.WriteHeader function now supports sending 1xx status codes. * net/http: The new Server.DisableGeneralOptionsHandler configuration setting allows disabling the default OPTIONS * handler. * net/http: The new Transport.OnProxyConnectResponse hook is called when a Transport receives an HTTP response from a proxy for a CONNECT request. * net/http: The HTTP server now accepts HEAD requests containing a body, rather than rejecting them as invalid. * net/http: HTTP/2 stream errors returned by net/http functions may be converted to a golang.org/x/net/http2.StreamError using errors.As. * net/http: Leading and trailing spaces are trimmed from cookie names, rather than being rejected as invalid. For example, a cookie setting of "name =value" is now accepted as setting the cookie "name". * net/netip: The new IPv6LinkLocalAllRouters and IPv6Loopback functions are the net/netip equivalents of net.IPv6loopback and net.IPv6linklocalallrouters. * os: On Windows, the name NUL is no longer treated as a special case in Mkdir and Stat. * os: On Windows, File.Stat now uses the file handle to retrieve attributes when the file is a directory. Previously it would use the path passed to Open, which may no longer be the file represented by the file handle if the file has been moved or replaced. This change modifies Open to open directories without the FILE_SHARE_DELETE access, which match the behavior of regular files. * os: On Windows, File.Seek now supports seeking to the beginning of a directory. * os/exec: The new Cmd fields Cancel and WaitDelay specify the behavior of the Cmd when its associated Context is canceled or its process exits with I/O pipes still held open by a child process. * path/filepath: The new error SkipAll terminates a Walk immediately but successfully. * path/filepath: The new IsLocal function reports whether a path is lexically local to a directory. For example, if IsLocal(p) is true, then Open(p) will refer to a file that is lexically within the subtree rooted at the current directory. * reflect: The new Value.Comparable and Value.Equal methods can be used to compare two Values for equality. Comparable reports whether Equal is a valid operation for a given Value receiver. * reflect: The new Value.Grow method extends a slice to guarantee space for another n elements. * reflect: The new Value.SetZero method sets a value to be the zero value for its type. * reflect: Go 1.18 introduced Value.SetIterKey and Value.SetIterValue methods. These are optimizations: v.SetIterKey(it) is meant to be equivalent to v.Set(it.Key()). The implementations incorrectly omitted a check for use of unexported fields that was present in the unoptimized forms. Go 1.20 corrects these methods to include the unexported field check. * regexp: Go 1.19.2 and Go 1.18.7 included a security fix to the regular expression parser, making it reject very large expressions that would consume too much memory. Because Go patch releases do not introduce new API, the parser returned syntax.ErrInternalError in this case. Go 1.20 adds a more specific error, syntax.ErrLarge, which the parser now returns instead. * runtime/cgo: Go 1.20 adds new Incomplete marker type. Code generated by cgo will use cgo.Incomplete to mark an incomplete C type. * runtime/metrics: Go 1.20 adds new supported metrics, including the current GOMAXPROCS setting (/sched/gomaxprocs:threads), the number of cgo calls executed (/cgo/go-to-c-calls:calls), total mutex block time (/sync/mutex/wait/total:seconds), and various measures of time spent in garbage collection. * runtime/metrics: Time-based histogram metrics are now less precise, but take up much less memory. * runtime/pprof: Mutex profile samples are now pre-scaled, fixing an issue where old mutex profile samples would be scaled incorrectly if the sampling rate changed during execution. * runtime/pprof: Profiles collected on Windows now include memory mapping information that fixes symbolization issues for position-independent binaries. * runtime/trace: The garbage collector's background sweeper now yields less frequently, resulting in many fewer extraneous events in execution traces. * strings: The new CutPrefix and CutSuffix functions are like TrimPrefix and TrimSuffix but also report whether the string was trimmed. * sync: The new Map methods Swap, CompareAndSwap, and CompareAndDelete allow existing map entries to be updated atomically. * syscall: On FreeBSD, compatibility shims needed for FreeBSD 11 and earlier have been removed. * syscall: On Linux, additional CLONE_* constants are defined for use with the SysProcAttr.Cloneflags field. * syscall: On Linux, the new SysProcAttr.CgroupFD and SysProcAttr.UseCgroupFD fields provide a way to place a child process into a specific cgroup. * testing: The new method B.Elapsed reports the current elapsed time of the benchmark, which may be useful for calculating rates to report with ReportMetric. * time: The new time layout constants DateTime, DateOnly, and TimeOnly provide names for three of the most common layout strings used in a survey of public Go source code. * time: The new Time.Compare method compares two times. * time: Parse now ignores sub-nanosecond precision in its input, instead of reporting those digits as an error. * time: The Time.MarshalJSON method is now more strict about adherence to RFC 3339. * unicode/utf16: The new AppendRune function appends the UTF-16 encoding of a given rune to a uint16 slice, analogous to utf8.AppendRune.- go1.20rc3 (released 2023-01-12) is a release candidate version of go1.20 cut from the master branch at the revision tagged go1.20rc3. Refs boo#1206346 go1.20 release tracking- go1.20rc2 (released 2023-01-04) is a release candidate version of go1.20 cut from the master branch at the revision tagged go1.20rc2. Refs boo#1206346 go1.20 release tracking- go1.20rc1 (released 2022-12-08) is a release candidate version of go1.20 cut from the master branch at the revision tagged go1.20rc1. Refs boo#1206346 go1.20 release trackings390zl34 16998647261.20.11.11.20.11.1-150000.1.14.11.20.11.1-150000.1.14.1asm.htmlgo1.17_spec.htmlgo1.20.htmlgo_mem.htmlgo_spec.html/usr/share/doc/packages/go/1.20-openssl/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:31425/SUSE_SLE-15_Update/5c662689d2d33d8912c4fd0cfe6b49fd-go1.20-openssl.SUSE_SLE-15_Updatecpioxz5s390x-suse-linuxHTML document, UTF-8 Unicode textdž+j:sutf-873b5a23b44c353cb5746131c7f256879c26fea41db1fff045ce892048b82d033?P7zXZ !t/] crv(vX0İx_W6 KpJ_hJ;i:ļA?f9-4ee:Ls-jUs71N^_+fZA>\j${<>JC ]>;p_#@?gfJ+ qx[|9/]hEZ&¹W '2P`V{ 6gaNzs$;aTLhefɋfZ WOÓBiPl%_~~Tt2R x֌J ]fD_,Fyb_|&BUKxZܛ*wC|8?0逢3c|߁)d3_Ɂ'K7*+"Ιi^^3ֲ%}46ÖɩXhRoD`q6 쥗. JLnU_ʩhߩeYVE!FdފCѴR˜H}eg6wd ~v|=?9jw~0v^n *)^=Kʘq66b3/|60w0Min_5.;؍Pg論׃W`εk<%q"g6u%'Qo3cn=YñN2诼U,&X)]Iav1E:<5)yfK<飐(ڒ 4]*tfBX۪*ĸƭb5nW]4WoUg+*T% CܡMK/LAԳGq[M #Ri* CuiɌKPͺ| Bې "{"sv3 cz~ %Ca<ˍ`''v>ak ;קjԕ轭%:nKyζQ3级{Yu8t[3diЎ (t)$փ۽plsAb^b0iw7ܱ¡?D?kx z{y-AHUF硎CcƒцXpQº`Wn -rXWߢr<=oIWLʗaJ)70_̧aLIAvSnҧa H5Tⵜ>˿^%`UKǐ/ גwL NxAg @+neUЋћQ|gsZ79qrNFt6n8zXHŧ9c ݘD,ïuuӤqw|mjtIWX?eм߹x'xï2ƚͩ"I2d>V9+ zZI߶Z+=xfҽ'ף& Ζt}Ԟ@8KdV8xb5DVf~{a8RǛ9X;QO5.c+>n6"n:'q2{IGb0`+vKڄڛYxŁݬp[$Ui)!8XzӗuYӹ%\5Z0YV7`#1|RWV|ˁoK䰯$\qm((s^~*)dx|Ghp}|S19mGe귝-Jşv*$`MQ2 T8L|z:+N0oyW9o,oof2$y|Q <.;\ȫs/y17bd+P$9w}?DgPhWw٘A) >f푹 պU&:pR'gi9 ̾jjWÝP4baά?lW&A7ىmDh 3'=ħH<tQk mC)שʨЬ\c$/ s63:%[%e;^y\mV tm?vFae;Suow*pb嘴^j5&moS1|Vw{w<-d*,?՗6LAH ]΀":l -w%Ǥe+7Qz)JKc0oΩ*o9I"R}$H8YGRĒ5Vڧa1Br#FqN"jk8Kg`$j@on|옻  5EJi' ~9/DR1ĕ$,WӜ$ɟ})~>LX|jσu#BB{tAC p.߁,]ېlҿ e+RDj>8 m"|n!#ZQ;5+1Қ1"G<)Fb 4<_<RumXAֺp ͈@Nd"Z, =lA8 {.<)c[ľZ0C*^!:,Deϑ2 H _Ve`ȁ$SUqJ5;{f$O"3gHa6OZꞅ 0!%^fI[|U}" H]i0׵042LEnoa.+wS҇ܪUϗs}' Lw rl.m*j|S${9ˢN9Wd5iy17ez tW89ċ H`aANW)q3?KFvPY|ue"-C1I)Md߿ٹ/Ϡ0. Huxr=;L+ǀ}$wF$-FI5>V2.$U0 Cn#T=2|w:IK0LpvK=ԓKm.k=.vK8fe.$TX1:=KCGjK}P.3yR܅eܛJ)\0+Q|*+pD&䜽,.JWO(l\tji$ -|6%l]ALLKo3std{*}BL!N2y)uЗqv]# -'/,h0ؿM_T]'4{5/B/bGUz*J4׊&Vtn8Qq賸]˟$z|鐙F?/lTx:_MFe's.ϳY"xAr*U,/#tɮz7bd%-f+JVH\)PÉ}(J,@Iu%^D/ nDN. {ϭpwk<[ho:—\rRX=$kr KT|)(mt?(qIۛ;{((ID`1&P3w{T)nǗ~DW)/ 2>:]URDfONJbcǽs睒T!u<wA ,ʷ诔;L9!3n%Â+ͨ?:rG4M{jf3ǰ)A+`8Z%jvx~bOU/&(F3= Uo2*Xa1+&1<WK P|h}R_얇9 /Pq| pn'( <4#@ ;d×7-f')#pkQ U\uZVa<ySD?]jvlnE~o,u+)4l[1z)!lѸ6sFH1R`5,l,dBD名ALXeʣ- ԌlCU4<.0"rnX^H˽=5U^:Ab+2=R!zU0]4vpR!lCVfz;{G&l59xܮU]bt4ʊvFG5[<ܒr MɬretF.ɾ^9DX<<#<~2Z=ETȕ* [uXw|Q>w`-8!GTWkK" m;8SEggb7zHԉ!$cBj(L{"P꼘]A!{;+3}?PGs͇0"{kMՓLG1RL ʯL+64rʤ$t)eL^4@˻Z6gPk<(&V^_UcK~h,o3y&y lS͉R T>=F+`O^<3].RN! Dhq.- Xc(Z%,>q'_Wpva)^ÃWgnqo.$<6*0(N[zt@M#&鯊>0[{Jڒyp;kHYՆnzB\ =>"wMJ@0MhU4۔cŸ2[Z bo]<8[_jv05 FU=c!AEr ^\CP~A6(RPqS%9{^U/A,hŲYNuVl®.ǤAٝ|qm]!.Df;WxTs>ee,.x0kI܀Z)~a앶LSP1؆czxPy+ >a;I  &;꬙ %鷑*xImbØe}="SG#@bϾNJxyv2,St`+FR:i|;$ @v#r5Xi@V_Hq :!#WABVMsVCA<4X9Y(r 6}0{6?܄i} ?7j&~ɇ9!/cHE;BZ2Rgǵ&w1Nd NQg pWZlKV҆=E`!cSiB~hQ͠: O`N"v " O:s[DhIŎ︘DDbDgRfSdi3sl_Y DjMdWUeD?^o1tG{[2"+mRs}{m[z 3*{{ +#&Ɗ0 "|Xhm÷qV,)јM$fsU_e$d)*A=3VswOG1E%PMuq.?=䊸} (LBJrWfF4R[(&1#W`K'Xj ƟӇ5$T-m۷Wp|!/Mn{V&ɖ)=c7PÞ,?2hqvcslFߙu =)!<ZCTO]ٯ`Ģ9'ZfPJE4:#KO{- }*g '_!$5 o&_DBLJ[̥KRUe  'rl`IeE;:WBAYlʖo#/*x@y KӼvrDd\d=U`{gRczWoMZ]9rD*_/x4A_F(#b?!ACz}lwuy#E[cգ09UCD304 F*6|M3NH#$3o2ÇJx)j+*,{ᦦ q2{5 (>f,{a:˟J_mNTH&#4}}ܔ;7VC C[ 0WpRzfx1xQLYFd*jʻv:  0B|L٠B"D~@?>EN0u5.sx>dB.ҫg Sї ͳ i{Ca6?Bި˘h3ȓF` ꓊n;JKgbZ '& C``,֓isT ydLD  *`=SS.y>n3<}U_=Bq.K&"qSdY߉Blh$\ڂĔ/L\@7qIw}Q@Rp9(v~!ƁrU%r2oS.`MFVirŅ K=T)7;٢tϳ3pSlL AА{0s΀iGw MJTJsb?F'Bj30`i̞k#qYN;H4uc!EdyVfa(0v0!2]'}H&o* 3O8s)Qwcplq_JZE'M>\w0~G Y,*:\<ʜC=:3{";XwT;,s}vqXEӟ7{,q&T5<yb+h vjqiV 艰r?ByM>DaY 1ON/72;m 0އ{g^Ȼq@R ՍCm5ZrPٿR-f@ "zޝn 5Y:!= L'x۩vf33rA &`Wp2N3a<6D;U1qr<%*7a6_(fdHhn=N:&Q+tt\<YېDH6*sc=6*UGzH `L}MhTZ%Z.E>69#+|L,ؽZ8Ed2/ۙHv4*bַzoAO[_|u ي.AEq$qx/}T=SFgЇF;?`3b7sm[̃/_^ZG !)gTWv?Tty.{ba5T`ޕ9aC5ܟ3. Ϣ!3bT!qc2=ɇdj#SSd=1Wr#S$Y: y"!1|ዲ&w d$HH'wgнj[~`}NMû%i綌 680FhIY@5\|7ں~]A+IWlŭE$wǿzyE,ٓ^~_fC8"D?̱LMzTL҄Zc|}pƐHaRďNC9#R6*+"6-b}@`jV"{;7LK`0={K<*9( Y x0'%/o:YCT6b <!1'|y~w3A|t;ia",cu>،;YZE ,۶"p+E/jfI?be2J3XU *_nLKOu!1:AΏ2&#,zM֬]M%f7Ƕejt~,3jnFǏ WexlD[0 nU;¢B|; en0Ufi\ckߔ77c}o_Mi6EҴ`W)D8j6.K;qS@|д'RLʛKjZ~ ~Z9aѣd`YUɇnJGkBʡ]񖕺5>E]}ݎ=OQY:w.śַ1A-Ȑ恅Q֏HRL/E\rD|'L zk0UU37qei=k*%~IՄݹ>'O0RdqYK声S;ګꩢHN=z~ vS^W j+Mri,|5O7r,HpBѻeNBB~p1vŞ#]~jCHЅC9'ԓ;#c- J'p?%3q ӁM)/"i GRqh fYyhF؃An^2=P}) bERt- dnQNGaLɍ{R8E P!fܩ~HηՆkc E` Fq ~mZj0( 9.c)=^rmp uͲ9ʭAVv|1ꢯd,LƆV,s'SjrUM&coѤUۛl+⋶2+%Jd[6fUs&;aP%GȶF "ϲEKOO!h+ bЕXN9{.@ 0DQUr.2y;ϛ R=}}/%0ÿ́G^1'pJlsf -RD)(\>H<műsjMgf|mG;-=_gF,_/A>D^zA5DFB xo ' w0$zixb<n g )aPo)SgƘe&]B?&Iɂqc3dﴔ9%@*& 7';D6fب CECoo^M=C|z̒|;A'gvmSҕ y6 X,{k.ȟ0/\ c` Q}~8iS!0 lY0۩I cK_Lo`$àCB䈹4_ҿFе(.kz\weUJ 4a_;>wzlx.q*& )TQl.g#:d]%Y6Veæ[ٚ5sKcb$с櫐/ZA9r-ʽFD4 @/ۍ&$et/[;I>\l"9ΣFjae| M>&7lC/7A /V NhŦ[*OY}{6*ɥߴ@p] 'V~bMzΆ&[5k4d|d>uE_[ :emXV$,Ç2b('.VI[f-r5O:f6\-I}s}z~ RKObk*Eir4)Hgh6}7^Dm+‹(0hIqopgnjral* -6N)c>c̍Qo e|jxM P9:|vDmMےIFzW2:[8&§Xاg~a_)lYYܕZֲH! +{1<VQԱsk( 72 |뀓+PHVE~`.∅&O(#|>Ό]RB.ђK꾄$ף*$lv{KP׾u;b-OAEG|"x@h*0b&'V u]hl WaA!Qg #t_Rpt ө:CRGuSߌbƄ6 IUQH,ȅ hD gUzNr{{^?3q.4W+a&Z:c/0NS#0^,khApn& "\쩒 OQWļrfoo7@Z|#:-I%آ@ҙ.`OTE_k?.,Ru Ip5u8Ax/ ^Rg :R Fz>e_\ύ;Estsiu vvMFMfz[ Y%p6i f5'[^Ǔ^ȮIWG+cΟWE/hZ:Nw@I{KA40;j"]s-e dX@RT(^I\]$2u-={:ˌLڡq(ܡ Ԩɪ;*`]_7zAuk;KCۄ=֎HxqEfF&IِxvK3D*s"gߨ<& iΛtlnoH2*Cd( R#*#$*C|\l7~_s}HN|Ǔ#z{k"hVMP.'NW(?)`pp>w{EFF =ξdtӆX+L!rǦرOS?Joˣ~馒le`.I]VFec&94ߘ®ڥ܁5&C[]Նy,YlGup: 3UE (S~5n֯ajO*`V0J[]n1`j4ٲm4=j2\Ja Uڒ25< s.M t5C4=wi[f@"¾@僖ImK2#lݰcmM;8E$\ M.?>D}PpBP\)c&Ŷr\3Ҥ ^|ldKpbwtƆūM4PHBvkZa~pB_ɻdU!lh;'n~:U8 v`ڽ^r~ӄA!#l62b͆>TAX&|v1XR9 b1ECl*su5#ΌRL/M f3%"6=B{up.Hv>6>C)KXs!YPy]_3b=t,1)uXwgZ-) X?+rQ7M\] x|w}0#~MkN)]M+j`0C?l'tv>K<͉/R}f _4kH (WUV0~>H f ܂5Eo(> rW>UEdП4g=`"*T7tl.}] A;ͬ ּ<r_+bK\Xc Vsm@(Vu/A~)/0;:&(lN"9,+y$qy^x}"j`JVZhj/ TtAj2Ns;|]gt'Rb'dI8sXw 1#@ BTkZheyþqOqbЈrG0'#rbv!={mυӹ 篱+3S.nB ି=C~&D}{¾=EB;%E&n\'BGj3F /bkZir5S.CG׫W(DAUwvzmԤGaԠX7%`Qɚjd'rnT_=N"ҡ}ELjR2e)1hR\iߠw[P爕V7~ۢ\jɖlE8~zɢdy+̽7OITb9j.mWñ:UŰEhL+Jدf+ O%4< ,85R>{;*xg3 M4BDrV*[5ޡ)bIo`@&ߙymH'bygPc*0$^&E/iQX}UUJ4ǨTZW,fl qu~5ՄmQY5mGAs{}#5 $8ܻp&rUE ഋȴn"ֶTf_ !#sƊhC*@ uts!]9I> @|PQ2i5Y3DyŹEzA9Uȝ.p 6 Ҕ+akNU4ofu'b#=cr>!)ezJڇ_@nI=%51g@D}%[-(.n

ih=?̸e`og 3$ӎru֥^' y׺qv 9+'lHش@XԔ#k%!Ĉ" @iv**sXl=WWL/!xDZzF FvL|pF7!YhszVF:KT^LTT*̀_I)7]>BiBYִڀT1[ *4񚙁Ѥ?ow g+q=t^vc*|,c3mBNJnx*IpS7! \8*W< έ4@a[:{"fYsP:}eׇeSpq}-Qѵ\94wTwj{D0z+2.… D<뉼HjȚ[w@ EjjD@.KNX;$l@YeŠغ=Sx.^Aŕꈘ'YW4V2:Sd3,E9{[|!Ӫ7D5hSw*- mH4Y9\g(!_³O~m&J%jWv̛JSW9kYVLxA$ğbxB,)y-&3kFӅx:ft H@{Gj= bW_A&LtiMO0 T^}Eӗ!jyn?ҖϏeZ%Y,|bͨ_^~#q8ƔbtEy fƥwQӓWD:i:Jx,9N@ivb .-e>zN/j509& ؁vGע88B+1BlZMnZ 8>L1UEFT\2EPTd+59-r @ߣ$H(4:|xJ F\@aP5'1T!xzc'è&oܠn8Ѧ\18 +_(_@n/Fؙ\ZGi\XH+_=|tDGjydkP%t4I.9 2,VARRR y[?E==Z &p|yy~tw .w~ot Wӱ9=ō-5pd 4~,Jhr *4iO P* ]o"c]Ҙ1aUgddQ(A-aE3|[I?ǁrln܂rMG"dioMf8݆**BZNӶrMD~"U *x2?lˬQgw[i܃&l֩%١9S ʢƊW#Ic>DT*Wz-͐;bDžO"pO:Y,2K zJ,wCߎVI011OnP?j7(YN h wĿeY^kjrzu !Kzn vcS.1':} _QXཀ~ʠJYNa/eV5= btn۷3g$/,ZqDHnLKf@+DRZ9o\l{_ DF|p,goNƴNpNv5$a ٻ0(ܳ/1\-XZ[`ŅA$S˖J7Cޣ7ㄝkG,="mV9BT #ߛiwFJ7RmhHC^}9"`95Tw()88d&z|阤9}ps?5d`S8L"-zgh\) ̮%%UlyGǸ?ޟI9d:6:BL\ Thv6n¤FHV TՐe(>'kf[*^ t>߱O_ȁ A'ZRҲ6^S-$Sģq)U}Ȋ:hT=y딹d\6P^5>/XWir cuFHP٩M ۅsgsGiᶆKA1 f~΁Lؿw-U[s` tڤ\n#a<AMʥtn޵'գ9P[|-% ~UuDhV &-<TX' o oE@=fȧܑ٢Oޓα㵌!Hlc7d~y>7, ݀G~d!@Z} V~Bxl3&;/ʗӆWi\+̭Ǖ!aUrEO&ܹa>\{m/!MfVmi(YCGČ-St>npܾʏzX"kE`M,VM7aʽ`ށ8ߣF7U.Śk`#+@f_gم{xE QlDyIYujyq;?y6OfQβglך1|bD^-̐Te?B;1NA\eU6 #}Qq)eǜ_XҌ 0| ƚc,!vDWtA6R Eߢ}._YtL/ӓ (;PvVAGŢޥB[Bt2(UMe~ M೸g'g/^s_|[p?“ <7’-\tK|q>6f%["zv4$HWjF(ڶp[Srs(l" S}y#_'Z0وў' (vҢ0[ lJqos+S)Jl%=,.;'3qO +r)'u%Cxb!u K]ϱNnB *L$V !eH@ ]r?=6gfj= oz`fǕG&A(ʓ _vUN2Հ!S-,r,ƒnզ^1?? ~M7kGݽ_/3IV&P>S>⮢U}s4ˑjMn&UC?l4d\#HUͩ/j#F%0[1' #hN=ؗvkSsL5xc,'SWt'l%I,aH-7r4xmg$-dFJ?SFH5Gk?ZW lcfEa 8(> ~w)^8. lØ@V7rWLs.GUEc曆QH#ғQCŞp4,>-4?[ q~QvDx9wƴq]SzXzد ĈA">eoo3- Kjzļ~`AZTw!u LIݐYϦMRy]Dg^6X\<Ә057O p+@4ISAbbU0=ܥT| ^ˑw j8 *<h)E?s|o\(Q *i{["174yd QǂV^Ye. `!` dp7+,XՂIŴ^hJW|-?Ql J q&k#)G:'УuDgwP'vfHӞpe by&+12*΍-`t#+ȶH67!{>ڂZ1jLr8ze(pWW==Bݚ.8LPjn,IfM Ą]m-^JŒ$RIQ =vEM?_ϔnZcXƙ`A"S9E!=7rM&?5Li:~,ώZG jJ\n5P;=#p"3#/.:Uڸv^BwVc$%+& ӛm"KtesOi$>dnl2ۺ}gнư7uL6Ecun[Q%K[¥,2bM; ei!¬U@u(i3羺ޓe,B뜲cj> uBRm5p~dQgmPЛY¿4 ͇4KKPaG3dF.qx&%lA I3T| qs݃r*9hDw ]'/׫+QlQ,ۮ|6xݮ-i8_(5 N&&S~҅N}/oiN!LǙb'?- \U;} hi#e2\TB0C;X !穁~榑+М+bS͎ԨfN+ 4o!Ϡdq&^LSL()dIn6 [@M*&ӟk)22->0{92]3xTqӳٛ[~@YqUN@s26]Zi{dubj}rw_#q;@MRʏ[>ĀuaM*yz`о9ͨW`o-(ğ9q5Ye2[JUkˏ}ͧJAkN'ԫ'pQ~ yrVbX[3VJ\Tɝ[z{)Ԉ'kڮ?hc[r;l:647==oRxV_kN=lQP[ԉъ^44Q1.;$ Β]Nj:#m!qڬ޻,w^YՁZ5'1VFt-jO9y(Tr7dԑ|2[Ts$ j[}xڤl/'h\69mnPTNog Uak'aD>,B~uquDj?\P*Vsd,3x};}A6Z("9.f :dn$s AL}dTr|~Bk%L:) |߰0u[A(& ;C1W5sìx Ch^pd_,m"0^'츠7:apɤu [%5Pdr#;w% mAq踭hl݀һ W $ڔy/L_2?*/Mj$嵔&L,"̮aCKZ{բF0m;2TԱ'jl~d0&\"-IZaWodGzHy'Zy#ok"9$| .u{wLb70"fSYy&> !@ԛD#}9 πR5gҫփ% IwMhKa6wY%pdٌZe\A7\uEE;ggQ&S]a'\(1 J{G1~@I ^1Qh Iz^^-'hiA+ڑ)+ 7- wEsg?2\SjWPRiXzȄIA2 V;z3BҒK<5&i3r+!=0V ]5"P6Lfɷ"@O1ykQLCqY6)|:,]O!J_pAa !T%/hթlG=$P=9}0e/;s{1fSܐsEKB-?x$8 wV5Rt':RtD!:a c|ƒ¦F}C ?;K({|t#P2䨼'-ի '{PtγR>LZ .hQt?ʙ ! e ʮ1,FTDԄ,I%QZ湔a?2TBɪ߂} NpR\t[RskW)|$KkBanN› "#$M}sNP][\WMjosR۷̴W%|[nwO6? RSш%B`,5w8s5qW-J XW'Jn2'{Tmyjȷ[xk!@$=~W?=.^cg2oѺ0KZ"L:FoZ⏣2Iq#ǧJmˇnHNާ1s-5|#Cj_ Y< #ѯ{4q3x^ʁ]\#4"LʧpXW9B^kǞ/+Vbi/.఑i0# nÛ}hi!zfƿ) .1+s@ 'xഡ"Yrv* #WLEѐTf?M|+23MvJ kd e·d7n5A ,H<`vܲ~n#a@oK??e+27Vza bB#Q{-uq\߼vח^Knv)S771ͮsJQ%*c+:ۨ W$fv)/Dz]=&M-6Lίa0K3[~_8&kkI8{p7Uz 4gkQ2>]>O%{w!GmVgIKQH+3>,o+^,X$) 0z]c*ShiH ?6Ņ~^B1%3kώҰՅF J0#xC&Ӳ^fсz-#ZCwveցV)P]!e{OO *v d=.h*xp_LkTTkMv&LMm"}D\_;vsB0-H*1k*I+:7HVUEq>^w%X=|nOJOև%\LY`F7<G]s˅'7cRbXުf|>za9p[|%Ԃz9}q4.^f SB=**ntv&@;g-O&deCMyMfEkOE ATT~&k|N#aK@UQQ4D[Tϓx\"$ﻆxFa^Tzdux 1E׺Vl dk+%&q) a?̥]鞰_p6%(KP K#2'zq)Ib485GRu6>yKZ-B&(R9@۱ʐ= DhFŢB bJFS#Ju>ۗeOT{Ė1N :zmo=ʆE8H3rmbRe46LhiqQ qş`}˯5>֞ŵ"g ; &휋۽+ KBZ/6`l-De Q{%qHFUj!rKϵR1}rȦDM6է7v47?J%g1yg^7y025#GH2/~%f28 l$^Ѥ>Ђ5H[SEG SS])GLs5ى+) Ma[qB25*<6,>6mW<9d ƒuKFF.|T= ܗt>';Wb5[8*Yiݪ],^9o7yn"Ե 嵎4SK|tf['~`QoK i׾fX %[ڣ+ yH́f,k+I l*󘕭yo]͏n`4ŪhG$K&vv U,]KD( OM͛HG+RDZ7npu_ aڱ,~MxQ‹g :nKN@ۇC--˶Z޲!C_@\Cs?۟ 7"U@a'brGx9{ R<=7 jaVWG :~/}_dy˞Yބ$/!uxY3U7Qºf:ɖNw#CP-ڲ X)FL/ʶg)#C7(VQ X[]X?htJz:oV)`Z} ^rHl=FP|yntM+[y  Vf< Bwy2ۅ/J|8߻ZLDem:6lH㝾hI5Y ]gX֣ ӼtTЩ?.aEX [ ߁k*AS\ms=jXOn&bAĝ6%:n޵83{G(QP]-G}D*?޼9h;S[ /^-+v^S'Cp91 _HriX~>n0wA\9G/ A T DK%zǭ$g#Uv6Kkn ̕_Ũkrͦ#ЫY8fX@šFf7/,+ +_@^y,&{prrb]Na,0juRZQ4gӫ(*JLR VIF9$l?j>Q@%sAtVWV_qV~/^RxٲTRO_0H"h,fӃ*q>bbFU xŝh;D{ǣy 0pCQ[FOTsDWXa|ò Z8&?0t429q7GTi5N>">lVE>LxJ H;RdgE7v0.=9cNiHG#FG{w#q˲.+V\Oc"V_U%/*n3%79y.l1@}@ƚh:'P?[US{4WEq@ϐX2z8nk밋3ЄkTIXjeH;2$}; }Tnmҿ-0L S s&++" f_RcitG1޷D"B|4/gԖ&à0`fǹQn2S2#2 kP/J$ 5pԐ=|WRAQ+!."x)20L/h-3Ğ ԱiFD`w2?$c F( ٘È[r[XU 4>Ή䟏'\CԿ/cpɜuV#NlQG妡@!Q,W!%ժ?#,G6وE@}=._%FddnnXC@}bN-"υ*QOKG+Ì5?F͜"?ʿ27=Z֢ tmd3ZޤtڷMUKP;$-)uKpٲ MJWKd:a3ftJ-1OYdh.3{y<W}X[P\4ҨQLs:>mt!%x826Pm7)-9!Fڲmj?]L,Q)TWݖ-ڦFڸ[d)^JEAL0n:O909t;;/w\lJ[X~>o&ϴљڔG^T6S,jq,Oz[CyJz vSpM9/  3)JcTU7LAn'ꌈ=:?r4E4hOr@[DDbr=VCI~WL"?c0/C&p0GoPqLf:@~!HÓg%4ts+ Ss+0EwZ]}cf:hJ'qx. HǬ [lRE\_d 01˚g~4qlP ~*BZJE =ej:gӒAБ5Lkb2e/Ps<*|.-eHֶ[/y(~3NXwH1B^+,kJJ۬\lX*ՋD@oM][E_GB4o (65m!b'W:WP>@{\h3ʈ22* ]^9sbW(E~C=4T%)>'Ě;)),5|~z08yY^q8!^fju̚QGw).͓H|R@,aGB'C:.dr9p=X,s0FUV{B.'uót XlfC#&8,켴 up5:]ի" \+0w ,z8 ,G>c hx{3,Kgu)\ D3?5 I^A PY7DWnV0Di?}hyj E{D3!AQF%5Nᾒsˌ(e^{e]MNX{ɩdRr&@(AmSVHù,](ѫxrnkE4D{-a&J+8jwR--87%ԇTa u RrcPYi{J*R'C5K& ϝ zmݏ( ~_^5eр@T%IO~گ/g~`ptC$7*5s80Zdvڸhw~1n%o9ZR gx̅\bЪ5Om2/0_R3_޸uF⍿0HkBpWXeTq`gru jF,@SPV2T:ri=hGyk_g:]0Ev.A%"Am'EniױEv#3$;9")Q-1q}{vYC(0 3 2X=IoMJa' WYNR(r&:5*iJ# ~y()vB q`95"E̺^[R7]M$CmXVNH7ٍ}#cTM&9}Zѕ-ZVk[EsHjg9,Xu3eoEeH{7?n9bԎƽDҜ'ByXذ`bVszMb;P&xpEJTI(E ˯yJRsGUT5'0tS5BgnfBzIQxz;ʝ,e|ʵS=nb5~IC+,ٶ} *[Gl6 X;fT%eNz$K JH_^j$~,ĸg%q86]l T"<*[1݇ao0+V(&(G$s @-R~>X&vO9/y`GEk&G$n ~Zϣ:>Q0n[-V&+mrڧ]wצ6PTZ ؄V\ߚ?Rim{ˬ^6~Rc[h^{k$eF5[D{El΀-dlw)CxzA"K FӈRCjb I͈9,cAa*QRrI1`q{Jen-kK״Ag%~AVwbr>O_X&3IoLO] ) gLh> ! F {O׾Jу F"kj(1{哙f\dst *=P|` ;&f$zJ<0TO\mE,|#ui\МǷ96! e+nݰOXv`'"'Abq:"jZeeO2G ѡMy ys0\E \/eDuJ`?^T/U:SP>Fʛ8հH.u0+q1v*PH;S9ߜMvocd/>pY z1S( "VnqU'+y"j] +E_8Q|ܚX\ÈQFJn#z`] >''͔get| O}ؑF5# }JS5nS8xQɰM'5DqIAbr.a#&g|̀z?!~\R/eVfqݕ޲oSN;8uġ53U v4 xt̊qk YźH·:Z Y~@JPL/o[7SUB-m阧DCvǴIΞjvL{'|%_D8Tʚ0GGk"x.Nڸ6ɗdR»E*ohn|hFRbţlWo_gg@8{1i-C,H? s|?V~λ5TyƌG{tȊ"`j.]gΏ^?/uPp_& Ծ lz?ҫiMDqyNJED nREkVHvMvkB@ub#Z.Avc $(A! 1xSvbʄl1Z:MX-HΥ]xbcuޒ)}uI=b[H,WȝПn$p,6]d?zЬ_4AaVߊUx: Zul0WIw:tم $C1U4f@ƀ+wa0YAl^}<5g93f8 nU3؅ހY.@`Ÿ&!6WLV4aDKN)bbs׸t#hI峨3uS*`|%\ILZ- Qٍw5KabH)69 [ ˋg.e jX?iwR ~ώ/ؿ4 ohzo 'ڞr#*`E0[@)+R=eQ-xQKNWB#?wëJ KS-ಎyO\a.}43>;DO_h6rx%H?$Hc hb ̸K>@iܩ>-Ek㑠7!fЈr.SulGH2 OlSSwIrihs6(<$Usd[b{B*CB)hmB[7DtY_ee$pd:27ߋF+wkP q{1NN9:FQw[*!qY_YS<:qT8ɟ5A rF{9r0Y =LPQ{w\^a(7D=WU <*C0ǛH9r6qfm=?ʹ;t,{XdiFKD^>AR6y_QAlr9,^OMyDBvû b>K6 a&I` 7|=NXsW̔!$1[;dQ:ES_x$ʕDR395TR;.}c5LdA{a^ò``!ƫM "'$b Gn -jA΋yԝpb.M>j"np|1`$GA˾cSIq-k-w"U0j\H^4S4{\MLe3F+a;mDcÊ];mx<-鎯CaNr˿·$yָ<JY18QZ?,i? ?!ȇ-fC&# -Otst.n>'s 986@ v;hogz?Wݔ=rGgvL"xwmoPТŕa~-9댴3OەKW`w@̳,O1 0ݵYltSK*gRruIWR1COX]㐭9$m$[:4;~3LVbT̮Bel/Jhy$GrW]ƿN n]((&q&iZ[lVYh^Ol!G#h" :_PN+K=}_z|{CX,%ۈw]|S |EQ 1`_yUX[ùDޅ͑mK1(]1@ޤӇ,2r;gx}·]90JQE궜E+Z c`e_cVNqŸJV;o\`lI ׶)/ cXX M-ҿRY'Ih(RʑB1GA{DSZL>>(oqz<#Mu) .7m,M>[ŐJe\u;`n[c菥E*rZG6sAPyۨ[]>ե3܈ V&}Wjj{OC=7[&:7&wD /vG%Ig;aYTQBhau~gέV`I&D74\bˈi+M>6y3=4Q9>%<}@9/wOx& s<~gϠI(Ő;"?&wCۊ~unT\OZK;)-h17 ] A% zR-QLt8|_t /̶\~Ht6E][D ^pnJ#@R)piEa/~A49ѩU71M$; bS*-)Q "_VȄZ> AejW%M[kqS'ɑЩ R]S \waB(@Rń}Sc# ӍEcUJܾN"%_m{d:Yp}Zlc i7)]mB(L 9,]җ$)yZ1OV_X&V+9!fDOc"^·y<Qߺj;p Pnfl8}\hZ ˻*pPq^-9yZR?+bj:dg 3!x^6jY+5[8>wJڊ7v\xܰ:X@,.]5'@(v8'4A,[eocgU}oR5v$N.u˳XOɂi`m~Gb \tW3Ē mH;5񸄏rZ!BɡV_nchJ2;6Os(5Χb_oݮGZp<9jU& Z~q$)&,Bo,|ʴZ; ]Dk,:'gkhfAdt3ͫhNJu^W)h`]H-P *1.&]%nY[2-ixAc OVbå%j%؈xĿkdRNFA]l߲2>* J!x7(1ֳ(iYN8f Y ex}\w(8G2ף1nk~)RW9G.MݟM%#QYΒMJW֦&{H}aidOVS]PR7o(GDtd UW%SZ)T:jE[:ph@v6 BL5o`~W6xPVɏ 7 V1=#ӛ3rd[`u U|4|sG2v{o,&Ѿt76 >U1ǶxGd*C&;V bM/t1gcBZ}Ou{w(J*C2*V9hXt<;̵rFU[THXZ_C4> Mk^#i߲M_0+]ae)Yٹ paFX>PK)փ1Ev 7ݢf,pS{>]iWҋTfd=3ʍ uqn> u ?슛Oxf?>'L^;sa S:Rb % Ĝ؃OB7/ow7HoQ 'tSMՇ[WVEe81=0)n7jwm1= +ݲx/-~U\ UC׃+gNv N}+tOH[ɚ2_ :/B \*oMKb2zAJx=}'YyA $zdkț%iJsY"m^CDDO~`pS J@QdZYO1 Pe$u>sc_җ1o>heUzt|mi(Gy= _-X}U"{[%׎0~I>-/OE+^6w_+9,6 ^Bu'oRX}t3`jZm}H Q]Ccx꭬[ +n^WlL㦂 ^"8ydƈ!XGƴ8i ۰Gk4l}}>gљ"#@_ a}BZ,Oӵ`.Q dƱZa=MSra| E(q]fX97%F2lfF5Y @OͩLqsti$[TdcePFFWITi9H3*E:W)v`kK؋Q襀q$x6A#&͗8HtzTy7N!Up16bqjĐkoF08"#U|ԁo]Dx#hcχj"ѐC3j[(L࿫ksbDk'D> .x" c tiq_6Sm',QSЙVYXl_m?%uH쬷TRqͧZ.Rkb[Dvx"qϘ#} fu3 27G%*pٻ)RICQn֠Wv ևV6CSМ_̥ݬ2D F%bWuðq9tX4 OVwJ=5Ș!;#I= w}Ը&x>P֟&W@jvF{xX*/0&6[ hN|$8i Ǧy =JٝǾMBhЁLҧw)ˡ89„e4[`aH,ԓ` \z10K0Ul> D0 v4kz;oU,\j{-d7$XUwun;9sł@]^>_hr :0R_J@5IҮ$]B׊( Rnd(x`8<{veeNi~7Ue=:M{Կ (钻:ppHfV7XcyMIp io{m<dǭ Davg, &N/N=<ۍ Q aqz8,^Y:[EY6J0 Rm8\˸Mv(@u`rD7MG-bYs@RJ|L-QGN *+.kޅP=.DuoKhuv^~4IRF{uFS2 .5>!B,9/Zh?8c0Dֵ_DQQ]`_kqQ<bƨDNڭBO6d A~Ѽނ[|x=49AŸzOL;X4l7+ʺah}:lo` (ȧc+t|%XvzV+Uq2S6FNNc^7 Y Ѕ6یۢY62X?ݺsHwlTIqMo-h yi%K:F*fRnwA|A Y(ta$ XK\d:T눧aC/IV?r\1{JKTE94R":yؕ?(iT4Y6* V2e8'SZr fǪ놨})W5u`307+mT0oo6׀pEujhZJ}'٪xWı3f֡و&~5T_*\Q)'jxhYNҁnjn,M<eMr'ez3 [IYς`j퇵0eOHfs1P|n"D(% kj vq*;!a7ɮ1na_Lks.}I$o˚m{o%EZ^E9D=[[ti ͆a9is t憃@3Ṟ|TS+5GX|,:SoX5T* l oe.- GgKLݻFW*Ҕ:@e o+|a+)v%#csW]DA|%OSI1|vqܜfIQi e&n<[bpl㋜zG2ЏsHPj=02/C][I;'$fS(Gn.>j!w`AL;0޳u "K>$kd+~ P10^mKnO#;#O]k>":;`0f"O`L<(F3Zyk''O)"[BJ Hays~UrZ=^C<$7"T Ɗ%@?^ b5 ^Ah49ZIC$}>QY#@3K言Rd`Ş7ac}+_YfA ֲwR>nvpPk_J0yUItZ"m:֝(3Keɪ+C3']0tg6 <@l*+ !ʁ5t?Чj؀| ˭*,t0n4*3qn\nMdP`aioE\:tw^/,*n0^FkZ衽h}P1u&y~HB͓Xj ~騸B{a.OnPL. G#B "8I\'ᄐhbdk".:uҮ /|NPw$NSz芓6Ё3񐱑-ɼVrZ^ʣl}+U nަ텋Vx)7y6!xZ/iCP$cD"Pʰ'߿Ϸ J=s\y$Mho4+1#(̈́fsȕ'O*B~ '6Swh<1v rCXs>u l6}| SQ{,0h^v 9K]zR{l}HaqM/3Q&Yfit.=l|c~Ba=Fp̿>=̇f)zgukWM3T燢?2 mR;?ݲ1vtD?.<@VRektw#zh8[:Ow\km{ 7Cή\mguEduS<亊EG!Kde>C >l:zrt N7>N%t A;"$kxy JZ#0!ʖ'7إ-Ѱ78ۇƉ6\BP~_%Nd(0mΜ0Ǔ~>gkbր;#YYy"o2v)=ؐ4pQL"g M4ߣ# xc B!e޲Zh3twHg]"ȭл}]4Mz"o ,vϏ"@cs눕h+t4H_[k," 'b.Hdt>OTYW`ռ pzM~W_o2cd N7{p^x\;F]! 4%&PI֗ \ x5>s7ùRƵ4(M=:tD1r@|`,Ϧe>CDj8/È4fLuLm"r\Zϟ C&Xﴻ 2k!&c\8 N.PQڃڪѕfEE uE7 kaQ.5&8g d5 K"*ի}oRA'6ʤQ~pꄱƇI~!B{"_3994ZGs58φ}CʳpbVZ=5 &sؓN^W/+q C#sl PIĸm\Z%]A$e6YGG;iJۊ4ӑ+J.bA C ÂqC=%v>-jy nֆ*NGz^֒RZLɑJ88Ҫ$-X>BF&y)ױb`!kDpSWe5Q,&?|ܷS]K gSDU ݙ.,"^*йi`9q/FYj^sWƨ<2"♄MoUlU0z A:+g\v Op?fOiE0Ӥ dpvpww>vL_usdO7{q% "҉X]&$#4p*|bo,A,fQe=(=S֖#Ij쒧7Y2Ίc,Yu?P_홽U kfk]w.+6`HcH^J}S@]>Fa ;Z5fb`K2!m_WˮT5",[c m-G2~RLԄ.;U'MwzAP"["oCoӧVlj&B}٤n+{MDb最u&\}r%x O2Z@r_DusxS0aFZzX `[%U! fZ^k҂ ƇbkP;L0cH0&w/h%q8ě&7XLWZWCd6+f|&B6Ş1-L,CgfG&)\& ʞ̦LLw)$wt%uZnϫP4E796="6Qa-%{ :Uݐ' $Ӡ ;0ŠG ѩv|* ̔gIEjXA2k;jn;#+>m(:nCC8'es|,:LRG()A'Y٬'0 W[BdZ$OugCh0hf;H=ɵ5$FaB N7;jB"DaotHB"Al8V"Y ph;~#X$P縒|^թdzܑ| Ȏ1yE]KaX +s'n+󬊞=f }QDlr/d 6,ѷ[j.-uKgofYz%[-;  JUr]6 Jw9*|s'NUL;1zB;.H"*_/y\[J.`!Ċ/4fqmLA-:?6pO{GwpQv(i=5fObCb+&l\"_ۛh9V?zr4ճ fF |M]%0vy۴(y+*@ZS,ul3\%x z-ZIJ5²"'ab3wk<Q7U¡] f OgBǨP\{( Rvz^_ tlw| ZQ >jH^-6E rqAol;zc,0/t'LjѪ[ʑPP2򍶲F mD?"^l,n X=3YΩ\p}$j[8uL#A35m#.l?+b=GҎ"XXX@Nݖ%Vi46'=knIZø9LTwo\}7z>gУk3ՊrK2,cၚqyb j4tgӴ<@ l08E@aZUHc6U9BaTC(X阤*@S(A7GB7{YW*eϞmY@ T U2za _/3, ؑjr_|d*!a`s`eRYRtS_"uwۀe@M-%G8̣wqP3-wBf9~ T0#a{ %wq !-L-;F1A&4c*}ڲ6磥]7ڴ,tV@nFfiy.85n:2@E5e_jPS0raքO?x͎OW}yjYcHȦ%up3<Вdރ4 Jk%`mBzHPa (Qj34V' ej:U1@;:JTc\mFd5VL#hʥ]s)%jHI*UP66Ջ\ͺL%KZu.]eRQA$?ͻYDT?%l\Hdr)zYǥ j3e&UB+/'~Lk̝3"Vkv1>t I8* 0sRv= EѺW%qw$I%L)p @{Qn+LE;u0V#qME\+oA| eR$)/+tԞpI7 ^ˀ,؉HvyPfpV|iCwޏ5syqp>>Bygk([%@ _ (j2Y:99xbT 2, U>YJ2ri*4 `~Ջ$EBZl7ҋY*{I\JYbUM}$MBѿ"$3'b!،mU me5Š{MrZ BqWcdpJ>YH ]y%*{@[g o3d\O}sF+|DǕ#(v~F6f+8{ S.!x:w$j6 ¥j3#ޯV#-a 71Os=Ę2hU1]EלIVĢS-iOos֋+cli=o)D|9 1)sZ&mXji4&$Bɔ <7Id,+8X^ȫ~=\"lf}vk6(Ѿ[Q }v3Ȳt_霡FVˌpg>=33]mP\j)<˟4f 9:pVJm1YTRE91t+TiB |rUlhݰxyx?$zlV'lo }BByBD9 "5Z =gxUk@@r@F/Փב2pMP<@sNņ$.u@PjWl P[]}Es#+([%uTr[\f*S `sh]GSav7 h }~](y5Ɏ=֘ h|;"zF`oG6(zݗEefM-LO{LzڀdW-+fXQoD2s~qS~rp;o6#3;:ݨx 3|̎ [[G% 4/+`3LGg ΂#Ǔ@'+g,*2θ/;D~JjD;c&s*Ζ1AuLbVVc6ݧaPŜApwj.uc6=UJ/8V> (8Mtx6M(u]{N)~v3 26Dbµ&j"[~ކG%n[Ld>PR V G{bJ`gz`NVS1g,8@DM}UbS5s}+W-/2}LiL~ _䷵a+ 3׼BU\RڕX՝|Kw$<h +&fw.ݓ4>E떏=h(QF&4Xy^Xp_j#I\3=`ޖvb7<ش ]HGjJ^.T A F6=ZgjjN9E6Hj?C6Ym3~'<̶r4gdޕPIA: " j5ڌQ6H /an`)lb oy9ZSȁڱ96I ]Q/kO3YM8 w֘6r%n5udٙ2B]â[%}̀3k;'8 IU{ 櫖P&y>)q{D8Hċ1K-ܸRHKAR: 5cF] }!6*v 6l$e -WKEculM^@O& Ep5vȡn*v%"KzbtחB=糩\g9h7c}(rKe? =doyRR'>=͠MrA 黟*p[hLFUՠ"; {=];pZrL#s~4O϶.$ ]`6iEQ 8!vAn-s$5~B3  }5Rfb!U܅G:JdqYk#]$/^/yQ g*4 lEbbCkwvд0&x5BmQmh* MNen5{/tȹTa}G lyB~nYy!tlnۡm~~Xxo1qC#ym,|j䣼zyQLtD Tv§:$qbKm3E P+4}Nz+)xB 5@2j}L!4p<ռ2.r%RBR tX3Q9 kUjg/2K䨸hC(wndXZ\`-hC @GE9JId_@8TxA)mv7YfW5JpȪl{g r,s 8@"î *:8`teqy<1Q.CPtA%8HyAW {KUs XU,GZ$m~MNBjg#t#BxȵUHE)͗~DPa=nx$"cT9j^/QeAN,zN4Ja]e@Tt\Eo}jgimgAj΂J"Ы6`N]'W%L5XWY5#oYjTd}9_>wgrmg1NH KzY7dSzzdyo:×o4)B:9G{Ԅ|UlH]4Uc&3ngh՚k=2jJDWr9Mc|5rԻRJߥK{d8leHמ_}nҿ$kG#C\?[4iX#62<hzKtN8Pg[gf͏^2,:atP;^~ӆ>Wpm' #kֿ2!T&itgO^UlKB0Т?X9LHnyapXU֘KF~}&bݠ$SͳfWpFQp3<ڭ 6))\>t#)xnvE"rd}j<%Z9UEE0M)b;7iB:o%[CWP3;qe:KfkqB#qXCPBnѽb1Ñn܏ vn^4)EMC[-a6a }\q1WL ֨ Z*;+v,W@Xyߏ<[=x4UGG WJ889_X lzc 9:w;lՉVb!Ă^PƹΨf.3'Sdt}w! ojX䳢hgɴHCOdfԊ'+0x0'9yJUs^!?i 1WXҒWZ)ꉆzL\:ձ*Ǔ9w'#ZVfa-2\R_m&=P0Aw,!&RF@H*mRû)χ-JQ ˄d(c@MCNu*h js]ςʛsˡDkt 6UqD /qc>oqv-hw^h&v*f48&N׼ ߅|.$d0,ES-EΤz:W̷*` 6l蝞U0)$UO3g)`bR-4>@$1mF1BOIa}d['c>E{FhjU:NidI\Z=AKlXAk5Z(uk3?ɴ>>Ȣ9{tFR7OATf65i±D "=)u-ڴhE}-ooj9@/S Dt'JKT=`nZmf&(x"Tr9uܭH BS!)7/ 1}nV8;[xԚ>ZP0FQAp1yGZf[?1KOaYVy~(6>BYe:!˫gY-[:7:nm V|(KJ0c ӈ%H y _ =r՞tKhq,Rc% @)[Na `mghVMQ7zBP8YRF:q=^1,!.B ]=oa0]ߖE\My6OKظD+nl"s&g14~/e (Fucرry\ߍ TVV=oXmC)1^j4ChĠ't>AJtЕ]㪼-] RǽS 2MOݫbOR6 e$uf$C(P]XVf] |S>ctGc&pEԒF'%gʀG9^ bY՗)R/n(L nh~enn9Q䡆1uӤI:+eKg$s5橊&nμ Nb$C<_&&U3k~ձS]EdF0JA4"2>RiʯȭNtbEbr' ֐G|cKLMT;~ <{?s%M!NipV&U3I &|h!:y:͂(ԛ#oGi2 il;ve>n6h"2£3<|3Sԝ+\/u\g-?8Ɍx],DL1'2{`{̤Ml(N[&Qx0v"O޳ǴY~m'ƫ=5Gzw^v:bc13?0>Lf H?NuY$pTKt.2GFlÚ+QqRGDGd0['rQ-{N9tkH5X}#2kowӣ(6`|/|2 `8Q] ˮCꞈ).Q,/ٿq=[Np!J?IQDXBp3oh:e5V"֏yD;kTg~˅iqAѲI +ͳZP#hȖ$Mz&vaκNF?_CE<!IerH[ :kt7#n^&NIdQa#& @yDl`[!ܚlv}p7R_6BŊsFgVA5ؠXu?f0k\QOq.{%*wܜn%aQOӊ#yJcm"p!Wsr[f0UppJS?VzldiE£pf"g1@5?Ԍ‡;@JtvخT"&4xQscAD2#ZCXz~zLl3iq ii`oCAmtA-Hd'u1 ٓyUy,['ayHھ[#{V@x 'w5Sm=QˁW٘(6E[?Q.mYJn65SSFѬyGhlm:Xɯ>l<\דL ]^x-ȷU 1oЁ@e˛:je0~NLAΫͣүOh%q?߽<,coEL?@A๮wS hsYr8/Y4nS 3X GZwCN:tZtr@zpd|d֕ MU+}~ѸIk.#[_b<Qy4z(r{69ل'=)nA8;i+2+N,w!S%ݤTfMruۧ :q%M#-[9'Yvᖗn-yUE:+Dܜ߆ؕ޲ƺj=KL5 1 uvLxޘSƓVDvG~ve1:kbul%vȵd~>"jfD+c&~ZEcݶ/+<>t&PWR3{"Hob g>&WkspxnY#ͺ]SLwrȰEpis!$Iulh|ӥogu(0췪`)mׯ*ALk›,ܺ'f+ zR,x[ra3$;wY5&"ycbDeiyTkRA6\/ʀf{BD"tY㔱o O {<m)&orFQ @w8H+Fe%-.ϱ ;,8hh/& ҷIS~ey@PV!\> Deԡg]\ԥh,ZQ>KWK˿?-Yqț:_4'.QTs,m{`m}ú}3B  ?Ѿt|模R^C")de!*6E{91΃M?SVho)x HE|ڠE كvN8ءn1 v7=߾;Z"U.ԲGb$݂4ɀ*WK!s\)ȷ'Q\־8U0g@~D\m<=χs؈m3pl6{y=ZE9EXo(s-_mh**GKF//O+D[4dvFǮ֒%@=$.2sfe/ΥmLnobTe?ܤH>vGgt?4J;䊿04WÒ/QĈJ_ʐU _UN~<"n)bmIebv驖sT9D$k-1:,ɠP(|\%0_D䰐%y5[1"+\\S@QVq0\% W+Y߳(>5myC5)ВL8UZB$S=3gqmΕ_~+Ab4b`_OlQc`a Ll\utxa3\aac)Qۻ8?~.CKUnM%Q 5@_>%~*&&ekcY}?Q}F^ +* I`zjJϒxS -)aߖӢq{M?VLeJ<~=|%\RC?VVFZ(+92nv=Ca"%~je cy6M*WkGt@ׂm-hwUP~~\S+o w!gT?@l , Ei!J~hF]Qn-jC"k^fQ}/ua*Q9"NXw$,㣩!k)u (l0wLƵw s2elRƁzDva2)k٬7Aa%QYׯ Ч9q͍8 ]2nr[j"@k =Od`q5 e3׸*;m@k- 04Tq)sHβ[9m. LixZB޷W&N/-J H}(UQ~W+^A1]ΐk"b^|sTd} ]/GbʸH7 aĵUO!p킃@%*$4/J^aVSS n]ϢDZ,8F:'HQUE;ڂE~uۦNmYRS}4?5][pQ8q5vT R$II(/-ΘnաiomLR6TaC<0Mx^SN"Յzsb^ۉr:bk y?`sA[䛓?Nr[Y sQLz{^ϐYf S*nbYK㲠j9s2e(#Yﶂ*XMr xVN[_ ,;Ҏgn^eiMҎ;@Bٝ9Noo@N }k y@T爅8~xEfpc񌿱mIQ0ъy*MhGğ`! K`:" KųP\b>gɗĖf\S@bN#0q܏˝ˬqٳ!Qռ&R k[\aSj-h lpGcyCr=ty8Ny|'"T aQKfYl>*NI,2wukK#IȢK sV`ݯR Y@ I8#)RZp9B= ^}O=RwTr{mԈ)'*o='gG㐨+@a3Ew4 뤏 @jJx${<_*MͽA&Anz4PP`ZuvgČƈ;3n]$"Iu W>VcD4a߰GxF?\q!8ot!OnxXoaA5֛Y'sp wz תG/Wߛ Gpr,zQxa zoѓbt>EH֦"wWfMb/QzG^G=9 Dm%Qcɤ7ՓE҉&g?W2Y RKM?֤c k(/^7t(V)g<"Y"Cn(; q%:M2) Y&RXRA^ā W&j*Wِ4}C@7RNxq`olcE) A > EBta㓡 A.^͝` ]rOGU/s9ŭMjo.!Qw W (]L) ,ck7^wQITh3N"Zt8j3 k#\h ɜȻqRȻtǞ zaJ8xM9bn~B܋LPAt?y$)q/^şU){  As)` ]Ăi6!u9ddv 1k7L m=Hh@=uA#22K$A d3s>nIc\|P~i{>c`v%*U+de2e]%"CN6c1 A &#D Q{h\#Q+FR=bn/f(j蠘 %3cΣfgw=*y/nm֓@T$9Kz 0rٷ)C0l䜰B#o0;}=e&qoNTsN߹!^g$& %I=Hy΀7; frr U/grpr'BL,Eb P~αtd)(P`C!82OY>yMG5I:$\V49SR{oIT}lj%aHfw{nⓏNP]<Y*NQ$dބ*m N:ܔ?w \R,JL~Аا/LNbaemCAcTWsf0vDۓN &FLkls(Qjkߺ\h,d<_G rš:iv. %j*P`{f:IlLvK"F լ6U3@En+ Pإ{PskXJ~ϾYA~H( 8?Q5%mǐP4 #~#Għd)\-&]5lVE)n|s[l<7A6rkUD?R FMZu$& =n߲&Na#X(UЉhem4j]tXxONzrKizU曘5.{8Pnl{uW`B qTPh2ה"㮅l3B^JFRTio$i_%Ί|Ҧ}m#1/Ԅ՟T4 b`qj ۲Ρ#%SVš)pFŞ4YoWX~)8l`Z)ks?EeD_"l69ԉC@چw0K/p5XAzp vp$#Zi#%M(5^i3#YnPzVz 2\)7zIXf O2Lm W(_8/d᭱0t뢓5pN\嶯bRqVtoS#5 yVt)MFveAL7+:NC&Wۊ+^Ƌb0KNv|/{+tǧb!Mki6B󉀶iBXÓLVgjPGS9θ]İnr+StUABi.`@oR`/װќ)V7^uZyHOauMI/SޥmNəy ~~sp(*53 ZJ[I ?3)FXt7ْvduG([$xA3 m@ۈ O<;D-PER اh?HXx̊[@?H~W4Ћs6VjdQ,}*Wg gI(G}dɪtop:4\"/,0zD 46Lј:1f6mx勘ga /2,0`qݬ bW[ve2z],iۦ) egiTԱCtS,"읣$秼2f,Qb颋B)~C&J/+Ԍ9E\tYv!6X.i홁/LA/Uf&2IKϊԳx Ձ BXzID$+g~ǚeBW1-`̌m_8ȿ%ocplpTܞlDw)A<,.`‚!iv= [=dbk+H4n+c8/Gȇ`o~ִE 7' +V!Ь~pm`^l鋈r;Nm,CW㘃ME_ԍd/x2{#fxϪ-7e-0F gk4PT7,Oȿ{qXvgPpX-[Ϥ '+Lvg\O -2{ECnSZX#hhU^\쪅-LTx$°o1cIǍ16AL߂J6֠Kc,E@tw捓8Ӧ󅕞: 6RƱNsZ|#wy w[FS(6ـhSZӂt)+c&?j&x>Ls7y6ÌiA%`C31z/VV!:#9 2;,?$=SAJ+gIdxy|"rNZ䋚^ck;Cy[R_E j`%E+;r7"na7xpR&tZZ K ؛nG Rq⸋]"8o>_ev$s32fFKNfc9֤!e 0}W^C/ tkf@dF^C٥\zV\!Oo` 4X݊ 8&_cBRVО'A ا,j#m Tu';GI-QC}g/. "|OeqJLnY WEfwB8~!69e諒ַ"DPilrW@ s#SԨ蹘gZuK BRўT\ LJW~ @8n-š 6jr![5PwLР:&|sA8`*H *JsJI;yՆ^ܟ ɶL?}tCH1mw٢Zz߶PPRǬt.꺒zz$?G)ȞfI^m( xO7")A;iSpꦪr%<ijTW ujkS@U&@\)Asd(IֲJi`;NMogv)$ndM]SNFΤPs7s~i*цBPz芫{- jJ: ,y1uWFd-d݅0^-\]([GLZQX :Z?;jqrcWUgFYfbMIb]: le9B|Cߏ9n.#c :%hn {YD̈́Ÿ\goK ߾mt:f!|t6Hf̛CooQ_Z ̉Βʒqw 3Ӧ63qO؃nzF f~B6A8F"lUmmdZ蒹oA+d+$Yzj\^55s{ ̆}$Dt?'f+ʗ$CH%-N$9tj[Sw )3#P;^dcڝZGhMڲX2yu4l:y -(%e&`0n\*+8o$:XfhOt[e%2:n as5yB$-jk,)9t;Q2U$!V8}5:\"L}v=q{Gu"^Հ~5s}I9 m{.速nÁ,Sϧ"jv- yZy*[R$WvJ[H5s2zw2g4,-U3ދV3_:?­&FmIo^5A7&N[UgmlIɗY/#B>,!/tOÓ^NOcZ6`0[sGs}b; ؓr('.!Xs5 UOJfb 1PPZAyzF!NNGCǢBTٜRxa u$lBR[x{pn+!if}r\z`̬URp1dq2z-Z(>I4jۏ)Km;ؙ{X&Z {8 _y}w\*WWcġ:JJ:ZUNxmjavs!]WLwXtةz5NrvUsͶڹP7A&lVNˁTM+#D;qa$:گ}s%fGpШOdt<`*Jkɤlլ){/$RŸ:1CƎg8\=g!h8h \CcA19!?$mi |'otRKx8?{x' “vȂ+jyH\(vk?=2ս]yv`- hvUm󁵱{lW-3lMnv%L8q!+l.IslQpN$D݋ ,C1zMmQ^x$D N#8/q%'8s*5lNAV7rNiVE3}Ñ ^"UIADҁ6H%syɢ7< M3$.3ϲ%=oc l5BKζ36ىEv#g~RN# 4(ɀzVv}r"n@r%Myj_w78w3v τlyO ooXgj),;Je(&'-hs lҒByqitIe{;]qm=?In0qX5}2/ NfDO$ŷiePOu(; r"ݘ֟zIh.pb1ӴJwHVO4SJ^FVĠQ.OMcRZB[_ OL9m s=t|qvmK,4Kr*+~ _KB| ww4▦F_3ɷj@}|x]b3_i˕tmGQg݌fcR^<9|+e3JFFJ@F5л *lpW*8Ƭ\3sizyP>"<эЇ9>QFu5t\t#%߾ֱ60͌ _$<4D}f@;*7UHeX_(/'4!w̯(Ń|;IL/QDߖcpW1ҎoALcV_a[ԓ@O9M]DJ։ k82ztvg R/l 虶_n!2wr cؔ-\}UocSWC9GEWDҍac?gqY>a&|q!=q@erfoKHBC "e>k!c3,W汆w'nχ}4!@ $pfi?'&PCm+191Er,/TF%H,u@G]]H{t5<2\wX&#/_V:?Q|^պ?{sSlZ3w}{$p,o'zw@Ɏni3ǡ= v3Fy".,0_}tpZvʟ?­ň2gfj@Uq=FRZ2u)1L ۴!.Ԗ&떤pcBeŞ)Z;m-{@>Flx= r,TZo^ S‹ʶ8~c n)-ڠRiw U:ArԫYV#,<67{7zlӁ愰e˹p(_ģ*vo`D}A _S^hWٯPEgTZʗeQ8=ݦ"CCCXE U=b$R $ $#pLn.z/ά Ӳmfgy/KU 1 w~㞧"i'PHuD+ri]-gWO48>EܭdH=wx%Fn巯BuWXOg (%Yjl*2L ]PFk<ƜT y4 `sDʠBXcbme}=,ӮGb8Mᄕ1 hF֍O~E29*՚ ǽ=>36 *_,ZvEْ{ItLoKnhvɃT6w Ξӥ2+s jQt>Wί)+aJ` Nm.柗z%޾ UBcydk0r0 euLex/v5 ,tUn8+Ĩ(+\\-XFw.B%fjXR~P0گJH£IN tEp@/?H=Z1 uKJ.(ʙ ί69|cՙG rK=-3{?۸؟7#FQ{uPRih.1ϙRC+4f&EV%$] Ya{X:o[N!&0I?\U,-nàbRvz@ hh~ZA3XUDc~yЕF-]#Ƣ80%(b$J"w'Vea¨@14NPdTZ 8%b쬭OztMHWlٙnr(R?HYFzrZ-zk*[ȄdYٖ?u2s[Ә=?T*^\$g }wv\zY gpnm8a5azruF ^nnV+uяCZtnةbem˂_|phB؋fD ew^ɤy}V?(ֳj$x<t*anBS,csCMD}V`AF )M4gO =Ы8\H[*4" EH>L:dU2bʻ C_Rء7jMJ[i/z> ł AZ]ݨ;2SiBF?>EѼӁ`zAе<8Kz|]zx:ܨWcc*٬6=#=:?LQX+ DBCeg H2giL]Ȳ_&p!wt 哜ެnkcҪ{:A뽼r@L0J>!, q- }|( H7?w/kH` 6ںri!,_%G_*i/i;LF"`ukT\R9Jٱr gk@g=%Ŋj-('ɥfT!BBte[gaq'J=,.t[8C$/Ji#)44G;\ _$_BZAYй0)tL쭉J[/ E#S~RfwdLأDcw{>R'͒ޔ_soi[bWQfxcBlmc؝|q~]+з4zBCG+uy +ϹWrkIImb^ee(/dyDU.֜7 X4zRG;#eңeSr/Db:ʱ ȁ ԡ(VLEkDX\܌Hx-hzrŲxJ 4?f!Yjה3#@Z=Km7my{T? X|(9?Er_^2|e(5t7y1dʭ+EK%7C[]!ҘrR}+)Ӻl|+Fp˛@+Z~%. Is$h${T)^yQ#`'/6Ψ?@6viora.t)~Etm&>.#h1]D_d`1J}]B~NqTRJjOJd8Tfl0ޑ tVh#97.xG7:F"Z@ěPb:sg^ֹ<9/q[ѠrN7`2c,$%td<߉KBCw/o[!_+ [-@z\}UZ4l4"+}{oyedavE8s&/.2;q9U5;~ZIMZU]x^'rl;ݦ])3<ܭE}t._69-n^m('{(ȏ!Szoh6}198̥JV򳲫Cҿ9GD f1b^x}؃wwzS}ch+]غپ8KrT,s8Рp]kDPPy\Hй*޴>rsuc~!=Rs#9lMNʕ5O1eɐ2bQQht^1|Hɓh(.~G1ɾё{A|hQpn-a 7L[Ky>R8 ۠%wa?I /. uiVܢH9fjO%r*Ŭ]ty#8H#†~&J1&㦽& 檍4%mIo󡱑ՏPJS3PYT_όPW%N(2VLXx,^CfNmc( ZmK'~;.:J<^ U+P"ȇ sYL{T(3JB dԜ R<5eKwӝ21]2*=!82)73-@8)u[71A̓#4"DNl8ia^g'!Vox^= m+Vpފ#́UF`[>i+'v `?Ffqq*zjsPjN aR(t CxQ;֜Xh ͚>C$;R^{Zء*p2϶ q`ԃ۬Tf29FUI s>Fȟvy`+1xZH&2nvǩVb t;n H~s.)bXYsxߋN6Ѐ v@9-)Z/tD?i1CѪ\`~34Z jW)dǩmuYG/ڢ':jlQQnLT@1߿DW@h{'mL!Ptj_jʩ}1I{{ egbX _5Kٖz͉h{M+7,꿽e's2B. MG`"1$Y%kHP7;W,'tR޾73n,dGXcٙLWZyk1@bD/xxC@lQ( sm1Co Ÿ9>="DNEW{CXYIasrL68 s hT1U F;Gb,-ؿۿ\)i,l.ӠMz+ xoGM $ArPٻ4W]Й a~LM`ـ #}oSu1K3ϳ='9[FߠCq} ~Y>Ѣ=t-R>&(i?H;҄ʽ(g1_ϧFҡhH󾉋"p -][+@, YLfZAl<2|Uk?L̜Ry#\~4J1Ƿоo 7/5(axkJzxUփu :F,Gx btQ&,SHQT$uhᝉYWxk pwՏQ>g׋dj@/xDS vDro+ z㽞 dX ~*+ iYto K!r}Z[k 6eVksU\-ºPPsYǧrv`fL 鳙ۇjU/,ܹP=FFg҅wP:!J_ZTo8pbD5@oWL=A-կO7@Mu)Ix7fJȢWS7rKv*}p_CED|x7h*K#mL˕ ^MR]n2'u!Tgx>:y2S:a(ЩEh2cAW@*={,~(DG$T} r6J)x]!cWq2]L6sL > Tiy^cqB|W-/[(3pe`p[COfUdgL 'w{,N߃ $9ylx,˗"rl,Cy^ֳ \ø|Qlnt~D0u]Ex{L䏀RLu\- tҺ хl^+FDj#O?\b2"tA)z| 7*>h*x&j3I qtV9==&74@l4$u#EQ;_G,5_*TJ-uh?7tq9q*hAFn"5DMmdv0k]!H x}4g{E,T3%٧F~ݔA(w];B"٤>॔@!\,*٪d$$l"dv9vc*;^CV/]a&t<1'v 0!.V0{@"]ʭ3($ $]h)JEW>-JBqR 撍iA wcqRmrvHfc_1E=2,DO~%FZ \4Tdr` ]Z|Z7qBc68"}B.faWQq,A^{oTGz*$gˋ~&37a7ufCn I Jș-:S@U\=x@bլSkS4fl si6Z"m鶩FR̛;ov^;*xEXh<۴ǕDpk uZ뢢D6Xsҷ_K+WH蠽G6@ݵ u< XƢ!LczԳ0Dz hW3q= phCF )qUQ4galOENnDe@cc3xi:L!s֊}9˦K,kXg75:jh{9bkp.=Z=amZaV:nvŃU^a謱E [vGOrs 6 i%Pn5IUlHTo?r23 ciAnԕk(3ճh83m 7X@sB {8kd.K|R/N{*'WQߖ!X!RHeQ?JL]d)ry'!ɏ&&؂ŢUT'@c=W'߅`08nrK 9}d/YpPcj=&21p q)uhL8Gꎎ6Lb%9-قGE7KZ>ϣ`mzLaeL*|{}[3$nGyMf9p^#{EAHnb  1|s4 EQrJ6`hQ9Po.xY ׭z؜AaB@lLc'F cR@*KriItƇ EC1NP768]O2|^fS0?4淵NF`tܾو!mDdh {]W h/~CC趈|TPKV&I0X,8л@ig>;(F!N*/7}tuW/dФ9x?'-QQ`}cZQb0d85QXlphP:g<r$nչ %CGh~n'q:f̏+5Ƥz鵙X \;טh˧F|]܍4/-;w08n6&83*j"ԖyRCgXc`ISAy )iNuu3szV^,2q!+U!]N)\cU͡iV@!=%{c:Yć?fr<%@ƪNWwV: Oj=V_ GUXt548{kH'[) akĝNۯ:ұՁ塅ڎڅT>Nއ0^a{\poaM%eaU+ǏIP-F 䫂tm|]\s+|:("U~ɁLۑu6dߜ6u SU!mb䒏kVQ Y30,/"¶ӥU0z'aŶPi æԵlAbF/V_B+n'_[RŐI;F(:|0N\F[|ا;C*ҶִU]=<twoHǗѯA;qxa+CfiJUt Г.#E6I6kb7.3:/p>,'З·tTkY5x߷:#ɬ63(9ch8"FA6y ΄ӂ(ʈ.=;7JhSG9P}xt R9ᱍQN]7~2 e=>AL\Vm%l)wB#]-*hwFf>B̮ !YװĤReQ>[\1gc^@Pn0fq' |LfGjJ|$֗Bp68IE)2X e;$sǷ0ɏ.AN k:7A pcBPkoQa%,aE2-a.+1EZBMh0{=i4FfeٞKTV1cr>Kq8Fa@7G[Vg#xmْwS0;kow))4zc-O`rd?E)|lSG8͑׌hMME 8[(` Iڹ&6 rq@yk2ib̀lg9K)7Q- Fǐ!Jp20[fkwlv=U {JS0^jIAc+XƔy#nω_YiCe#,%]p w"Bp)\u"|!IYb}.;mr)4 LSM5JsK l-+͂{ځxE#ZK:Qs[ s0z`p Ax9Ul.Y4h-QcMJź?+MJj}f|\Tu6ĊaO6#eI']!anx@v*[?Wuq&cV:8 vHSZ*jf/A-"v; `' nۇ`z-5E1].n_'g_B<=f+OI+OS~I٧POL;~#n84Y#ᑒ}43T.y: +5ϊάJ2h/%"Q#DU |)\P I;io?_`9"{KH!k48XOc7RPT\se6F ڋXd]:nU1{-sT0:̦J_%ɥ{*2]ϽCwsŌ/8A|8|,fZ :ܿ}.?iگ{{R&4c#67 n AETh]iԡ UDSW A"?\ϴ9WLR!7&~= m?cM]NWo,ȕlR6z0SᠧEV΅݊ uP^MۨM&ǯF:ۭᅰ /&G7RؿϛKy_ЗݤoԡLʔ ],)cW7ѴWXubx1&jv 9">d)MPR!eiD9WrwL!#qhvEa({4 Q4KA׺.S+qZ+AЦIt#i"U!?e_ l\/ > \0(߱2:Eq78fpڀX? g m\[%M{3ǀp0HXEە̓wP XoXV{ ]A1i ׯy_1vss`?kz%DI0Ph̠9Ϧ]JRdݑ}:o,N;a!?,XJ ە, :=̯-qLi#tԆ#Eʝ, hZO#9$J<>'T\ Y;򧊈[9wq]=TcJ86t*]L<#]\̀|\Pwc(x3+mR8 ^od/x)C}b sq}'d8HP]8;uj;0Gq54p"v=4] w6H$cl\D=IDXH[,)[.r>U}on% q% $>\d'-ns>͑P.u"M\dݒ`tw*#/ WժLSZNJ1b*gAsx鸱,סHs3p,I:}?;UQ~6_VAS[R dx >!7٬><վ>@(G/tnUBZ5g\'~r6(&R]k]6<XxSH9v==+4&)m!N~pLeJ3iq~ s^O)DwwDnOv29.Bw ͨ'NYWrd-0_MHM7aliP ioSkHѾ\E"Zc[fHm>_Ǵ:;llY)Zr&F"\'UN+m@8x455.Cz}wّI)> =;oFW[JTL>tK?}P/ K?*qcoLAq''x wqZrTQ!Yg ;nvH+)KDEfLaՆ2q1APoDCY8)u # wwzef0gYM5#boM*$4 U2Nb`0mmkѧ)! r{yнoG'mtT7]L?6S8+ CVf< Pi D.n$d7&o67[keOѬɱQV{ü3*{, xMBqDD#3kH|R )W^ u%eI0 xu=arXDo!vVA-YuKɴ9C{oZ9:4H0rcN.7"W$!@, æU 64cbfkΞ%F9Q%!GSwX HwCTKT$= ,]WfY;;O2|z\kE;cw,HVWc,2K|͢.§[890Ig}=BEZgэ+>?{hk*2EgZ;|[Ykv WeX^1=Uqi2wᐝ%>5+e>plisw*u*S,:8-;oEP:е$*,ϤيӻO}-S!C [4rܳVZFBoʝ -KV|8CL HDu>ϩz*.!o%ȂazT*& >d`vY%f]'Dd1#o`bՆ@ D!P `&9k&m&r sǛ=-G |ͮ;(˄!o} .2g MfAwВ4J F݀_Ź"KLD390P"U8z˂~\ LN ;Bd @k!ɨ97y98YXX-+ "CBx,$G~gFZZ?#tB\,I DMN1%}3CZUut7z)xYj}NtzEX;̲p\:iͭ[_KrPb~K'-Ƚ8&^*zvH7j5v1Hķ $6 ^ [zKC?=JrTG#=j$B:}l|+W/o&yڍi!58G,8# 3Kl;HKW:M}qW4}g{44I+&yӔ`"CO=v v-FBD#Apޘm8hSB uޏb7ö1du@䋀?_㪻 |qd uZgn#[Hb'rg?j'AHlP_=7)_ $ ,#& n]]EuV2RCi_#fCOw"0wHX)LOy3 ZH}A[v`G"+1п8bpSZ'L}Qdp^s ZŪvFʖB@ 9c{ZӰ 4$kL C$ Bܰ{ޫܱDJ4*>֙cNw,f=pP4K{pɰC\.jyŭ9f$óUs 1k #TTS>{W”1l*6rWnʄ?, TBA|Do&M(!y'BM8/LTKm oz*lUٍG`ĽZo66X)|yEWslD.z.SP8Q/6u*Y`e:z$"u4\d/U Y).1DZ[ B[RoEB.( ̧ ڲyg!*[nU jDFT m7iFMNKcK(6r-bIv!yᝌ#@@ ZA%>LuZ>Vs@sF(#4 ̙P)%P(iJ*).7MA1 Kju >X,cd)ؿzYv SH@<1FAHHu$rtINJ=Ivkjbկ h'~L%;7:/m#,XU r{;&vƿz JE#YG}+K$M)[s̄*_715 3ICtULJúz"?؊H+Q} [1z-_&M[/ ٖbM5:ZYT4=ZX5pbv;!:9Ej8ELt?dO)V*n;(PCra>=c|anmĆ91 O? D4TxC,B9LetV,Q֗,4sjpH1!VYd! !m=тĢaJ㝼pX:j;'r*aH D؀:*n  E]` 8`)9kͯ~Ad2՘fV,x%L&Ǡl%@ 8 YZ